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
electron/electron
b508510cab6d19b06c50b6fe16644cfc054c4ce2
469b2af0c05012f08a096a39e6531c8d0b90f0a8
fix: update DBus signal signature for XDG GlobalShortcuts portal (#49842)
[ { "path": "patches/chromium/.patches", "patch": "@@ -144,3 +144,4 @@ fix_linux_tray_id.patch\n expose_gtk_ui_platform_field.patch\n patch_osr_control_screen_info.patch\n refactor_allow_customizing_config_in_freedesktopsecretkeyprovider.patch\n+fix_update_dbus_signal_signature_for_xdg_globalshortcuts_portal....
2026-02-19T14:22:27
facebook/react
1d3664665b4e52bd1daee775e1e95feb563799d9
2bcbf254f168ddec567156f802d19315e64e4aa8
[DevTools] Text layout fixes for stack traces with badges (#34925)
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css", "patch": "@@ -3,8 +3,9 @@\n }\n \n .CallSite, .BuiltInCallSite {\n- display: block;\n+ display: flex;\n padding-left: 1rem;\n+ white-space-collapse: preserve;\n }\n \n .IgnoredCallSite, .BuiltInCallSite {\n@@ -...
2025-10-20T17:33:47
golang/go
3694f3369276d072d3eccd03b1855b18d3ecee18
38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79
runtime: GODEBUG=tracebacklabels=1 for 1.27+ https://go.dev/cl/742580 updated the goroutine label format in tracebacks to only quote the values under some circumstances, and use a more broadly acceptable format. Flip the GODEBUG=tracebacklabels default for go 1.27+ modules. Notably, tracebacklabels is marked as Opaqu...
[ { "path": "doc/godebug.md", "patch": "@@ -167,6 +167,11 @@ escaped. Setting `htmlmetacontentescape=0` disables this behavior. To avoid\n content injection attacks, this setting and default was backported to Go 1.25.8\n and Go 1.26.1.\n \n+Go 1.27 changes the default for `tracebacklabels` (added in [Go 1.26]...
2026-03-04T21:34:24
rust-lang/rust
a2f7f3c1ebb7a8e820140fac88bff10c5605e5b2
5bbdeaa9a8dc563185f40e99f96704cbcc7a6e6e
ty_utils: lower tuples to `ScalableVector` repr Instead of just using regular struct lowering for these types, which results in an incorrect ABI (e.g. returning indirectly), use `BackendRepr::ScalableVector` which will lower to the correct type and be passed in registers. This also enables some simplifications for ge...
[ { "path": "compiler/rustc_abi/src/layout.rs", "patch": "@@ -10,8 +10,8 @@ use tracing::{debug, trace};\n \n use crate::{\n AbiAlign, Align, BackendRepr, FieldsShape, HasDataLayout, IndexSlice, IndexVec, Integer,\n- LayoutData, Niche, NonZeroUsize, Primitive, ReprOptions, Scalar, Size, StructKind, Tag...
2026-02-19T11:03:14
nodejs/node
87e8e8bbdec5f668f1499f92327caafd20e82187
8c323899ffd289465d838138c41be3e5d8e572e4
test: fix flaky test-performance-eventloopdelay The test was flaky because the histogram sampling might not have completed before the assertions ran. By using setImmediate before disabling the histogram and checking values, we give the event loop a chance to record final samples on slower systems. Also added an expli...
[ { "path": "test/sequential/test-performance-eventloopdelay.js", "patch": "@@ -64,42 +64,47 @@ const { sleep } = require('internal/util');\n if (--m > 0) {\n setTimeout(spinAWhile, common.platformTimeout(500));\n } else {\n- histogram.disable();\n- // The values are non-deterministic,...
2026-02-05T08:28:56
electron/electron
61b3d5d63c322a726bdcafd7491d5b3ba7ef73f2
1e437c9a18f4b4170c110179673355d9a732b8ba
refactor: initialize libgdk stubs before use in `platform_util:Beep` (#49680) * refactor: initialize libgdk stubs before use in `platform_util:Beep` * feat: add upstream function to get libgdk handle * fix: add missing include for libgdk support * style: adjust comment wording and make linter happy * style: make l...
[ { "path": "patches/chromium/make_gtk_getlibgtk_public.patch", "patch": "@@ -1,13 +1,13 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: deepak1556 <hop2deep@gmail.com>\n Date: Thu, 7 Apr 2022 20:30:16 +0900\n-Subject: Make gtk::GetLibGdkPixbuf public\n+Subject: Make gtk::G...
2026-02-19T08:59:10
facebook/react
2bcbf254f168ddec567156f802d19315e64e4aa8
aaad0ea055ce0c10b263db8505338cb1eedb86de
[compiler] Fix false positive for useMemo reassigning context vars (#34904) Within a function expression local variables may use StoreContext for local context variables, so the reassignment check here was firing too often. We should only report an error for variables that are declared outside the function, ie part of...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateUseMemo.ts", "patch": "@@ -184,25 +184,28 @@ function validateNoContextVariableAssignment(\n fn: HIRFunction,\n errors: CompilerError,\n ): void {\n+ const context = new Set(fn.context.map(place => place.identifier.id));\n ...
2025-10-20T15:42:04
vercel/next.js
a6b36200ff911771e9b8ff5582b780ea625c1690
112666134c49a95d1056409a3cd185e54cff9584
Wire cache handlers in edge paths and add e2e regression coverage (#91236) ### What? This PR wires custom `cacheHandler` / `cacheHandlers` through the remaining edge entrypoints so edge app pages, edge app routes, edge pages SSR, middleware, and edge API routes can all see the configured handlers. It also adds an e2...
[ { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -90,6 +90,7 @@ impl MiddlewareEndpoint {\n self.project.project_path().owned().await?,\n userland_module,\n is_proxy,\n+ self.project.next_config(),\n );\n \n if matches!(self.runtime, ...
2026-03-13T17:25:59
golang/go
38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79
bcc369284d5ed042e1155ac11ccf15ea2990a64e
cmd/compile: forward small Load through Move to avoid redundant copies Fixes #77720 Add a generic SSA rewrite that forwards `Load` from a `Move` destination back to the `Move` source when it is provably safe, so field reads like `s.h.Value().typ` don’t force a full struct copy. - Add `Load <- Move` rewrite in `gener...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -797,6 +797,12 @@\n \t&& disjoint(p5, t5.Size(), p4, t4.Size())\n \t=> x\n \n+// Load from a region just copied by Move can read directly from the source.\n+(Load <t1> op:(OffPtr [o1] p1) move:(Move [n] p2 src mem))\n+\t&& o1 >= 0 && ...
2026-02-23T20:20:20
rust-lang/rust
77d9613440fc12c2f4ae9a31100d0e05f040c2a7
166f219169267be776fd6200f5825568cd20dc40
fix: support multiple snippet placeholders in VS Code extension
[ { "path": "src/tools/rust-analyzer/editors/code/src/snippets.ts", "patch": "@@ -53,7 +53,7 @@ export async function applySnippetTextEdits(editor: vscode.TextEditor, edits: vs\n }\n \n function hasSnippet(snip: string): boolean {\n- const m = snip.match(/\\$\\d+|\\{\\d+:[^}]*\\}/);\n+ const m = snip.ma...
2026-04-03T09:20:24
nodejs/node
8c323899ffd289465d838138c41be3e5d8e572e4
bd8fe4fa711c9c8ea5797783d182f0a143acc981
dns: fix Windows SRV ECONNREFUSED by adjusting c-ares fallback detection Newer c-ares versions set tcp_port/udp_port to 53 instead of 0, which caused the loopback detection to fail. This fix: - Removes the port check from loopback detection - Adds IPv6 loopback (::1) support - Calls EnsureServers() before each DNS qu...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -983,19 +983,31 @@ void ChannelWrap::EnsureServers() {\n \n ares_get_servers_ports(channel_, &servers);\n \n- /* if no server or multi-servers, ignore */\n+ /* if no server, ignore */\n if (servers == nullptr) return;\n+\n+ /* if multi-servers, mark as non-...
2026-02-03T16:51:35
electron/electron
be45b5f8e76363d7217ce85f61fff900abff1070
87597a99dea91db10c3623e180da7129b213489c
ci: fixup build stats upload on Windows (#49845)
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -98,7 +98,7 @@ runs:\n # Upload build stats to Datadog\n if ($env:DD_API_KEY) {\n try {\n- npx node electron\\script\\build-stats.mjs out\\Default\\siso.exe.INFO --upload-stats\n+ npx node ele...
2026-02-18T20:00:30
facebook/react
02c80f0d8702cb894f6ef9748e7b18ffdd388a55
21272a680f07cb69873eb3668e7baaebfcf05606
[DevTools] fix: dont ship source maps for css in prod builds (#34913) This has been causing some issues with the submission review on Firefox store: we use OS-level paths in these source maps, which makes the build artifact different from the one that's been submitted. Also saves ~100Kb for main.js artifact.
[ { "path": "packages/react-devtools-extensions/src/main/cloneStyleTags.js", "patch": "@@ -1,5 +1,14 @@\n-function cloneStyleTags() {\n- const linkTags = [];\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE fi...
2025-10-20T12:39:42
golang/go
703cc8abeca5ff4f3da1df6766c6abf43462257b
8da2be3cd01a27830f7b2209f30850b1e1c83f00
io/fs: document when ErrClosed should be returned Pull ErrClosed out of the grouped var declaration so it can have its own doc comment explaining that file system implementations should return it when operations are attempted on a closed file. Fixes #63918 Change-Id: I1fe2041c594ad6fd37e240e21fe9b3d4104daa46 Reviewe...
[ { "path": "src/io/fs/fs.go", "patch": "@@ -155,9 +155,12 @@ var (\n \tErrPermission = errPermission() // \"permission denied\"\n \tErrExist = errExist() // \"file already exists\"\n \tErrNotExist = errNotExist() // \"file does not exist\"\n-\tErrClosed = errClosed() // \"file already c...
2026-02-17T01:26:33
rust-lang/rust
ce7c4925893cd30590db19805a2e2bed60c47728
852df886faee761a3b224ae014dd423c065df4c6
fix rebase
[ { "path": "compiler/rustc_attr_parsing/src/attributes/lint.rs", "patch": "@@ -141,7 +141,8 @@ fn validate_lint_attr<T: Lint, S: Stage>(\n };\n let lint_store = lint_store.as_ref();\n let Some(list) = args.list() else {\n- cx.expected_list(cx.inner_span, args);\n+ let span = cx.inne...
2026-04-03T09:12:15
nodejs/node
232dffef01f370b4d404c9a22e182af76174bcca
1818bb7e81811bf204270b892172cf12cfb17c09
test: fix race condition in watch mode tests The watch mode tests using runInBackground() had a race condition where stdout "Failed running" message could arrive before stderr was fully collected, causing assertions on stderr content to fail with empty strings. Fix by waiting for stderr 'data' event if stderr is empt...
[ { "path": "test/sequential/test-watch-mode-restart-esm-loading-error.mjs", "patch": "@@ -11,6 +11,9 @@ import { createInterface } from 'node:readline';\n if (common.isIBMi)\n common.skip('IBMi does not support `fs.watch()`');\n \n+if (common.isAIX)\n+ common.skip('AIX does not reliably capture syntax err...
2026-02-03T15:46:31
golang/go
28b1d8886b3bd5645f8bfebb7713358a1551d435
b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb
cmd/compile: fix ICE when checking slice cap CL 226737 optimized len check when make slice in common case when len is within range of cap. However, the generated code does not walk the AST for the if condition, causing un-walked nodes passed to the backend. Fixes #78028 Change-Id: I492fb230c10e585dc09391728ef4df2c00...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -455,7 +455,7 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tniflen := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OLT, len, ir.NewInt(base.Pos, 0)), nil, nil)\n \t\t\tniflen.Body = []ir.Node{mkcall(\"panicm...
2026-03-09T11:51:53
facebook/react
21272a680f07cb69873eb3668e7baaebfcf05606
1440f4f42d59a7de4559dac972b62d9be771d1d9
Lower case "rsc stream" debug info (#34921) This is an aesthetic thing. Most simple I/O entries are things like "script", "stylesheet", "fetch" etc. which are all a single word and lower case. The "RSC stream" name sticks out and draws unnecessary attention to itself where as it's really the least interesting to look ...
[ { "path": "packages/internal-test-utils/debugInfo.js", "patch": "@@ -64,7 +64,7 @@ function normalizeIOInfo(config: DebugInfoConfig, ioInfo) {\n if (promise) {\n promise.then(); // init\n if (promise.status === 'fulfilled') {\n- if (ioInfo.name === 'RSC stream') {\n+ if (ioInfo.name === ...
2025-10-20T06:42:38
rust-lang/rust
bd864efa70d9622f6b1f1c7ee899485a63405f1f
d884f92b04366b2673a5b5299513da897f5b939c
bless tests and tidy also removes E0452 and splits `tests/rustdoc-ui/lints/renamed-lint-still-applies` into 2 tests this is because of delayed warn lint being lost on compiler aborting on error
[ { "path": "compiler/rustc_error_codes/src/error_codes/E0452.md", "patch": "@@ -1,8 +1,9 @@\n+#### Note: this error code is no longer emitted by the compiler\n An invalid lint attribute has been given.\n \n Erroneous code example:\n \n-```compile_fail,E0452\n+```compile_fail\n #![allow(foo = \"\")] // error:...
2026-03-10T15:54:27
electron/electron
dfdf04976e3b0b2177fbac391fca9232c8d0d33d
f4ba25a3daa41d6a9246e1c1c15fa55b595d50a9
fix: draggable region position with docked DevTools (#49822)
[ { "path": "shell/browser/api/electron_api_web_contents_view.cc", "patch": "@@ -83,8 +83,16 @@ void WebContentsView::ApplyBorderRadius() {\n \n int WebContentsView::NonClientHitTest(const gfx::Point& point) {\n if (api_web_contents_) {\n+ // Convert the point to the contents view's coordinate space rath...
2026-02-18T16:49:18
nodejs/node
f4646a7f4be0c9f650ad50ea02c705387300b912
61a4a30e0e157ad46d48b56f39c6bf42a062d534
module: do not invoke resolve hooks twice for imported cjs Previously the resolve hook can be invoked twice from the synthetic module evaluation step of imported CJS in the extra module._load() call that's invoked on the resolved full path. Add an option to avoid it, since the resolution and loading has already been d...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -235,7 +235,7 @@ let statCache = null;\n * See more {@link Module._load}\n * @returns {object}\n */\n-function wrapModuleLoad(request, parent, isMain) {\n+function wrapModuleLoad(request, parent, isMain, options) {\n const logLabel = `[${pare...
2026-02-02T23:04:23
golang/go
b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb
43f8fb27ae5aed5a65b50c8dc49ef1557c1b293b
test/fixedbugs: increase issue46234 test timeout issue46234 is flaky on slow machines, so increase the timeout to 90s. Note that that test timeout already got increased from 30s to 45s in CL 382774, but it was still not enough. Fixes #50973 Fixes #67558 Fixes #74277 Updates #65040 Cq-Include-Trybots: luci.golang.tr...
[ { "path": "test/fixedbugs/issue46234.go", "patch": "@@ -1,4 +1,4 @@\n-// buildrun -t 45\n+// buildrun\n \n //go:build !js && !wasip1\n ", "additions": 1, "deletions": 1, "language": "Go" } ]
2026-02-20T16:34:51
facebook/react
2cfb221937eac48209d01d5dda5664de473b1953
58bdc0bb967098f14562cd76af0668f2056459a0
[Flight] Allow passing DEV only startTime as an option (#34912) When you use the `createFromFetch` API we assume that the start time of the request is the same time as when you call `createFromFetch` but in principle you could use it with a Promise that starts earlier and just happens to resolve to a `Response`. When...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2561,6 +2561,7 @@ function ResponseInstance(\n findSourceMapURL: void | FindSourceMapURLCallback, // DEV-only\n replayConsole: boolean, // DEV-only\n environmentName: void | string, // DEV-only\n+ debugStartTime: void | number,...
2025-10-19T20:38:33
electron/electron
f4ba25a3daa41d6a9246e1c1c15fa55b595d50a9
05061544ab7bada371d96f82674f0769af4b1fc3
fix: frameless window resize in MAS builds (#49780)
[ { "path": "patches/chromium/fix_adjust_headless_mode_handling_in_native_widget.patch", "patch": "@@ -23,26 +23,26 @@ additional headless changes from breaking macOS window behavior.\n https://chromium-review.googlesource.com/c/chromium/src/+/7487666\n \n diff --git a/components/remote_cocoa/app_shim/native_...
2026-02-18T15:35:10
golang/go
2a5890cd46e5658b5ceab6cfd7a06b3bfe947fb9
e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966
cmd/go/internal/cache: update trim timestamp before trimming This reduces the chance that multiple go commands running in CI will try to trim at the same time, causing contention and slowing things down. Fixes #76314 Change-Id: I3edf818fc9583795f3f51b715fdbe75b6a6a6964 Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/cmd/go/internal/cache/cache.go", "patch": "@@ -385,13 +385,42 @@ func (c *DiskCache) Trim() error {\n \t// trim time is too far in the future, attempt the trim anyway. It's possible that\n \t// the cache was full when the corruption happened. Attempting a trim on\n \t// an empty cache is chea...
2026-03-09T17:51:56
vercel/next.js
0e6ab3f5487a49ec0ff4d7ab39dd1a6afec73cde
834c41ef20861dffcd3511cdfabd9fd2dfa25343
[Prefetch Inlining] Generate size-based hints on server (#90891) Part 1 of 2. This commit adds the server-side infrastructure for size-based segment bundling but does not change any observable behavior. The client-side changes that actually consume bundled responses are in the next commit. At build time, a measuremen...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -7,6 +7,7 @@ import type {\n import type { MiddlewareManifest } from './webpack/plugins/middleware-plugin'\n import type { ActionManifest } from './webpack/plugins/flight-client-entry-plugin'\n import type { CacheControl, Revalidate } from '../serve...
2026-03-13T16:09:25
nodejs/node
61a4a30e0e157ad46d48b56f39c6bf42a062d534
8e41b8d0c2d4e6312a6b8d2ebe17b7f211020532
test_runner: fix test enqueue when test file has syntax error PR-URL: https://github.com/nodejs/node/pull/61573 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -874,7 +874,10 @@ function run(options = kEmptyObject) {\n );\n if (topLevelTestCount === root.subtests.length) {\n // This file had no tests in it. Add the placeholder test.\n- const subtest = ro...
2026-02-02T16:57:37
facebook/react
58bdc0bb967098f14562cd76af0668f2056459a0
bf11d2fb2f01174974b7e1fa5b1c01d34936724b
[Flight] Ignore bound-anonymous-fn resources as they're not considered I/O (#34911) When you create a snapshot from an AsyncLocalStorage in Node.js, that creates a new bound AsyncResource which everything runs inside of. https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/internal/async_...
[ { "path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js", "patch": "@@ -142,10 +142,28 @@ export function initAsyncDebugInfo(): void {\n }: UnresolvedPromiseNode);\n }\n } else if (\n- type !== 'Microtask' &&\n- type !== 'TickObject' &&\n- ...
2025-10-19T18:56:56
golang/go
e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966
e84da0405bcf64c7dbaafb0afc14388049a9b6fc
internal/poll: move rsan to heap on windows According to https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsarecvfrom, the memory pointed to by lpFromlen must remain available during the overlapped I/O, and therefore cannot be allocated on the stack. CL 685417 moved the rsan field out of the o...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -157,7 +157,7 @@ var wsaMsgPool = sync.Pool{\n \n // newWSAMsg creates a new WSAMsg with the provided parameters.\n // Use [freeWSAMsg] to free it.\n-func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMsg {\n+func newWSAMsg...
2026-03-09T08:25:16
electron/electron
05061544ab7bada371d96f82674f0769af4b1fc3
10566c2d5f41e2fc8b77de591f2bd3e0406c0042
feat: enable WASM trap handlers in all Node.js processes (#48983) fix: enable WASM trap handlers in all Node.js processes ``` Original reason for revert: Some apps started throwing exception on startup https://github.com/electron/electron/issues/48956 ``` We now move the trap handler registeration before any user s...
[ { "path": "build/fuses/fuses.json5", "patch": "@@ -9,5 +9,6 @@\n \"embedded_asar_integrity_validation\": \"0\",\n \"only_load_app_from_asar\": \"0\",\n \"load_browser_process_specific_v8_snapshot\": \"0\",\n- \"grant_file_protocol_extra_privileges\": \"1\"\n+ \"grant_file_protocol_extra_privileges\"...
2026-02-18T03:08:03
facebook/react
ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4
40c7a7f6cac62bd6721328524cc787475ce026eb
Resolve the .default export of a React.lazy as the canonical value (#34906) For debug purposes this is the value that the `React.lazy` resolves to. It also lets us look at that value for descriptions like its name.
[ { "path": "packages/react/src/ReactLazy.js", "patch": "@@ -20,6 +20,8 @@ import {enableAsyncDebugInfo} from 'shared/ReactFeatureFlags';\n \n import {REACT_LAZY_TYPE} from 'shared/ReactSymbols';\n \n+import noop from 'shared/noop';\n+\n const Uninitialized = -1;\n const Pending = 0;\n const Resolved = 1;\n@@...
2025-10-19T18:56:25
vercel/next.js
834c41ef20861dffcd3511cdfabd9fd2dfa25343
c1f13e48b0ddd9887a99d486f2c9b190584d4a0e
Respect `generateStaticParams` in instant navigation shell (#91316) When the instant navigation testing cookie is set, the debug static shell path previously called `getFallbackRouteParams()` which treats all dynamic segments as fallback params regardless of `generateStaticParams`. This caused two issues: - Root para...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -938,19 +938,29 @@ export async function handler(\n : normalizedSrcPage\n \n const fallbackRouteParams =\n- // If we're in production and we have fallback route params, always\n- // use them...
2026-03-13T16:03:59
nodejs/node
8e41b8d0c2d4e6312a6b8d2ebe17b7f211020532
baba7483fc6e0f53c83febc23798f92d8034696f
sea: print error information when fs operations fail PR-URL: https://github.com/nodejs/node/pull/61581 Refs: https://github.com/nodejs/node/issues/61579 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises G...
[ { "path": "src/node_sea_bin.cc", "patch": "@@ -395,8 +395,10 @@ ExitCode BuildSingleExecutable(const std::string& sea_config_path,\n uv_fs_t req;\n int r = uv_fs_stat(nullptr, &req, config.executable_path.c_str(), nullptr);\n if (r != 0) {\n- FPrintF(\n- stderr, \"Error: Couldn't stat execut...
2026-01-29T22:06:43
rust-lang/rust
3f34c31af945def1ace8c74216de2f60ae866d8c
5bbdeaa9a8dc563185f40e99f96704cbcc7a6e6e
add variant `ExpectedNameValueAsLastArgument` to `AttributeParseErrorReason`
[ { "path": "compiler/rustc_attr_parsing/src/context.rs", "patch": "@@ -804,6 +804,17 @@ where\n )\n }\n \n+ pub(crate) fn expected_nv_as_last_argument(\n+ &self,\n+ span: Span,\n+ name_value_key: Symbol,\n+ ) -> ErrorGuaranteed {\n+ self.emit_parse_error(\n+ ...
2026-02-22T14:31:39
electron/electron
931c257de7f077f104362122f2202810612dd347
459a88f78810e58ebe8ec2a3801f8cd984383304
fix: accurate window sizing and support for content sizing on Linux/Wayland with CSD (#49209) * fix window sizing and content sizing on Linux when CSD is in use * fixed size constraints * simplify min/max size calculation * use base window size for min/max * moved windows min/max size overrides * remove unnecessa...
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -29,6 +29,7 @@\n #include \"shell/browser/api/electron_api_system_preferences.h\"\n #include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/ui/inspectable_web_contents_view.h\"\n+#include \"shell/browser/ui/views/fr...
2026-02-17T20:23:54
facebook/react
ef88c588d51366d16c5323dba4bd197aeb85e4ea
dc485c7303f0d7d10fdbd2ccd4a020574e679840
[DevTools] Tweak the rects design and create multi-environment color scheme (#34880) <img width="1011" height="811" alt="Screenshot 2025-10-16 at 2 20 46 PM" src="https://github.com/user-attachments/assets/6dea3962-d369-4823-b44f-2c62b566c8f1" /> The selection is now clearer with a wider outline which spans the bound...
[ { "path": "packages/react-devtools-shared/src/devtools/constants.js", "patch": "@@ -136,8 +136,6 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-timeline-text-dim-color': '#ccc',\n '--color-timeline-react-work-border': '#eeeeee',\n '--color-timebar-backgr...
2025-10-17T22:51:02
golang/go
d82eb907f3ef66e99d1ef08c0b34ffffbd49de5e
f5d830d57ae0e490d73442d2e04f73322266dbc6
testing: annotate output text type Provides a way to disambiguate output produced by (*testing.T).Error{,f} and (*testing.T).Fatal{,f} from other test logging. This allows test tooling such as CI systems to identify which part of the output is most pertinent for constructing summaries of test failures. This is achiev...
[ { "path": "src/cmd/go/testdata/script/test_json_ascii.txt", "patch": "@@ -1,11 +1,11 @@\n ! go test -json\n \n-stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test\\\\n\"'\n+stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test...
2024-11-16T15:42:53
vercel/next.js
254478317305c17871db277808eecd81ea6dd634
5903c030dc41b506ed344aff1c3f35315af085a4
Skip dimming when `--inspect` is used (#91271) When the Node.js inspector is active (e.g. via `next dev --inspect`), dimming wraps console arguments in a format string which defeats inspector affordances such as collapsible objects and clickable/linkified stack traces. This adds an early return in `convertToDimmedArg...
[ { "path": "packages/next/src/server/node-environment-extensions/console-dim.external.test.ts", "patch": "@@ -357,4 +357,61 @@ describe('console-exit patches', () => {\n ])\n })\n })\n+\n+ describe('inspector-aware dimming', () => {\n+ it('should skip dimming when inspector is open', async ()...
2026-03-13T15:17:43
nodejs/node
5212c07147ed98bb5eae94211b8c7fab3be9964a
c9673b839392b444718e58be9b46cf2e446305b7
net: add `setTOS` and `getTOS` to `Socket` PR-URL: https://github.com/nodejs/node/pull/61503 Fixes: https://github.com/nodejs/node/issues/61489 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/net.md", "patch": "@@ -747,6 +747,9 @@ it to interact with the client.\n <!-- YAML\n added: v0.3.4\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61503\n+ description: Added `typeOfService` option.\n - version: v15.14.0\n pr-url: https://git...
2026-02-02T11:23:31
golang/go
f5d830d57ae0e490d73442d2e04f73322266dbc6
16cebc1165d0613051bb5ae97e1af856f8bc55f2
cmd/go/internal/testdata: change list_std_vendor to use local modproxy Also update get_panic_issue75251 to reflect that "golang.org/x/net" now exists in the proxy. The new message is closer to the real world behavior of the go command. Change-Id: Icb916f7eb7628bf5340c15275f4d08086a6a6964 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/go/testdata/mod/golang.org_x_net_v0.1.0.txt", "patch": "@@ -0,0 +1,10 @@\n+written by hand - just enough for list_std_vendor.txt\n+\n+-- .mod --\n+module golang.org/x/net\n+-- .info --\n+{\"Version\":\"v0.1.0\",\"Name\":\"\",\"Short\":\"\",\"Time\":\"2026-03-08T00:00:00Z\"}\n+-- go.mod --...
2026-03-08T19:46:36
facebook/react
dc485c7303f0d7d10fdbd2ccd4a020574e679840
c35f6a3041816613e704772ca9dafb26568d9f89
[Flight] Fix detached `ArrayBuffer` error when streaming typed arrays (#34849) Using `renderToReadableStream` in Node.js with binary data from `fs.readFileSync` (or `Buffer.allocUnsafe`) could cause downstream consumers (like compression middleware) to fail with "Cannot perform Construct on a detached ArrayBuffer". T...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js", "patch": "@@ -10,11 +10,11 @@\n \n 'use strict';\n \n+import fs from 'fs';\n+import os from 'os';\n+import path from 'path';\n import {patchSetImmediate} from '../../../../scripts/jest/patchSetImmediate';\n \n-global.Rea...
2025-10-17T20:13:52
nodejs/node
6c44d31e2522021b724096939bc44defa42ec6a5
356e4aef59c5cf09dd8a0f09d896e4d71c7e2a67
doc: fix node-config-schema PR-URL: https://github.com/nodejs/node/pull/61596 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Colin Ihrig <cji...
[ { "path": "doc/node-config-schema.json", "patch": "@@ -1,12 +1,14 @@\n {\n \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n \"additionalProperties\": false,\n+ \"required\": [],\n \"properties\": {\n \"$schema\": {\n \"type\": \"string\"\n },\n \"nodeOptions\": {\n ...
2026-02-01T21:50:55
golang/go
e715e208f22df43c67707ea1f2047d157b0a7390
827564191b9796a764e970175cecd51c2030530e
cmd/go/testdata/script: rewrite mod_invalid_version to not use network Use vcstest to deflake the test. Fixes #68420 Change-Id: I0c54a0e9cbab160636e3be53e615b7816a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/751600 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Ian Alexander <jitsu...
[ { "path": "src/cmd/go/testdata/script/mod_invalid_version.txt", "patch": "@@ -1,244 +1,239 @@\n-[!net:golang.org] skip\n+[short] skip\n [!git] skip\n \n-env GO111MODULE=on\n env GOPROXY=direct\n env GOSUMDB=off\n env GOFLAGS=-mod=mod\n \n # Regression test for golang.org/issue/27173: if the user (or go.mod ...
2026-03-04T22:04:16
facebook/react
c35f6a3041816613e704772ca9dafb26568d9f89
adbc32de32bc52f9014cedb5ff5a502be35aff51
[compiler] Optimize props spread for common cases (#34900) As part of the new inference model we updated to (correctly) treat destructuring spread as creating a new mutable object. This had the unfortunate side-effect of reducing precision on destructuring of props, though: ```js function Component({x, ...rest}) { ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -19,6 +19,7 @@ import {\n Environment,\n FunctionExpression,\n GeneratedSource,\n+ getHookKind,\n HIRFunction,\n Hole,\n IdentifierId,\n@@ -198,6 +199,7 @@ export function infer...
2025-10-17T18:59:17
nodejs/node
27a7bbc624e4751ca53cd8736336f1ed78cbd1ca
f6464c57f6d36894506ac92ef3e6951c999b5ed2
assert: fix loose deepEqual arrays with undefined and null failing The comparison has to accept these as identical. Fixes: https://github.com/nodejs/node/issues/61583 PR-URL: https://github.com/nodejs/node/pull/61587 Reviewed-By: Jithil P Ponnan <jithil@outlook.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Review...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -998,9 +998,10 @@ function objEquiv(a, b, mode, keys1, keys2, memos, iterationType) {\n if (b[i] === undefined) {\n if (!hasOwn(b, i))\n return sparseArrayEquiv(a, b, mode, memos, i);\n- if (a[i] !== undefined || !hasO...
2026-02-01T13:00:17
golang/go
9e0b5684e1f7166d6427635673001c80218ac9f4
b7d1c5887561ee5502b6c04baaa27ead13b63971
net: correctly handle non-nil empty cmsg buffer on windows Fixes #77875. Change-Id: I0ed91be7ed10c04ddea3af55548a8dbf0be5f3a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/750420 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: David Chase <drchase@goog...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -167,9 +167,11 @@ func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMs\n \tmsg := wsaMsgPool.Get().(*windows.WSAMsg)\n \tmsg.Buffers.Len = uint32(len(p))\n \tmsg.Buffers.Buf = unsafe.SliceData(p)\n-\tmsg.Control = syscall....
2026-03-01T16:43:57
electron/electron
459a88f78810e58ebe8ec2a3801f8cd984383304
c98cf69f402d1af0afbd8286331dbf75a9ec58b5
docs: fix typos across tutorial documentation (#49736)
[ { "path": "docs/tutorial/asar-archives.md", "patch": "@@ -6,7 +6,7 @@ hide_title: false\n ---\n \n After creating an [application distribution](application-distribution.md), the\n-app's source code are usually bundled into an [ASAR archive](https://github.com/electron/asar),\n+app's source code is usually b...
2026-02-17T19:47:45
facebook/react
adbc32de32bc52f9014cedb5ff5a502be35aff51
1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9
[compiler] More fbt compatibility (#34887) In my previous PR I fixed some cases but broke others. So, new approach. Two phase algorithm: * First pass is forward data flow to determine all usages of macros. This is necessary because many of Meta's macros have variants that can be accessed via properties, eg you can do...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -83,21 +83,11 @@ export type ExternalFunction = z.infer<typeof ExternalFunctionSchema>;\n export const USE_FIRE_FUNCTION_NAME = 'useFire';\n export const EMIT_FREEZE_GLOBAL_GATING = '__DEV__';\n \n-export const Ma...
2025-10-17T18:37:28
nodejs/node
f6464c57f6d36894506ac92ef3e6951c999b5ed2
f200685d9930404d610a52d9e06513bf0a821ed4
sqlite: change approach to fix segfault SQLTagStore PR-URL: https://github.com/nodejs/node/pull/60462 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Zeyu "Ale...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -2819,6 +2819,7 @@ BaseObjectPtr<SQLTagStore> SQLTagStore::Create(\n .ToLocal(&obj)) {\n return nullptr;\n }\n+ obj->SetInternalField(kDatabaseObject, database->object());\n return MakeBaseObject<SQLTagStore>(env, obj, std::move(database), cap...
2026-01-31T06:35:30
facebook/react
1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9
7f5ea1bf67a1a920919ebe2ae6657bdebe505aa0
[compiler] Cleanup and enable validateNoVoidUseMemo (#34882) This is a great validation, so let's enable by default. Changes: * Move the validation logic into ValidateUseMemo alongside the new check that the useMemo result is used * Update the lint description * Make the void memo errors lint-only, they don't require ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -988,7 +988,7 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n severity: ErrorSeverity.Error,\n name: 'void-use-memo',\n description:\n- 'Validates that useM...
2025-10-16T20:08:57
electron/electron
c98cf69f402d1af0afbd8286331dbf75a9ec58b5
0da0c3a47e950df206960bd33c424b109a166e2b
chore: bump chromium to 147.0.7687.0 (main) (#49782) * chore: bump chromium in DEPS to 147.0.7683.0 * fix(patch): constant moved to header Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7536483 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(patch): occlusion simplification upstream ...
[ { "path": ".claude/skills/electron-chromium-upgrade/SKILL.md", "patch": "@@ -7,14 +7,13 @@ description: Guide for performing Chromium version upgrades in the Electron proj\n \n ## Summary\n \n-Run `e sync --3` repeatedly, fixing patch conflicts as they arise, until it succeeds. Then run `e patches all` and ...
2026-02-17T19:25:21
facebook/react
2381ecc290c588f6366bdcf377529668bb3cc360
5418d8bdc12ae00859029bcd2abc9eb65e8f4fb4
[ESLint] Disallow passing effect event down when inlined as a prop (#34820) ## Summary Fixes https://github.com/facebook/react/issues/34793. We are allowing passing down effect events when they are inlined as a prop. ``` <Child onClick={useEffectEvent(...)} /> ``` This seems like a case that someone not familiar w...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -1555,6 +1555,17 @@ const allTests = {\n `,\n errors: [useEffectEventError('onClick', false)],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because useEffectEvent is being pa...
2025-10-16T18:18:01
electron/electron
a056c63fd81eb3c199972a9313f3d1615e2d31d9
bf3eb098bda229c139aaae4f50c2304dc8306ecb
fix: excise `abort_report_np` usage in MAS (#49726) * fix: excise abort_report_np usage in MAS * chore: fix it harder
[ { "path": "patches/chromium/mas_avoid_private_macos_api_usage.patch.patch", "patch": "@@ -61,6 +61,127 @@ index 01b3ae3c904b76a0421f0562cfcd887980087d80..b712db260fb9b941da82b6a4d1849db1\n ]\n \n # Used by metrics/crc32\n+diff --git a/base/allocator/BUILD.gn b/base/allocator/BUILD.gn\n+index 2cc49d83...
2026-02-16T11:23:53
facebook/react
5418d8bdc12ae00859029bcd2abc9eb65e8f4fb4
ed1351c4fb92f84657a0c1a2af5ccef2484f7bd7
Fix changelog link (#34879) Closes https://github.com/reactjs/react.dev/issues/8081
[ { "path": "CHANGELOG.md", "patch": "@@ -9,7 +9,7 @@ Read the [React 19.2 release post](https://react.dev/blog/2025/10/01/react-19-2)\n - [`<Activity>`](https://react.dev/reference/react/Activity): A new API to hide and restore the UI and internal state of its children.\n - [`useEffectEvent`](https://react.d...
2025-10-16T17:40:26
vercel/next.js
a65c3c86e762623278d1d9aca317c0afbc90bce0
0b5f67d7b98bef023bf34257b05fa0ae810ac660
Hydrate page loads during instant navigation testing (#91207) Previously, MPA page loads (reload, anchor navigation) while the instant navigation lock was held would skip hydration entirely and hard-reload when the lock released. This meant the page was non-interactive during the locked period and tests couldn't asser...
[ { "path": "package.json", "patch": "@@ -146,6 +146,7 @@\n \"@next/polyfill-module\": \"workspace:*\",\n \"@next/polyfill-nomodule\": \"workspace:*\",\n \"@next/swc\": \"workspace:*\",\n+ \"@next/playwright\": \"workspace:*\",\n \"@next/third-parties\": \"workspace:*\",\n \"@openteleme...
2026-03-12T23:03:05
electron/electron
bf3eb098bda229c139aaae4f50c2304dc8306ecb
67cced1270074a91075265fa1d7f6763988dc842
fix: missing shared texture docs (#49797)
[ { "path": "shell/common/api/shared_texture/README.md", "patch": "@@ -0,0 +1,47 @@\n+# Importing Shared Texture\n+\n+This document describes the design of the `sharedTexture` API that imports external shared textures into Electron as a `VideoFrame`. Written based on Electron 37 and Chromium 137. Note that Ch...
2026-02-16T09:51:31
facebook/react
ed1351c4fb92f84657a0c1a2af5ccef2484f7bd7
93f8593289538b0be7b0eefec85e9a6ca8f56738
[compiler] improve zod v3 backwards compat (#34877) ## Summary When upgrading to `babel-plugin-react-compiler@1.0.0` in a project that uses `zod@3` we are running into TypeScript errors like: ``` node_modules/babel-plugin-react-compiler/dist/index.d.ts:435:10 - error TS2694: Namespace '"/REDACTED/node_modules/zod/v3...
[ { "path": "compiler/packages/babel-plugin-react-compiler/package.json", "patch": "@@ -52,8 +52,8 @@\n \"react-dom\": \"0.0.0-experimental-4beb1fd8-20241118\",\n \"ts-jest\": \"^29.1.1\",\n \"ts-node\": \"^10.9.2\",\n- \"zod\": \"^3.22.4 || ^4.0.0\",\n- \"zod-validation-error\": \"^3.0.3 ||...
2025-10-16T16:46:55
nodejs/node
ea83d326f7bc568a421b7f108f07e935c786d0f7
3fbb8b7efc910684a52cc0355d196e666fd29fb3
test_runner: fix passing `expectFailure` PR-URL: https://github.com/nodejs/node/pull/61568 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Chemi...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -82,6 +82,7 @@ const kParentAlreadyFinished = 'parentAlreadyFinished';\n const kSubtestsFailed = 'subtestsFailed';\n const kTestCodeFailure = 'testCodeFailure';\n const kTestTimeoutFailure = 'testTimeoutFailure';\n+const kExpectedFailure = 'expected...
2026-01-30T17:41:45
vercel/next.js
0b5f67d7b98bef023bf34257b05fa0ae810ac660
5809756f5599f9cd5fd8396b44eb7a4d9668479e
docs(turbopack): Migrate docs about traits from mdbook to rustdocs (#91170) Migrates the content from https://turbopack-rust-docs.vercel.sh/turbo-engine/traits.html over to rustdocs, and tries to update/fix some minor mistakes our outdated docs. ![Screenshot 2026-03-10 at 14-38-39 value_trait in turbo_tasks - Rust.pn...
[ { "path": "turbopack/crates/turbo-tasks/src/lib.rs", "patch": "@@ -71,7 +71,7 @@ pub use anyhow::{Error, Result};\n use auto_hash_map::AutoSet;\n use rustc_hash::FxHasher;\n pub use shrink_to_fit::ShrinkToFit;\n-pub use turbo_tasks_macros::{turbobail, turbofmt, value_impl};\n+pub use turbo_tasks_macros::{tu...
2026-03-12T22:47:38
facebook/react
4e0074737826a1296eb028c53ce4f6b6db8d09ba
7bd8716acdd9a484e81addcaa923e0a69e61d533
[DevTools] Don't pluralize if already plural (#34870) In a demo today, `cookies()` showed up as `cookieses`. While adorable, is wrong.
[ { "path": "packages/react-devtools-shared/src/devtools/views/utils.js", "patch": "@@ -205,6 +205,27 @@ export function pluralize(word: string): string {\n return word;\n }\n \n+ // Bail out if it's already plural.\n+ switch (word) {\n+ case 'men':\n+ case 'women':\n+ case 'children':\n+ ...
2025-10-16T14:50:18
electron/electron
3a5f9e0a337a5d7b7dcb9984dde9876be725ddf7
f90e35cb4566b410a543a38f57452ca84bb69923
chore: bump node to v24.13.1 (main) (#49744) * chore: bump node in DEPS to v24.13.1 * chore: fixup patches refs: * https://github.com/nodejs/node/pull/60425 * https://github.com/nodejs/node/pull/61270 * https://github.com/nodejs/node/pull/61044 * fix: generate_config_gypi needs to generate valid JSON https://githu...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '146.0.7666.0',\n 'node_version':\n- 'v24.13.0',\n+ 'v24.13.1',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2026-02-13T08:48:05
nodejs/node
938f175dbeffe85ca9e96b88f9ee599fe80ea42d
ec15c3b7b14a09b64c8bf0a3f117fbf16302a9b3
stream: add bytes() method to stream/consumers - Add bytes() method to get Uint8Array from streams - Add tests for bytes() method in PassThrough and ObjectMode scenarios - Update documentation Fixes: https://github.com/nodejs/node/issues/59542 PR-URL: https://github.com/nodejs/node/pull/60426 Reviewed-By: Ethan Arrow...
[ { "path": "doc/api/webstreams.md", "patch": "@@ -1694,6 +1694,43 @@ buffer(readable).then((data) => {\n });\n ```\n \n+#### `streamConsumers.bytes(stream)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `stream` {ReadableStream|stream.Readable|AsyncIterator}\n+* Returns: {Promise} Fulfills with a {Uint8Arra...
2026-01-29T13:24:39
facebook/react
85f415e33b95d65aaa29f92268b31d33060628ac
903366b8b1ee4206020492c6e8140645c0cb563e
[compiler] Fix fbt for the ∞th time (#34865) We now do a single pass over the HIR, building up two data structures: * One tracks values that are known macro tags or macro calls. * One tracks operands of macro-related instructions so that we can later group them. After building up these data structures, we do a pass o...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/MemoizeFbtAndMacroOperandsInSameScope.ts", "patch": "@@ -7,14 +7,17 @@\n \n import {\n HIRFunction,\n+ Identifier,\n IdentifierId,\n+ InstructionValue,\n makeInstructionId,\n MutableRange,\n Place,\n- ReactiveValue,\n+ ...
2025-10-15T23:23:31
vercel/next.js
5809756f5599f9cd5fd8396b44eb7a4d9668479e
b7438b4e98138c1dac1a310ace132fe0b91410d0
bundle-analyzer: merge _app route modules into current route visualization (#90841) This: - Fetches `data/_app/analyze.data` alongside the current route's data - Merges `_app` modules into the current route's `AnalyzeData` before visualization using a `mergeAnalyzeData()`, which merges the two datasets, reindexing th...
[ { "path": "apps/bundle-analyzer/lib/analyze-data.ts", "patch": "@@ -477,9 +477,4 @@ export class AnalyzeData {\n 'node_modules/next/dist/build/polyfills/polyfill-nomodule.js'\n )\n }\n-\n- // Get the raw header for debugging\n- getRawAnalyzeHeader(): AnalyzeDataHeader {\n- return this.analy...
2026-03-12T21:52:36
nodejs/node
ec15c3b7b14a09b64c8bf0a3f117fbf16302a9b3
68d7b6f87098416dc30fbb711fdff64fc2102809
test_runner: add env option to run function Support an `env` option that is passed to the underlying child_process. Fixes: https://github.com/nodejs/node/issues/60709 PR-URL: https://github.com/nodejs/node/pull/61367 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi...
[ { "path": "doc/api/test.md", "patch": "@@ -1435,6 +1435,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61367\n+ description: Add the `env` option.\n - version: v24.7.0\n pr-url: https://github.com/nodejs/node/pull/59443...
2026-01-29T08:18:11
electron/electron
74fd10450f3fd85821ec158a4b87924526a6ae9d
a65cfed500c2bfac87307d4646eb481ae0637974
feat: improve Windows Toast actions support (#48132) * feat: improve Windows Toast actions support * fix: ensure MSIX compatibility * test: add bad clsid format test
[ { "path": "docs/api/app.md", "patch": "@@ -1122,6 +1122,19 @@ Updates the current activity if its type matches `type`, merging the entries fro\n \n Changes the [Application User Model ID][app-user-model-id] to `id`.\n \n+### `app.setToastActivatorCLSID(id)` _Windows_\n+\n+* `id` string\n+\n+Changes the [Toa...
2026-02-12T22:25:20
facebook/react
1873ad7960da8fd8d497d03da8050ad88b8bcacf
77b2f909f6261ec2c5de75dbe76287ec6fead0d0
[DevTools] The bridge event types should only be defined in one direction (#34859) This revealed that a lot of the event types were defined on the wrong end of the bridge. It was also a problem that events with the same name couldn't have different arguments.
[ { "path": "packages/react-devtools-shared/src/bridge.js", "patch": "@@ -217,10 +217,15 @@ export type BackendEvents = {\n selectElement: [number],\n shutdown: [],\n stopInspectingHost: [boolean],\n- syncSelectionFromBuiltinElementsPanel: [],\n syncSelectionToBuiltinElementsPanel: [],\n unsupporte...
2025-10-15T15:42:03
vercel/next.js
b7438b4e98138c1dac1a310ace132fe0b91410d0
90861b0f3436544a0daf7cb4b475650d30f2079f
[Instant] Show owner stack for validation-blocking errors (#91277) Adds extra context to errors that we think may have prevented validation: <img width="816" height="765" alt="Screenshot 2026-03-12 at 22 07 40" src="https://github.com/user-attachments/assets/35ce60d0-4840-496e-b91e-62ada4096f64" /> This is particula...
[ { "path": "packages/next/errors.json", "patch": "@@ -1115,5 +1115,6 @@\n \"1114\": \"Route \\\"%s\\\" accessed root param \\\"%s\\\" which is not defined in the \\\\`samples\\\\` of \\\\`unstable_instant\\\\`. Add it to the sample's \\\\`params\\\\` object.\",\n \"1115\": \"Route \\\"%s\\\" accessed coo...
2026-03-12T21:48:22
facebook/react
e7984651e4f123d8112f5abab39782ee70d8f4aa
5f2b571878ec3b5884f5739915a974b98d7384d5
[playground] Allow accordion tabs to open on error (#34844) There was a bug where the other output passes (aside from the "Output" tab) were unable to open on compiler error. This PR still allows for the "Output" tab to automatically open on error, but also allows other tabs to be opened. https://github.com/user-att...
[ { "path": "compiler/apps/playground/components/AccordionWindow.tsx", "patch": "@@ -22,7 +22,6 @@ export default function AccordionWindow(props: {\n tabsOpen: Set<string>;\n setTabsOpen: (newTab: Set<string>) => void;\n changedPasses: Set<string>;\n- isFailure: boolean;\n }): React.ReactElement {\n ...
2025-10-14T19:07:27
nodejs/node
6cc2ed56dae896078eff38083d9bd2ba42ffac38
859332bf76a0f56953105b0e3822663b39b41132
buffer: disallow ArrayBuffer transfer on pooled buffer PR-URL: https://github.com/nodejs/node/pull/61372 Fixes: https://github.com/nodejs/node/issues/61362 Refs: https://github.com/v8/v8/commit/c5ff7c4d6cdea06d0319609875c41eaa77b70db0 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: René <contact.9a5d6388...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -256,6 +256,8 @@ In particular, this makes sense for objects that can be cloned, rather than\n transferred, and which are used by other objects on the sending side.\n For example, Node.js marks the `ArrayBuffer`s it uses for its\n [`Buffer` pool][`Buffer.a...
2026-01-13T15:04:58
vercel/next.js
5752c80526a6763570f97f74cceb08cf863cc94c
fc6bd9ea8d1a764a0a7c01c0dc2a4cd2aab059ed
chore(deps): Bump tar from 7.5.7 to 7.5.11 in /packages/next (#91233) Bumps [tar](https://github.com/isaacs/node-tar) from 7.5.7 to 7.5.11. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/isaacs/node-tar/commit/bf776f673164215074b62749e0fe80e5834588f4"><code>bf776f6</code></a> 7.5.11</li> <li...
[ { "path": "packages/next/package.json", "patch": "@@ -331,7 +331,7 @@\n \"strip-ansi\": \"6.0.0\",\n \"style-loader\": \"4.0.0\",\n \"superstruct\": \"1.0.3\",\n- \"tar\": \"7.5.7\",\n+ \"tar\": \"7.5.11\",\n \"taskr\": \"1.1.0\",\n \"terser\": \"5.27.0\",\n \"terser-webpack-pl...
2026-03-12T18:52:36
facebook/react
5f2b571878ec3b5884f5739915a974b98d7384d5
56e846921d600878ae0ab7bb400fdeba97d81827
[DevTools] Filter out built-in stack frames (#34828) Treat fake eval anonymous stacks as built-in. Hide built-in stack frames unless they're used to call into a non-ignored stack frame. The two main things to fix here is that 1) we're showing a linkified stack for fake anonymous and 2) we're showing only built-ins wh...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css", "patch": "@@ -2,13 +2,17 @@\n padding: 0.25rem;\n }\n \n-.CallSite, .IgnoredCallSite {\n+.CallSite {\n display: block;\n padding-left: 1rem;\n }\n \n-.IgnoredCallSite {\n- opacity: 0.5;\n+.IgnoredCallSite, .B...
2025-10-14T13:34:57
nodejs/node
859332bf76a0f56953105b0e3822663b39b41132
a9dd48f64b5189c1870885adf5285a8b20486a38
deps: V8: cherry-pick c5ff7c4d6cde Original commit message: [builtins] disallow ArrayBuffer transfer with a detach key This allows embedder to disallow `ArrayBuffer.prototype.transfer()` on an arraybuffer that is not detachable. This also fix the check on `ArrayBufferCopyAndDetach` step 8 of `ArrayBu...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2026-01-14T19:55:26
golang/go
b7d1c5887561ee5502b6c04baaa27ead13b63971
383000da24e9b32dbe3cae4c48cbb233d7c62253
cmd/go: disallow go env -w GOROOT=... The go command determines GOROOT from where the binary is. It is an error to try to run a go command with a mismatched Go tree. The only possible use for 'go env -w GOROOT=...' would be if you copied the go executable to a new place (say, $HOME/bin) and needed to set the default G...
[ { "path": "src/cmd/go/internal/envcmd/env.go", "patch": "@@ -604,7 +604,17 @@ func getOrigEnv(key string) string {\n \n func checkEnvWrite(key, val string) error {\n \tswitch key {\n-\tcase \"GOEXE\", \"GOGCCFLAGS\", \"GOHOSTARCH\", \"GOHOSTOS\", \"GOMOD\", \"GOWORK\", \"GOTOOLDIR\", \"GOVERSION\", \"GOTELE...
2026-02-26T17:39:48
electron/electron
a65cfed500c2bfac87307d4646eb481ae0637974
e9faa14cc0c57aad3e446cf32a6ae3599f94b9df
chore: bump chromium to 146.0.7666.0 (main) (#49528) * chore: bump chromium in DEPS to 146.0.7652.0 * fix(patch-conflict): update mas_avoid_private_macos_api_usage context for constrainFrameRect method The upstream CL added a new constrainFrameRect:toScreen: method override to NativeWidgetMacNSWindow as part of head...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '146.0.7650.0',\n+ '146.0.7666.0',\n 'node_version':\n 'v24.13.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-02-12T17:37:56
vercel/next.js
14118707b5446aa97fa42dd0b5fa9a069f740ebe
7bbea9d4b1e086841f455db2feb73db96efc2e55
[Instant] fix instant config suggested by editor plugin (#91262) We forgot to update the autocomplete hint when we changed it from `mode` to `prefetch`.
[ { "path": "packages/next/src/server/typescript/rules/config.ts", "patch": "@@ -154,7 +154,7 @@ const API_DOCS: Record<\n // with the way this plugin is currently structured.\n // For now, since we don't provide an `options` here, we won't do any validation in\n // `getSemanticDiagnosticsForExpor...
2026-03-12T14:15:35
nodejs/node
5a8864de93211434c8cdbdf3d2426bfa8a9b3e81
8033ab23e582cd53731ac9064c6cac7dc598fa79
build,win: fix vs2022 compilation PR-URL: https://github.com/nodejs/node/pull/61530 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "vcbuild.bat", "patch": "@@ -270,7 +270,7 @@ if %target_arch%==%msvs_host_arch% set vcvarsall_arg=%target_arch%\n \n @rem Look for Visual Studio 2026\n :vs-set-2026\n-if defined target_env if \"%target_env%\" NEQ \"vs2026\" goto msbuild-not-found\n+if defined target_env if \"%target_env%\" NEQ \"v...
2026-01-28T14:52:43
rust-lang/rust
fcd9c36f3bd88748d760b893cd0fd00c8a199f3a
b2c6beb7e0de107cc61c75c5ba3b92764a6dac0c
fix: Fix param inlayHints on empty expr and comma Example --- ```rust pub fn test(a: i32, b: i32, c: i32) {} fn main() { test(, 2,); test(, , 3); } ``` **Before this PR** ```rust test(, 2,); //^ a test(, , 3); //^ a ``` **After this PR** ```rust test(, 2,); //^ b ...
[ { "path": "src/tools/rust-analyzer/crates/ide/src/inlay_hints/param_name.rs", "patch": "@@ -37,8 +37,9 @@ pub(super) fn hints(\n let hints = callable\n .params()\n .into_iter()\n- .zip(arg_list.args())\n+ .zip(arg_list.args_maybe_empty())\n .filter_map(|(p, arg)| {\...
2026-04-01T03:09:56
golang/go
383000da24e9b32dbe3cae4c48cbb233d7c62253
b9545da71c2f5e93355d82a1f9b5ead02f2bc617
cmd/internal/obj: fix indirect tail call code The assembler isn't handling this correctly for most architectures. Of course, the two I tried first, arm64 and amd64, worked, so I assumed other archs could handle it also. Apparently not. Should fix dashboard failures introduced by CL 751465. Change-Id: I9fc4f123d11acf...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -352,16 +352,25 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\tcase obj.ARET:\n \t\t\tnocache(p)\n+\n+\t\t\tretSym, retReg := p.To.Sym, p.To.Reg\n+\t\t\tif retReg == obj.REG_NONE {\n+\t\t\t\tretReg = REGLINK\n...
2026-03-06T23:44:41
electron/electron
ce47542ccd1608db6b857eb989acf7c57d2bc482
ff2df2c98ab2b5e528f1eec716dc740c7f28837a
feat: add support for `long-animation-frame` script attribution (#49706) * feat: add support for `long-animation-frame` script attribution * docs: document `AlwaysLogLOAFURL` * chore: add test * docs: adjust docs as per PR comment * fix: test failures * chore: simplify test * fix: tests on Windows and Linux
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -370,6 +370,13 @@ Keep in mind that standalone switches can sometimes be split into individual fea\n \n Finally, you'll need to ensure that the version of Chromium in Electron matches the version of the browser you're using to cross-reference the s...
2026-02-11T17:34:22
nodejs/node
8c380ded4606a0c719a7f8bb7914b7a8f5041d31
37e40040a7ff391120c1664b9145e7ccf6486a77
async_hooks: add trackPromises option to createHook() This adds a trackPromises option that allows users to completely opt out of the promise hooks that are installed whenever an async hook is added. For those who do not need to track promises, this avoids the excessive hook invocation and the heavy overhead from it. ...
[ { "path": "doc/api/async_hooks.md", "patch": "@@ -144,18 +144,20 @@ function destroy(asyncId) { }\n function promiseResolve(asyncId) { }\n ```\n \n-## `async_hooks.createHook(callbacks)`\n+## `async_hooks.createHook(options)`\n \n <!-- YAML\n added: v8.1.0\n -->\n \n-* `callbacks` {Object} The [Hook Callbac...
2026-01-28T11:25:24
golang/go
90b428ebf565f61a8ef13d2b6a59c55704923c74
ec3373e379696c5d9ba6874caed34a309a76181b
net: skip TestListenIPv6WildcardAddr on platforms w/o IPv4-mapped IPv6 On these platforms, Listen and friends default to IPv4 for wildcard addresses (unless network is "tcp6" or "udp6") due to lack of support for dual-stack IPv6 sockets (IPV6_V6ONLY=0). Fixes #77945. Change-Id: I50c4be1d4fd620dd997d4d0f02bd74e8e41e4...
[ { "path": "src/net/ipsock_test.go", "patch": "@@ -283,19 +283,15 @@ func TestAddrListPartition(t *testing.T) {\n }\n \n func TestListenIPv6WildcardAddr(t *testing.T) {\n-\tswitch runtime.GOOS {\n-\tcase \"js\", \"wasip1\":\n+\tif runtime.GOOS == \"js\" || runtime.GOOS == \"wasip1\" {\n \t\tt.Skip(\"fake net...
2026-03-04T18:11:01
facebook/react
03a62b20fddb197876ce20ac5ea34994b0e5b242
b9ec735de248f46da181afbc12aa906422be0dba
[Flight] Look for moved debugInfo when logging component performance track (#34839)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -4318,7 +4318,26 @@ function flushComponentPerformance(\n \n // First find the start time of the first component to know if it was running\n // in parallel with the previous.\n- const debugInfo = __DEV__ && root._debugInfo;\n+ le...
2025-10-14T11:21:12
vercel/next.js
7bbea9d4b1e086841f455db2feb73db96efc2e55
87b7ca09d5fdb4ae4207802080b8e629b0e5ebab
[Instant] Build-time validation (#90964) Initial version of build-time instant validation. During prerendering, if we have `unstable_instant` configs, we perform a complete staged render of the page (including dynamic data). This render mocks request data (`params`/`searchParams`/`cookies`/`headers`) using the `sampl...
[ { "path": "crates/next-error-code-swc-plugin/src/lib.rs", "patch": "@@ -57,6 +57,7 @@ fn is_error_class_name(name: &str) -> bool {\n || name == \"ExportError\"\n || name == \"FatalError\"\n || name == \"ImageError\"\n+ || name == \"InstantValidationError\"\n || name ==...
2026-03-12T13:57:38
electron/electron
0284b9afcc1dbb7c01aac962ea585d80ac68cdd5
52061b4c28e0a7f208be5dbad6e4ea2e5663ffb5
build: fixup attestation for release assets (#49732) * build: fixup attestation for release assets * Generate artifact attestation for generated artifacts * set id-token for attestation * Add artifact-metadata permission for attestation * add permissions for testing attestations * Revert "add permissions for test...
[ { "path": ".github/workflows/linux-publish.yml", "patch": "@@ -46,6 +46,7 @@ jobs:\n publish-x64:\n uses: ./.github/workflows/pipeline-segment-electron-publish.yml\n permissions:\n+ artifact-metadata: write\n attestations: write\n contents: read\n id-token: write\n@@ -65,6 +...
2026-02-11T12:17:59
nodejs/node
74c36584653346fa4940194380b2ab5201942dd0
150d154bf1ba6cc28ca6276b94117b5a2813e6c8
build: enable -DV8_ENABLE_CHECKS flag Fixes: https://github.com/nodejs/node/issues/61301 PR-URL: https://github.com/nodejs/node/pull/61327 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "configure.py", "patch": "@@ -1969,7 +1969,7 @@ def configure_library(lib, output, pkgname=None):\n \n \n def configure_v8(o, configs):\n- set_configuration_variable(configs, 'v8_enable_v8_checks', release=1, debug=0)\n+ set_configuration_variable(configs, 'v8_enable_v8_checks', release=0, debug...
2026-01-28T04:17:08
golang/go
bbed50aaa3033c9be6a5268268a7faf226be9de0
de5c138eef88685442dc71e36dd98d66b885a605
cmd/link: sort .pdata by function start address Loosely based on CL 678795. The PE/COFF spec requires RUNTIME_FUNCTION entries in the .pdata section to be ordered by their function start address. Previously the linker emitted them in symbol order. An unsorted table triggers the MSVC linker error: fatal error LN...
[ { "path": "src/cmd/cgo/internal/test/seh_internal_windows_test.go", "patch": "@@ -1,16 +0,0 @@\n-// Copyright 2024 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build cgo && windows && internal\n-\n-...
2026-02-10T13:21:15
facebook/react
b9ec735de248f46da181afbc12aa906422be0dba
47905a79507f9ae5fc1bf633f7cbbd1894b9523b
[Perf Tracks]: Clear potentially large measures (#34803) Fixes https://github.com/facebook/react/issues/34770. We need to clear measures at some point, otherwise all these copies of props that we end up recording will allocate too much memory in Chromium. This adds `performance.clearMeasures(...)` calls to such cases...
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -102,6 +102,7 @@ export function logComponentRender(\n const entryName =\n isPrimaryEnv || env === undefined ? name : name + ' [' + env + ']';\n const debugTask = componentInfo.debugTask;\n+ const measureName...
2025-10-13T21:42:13
electron/electron
1c621cc98246413e141af26bab1eb46cecc8f83f
57a6e430252a6ca1cbc3f24a5de39e779fdf985e
docs: fix typos across documentation (#49734) Fix 40 typos across 25 documentation files including misspellings, missing words, doubled words, wrong words, and grammatical errors.
[ { "path": "docs/api/app.md", "patch": "@@ -633,7 +633,7 @@ Returns `string` - The current application directory.\n Returns `string` - A path to a special directory or file associated with `name`. On\n failure, an `Error` is thrown.\n \n-If `app.getPath('logs')` is called without called `app.setAppLogsPath()...
2026-02-11T11:45:46
vercel/next.js
41ed440b50dafe6bb1f76bd6774e7284288e0b16
b4efbdbd1bcccfdd4b9659407fc10cec28c94d24
TURBOPACK: typescript transform support verbatimModuleSyntax (#90907) In utoo case, we need to support react classic jsx transform(To compitable with react 16 or above project). We have a case like: ```ts // index.ts import React from 'react'; export const App = () => <div></div>; ``` Under the classic jsx transfo...
[ { "path": "crates/next-core/src/transform_options.rs", "patch": "@@ -54,9 +54,23 @@ pub async fn get_typescript_transform_options(\n ) -> Result<Vc<TypescriptTransformOptions>> {\n let tsconfig = get_typescript_options(project_path, tsconfig_path).await?;\n \n- let use_define_for_class_fields = if le...
2026-03-12T04:30:11
rust-lang/rust
84614569c9fa40973c42549f389583edda384ada
440655df7e84845b31d3af3ae0b7c41f8248e78b
fix: Fix indent for convert_let_else_to_match Example --- ```rust mod indent { fn foo() { let Ok(x) = f() else$0 { log(); unreachable!( "..." ); }; } } ``` **Before this PR** ```rust mod indent { fn foo() { let x = match f() { ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_let_else_to_match.rs", "patch": "@@ -33,9 +33,9 @@ pub(crate) fn convert_let_else_to_match(acc: &mut Assists, ctx: &AssistContext<'\n let let_stmt = LetStmt::cast(let_stmt)?;\n let else_block = let_stmt.let_else()?.block_expr...
2026-04-03T05:57:40
golang/go
de5c138eef88685442dc71e36dd98d66b885a605
8933fb98f309443a5ca3aeda2163017737dbe795
encoding/json: unwrap IO errors from SyntacticError in transformSyntacticError When GOEXPERIMENT=jsonv2 is enabled, transformSyntacticError has a case for bare IO errors (export.IsIOError), but this case is never reached when the IO error is wrapped inside a *jsontext.SyntacticError. This happens because consumeObjec...
[ { "path": "src/encoding/json/v2_scanner.go", "patch": "@@ -56,6 +56,11 @@ var errUnexpectedEnd = errors.New(\"unexpected end of JSON input\")\n func transformSyntacticError(err error) error {\n \tswitch serr, ok := err.(*jsontext.SyntacticError); {\n \tcase serr != nil:\n+\t\t// If the SyntacticError wraps ...
2026-02-25T11:07:25
nodejs/node
8fd5f6be79aa992c4b5130f403d2ba7a69f87d8d
e15541524280039c6f325093630d75baeb55e3d3
test: ensure removeListener event fires for once() listeners Adds test coverage for the removeListener event being emitted when a once() listener is automatically removed after execution. This verifies that streams and other EventEmitters correctly emit removeListener events when once() wrappers clean up. PR-URL: htt...
[ { "path": "lib/events.js", "patch": "@@ -687,9 +687,10 @@ EventEmitter.prototype.removeListener =\n this._events = { __proto__: null };\n } else {\n delete events[type];\n- if (events.removeListener)\n- this.emit('removeListener', type, list.listener || listen...
2026-01-27T19:37:53
facebook/react
47905a79507f9ae5fc1bf633f7cbbd1894b9523b
7b971c0a5536f7cd4573ff574921463acf947b14
Fix/add missing else branch for renders with no props change (#34837) Stacked on https://github.com/facebook/react/pull/34822. Fixes a bug introduced in https://github.com/facebook/react/pull/34370. Just copying the lower else branch to the `properties.length` else branch at the top.
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -305,6 +305,30 @@ export function logComponentRender(\n } else {\n performance.measure('\\u200b' + name, reusableComponentOptions);\n }\n+ } else {\n+ if (debugTask != null) ...
2025-10-13T21:23:04
electron/electron
57a6e430252a6ca1cbc3f24a5de39e779fdf985e
ef5b232e9f734f8448a70a7dec10b8270d1df882
fix: revoke Read access after removing file via FileSystemAccess API (#49620) Refs https://chromium-review.googlesource.com/6677249
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -36,6 +36,7 @@\n #include \"shell/browser/web_contents_permission_helper.h\"\n #include \"shell/common/gin_converters/callback_converter.h\"\n #include \"shell/common/gin_converters/file_path_converter.h\"\n+...
2026-02-10T14:48:05
rust-lang/rust
4b42f62d1448b5a1b8e17164f0247c4e624569af
440655df7e84845b31d3af3ae0b7c41f8248e78b
fix: wrap parentheses on guard for replace_if_let_with_match Example --- ```rust fn main() { match$0 Some(0) { Some(n) if n % 2 == 0 || n == 7 => (), _ => (), } } ``` **Before this PR** ```rust fn main() { if let Some(n) = Some(0) && n % 2 == 0 || n == 7 { () } } ``` **After ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_if_let_with_match.rs", "patch": "@@ -13,7 +13,10 @@ use syntax::{\n \n use crate::{\n AssistContext, AssistId, Assists,\n- utils::{does_pat_match_variant, does_pat_variant_nested_or_literal, unwrap_trivial_block},\n+ utils:...
2026-04-03T05:38:57
golang/go
ef160abf2dc24fbf8d8c34a7ca18b2c1d2f60e7f
07e487bc5ceb05d5fdbbec3c66f75a8a36460038
cmd/go: avoid repetitive "invalid version" error on go get When go get encounters an invalid version string like "branch/with/slash", the error message redundantly repeats the version information: go get: pkg@branch/with/slash: invalid version: version "branch/with/slash" invalid: disallowed version string This ha...
[ { "path": "src/cmd/go/internal/modfetch/proxy.go", "patch": "@@ -238,13 +238,17 @@ func (p *proxyRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error\n // versionError returns err wrapped in a ModuleError for p.path.\n func (p *proxyRepo) versionError(version string, err error) error {\n \tif v...
2026-02-12T11:32:16
vercel/next.js
885016306d325fb682e831e0e9679a0990a1e6b1
196ed2b83919892d45eaf7aed80852d0c9cc38c7
docs(turbopack): Merge the contents of the "cells" page in the mdbook with our rustdocs (#91126) Merges the content from https://turbopack-rust-docs.vercel.sh/turbo-engine/cells.html into our rustdocs. I also tried fixing the wording of a few things for accuracy, and adding a bit more detail where warranted. Mostly, ...
[ { "path": ".alexrc", "patch": "@@ -3,6 +3,7 @@\n \"attacks\",\n \"color\",\n \"dead\",\n+ \"dirty\",\n \"execute\",\n \"executed\",\n \"executes\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/crates/turbo-tasks/README.md", ...
2026-03-11T22:22:34
nodejs/node
7c9f5db055f570be454e54f63ca0ed7a4454c625
720fefff6ac151a896128b8db95967f9bfa2e21b
doc: added `requestOCSP` option to `tls.connect` Fixes #61042 Put a period at the end of the line Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/61064 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/tls.md", "patch": "@@ -1737,6 +1737,9 @@ changes:\n verification fails. The method should return `undefined` if the `servername`\n and `cert` are verified.\n * `session` {Buffer} A `Buffer` instance, containing TLS session.\n+ * `requestOCSP` {boolean} If `true`, specifies that...
2026-01-27T11:23:35
facebook/react
d7215b4970858ea45db924e1ec435a9a3e5cff40
e2ce64acb94968d8ca464f37fab2a7ed77848fa9
[DevTools] Preserve the original index when sorting suspended by (#34829) The index is both used as the key and for hydration purposes. Previously we didn't preserve the index when sorting so the index didn't line up which caused hydration to be the wrong slot when sorted.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js", "patch": "@@ -300,9 +300,31 @@ type Props = {\n store: Store,\n };\n \n-function compareTime(a: SerializedAsyncInfo, b: SerializedAsyncInfo): number {\n- const ioA = a.awaited;\n- const ioB = b.await...
2025-10-13T16:12:12