repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
vercel/next.js
a6d950a4450f81bc09dcbf755f305c2d54a5b6d3
d7732c57d6fb2fe0e1522d150dd9888633c6e1c3
Turbopack: fix static asset skew protection for edge and prerenders (#90238) - Edge Runtime was missing `globalThis.NEXT_CLIENT_ASSET_SUFFIX` at runtime - Prerenders were always running `globalThis.NEXT_CLIENT_ASSET_SUFFIX` set Fixups after #88828
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -241,7 +241,7 @@ pub async fn get_edge_chunking_context_with_client_assets(\n )\n .asset_base_path(Some(asset_prefix))\n .default_url_behavior(UrlBehavior {\n- suffix: AssetSuffix::Inferred,\n+ suffix: AssetSuffix:...
2026-02-20T17:31:02
nodejs/node
48f1934d5a9677b23dff11e6a57f647f19f45124
f65fc956d7638afb1aff1a2a56ce9166347a1a2a
tools: fix linter warning in `test-shared.yml` PR-URL: https://github.com/nodejs/node/pull/60772 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Xuguan...
[ { "path": ".github/workflows/test-shared.yml", "patch": "@@ -131,7 +131,7 @@ jobs:\n with:\n extra_nix_config: sandbox = true\n \n- - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16\n+ - uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad...
2025-11-20T09:38:00
facebook/react
cacc20e37c9ec320b5d2aa13f86cfc999d269d6b
bb7c9c1b8af82236125418f9fd3aa4de6fcc17e1
[Flight] Wait for both streams to end before closing the response (#34301) When a debug channel is defined, we must ensure that we don't close the Flight Client's response when the debug channel's readable is done, but the RSC stream is still flowing. Now, we wait for both streams to end before closing the response.
[ { "path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientBrowser.js", "patch": "@@ -101,6 +101,7 @@ function createResponseFromOptions(options: void | Options) {\n function startReadingFromUniversalStream(\n response: FlightResponse,\n stream: ReadableStream,\n+ onDone: () => void,\n ): ...
2025-08-26T15:15:25
vercel/next.js
415e0df7a15b91a46fb0b85af5501d2cd000c163
ca0957df545d2b7757bdf1a3a6343c65bffdbba9
[Instant] speed up test instant-validation suite (#90214) This PR speeds up the `instant-validation` test suite from 450s down to ~100s. We were wasting a lot of time in `waitForNoErrorToast()`, which ends up waiting almost 15s by default. The trick is to add some debug logs inside app-render to track when instant va...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -3615,13 +3615,39 @@ async function logMessagesAndSendErrorsToBrowser(\n }\n }\n \n+async function spawnStaticShellValidationInDev(\n+ ...args: Parameters<typeof spawnStaticShellValidationInDevImpl>\n+) {\n+ if (process.env.__N...
2026-02-20T05:57:04
nodejs/node
d4a282b30231d32d36e71c1f28d90e56ee4b9ea8
037a673b9b042ebdc454180a65ec46535c8be86f
tools: fix `paths-ignore` in gha files PR-URL: https://github.com/nodejs/node/pull/60753 Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <lui...
[ { "path": ".github/workflows/build-tarball.yml", "patch": "@@ -6,6 +6,7 @@ on:\n paths-ignore:\n - .mailmap\n - '**.md'\n+ - '**.nix'\n - AUTHORS\n - doc/**\n - test/internet/**\n@@ -19,6 +20,7 @@ on:\n paths-ignore:\n - .mailmap\n - '**.md'\n+ - '...
2025-11-18T21:45:40
electron/electron
6d8196fba32a11e2ffb72794ee5ad8d484851f68
fbfd7c7126f4dfede73850019a20e48e6e694074
chore: bump chromium to 143.0.7489.0 (main) (#48642) * chore: bump chromium in DEPS to 143.0.7489.0 * chore: update add_didinstallconditionalfeatures.patch no manual changes; patch applied with fuzz * chore: update allow_in-process_windows_to_have_different_web_prefs.patch patch reapplied manually due to context s...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7485.0',\n+ '143.0.7489.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "filenames.libcxx.gni", "patch...
2025-10-23T20:28:51
facebook/react
bb7c9c1b8af82236125418f9fd3aa4de6fcc17e1
44f8451ede5001b2c31de339890b9160fc06e436
Create more realistic containers in DevTools fixture (#34296)
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.js", "patch": "@@ -295,7 +295,7 @@ function SuspenseTab(_: {}) {\n ref={resizeTreeListRef}>\n <SuspenseTreeList />\n </div>\n- <div className={styles.ResizeBarWrapper}>\n+ <div clas...
2025-08-26T15:13:37
golang/go
99d7121934a9cfa7963d3a9bfd840779fd2869f6
b8bccb97982a7dc340f64d0ad522843418db8810
cmd/link: add more clang driver flags when testing flag This changes does 2 things: - Move `-L` to `prefixesToKeep` since it allows providing a custom default libs search path. - Allow various flags that impact the behaviour of the clang driver. The latter allows for LLVM only toolchains to be compatible with linke...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -2208,20 +2208,30 @@ func trimLinkerArgv(argv []string) []string {\n \tflagsWithNextArgSkip := []string{\n \t\t\"-F\",\n \t\t\"-l\",\n-\t\t\"-L\",\n \t\t\"-framework\",\n \t\t\"-Wl,-framework\",\n \t\t\"-Wl,-rpath\",\n \t\t\"-Wl,-undefined\",\n \t}\n...
2025-12-16T23:53:01
vercel/next.js
ca0957df545d2b7757bdf1a3a6343c65bffdbba9
2bf2c9c5f2e678cde27bba17ef31589325055c34
Prevent unhandled rejection filter from being bundled into the server runtime (#90205) The unhandled-rejection module was being bundled into server.runtime.prod.js AND loaded as a standalone file, causing installUnhandledRejectionFilter() to run twice. Each instance captured the other's handler as an underlying listen...
[ { "path": "packages/next/errors.json", "patch": "@@ -1064,5 +1064,6 @@\n \"1063\": \"`connection` must not be used within a Client Component. Next.js should be preventing `connection` from being included in Client Components statically, but did not in this case.\",\n \"1064\": \"createServerParamsForRou...
2026-02-20T04:48:45
nodejs/node
037a673b9b042ebdc454180a65ec46535c8be86f
0b6ae6df14ac7b6dbec4ad5c0473b63072d98cff
tools: update install_tools.bat old echo from 2019 to 2022 PR-URL: https://github.com/nodejs/node/pull/60736 Fixes: https://github.com/nodejs/node/issues/60733 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -39,7 +39,7 @@ echo license terms or not. Read and understand the license terms of the packages\n echo being installed and their dependencies prior to installation:\n echo - https://chocolatey.org/packages/chocolatey\n echo - https://choco...
2025-11-17T23:53:48
electron/electron
fbfd7c7126f4dfede73850019a20e48e6e694074
00e01e0e82072fe05c8ff2aa05f2e6b78e190d71
docs: security.md mark 'Enable process sandboxing' as active by defau… (#43247) * docs: security.md mark 'Enable process sandboxing' as active by default since electron 20 * Adjusted according to feedback * Updated according to feedback - adjusted sandbox.md * formatting * Fixed broken markup * Implemented docs l...
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -21,7 +21,9 @@\n associated with the window, making it compatible with the Chromium\n OS-level sandbox and disabling the Node.js engine. This is not the same as\n the `nodeIntegration` option and the APIs available to the preload script\...
2025-10-23T20:11:55
facebook/react
ad4ecb6e6eb0663dcabb5967fe23a8c4331c18d0
26e87b5f15d80fd4aaf9909f90de0857e54c1129
[DevTools] Fix symbolication with Index Source Maps (#34300)
[ { "path": "packages/react-devtools-shared/src/hooks/SourceMapConsumer.js", "patch": "@@ -136,9 +136,9 @@ function BasicSourceMapConsumer(sourceMapJSON: BasicSourceMap) {\n }\n \n type Section = {\n- +generatedColumn: number,\n- +generatedLine: number,\n- +map: MixedSourceMap,\n+ +offsetColumn0: number,\...
2025-08-26T13:18:20
golang/go
b8bccb97982a7dc340f64d0ad522843418db8810
513bb875bc77b2a516ac56f7710d8fbcd6ba6359
cmd/compile: don't double-walk the map argument of clear mkcallstmt1 already walks the map argument of clear. mapClear then walks it again, which can cause problems if it is some syntax that is non-idempotent under walk. That is the case for the new way map lookups are being lowered in CL 736020. Fixes #77435 Chang...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -477,7 +477,7 @@ func mapClear(m, rtyp ir.Node) ir.Node {\n \t// instantiate mapclear(typ *type, hmap map[any]any)\n \tfn := typecheck.LookupRuntime(\"mapclear\", t.Key(), t.Elem())\n \tn := mkcallstmt1(fn, rtyp, m)\n-\treturn walkStmt(typeche...
2026-02-04T23:29:40
vercel/next.js
b6257d77e26d6cb5928ebcc0c99fc9d55066d58e
87f609e710650c5b05664ac1da3b2cd35a643d78
Fix OTEL propagation and add direct entrypoint e2e coverage (#90181) ## Summary - update tracing propagation behavior so forced extraction does not drop active context when no remote span context is present - keep existing custom-server OTEL e2e coverage intact - add a new production e2e scenario that invokes the buil...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -527,6 +527,9 @@ export async function handler(\n const method = req.method || 'GET'\n const tracer = getTracer()\n const activeSpan = tracer.getActiveScopeSpan()\n+ const isWrappedByNextServer = Boolean(\n+ routerServerContex...
2026-02-20T00:17:38
nodejs/node
61cf89cb35a37b16846102b8fcd2ff675180c84b
8131d386cc8e3f085f8f05062ede907319ded50f
doc,test: add documentation and test on how to use addons in SEA PR-URL: https://github.com/nodejs/node/pull/59582 Fixes: https://github.com/nodejs/node/issues/60611 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Revie...
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -476,6 +476,43 @@ are equal to [`process.execPath`][].\n The value of `__dirname` in the injected main script is equal to the directory\n name of [`process.execPath`][].\n \n+### Using native addons in the injected main script\n+\n+Native a...
2025-11-17T04:41:11
facebook/react
26e87b5f15d80fd4aaf9909f90de0857e54c1129
75dc0026d665bd3c92e677c91252e6bf18303e45
Fix Flow issue from land race (#34293) A Flow upgrade removed the bundled library definitinos for SynthaticEvent and we probably want to use our internal definitions. Those are not properly typed at this point yet, but we can look into that as a followup.
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTimeline.js", "patch": "@@ -24,6 +24,10 @@ import {TreeDispatcherContext} from '../Components/TreeContext';\n import {useHighlightHostInstance} from '../hooks';\n import {SuspenseTreeStateContext} from './SuspenseTreeContext';\...
2025-08-25T16:58:12
electron/electron
00e01e0e82072fe05c8ff2aa05f2e6b78e190d71
418b8235bcc230ad88e27674b6cf3698c4339221
fix: remove `killed` check to allow multiple signals (#40667) * fix: remove `killed` check to allow multiple signals * fix: signal forwarding
[ { "path": "npm/cli.js", "patch": "@@ -5,7 +5,9 @@ const proc = require('child_process');\n const electron = require('./');\n \n const child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false });\n+let childClosed = false;\n child.on('close', function (code, signal) {\n+ ch...
2025-10-23T19:20:04
golang/go
997215446134152d8c3c53b3d052032475ef7cfa
f2e7fa6d31143b2d9fbb94df7aa05b3a0919d112
go/build: don't invoke go command when setting UseAllFiles Fixes #68556 Change-Id: I36b08577243a6b3a13b3adef116411d73a2d3428 Reviewed-on: https://go-review.googlesource.com/c/go/+/700337 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Emmanuel Odeke <emmanuel@...
[ { "path": "src/go/build/build.go", "patch": "@@ -1139,7 +1139,7 @@ func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode)\n \t// we must not being doing special things like AllowBinary or IgnoreVendor,\n \t// and all the file system callbacks must be nil (we're meant to use the loca...
2025-09-01T14:00:45
vercel/next.js
cf83d7c0b1b608006b72f8634f3ce67547273064
9a7733ed83bce9cc1264454ddc7335fdcfb0c1eb
fix(cache): DCE to avoid pulling server internals into browser bundles (4/8) (#89865) ## Summary Fix dead-code elimination in `packages/next/cache.js` to prevent server-only internals from being pulled into browser bundles. Restructures the conditional exports so bundlers can properly tree-shake server paths. ## Tes...
[ { "path": "packages/next/cache.js", "patch": "@@ -1,22 +1,53 @@\n-const cacheExports = {\n- unstable_cache: require('next/dist/server/web/spec-extension/unstable-cache')\n- .unstable_cache,\n+let cacheExports\n \n- updateTag: require('next/dist/server/web/spec-extension/revalidate')\n- .updateTag,\n...
2026-02-19T12:36:27
facebook/react
67e743fba576efc66e32d2d12b25552e316e24ce
9eede45646457fcf06261badc6c1a0c7afe1e144
[compiler] Fix missing dependency in eslint-plugin-react-hooks (#34287)
[ { "path": "packages/eslint-plugin-react-hooks/package.json", "patch": "@@ -41,7 +41,7 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.24.4\",\n \"@babel/parser\": \"^7.24.4\",\n- \"@babel/plugin-transform-private-methods\": \"^7.24.4\",\n+ \"@babel/plugin-proposal-private-methods\": \"^7.18...
2025-08-25T14:39:23
nodejs/node
2b83f003986e0b84b17296116a9c0776b3ee7e42
d4bc5b09716d0ca519af585efed2610d40be222c
src,permission: fix permission.has on empty param PR-URL: https://github.com/nodejs/node/pull/60674 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
[ { "path": "src/permission/fs_permission.cc", "patch": "@@ -176,13 +176,17 @@ bool FSPermission::is_granted(Environment* env,\n case PermissionScope::kFileSystem:\n return allow_all_in_ && allow_all_out_;\n case PermissionScope::kFileSystemRead:\n+ if (param.empty()) {\n+ return all...
2025-11-16T19:41:47
electron/electron
418b8235bcc230ad88e27674b6cf3698c4339221
717eb0dca5a7ec65ceec13ebf5b0dc0083f84df4
chore: bump nan to 2.23.0 (#48591) * chore: bump nan to 2.23.0 * Fix C++ flags passed to C compiler in NAN spec runner Passing C++-specific flags to the C compiler caused failures building native test modules. NAN uprgaded the version of node-gyp it uses, triggering a new codepath with the C compiler that didn't oc...
[ { "path": "DEPS", "patch": "@@ -6,7 +6,7 @@ vars = {\n 'node_version':\n 'v22.20.0',\n 'nan_version':\n- 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n+ '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':\n '0e5d146ba13101a1302d59ea6e6e0b3cace4ae38',\n 'reactiveobjc_ve...
2025-10-23T18:58:40
golang/go
044fe174d7a45ab0c7872500de63e6c61b01bf27
f766b8da6c6e78bfbd549931ad44e0a2386a32ba
internal/stringslite: remove duplicate code in Index Merge two nearly identical loops into one by selecting the fallback method (IndexString vs IndexRabinKarp) inside the loop based on whether n <= bytealg.MaxLen. Fixes #77364# Change-Id: Iefbef60922ca24e4dda3016127f54290096bcfed Reviewed-on: https://go-review.googl...
[ { "path": "src/internal/stringslite/strings.go", "patch": "@@ -28,52 +28,15 @@ func IndexByte(s string, c byte) int {\n func Index(s, substr string) int {\n \tn := len(substr)\n \tswitch {\n-\tcase n == 0:\n+\tcase n == 0 || substr == s:\n \t\treturn 0\n \tcase n == 1:\n \t\treturn IndexByte(s, substr[0])\n...
2026-02-03T08:02:27
vercel/next.js
9a7733ed83bce9cc1264454ddc7335fdcfb0c1eb
def0e3aabfa112ada22ece9297501c52471d34bd
Automatically build and clear native build when running `pnpm build` (#89819) ## What? Adds a `maybe-build-native.mjs` script to `packages/next-swc/` that conditionally rebuilds native SWC bindings during `pnpm build`. The script is integrated into the turborepo pipeline as the `build` task for `@next/swc`. ## Why? ...
[ { "path": "AGENTS.md", "patch": "@@ -367,8 +367,7 @@ When running Next.js integration tests, you must rebuild if source files have ch\n \n - **First run after branch switch/bootstrap (or if unsure)?** → `pnpm build`\n - **Edited only core Next.js files (`packages/next/**`) after bootstrap?** → `pnpm --filte...
2026-02-19T12:24:33
nodejs/node
d4bc5b09716d0ca519af585efed2610d40be222c
3330e5caf13e7b96d8ca445ec152350504350b58
src,permission: add debug log on is_tree_granted Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs/node/pull/60668 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "src/permission/fs_permission.cc", "patch": "@@ -69,7 +69,14 @@ bool is_tree_granted(\n resolved_param.erase(0, 2);\n }\n #endif\n- return granted_tree->Lookup(resolved_param, true);\n+ auto _is_granted = granted_tree->Lookup(resolved_param, true);\n+ node::Debug(env,\n+ node...
2025-11-16T19:41:38
facebook/react
090777d78a4d61462dc984b9bba169edd3e7c088
4049cfeeab33146e02b0721477fd5f2020f76a04
Update Flow to 0.274 (#34275) An exported needed explicit typing as it was inferred incorrectly.
[ { "path": "package.json", "patch": "@@ -74,8 +74,8 @@\n \"eslint-plugin-react-internal\": \"link:./scripts/eslint-rules\",\n \"fbjs-scripts\": \"^3.0.1\",\n \"filesize\": \"^6.0.1\",\n- \"flow-bin\": \"^0.273\",\n- \"flow-remove-types\": \"^2.273\",\n+ \"flow-bin\": \"^0.274\",\n+ \"...
2025-08-22T21:46:37
electron/electron
c6c3d405e25c37a51918984a96fa18f42fd5d1ab
9235dc0159bdba8101c21dfcd73a80f1ff5124ea
docs: fix Ubuntu version used to build Electron (#48638)
[ { "path": "README.md", "patch": "@@ -39,7 +39,7 @@ Each Electron release provides binaries for macOS, Windows, and Linux.\n \n * macOS (Big Sur and up): Electron provides 64-bit Intel and Apple Silicon / ARM binaries for macOS.\n * Windows (Windows 10 and up): Electron provides `ia32` (`x86`), `x64` (`amd64...
2025-10-23T14:45:45
golang/go
28fbdf7acb4146b5bc3d88128e407d1344691839
045d1270a7c299c6e40cccf3776860749abfe18e
cmd/go: fix pkg-config flag sanitization Implement a new pkg-config safe flag list (containing everything except for --log-file) and use that when checking flags passed to pkg-config, instead of using checkCompilerFlags. Fixes #77387 Change-Id: Id6141d0a2934053aa43e3aa8ce402bd499c4c028 Reviewed-on: https://go-review...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1797,10 +1797,7 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t}\n \t\t}\n \n-\t\t// Running 'pkg-config' can cause execution of\n-\t\t// arbitrary code using flags that are not in\n-\t\t// the safelist....
2026-02-03T02:29:51
nodejs/node
2e944d7de111fb94aae1fe9509035eccf08b4bb7
44ed25a94b522797c8d3bea9d67be831de689161
http,https: fix double ERR_PROXY_TUNNEL emission Fixes: https://github.com/nodejs/node/issues/60697 PR-URL: https://github.com/nodejs/node/pull/60699 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "lib/_http_agent.js", "patch": "@@ -284,9 +284,8 @@ function handleSocketAfterProxy(err, req) {\n if (err.code === 'ERR_PROXY_TUNNEL') {\n if (err.proxyTunnelTimeout) {\n req.emit('timeout'); // Propagate the timeout from the tunnel to the request.\n- } else {\n- req.emit('err...
2025-11-15T09:29:08
electron/electron
9235dc0159bdba8101c21dfcd73a80f1ff5124ea
f784ea6f4f98a12208c9dc42d7e437280e285a06
chore: bump chromium to 143.0.7485.0 (main) (#48618) * chore: bump chromium in DEPS to 143.0.7485.0 * chore: update allow_disabling_blink_scheduler_throttling_per_renderview.patch Move SetSupportsDraggableRegions mojom IPC from chrome/ and extensions/ to blink/ | https://chromium-review.googlesource.com/c/chromium/s...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7483.0',\n+ '143.0.7485.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/.patches", "...
2025-10-23T13:30:29
vercel/next.js
def0e3aabfa112ada22ece9297501c52471d34bd
99b4c96ee1e53478bfe2fefa9fe7bd21419fd430
fix: use Buffer.indexOf in uint8array helpers for faster byte scanning (3/8) (#89864) ## Summary Use `Buffer.indexOf` when available in `uint8array-helpers.ts` for faster byte sequence scanning. Falls back to the existing manual loop on non-Node environments. ## Test plan - [ ] `pnpm test-unit test/unit/stream-util...
[ { "path": "packages/next/src/server/stream-utils/uint8array-helpers.ts", "patch": "@@ -5,6 +5,14 @@ export function indexOfUint8Array(a: Uint8Array, b: Uint8Array) {\n if (b.length === 0) return 0\n if (a.length === 0 || b.length > a.length) return -1\n \n+ // Use Node's native implementation when avai...
2026-02-19T11:06:37
facebook/react
6de32a5a07958d7fc2f8d0785f5873d2da73b9fa
698bb4deb7c77010c040ac49630c26db94e6e28c
Update Flow to 0.263 (#34269) This update was a bit more involved. - `React$Component` was removed, I replaced it with Flow component types. - Flow removed shipping the standard library. This adds the environment libraries back from `flow-typed` which seemed to have changed slightly (probably got more precise and les...
[ { "path": ".eslintignore", "patch": "@@ -28,3 +28,6 @@ packages/react-devtools-shared/src/hooks/__tests__/__source__/__untransformed__/\n packages/react-devtools-shell/dist\n packages/react-devtools-timeline/dist\n packages/react-devtools-timeline/static\n+\n+# Imported third-party Flow types\n+flow-typed/"...
2025-08-22T16:10:13
nodejs/node
4a868fd9c50ed7bb32a751211889643b1c2f94ff
af10a4ba8833b8d7e09124ee915ce44345f85e8c
meta: add Renegade334 to collaborators Fixes: https://github.com/nodejs/node/issues/60536 PR-URL: https://github.com/nodejs/node/pull/60714 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "README.md", "patch": "@@ -415,6 +415,8 @@ For information about the governance of the Node.js project, see\n **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him) - [Support me](https://github.com/sponsors/RafaelGSS)\n * [RaisinTen](https://github.com/RaisinTen) -\n **Darshan Sen** <<raisin...
2025-11-14T10:42:03
golang/go
bd1b41eb8131a503a1a8d2fc41d3e79bce159468
01299a31c26b730785ac497da2ef7c593947d5d7
reflect, runtime: adjust user-created GCData on AIX On AIX the runtime adjusts the GCData field in getGCMaskOnDemand to account for the AIX dynamic loader moving the data section. That works fine for statically generated types, but it breaks user generated types. The user generated type will have a normal, correct, po...
[ { "path": "src/reflect/type.go", "patch": "@@ -2580,6 +2580,9 @@ func StructOf(fields []StructField) Type {\n \t\t// space to store it.\n \t\ttyp.TFlag |= abi.TFlagGCMaskOnDemand\n \t\ttyp.GCData = (*byte)(unsafe.Pointer(new(uintptr)))\n+\t\tif runtime.GOOS == \"aix\" {\n+\t\t\ttyp.GCData = adjustAIXGCData(...
2026-01-31T02:42:27
electron/electron
f784ea6f4f98a12208c9dc42d7e437280e285a06
7ec0ebc50a016ed5ea538160602001024d84cb06
fix: icon in Windows toast notification (#48543)
[ { "path": "shell/browser/notifications/win/notification_presenter_win.cc", "patch": "@@ -30,9 +30,8 @@ namespace {\n bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {\n std::optional<std::vector<uint8_t>> png_data =\n gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false);\n- if (...
2025-10-21T19:12:26
vercel/next.js
f10b63d17ec21b5fee42182a7b8567a99928c51a
5563b4d7e14db5ca59295505c6b617425d46fb4c
Turbopack: Derive `Default` on `PartialProjectOptions`, remove silly `partial_project_options_with_debug_build_paths` helper (#90170) TSIA
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -362,6 +362,7 @@ pub struct ProjectOptions {\n pub is_persistent_caching_enabled: bool,\n }\n \n+#[derive(Default)]\n pub struct PartialProjectOptions {\n /// A root path from which all files must be nested under. Trying to access\n /// a ...
2026-02-19T01:04:11
nodejs/node
49d6026fd1dc944c6b83c5817f90bf45ee959f41
da71ab68951836cb7c9e12f3e13697cdd30d63ea
test: fix test-buffer-zero-fill-cli to be effective PR-URL: https://github.com/nodejs/node/pull/60623 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-buffer-zero-fill-cli.js", "patch": "@@ -14,6 +14,13 @@ function isZeroFilled(buf) {\n return true;\n }\n \n+// We have to consume the data from the pool as otherwise\n+// we would be testing what's in snapshot, which is zero-filled\n+// regardless of the flag presence, and we...
2025-11-13T21:21:17
golang/go
01299a31c26b730785ac497da2ef7c593947d5d7
1bbb78e7772e7530338e9f154936dc2479adafac
cmd/cgo: use objdir consistently, create it as needed Previously we added a slash to the end of objdir only after processing input files. The effect was that the temporary gcc output files were placed in /tmp, using objdir as a prefix. Those output files were not removed by anything. Now we consistently use objdir as...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -24,6 +24,7 @@ import (\n \t\"math\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1795,7 +1796,7 @@ var n atomic.Int64\n \n func gccTmp() string {\n \tc := strconv.Itoa(int(n.Add(1)))\n-\treturn *objDir + \"...
2026-01-30T23:33:49
electron/electron
6562d6ed0bdf1cdd99bebe3dde763942d943ea3f
0b179f8f059f9afb2601277cacaa4bc7ea575a96
fix: `systemPreferences.getAccentColor` inverted color (#48511) fix: systemPreferences.getAccentColor inverted color
[ { "path": "shell/browser/api/electron_api_system_preferences_win.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/win/wrapped_window_proc.h\"\n #include \"shell/common/color_util.h\"\n #include \"shell/common/process_util.h\"\n+#include \"skia/ext/skia_utils_win.h\"\n #include \"ui/gfx/win/hwnd_util.h\"\n...
2025-10-21T14:46:46
facebook/react
7d29ecbeb24327fdcd889fe184311bbeb0f04c30
253abc78a1db0caab1693ecf9407d9bc10dd6bd1
[compiler] Aggregate error reporting, separate eslint rules (#34176) NOTE: this is a merged version of @mofeiZ's original PR along with my edits per offline discussion. The description is updated to reflect the latest approach. The key problem we're trying to solve with this PR is to allow developers more control ove...
[ { "path": "babel.config-ts.js", "patch": "@@ -8,6 +8,7 @@ module.exports = {\n '@babel/plugin-syntax-jsx',\n '@babel/plugin-transform-flow-strip-types',\n ['@babel/plugin-transform-class-properties', {loose: true}],\n+ ['@babel/plugin-transform-private-methods', {loose: true}],\n '@babel/...
2025-08-21T21:53:34
vercel/next.js
5563b4d7e14db5ca59295505c6b617425d46fb4c
17a332089e3379c1cfa9e19cc303843201ab6f0e
Turbopack: Update rust toolchain to nightly-2026-02-18 (#89974) Rust finally merged a fix to the "trying to encode a dep node twice" ICE we seem to most frequently run into, triggered by the rustc parallel frontend feature: https://github.com/rust-lang/rust/pull/151509 - @mischnic commented on the issue: https://git...
[ { "path": ".devcontainer/rust/devcontainer-feature.json", "patch": "@@ -5,7 +5,7 @@\n \"dependsOn\": {\n \"ghcr.io/devcontainers/features/rust:1\": {\n // this should match the `rust-toolchain.toml`\n- \"version\": \"nightly-2026-02-05\",\n+ \"version\": \"nightly-2026-02-18\",\n ...
2026-02-18T23:41:22
nodejs/node
da71ab68951836cb7c9e12f3e13697cdd30d63ea
9bc6ebb20a3c9fc4cb8123faca045bd5a3d09b01
deps: V8: cherry-pick highway@989a498fdf3 Original commit message: GCC 15 removed avx10.2-512 target PiperOrigin-RevId: 823560321 Refs: https://github.com/google/highway/commit/989a498fdf3e2b758c48998e87a2807a1a53e494 PR-URL: https://github.com/nodejs/node/pull/60682 Fixes: https://github.com/nodejs/node/is...
[ { "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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-11-13T19:32:11
electron/electron
0b179f8f059f9afb2601277cacaa4bc7ea575a96
89d3067dd4b001320eca8e35b2d1c4f9968a6196
fix: devtools crashing on Linux in detach mode (#48600)
[ { "path": "shell/browser/ui/views/electron_views_delegate.cc", "patch": "@@ -8,6 +8,7 @@\n \n #include \"ui/views/widget/desktop_aura/desktop_native_widget_aura.h\"\n #include \"ui/views/widget/native_widget_aura.h\"\n+#include \"ui/views/window/default_frame_view.h\"\n \n #if BUILDFLAG(IS_LINUX)\n #include...
2025-10-21T14:45:02
golang/go
1bbb78e7772e7530338e9f154936dc2479adafac
a3688ab13e76762a168f43e91ca9422c847ee896
cmd/go: rewrite cgo names to "C." in compiler error messages We used to do this but it broke in Go 1.10. This restores the rewrite, but only applied to compiler output for packages that use cgo. That is all that the original rewrite applied to anyhow. Fixes #76339 Change-Id: Ife8ee858ddd0ff7bcc7423455b2eabf8381b7bde...
[ { "path": "src/cmd/cgo/internal/testerrors/errors_test.go", "patch": "@@ -72,7 +72,7 @@ func expect(t *testing.T, errors []*regexp.Regexp, files ...string) {\n \tdefer os.RemoveAll(dir)\n \n \tdst := filepath.Join(dir, strings.TrimSuffix(files[0], \".go\"))\n-\targs := []string{\"build\", \"-gcflags=-L -e\"...
2025-11-19T00:24:04
facebook/react
253abc78a1db0caab1693ecf9407d9bc10dd6bd1
d73b6f111057e09b9886e8edd2bc70fa56229489
[Flight] Transfer Debug Info from a synchronous Reference to another Chunk (#34229)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -496,13 +496,14 @@ function createErrorChunk<T>(\n function wakeChunk<T>(\n listeners: Array<InitializationReference | (T => mixed)>,\n value: T,\n+ chunk: SomeChunk<T>,\n ): void {\n for (let i = 0; i < listeners.length; i++) {...
2025-08-21T21:50:20
nodejs/node
9bc6ebb20a3c9fc4cb8123faca045bd5a3d09b01
d546e7fd0bc3cbb4bcc2baae6f3aa44d2e81a413
doc: fix incorrect slh-dsa oids in crypto.md Correct wrong object identifiers listed for slh-dsa algorithms in doc/api/crypto.md. the valid range is from id-slh-dsa-sha2-128s (2.16.840.1.101.3.4.3.20) through id-slh-dsa-shake-256f (2.16.840.1.101.3.4.3.31), as defined in the ietf draft-ietf-lamps-x509-slhdsa. Fixes: ...
[ { "path": "doc/api/crypto.md", "patch": "@@ -93,17 +93,17 @@ The following table lists the asymmetric key types recognized by the [`KeyObject\n | `'rsa-pss'` | RSA PSS | 1.2.840.113549.1.1.10 |\n | `'rsa'` | RSA | 1.2.840.113549.1...
2025-11-13T16:44:24
vercel/next.js
ea3cad2848539d9a6273b42b09011d52b8a99b6a
da445e89cd5455e21f688d5f510b47e8a1e22cf7
Only error for sync IO after runtime in segments that would be runtime prefetched (#89979) Stacked on #89984 When we initially implemented runtime prefetching we decided to make sync IO that happens after runtime but before async IO an error. This is similar to but more aggressive than the error for sync IO before ru...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -223,7 +223,6 @@ import { ImageConfigContext } from '../../shared/lib/image-config-context.shared\n import { imageConfigDefault } from '../../shared/lib/image-config'\n import { RenderStage, StagedRenderingController } from './stag...
2026-02-18T22:49:30
electron/electron
89d3067dd4b001320eca8e35b2d1c4f9968a6196
00a3031357b90fa29621de4f7395cabae304430c
fix: `trafficLightPosition` incorrect with `customButtonsOnHover` (#48538) fix: trafficLightPosition incorrect with customButtonsOnHover
[ { "path": "shell/browser/ui/cocoa/window_buttons_proxy.mm", "patch": "@@ -176,6 +176,13 @@ - (void)updateButtonsVisibility {\n [button setHidden:hidden];\n [button setNeedsDisplay:YES];\n }\n+\n+ // On macOS 26, toggling the hidden state of the standard window buttons can\n+ // cause AppKit to r...
2025-10-21T14:43:04
golang/go
ae7b257f24736ec13100870c4dee59c5eb57f062
835d6d42c478a711708968cf0916d734940f88ee
cmd/compile: enhance astdump flag to also generate HTML AI-generated code, 3 merged commits, plus a LOT of hand cleanups and tweaks, including removing cargo-culted dead code from the SSA example, reorganizing CSS and JS out of a single giant comment, using defer appropriately to ensure balanced open/close tags, runni...
[ { "path": "src/cmd/compile/internal/gc/main.go", "patch": "@@ -47,6 +47,7 @@ import (\n // already been some compiler errors). It may also be invoked from the explicit panic in\n // hcrash(), in which case, we pass the panic on through.\n func handlePanic() {\n+\tir.CloseHTMLWriters()\n \tif err := recover(...
2026-01-30T06:46:05
nodejs/node
d546e7fd0bc3cbb4bcc2baae6f3aa44d2e81a413
092a448ad0ff935bfe2c365216fa40b84a4781e0
src: tag more v8 aligned pointer slots PR-URL: https://github.com/nodejs/node/pull/60666 Fixes: https://github.com/nodejs/node/issues/60589 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "src/stream_base-inl.h", "patch": "@@ -19,7 +19,7 @@ StreamReq::StreamReq(\n \n void StreamReq::AttachToObject(v8::Local<v8::Object> req_wrap_obj) {\n CHECK_EQ(req_wrap_obj->GetAlignedPointerFromInternalField(\n- StreamReq::kStreamReqField),\n+ StreamReq::kStreamReqFi...
2025-11-13T14:27:40
facebook/react
812075366552bb757aaa00ff55ecccd1e1e4c5fa
3770ff38536c84c8a456eb74bb771f2fdca5c1c9
[DevTools] fix: always send a response to fetch-file request in the extension (#34235) This fixes the displaying of "rendered by" section if owner stacks contained any native frames. This regressed after https://github.com/facebook/react/pull/34185, where we added the Suspense boundary for the StackTraceView. This fa...
[ { "path": "packages/react-devtools-extensions/src/background/messageHandlers.js", "patch": "@@ -46,22 +46,26 @@ export function handleDevToolsPageMessage(message) {\n payload: {tabId, url},\n } = message;\n \n- if (!tabId) {\n- throw new Error(\"Couldn't fetch file sources: tabId n...
2025-08-21T17:28:33
electron/electron
0c27c1a3959bb3088cd4f60540cdffcec4b2b842
a528547dc87a18e572fa459d450faa1efa38ae44
fix: position window titlebar buttons correctly in Ubuntu on Wayland (#48490)
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -186,14 +186,3 @@ the one downloaded by `npm install`. Usage:\n ```sh\n export ELECTRON_OVERRIDE_DIST_PATH=/Users/username/projects/electron/out/Testing\n ```\n-\n-## Set By Electron\n-\n-Electron sets some variables in your environment at runtime....
2025-10-20T19:42:23
vercel/next.js
da445e89cd5455e21f688d5f510b47e8a1e22cf7
0d613062017062259a00138e64b07c081f26993b
fix: normalize loopback only in hostname (#90158) `NextURL` intentionally canonicalizes loopback hosts (127.x.x.x, [::1], localhost) to localhost so that internal URL handling is consistent across equivalent local origins. However, we were applying a regex replacement to the entire URL before parsing, which unintenti...
[ { "path": "packages/next/src/server/web/next-url.ts", "patch": "@@ -20,13 +20,14 @@ interface Options {\n }\n \n const REGEX_LOCALHOST_HOSTNAME =\n- /(?!^https?:\\/\\/)(127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)/\n+ /^(?:127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}...
2026-02-18T19:54:24
golang/go
835d6d42c478a711708968cf0916d734940f88ee
1179cfc9b490ce5a8c3adaccea84c79e69f711d7
cmd/compile: add astdump debug flag This was extraordinarily useful for inlining work. I have cleaned it up somewhat, and did some additional tweaks after working on changes to bloop. -gcflags=-d=astdump=SomeFunc -gcflags=-d=astdump=SomeSubPkg.SomeFunc -gcflags=-d=astdump=Some/Pkg.SomeFunc -gcflags=-d=astdump=~YourRe...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -18,6 +18,7 @@ var Debug DebugFlags\n type DebugFlags struct {\n \tAlignHot int `help:\"enable hot block alignment (currently requires -pgo)\" concurrent:\"ok\"`\n \tAppend int `help:\"print information about ...
2024-11-19T18:57:23
facebook/react
243a56b9a22a41b5b3df6668f9eb97b13cb41c3c
83c7379b9601f25463826449256f0cd3d283702d
Update Flow to 0.246 (#34244) Catching up Flow versions. Since there's plenty new errors, I'm taking each version with breaking changes as a new PR.
[ { "path": "package.json", "patch": "@@ -72,8 +72,8 @@\n \"eslint-plugin-react-internal\": \"link:./scripts/eslint-rules\",\n \"fbjs-scripts\": \"^3.0.1\",\n \"filesize\": \"^6.0.1\",\n- \"flow-bin\": \"^0.245.2\",\n- \"flow-remove-types\": \"^2.245.2\",\n+ \"flow-bin\": \"^0.246\",\n+ ...
2025-08-21T01:46:55
nodejs/node
092a448ad0ff935bfe2c365216fa40b84a4781e0
8480f87375992478f590dd094a276a1fb7d179a0
test: fix test-linux-perf-logger for V8 14.3 Refs: https://github.com/v8/v8/commit/e2e6dd82794659bd8a386ea43f437e0ff8b5c536 PR-URL: https://github.com/nodejs/node/pull/60488 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@...
[ { "path": "test/v8-updates/test-linux-perf-logger.js", "patch": "@@ -46,7 +46,7 @@ const testCases = [\n matches: [\n 'JS:~functionOne .+/linux-perf-logger.js',\n 'JS:~functionTwo .+/linux-perf-logger.js',\n- String.raw`RegExp\\.> src: 'test-regex' flags: 'gi'`,\n+ String.raw`RegEx...
2025-11-08T08:05:01
golang/go
8572b1cfea49b6108b9fb8ea650c4999ba70d381
e0414d74fe2d38a6de1cadbbc135d578b11a27af
internal/runtime: fix assembly for spectre retpoline instrumentation In the last year we added two CALLs whose targets are loaded from memory. Change them to call from a register so that the instrumentation for spectre mitigations works. This change also adds a smoke test for the spectre build flags. For #77420. Ch...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -789,22 +789,38 @@ func (t *tester) registerTests() {\n \tif !t.compileOnly && !t.short {\n \t\tt.registerTest(\"GODEBUG=gcstoptheworld=2 archive/zip\",\n \t\t\t&goTest{\n-\t\t\t\tvariant: \"runtime:gcstoptheworld2\",\n+\t\t\t\tvariant: \"gcstoptheworld2\",\n \...
2026-02-03T15:45:21
vercel/next.js
0d613062017062259a00138e64b07c081f26993b
445d880ef97ddcfa9c1520c6fab549e704aa83d6
Simplify how `json` imports work by turning it into a source transform (#89631) # Refactor JSON module handling in Turbopack ## What? Moves the JSON module handling from a separate crate (`turbopack-json`) into the `turbopack-ecmascript` crate as a source transform, similar to how text and binary files are handled. ...
[ { "path": "Cargo.lock", "patch": "@@ -9730,7 +9730,6 @@ dependencies = [\n \"turbopack-css\",\n \"turbopack-ecmascript\",\n \"turbopack-env\",\n- \"turbopack-json\",\n \"turbopack-mdx\",\n \"turbopack-node\",\n \"turbopack-resolve\",\n@@ -10124,19 +10123,6 @@ dependencies = [\n \"turbopack-core\",\n ...
2026-02-18T17:57:57
electron/electron
413803188d29ba4064ccb1250302496aa1994a20
1cc2fce905ab320847d2b95321f5b4d63c65ac37
fix: background hover contrast for WCO buttons (#48568)
[ { "path": "shell/browser/ui/views/win_caption_button.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"base/i18n/rtl.h\"\n #include \"base/numerics/safe_conversions.h\"\n #include \"base/win/windows_version.h\"\n+#include \"chrome/browser/ui/color/chrome_color_id.h\"\n #include \"chrome/grit/theme_resources.h\"...
2025-10-20T07:54:14
nodejs/node
bf5c6a8bd46b314145c1b1ae3e84169e8d2b21f9
b59af772dc767fac129011f48cd6ddd1841f3317
deps: V8: backport 151d0a44a1b2 Original commit message: Fix gcc build For json-parser.h: ``` ../../src/json/json-parser.h:298:13: error: explicit specialization in non-namespace scope 'class v8::internal::JsonParser<Char>' 298 | template <> | ^ ../../src/json/j...
[ { "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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2025-11-01T02:09:18
golang/go
b691a2edc7f5863f61a07c4a4f087eef1a15a704
31c9bcb1037a332fd547808693cd1899090b5854
crypto/tls: revalidate whole chain on resumption on Windows and macOS TestHandshakeChangeRootCAsResumption and TestHandshakeGetConfigForClientDifferentClientCAs changed because previously rootA and rootB shared Subject and SPKI, which made the new full-chain revalidation check succeed, as the same leaf would verify a...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -22,6 +22,7 @@ import (\n \t\"internal/godebug\"\n \t\"io\"\n \t\"net\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n@@ -1873,15 +1874,27 @@ func anyValidVerifiedChain(verifiedChains [][]*x509.Certificate, opts x509.Verif\n \t\t}) {\n \t\t\t...
2026-01-30T17:07:23
vercel/next.js
5509e1bf7a7af24b4dfe71d80fba4fae27efcfca
e17b1152bafbe3b05d40ede053bb33a4cb165ad9
[fragment-scroll] Stop focusing the first focusable host descendant (#89903) Flagged behind `experimental.appNewScrollHandler` `focus()` on Fragment refs works different than `findDOMNode(this).focus()`. `findDOMNode` will return an actual host element so it's effectively `HTMLElement.focus()`. If the element is...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -139,12 +139,12 @@ function getHashFragmentDomNode(hashFragment: string) {\n document.getElementsByName(hashFragment)[0]\n )\n }\n-interface ScrollAndFocusHandlerProps {\n+interface ScrollAndMaybeFocusHandlerProps {\n fo...
2026-02-18T17:50:39
nodejs/node
b59af772dc767fac129011f48cd6ddd1841f3317
6494c7bcad9f47ba11e57ffc043324008f9eca56
deps: V8: cherry-pick 47800791b35c Original commit message: [wasm] Fix DCHECK in AtomicWait after memory growth With the changes in crrev.com/c/7003085, calling memory.grow() via the JS API didn't immediately update the memory's array buffer any more, which triggered a DCHECK in the runtime functions...
[ { "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.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-30T14:43:18
facebook/react
c2ac8b4f0e000e4e2000f0ea6d11673431191e4d
03fda05d2c112a1fb829ef663ca4e98d540adc36
[ci] Fix permissions for direct sync branch PRs workflow (#34241) Because we sync built artifacts into Meta, we can't support edits from inside www/fbsource to be synced back into OSS as it would cause merge conflicts for future OSS PRs. We have a workflow that should automatically catch and close these PRs, but it l...
[ { "path": ".github/workflows/shared_close_direct_sync_branch_prs.yml", "patch": "@@ -18,6 +18,7 @@ jobs:\n permissions:\n # Used to create a review and close PRs\n pull-requests: write\n+ contents: write\n steps:\n - name: Close PR\n uses: actions/github-script@v7", ...
2025-08-20T21:09:38
electron/electron
3bfe1f236345a7fa6e651ee24782c72a16a58b47
7e031f7e33dcc66cbe5e0e4153a0fc0544618612
chore: bump chromium to 143.0.7474.0 (main) (#48572) * chore: bump chromium in DEPS to 143.0.7474.0 * 7006208: [Mac] Fix rendering bug for manual occlusion detection on macOS 26 Refs https://chromium-review.googlesource.com/c/chromium/src/+/7006208 * chore: update patches * 7038563: Forward declare more in page_na...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7469.0',\n+ '143.0.7474.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/add_didinstallco...
2025-10-17T17:04:24
golang/go
31c9bcb1037a332fd547808693cd1899090b5854
18d31e3e8bf47538c8a570268cd714d47bf01aef
internal/poll: readWriteUnlock should destroy fd when no remaining references Fixes #77404 Change-Id: I0402becb94855baf942d6ba3815cc2a3c1526d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/740921 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Sh...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -265,7 +265,9 @@ func (fd *FD) readWriteLock() error {\n // is no remaining reference.\n func (fd *FD) readWriteUnlock() {\n \tfd.fdmu.rwunlock(true)\n-\tfd.fdmu.rwunlock(false)\n+\tif fd.fdmu.rwunlock(false) {\n+\t\tfd.destroy()\n+\t}\n }\n \n // clos...
2026-02-02T11:06:22
nodejs/node
6494c7bcad9f47ba11e57ffc043324008f9eca56
72d719dc008aa09058b7433e7b9c1fdb92968e19
deps: V8: backport 2e4c5cf9b112 Original commit message: remove ppc and s390 from the host_arch list We only support ppc64 and s390x. Same changes is applied to depot_tools: http://crrev.com/c/7100932 Change-Id: I1e4b660a1e46d1c609189301e8fd977fb7434748 Reviewed-on: https://chromium-review.g...
[ { "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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2025-11-11T12:18:04
vercel/next.js
e17b1152bafbe3b05d40ede053bb33a4cb165ad9
4cc1d4afca22bb53a75759931faa2592f12b0dfb
[test] Current behavior of focus after `next/link` navigation (#89959) We try to focus the new Segment after navigation. This behavior currently has now tests. I plan to change that behavior behind `experimental.appNewScrollHandler` so I'm adding some tests for the current behavior. The test is also meant as a fixture...
[ { "path": "test/e2e/app-dir/navigation-focus/app/interactive-segment/page.tsx", "patch": "@@ -0,0 +1,9 @@\n+export default function InteractiveSegmentPage() {\n+ return (\n+ <textarea\n+ data-testid=\"segment-container\"\n+ style={{ height: '50vh' }}\n+ placeholder=\"Type here\"\n+ />\...
2026-02-18T17:26:29
electron/electron
7e031f7e33dcc66cbe5e0e4153a0fc0544618612
7580e3a5e2ce8870cf949795012cfa4d38fb28a1
ci: fix publish for macOS < 26.0 (#48575)
[ { "path": "build/args/all.gn", "patch": "@@ -19,6 +19,10 @@ proprietary_codecs = true\n \n enable_printing = true\n \n+# Refs https://chromium-review.googlesource.com/c/chromium/src/+/6986517\n+# CI is using MacOS 15.5 which doesn't have the required modulemaps.\n+use_clang_modules = false\n+\n # Removes DL...
2025-10-16T23:53:13
facebook/react
03fda05d2c112a1fb829ef663ca4e98d540adc36
0bc71e67ab3d43c8c7eece258d4fdd085ee2244d
[DevTools] Fix display of stack frames with anonymous sources (#34237)
[ { "path": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js", "patch": "@@ -52,8 +52,8 @@ function parseStackTraceFromChromeStack(\n if (filename === '<anonymous>') {\n filename = '';\n }\n- const line = +(parsed[3] || parsed[6]);\n- const col = +(parsed[4] || parsed[7...
2025-08-20T15:31:42
golang/go
7fd116f86451d7262f7683629b90c8adc0137f53
8ac41b52c4b7a6ab9c41d008abbe254270200b8e
go/types, types2: add missing Named.unpack call in Checker.hasVarSize CL 734980 swapped use of Type.Underlying() in Checker.hasVarSize for traversal of Named.fromRHS. It forgot to call Named.unpack() before inspecting Named.fromRHS, allowing access of unexpanded instantiated types. These unexpanded instantiated types...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -1009,7 +1009,8 @@ func sliceElem(x *operand) (Type, *typeError) {\n // yet been checked.\n func (check *Checker) hasVarSize(t Type) bool {\n \t// Note: We could use Underlying here, but passing through the RHS may yield\n-\t// better err...
2026-01-30T19:23:02
nodejs/node
72d719dc008aa09058b7433e7b9c1fdb92968e19
5e41e5228ac972c12290b054c0a151154fc330da
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "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.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2025-08-07T14:14:08
vercel/next.js
c885d4825f800dd1e49ead37274dcd08cdd6f3f1
8d418beb4864c8671ce003a5cea38f3489e55101
ensure maxPostponedStateSize is always respected (#90060) `maxPostponedStateSize` should be verified in all cases where the postponed body is buffered. This fixes a branch in self-hosted setups where that check was missing.
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -65,10 +65,12 @@ import type { CacheControl } from '../../server/lib/cache-control'\n import { ENCODED_TAGS } from '../../server/stream-utils/encoded-tags'\n import { sendRenderResult } from '../../server/send-payload'\n import { NoFall...
2026-02-18T16:53:21
electron/electron
7580e3a5e2ce8870cf949795012cfa4d38fb28a1
471a14432fa1dcae52e1716396521607a59ecd92
chore: update fix_harden_blink_scriptstate_maybefrom.patch (#48566)
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -3,6 +3,9 @@ From: deepak1556 <hop2deep@gmail.com>\n Date: Wed, 28 Jun 2023 21:11:40 +0900\n Subject: fix: harden blink::ScriptState::MaybeFrom\n \n+NOTE: since https://chromium-review.googlesource.com/c/chromium/src/+/6...
2025-10-16T01:16:17
facebook/react
0bc71e67ab3d43c8c7eece258d4fdd085ee2244d
3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae
[Flight] Add `debugChannel` option to Edge and Node clients (#34236) When a debug channel is used between the Flight server and a browser Flight client, we want to allow the same RSC stream to be used for server-side rendering. To support this, the Edge and Node Flight clients also need to accept a `debugChannel` opti...
[ { "path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js", "patch": "@@ -56,8 +56,38 @@ export type Options = {\n findSourceMapURL?: FindSourceMapURLCallback,\n replayConsoleLogs?: boolean,\n environmentName?: string,\n+ // For the Node.js client we only support a single-direct...
2025-08-20T14:46:34
golang/go
8ac41b52c4b7a6ab9c41d008abbe254270200b8e
62d08234b797806796af0d51051f2e13caa42e2a
testing/synctest: add Sleep Add a convenience function which combines time.Sleep and synctest.Wait. Fixes #77169 Change-Id: I2ff105105e95cfd8e5b4f72ccacf7afa59efb6bd Reviewed-on: https://go-review.googlesource.com/c/go/+/740066 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Damien Neil <dneil@google.co...
[ { "path": "api/next/77169.txt", "patch": "@@ -0,0 +1 @@\n+pkg testing/synctest, func Sleep(time.Duration) #77169", "additions": 1, "deletions": 0 }, { "path": "doc/next/6-stdlib/99-minor/testing/synctest/77169.md", "patch": "@@ -0,0 +1 @@\n+The new [Sleep] helper function combines [time....
2026-01-28T23:04:46
rust-lang/rust
c03b20d198b910394b653f950618cb283fce08bc
be6df70d2548d90e7d18aba8ccc518d311a7a718
fix: Turn back `TyLoweringContext.store` to self after lowering parent defaults
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -2411,10 +2411,11 @@ pub(crate) fn generic_defaults_with_diagnostics_query(\n }\n let resolver = def.resolver(db);\n \n+ let store_for_self = generic_params.store();\n let mut ctx = TyLoweringContext::new(\n ...
2026-01-23T16:03:27
nodejs/node
ecca2b0d6419462f7dd0b70ad5cbec4ed87eb247
7c8483a4e908949e78240bd24f73b10dc9b2bcbf
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "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.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
golang/go
62d08234b797806796af0d51051f2e13caa42e2a
35abaf75c35adc9b22038885781b8be70a8476e0
internal/maps,cmd/compile/internal/walk: replace calls to mapaccess1* with mapaccess2* mapaccess1* and mapaccess2* functions share the same implementation and differ only in whether the boolean "found" is returned. This change replaces mapaccess1* calls with mapaccess2*. We can do this transparently, since the call s...
[ { "path": "src/cmd/compile/internal/walk/assign.go", "patch": "@@ -154,12 +154,14 @@ func walkAssignMapRead(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \n \tr := n.Rhs[0].(*ir.IndexExpr)\n \twalkExprListSafe(n.Lhs, init)\n+\n \tr.X = walkExpr(r.X, init)\n \tr.Index = walkExpr(r.Index, init)\n+\tmap_ :...
2026-01-13T10:06:28
facebook/react
3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae
ae5c2f82b3ff71e4c8808c4dc3ebe60b71a1d125
[DevTools] Fix crash when inspecting Components suspended on data awaited in anonymous functions (#34234)
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -6,7 +6,7 @@\n *\n * @flow\n */\n-\n+import type {StackFrame as ParsedStackFrame} from 'error-stack-parser';\n import type {\n Awaited,\n ReactContext,\n@@ -844,7 +844,11 @@ export type HooksTree = Array<HooksNode>;\n \n let ...
2025-08-20T07:34:06
nodejs/node
275215f7bcdcba82ad3d4227ef65b3213de2fe7a
238899169f4822e2cd0ecb40146ef5918bf2046c
benchmark: use typescript for import cjs benchmark The original benchmark uses a not very realistic fixture (it has a huge try-catch block that would throw on the first line and then export at the end, hardly representative of real-world code). Also, it measures the entire import including evaluation, not just parsing...
[ { "path": "benchmark/esm/cjs-parse.js", "patch": "@@ -1,39 +0,0 @@\n-'use strict';\n-const fs = require('fs');\n-const path = require('path');\n-const common = require('../common.js');\n-const { strictEqual } = require('assert');\n-\n-const tmpdir = require('../../test/common/tmpdir');\n-const benchmarkDire...
2025-11-10T12:39:08
vercel/next.js
2a9e7560a50ccf511d2eed38998e97cc78153267
9dad4cd9f0af904b9883895cbef9909c436cc979
Turbopack: handle invalid RSC imports via importmap (#88146) We have two lines of defense: 1. crates/next-custom-transforms/src/transforms/react_server_components.rs validates ESM imports of server-only and client-only and throws an issue if something is wrong. Notably, `require('server-only')` isn't caught by this ...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -50,10 +50,7 @@ use crate::{\n get_next_client_resolved_map,\n },\n next_shared::{\n- resolve::{\n- ModuleFeatureReportResolvePlugin, NextSharedRuntimeResolvePlugin,\n- get_invalid_server_only_...
2026-02-18T13:06:18
facebook/react
0bdb9206b77f334cc428958fc01aeea95355e8db
f508edc83fa1eb316a974c274b4411f081d6e94d
[Fizz] If we haven't painted yet, wait to reveal everything until next paint (#34230) Before the first rAF, we don't know if there has been other paints before this and if so when. (We could get from performance observer.) We can assume that it's not earlier than 0 so we used delay up until the throttle time starting ...
[ { "path": "fixtures/ssr/src/components/LargeContent.js", "patch": "@@ -1,8 +1,4 @@\n-import React, {\n- Fragment,\n- Suspense,\n- unstable_SuspenseList as SuspenseList,\n-} from 'react';\n+import React, {Suspense, unstable_SuspenseList as SuspenseList} from 'react';\n \n export default function LargeCont...
2025-08-19T00:22:40
golang/go
35abaf75c35adc9b22038885781b8be70a8476e0
07f7f8ca5202bdcd39216e25b4a5b2c309ea727f
encoding/json: use pooled encoder in Encoder.Encode Due to the lack of MarshalWrite in the v1 API, it is unfortunately common to see: json.NewEncoder(out).Encode(in) where a single-use Encoder is constructed and thrown away. This performed acceptably in v1 since every call to Encode used a globally pooled encode...
[ { "path": "src/encoding/json/bench_test.go", "patch": "@@ -14,6 +14,7 @@ package json\n \n import (\n \t\"bytes\"\n+\t\"crypto/sha256\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"internal/zstd\"\n@@ -581,3 +582,19 @@ func BenchmarkUnmarshalNumber(b *testing.B) {\n \t\t}\n \t}\n }\n+\n+func BenchmarkNewEncod...
2026-01-30T20:15:31
rust-lang/rust
2a543acbaf7739b547ca95c1d8d49758cfd510f4
1eeba934aef84cf5fe94df9b3c1ead8e19f18ff9
Moved and rename issue-50411 to tests/ui/mir/inliner-double-elaborate * Move issue-50411 to tests/ui/mir/inliner-double-elaborate * Addded the link for the issue to inliner-double-elaborate.rs * Fix tidy issues * Renamed to inliner-double-elaborate.rs
[ { "path": "tests/ui/mir/inliner-double-elaborate.rs", "patch": "@@ -1,4 +1,4 @@\n-// Regression test for #50411: the MIR inliner was causing problems\n+// Regression test for https://github.com/rust-lang/rust/issues/50411: the MIR inliner was causing problems\n // here because it would inline promoted code ...
2026-03-25T10:13:13
nodejs/node
cdc3ca8a7ed510f111f8a98874c828919a36f79b
22a3eb00e85e91b25359ae27a22fb886d0984bfa
test: limit the concurrency of WPTRunner for RISC-V For riscv64, the most commonly supported paging mode is sv39, which allocates 256GiB of virtual address space for the user space. However, due to trap handler security mechanism in V8, creating a wasm memory will cost 8GiB of continuous virtual address space. In a fr...
[ { "path": "test/common/wpt.js", "patch": "@@ -533,6 +533,14 @@ const limit = (concurrency) => {\n \n class WPTRunner {\n constructor(path, { concurrency = os.availableParallelism() - 1 || 1 } = {}) {\n+ // RISC-V has very limited virtual address space in the currently common\n+ // sv39 mode, in whic...
2025-11-11T14:57:29
vercel/next.js
0a2bdd7fbf743fc080db184922565dfa74b23cf4
4f5da820804ec909d787149754f239ef634613a4
Handle null history.state in client-side router popstate handler (#90083) ### What? Handle `null` `history.state` in the client-side router's `popstate` handler. ### Why? When `pushState` or `replaceState` is called outside of Next.js with a `null` state (or the initial history entry has no state), navigating back/...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -362,7 +362,11 @@ function Router({\n */\n const onPopState = (event: PopStateEvent) => {\n if (!event.state) {\n- // TODO-APP: this case only happens when pushState/replaceState was called outside of Next.js....
2026-02-18T09:26:34
golang/go
cce3fea08f8b2509b7651ee552111a8cc763a459
3b2a451cef467e42e41552cf490498d3bf39df29
internal/poll: move buffer pinning inside execIO This is a step towards deferring adding the handle to IOCP until the first IO operation. The goal of this CL is to avoid the fd.isBlocking check in fd.pin, which was happening outside execIO, and making buffer pinning less error-prone. This also fixes an issue where b...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -232,27 +232,10 @@ func (fd *FD) waitIO(o *operation) error {\n \treturn err\n }\n \n-// pin pins ptr for the duration of the IO operation.\n-// If fd is in blocking mode, pin does nothing.\n-func (fd *FD) pin(mode int, ptr any) {\n-\tif fd.isBlockin...
2026-01-30T13:29:58
facebook/react
0c89b160f6382814aa02cc469a80f59c720ab6bb
87a45ae37f4014b6df548a5d9b06bad5dc557992
[Flight] Add DebugInfo for Bundler Chunks (#34226) This adds a "suspended by" row for each chunk that is referenced from a client reference. So when you select a client component, you can see what bundles will block that client component when loading on the client. This is only done in the browser build since if we a...
[ { "path": ".eslintrc.js", "patch": "@@ -468,6 +468,7 @@ module.exports = {\n files: ['packages/react-server-dom-webpack/**/*.js'],\n globals: {\n __webpack_chunk_load__: 'readonly',\n+ __webpack_get_script_filename__: 'readonly',\n __webpack_require__: 'readonly',\n ...
2025-08-18T15:34:00
electron/electron
471a14432fa1dcae52e1716396521607a59ecd92
676406c9e6664ad94c818475249442100b068bf7
chore: bump chromium to 143.0.7469.0 (main) (#48548) * chore: bump chromium in DEPS to 143.0.7469.0 * 7021651: [//gpu] Fold handle creation into D3DImageBackingFactory Refs https://chromium-review.googlesource.com/c/chromium/src/+/7021651 * 7013047: Fix various C++23 build errors in //chrome Refs https://chromium-...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7451.0',\n+ '143.0.7469.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "filenames.libcxx.gni", "patch...
2025-10-15T21:10:10
rust-lang/rust
11a338deb6884f72f3d3558d810e9b025de23167
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
Fix nested zero-args delegation ICE
[ { "path": "compiler/rustc_ast_lowering/src/delegation.rs", "patch": "@@ -432,6 +432,17 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n args.push(arg);\n }\n \n+ // If we have no params in signature function but user still wrote some code...
2026-03-25T09:08:31
nodejs/node
22a3eb00e85e91b25359ae27a22fb886d0984bfa
96f7a2be44182ce622d2b6aa28a105a16d3c7470
test: fix test-strace-openat-openssl for RISC-V Recent architectures like RISC-V does not support open syscall, which will cause strace to fail and thus test failure. AssertionError [ERR_ASSERTION]: strace: invalid system call 'open' This patch disables tracing open syscall for RISC-V in the test to fix the test...
[ { "path": "test/parallel/test-strace-openat-openssl.js", "patch": "@@ -19,9 +19,13 @@ if (spawnSync('strace').error !== undefined) {\n const allowedOpenCalls = new Set([\n '/etc/ssl/openssl.cnf',\n ]);\n+ const syscalls = ['openat'];\n+ if (process.arch !== 'riscv64' && process.arch !== 'riscv32')...
2025-11-11T12:54:04
vercel/next.js
4f5da820804ec909d787149754f239ef634613a4
2a2b7b175deac9b0241a378113d16be50a70c489
segment cache: fix segment cache normalizer (#90111) This fixes an issue where deploying an app that explicitly named a catch-all segments as `[...segments]` or `[[...segments]]` would lead to repeated ISR cache misses on that route, even if it was generated at build time. This is because the normalizer that is respo...
[ { "path": "packages/next/src/server/normalizers/request/segment-prefix-rsc.test.ts", "patch": "@@ -9,4 +9,28 @@ describe('SegmentPrefixRSCPathnameNormalizer', () => {\n segmentPath: '/_tree',\n })\n })\n+\n+ it('should extract segment prefetch paths for catch-all params named segments', () => {...
2026-02-18T06:35:40
facebook/react
87a45ae37f4014b6df548a5d9b06bad5dc557992
01ed0e96427328780c8da4caa93377eb9746ff08
[eslint-plugin-react-hooks][RulesOfHooks] handle React.useEffect in addition to useEffect (#34076) ## Summary This is a fix for https://github.com/facebook/react/issues/34074 ## How did you test this change? I added tests in the eslint package, and ran `yarn jest`. After adding the new tests, I have this: On main ...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7735,6 +7735,9 @@ if (__EXPERIMENTAL__) {\n useEffect(() => {\n onStuff();\n }, []);\n+ React.useEffect(() => {\n+ onStuff();\n+ }, []);\n ...
2025-08-18T13:12:49
electron/electron
357e42d90768635c032a9ddadae176d97ca978e0
9b740594fbdd0a205a1c2062c27184bb691a0b05
fix: fixed white flash on call to BrowserWindow.show (#47151)
[ { "path": "shell/browser/api/electron_api_base_window.h", "patch": "@@ -106,8 +106,8 @@ class BaseWindow : public gin_helper::TrackableObject<BaseWindow>,\n virtual void Focus();\n virtual void Blur();\n bool IsFocused() const;\n- void Show();\n- void ShowInactive();\n+ virtual void Show();\n+ vir...
2025-10-14T13:58:27
rust-lang/rust
08e064a9cb46008d72236dd83737f160afd67e99
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
add regression test for 154189 fix ci errors
[ { "path": "tests/ui/coherence/generalize-associated-type-alias.rs", "patch": "@@ -0,0 +1,22 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/154189.\n+#![feature(unboxed_closures)]\n+\n+trait ToUnit<'a> {\n+ type Unit;\n+}\n+\n+impl ToUnit<'_> for *const u32 {\n+ type Unit = ();\n+...
2026-03-25T07:48:57
golang/go
f14d8975a21e24aa33e0b496e822fdcb285879b9
35c5deb1d43b245c19059d1532929ee087e44a84
runtime: align end of systemstack_switch prologue on amd64 for consistency with gosave_systemstack_switch gosave_systemstack_switch saves PC with fixed offset of 8 bytes from systemstack_switch to bypass prologue. This commit makes this offset consistent with actual address of UNDEF instruction intended to be at that ...
[ { "path": "src/runtime/asm_amd64.s", "patch": "@@ -510,6 +510,8 @@ goodm:\n // The frame layout needs to match systemstack\n // so that it can pretend to be systemstack_switch.\n TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0\n+\t// Align for consistency with offset used in gosave_systemstack_switch\n+\...
2026-01-29T18:12:49
nodejs/node
96f7a2be44182ce622d2b6aa28a105a16d3c7470
ea1a240633b5834c0ba375d1c46e9d88c6997594
deps: V8: backport 2e4c5cf9b112 Original commit message: remove ppc and s390 from the host_arch list We only support ppc64 and s390x. Same changes is applied to depot_tools: http://crrev.com/c/7100932 Change-Id: I1e4b660a1e46d1c609189301e8fd977fb7434748 Reviewed-on: https://chromium-review.g...
[ { "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...
2025-11-11T12:18:04
vercel/next.js
91f2f354b2c9ece2e1f47e069f421a850976f5ec
86c3d3ee26980f70294e4cd857db312c01983e4f
refactor: fix non-determinism in resolve package (#90058) Defer cell creation so it doesn't happen inside of async loops There are a number of async functions in the resolve package that either directly construct ResolveResult or defer to a turbo task function, this leads to non-determinism when callers invoke these ...
[ { "path": "crates/next-core/src/next_edge/unsupported.rs", "patch": "@@ -52,7 +52,10 @@ impl ImportMappingReplacement for NextEdgeUnsupportedModuleReplacer {\n unsupported_module_source(lookup_path.root().owned().await?, module.clone())\n .to_resolved()\n ...
2026-02-18T01:33:25
rust-lang/rust
86aac98cfcc709b989d1355e48d6210dac5b2b08
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
install-template.sh: Optimize by using Bourne shell builtins. This replaces forking separate processes and using "cut" with Bourne shell builtin operations for "remove largest suffix pattern" and "remove smallest prefix pattern" operations.
[ { "path": "src/tools/rust-installer/install-template.sh", "patch": "@@ -433,8 +433,8 @@ uninstall_components() {\n local _directive\n while read _directive; do\n \n- local _command=`echo $_directive | cut -f1 -d:`\n- local _file=`echo $_directive | cut -f2 -d:`\...
2026-03-25T07:30:12