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
nodejs/node
165334a920ea73d156a61260a6bccf83d25e7cb2
7feff3a715bf2954534505e64e43b60afee35435
test: improve WPT report runner Add incremental report writing after each spec completes and on worker errors so that reports survive if the process is killed before the exit handler runs. Add bytes() method to readAsFetch() to match the Response API used by newer WPT tests. PR-URL: https://github.com/nodejs/node/pu...
[ { "path": "test/common/wpt.js", "patch": "@@ -223,6 +223,7 @@ class ResourceLoader {\n return {\n ok: true,\n arrayBuffer() { return data.buffer; },\n+ bytes() { return new Uint8Array(data); },\n json() { return JSON.parse(data.toString()); },\n text() { return data.toString...
2026-03-04T21:32:21
golang/go
1cfd0dc9a3416c1077acfcd44ad0084dd508116a
5e17860e1b177b146c965f4ab1cb7d7ea51b91ed
runtime: truncate trace strings before inserting into trace map traceStringTable.put inserted the full user-supplied string into the trace map, then only truncated it to MaxEventTrailerDataSize (1024 bytes) when writing to the trace buffer. If the string exceeded the traceRegionAlloc block size (~64KB), this caused a ...
[ { "path": "src/runtime/trace/annotation_test.go", "patch": "@@ -8,9 +8,22 @@ import (\n \t\"context\"\n \t\"io\"\n \t. \"runtime/trace\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n+func TestStartRegionLongString(t *testing.T) {\n+\t// Regression test: a region name longer than the trace region\n+\t// allocator...
2026-03-26T07:47:30
facebook/react
64b4605cb82367fa78a08b99bbee1c800e6af21a
da64117876002bd60baa9e93cad77421bbf0293f
[compiler] fix source location for return statements (#35660) Fixes missing source locations for ReturnStatement nodes in generated ast. Simple change using existing pattern, only required changes to the codegen step, no other pipeline changes. **Most file changes are new lines in generated code.** [First commit](htt...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1160,9 +1160,9 @@ function codegenTerminal(\n const value = codegenPlaceToExpression(cx, terminal.value);\n if (value.type === 'Identifier' && value.name === 'undefined') {\n ...
2026-01-30T16:37:19
electron/electron
58cd1aba10d9bbd6de2012d97c3e5f64c19fa5a4
26a3a8679a063623cf7e6bc1f5e07042fa953d7a
ci: fix unsupported major in release board automation (#50260)
[ { "path": ".github/workflows/branch-created.yml", "patch": "@@ -31,8 +31,8 @@ jobs:\n else\n echo \"Not a release branch: $BRANCH_NAME\"\n fi\n- - name: Determine Unsupported Major Version\n- id: determine-unsupported-major\n+ - name: Determine Next Unsupport...
2026-03-14T22:34:50
vercel/next.js
16935744fbd44743e9546cbcc578be3e473c0035
be3e90af35451edaeb7d99e4ec2422037a5128d0
turbo-tasks-backend: assert non-transient task_ids in track_modification (#91924) ### What? Add a `debug_assert!` in `StorageWriteGuard::track_modification` to enforce that transient `TaskId`s are never inserted into the persistence-modified set. ### Why? Concurrent server component HMR updates triggered a runtime ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs", "patch": "@@ -302,6 +302,10 @@ impl StorageWriteGuard<'_> {\n category: SpecificTaskDataCategory,\n #[allow(unused_variables)] name: &str,\n ) {\n+ debug_assert!(\n+ !self.inner.key().is_transient(...
2026-03-26T05:59:20
golang/go
b77fdc333aecc4691a0f637bd8a2600c879e342a
5edb5d729d14f0e036669e505548c899592a4d7c
cmd/compile: skip incomplete types in needWrapper A recursive pointer type *T may still be a TFORW when the compiler determines if method wrappers are needed. This leads to an incorrect decision and triggers an internal compiler error. Fix this by skipping incomplete types during the method wrapper generation check. ...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3827,7 +3827,7 @@ type methodValueWrapper struct {\n // needWrapper records that wrapper methods may be needed at link\n // time.\n func (r *reader) needWrapper(typ *types.Type) {\n-\tif typ.IsPtr() {\n+\tif typ.IsPtr() || typ.IsKind(types....
2026-03-25T09:36:34
electron/electron
f4a50a8fde877075ce3877efd54578997d5e7ece
b35ed6346e3c989d9ef52357c910431a799fa8f4
build: skip archiving patch conflict fix artifact (#50251) The update-patches artifact is a single .patch file, so zipping it is unnecessary overhead. With archive: false, gh run download fetches the raw file directly without requiring a decompression step. Co-authored-by: Claude <noreply@anthropic.com>
[ { "path": ".github/workflows/apply-patches.yml", "patch": "@@ -78,3 +78,4 @@ jobs:\n name: update-patches\n path: patches/update-patches.patch\n if-no-files-found: ignore\n+ archive: false", "additions": 1, "deletions": 0, "language": "YAML" } ]
2026-03-13T21:49:05
nodejs/node
50fe0102525d24434681ff4f6a60107fbb6a2b54
6ad5f7cb80c012244e9fda1e9afd01e31fd0dc35
src: expose async context frame debugging helper to JS This was invaluable for debugging the previous change, so I'm suggesting we add it regardless of it being a debugging-only API. PR-URL: https://github.com/nodejs/node/pull/62103 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbic...
[ { "path": "src/async_wrap.cc", "patch": "@@ -322,6 +322,13 @@ void AsyncWrap::AsyncReset(const FunctionCallbackInfo<Value>& args) {\n wrap->AsyncReset(resource, execution_async_id);\n }\n \n+// Useful for debugging async context propagation. Not intended for public use.\n+void AsyncWrap::GetAsyncContextFr...
2026-03-03T23:04:37
facebook/react
230772f99dac80be6dda9c59441fb4928612f18e
90b2dd442cc05048b2a6ade5020c463ab0499eca
[tests] Fix ReactDOMAttribute-test (#35654) In https://github.com/facebook/react/pull/35646 I thought there was a bug in trusted types, but the bug is in jsdom. For trusted types we still want to check the coersion and throw for a good dev warning, but prod will also throw becuase the browser will implicitly coerce t...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMAttribute-test.js", "patch": "@@ -9,6 +9,13 @@\n \n 'use strict';\n \n+// Fix JSDOM. setAttribute is supposed to throw on things that can't be implicitly toStringed.\n+const setAttribute = Element.prototype.setAttribute;\n+Element.prototype.setAttribute = ...
2026-01-28T21:00:40
electron/electron
816e5964fb574585840ec82f7b1e3e99b3f93785
3295d0d4b05bf338427e5f98374dda206b83651f
build: add patch conflict resolution workflow with CI artifacts (#50235) ci: upload patch conflict fix as artifact in apply-patches When patch-up.js cannot auto-push the 3-way-merged patch diff (e.g. on fork PRs), the checkout action already writes patches/update-patches.patch and tells the user to check CI artifacts...
[ { "path": ".github/workflows/apply-patches.yml", "patch": "@@ -71,3 +71,10 @@ jobs:\n uses: ./src/electron/.github/actions/checkout\n with:\n target-platform: linux\n+ - name: Upload Patch Conflict Fix\n+ if: ${{ failure() }}\n+ uses: actions/upload-artifact@bbbca2ddaa5d8fea...
2026-03-13T01:46:29
golang/go
5edb5d729d14f0e036669e505548c899592a4d7c
e4fcdc6c55bfdc90f4f42eefc4e97998de3ef4e7
cmd/compile: do not invert loops that would overflow or underflow On the final iteration we need space below start (which becomes end) such that i-step does not overflow or underflow. In other words the code used to assume that the last time the loop header execute `start < i - step` (or `<=`, `>` `>=` based on the l...
[ { "path": "src/cmd/compile/internal/ssa/downward_counting_loop.go", "patch": "@@ -4,6 +4,8 @@\n \n package ssa\n \n+import \"fmt\"\n+\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ...
2026-03-24T19:42:41
vercel/next.js
df88058f5eaee58771385534d10b5f75b8689f7d
78f162568634798de281a27889fa313bae8513d6
Turbopack: switch from base40 to base38 hash encoding (remove ~ and . from charset) (#91832) ### What? Switch Turbopack's hash encoding charset from base40 (`0-9 a-z _ - ~ .`) to base38 (`0-9 a-z _ -`), removing the `~` and `.` characters. Pure rename/charset change — no structural changes. ### Why? The `~` and `.`...
[ { "path": "test/e2e/app-dir-export/test/utils.ts", "patch": "@@ -30,13 +30,9 @@ export const expectedWhenTrailingSlashTrue = [\n // Turbopack and plain next.js have different hash output for the file name\n // Turbopack will output favicon in the _next/static/media folder\n ...(process.env.IS_TURBOPAC...
2026-03-25T07:27:30
facebook/react
90b2dd442cc05048b2a6ade5020c463ab0499eca
875b06489f4436125613535dfe0833cd12a500f9
Add additional fixtures for FragmentInstance text node support (#35631) Stacked on https://github.com/facebook/react/pull/35630 - Adds test case for compareDocumentPosition, missing before and also extending to text nodes - Adds event handling fixture case for text - Adds getRootNode fixture case for text
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/CompareDocumentPositionCase.js", "patch": "@@ -0,0 +1,53 @@\n+import TestCase from '../../TestCase';\n+import Fixture from '../../Fixture';\n+import CompareDocumentPositionFragmentContainer from './CompareDocumentPositionFragmentContainer';\n+\n+...
2026-01-28T19:55:07
nodejs/node
a9da9ffc04c923f383a0aa220123687909dd2263
798797aa890edc04944fa24f166f7f6ee67d75f3
repl: remove dependency on domain module Replace the domain-based error handling with AsyncLocalStorage and setUncaughtExceptionCaptureCallback. This removes the REPL's dependency on the deprecated domain module while preserving all existing behavior: - Synchronous errors during eval are caught and displayed - Async ...
[ { "path": "doc/api/process.md", "patch": "@@ -736,6 +736,44 @@ generate a core file.\n \n This feature is not available in [`Worker`][] threads.\n \n+## `process.addUncaughtExceptionCaptureCallback(fn)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimental\n+\n+* `fn` {Function}\n+\n+Th...
2026-03-06T15:38:36
electron/electron
6be775ad8341712a59e69680c55f1ce51d0837e0
11f28ac3ac4f9432c96514ffdb6759e435254a42
fix: preserve staged update dir when pruning orphaned updates on macOS (#50210) fix: preserve staged update dir when pruning orphaned update dirs on macOS The previous squirrel.mac patch cleaned up all staged update directories before starting a new download. This kept disk usage bounded but broke quitAndInstall() if...
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -9,5 +9,5 @@ refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_u...
2026-03-11T22:42:23
golang/go
286a79658efbe6dcbea53aaf8112abeb8e9f2cc3
09dadce4fee15148a9f3a6969d15a0db8afe75bc
cmd/compile: fix missing walk for OAS2RECV node When channel receive operator is used in the context that requires conversion to destination type, there's an implicit conversion operator inserted by typecheck. This typecheck-ed node is un-walked, then passing to the backend as-is, causing the ICE. Fixes #78313 Chang...
[ { "path": "src/cmd/compile/internal/walk/assign.go", "patch": "@@ -220,7 +220,7 @@ func walkAssignRecv(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \tfn := chanfn(\"chanrecv2\", 2, r.X.Type())\n \tok := n.Lhs[1]\n \tcall := mkcall1(fn, types.Types[types.TBOOL], init, r.X, n1)\n-\treturn typecheck.Stmt(...
2026-03-24T14:14:30
facebook/react
8c34556ca8df0dab34bbaf68e0dd15cd4a5e3f7f
10680271fab565e0edf948d3a6dc9d30e83df94c
[Flight] Fix react-markup types for server references (#35634)
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.markup.js", "patch": "@@ -18,7 +18,7 @@ export * from 'react-client/src/ReactClientConsoleConfigPlain';\n export type ModuleLoading = null;\n export type ServerConsumerModuleMap = null;\n export opaque type ServerManifest = null;\n-export op...
2026-01-26T20:13:16
vercel/next.js
78f162568634798de281a27889fa313bae8513d6
b5cb015c5f94088cf0211613051fb696b67cddda
turbo-tasks-backend: improve print_cache_item_size instrumentation (#91742) ### What? Fixes a compilation hang that occurred when the `print_cache_item_size` debug feature was enabled, and cleans up the surrounding instrumentation code. **Root cause of the hang (double lock / deadlock):** During `persist_snapshot`,...
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -14,7 +14,8 @@ workspace = true\n \n [features]\n default = []\n-print_cache_item_size = [\"dep:lzzzz\"]\n+print_cache_item_size_with_compressed = [\"print_cache_item_size\", \"dep:lzzzz\"]\n+print_cache_item_size = []\n no_fast_stale...
2026-03-25T07:16:14
nodejs/node
798797aa890edc04944fa24f166f7f6ee67d75f3
83f5cc74fcf63c90a06651616deb7a059c7a2870
tools: fix `--node-builtin-modules-path` value in `shell.nix` PR-URL: https://github.com/nodejs/node/pull/62102 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "shell.nix", "patch": "@@ -64,7 +64,7 @@ let\n ++ pkgs.lib.optional (!withSSL) \"--without-ssl\"\n ++ pkgs.lib.optional withTemporal \"--v8-enable-temporal-support\"\n ++ pkgs.lib.optional (ninja != null) \"--ninja\"\n- ++ pkgs.lib.optional loadJSBuiltinsDynamically \"--node-builtin-modules...
2026-03-06T15:20:51
electron/electron
11f28ac3ac4f9432c96514ffdb6759e435254a42
5ec589a1de39b299c86cd33bc05decf69cb5c5bd
fix: improved the appearance of shadows and borders on frameless windows on Wayland (#50007) * remove painting from linux frame layout * use chromium csd strategy for frameless windows * Apply suggestions from code review Remove unneeded virtual methods Co-authored-by: Charles Kerr <charles@charleskerr.com> * rem...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -245,6 +245,10 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/views/dark_mode_manager_linux.cc\",\n \"//chrome/browser/ui/views/dark_mode_manager_linux.h\",\n ]\n+ sources += [\n+ \"//chrome/browser/ui/views/frame/browser_frame...
2026-03-11T19:42:09
golang/go
a6500456f3dff5a8b69e5961ee58fe341ae8b30a
c173b531342b05d14877a95a4186cc234edc9b9c
cmd/link: fix host object's .pdata entries order Host objects are expected to have their .pdata entries in the correct order, but the Go internal linker might reorder some of the functions associated with the .pdata entries. This causes the .pdata section in the final binary to have entries in the wrong order, and the...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1689,6 +1689,20 @@ func (ctxt *Link) dodata(symGroupType []sym.SymKind) {\n \t\tldr.SetAttrOnList(s, true)\n \t}\n \n+\t// SEH symbols are tracked in side lists (sehp.pdata/xdata), so make\n+\t// them follow the same reachability decision used for ...
2026-03-11T12:14:41
vercel/next.js
a7cf5eee7a7e9b5889d877d3f6d222eb1409cc9d
468a40fa32bcd0d3683d8fa13ce4dbab892b65eb
test: scope css data-url typing to fixture (#91877) In the latest TypeScript version these imports now fail so updating the assertion to handle them x-ref: https://github.com/vercel/next.js/actions/runs/23508766037/job/68431989897#step:35:443
[ { "path": "test/e2e/css-data-url-global-pages/data-url-css.d.ts", "patch": "@@ -0,0 +1,2 @@\n+// Test-local typing for Turbopack's CSS data URL side-effect import.\n+declare module 'data:text/css,*' {}", "additions": 2, "deletions": 0, "language": "Unknown" } ]
2026-03-24T21:57:10
facebook/react
10680271fab565e0edf948d3a6dc9d30e83df94c
699abc89cea33d5aa0b443050ae27c2fea7cb3cb
[Flight] Add more DoS mitigations to Flight Reply, and harden Flight (#35632) This fixes security vulnerabilities in Server Functions. --------- Co-authored-by: Sebastian Markbåge <sebastian@calyptus.eu> Co-authored-by: Josh Story <josh.c.story@gmail.com> Co-authored-by: Janka Uryga <lolzatu2@gmail.com> Co-authored-...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -94,6 +94,8 @@ import getComponentNameFromType from 'shared/getComponentNameFromType';\n \n import {getOwnerStackByComponentInfoInDev} from 'shared/ReactComponentInfoStack';\n \n+import hasOwnProperty from 'shared/hasOwnProperty';\n+\n...
2026-01-26T19:24:58
nodejs/node
856231e8c40952df6e115d439b997e1cceecdb4f
a06e789625ecb46e3d6ef3e265ee15b37527c44a
crypto: fix importKey required argument count check PR-URL: https://github.com/nodejs/node/pull/62099 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/crypto/webcrypto.js", "patch": "@@ -865,7 +865,7 @@ async function importKey(\n \n webidl ??= require('internal/crypto/webidl');\n const prefix = \"Failed to execute 'importKey' on 'SubtleCrypto'\";\n- webidl.requiredArguments(arguments.length, 4, { prefix });\n+ webidl.require...
2026-03-04T10:16:25
electron/electron
4fe3752fae695c3f445c7e34f1bdd5567064f68e
c8dd0b99ee3705f0e6eaacd4003d7aa9d8152d37
refactor: move `electron::api::Tray` to cppgc (#50187) * refactor: migrate electron::api::tray to cppgc * chore: add Tray to wrappable_pointer_tags.h patch * fixup! refactor: migrate electron::api::tray to cppgc clear keep_alive_ if error is thrown in constructor * refactor: make Tray::menu_ a cppgc::Member<Menu>
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index c29e855493399...
2026-03-11T19:38:08
golang/go
c173b531342b05d14877a95a4186cc234edc9b9c
bfe4cc85e8f0187f3cdb7c80b9ff5a52be66e08b
cmd/dist: try to use jj commit info for devel version Fixes #78369 Change-Id: Icb8bb9822eac78934efc313f50221de56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/759320 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Michael Matloob <ma...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -418,12 +418,7 @@ func findgoversion() string {\n \t\treturn chomp(readfile(path))\n \t}\n \n-\t// Show a nicer error message if this isn't a Git repo.\n-\tif !isGitRepo() {\n-\t\tfatalf(\"FAILED: not a Git repo; must put a VERSION file in $GOROOT\")\n-\t}\n-\...
2026-03-25T18:17:41
facebook/react
a0566250b210499b4c5677f5ac2eedbd71d51a1b
870cccd656bc0188c04ef8b53e8f7f1b78d486d9
[repo] init claude config (#35617) ## Overview Adds a claude setup that works with the nested /compiler setup. The constraints are: - when working in the root repo, don't use the compiler configs (easy) - when working in the compiler/ don't use the parent contigs (hard) The first one is easy: there's a claude.md an...
[ { "path": ".claude/instructions.md", "patch": "@@ -0,0 +1,46 @@\n+# React\n+\n+**Scope**: All code EXCEPT `/compiler/` (compiler has its own instructions).\n+\n+## Project Structure\n+\n+| Directory | Purpose |\n+|-----------|---------|\n+| `/packages/` | Publishable packages (react, react-dom, scheduler, e...
2026-01-24T01:16:06
nodejs/node
a06e789625ecb46e3d6ef3e265ee15b37527c44a
8edeff9aa715bbc23f22a68bd864eba1854a9513
http: fix use-after-free when freeParser is called during llhttp_execute When pipelined requests arrive in one TCP segment, llhttp_execute() parses them all in a single call. If a synchronous 'close' event handler invokes freeParser() mid-execution, cleanParser() nulls out parser state while llhttp_execute() is still ...
[ { "path": "lib/_http_common.js", "patch": "@@ -189,8 +189,8 @@ function freeParser(parser, req, socket) {\n if (parser) {\n if (parser._consumed)\n parser.unconsume();\n- cleanParser(parser);\n parser.remove();\n+ cleanParser(parser);\n if (parsers.free(parser) === false) {\n ...
2026-03-06T06:01:21
electron/electron
c8dd0b99ee3705f0e6eaacd4003d7aa9d8152d37
55ebdfb26b238a5f517cb3332da0b158212d2f8b
fix: prevent traffic light buttons flashing on deminiaturize (#50183) * fix: prevent traffic light buttons flashing on deminiaturize When a window with a custom `trafficLightPosition` is minimized and restored, macOS re-layouts the title bar container during the deminiaturize animation, causing the traffic light butt...
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -172,6 +172,12 @@ class NativeWindowMac : public NativeWindow,\n void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n+ // Hide/show traffic light buttons around miniaturize/deminiaturize to\n+ // prevent...
2026-03-11T17:02:51
golang/go
cdfc8c771301c8c1f32e50e773d620a6b8767078
670038a5a53c19ab299179e62d72956a92248877
database/sql: avoid deadlock from reentrant RLock RWMutex.RLock blocks until any pending Lock operations are satisfied. This prohibits recursive read-locking. Replace various RWMutexes used to synchronize between reads and closes with a variant where the reader side takes priority. Reads can starve out Close, but wil...
[ { "path": "src/database/sql/closemu.go", "patch": "@@ -0,0 +1,111 @@\n+// Copyright 2026 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+package sql\n+\n+import (\n+\t\"sync\"\n+\t\"sync/atomic\"\n+)\n+\n+/...
2026-03-15T02:54:47
facebook/react
c3b95b0979757edb9507a7b0c80fc220a96330b3
006ae379727ebceb82d03929222a71104d01135f
[compiler] Improve snap workflow for debugging errors (#35539) Much nicer workflow for working through errors in the compiler: * Run `yarn snap -w`, oops there are are errors * Hit 'p' to select a fixture => the suggestions populate with recent failures, sorted alphabetically. No need to copy/paste the name of the fix...
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -9,7 +9,7 @@ import watcher from '@parcel/watcher';\n import path from 'path';\n import ts from 'typescript';\n import {FIXTURES_PATH, PROJECT_ROOT} from './constants';\n-import {TestFilter} from './fixture-utils';\n+import {TestFilter, ge...
2026-01-23T19:26:33
nodejs/node
8edeff9aa715bbc23f22a68bd864eba1854a9513
10cfcbeaf75f92542e98bc6df5756018d58ab6c8
stream: fix UTF-8 character corruption in fast-utf8-stream Fix releaseWritingBuf() to correctly handle partial writes that split multi-byte UTF-8 characters. The previous implementation incorrectly converted byte counts to character counts, causing: - 3-byte characters (CJK) to be silently dropped - 4-byte characters...
[ { "path": "lib/internal/streams/fast-utf8-stream.js", "patch": "@@ -237,7 +237,7 @@ class Utf8Stream extends EventEmitter {\n \n this.on('newListener', (name) => {\n if (name === 'drain') {\n- this._asyncDrainScheduled = false;\n+ this.#asyncDrainScheduled = false;\n }\n })...
2026-03-05T19:32:54
electron/electron
55ebdfb26b238a5f517cb3332da0b158212d2f8b
d6e0c270d1766c35eedbccbb1a9071a5dd4000af
ci: add timeout to test step (#50186) Additionally, take a screenshot on timeout so that we can debug why there is a hang
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -214,6 +214,7 @@ jobs:\n \n - name: Run Electron Tests\n shell: bash\n+ timeout-minutes: 40\n env:\n MOCHA_REPORTER: mocha-multi-reporters\n MOCHA_MULTI_REPORTERS: mocha-junit-reporter, tap\n@...
2026-03-11T08:48:47
golang/go
670038a5a53c19ab299179e62d72956a92248877
26d8a902002a2b41bc4c302044110f2eae8d597f
cmd/compile: preserve variadic signature on range-over-func When rewriting range-over-func loops, copy the variadic bit from the original function type into the synthesized body closure's type info. This keeps the generated closure signature aligned with the source function and avoids losing variadic-ness during rewri...
[ { "path": "src/cmd/compile/internal/rangefunc/rewrite.go", "patch": "@@ -1175,7 +1175,7 @@ func (r *rewriter) bodyFunc(body []syntax.Stmt, lhs []syntax.Expr, def bool, fty\n \t\tType: types2.NewSignatureType(nil, nil, nil,\n \t\t\ttypes2.NewTuple(params...),\n \t\t\ttypes2.NewTuple(results...),\n-\t\t\tfals...
2026-03-24T13:42:23
nodejs/node
55363254cc8d6fd105f34b30ceae572dfb2e4210
7c4dc34c28a4ff95058c945c9db2c98fe73a9919
tools: fix daily wpt workflow nighly release version lookup PR-URL: https://github.com/nodejs/node/pull/62076 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Revie...
[ { "path": ".github/workflows/daily-wpt-fyi.yml", "patch": "@@ -49,7 +49,7 @@ jobs:\n # install a version and checkout\n - name: Get latest nightly\n if: matrix.node-version == 'latest-nightly'\n- run: echo \"NIGHTLY=$(curl -s https://nodejs.org/download/nightly/index.json | jq -r ...
2026-03-04T17:25:42
facebook/react
006ae379727ebceb82d03929222a71104d01135f
a688a3d18cfd911bf9c5e6a7ddc1af7c061b9653
[compiler] Collapse CompilerError.{invariant,simpleInvariant} (#35614) `invariant()` was a pain to use - we always record a single location, but the API required passing a compiler detail. This PR replaces `invariant()` (keeping the name) with `simpleInvariant()`s signature, and updates call sites accordingly. I've no...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -304,11 +304,12 @@ export class CompilerError extends Error {\n disabledDetails: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n printedMessage: string | null = null;\n \n- static simpleInvariant(\n+ s...
2026-01-23T19:07:11
vercel/next.js
2e92c31f1a168e2d76cca15d2922e2501ff066aa
b163a8bf6642c7c849964d1238c13cc91d0c2252
Fix TS6 baseUrl deprecation for extended tsconfig (#91855) ## Summary - handle `compilerOptions.baseUrl` inherited via `extends` in TS6 config normalization - rewrite `paths` using the resolved base URL and remove `baseUrl` from parsed compiler options - keep existing behavior for direct `baseUrl` while avoiding TS510...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -219,6 +219,7 @@ import {\n writeRouteTypesManifest,\n writeValidatorFile,\n } from '../server/lib/router-utils/route-types-utils'\n+import { writeCacheLifeTypes } from '../server/lib/router-utils/cache-life-type-utils'\n import { Lockfile } fro...
2026-03-24T19:28:29
golang/go
26d8a902002a2b41bc4c302044110f2eae8d597f
312541b783ceae00471573da83367cae26ca255b
crypto/x509: fix signature checking limit We added the "is this cert already in the chain" check (alreadyInChain) to considerCandidates before the signature limit. considerCandidates bails out when we exceed the signature check, but buildChains keeps calling considerCandidates until it exhausts all potential parents. ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -720,23 +720,25 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n // for failed checks due to different intermediates having the same Subject.\n const maxChainSignatureChecks = 100\n \n+var errSignatureLimit = errors.New(\"x509:...
2026-03-05T22:28:44
electron/electron
d6e0c270d1766c35eedbccbb1a9071a5dd4000af
c4c6195341056b87547da310408a33c16e78ef79
chore: bump chromium to 147.0.7727.0 (main) (#50115) * chore: bump chromium in DEPS to 147.0.7724.0 * chore: bump chromium in DEPS to 147.0.7725.0 * chore: bump chromium in DEPS to 147.0.7727.0 * chore: update patches Refs https://chromium-review.googlesource.com/c/chromium/src/+/7633903 * fix: pass weak-ptr-bound...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7719.0',\n+ '147.0.7727.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-03-11T03:14:36
nodejs/node
7c4dc34c28a4ff95058c945c9db2c98fe73a9919
16472884aa39450b12ade247a733b1640e7fcb9a
tools: fix example in release proposal linter `changelog-maker` writes 10 character length short form SHA's. Explicitly set the `git log format` in the example to match. PR-URL: https://github.com/nodejs/node/pull/62074 Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed...
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -6,6 +6,7 @@\n // Example:\n // $ git log upstream/vXX.x...upstream/vX.X.X-proposal \\\n // --reverse --format='{\"prURL\":\"%(trailers:key=PR-URL,valueonly,separator=)\",\"title\":\"%s\",\"smallSha\":\"%h\"}' \\\n+// --ab...
2026-03-04T16:43:14
facebook/react
2c8725fdfd13705487d13dce008d62c605cd7f73
03613cd68c9e1d7ec5cb1eceb91f27f1935a7b8b
[compiler] snap fails if nothing compiled, unless @expectNothingCompiled (#35615) A few times an agent has constructed fixtures that are silently skipped because the component has no jsx or hook calls. This PR updates snap to ensure that for each fixture either: 1) There are at least one compile success/failure *and*...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/class-component-with-render-helper.expect.md", "patch": "@@ -2,7 +2,7 @@\n ## Input\n \n ```javascript\n-// @compilationMode:\"infer\"\n+// @expectNothingCompiled @compilationMode:\"infer\"\n class Component {\n _rend...
2026-01-23T18:38:40
vercel/next.js
eb44c314dcedf3bb5911baa026988bf383aafd89
3241be2d9009b7cb7bc0a2478b2f43f9e20b995a
docs: platform portability and infrastructure documentation (#91237) ## Summary Adds comprehensive documentation addressing platform partner feedback about Next.js portability, infrastructure requirements, and CDN caching. All technical claims verified against the codebase. **New pages (5):** - **Rendering Philosoph...
[ { "path": "docs/01-app/01-getting-started/17-deploying.mdx", "patch": "@@ -87,4 +87,4 @@ Refer to each provider's documentation for information on supported Next.js feat\n - [Netlify](https://docs.netlify.com/frameworks/next-js/overview/#next-js-support-on-netlify)\n - [Vercel](https://vercel.com/docs/frame...
2026-03-23T19:09:42
nodejs/node
16472884aa39450b12ade247a733b1640e7fcb9a
ef0f0b086522243e4c7276a6bfa8575e0e1cd861
stream: fix TransformStream race on cancel with pending write Signed-off-by: marcopiraccini <marco.piraccini@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62040 Fixes: https://github.com/nodejs/node/issues/62036 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.i...
[ { "path": "lib/internal/webstreams/transformstream.js", "patch": "@@ -72,7 +72,6 @@ const {\n const assert = require('internal/assert');\n \n const kSkipThrow = Symbol('kSkipThrow');\n-\n const getNonWritablePropertyDescriptor = (value) => {\n return {\n __proto__: null,\n@@ -524,7 +523,12 @@ function...
2026-03-04T16:02:27
golang/go
312541b783ceae00471573da83367cae26ca255b
04dc12c1a17d3fa4ff49af84de5641099716e234
crypto/x509: hoist policy pruning out of loop We only need to do this once, not once per mapping. Thanks to Jakub Ciolek for reporting this issue. Fixes #78281 Fixes CVE-2026-32281 Change-Id: Ic26f5f14d2a5e42ca8c24b8ae47bc3c5cc601863 Reviewed-on: https://go-review.googlesource.com/c/go/+/758061 Reviewed-by: Damien ...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -1284,12 +1284,12 @@ func policiesValid(chain []*Certificate, opts VerifyOptions) bool {\n \t\t\t\t\t\t} else {\n \t\t\t\t\t\t\t// 6.1.4 (b) (3) (i) -- as updated by RFC 9618\n \t\t\t\t\t\t\tpg.deleteLeaf(mapping.IssuerDomainPolicy)\n-\n-\t\t\t\t\t\t\t// 6...
2026-03-23T19:09:47
facebook/react
03613cd68c9e1d7ec5cb1eceb91f27f1935a7b8b
2af6822c2108eabc0228d7809aa27c00bb2ebb53
[compiler] Improve snap usability (#35537) A whole bunch of changes to snap aimed at making it more usable for humans and agents. Here's the new CLI interface: ``` node dist/main.js --help Options: --version Show version number [boolean] --sync Run compiler in...
[ { "path": "compiler/packages/snap/src/constants.ts", "patch": "@@ -26,5 +26,3 @@ export const FIXTURES_PATH = path.join(\n 'compiler',\n );\n export const SNAPSHOT_EXTENSION = '.expect.md';\n-export const FILTER_FILENAME = 'testfilter.txt';\n-export const FILTER_PATH = path.join(PROJECT_ROOT, FILTER_FILEN...
2026-01-23T18:36:55
electron/electron
f1705eccf8aed73df9c36c9ae8345cd5a7bac27f
44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf
fix: don't call `TaskDialogIndirect` with disabled parent windows (#50078)
[ { "path": "shell/browser/ui/message_box_win.cc", "patch": "@@ -158,7 +158,7 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n config.hInstance = GetModuleHandle(nullptr);\n config.dwFlags = flags;\n \n- if (parent) {\n+ if (parent && ::IsWindowEnabled(parent)) {\n config.hwndPare...
2026-03-10T18:51:07
nodejs/node
23ba2054f3a356d600f7ff8041cbe57c5cd4c1a0
330e3ee67e84e0d4845ff29898f22908a6a6b727
doc: fix markdown for `expectFailure` values PR-URL: https://github.com/nodejs/node/pull/62100 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/test.md", "patch": "@@ -287,11 +287,7 @@ it('should do the thing', { expectFailure: 'feature not implemented' }, () => {\n });\n ```\n \n-If the value of `expectFailure` is a\n-[<RegExp>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) |\n-[<Functi...
2026-03-04T14:26:01
vercel/next.js
ee6a0d77150a3263b660f9a6d19d6831ad5a9433
0d0b4f62a1445b8c56641b032fd7cd08b583b2ad
docs: add catchError benefits over userspace error boundaries (#91745) ## Summary - Add bullet list explaining three key benefits of `unstable_catchError` over a plain React error boundary: built-in error recovery via `retry()`, framework-aware handling of `redirect()`/`notFound()`, and automatic error state clearing...
[ { "path": "docs/01-app/03-api-reference/04-functions/catchError.mdx", "patch": "@@ -10,6 +10,12 @@ related:\n \n The `unstable_catchError` function creates a component that wraps its children in an error boundary. It provides a programmatic alternative to the [`error.js`](/docs/app/api-reference/file-conven...
2026-03-23T13:06:39
golang/go
04dc12c1a17d3fa4ff49af84de5641099716e234
fa238516b782bd1f233e85b719b7ab90889a5634
runtime: use uname version check for 64-bit time on 32-bit arch codepaths The previous fallback-on-ENOSYS logic causes issues on forks of Linux. Android: #77621 (CL 750040 added a workaround with a TODO, this fixes that TODO) Causes the OS to terminate the program when running on Android versions <=10 since the secco...
[ { "path": "src/internal/runtime/syscall/linux/defs_linux_386.go", "patch": "@@ -17,6 +17,7 @@ const (\n \tSYS_OPENAT = 295\n \tSYS_PREAD64 = 180\n \tSYS_READ = 3\n+\tSYS_UNAME = 122\n \n \tEFD_NONBLOCK = 0x800\n ", "additions": 1, "deletions": 0, "language": "Go" ...
2026-03-24T23:02:09
facebook/react
7fccd6b5a344d9d2603392c354c4b471cd2b2cef
d29087523a09d2babff2ce258f3527944a0ecd2e
[DevTools] Fix console links not being openable (#35229)
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -711,6 +711,12 @@ if (chrome.devtools.panels.setOpenResourceHandler) {\n resource.url,\n lineNumber - 1,\n columnNumber - 1,\n+ maybeError => {\n+ if (maybeError && maybeError.isError) {\n+...
2026-01-21T09:34:26
rust-lang/rust
2ae6c6176e1e058368ff4035281dbce1c8f9f30b
86c839ffb36d0e21405dee5ab38e3f85c5b63699
float: Fix panic at max exponential precision Rust's formatting machinery allows precision values of up to u16::MAX. Exponential formatting works out the number of significant digits to use by adding one (for the integral digit before the decimal point). This previously used usize precision, so the maximum validated ...
[ { "path": "library/core/src/fmt/float.rs", "patch": "@@ -171,8 +171,7 @@ where\n };\n \n if let Some(precision) = fmt.options.get_precision() {\n- // 1 integral digit + `precision` fractional digits = `precision + 1` total digits\n- float_to_exponential_common_exact(fmt, num, sign, pre...
2026-03-18T17:40:39
electron/electron
44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf
3691451c7137297a00cae9df9b9d2ef2c3a609c9
fix: run webRequest handlers for URLs handled by ElectronURLLoaderFactory (#45915) * fix: continue to run ProxyingURLLoaderFactory for intercepted protocols * test: webRequest handlers when loading browser windows * fix: wrap special URL loaders factories with ProxyingURLLoaderFactory * test: webRequest handlers wh...
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -43,9 +43,7 @@\n #include \"media/audio/audio_device_description.h\"\n #include \"services/network/public/cpp/features.h\"\n #include \"services/network/public/cpp/originating_process_id.h\"\n-#include \"services/network/public/cpp/url_load...
2026-03-10T16:27:00
nodejs/node
afc30b71a8f032ae02307d609d1e9a975a96748a
a78cca6deb507c0151f5a91c424b31d03ba7c904
lib: fix source map url parse in dynamic imports PR-URL: https://github.com/nodejs/node/pull/61990 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/internal/source_map/source_map_cache.js", "patch": "@@ -247,7 +247,10 @@ function dataFromUrl(sourceURL, sourceMappingURL) {\n }\n }\n \n- const mapURL = new URL(sourceMappingURL, sourceURL).href;\n+ const mapURL = URLParse(sourceMappingURL, sourceURL);\n+ if (mapURL === null) {\n+ ...
2026-03-03T20:35:35
vercel/next.js
c53f5863e3716166e4697682220c41c436c5900d
138092696c355fa38ec8409e7f2c6c67c97e4f6b
[test] Unflake app prefetch test (#91734) [Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.type%3A%22nextjs%22%20%40test.status%3A%22fail%22%20%40test.name%3A%22app%20dir%20-%20prefetching%20should%20not%20unintenti...
[ { "path": "test/e2e/app-dir/app-prefetch/prefetching.test.ts", "patch": "@@ -366,9 +366,11 @@ describe('app dir - prefetching', () => {\n await browser.elementById('prefetch-via-link').click()\n \n // Assert that we're on the homepage (check for accordion since links are hidden)\n- expect(\n- ...
2026-03-23T10:27:50
golang/go
b8dea877130ee6b80df1c468952ec5d13de9c16a
068f27a8e06e58361bcc2d5e7d17deafab4b52bc
net/url: escape // at start of Path when OmitHost set When a URL has OmitHost set and a Path starting with //, escape the first / in the path to avoid emitting a URL with the host set from the Path. For example for u := url.URL{Scheme: "file", OmitHost: true, Path: "//host/path"} u.String is now "file:%2F/host/pat...
[ { "path": "src/net/url/url.go", "patch": "@@ -836,6 +836,13 @@ func (u *URL) String() string {\n \t\t\t}\n \t\t}\n \t\tpath := u.EscapedPath()\n+\t\tif u.OmitHost && u.Host == \"\" && u.User == nil && strings.HasPrefix(path, \"//\") {\n+\t\t\t// Escape the first / in a path starting with \"//\" and no autho...
2026-03-24T21:19:02
facebook/react
c55ffb5ca3b2ba3a09a978629d5a1548c0e8085b
a49952b303a646c17f4d667956639300840a3e5b
Add Clean Up Callbacks to View Transition and Gesture Transition Events (#35564) Stacked on #35556 and #35559. Given that we don't automatically clean up all view transition animations since #35337 and browsers are buggy, it's important that you clean up any `Animation` started manually from the events. However, ther...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -82,8 +82,12 @@ export default function Page({url, navigate}) {\n {rotate: '0deg', transformOrigin: '30px 8px'},\n {rotate: '360deg', transformOrigin: '30px 8px'},\n ];\n- viewTransition.old.animate(keyframes, 250);...
2026-01-20T00:27:45
electron/electron
d4cbd6cd7d23b127623ca01eeca1078d4c86a5b9
2ba4872d2c8d470540066f6b0112c1c0a7afaec4
docs: fix ipc highlight lines (#50169) Co-authored-by: Dilukshan <65407969+dilukshann7@users.noreply.github.com>
[ { "path": "docs/tutorial/ipc.md", "patch": "@@ -50,7 +50,7 @@ sections.\n \n In the main process, set an IPC listener on the `set-title` channel with the `ipcMain.on` API:\n \n-```js {6-10,22} title='main.js (Main Process)'\n+```js {7-11,23} title='main.js (Main Process)'\n const { app, BrowserWindow, ipcMa...
2026-03-10T00:16:06
facebook/react
a49952b303a646c17f4d667956639300840a3e5b
4bcf67e74657086ff7d8f951d6365db06cf1f72c
Properly clean up gesture Animations (#35559) Follow up to #35337. During a gesture, we always cancel the original animation and create a new one that we control. That's the one we need to add to the set that needs to be cancelled. Otherwise future gestures hang. An unfortunate consequence is that any custom ones th...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2372,6 +2372,7 @@ function animateGesture(\n targetElement: Element,\n pseudoElement: string,\n timeline: GestureTimeline,\n+ viewTransitionAnimations: Array<Animation>,\n customTimelineCleanup: Array<() => voi...
2026-01-20T00:26:28
nodejs/node
4eac93779a99f3184dec31bb6de826b93dc0bd83
2422ed8b5bc32fb26d3a951f6fdf812a723694d5
src: release context frame in AsyncWrap::EmitDestroy Release the async context frame in AsyncWrap::EmitDestroy to allow gc to collect it. This is in special relevant for reused resources like HTTPParser otherwise they might keep ALS stores alive. PR-URL: https://github.com/nodejs/node/pull/61995 Fixes: https://githu...
[ { "path": "src/async_wrap.cc", "patch": "@@ -25,6 +25,9 @@\n #include \"env-inl.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n+#ifdef DEBUG\n+#include <node_process-inl.h>\n+#endif\n #include \"tracing/traced_value.h\"\n #include \"util-inl.h\"\n \n@@ -333,9 +336,12 @@ void Asyn...
2026-03-03T14:09:06
golang/go
068f27a8e06e58361bcc2d5e7d17deafab4b52bc
98aaa9b0ee54ba197432458a6f344c14aa12c106
cmd/go: add information about GODEBUGs to go help gopath And make it clear that standard library tests won't run properly with GO111MODULE=off. Fixes #73973 Fixes #69202 Change-Id: I8c71c739e1da80fbf2e13f84ecaf9c346a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/758720 Reviewed-by: Dmitri Shuralyov <d...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2877,6 +2877,13 @@\n // Code in GOPATH mode vendor directories is not subject to\n // GOPATH mode import path checking (see 'go help importpath').\n //\n+// In GOPATH mode, the default GODEBUG values built into a binary\n+// will be those used in Go 1.20, set...
2026-03-24T16:22:25
rust-lang/rust
51c4299433f4ca3e018edcf4665282cfc5537c60
f908263775fa86408d0d529dec82baa9ae350529
coretests: add argument order regression tests for min_by/max_by/minmax_by A recent regression swapped the argument order passed to the compare closure in min_by, max_by and minmax_by (compare(&v2, &v1) instead of compare(&v1, &v2)). This was fixed, but no regression test was added. Add tests that record the argument...
[ { "path": "library/coretests/tests/cmp.rs", "patch": "@@ -48,6 +48,37 @@ fn test_ord_min_max_by() {\n assert_eq!(cmp::max_by(2, -1, f), 2);\n }\n \n+// Regression test for #136307 / #139357: ensure compare() receives (v1, v2), not (v2, v1).\n+#[test]\n+fn min_by_compare_argument_order() {\n+ let mut ...
2026-04-03T15:37:13
electron/electron
2ba4872d2c8d470540066f6b0112c1c0a7afaec4
c264402766fee48bbfa302a5728fbaa7102458bf
feat: `WebContents.getOrCreateDevToolsTargetId()` (#49733) * Feat: support getDevToolsId() on WebContents * Rename to `getOrCreateDevToolsTargetId` * build: use spawn instead of spawnSync for build (#49774) * Fix build * formatting --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "docs/api/web-contents.md", "patch": "@@ -2235,6 +2235,16 @@ Returns `string` - The identifier of a WebContents stream. This identifier can b\n with `navigator.mediaDevices.getUserMedia` using a `chromeMediaSource` of `tab`.\n The identifier is restricted to the web contents that it is registered ...
2026-03-09T20:32:52
vercel/next.js
138092696c355fa38ec8409e7f2c6c67c97e4f6b
cbb5879f09cedc6a62c4580dd8266f29da62db98
[Segment Bundling] [Scaffolding] Ensure inlining hint correctness (#91320) Inlining hints (which segments to bundle together) are computed once at build time by measuring gzip sizes, then persisted to `prefetch-hints.json`. There are several scenarios where these hints may not be available at render time. This commit ...
[ { "path": "packages/next/errors.json", "patch": "@@ -1140,5 +1140,9 @@\n \"1139\": \"`unstable_catchError` can only be used in Client Components.\",\n \"1140\": \"Route %s used \\\\`import('next/root-params').%s()\\\\` inside \\\\`\\\"use cache\\\"\\\\` nested within \\\\`unstable_cache\\\\`. Root param...
2026-03-23T02:42:48
facebook/react
41b3e9a67004eb42631a9ff4504c56d22e2f97f0
195fd2286bcc3286859651d6709e5ae5a250335b
[Fizz] Push a stalled use() to the ownerStack/debugTask (#35226)
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js", "patch": "@@ -108,6 +108,28 @@ describe('ReactFlightDOMNode', () => {\n );\n }\n \n+ /**\n+ * Removes all stackframes not pointing into this file\n+ */\n+ function ignoreListStack(str) {\n+ if (!str) {\n+ ...
2026-01-19T08:10:16
nodejs/node
cb6ff03cc57507c2ee9daed49f4be0196c308292
ddecee7447ee75e11c0a6c9135978a53c281227b
stream: accept ArrayBuffer in CompressionStream and DecompressionStream PR-URL: https://github.com/nodejs/node/pull/61913 Fixes: https://github.com/nodejs/node/issues/43433 Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail...
[ { "path": "lib/internal/webstreams/adapters.js", "patch": "@@ -53,6 +53,10 @@ const {\n Buffer,\n } = require('buffer');\n \n+const {\n+ isArrayBuffer,\n+} = require('internal/util/types');\n+\n const {\n AbortError,\n ErrnoException,\n@@ -213,6 +217,9 @@ function newWritableStreamFromStreamWritable(...
2026-03-02T23:15:09
electron/electron
c264402766fee48bbfa302a5728fbaa7102458bf
2c6dd1156c45d16b48cbbdfaa15a276a88ddc0c7
fix: validate protocol scheme names in `setAsDefaultProtocolClient` (#50141) fix: validate protocol scheme names in setAsDefaultProtocolClient On Windows, `app.setAsDefaultProtocolClient(protocol)` directly concatenates the protocol string into the registry key path with no validation. A protocol name containing `\` ...
[ { "path": "shell/browser/browser.cc", "patch": "@@ -9,7 +9,9 @@\n #include <utility>\n \n #include \"base/files/file_util.h\"\n+#include \"base/logging.h\"\n #include \"base/path_service.h\"\n+#include \"base/strings/string_util.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/thre...
2026-03-09T18:16:34
golang/go
e3bda445164c764aa95c7df271dff2170fa1a7ce
cbc2d06c9ba8285bb60f1055b44d4d1e742ca734
debug/elf: handle program header count overflow ELF files only have a 16-bit count for program headers. To handle the very rare case of larger files, a large program header count is stored as 0xffff and the first section header info field holds the actual count. Fixes #78217 Change-Id: I35c7e15025a9677473cb43d09a41f...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -400,6 +400,72 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\treturn nil, &FormatError{0, \"invalid ELF phentsize\", phentsize}\n \t}\n \n+\t// If the number of sections is greater than or equal to SHN_LORESERVE\n+\t// (0xff00), shnum has the value zero...
2026-03-23T11:38:52
vercel/next.js
9fdd5bcd77983fe87b904f93aa32415dc2ea9b06
6d4a405f4ad9a4173f8b06e80e836b8a104f406c
docs: use ErrorInfo type consistently in catchError docs (#91744) ## Summary - Replace inline types with `ErrorInfo` in all TSX examples in `catchError.mdx` - Merge separate `import type { ErrorInfo }` into single import statement - Remove broken `highlight` attributes from "Recovering from errors" code blocks - Stop...
[ { "path": "docs/01-app/01-getting-started/10-error-handling.mdx", "patch": "@@ -287,13 +287,13 @@ import { unstable_catchError as catchError, type ErrorInfo } from 'next/error'\n \n function ErrorFallback(\n props: { title: string },\n- { error, unstable_retry: retry }: ErrorInfo\n+ { error, unstable_re...
2026-03-22T22:02:24
facebook/react
195fd2286bcc3286859651d6709e5ae5a250335b
d87298ae166b84cf6fcc8f9dbc25d2e320309841
[tests] Fix flaky flight tests (#35513) Flights tests are failing locally and in CI non-deterministically because we're not disabling async hooks after tests, and GC can clear WeakRefs non-deterministically. This PR fixes the issue by adding an afterEach to disable installed hooks, and normalizing the `value` to `val...
[ { "path": "packages/internal-test-utils/debugInfo.js", "patch": "@@ -79,6 +79,18 @@ function normalizeIOInfo(config: DebugInfoConfig, ioInfo) {\n status: promise.status,\n };\n }\n+ } else if ('value' in ioInfo) {\n+ // If value exists in ioInfo but is undefined (e.g., WeakRef was GC'd...
2026-01-18T20:36:00
nodejs/node
5554a288c66f0442495a258be6e91a9ff6aafa4e
d198813a6bf5af727552b816d36de7e84dbfa2c8
test: fix skipping behavior for `test-runner-run-files-undefined` PR-URL: https://github.com/nodejs/node/pull/62026 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "test/parallel/test-runner-run-files-undefined.mjs", "patch": "@@ -1,61 +1,31 @@\n-import * as common from '../common/index.mjs';\n+import '../common/index.mjs';\n import tmpdir from '../common/tmpdir.js';\n-import { describe, it, run, beforeEach } from 'node:test';\n-import { dot, spec, tap } fro...
2026-03-02T23:04:06
golang/go
c52d784d0834d13b53e297dbcf7ebf057ba4eb8f
eae0bfb1b0cb7ca88d777de2c5e4b498d677a890
test: repair expected-error regexp in simd.go The test is only run when GOEXPERIMENT=simd, and currently there are no trybots for that. This error was found after merging to dev.simd, where such trybots ARE run. To run this test: ``` GOEXPERIMENT=simd go test -run=Test/simd.go -v cmd/internal/testdir -target=darwin/...
[ { "path": "test/simd.go", "patch": "@@ -150,8 +150,8 @@ func ternTricky3(x, y, z archsimd.Int32x8) archsimd.Int32x8 {\n func vpternlogdPanic() {\n \tresultsMask := archsimd.Mask64x8{}\n \n-\tfor { // ERROR \"has features avx+avx2+avx512\"\n-\t\tresultsMask = archsimd.Mask64x8FromBits(0).Or( // ERROR \"has f...
2026-03-25T02:34:59
electron/electron
2c6dd1156c45d16b48cbbdfaa15a276a88ddc0c7
eacec9a47e671a8959ec1d26178823cca3c2f508
fix: use requesting frame origin in permission helper and device choosers (#50052) * fix: use requesting frame origin instead of top-level URL for permissions `WebContentsPermissionHelper::RequestPermission` passes `web_contents_->GetLastCommittedURL()` as the origin to the permission manager instead of the actual re...
[ { "path": "shell/browser/hid/hid_chooser_controller.cc", "patch": "@@ -87,13 +87,9 @@ HidChooserController::HidChooserController(\n exclusion_filters_(std::move(exclusion_filters)),\n callback_(std::move(callback)),\n initiator_document_(render_frame_host->GetWeakDocumentPtr()),\n- or...
2026-03-09T16:20:22
vercel/next.js
432b3f96bbbb75358584fea9b2d3dc0271751efc
450ed6f8fc9f9a98dbadb530f639187bfe09c002
[test] Unflake `use-node-streams-env-precedence` test (#91733) CI is slow sometimes ([x-ref](https://github.com/vercel/next.js/actions/runs/23353631446/job/67939293839)), so we're removing the low custom test timeout to allow more time to build the test fixture. We're also moving the test from `test/e2e` to `test/pro...
[ { "path": "test/production/app-dir/use-node-streams-env-precedence/use-node-streams-env-precedence.test.ts", "patch": "@@ -1,23 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('use-node-streams env precedence', () => {\n- const { next, isNextDev, skipped } = nextTestSetup({\n+ const { n...
2026-03-20T20:15:40
facebook/react
3926e2438fd65a0fb2c7807b5a633ba147408ab9
6baff7ac763c475087ab5ebf7eef5d0b9f4436df
Fix ViewTransition null stateNode with SuspenseList (#35520) I was experimenting with animations in SuspenseList and hit a crash using ViewTransition as a direct child with `revealOrder="together"` ``` TypeError: Cannot read properties of null (reading 'autoName') 33 | return props.name; 34 | }...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMViewTransition-test.js", "patch": "@@ -0,0 +1,179 @@\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 file in the root directory of this source tree.\n+ *\n...
2026-01-16T21:39:25
golang/go
e26d743e2b600e448bee8f9cafd57ba4a70df813
e5975324c03874b82b62c6c2a4388321edb78e74
cmd/link: print more information in TestExtLinkCmdlineDeterminism Print more information in TestExtLinkCmdlineDeterminism to debug test failure. For #78180 Change-Id: I7e95eceb957805588c5dbb272370476d2378ea7e Reviewed-on: https://go-review.googlesource.com/c/go/+/758823 Reviewed-by: Michael Pratt <mpratt@google.com>...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -1468,10 +1468,11 @@ func main() {}\n \t// Link with -v -linkmode=external to see the flags we pass to the\n \t// external linker.\n \tldflags := \"-ldflags=-v -linkmode=external -tmpdir=\" + linktmp\n-\tvar out0 []byte\n+\tvar out0, fullOut0 []byte\n \tfo...
2026-03-24T20:53:12
nodejs/node
d198813a6bf5af727552b816d36de7e84dbfa2c8
097e763e025558731beadab0ed62bb9ed76a56cf
doc: include url.resolve() in DEP0169 application deprecation Mark url.resolve() as deprecated Update also DEP0116 with cross-reference to DEP0169 PR-URL: https://github.com/nodejs/node/pull/62002 Fixes: https://github.com/nodejs/node/issues/61816 Refs: https://github.com/nodejs/node/pull/61780 Reviewed-By: René <con...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2665,11 +2665,15 @@ future release.\n \n <!-- YAML\n changes:\n+ - version:\n+ - v24.0.0\n+ pr-url: https://github.com/nodejs/node/pull/55017\n+ description: DEP0169 covers also `url.format()` and `url.resolve()`.\n - version:\n - v19.0....
2026-03-02T23:03:53
vercel/next.js
25646b928f900c12504b8a30ce5939207533aa54
cbf12d18457cbe62cbb8f57f4e485110b6630e42
[turbopack] Remove incorrect debug_assert in try_read_task_cell (#91699) ### What? Removes the `debug_assert_not_in_top_level_task` call from `try_read_task_cell` in `turbopack/crates/turbo-tasks/src/manager.rs`. ### Why? The assertion was wrong. `debug_assert_not_in_top_level_task` panics with the message: > "Eve...
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/top_level_task_consistency.rs", "patch": "@@ -36,13 +36,13 @@ async fn test_eventual_read_in_top_level_task_fails() {\n }\n \n #[tokio::test(flavor = \"multi_thread\", worker_threads = 2)]\n-#[should_panic]\n-async fn test_cell_read_in_top_level_task_fai...
2026-03-20T18:14:00
electron/electron
ccb2c77c1728a6a2ef0718add1fd1770b8dee9e3
603679cb189b51a046ac08c5d4d51d610b905a73
fix: `InspectorFrontendHost` override in embedded windows (#49794) fix: InspectorFrontendHost override in embedded windows
[ { "path": "lib/renderer/api/context-bridge.ts", "patch": "@@ -23,11 +23,14 @@ export default contextBridge;\n \n export const internalContextBridge = {\n contextIsolationEnabled: process.contextIsolated,\n+ tryOverrideGlobalValueFromIsolatedWorld: (keys: string[], value: any) => {\n+ return binding._o...
2026-03-09T09:53:02
facebook/react
db71391c5c70dc113560d1c23d0b6548604d827f
4cf906380d5d3282f1df3c8c34cf642e86a3a0a3
[Fiber] Instrument the lazy initializer thenable in all cases (#35521) When a lazy element or component is initialized a thenable is returned which was only be conditionally instrumented in dev when asyncDebugInfo was enabled. When instrumented these thenables can be used in conjunction with the SuspendOnImmediate opt...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -9551,33 +9551,20 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n \n // Create fresh lazy components for CLIENT\n let resolveClientInner;\n- const clientLazyInner = React.laz...
2026-01-16T03:05:23
rust-lang/rust
a5181d2fd6d149dac10a7f888be0c46ba4a34d89
2972b5e59f1c5529b6ba770437812fd83ab4ebd4
Remove `rfail` support from incremental tests Incremental revisions beginning with `rfail` would cause the incremental test runner to build the test program, expecting success, and then run the test program, expecting failure. Expecting incremental tests to fail at runtime is of questionable utility, because in almos...
[ { "path": "src/doc/rustc-dev-guide/src/tests/compiletest.md", "patch": "@@ -158,9 +158,9 @@ then runs the compiler for each revision, reusing the incremental results from p\n \n The revisions should start with:\n \n-* `rpass` — the test should compile and run successfully\n-* `rfail` — the test should compi...
2026-04-03T09:37:45
nodejs/node
097e763e025558731beadab0ed62bb9ed76a56cf
78e56face1176bd4b90fd656a37847051d008766
src: use validate_ascii_with_errors instead of validate_ascii It has better performance PR-URL: https://github.com/nodejs/node/pull/61122 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@g...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1252,7 +1252,8 @@ static void IsAscii(const FunctionCallbackInfo<Value>& args) {\n env, \"Cannot validate on a detached buffer\");\n }\n \n- args.GetReturnValue().Set(simdutf::validate_ascii(abv.data(), abv.length()));\n+ args.GetReturnValue().Set(\n...
2026-03-02T23:03:43
golang/go
e5975324c03874b82b62c6c2a4388321edb78e74
4a7132b4b070e65fe28d08a3989897d6a3d65f00
net/url: permit colons in the host subcomponent of non-http/https URLs Too many systems seem to rely on net/url accepting invalid URLs with colons in the host subcomponent. Rather than adding exceptions for each (PostgreSQL, MongoDB, Redis, etc.), limit the strict validation to http/https only. For #78077 Change-Id:...
[ { "path": "src/net/url/url.go", "patch": "@@ -606,25 +606,22 @@ func parseHost(scheme, host string) (string, error) {\n \t} else if i := strings.Index(host, \":\"); i != -1 {\n \t\tlastColon := strings.LastIndex(host, \":\")\n \t\tif lastColon != i {\n-\t\t\tif scheme == \"postgresql\" || scheme == \"postgr...
2026-03-24T21:49:27
vercel/next.js
cbf12d18457cbe62cbb8f57f4e485110b6630e42
b6ff1f6079694da08af88cec5cac7381e22cea10
Turbopack: fix webpack loader runner layer (#91727) Otherwise you get a `Dependency tracking is disabled` / infinite loop when trying to use both turbopack.rules.loader and turbopackLoader at the same time
[ { "path": "test/development/app-dir/turbopack-import-assertions-use/app/page.tsx", "patch": "@@ -8,14 +8,18 @@ import replacedValue from '../data-with-placeholder.js' with { turbopackLoader:\n import rawTextViaModuleType from '../data2.txt' with { turbopackLoader: '../node_modules/test-raw-loader/index.js',...
2026-03-20T18:08:15
electron/electron
603679cb189b51a046ac08c5d4d51d610b905a73
9b78d75b3035ca2d2ba5c22d5ee2c093e2392bae
fix: read nodeIntegrationInWorker from per-frame WebPreferences (#50122) Previously the renderer checked a process-wide command-line switch to decide whether to create a Node.js environment for dedicated workers. When a renderer process hosted multiple WebContents with different nodeIntegrationInWorker values (e.g. vi...
[ { "path": "patches/chromium/.patches", "patch": "@@ -147,3 +147,4 @@ refactor_allow_customizing_config_in_freedesktopsecretkeyprovider.patch\n fix_wayland_test_crash_on_teardown.patch\n fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n+feat_plumb_node_integrati...
2026-03-09T07:50:01
facebook/react
4028aaa50c92f1a546cd1aeac421bfabd66bef68
f0fbb0d199c166a634084c66a7cf9486ebb64bc1
Commit the Gesture lane if a gesture ends closer to the target state (#35486) Stacked on #35485. Before this PR, the `startGestureTransition` API would itself never commit its state. After the gesture releases it stops the animation in the next commit which just leaves the DOM tree in the original state. If there's a...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -171,17 +171,20 @@ export default function Page({url, navigate}) {\n }}>\n <h1>{!show ? 'A' + counter : 'B'}</h1>\n </ViewTransition>\n- {show ? (\n- <div>\n- ...
2026-01-16T01:43:52
rust-lang/rust
d6be991fb4da0acac3d9fb2938f9ad00db999c4f
e6b64a2f4c696b840f8a384ec28690eed6a5d267
llvm: Fix array ABI test to not check equality implementation LLVM has moved memcmp expansion in the pipeline, resulting in the bcmp call being expanded into loads and register comparisons, which breaks the test. Based on history, I believe the test actually intended validate that these arrays were being passed as po...
[ { "path": "tests/codegen-llvm/array-equality.rs", "patch": "@@ -1,3 +1,6 @@\n+//@ revisions: llvm-current llvm-next\n+//@[llvm-current] ignore-llvm-version: 23-99\n+//@[llvm-next] min-llvm-version: 23\n //@ compile-flags: -Copt-level=3 -Z merge-functions=disabled\n //@ only-x86_64\n #![crate_type = \"lib\"]...
2026-04-02T20:57:18
nodejs/node
78e56face1176bd4b90fd656a37847051d008766
acb79bca7efde3d48f36f0aaa1a16cacbcec7ae1
tools: fix parsing of commit trailers in `lint-release-proposal` GHA PR-URL: https://github.com/nodejs/node/pull/62077 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Stewart X Addison <sxa@redhat.com>
[ { "path": ".github/workflows/lint-release-proposal.yml", "patch": "@@ -88,7 +88,7 @@ jobs:\n gh api \\\n -H \"Accept: application/vnd.github+json\" \\\n -H \"X-GitHub-Api-Version: 2022-11-28\" \\\n- --jq '.commits.[] | { smallSha: .sha[0:10] } + (.commit.message|...
2026-03-02T19:29:52
golang/go
4a7132b4b070e65fe28d08a3989897d6a3d65f00
fb592a174727bd693f0e27d130aa60362ed5c6f0
cmd/go/testdata/vcstest: explicitly set invalid-version's branch to main Fixes #78323 Change-Id: Id527f3a162969309b7103e5f0e0cc6496a6a6964 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest-git2.24.0 Reviewed-on: https://go-review.googlesource.com/c/go/+/758820 Reviewed-by: Michael Matloob <matloob@google...
[ { "path": "src/cmd/go/testdata/vcstest/git/invalid-version.txt", "patch": "@@ -9,6 +9,7 @@ at 2017-09-15T03:28:32-00:00\n \n git init\n git commit --allow-empty -m 'initial commit'\n+git branch -m main\n git tag v0.1.0\n git tag v3.1.0\n ", "additions": 1, "deletions": 0, "language": "Plain Text...
2026-03-24T19:39:06
vercel/next.js
b6ff1f6079694da08af88cec5cac7381e22cea10
546250ec9db080d785046927e6dc7a473828cd7a
Fix adapter outputs for dynamic metadata routes (#91680) ## Summary This fixes adapter `onBuildComplete` outputs for dynamic metadata routes. ## Bug `handleBuildComplete` skipped metadata routes too aggressively via `isStaticMetadataFile(...)`, so dynamic metadata routes (for example `robots.txt` / `sitemap.xml` us...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1070,8 +1070,26 @@ export async function handleBuildComplete({\n }\n const normalizedPage = normalizeAppPath(page)\n \n- // Skip static metadata routes - they will be output as static files\n- ...
2026-03-20T17:05:27
electron/electron
9b78d75b3035ca2d2ba5c22d5ee2c093e2392bae
3a48fd5fbb723b068e7233c6694d32d7e05f09ad
fix: validate response header names and values before AddHeader (#50123) Matches the existing validation applied to request headers in electron_api_url_loader.cc.
[ { "path": "shell/browser/net/electron_url_loader_factory.cc", "patch": "@@ -24,6 +24,7 @@\n #include \"net/base/filename_util.h\"\n #include \"net/http/http_request_headers.h\"\n #include \"net/http/http_status_code.h\"\n+#include \"net/http/http_util.h\"\n #include \"net/url_request/redirect_util.h\"\n #in...
2026-03-08T22:40:48
rust-lang/rust
df848e78d9b2ef68b08d46aa0aea440df92d530a
6f751ec1824d98e7b7537d0878849df155ce6116
Fix merge conflict
[ { "path": "compiler/rustc_lint/src/lib.rs", "patch": "@@ -129,7 +129,7 @@ use unused::*;\n #[rustfmt::skip]\n pub use builtin::{MissingDoc, SoftLints};\n pub use context::{EarlyContext, LateContext, LintContext, LintStore};\n-pub use early::diagnostics::{DecorateAttrLint, DecorateBuiltinLint};\n+pub use ear...
2026-04-03T19:48:20
facebook/react
f0fbb0d199c166a634084c66a7cf9486ebb64bc1
bb8a76c6cc77ea2976d690ea09f5a1b3d9b1792a
[Fiber] fix useId tracking on replay (#35518) When Fiber replays work after suspending and resolving in a microtask it stripped the Forked flag from Fibers because this flag type was not considered a Static flag. The Forked nature of a Fiber is not render dependent and should persist after unwinding work. By making th...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -9478,4 +9478,159 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n </div>,\n );\n });\n+\n+ it('useId is consistent for siblings when component suspends with nested lazy', a...
2026-01-16T01:27:58
nodejs/node
dd400b9f12f9a20d9d153f74e9e33648ecba891d
f8d5bad52f6df23dab94cdca5e33e491b00efbfe
module: run require.resolve through module.registerHooks() Previously, require.resolve() called Module._resolveFilename() directly, bypassing any resolve hooks registered via module.registerHooks(). This patch fixes that. PR-URL: https://github.com/nodejs/node/pull/62028 Reviewed-By: Geoffrey Booth <webadmin@geoffrey...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1034,41 +1034,63 @@ function getExportsForCircularRequire(module) {\n return module.exports;\n }\n \n+\n /**\n- * Resolve a module request for CommonJS, invoking hooks from module.registerHooks()\n- * if necessary.\n+ * Wraps result of Module._...
2026-03-02T18:28:25
vercel/next.js
04cc2f2ed2a2a65cf5ba78ea251be22a5f41e7c9
47230b12d4b18c599a5955d925028383d0bad5bf
docs: post release amends (#91715) Fixes based on feedback post release Fixes: https://github.com/vercel/next.js/pull/91715
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -129,7 +129,7 @@ export default async function Page() {\n }\n ```\n \n-```jsx filename=\"app/blog/[slug]/page.js\" switcher\n+```jsx filename=\"app/blog/page.js\" switcher\n // Dummy imports\n import { getPosts } from '@/lib/p...
2026-03-20T14:47:19
electron/electron
fb13492c891178b1eb39c984c622891e1693fc5e
8bdae630366c41b6034bb8463b074ba04386bcf7
fix: correct parsing of second-instance additionalData (#50119) - POSIX: validate StringToSizeT result and token count when splitting the socket message into argv and additionalData; previously a malformed message could produce incorrect slicing. - Windows: base64-encode additionalData before embedding in the nu...
[ { "path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "patch": "@@ -65,7 +65,7 @@ index f076d0f783e2c0f6b5444002f756001adf2729bd..a03d99f929e2d354cdba969567d78156\n #if BUILDFLAG(IS_WIN)\n bool EscapeVirtualization(const base::FilePath& user_data_dir);\n diff --git a/chrome/bro...
2026-03-08T22:39:12
golang/go
fb592a174727bd693f0e27d130aa60362ed5c6f0
3ebdf12d7c193e6d59a9908745a9664ce7944fd6
net/url: reattach package doc comment Fixes #78326 Change-Id: I70a411c33820f6498bec5f4e4a4ec7666a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/758880 Auto-Submit: Nicholas Husin <nsh@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/url/url.go", "patch": "@@ -2,14 +2,13 @@\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:generate go run gen_encoding_table.go\n+\n // Package url parses URLs and implements query escaping.\n //\n // See RFC 3986. This ...
2026-03-24T20:31:16
rust-lang/rust
a08257840b8a17f6e5602959e36d7b87b8394ec1
2972b5e59f1c5529b6ba770437812fd83ab4ebd4
Fix ICE in read_discriminant for enums with non-contiguous discriminants
[ { "path": "compiler/rustc_const_eval/src/interpret/discriminant.rs", "patch": "@@ -121,20 +121,20 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n // discriminants are int-like.\n let discr_val = self.int_to_int_or_float(&tag_val, discr_layout).unwrap();\n ...
2026-04-03T19:36:53
nodejs/node
09c21d8bdbf23441dcfe53310d78fe9285d5e2ff
9027f29e6d5de49842905d0ed082ad5907e80d78
src: fix flags argument offset in JSUdpWrap Signed-off-by: Weixie Cui <cuiweixie@gmail.com> PR-URL: https://github.com/nodejs/node/pull/61948 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/js_udp_wrap.cc", "patch": "@@ -158,7 +158,7 @@ void JSUDPWrap::EmitReceived(const FunctionCallbackInfo<Value>& args) {\n int family = args[1].As<Int32>()->Value() == 4 ? AF_INET : AF_INET6;\n Utf8Value address(env->isolate(), args[2]);\n int port = args[3].As<Int32>()->Value();\n- int ...
2026-02-23T02:56:00
facebook/react
53daaf5aba1827c2f6c6e01ae1318c36f5a1902e
4a3d993e52fd6bcadd9c3029c75df3c22684f69c
Improve the detection of changed hooks (#35123) ## Summary cc @hoxyq Fixes https://github.com/facebook/react/issues/28584. Follow up to PR: https://github.com/facebook/react/pull/34547 This PR updates getChangedHooksIndices to account for the fact that `useSyncExternalStore`, `useTransition`, `useActionState`, `us...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -467,9 +467,11 @@ function useSyncExternalStore<T>(\n // useSyncExternalStore() composes multiple hooks internally.\n // Advance the current hook index the same number of times\n // so that subsequent hooks have the right memo...
2026-01-15T11:06:14
vercel/next.js
47230b12d4b18c599a5955d925028383d0bad5bf
df886d4a2d36b63717f8aa5eae1147811ad025f8
turbopack: move "compact database" tracing span to backend layer (#91693) ### What? Move the `"compact database"` tracing span from `turbo-persistence` (`db.rs`) to the backend layer (`turbo-tasks-backend/src/backend/mod.rs`), make it a root span, group it with the sibling `"persist"` span under a shared `"background...
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -574,7 +574,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>\n \n new_meta_files.sort_unstable_by_key(|(seq, _)| *seq);\n \n- let sync_span = tracing::info_span!(\"sync new files\").ente...
2026-03-20T14:03:22