repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
13bb48e6fbc35419a28747688426eb3684242fbc
ba1109feb515c2eb013399f53be5f17cfe1f189f
go/constant: fix complex != unknown comparison By the contract of Compare, if one operand is Unknown, the result must be false. Fixes #75137 Change-Id: I56420fae808395f89769f5e5d448f9e1df9a622f GitHub-Last-Rev: 858ba89a91bf966223975541af739ab0ab977075 GitHub-Pull-Request: golang/go#75140 Reviewed-on: https://go-revi...
[ { "path": "src/go/constant/value.go", "patch": "@@ -1083,7 +1083,10 @@ func match0(x, y Value) (_, _ Value) {\n \t\t\treturn rtof(x1), y\n \t\t}\n \tcase complexVal:\n-\t\treturn vtoc(x), y\n+\t\tswitch x1 := x.(type) {\n+\t\tcase int64Val, intVal, ratVal, floatVal:\n+\t\t\treturn vtoc(x1), y\n+\t\t}\n \t}\...
2025-08-25T15:41:53
facebook/react
bf1bb2e5e52733a9577848f2913d06edcf24df14
f81d5ee219848c7a02c0afdbd46fc1cedcc72df0
Fix xplat sync syntax error
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -335,7 +335,7 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --cached' :(...
2024-06-10T17:30:30
vercel/next.js
c1728ed2a6a1caf9be1802718410ab85795ee19f
e974ca937b2ca0e5cacaa118027765d5a23c605c
Simplify Metadata components (#84527) Metadata and Viewport litter the component tree with a number of Next.js internal implementation details. We can't yet get rid of all of these but we can simplify by consolidating these components or eliminating them altogether. One change is to render the metadata as a promise t...
[ { "path": "packages/next/src/client/components/metadata/async-metadata.tsx", "patch": "@@ -1,33 +0,0 @@\n-'use client'\n-\n-import { Suspense, use } from 'react'\n-import type { StreamingMetadataResolvedState } from './types'\n-\n-function MetadataOutlet({\n- promise,\n-}: {\n- promise: Promise<StreamingM...
2025-10-06T00:41:02
nodejs/node
85f5a6cc1e9954eaa36cf5d4a13af503e6bf51ab
9ce1fffcdc5a6045e19c6730aa6ae3e271287b23
src: add self-assigment memcpy checks Fixes: https://github.com/nodejs/node/issues/56718 PR-URL: https://github.com/nodejs/node/pull/56986 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_sockaddr-inl.h", "patch": "@@ -79,12 +79,16 @@ SocketAddress::SocketAddress(const SocketAddress& addr) {\n }\n \n SocketAddress& SocketAddress::operator=(const sockaddr* addr) {\n- memcpy(&address_, addr, GetLength(addr));\n+ if (reinterpret_cast<const sockaddr*>(&address_) != addr) {\...
2025-02-12T13:13:02
rust-lang/rust
350a964d7ca480dcfcae58ea397f8886ce004e9d
d52424c4246d94ad16ba931cb2e7d2ae33ab41cd
Fix subdiagnostics that use non-local variables
[ { "path": "compiler/rustc_hir_analysis/src/errors.rs", "patch": "@@ -88,6 +88,8 @@ pub(crate) enum AssocItemNotFoundLabel<'a> {\n NotFound {\n #[primary_span]\n span: Span,\n+ assoc_ident: Ident,\n+ assoc_kind: &'static str,\n },\n #[label(\n \"there is {$id...
2026-02-27T15:22:47
electron/electron
14303a0a71cbd30d772e79209355db6f01dbd635
2b5342cb495e9cd9a7f6dfc96ba095211ed364ae
docs: grammar fix in isBeingCaptured docs (#42692)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1566,7 +1566,7 @@ If you would like the page to stay hidden, you should ensure that `stayHidden` i\n #### `contents.isBeingCaptured()`\n \n Returns `boolean` - Whether this page is being captured. It returns true when the capturer count\n-is large then 0.\...
2024-07-01T19:01:27
golang/go
e47d88beae126387647348810b728ed12c8a0d61
6b837a64dbe6264035037d61c56ab94b55b2844d
os: return nil slice when ReadDir is used with a file on file_windows ReadDir should return (nil, ENOTDIR) when the path points to a file instead of a directory. That's the behavior on Unix systems, and it also used to be the behavior on Windows. However, Windows currently returns ([]DirEntry{}, ENOTDIR). We should c...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -11,6 +11,11 @@ import (\n \t\"unsafe\"\n )\n \n+// Openat flags supported by syscall.Open.\n+const (\n+\tO_DIRECTORY = 0x04000 // target must be a directory\n+)\n+\n // Openat flags not supported by syscall.Open.\n //\n // These are inven...
2025-08-27T07:12:29
vercel/next.js
e974ca937b2ca0e5cacaa118027765d5a23c605c
7c0c2c6b86fe3bd44f205a2677f3622ba3fb8700
[test] Enable `reactDebugChannel` for experimental test shards (#84533) The experimental flag `reactDebugChannel` is currently off by default. To avoid regressions in the debug channel integration, we enable the flag for the experimental test shards.
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -702,6 +702,7 @@ jobs:\n afterBuild: |\n export __NEXT_EXPERIMENTAL_PPR=true # for compatibility with the existing tests\n export __NEXT_EXPERIMENTAL_CACHE_COMPONENTS=true\n+ export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=...
2025-10-05T23:48:09
nodejs/node
b07ff551db152ccb507e71160ce077e235206b16
83ff1ae88f86013db4c058c5963a76d4c16e6a26
build: fix GN build of uv PR-URL: https://github.com/nodejs/node/pull/56955 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "deps/uv/unofficial.gni", "patch": "@@ -90,7 +90,7 @@ template(\"uv_gn_build\") {\n ldflags = [ \"-pthread\" ]\n }\n if (is_linux) {\n- libs += [\n+ libs = [\n \"m\",\n \"dl\",\n \"rt\",", "additions": 1, "deletions": 1, "language": "Unkn...
2025-02-12T00:58:31
rust-lang/rust
2e0fdc5c7fc2e054d3217452961953347493e7ca
0ee5907d597b02afadb5daa26a60fedb72f098d1
disable the fragment_in_final test on s390x on s390x 128bit types have a smaller alignment then on x86[^1]. This leads to the tests falling due to different errors emitted. As this affects the same infrastructure as #149056 lets also for now disable the tests on s390x. [^1]: s390x ELF ABI Table 1.1, Page 12 https://...
[ { "path": "tests/ui/consts/const-eval/ptr_fragments_in_final.rs", "patch": "@@ -1,4 +1,5 @@\n //! Test that we properly error when there is a pointer fragment in the final value.\n+//@ ignore-s390x different alignment on s390x make the test fail\n \n use std::{mem::{self, MaybeUninit}, ptr};\n ", "addit...
2026-02-27T10:48:00
facebook/react
f81d5ee219848c7a02c0afdbd46fc1cedcc72df0
a532d91d010a11083e598027cbd40fc0c935ea92
Fix xplat sync (#29833) ## Overview The clever trick in https://github.com/facebook/react/pull/29799 turns out to not work because signedsource includes the generated hash in the header. Reverts back to checking git diff, filtering out the REVISION file and `@generated` headers.
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -327,108 +327,18 @@ jobs:\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn || echo \"No files found with $CURRENT_VERSION\"\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn | xargs -r sed -i -e \"s/$CURRENT_VERSION/$LAST_VERSION/...
2024-06-10T17:24:45
electron/electron
e9a93a8c5ca723625ac5a95f5837a025e8e0a6a6
efff369639b459b89b8e241063e8f764fbf37f84
fix: setTopBrowserView focus issue with reordering (#42653) * fix: reorder top browser view instead of adding/removing * fix: update browserViews order * test: add a test for setTopBrowserView
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -232,7 +232,12 @@ BrowserWindow.prototype.getBrowserViews = function () {\n \n BrowserWindow.prototype.setTopBrowserView = function (browserView: BrowserView) {\n if (browserView.ownerWindow !== this) { throw new Error('Given BrowserView is not a...
2024-07-01T09:36:04
golang/go
765905e3bd13dcb048388890dba2ea47f6e58711
2ee4b31242e426df757aa09450b744e0af8cb08d
debug/elf: don't panic if symtab too small No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. For #47653 Fixes #75130 Change-Id: Ie6015564bb98334377383bbc16d79119dc4e36f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/698855 Reviewed-by: Tobias Klauser <to...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -692,6 +692,9 @@ func (f *File) getSymbols64(typ SectionType) ([]Symbol, []byte, error) {\n \tif len(data)%Sym64Size != 0 {\n \t\treturn nil, nil, errors.New(\"length of symbol section is not a multiple of Sym64Size\")\n \t}\n+\tif len(data) == 0 {\n+\t\tretur...
2025-08-24T20:17:56
vercel/next.js
953b4c513990b4149faa27d687449ee72c68684f
665977f2c7b124ba2f1f132d6ba4e3793a2aea49
Fix potential race condition with request ID in dev mode (#84532) In development mode, the request ID needs to be available before the bootstrap script executes and triggers hydration. Previously, the request ID was set inline with the flight data stream in a script tag that was inserted after the bootstrap script, wh...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -2206,6 +2206,13 @@ async function renderToStream(\n page\n )\n \n+ // In development mode, set the request ID as a global variable, before the\n+ // bootstrap script is executed, which depends on it during hydration.\n+ c...
2025-10-05T12:40:24
rust-lang/rust
5904d42592f57c306648182814f6ed1cdb69abe1
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix(doc_paragraphs_missing_punctuation): Trim emojis and picture symbols when looking for punctuation
[ { "path": "clippy_lints/src/doc/doc_paragraphs_missing_punctuation.rs", "patch": "@@ -94,17 +94,14 @@ fn is_missing_punctuation(doc_string: &str) -> Vec<MissingPunctuation> {\n Event::Code(..) | Event::Start(Tag::Link { .. }) | Event::End(TagEnd::Link)\n if no_report_depth == 0 &...
2026-02-05T13:07:47
nodejs/node
43ffcf1d2e50407cc19b587f6030c7d34b0932ec
cbedcd16960c59ba77ee091c8722879fd56735e1
src: improve node::Dotenv trimming the trimming functionality that the dotenv parsing uses currently only takes into consideration plain spaces (' '), other type of space characters such as tabs and newlines are not trimmed, this can cause subtle bugs, so the changes here make sure that such characters get trimmed as ...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -105,15 +105,22 @@ Local<Object> Dotenv::ToObject(Environment* env) const {\n return result;\n }\n \n+// Removes space characters (spaces, tabs and newlines) from\n+// the start and end of a given input string\n std::string_view trim_spaces(std::string_view inp...
2025-02-11T22:26:51
facebook/react
cdbafc8e67bb0669e70d361a956ab56ccd3bf7a3
7d445acb02d3f1011fa231898535c58197d6163a
compiler: Log metrics on pruned memo blocks/values Adds additional information to the CompileSuccess LoggerEvent: * `prunedMemoBlocks` is the number of reactive scopes that were pruned for some reason. * `prunedMemoValues` is the number of unique _values_ produced by those scopes. Both numbers exclude blocks that are...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts", "patch": "@@ -169,6 +169,9 @@ export type LoggerEvent =\n fnName: string | null;\n memoSlots: number;\n memoBlocks: number;\n+ memoValues: number;\n+ prunedMemoBlocks: number;\n+ prunedMemoV...
2024-06-07T23:44:36
golang/go
2ee4b31242e426df757aa09450b744e0af8cb08d
b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd
net/http: Ensure that CONNECT proxied requests respect MaxResponseHeaderBytes Currently, CONNECT proxied requests use an unlimited Reader. As a result, a malicious or misbehaving proxy server can send an unlimited number of bytes to a client; causing the client to indefinitely receive bytes until it runs out of memory...
[ { "path": "src/net/http/transport.go", "patch": "@@ -325,6 +325,13 @@ func (t *Transport) readBufferSize() int {\n \treturn 4 << 10\n }\n \n+func (t *Transport) maxHeaderResponseSize() int64 {\n+\tif t.MaxResponseHeaderBytes > 0 {\n+\t\treturn t.MaxResponseHeaderBytes\n+\t}\n+\treturn 10 << 20 // conservati...
2025-08-25T13:07:25
rust-lang/rust
54c505fff04763acc13f95acf7df73536228206b
1c00e989ca032d57e815e930fad00b61e65a1826
Fix ICE when macro-expanded extern crate shadows std
[ { "path": "compiler/rustc_resolve/src/imports.rs", "patch": "@@ -1048,7 +1048,9 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n message,\n } => {\n if no_ambiguity {\n- assert!(import.imported_module.get().is_none());\n+ if !self.i...
2026-02-27T13:54:10
vercel/next.js
c6d03456fd455189c4678286f9fe5875c342cbff
70a3ddd3364c9dbafa530ab3f4df91de88474be1
[ci]: remove test from segment cache manifest (#84507) These are passing independently of any fixes
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -3,21 +3,14 @@\n \"suites\": {\n \"test/e2e/app-dir/actions/app-action-node-middleware.test.ts\": {\n \"failed\": [\n- \"app-dir action handling fetch actions should handle redirects to routes that provide an invalid ...
2025-10-04T00:59:55
electron/electron
3ac57e17d5437be555d0d58eefef455292185b38
398dde9dfbdfcfd7757ead9a30785c01de9f0808
build: fix clang format/lint (#42715) * build: fix clang format path * fix: use gclient sync instead of gclient runhooks Refs https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5659261 * fix: use gclient sync instead of gclient runhooks in GHA --------- Co-authored-by: David Sanders...
[ { "path": ".circleci/config/jobs/lint.yml", "patch": "@@ -31,7 +31,7 @@ steps:\n mkdir -p src/buildtools\n curl -sL \"https://chromium.googlesource.com/chromium/src/+/${chromium_revision}/buildtools/DEPS?format=TEXT\" | base64 -d > src/buildtools/DEPS\n \n- gclient runhooks --spec=\"s...
2024-06-28T20:30:07
nodejs/node
cbedcd16960c59ba77ee091c8722879fd56735e1
888e5eb4fde91ebd4e78704c756883d895f0eb46
src: improve error handling in string_bytes/decoder PR-URL: https://github.com/nodejs/node/pull/56978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/string_bytes.cc", "patch": "@@ -112,16 +112,17 @@ class ExternString: public ResourceType {\n ExternString* h_str = new ExternString<ResourceType, TypeName>(isolate,\n data,\n ...
2025-02-11T16:40:02
facebook/react
7d445acb02d3f1011fa231898535c58197d6163a
d193455fc37a91045112fbf0240a289a45173de0
compiler: treat pruned scope outputs as reactive Mostly addresses the issue with non-reactive pruned scopes. Before, values from pruned scopes would not be memoized, but could still be depended upon by downstream scopes. However, those downstream scopes would assume the value could never change. This could allow the d...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CollectReactiveIdentifiers.ts", "patch": "@@ -9,7 +9,9 @@ import {\n IdentifierId,\n InstructionId,\n Place,\n+ PrunedReactiveScopeBlock,\n ReactiveFunction,\n+ isPrimitiveType,\n } from \"../HIR/HIR\";\n import { Reactive...
2024-06-07T19:10:59
golang/go
b21867b1a2a8e276257e3cb81f4a1dc7e8f9e2cd
d19e377f6ea3b84e94d309894419f2995e7b56bd
net/http: require exact match for CrossSiteProtection bypass patterns Fixes #75054 Fixes CVE-2025-47910 Change-Id: I6a6a696440c45c450d2cd681f418b01aa0422a60 Reviewed-on: https://go-review.googlesource.com/c/go/+/699275 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -77,13 +77,21 @@ func (c *CrossOriginProtection) AddTrustedOrigin(origin string) error {\n \treturn nil\n }\n \n-var noopHandler = HandlerFunc(func(w ResponseWriter, r *Request) {})\n+type noopHandler struct{}\n+\n+func (noopHandler) ServeHTTP(ResponseWriter, *...
2025-08-26T20:52:39
vercel/next.js
6a0718dc05df76b52c81799f3b1bd6f89bf848d2
cf9a7259b0bdc7317fa9588912b99045238c4eca
Turbopack: Use strongly consistent reads in `random_change` unit test (#84505) I can't reproduce it locally, but I've noticed this test flake a few times in CI. Use strongly consistent reads to hopefully fix that.
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/random_change.rs", "patch": "@@ -3,24 +3,30 @@\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n use anyhow::{Result, bail};\n-use rand::Rng;\n-use turbo_tasks::{State, Vc};\n+use rand::{Rng, SeedableRng, rngs::...
2025-10-03T22:51:08
electron/electron
ec24b518086826cf4b9d019ad833f64ddf992f6d
c628de52d97dacd2e5e770d649b22c979d234884
chore: bump node to v20.15.0 (main) (#42616) * chore: bump node in DEPS to v20.15.0 * doc: Add OpenSSL errors to API docs https://github.com/nodejs/node/pull/34213 * test: crypto-rsa-dsa testing for dynamic openssl https://github.com/nodejs/node/pull/52781 * src: allow preventing debug signal handler st...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '127.0.6521.0',\n 'node_version':\n- 'v20.14.0',\n+ 'v20.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-06-27T11:34:39
nodejs/node
888e5eb4fde91ebd4e78704c756883d895f0eb46
66549b4ff513ea8d545404b224c52149370f8ce8
src: improve error handling in process_wrap Replace ToLocalChecked uses. PR-URL: https://github.com/nodejs/node/pull/56977 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/process_wrap.cc", "patch": "@@ -20,6 +20,7 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n #include \"env-inl.h\"\n+#include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"permission/permission.h\"\n #include \"stream_base-inl.h\"\n@@ -40,7 +41,11 @@ using v8::Han...
2025-02-11T16:28:04
facebook/react
d193455fc37a91045112fbf0240a289a45173de0
aa0930452b06cee00a03544f1fbe1a6888578801
compiler: Promote pruned scope declarations to temporaries if used in a later scope There's a category of bug currently where pruned reactive scopes whose outputs are non-reactive can have their code end up inlining into another scope, moving the location of the instruction. Any value that had a scope assigned has to ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -36,7 +36,7 @@ import {\n getHookKind,\n makeIdentifierName,\n } from \"../HIR/HIR\";\n-import { printPlace } from \"../HIR/PrintHIR\";\n+import { printIdentifier, printPlace } from \".....
2024-06-07T19:10:59
golang/go
49a2f3ed871c044eb093b16c09202b7dcd875878
afc51ed007ad814fc11273f39055aeea71172557
net: allow zero value destination address in WriteMsgUDPAddrPort The existing address validity checks already cover both connected and non-connected sockets. Pass a nil sockaddr just like WriteMsgUDP, when the address is zero value. TestWriteToUDP is extended to cover the netip APIs. Fixes #74841 Change-Id: I2708e7...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -260,9 +260,6 @@ func addrPortToSockaddrInet6(ap netip.AddrPort) (syscall.SockaddrInet6, error) {\n \t// to an IPv4-mapped IPv6 address.\n \t// The error message is kept consistent with ipToSockaddrInet6.\n \taddr := ap.Addr()\n-\tif !addr.IsValid() {\n-\t\t...
2025-08-01T16:42:27
vercel/next.js
95b167e77dba58078d4486aa18058299baa0cbf8
1c5a74063dce8225a7eaf92989b4a387e0ba82a9
[segment cache]: fix interception route handling (#84497) With `clientSegmentCache` enabled, if you are already on a route that was intercepted/could have been intercepted, and then you navigated to it again, the router would get stuck in a state where it was infinitely suspended on data it would never receive. When ...
[ { "path": "packages/next/src/server/app-render/walk-tree-with-flight-router-state.tsx", "patch": "@@ -16,10 +16,7 @@ import {\n } from './create-flight-router-state-from-loader-tree'\n import type { AppRenderContext } from './app-render'\n import { hasLoadingComponentInTree } from './has-loading-component-i...
2025-10-03T22:11:02
electron/electron
c628de52d97dacd2e5e770d649b22c979d234884
2b31d8459dc4343b78efd082292f6b48e089a111
fix: `defaultPath` should apply on all dialog types in Linux Portal (#42655) fix: defaultPath should apply on all dialog types in Linux Portal dialogs
[ { "path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch", "patch": "@@ -8,6 +8,9 @@ This CL adds support for the following features to //shell_dialogs:\n * showHiddenFiles - Show hidden files in dialog.\n * showOverwriteConfirmation - Whether the user will be presente...
2024-06-27T09:07:26
nodejs/node
5dafb48f1ad10c4eec0bb10176087a59e5ef9c62
211171fe2ca26a5a81930fec155e241bff7e1fc6
module: fix require.resolve() crash on non-string paths Previously, `require.resolve()` could crash when: - The first parameter was a relative path and - The `paths` array contained non-string entries This commit fixes the issue by adding a check in `Module._findPath` to ensure all elements in `paths` are strings, an...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -181,6 +181,7 @@ const {\n \n const {\n codes: {\n+ ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_REQUIRE_CYCLE_MODULE,\n@@ -246,6 +247,9 @@ function wrapModuleLoad(request, parent, isMain) {...
2025-02-11T15:24:02
golang/go
fa18c547cd891e526d2e01cfbc17961de45c31a5
bfd130db02336a174dab781185be369f089373ba
syscall: sort Windows env block in StartProcess Fixes #29530 Change-Id: Ia28c78274b9288bfa5de9ccb142a452d291a5b66 Reviewed-on: https://go-review.googlesource.com/c/go/+/694435 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-pr...
[ { "path": "src/syscall/exec_windows.go", "patch": "@@ -9,6 +9,7 @@ package syscall\n import (\n \t\"internal/bytealg\"\n \t\"runtime\"\n+\t\"slices\"\n \t\"sync\"\n \t\"unicode/utf16\"\n \t\"unsafe\"\n@@ -113,6 +114,49 @@ func makeCmdLine(args []string) string {\n \treturn string(b)\n }\n \n+func envSorted(...
2025-08-08T19:44:42
vercel/next.js
cef891788c90925a7d99041656cca924ef95a916
7f25da71fb14753052244c11a5a0bbdf897eb450
simplify the way we check for turbopack config to ensure we support an empty turbopack object (#84494) Previously we 'flattened' all the keys in the config to find unsupported leaf properties, but this meant that an empty object woudln't produce any keys. instead just directly check for the `webpack` and `turbopack` ...
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -42,9 +42,6 @@ const unsupportedTurbopackNextConfigOptions = [\n 'experimental.slowModuleDetection',\n ]\n \n-// The following will need to be supported by `next build --turbopack`\n-const unsupportedProductionSpecificTurbopackNextConfig...
2025-10-03T18:13:53
electron/electron
2b31d8459dc4343b78efd082292f6b48e089a111
912706b23a785025ad92e96280480a6a2737155c
fix: param passed to `showSaveDialogSync` on Linux (#42652) fix: pass correct param to sync functions on Linux
[ { "path": "shell/browser/ui/file_dialog_linux.cc", "patch": "@@ -208,9 +208,6 @@ class FileChooserDialog : public ui::SelectFileDialog::Listener {\n \n bool ShowOpenDialogSync(const DialogSettings& settings,\n std::vector<base::FilePath>* paths) {\n- v8::Isolate* isolate = electron:...
2024-06-27T08:23:18
nodejs/node
de1b34557bd2a0ecf623e3afab185427613d4744
f9ea8d6dffb7bda454cd7427ae57b8c9e8700cbb
test: improve timeout duration for debugger events PR-URL: https://github.com/nodejs/node/pull/56970 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "test/common/debugger.js", "patch": "@@ -7,7 +7,8 @@ const BREAK_MESSAGE = new RegExp('(?:' + [\n 'exception', 'other', 'promiseRejection', 'step',\n ].join('|') + ') in', 'i');\n \n-let TIMEOUT = common.platformTimeout(5000);\n+// Some macOS machines require more time to receive the outputs fro...
2025-02-10T23:27:08
golang/go
bfd130db02336a174dab781185be369f089373ba
dae9e456ae6992b3c19a8c5039090ee9ca4d9b7d
internal/poll: don't use stack-allocated WSAMsg parameters WSAMsg parameters should be passed to Windows as heap pointers instead of stack pointers. This is because Windows might access the memory after the syscall returned in case of a non-blocking operation (which is the common case), and if the WSAMsg is on the sta...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -144,19 +144,47 @@ func (o *operation) ClearBufs() {\n \to.bufs = o.bufs[:0]\n }\n \n-func newWSAMsg(p []byte, oob []byte, flags int) windows.WSAMsg {\n-\treturn windows.WSAMsg{\n-\t\tBuffers: &syscall.WSABuf{\n-\t\t\tLen: uint32(len(p)),\n-\t\t\tBuf...
2025-08-25T07:57:49
vercel/next.js
ce56f8aa918237fdf5fd391a8cbbc93782b6f727
ba5a0ca79944b4c8a59d80d677bfedaf0fef33d6
fix: Missing link in Lazy Loading docs (#84473) Add missing space before "Importing Client Components" in Lazy Loading /app docs. This fixes the missing link in "On this page" sidebar: <img width="1092" height="446" alt="image" src="https://github.com/user-attachments/assets/0981467d-ad61-494d-80b2-c0a0e323dd0b" /> ...
[ { "path": "docs/01-app/02-guides/lazy-loading.mdx", "patch": "@@ -24,6 +24,7 @@ By default, Server Components are automatically [code split](https://developer.m\n ## Examples\n \n <AppOnly>\n+\n ### Importing Client Components\n \n ```jsx filename=\"app/page.js\"", "additions": 1, "deletions": 0, ...
2025-10-03T13:59:01
electron/electron
607b9b8f11a7349c1e27d84470602658d7ff9bc2
a8baa6f1ade18beeea36d064818cfa9de4ae1be4
build: clean up upload-index-json error handling (#42657)
[ { "path": "script/release/uploaders/upload-index-json.py", "patch": "@@ -15,8 +15,7 @@\n \n BASE_URL = 'https://electron-metadumper.herokuapp.com/?version='\n \n-version = sys.argv[1]\n-authToken = os.getenv('META_DUMPER_AUTH_HEADER')\n+AUTH_TOKEN = os.getenv('META_DUMPER_AUTH_HEADER')\n \n def is_json(myjs...
2024-06-26T16:25:58
facebook/react
20b6f4c0e8a1f40ee61735201645e0395ff08f94
20841f9a6205a633e6d08a274db974481daaca23
[Float][Fiber] Assume stylesheets in document are already loaded (#29811) When we made stylesheets suspend even during high priority updates we exposed a bug in the loading tracking of stylesheets that are loaded as part of the preamble. This allowed these stylesheets to put suspense boundaries into fallback mode m...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2412,23 +2412,42 @@ export function getResource(\n if (!resource) {\n // We asserted this above but Flow can't figure out that the type satisfies\n const ownerDocument = getDocumentFromRoot(r...
2024-06-07T23:53:24
nodejs/node
72e1a8fbcc29d8d4eaccb90498782f400b9df278
b0c6e10c5e01f4aec1035015dcd26fedb478571a
sqlite: fix coverity warnings related to backup() This commit fixes several coverity warnings related to the recently landed backup() API. PR-URL: https://github.com/nodejs/node/pull/56961 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jas...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -171,9 +171,9 @@ class BackupJob : public ThreadPoolWork {\n env_(env),\n source_(source),\n pages_(pages),\n- source_db_(source_db),\n- destination_name_(destination_name),\n- dest_db_(dest_db) {\n+ source_db_(...
2025-02-10T18:27:01
golang/go
ea55ca360005c607fa54304d95c6821a6ce20e7c
9ae2f1fb574e879402bc5bbac1d2b5d84acce6cb
runtime: skip doInit of plugins in runtime.main Plugins may be loaded in the user's init code. If loading fails, md.bad is true, and doInit should not be executed. If loading succeeds, the plugin must run modulesinit and typelinksinit before doInit. Here is not protected by pluginsMu, and in concurrent scenarios it is...
[ { "path": "src/cmd/cgo/internal/testplugin/plugin_test.go", "patch": "@@ -422,3 +422,11 @@ func TestIssue67976(t *testing.T) {\n \tglobalSkip(t)\n \tgoCmd(t, \"build\", \"-buildmode=plugin\", \"-o\", \"issue67976.so\", \"./issue67976/plugin.go\")\n }\n+\n+func TestIssue75102(t *testing.T) {\n+\tglobalSkip(t...
2025-08-20T13:33:42
facebook/react
a65de775e2120b7b8195bfdc75791fc1cb6ac14f
a0a435d68f2e4e506faef4e763d13cbeb2e819c8
[compiler] Add repro for func properties bug with gating When gating is enabled, any function declaration properties that were previously set (typically `Function.displayName`) would cause a crash after compilation as the original identifier is no longer present. ghstack-source-id: beb7e258561ea598d306fa67706d34a8788...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-gating-invalid-function-properties.expect.md", "patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+\n+/**\n+ * Fail: bug-gating-invalid-function-properties\n+ * Unexpected error in Forget ru...
2024-06-07T19:39:14
electron/electron
3534923bd2fe933089f8672fbef88cda2bc4d9d8
66b8b7922961665481fb737e5af2f0cee9885939
build: account for `subjectAndDescription` null in patch linting (#42636) fix: account for subjectAndDescription null in patch linting
[ { "path": "script/lint.js", "patch": "@@ -252,8 +252,10 @@ const LINTERS = [{\n \n const allOk = filenames.length > 0 && filenames.map(f => {\n const patchText = fs.readFileSync(f, 'utf8');\n- const subjectAndDescription = /Subject: (.*?)\\n\\n([\\s\\S]*?)\\s*(?=diff)/ms.exec(patchText);\n- ...
2024-06-25T05:32:43
vercel/next.js
09bdc4523e30a140f2006ac3d3f5d351be72a1ff
f8816b06794bdb8139abf0b472c944a97262a063
Turbopack: improve incremental build performance when deployment id changes (#84460) ### What? * avoid dependencies due to tracing * Avoid invalidating client chunking context when chunk_suffix_path changes * BrowserChunkingContext::chunk_path only depends on a selected subset of fields * select cross_origin field in...
[ { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -157,14 +157,14 @@ impl MiddlewareEndpoint {\n parse_segment_config_from_source(*self.await?.source, ParseSegmentMode::Base).await?;\n let runtime = config.runtime.unwrap_or(NextRuntime::Edge);\n \n- let next_config = thi...
2025-10-03T08:44:17
nodejs/node
c5c71b2946a01dd05510eab5a4f6df9f85a490e3
03e9adf876e2039604a038b2eb1476bf4a9e1774
src: add nullptr handling for `NativeKeyObject` Fixes: https://github.com/nodejs/node/issues/56899 PR-URL: https://github.com/nodejs/node/pull/56900 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
[ { "path": "src/crypto/crypto_keys.cc", "patch": "@@ -1045,6 +1045,7 @@ void NativeKeyObject::New(const FunctionCallbackInfo<Value>& args) {\n CHECK_EQ(args.Length(), 1);\n CHECK(args[0]->IsObject());\n KeyObjectHandle* handle = Unwrap<KeyObjectHandle>(args[0].As<Object>());\n+ CHECK_NOT_NULL(handle);...
2025-02-10T15:09:22
golang/go
bbd5342a62baa2fa6b42d444b05717c2563d0764
ed7f804775725149088a71108efd0b20ef9f206f
net: fix cgoResSearch CL 457439 mistakenly redeclared size inside the for loop, causing cgoResSearch to always fail and fall back to goLookupCNAME. Change-Id: I3e142d34287388284a8998ac13761b1e0c2911a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/696895 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit...
[ { "path": "src/net/cgo_unix.go", "patch": "@@ -351,7 +351,7 @@ func cgoResSearch(hostname string, rtype, class int) ([]dnsmessage.Resource, err\n \n \tvar size int\n \tfor {\n-\t\tsize := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)\n+\t\tsize = _C_res_nsearch(state, (*_C...
2025-08-18T08:55:40
facebook/react
0a5e0b0c2e496f335136c34663e8763cfa160b82
cc1ec60d0de3be60948fc152b2377a42504f551a
[compiler] Fix outdated comment in scripts/release ghstack-source-id: a37c6faa8b6d0fa443b5a3cb2f0d8398f8e7588c Pull Request resolved: https://github.com/facebook/react/pull/29800
[ { "path": "compiler/scripts/release/publish-manual.js", "patch": "@@ -51,19 +51,18 @@ async function getDateStringForCommit(commit) {\n }\n \n /**\n- * Please login to npm first with `npm login`. You will also need 2FA enabled to push to npm.\n- *\n * Script for publishing PUBLISHABLE_PACKAGES to npm. By d...
2024-06-07T15:46:53
vercel/next.js
2d7852af99809b4041afe3ba82ad6246128e6bb4
b28eb8e075a5436bd85e612d996332ecec062a86
[ci]: fix app-static snapshots with clientSegmentCache (#84468) More things that are only broken because we assert on `.next` files. Updates snapshots and removes the failing tests from the clientSegmentCache manifest.
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -38,16 +38,6 @@\n \"app dir - prefetching should not unintentionally modify the requested prefetch by escaping the uri encoded query params\"\n ]\n },\n- \"test/e2e/app-dir/app-static/app-static-custom-handler.test....
2025-10-02T21:42:40
electron/electron
243be0a638f7ef848dbc448d8cac00f6857e1fa5
24d6c28b5ac0dff74eceb805b9a0144abe4f51a3
docs: fix typo in ASAR integrity docs (#42538) Fix typo in ASAR integrity docs
[ { "path": "docs/tutorial/asar-integrity.md", "patch": "@@ -125,7 +125,7 @@ in the form included below:\n ]\n ```\n \n-::: info\n+:::info\n \n For an implementation example, see [`src/resedit.ts`](https://github.com/electron/packager/blob/main/src/resedit.ts)\n in the Electron Packager code.", "additions...
2024-06-22T18:26:23
nodejs/node
3844e7e0ed3627c8185270df33b160b9df38ca94
6ba36b4e03316466d89b345f3ef5de835ddee932
2025-02-10, Version 20.18.3 'Iron' (LTS) Notable changes: crypto: * update root certificates to NSS 3.104 (Richard Lau) https://github.com/nodejs/node/pull/55681 doc: * add LJHarb to collaborators (Jordan Harband) https://github.com/nodejs/node/pull/56132 * enforce strict policy to semver-major releases (Rafael...
[ { "path": "CHANGELOG.md", "patch": "@@ -69,7 +69,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.2\">20.18.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.18.3\">20.18.3...
2025-01-22T13:04:10
rust-lang/rust
6df216934cbf91fc7e268111eb58f990447ea959
3f9853562c73af38a5e6af8b0da1b2734a327e19
Fix LegacyKeyValueFormat report from docker build: aarch64-gnu-debug
[ { "path": "src/ci/docker/host-aarch64/aarch64-gnu-debug/Dockerfile", "patch": "@@ -29,19 +29,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \\\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1\n+ENV RUSTBUILD_FORCE_CLANG_BAS...
2026-02-25T21:12:55
golang/go
ed7f804775725149088a71108efd0b20ef9f206f
a21249436b6e1fd47356361d53dc053bbc074f90
os: set full name for Roots created with Root.OpenRoot Set the Name for a Root created within a Root to be the concatenation of the parent's path and the name used to open the child. This matches the behavior for files opened within a Root with Root.Open. Fixes #73868 Change-Id: Idf4021602ac25556721b7ef6924dec652c7...
[ { "path": "src/os/root_test.go", "patch": "@@ -1919,3 +1919,36 @@ func TestRootWriteReadFile(t *testing.T) {\n \t\tt.Fatalf(\"root.ReadFile(%q) = %q, %v; want %q, nil\", name, got, err, want)\n \t}\n }\n+\n+func TestRootName(t *testing.T) {\n+\tdir := t.TempDir()\n+\troot, err := os.OpenRoot(dir)\n+\tif err...
2025-08-22T17:47:01
facebook/react
cc1ec60d0de3be60948fc152b2377a42504f551a
142b2a8230130ddf3de8a9c8e7799a291f4d1a97
[Flight] Run recreated Errors within a fake native stack (#29717) Stacked on #29740. Before: <img width="719" alt="Screenshot 2024-06-02 at 11 51 20 AM" src="https://github.com/facebook/react/assets/63648/8f79fa82-2474-4583-894e-a2329e9a6304"> After (updated with my patches to Chrome): <img width="813" al...
[ { "path": "fixtures/flight/config/webpack.config.js", "patch": "@@ -7,6 +7,7 @@ const ReactFlightWebpackPlugin = require('react-server-dom-webpack/plugin');\n const fs = require('fs');\n const {createHash} = require('crypto');\n const path = require('path');\n+const {pathToFileURL} = require('url');\n const...
2024-06-07T15:54:14
vercel/next.js
b28eb8e075a5436bd85e612d996332ecec062a86
5a4c295abd974b8655007cc599784099fe8988d1
[ci]: fix build-output-prerender to support segment cache env (#84467) These tests were only failing with segment cache because I added an env variable to test `clientSegmentCache` independently. This updates the snapshots.
[ { "path": "test/client-segment-cache-tests-manifest.json", "patch": "@@ -86,14 +86,6 @@\n \"failed\": [\n \"app dir - form prefetching should prefetch a loading state for the form's target\"\n ]\n- },\n- \"test/production/app-dir/build-output-prerender/build-output-prerender.test.t...
2025-10-02T21:40:31
electron/electron
ba8ad4716b58bb84bca85282f4ccbbd19af828a5
37608933ae06e8d140317b191e2436dac3faf93a
feat: expose system preferences to utility process (#42203) * chore: expose system preferences to utility process * chore: add tests, doc changes and module-list update * relative link * use @ * fix test * chore: disable linux test * kick * noop on windows utility process
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -2,7 +2,7 @@\n \n > Get system preferences.\n \n-Process: [Main](../glossary.md#main-process)\n+Process: [Main](../glossary.md#main-process), [Utility](../glossary.md#utility-process)\n \n ```js\n const { systemPreferences } = require('electron')", ...
2024-06-20T15:15:57
nodejs/node
1781f6363359f3d0d944360c13f9e6206938418d
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
fs: make `FileHandle.readableWebStream` always create byte streams The original implementation of the experimental `FileHandle.readableWebStream` API created non-`type: 'bytes'` streams, which prevented callers from creating `mode: 'byob'` readers from the returned stream, which means they could not achieve the associ...
[ { "path": "doc/api/fs.md", "patch": "@@ -477,11 +477,14 @@ Reads data from the file and stores that in the given buffer.\n If the file is not modified concurrently, the end-of-file is reached when the\n number of bytes read is zero.\n \n-#### `filehandle.readableWebStream([options])`\n+#### `filehandle.read...
2025-02-10T03:40:31
rust-lang/rust
cde693cc5d74a132af8149585000fcfd6b1c4fbd
720020d67a9997ec5213286316cb02be633f6711
fix: Improve newline for make `match`, `if`, `while` etc - Remove unused `ast::make::match_arm_with_guard` Example --- ```rust fn main() { if true { $0if true && false { foo() } } } ``` **Before this PR** ```rust fn main() { if true { match true ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/move_guard.rs", "patch": "@@ -567,7 +567,8 @@ fn main() {\n match 92 {\n x => if true\n && true\n- && true {\n+ && true\n+ {\n {\n false\n }", "...
2026-02-27T10:51:42
golang/go
f2db0dca0b0399c08319d22cbcbfa83be2bb781a
d86ec924993bfb824dfb6f618a46ea205fdbf261
net/http/httptest: redirect example.com requests to server The default server cert used by NewServer already includes example.com in its DNSNames, and by default, the client's RootCA configuration means it won't trust a response from the real example.com. Fixes #31054 Change-Id: I0686977e5ffe2c2f22f3fc09a47ee8ecc447...
[ { "path": "doc/next/6-stdlib/99-minor/net/http/httptest/31054.md", "patch": "@@ -0,0 +1,2 @@\n+The HTTP client returned by [Server.Client] will now redirect requests for\n+`example.com` and any subdomains to the server being tested.", "additions": 2, "deletions": 0, "language": "Markdown" }, ...
2025-04-19T12:50:35
facebook/react
827cbea417a4058ce544184adff2ee2014625309
c4b433f8cb31d6f73d4a800fcf11ed55c8689daf
compiler: Add support for ref effects Fixes false positives where we currently disallow mutations of refs from callbacks passed to JSX, if the ref is also passed to jsx. We consider these to be mutations of "frozen" values, but refs are explicitly allowed to have interior mutability. The fix is to always allow (at lea...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -29,6 +29,8 @@ import {\n isArrayType,\n isMutableEffect,\n isObjectType,\n+ isRefValueType,\n+ isUseRefType,\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectSha...
2024-06-07T00:02:19
electron/electron
37608933ae06e8d140317b191e2436dac3faf93a
edb939ae8052d7b7f981c1fdd8ab25397bcdce7d
fix: fetch-dependent interfaces in Web Workers (#42579)
[ { "path": "lib/worker/init.ts", "patch": "@@ -17,6 +17,14 @@ const { makeRequireFunction } = __non_webpack_require__('internal/modules/helper\n global.module = new Module('electron/js2c/worker_init');\n global.require = makeRequireFunction(global.module);\n \n+// See WebWorkerObserver::WorkerScriptReadyForE...
2024-06-20T15:01:50
rust-lang/rust
1001c0e9d8251893f7bbecfadbe3863e0761404b
25396cf54981afd1fa5a7406658b45033106a0d3
Re-add #[inline] to Eq::assert_fields_are_eq Fixes a compile-time regressions, non-inline methods are generally codegen'd while inline methods are deferred (and this should never be called, so deferring is the right choice).
[ { "path": "compiler/rustc_builtin_macros/src/deriving/cmp/eq.rs", "patch": "@@ -32,6 +32,9 @@ pub(crate) fn expand_deriving_eq(\n nonself_args: vec![],\n ret_ty: Unit,\n attributes: thin_vec![\n+ // This method will never be called, so doing codegen etc. fo...
2026-02-26T23:00:10
vercel/next.js
5a4c295abd974b8655007cc599784099fe8988d1
c781f40bd149c7714f05906be171a79dc507eaed
[Cache Components] Dim logs after prerender aborts (#84153) When prerenders abort we reject hanging promises so resources can clean up. This can lead to user code which logs errors from rejections reporting many more errors than expected and these logs are for semantically irrelevant errors. To make it clearer that t...
[ { "path": ".vscode/settings.json", "patch": "@@ -62,7 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts...
2025-10-02T21:22:44
nodejs/node
a2aa6ca9d72c2d6d7e17a39aa13a801352113ff0
d1f8ccb10daba0b4eb4db4986615a545e11a0d87
test_runner: print formatted errors on summary PR-URL: https://github.com/nodejs/node/pull/56911 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -30,6 +30,31 @@ class SpecReporter extends Transform {\n colors.refresh();\n }\n \n+ #formatFailedTestResults() {\n+ if (this.#failedTests.length === 0) {\n+ return '';\n+ }\n+\n+ const results = [\n+ `\\n${reporte...
2025-02-09T18:03:38
facebook/react
c4b433f8cb31d6f73d4a800fcf11ed55c8689daf
fe5ce4e3e969aca4705b9973a6fdb5f132e03025
[Flight] Allow aborting during render (#29764) Stacked on #29491 Previously if you aborted during a render the currently rendering task would itself be aborted which will cause the entire model to be replaced by the aborted error rather than just the slot currently being rendered. This change updates the abort...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -36,6 +36,7 @@ let ErrorBoundary;\n let JSDOM;\n let ReactServerScheduler;\n let reactServerAct;\n+let assertConsoleErrorDev;\n \n describe('ReactFlightDOM', () => {\n beforeEach(() => {\n@@ -70,6 +71,8 @@ des...
2024-06-06T21:41:27
golang/go
9d3f7fda70900c9d311df1eb4656fe9f6d62c781
78a05c541f7c5f7b89abac11cff0ff18b029cb47
crypto/tls: fix quic comment typo Change-Id: Ibd6b8d10ecac3cdea33de1218d516b7425443313 GitHub-Last-Rev: 3d5568ba087be71f21cf816c5edd9b8b8c629865 GitHub-Pull-Request: golang/go#75092 Reviewed-on: https://go-review.googlesource.com/c/go/+/697575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -221,7 +221,7 @@ func (q *QUICConn) NextEvent() QUICEvent {\n \tqs := q.conn.quic\n \tif last := qs.nextEvent - 1; last >= 0 && len(qs.events[last].Data) > 0 {\n \t\t// Write over some of the previous event's data,\n-\t\t// to catch callers erroniously retain...
2025-08-21T01:40:55
rust-lang/rust
287903328011e92558dd188029991ea2e8b646ce
720020d67a9997ec5213286316cb02be633f6711
fix: migrate to SyntaxEditor in generate_derive assist
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_derive.rs", "patch": "@@ -1,7 +1,7 @@\n use syntax::{\n SyntaxKind::{ATTR, COMMENT, WHITESPACE},\n T,\n- ast::{self, AstNode, HasAttrs, edit::IndentLevel, make},\n+ ast::{self, AstNode, HasAttrs, edit::IndentLevel, syn...
2026-02-27T10:09:44
vercel/next.js
f53da7131335f49a4edfa21611d161e79990a99b
047e641442a6043294fecc65b857470e387db0ea
perf: Use a more aggressive retry loop for `recursiveDelete` (#84444) **Update:** This also fixes a bug pointed out by Graphite where the deletion function could hang forever because the `t` variable used for tracking attempts wasn't properly incremented. --- https://vercel.slack.com/archives/C04KC8A53T7/p1759360239...
[ { "path": "packages/next/src/lib/recursive-delete.ts", "patch": "@@ -4,7 +4,30 @@ import { join, isAbsolute, dirname } from 'path'\n import isError from './is-error'\n import { wait } from './wait'\n \n-const unlinkPath = async (p: string, isDir = false, t = 1): Promise<void> => {\n+// We use an exponential...
2025-10-02T20:08:46
facebook/react
fe5ce4e3e969aca4705b9973a6fdb5f132e03025
90499a730ed53c29c2321faaf19e77b4ebeeada4
fix[react-devtools/store-test]: fork the test to represent current be… (#29777) ## Summary The test started to fail after https://github.com/facebook/react/pull/29088. Fork the test and the expected store state for: - React 18.x, to represent the previous behavior - React >= 19, to represent the current RDT b...
[ { "path": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -1915,8 +1915,12 @@ describe('Store', () => {\n });\n });\n \n- // @reactVersion >= 18.0\n- it('from react get counted', () => {\n+ // In React 19, JSX warnings were moved into the renderer - https://gith...
2024-06-06T19:01:15
golang/go
a076f497577605e4cf0e20c147711e03dee7b2c3
98238fd495a2a16a2cd90197c6f41352760e4ccb
os: fix Root.MkdirAll to handle race of directory creation No tests were added, because in order to reproduce, the directory would have to be created precisely between the rootOpenDir and mkdirat calls, which is impossible to do in a test. Fixes #75114 Change-Id: I6f86a5b33c87452c35728318eaf2169a7534ef37 Reviewed-on...
[ { "path": "src/os/root_openat.go", "patch": "@@ -131,7 +131,9 @@ func rootMkdirAll(r *Root, fullname string, perm FileMode) error {\n \t\t\tif try > 0 || !IsNotExist(err) {\n \t\t\t\treturn 0, &PathError{Op: \"openat\", Err: err}\n \t\t\t}\n-\t\t\tif err := mkdirat(parent, name, perm); err != nil {\n+\t\t\t...
2025-08-21T17:03:42
rust-lang/rust
8f25f8ca50bd22097b9af769cf1ab22fd82bf316
f02672cb8bffef88934d31d9044257a4d11e5d1f
fix comment about placeholders
[ { "path": "compiler/rustc_next_trait_solver/src/placeholder.rs", "patch": "@@ -32,8 +32,10 @@ where\n Infcx: InferCtxtLike<Interner = I>,\n I: Interner,\n {\n- /// Returns `Some` if we *were* able to replace bound vars. If there are any bound vars that\n- /// use a binding level above `univers...
2026-02-27T09:36:51
vercel/next.js
047e641442a6043294fecc65b857470e387db0ea
90e580b2c8922d1bcc07e2f658b7845c37c359e5
[segment cache]: fix trailingSlash handling with output: export (#84465) When `output: export`, `experimental.clientSegmentCache`, and `trailingSlash: true` were all enabled, clicking links would update the URL but fail to render the page content. The issue was in how segment cache URLs were being constructed for stat...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -2203,7 +2203,7 @@ function addSegmentPathToUrlInOutputExportMode(\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWit...
2025-10-02T18:25:11
facebook/react
90499a730ed53c29c2321faaf19e77b4ebeeada4
29b12787902acff714466e5eb656a7ab0f978836
Fix RN version string in builds (#29787) The version was set for React but not the renderers
[ { "path": "scripts/rollup/build-all-release-channels.js", "patch": "@@ -168,12 +168,19 @@ function processStable(buildDir) {\n );\n }\n \n+ const rnVersionString =\n+ ReactVersion + '-native-fb-' + sha + '-' + dateString;\n if (fs.existsSync(buildDir + '/facebook-react-native')) {\n- ...
2024-06-06T18:07:16
golang/go
98238fd495a2a16a2cd90197c6f41352760e4ccb
1ad30844d9cc0d5792b055f44a6e98759587bbfb
all: delete remaining windows/arm code Fixes #43800 Updates #71671 Change-Id: Ib7aafe3a3f6ae48f23fa23f03103820e9fcf5161 Reviewed-on: https://go-review.googlesource.com/c/go/+/698415 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1773,7 +1773,7 @@ func buildModeSupported(compiler, buildmode, goos, goarch string) bool {\n \t\t\t\"ios/amd64\", \"ios/arm64\",\n \t\t\t\"aix/ppc64\",\n \t\t\t\"openbsd/arm64\",\n-\t\t\t\"windows/386\", \"windows/amd64\", \"windows/arm\", \"windows/arm64\":\n...
2025-08-22T09:49:53
facebook/react
70194be4038158f5ba8e55e27f7ffd02be13bbca
1e1e5cd25223fddbce0e3fb7889b06df0d93a950
fix<compiler>: reread the testfilter file if filter enabled during the watch process (#29775) Resolve #29720 In the above PR, I overlooked that we can change the filter mode during the watch process. Now it's fixed.
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -189,14 +189,15 @@ function subscribeKeyEvents(\n state: RunnerState,\n onChange: (state: RunnerState) => void\n ) {\n- process.stdin.on(\"keypress\", (str, key) => {\n+ process.stdin.on(\"keypress\", async (str, key) => {\n if (...
2024-06-06T17:48:24
electron/electron
003c32331d008e9d0707b6e6a8084615aa50de20
18abeb3add82eac62c72c39db2b4b87080bc69fb
chore: add/fix interface comments for sections of methods (#42566)
[ { "path": "shell/app/electron_main_delegate.h", "patch": "@@ -30,10 +30,9 @@ class ElectronMainDelegate : public content::ContentMainDelegate {\n ElectronMainDelegate(const ElectronMainDelegate&) = delete;\n ElectronMainDelegate& operator=(const ElectronMainDelegate&) = delete;\n \n- base::StringPiece ...
2024-06-20T08:49:07
vercel/next.js
dbbda2fea3fe44003e946db9ddc845871aa36d0b
c9c628561131bac0ec3820292fb679b768683ebd
[Cache Components] Fix caching in `generateMetadata`/`generateViewport` (#84228) When using `'use cache'` in `generateMetadata` or `generateViewport`, the caching did not work correctly, because we didn't apply the same special handling for the `params` and `searchParams` props that we do for layout and page component...
[ { "path": "packages/next/src/lib/client-and-server-references.ts", "patch": "@@ -1,4 +1,7 @@\n-import { extractInfoFromServerReferenceId } from '../shared/lib/server-reference-info'\n+import {\n+ extractInfoFromServerReferenceId,\n+ type ServerReferenceInfo,\n+} from '../shared/lib/server-reference-info'\...
2025-10-02T15:33:11
nodejs/node
bf12d72faa1b55cfb5fd7d52a221f896886b116c
f5353100be3ba6c05d9ee77524efc42321781d1d
zlib: add zstd support Fixes: https://github.com/nodejs/node/issues/48412 PR-URL: https://github.com/nodejs/node/pull/52100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "benchmark/zlib/creation.js", "patch": "@@ -5,7 +5,7 @@ const zlib = require('zlib');\n const bench = common.createBenchmark(main, {\n type: [\n 'Deflate', 'DeflateRaw', 'Inflate', 'InflateRaw', 'Gzip', 'Gunzip', 'Unzip',\n- 'BrotliCompress', 'BrotliDecompress',\n+ 'BrotliCompress', 'B...
2024-03-15T21:54:30
facebook/react
99da76f23ac85d279457470f8fb19a9b2f173ed0
704aeed022f4277cd5604bf6d76199a6cfe4707f
fix[react-devtools] remove native inspection button when it can't be used (#29779) ## Summary There's no native inspection available in any of the React-Native devtools: * **React DevTools in Fusebox** * **React DevTools standalone** Besides, **React DevTools Inline** can't really open the devtools and point...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -279,7 +279,7 @@ function initialize(socket: WebSocket) {\n // $FlowFixMe[incompatible-call] found when upgrading Flow\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n- supportsNativeInspection: true...
2024-06-06T16:10:40
vercel/next.js
c9c628561131bac0ec3820292fb679b768683ebd
c4e1f61baf986b8fa8f381f191067a5d7491bb64
[ci]: split clientSegmentCache test runners off from experimental (#84440) We are preparing to enable `clientSegmentCache` by default on canary. To prepare, this splits it into a separate CI runner and adds a failing test manifest so we can incrementally migrate / fix failing tests before stable release.
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -992,6 +992,73 @@ jobs:\n stepName: 'test-experimental-prod-${{ matrix.group }}'\n secrets: inherit\n \n+ test-client-segment-cache-integration:\n+ name: test clientSegmentCache integration\n+ needs: ['optimize-ci', 'changes', '...
2025-10-02T15:27:26
nodejs/node
756a24242ed6dd99be7ccaed68346c3b9fd1bbea
c0953d9de72576bb9b748e575db19d093601e90a
build: remove explicit linker call to libm on macOS /usr/lib/libm.tbd is available via libSystem.*.dylib and reexports sanitizer symbols. When building for asan this becomes an issue as the linker will resolve the symbols from the system library rather from libclang_rt.* For V8 that rely on specific version of these ...
[ { "path": "deps/brotli/unofficial.gni", "patch": "@@ -25,7 +25,7 @@ template(\"brotli_gn_build\") {\n } else if (target_os == \"freebsd\") {\n defines = [ \"OS_FREEBSD\" ]\n }\n- if (!is_win) {\n+ if (is_linux) {\n libs = [ \"m\" ]\n }\n if (is_clang || !is_win) {", "ad...
2025-02-03T12:44:36
electron/electron
dad6e130f500bbf478176211f3e1c012b082ea2b
8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e
build: remove fs-extra devdep (#42533) * build: remove fs-extra dependency from script/gen-filenames.ts * build: remove fs-extra dependency from script/spec-runner.js * build: remove fs-extra dependency from script/gn-asar.js * build: remove fs-extra dependency from spec/api-autoupdater-darwin-spec.ts * bu...
[ { "path": "package.json", "patch": "@@ -19,7 +19,6 @@\n \"@types/chai-as-promised\": \"^7.1.3\",\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n- \"@types/fs-extra\": \"^9.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@typ...
2024-06-19T14:10:16
rust-lang/rust
171dae6725c64b18b43d179b1df3a8903da119dd
70bf845cb2b07be5111d7992223ce98aaa1fd6cb
feat: migrate fix_visibility assist to SyntaxEditor
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/fix_visibility.rs", "patch": "@@ -2,7 +2,7 @@ use hir::{HasSource, HasVisibility, ModuleDef, PathResolution, ScopeDef, db::Hir\n use ide_db::FileId;\n use syntax::{\n AstNode, TextRange,\n- ast::{self, HasVisibility as _, edit_in_plac...
2026-02-25T22:23:38
facebook/react
704aeed022f4277cd5604bf6d76199a6cfe4707f
3730b40e9bbacef0279f6d120b344c1544cb38ba
feat<Compiler>: consider that the dispatch function from `useReducer` is non-reactive (#29705) Summary The dispatch function from useReducer is stable, so it is also non-reactive. the related PR: #29665 the related comment: #29674 (comment) I am not sure if the location of the new test file is appropriate😅. ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -13,6 +13,7 @@ import {\n BuiltInUseInsertionEffectHookId,\n BuiltInUseLayoutEffectHookId,\n BuiltInUseOperatorId,\n+ BuiltInUseReducerId,\n BuiltInUseRefId,\n BuiltInUseStateId,\n ShapeRegistry,\n@@ -265...
2024-06-05T23:51:09
golang/go
1ad30844d9cc0d5792b055f44a6e98759587bbfb
13c082601db45c25fc85f4cdac9cc3bab7c4329f
cmd/asm: process forward jump to PCALIGN The forward jump target are not processed when the target is PCALIGN, so process it before emit nops for PCALIGN. Fixes #74648 Change-Id: I690fbfacf79e26d7a37628a2551729b2381616c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/696915 LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/cmd/internal/obj/x86/asm6.go", "patch": "@@ -2120,19 +2120,6 @@ func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tc0 := c\n \t\t\tc = pjc.padJump(ctxt, s, p, c)\n \n-\t\t\tif p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX {\n-\t\t\t\tv := obj.AlignmentPadding(c, p, ctx...
2025-08-18T11:27:46
nodejs/node
4355b3f16294aaf456ed6b9f2fc05bb0d407d788
269496e8e166fbc06d6f3808a5863ce792de9f11
crypto: fix X509* leak in --use-system-ca The X509 structures are never freed. Use ncrypto::X509Pointer to manage it automatically and move the X509* to PEM conversion into a helper to be reused by integration in other systems. PR-URL: https://github.com/nodejs/node/pull/56832 Reviewed-By: James M Snell <jasnell@gmai...
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -35,6 +35,7 @@ using ncrypto::MarkPopErrorOnReturn;\n using ncrypto::SSLPointer;\n using ncrypto::StackOfX509;\n using ncrypto::X509Pointer;\n+using ncrypto::X509View;\n using v8::Array;\n using v8::ArrayBufferView;\n using v8::Boolean;\n@@ -255,6 +256,...
2025-01-30T17:02:49
electron/electron
8e8ea3ee8b0f45e8b28db3bb9eb77dcae0b37b1e
6d2c72b14eb7798c47cee5a254aeba2615a2d291
fix: MessagePort closing unexpectedly with non-cloneable objects (#42535) * fix: MessagePort closing unexpectedly with non-cloneable objects * fix: handle serialization failure in parentPort
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -76,8 +76,11 @@ void MessagePort::PostMessage(gin::Arguments* args) {\n return;\n }\n \n- electron::SerializeV8Value(args->isolate(), message_value,\n- &transferable_message);\n+ if (!electron::SerializeV8Value(a...
2024-06-19T09:27:07
vercel/next.js
9ba29b4125bf368f92d36b34a5a34aa8dce0a8ce
2330e144ff88fe557b24a9320770ad808041d99f
Revert "Revert "Revert "Revert "Add a --webpack flag and default --turbopack to true (#84216)"""" (#84394) Reverts vercel/next.js#84389 Attempt number 3, #84374 fixed propagation of bundler environment variables to vercel cli operations, to ensure the test configuration is respected. [Deployment Tests Run 1](https:...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -502,6 +502,7 @@ jobs:\n \n export NEXT_TEST_MODE=start\n export NEXT_TEST_WASM=true\n+ export IS_WEBPACK_TEST=1\n node run-tests.js \\\n test/production/pages-dir/production/test/index.test.ts \\\n ...
2025-10-02T00:04:17
facebook/react
8d87e374ac69904012530af702af1cd51d90e07d
1df34bdf626af3e4566364dcdf7f1c387d2f4252
Fix #29724: `ip` dependency update for CVE-2024-29415 (#29725) ## Summary This version update of `ip` dependency solves the CVE-2024-29415 vulnerability.
[ { "path": "packages/react-devtools/package.json", "patch": "@@ -25,7 +25,7 @@\n \"dependencies\": {\n \"cross-spawn\": \"^5.0.1\",\n \"electron\": \"^23.1.2\",\n- \"ip\": \"^1.1.4\",\n+ \"ip\": \"^2.0.1\",\n \"minimist\": \"^1.2.3\",\n \"react-devtools-core\": \"5.2.0\",\n \"upda...
2024-06-05T10:17:35
golang/go
f7c6fa709e05830cad484422f04f2b123f54a3dc
7c84e984e675e44a2abc9aa25dd68cb9c9d08ec5
[dev.simd] simd/_gen/unify: fix some missing environments There were a couples places where we failed to provide a reasonable variable environment for YAML encoding. I think this only affects encoding "!repeat" nodes, which aren't common in practice and a bit of a disaster, which is how this went unnoticed. Change-Id...
[ { "path": "src/simd/_gen/unify/trace.go", "patch": "@@ -132,10 +132,12 @@ func (t *tracer) traceUnify(v, w *Value, e envSet) {\n \t\treturn\n \t}\n \n+\tt.enc.e = e // Interpret values w.r.t. e\n \tt.logf(\"Unify\\n%s\\nwith\\n%s\\nin\\n%s\",\n \t\tyamlf(\" \", t.enc.value(v)),\n \t\tyamlf(\" \", t.enc.va...
2025-08-21T13:28:32
rust-lang/rust
5218b85416f8480a17f0e08758de06dae794b9c1
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix: `explicit_counter_loop` FP when the initializer is not integral
[ { "path": "clippy_lints/src/loops/explicit_counter_loop.rs", "patch": "@@ -28,72 +28,77 @@ pub(super) fn check<'tcx>(\n \n // For each candidate, check the parent block to see if\n // it's initialized to zero at the start of the loop.\n- if let Some(block) = get_enclosing_block(cx, expr.hir_id) {...
2026-02-27T02:21:32
nodejs/node
269496e8e166fbc06d6f3808a5863ce792de9f11
d54641cd3883b3be116ea24e7b64744331f265a4
src: improve error handling in encoding_binding.cc PR-URL: https://github.com/nodejs/node/pull/56915 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/encoding_binding.cc", "patch": "@@ -20,7 +20,6 @@ using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n-using v8::MaybeLocal;\n using v8::Object;\n using v8::ObjectTemplate;\n using v8::String;\n@@ -139,8 +138,7 @@ void BindingData::EncodeUtf8String(co...
2025-02-06T16:12:42
electron/electron
980e884fa5298c54ee65edcab0bdaa8a3b96c5aa
71338140a415441735376481e3fe6be3b5c27985
build: remove klaw dependency (#42529) * refactor: remove klaw dependency Node 20 added recursive readdir() so klaw is not needed * fixup! refactor: remove klaw dependency findMatchingFiles returns a Promise<string[]>
[ { "path": "package.json", "patch": "@@ -20,7 +20,6 @@\n \"@types/dirty-chai\": \"^2.0.2\",\n \"@types/express\": \"^4.17.13\",\n \"@types/fs-extra\": \"^9.0.1\",\n- \"@types/klaw\": \"^3.0.1\",\n \"@types/minimist\": \"^1.2.0\",\n \"@types/mocha\": \"^7.0.2\",\n \"@types/node\": \...
2024-06-18T22:54:26
vercel/next.js
7a49afcf8af542fed04946ce5632c27304bc3f8b
c201b3d38781af4567510ecc0a9986f2630439f2
Turbopack: don't fail for parse errors in tracing (#84408) Turns string decode and parse errors into warnings for extensionless files when in tracing mode. A `require(dynamic)` inside of node_modules can easily end up pulling in extensionless files such as binary files, or `LICENSE`, which would fail the build.
[ { "path": "crates/next-core/src/segment_config.rs", "patch": "@@ -395,6 +395,7 @@ pub async fn parse_segment_config_from_source(\n EcmascriptModuleAssetType::Ecmascript\n },\n EcmascriptInputTransforms::empty(),\n+ false,\n )\n .await?;\n ", "additions": 1, ...
2025-10-01T21:20:55
facebook/react
1df34bdf626af3e4566364dcdf7f1c387d2f4252
d2767c96e80a6fdc35b002f1518d01d90e2a8528
[Flight] Override prepareStackTrace when reading stacks (#29740) This lets us ensure that we use the original V8 format and it lets us skip source mapping. Source mapping every call can be expensive since we do it eagerly for server components even if an error doesn't happen. In the case of an error being thrown ...
[ { "path": ".eslintrc.js", "patch": "@@ -486,6 +486,7 @@ module.exports = {\n $ReadOnlyArray: 'readonly',\n $ArrayBufferView: 'readonly',\n $Shape: 'readonly',\n+ CallSite: 'readonly',\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: ...
2024-06-05T07:41:37
rust-lang/rust
4b2e965f8e7c8bdc91f38820e140e3f9886a0ebd
bcefe60419b4ab93ccc9cd3e4703bd5ff1fce4c1
fix: `redundant_closure` suggests wrongly when local is derefed to callable
[ { "path": "clippy_lints/src/eta_reduction.rs", "patch": "@@ -216,6 +216,18 @@ fn check_closure<'tcx>(cx: &LateContext<'tcx>, outer_receiver: Option<&Expr<'tcx\n \"redundant closure\",\n |diag| {\n if let Some(mut snippet) = snippet_opt(cx, call...
2026-02-27T02:32:14
nodejs/node
436723282d64643fb3d1d91648c5f51bce8a077e
a08129cb0d8ff1df3ce45c3910cae1fc72aaf080
doc: update post sec release process PR-URL: https://github.com/nodejs/node/pull/56907 Fixes: https://github.com/nodejs-private/security-release/issues/52 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewe...
[ { "path": "doc/contributing/security-release-process.md", "patch": "@@ -156,14 +156,10 @@ security announcements for more information.\n \n ## Post-Release\n \n-* [ ] 1\\. **Merge the Next Security Release PR:**\n- * This involves moving the `vulnerabilities.json` file from\n- `security-release/next-sec...
2025-02-05T19:48:05
electron/electron
86cf60c3f1e7c992b7bf4269fc1eb2919890625d
e217b063a5c7306a719fe630941c67829263655c
chore: improve error message on failed SMApp register/unregister (#42526)
[ { "path": "shell/common/platform_util_mac.mm", "patch": "@@ -111,7 +111,7 @@\n return \"The specified path doesn't exist or the helper tool at the \"\n \"specified path isn't valid\";\n default:\n- return \"Failed to register the login item\";\n+ return base::SysNS...
2024-06-18T08:51:37
vercel/next.js
bee4f0ee3f087dfe3b4a075b6607d8ca1e05e9c8
afaf42b95c4425a9c95cb69136ef67b9ba412929
Bump to swc v44 (#84420) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentati...
[ { "path": "Cargo.lock", "patch": "@@ -597,9 +597,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"40.0.0\"\n+version = \"42.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"60c146e22990eb01e6675c558e17cffbe44bf6061ab4f3c2f14c6f9fd9bade...
2025-10-01T19:59:11
facebook/react
9185b9b1e4a716f90774c4c5501fe3925bc7c402
a26e90c29cfa841d3e2bc08876c5929d5680fb6d
Remove startTransition and useActionState from react-server condition of react (#29753) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "packages/react/src/ReactServer.js", "patch": "@@ -22,19 +22,11 @@ import {\n isValidElement,\n } from './jsx/ReactJSXElement';\n import {createRef} from './ReactCreateRef';\n-import {\n- use,\n- useId,\n- useCallback,\n- useDebugValue,\n- useMemo,\n- useActionState,\n-} from './ReactHooks...
2024-06-04T16:23:36