repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 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 |
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 |
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 |
rust-lang/rust | daad0fb3566048becf39b466a87bdbe2fd300960 | e492d022858076a414ad42139e05cb43e0d238b6 | fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops
fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops | [
{
"path": "clippy_lints/src/loops/explicit_counter_loop.rs",
"patch": "@@ -2,6 +2,7 @@ use std::borrow::Cow;\n \n use super::{EXPLICIT_COUNTER_LOOP, IncrementVisitor, InitializeVisitor, make_iterator_snippet};\n use clippy_utils::diagnostics::span_lint_and_then;\n+use clippy_utils::higher::Range;\n use clip... | 2026-03-03T12:38:44 |
facebook/react | 4082b0e7d3c042d49ef8987547b923051936956f | 6b49c449b6d32dcfb846559fd422ff67055b8923 | [compiler] Detect known incompatible libraries (#34027)
A few libraries are known to be incompatible with memoization, whether
manually via `useMemo()` or via React Compiler. This puts us in a tricky
situation. On the one hand, we understand that these libraries were
developed prior to our documenting the [Rules of
Re... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -36,6 +36,14 @@ export enum ErrorSeverity {\n * memoization.\n */\n CannotPreserveMemoization = 'CannotPreserveMemoization',\n+ /**\n+ * An API that is known to be incompatible with the compiler. Generall... | 2025-08-28T23:21:15 |
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 | 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 | 074ba4a953f124126b351277711560daa11d558e | e5d04e9866c3714ee046a2fd4be4e3090c858a10 | [test] Improve fetch timeout error stack for `act` (#90261)
Before:
```
apiRequestContext.fetch: Request timed out after 30000ms
Call log:
- → GET http://localhost:55200/refetch-on-new-base-tree/a?_rsc=1u5ob
- <snip>
225 | // server; we pass the request to the server the immed... | [
{
"path": "test/lib/router-act.ts",
"patch": "@@ -224,9 +224,18 @@ export function createRouterAct(\n // but it should not affect the timing of when requests reach the\n // server; we pass the request to the server the immediately.\n result: (async () => {\n- ... | 2026-02-20T21:02:16 |
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 |
facebook/react | 6b49c449b6d32dcfb846559fd422ff67055b8923 | 872b4fef6ded18aa9bda5f7729340384a914ba7b | Update Code Sandbox CI to Node 20 to Match .nvmrc (#34329)
## Summary
Update the CodeSandbox CI configuration to use Node 20 instead of Node
18, so that it matches the Node version specified in .nvmrc. This
ensures consistency between local development environments and CI
builds, reducing the risk of version-related b... | [
{
"path": ".codesandbox/ci.json",
"patch": "@@ -1,7 +1,7 @@\n {\n \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/react-server-dom-webpack\", \"packages/scheduler\"],\n \"buildCommand\": \"download-build-in-codesandbox-ci\",\n- \"node\": \"18\",\n+ \"node\": \"20\",\n \"publish... | 2025-08-28T22:33:12 |
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 |
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 |
rust-lang/rust | 298c251f9178dc39768356a9a90f4853134a7dde | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | large_enums mir pass: fix is_enabled logic | [
{
"path": "compiler/rustc_mir_transform/src/large_enums.rs",
"patch": "@@ -32,8 +32,8 @@ impl<'tcx> crate::MirPass<'tcx> for EnumSizeOpt {\n fn is_enabled(&self, sess: &Session) -> bool {\n // There are some differences in behavior on wasm and ARM that are not properly\n // understood, s... | 2026-03-25T15:33:59 |
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 | 8d7b5e490320732f40d9c3aa4590b5b0ae5116f5 | 3434ff4f4b89ad9388c6109312ef95c14652ae21 | [compiler] Show a ref name hint when assigning to non-ref in a callback (#34298)
In #34125 I added a hint where if you assign to the .current property of
a frozen object, we suggest naming the variable as `ref` or `-Ref`.
However, the tracking for mutations that assign to .current specifically
wasn't propagated past f... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts",
"patch": "@@ -984,7 +984,7 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n case 'MutateConditionally':\n case 'MutateTransitive':\n case 'MutateTransitiveConditionally': {\n- return `${... | 2025-08-28T00:05:44 |
vercel/next.js | 8f231d6380699d60a62fdd4f110f69b0bbbffee2 | 77cd1afab7fa88d27c17eb89d5f512ba6521fbc7 | [instant] Include declaration location of instant config in validation errors (#90169) | [
{
"path": "crates/next-core/src/next_server/transforms.rs",
"patch": "@@ -12,10 +12,11 @@ use crate::{\n next_config::NextConfig,\n next_server::context::ServerContextType,\n next_shared::transforms::{\n- get_next_dynamic_transform_rule, get_next_font_transform_rule, get_next_image_rule,\... | 2026-02-20T19:31:53 |
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 |
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 |
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 |
facebook/react | 3434ff4f4b89ad9388c6109312ef95c14652ae21 | bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55 | Add scrollIntoView to fragment instances (#32814)
This adds `experimental_scrollIntoView(alignToTop)`. It doesn't yet
support `scrollIntoView(options)`.
Cases:
- No host children: Without host children, we represent the virtual
space of the Fragment by attempting to scroll to the nearest edge by
using its siblings. I... | [
{
"path": "fixtures/dom/src/components/fixtures/fragment-refs/FocusCase.js",
"patch": "@@ -3,7 +3,7 @@ import Fixture from '../../Fixture';\n \n const React = window.React;\n \n-const {Fragment, useEffect, useRef, useState} = React;\n+const {Fragment, useRef} = React;\n \n export default function FocusCase(... | 2025-08-27T22:05:57 |
vercel/next.js | 468de5d1bbe6d9493799541806a5d7726838a5a8 | a6d950a4450f81bc09dcbf755f305c2d54a5b6d3 | Remove workStore from params/searchParams/pathname function signatures (#90215)
`workStore` is a request-scoped value available via
`workAsyncStorage.getStore()` anywhere during rendering. Threading it as
an explicit parameter was originally done to enforce that these
functions are only callable within a valid work sc... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1065,5 +1065,6 @@\n \"1064\": \"createServerParamsForRoute should not be called in client contexts.\",\n \"1065\": \"createServerPathnameForMetadata should not be called in client contexts.\",\n \"1066\": \"createServerSearchParamsForServerPage shou... | 2026-02-20T17:39:59 |
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 | 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 |
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,
"language": "Unknown"
},
{
"path": "patche... | 2025-10-23T13:30:29 |
facebook/react | bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55 | 0a1f1fcd5080320139bb51021b4325be65d6e2bd | [compiler] Emit better error for unsupported syntax `this` (#34322) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIRBuilder.ts",
"patch": "@@ -323,6 +323,22 @@ export default class HIRBuilder {\n ],\n });\n }\n+ if (node.name === 'this') {\n+ CompilerError.throwDiagnostic({\n+ severity: ErrorSeverity.UnsupportedJS,\n+ ... | 2025-08-27T21:58:44 |
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 |
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,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/testing/synctest/77169.md",
"patch": "@@ -0,0 +1 @@\n+The new [Sleep] h... | 2026-01-28T23:04:46 |
rust-lang/rust | 91e4524bfe66a33d1a572750504cd5ac006d9b5e | 1174f784096deb8e4ba93f7e4b5ccb7bb4ba2c55 | Link from `assert_matches` to `debug_assert_matches`
This resolves a FIXME which was added in
https://github.com/rust-lang/rust/pull/151423. | [
{
"path": "library/core/src/macros/mod.rs",
"patch": "@@ -124,8 +124,6 @@ macro_rules! assert_ne {\n };\n }\n \n-// FIXME add back debug_assert_matches doc link after bootstrap.\n-\n /// Asserts that an expression matches the provided pattern.\n ///\n /// This macro is generally preferable to `assert!(m... | 2026-03-26T04:33:33 |
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 |
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 |
facebook/react | b870042915c8a7cc1524feb7e0b5cbe7453a7648 | 33a1095d724c5ad0a6238e03e04461b6df5e73e2 | [compiler] Validate against component/hook factories (#34305)
Previously, the compiler would incorrectly attempt to compile nested
components/hooks defined inside non-React functions. This would lead to
scope reference errors at runtime because the compiler would optimize
the nested React function without understandin... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -541,6 +541,9 @@ export enum ErrorCategory {\n // Checking for valid usage of manual memoization\n UseMemo = 'UseMemo',\n \n+ // Checking for higher order functions acting as factories for components/hooks\n+ ... | 2025-08-27T17:59:26 |
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 |
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 |
rust-lang/rust | a7331929804d44db4ec13206477f3a2df558b891 | 80d0e4be6f15899649ba31669077c59a986f96cc | Make `rustc_hir_analysis` not depend on `rustc_lint`.
`rustc_hir_analysis` depends on `rustc_lint` in just a single function:
`emit_delayed_lint`, which is used by the
"emit_ast_lowering_delayed_lints" checking section within
`rustc_hir_analysis::check_crate`.
This commit moves that function and section to out of
`ru... | [
{
"path": "Cargo.lock",
"patch": "@@ -4021,7 +4021,6 @@ dependencies = [\n \"rustc_hir\",\n \"rustc_index\",\n \"rustc_infer\",\n- \"rustc_lint\",\n \"rustc_lint_defs\",\n \"rustc_macros\",\n \"rustc_middle\",",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "co... | 2026-03-24T19:58: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 |
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 | 33a1095d724c5ad0a6238e03e04461b6df5e73e2 | 213594860f456850bd615fcf08c0f0da25a998c5 | [compiler] Infer render helpers for additional validation (#33647)
We currently assume that any functions passes as props may be event
handlers or effect functions, and thus don't check for side effects such
as mutating globals. However, if a prop is a function that returns JSX
that is a sure sign that it's actually a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts",
"patch": "@@ -880,7 +880,8 @@ export function printType(type: Type): string {\n if (type.kind === 'Object' && type.shapeId != null) {\n return `:T${type.kind}<${type.shapeId}>`;\n } else if (type.kind === 'Function' && ty... | 2025-08-27T15:44:09 |
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 |
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 |
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 |
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 |
facebook/react | 9c2e2b8475fb9d55fe47f55b007fba2d474e06f4 | 4123f6b771bb71a2831b1c450c385c38530125a0 | [Flight] Don't drop debug info if there's only a readable debug channel (#34304)
When the Flight Client is waiting for pending debug chunks, it drops the
debug info if there is no writable side of the debug channel defined.
However, it should instead check if there's no readable side defined.
Fixing this is not only ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -341,6 +341,11 @@ export type FindSourceMapURLCallback = (\n \n export type DebugChannelCallback = (message: string) => void;\n \n+export type DebugChannel = {\n+ hasReadable: boolean,\n+ callback: DebugChannelCallback | null,\n+};\n... | 2025-08-27T11:50:19 |
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 |
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 |
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 | 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 |
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 |
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 |
rust-lang/rust | 99e378390fd7b3f5f20af8d1dbdc55a1914a0aa1 | eb7bfb8a533840794ee113e9db0cdd26e73b7102 | fix: Correct internal error message for ptr_guaranteed_cmp shim
The missing-args branch reused the wrapping_add error string.
Assisted by an AI coding tool (see CONTRIBUTING.md). | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/mir/eval/shim.rs",
"patch": "@@ -843,7 +843,7 @@ impl<'db> Evaluator<'db> {\n // cases.\n let [lhs, rhs] = args else {\n return Err(MirEvalError::InternalError(\n- \"wrapping_add a... | 2026-03-26T01:58:04 |
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 |
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 |
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 |
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 |
golang/go | 35c5deb1d43b245c19059d1532929ee087e44a84 | afae85307206cb56851c31652bd9ae45ba60c800 | all: switch linux-ppc64 target to ELFv2 ABI
Go is only capable of producing internally linked, static binaries
on linux-ppc64. As such, binaries should run in either ELFv1 or
ELFv2 ppc64 userspaces today.
This opens the door to enabling cgo and external linking which
will require ELFv2 support and userspace, eventual... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -178,14 +178,7 @@ func Elfinit(ctxt *Link) {\n \n \tswitch ctxt.Arch.Family {\n \t// 64-bit architectures\n-\tcase sys.PPC64, sys.S390X:\n-\t\tif ctxt.Arch.ByteOrder == binary.BigEndian && ctxt.HeadType != objabi.Hopenbsd {\n-\t\t\tehdr.Flags = 1 // ... | 2026-01-07T19:48:53 |
rust-lang/rust | ecdb237fd5423452c80f926d32311fc6afda829d | eb7bfb8a533840794ee113e9db0cdd26e73b7102 | fix: Correct type_or_const param index bound in debug_assert
local_id is used as an index into type/const params; valid indices are
0..len_type_or_consts(). The previous <= check incorrectly allowed idx == len.
Assisted by an AI coding tool (see CONTRIBUTING.md). | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/generics.rs",
"patch": "@@ -185,7 +185,7 @@ impl Generics {\n if param.parent == self.def {\n let idx = param.local_id.into_raw().into_u32() as usize;\n debug_assert!(\n- idx <= self.params.len_type_or_consts... | 2026-03-26T01:56:37 |
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 |
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 |
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 |
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 | bae9486d07706bcc216961f504e75d1fb5c5aec8 | c08f6a5b2651b2ce4a9510952fb88739719fe5a4 | cmd/compile/internal/bloop: avoid extraneous heap allocs in b.Loop body due to autotmp variable scope
The motivating example I created for #73137 still seems
to heap allocate in go1.26rc2 when used in a b.Loop body.
│ go1.25 │ go1.26rc2 │
│ allocs... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -155,6 +155,10 @@ func preserveCallResults(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n \n \tassign := typecheck.AssignExpr(ir.NewAssignListStmt(call.Pos(), ir.OAS2, lhs, ir.Nodes{call})).(*ir.AssignListStmt)\n \tassign.Def = true\n+\tfor _... | 2026-01-23T20:59:40 |
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 |
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 |
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,
"language": "Unknown"
},
{
"path": "patche... | 2025-10-17T17:04:24 |
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 |
golang/go | c08f6a5b2651b2ce4a9510952fb88739719fe5a4 | 14a4cb13e389d8dbc1ba3ba0097e208f1436a22a | cmd/link: put type:* at the start of the type descriptors
That used to happen naturally because the symbol had zero size.
After CL 724261 we need to force it.
Fixes #77372
Change-Id: Ia8eef989bc9cbad5459b60ff6535136e7e0c6cab
Reviewed-on: https://go-review.googlesource.com/c/go/+/740400
Reviewed-by: Keith Randall <kh... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2395,6 +2395,9 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t// sorted by type string. The reflect package will use\n \t\t// this to ensure that type descriptor pointers are unique.\n \n+\t\t// We define ... | 2026-01-29T22:50:05 |
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 | 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 |
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 |
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 |
golang/go | 14a4cb13e389d8dbc1ba3ba0097e208f1436a22a | ee7a2119ac17ea2a6bbf12b4c8001bf39c388166 | cmd/compile: make prove use non-equality in subtraction for a stronger bound
Given:
s := /* slice */
k := /* proved valid index in s (0 <= k < len(s)) */
v := s[k:]
len(v) >= 1, so v[0] needs no bounds check. However, for
len(v) = len(s) - k, we only checked if len(s) >= k and so could only
prove len(v) >= 0, t... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2187,24 +2187,22 @@ func (ft *factsTable) detectSubRelations(v *Value) {\n \t\treturn // x-y might overflow\n \t}\n \n-\t// Subtracting a positive number only makes\n-\t// things smaller.\n-\tif yLim.min >= 0 {\n+\t// Subtracting a positive no... | 2026-01-29T19:45:27 |
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 | 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 |
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 | 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 |
golang/go | ee7a2119ac17ea2a6bbf12b4c8001bf39c388166 | 48788436b8c9a87d056e52cf90d493940b610b4d | cmd/link: remove AIX special case for first type descriptor
It doesn't seem to be necessary, and removing it seems cleaner
than adding an AIX case to the code in runtime.moduleTypelinks.
Fixes #77365
Change-Id: I59fa56abf42e18017bd112481ea09d0cca47d105
Reviewed-on: https://go-review.googlesource.com/c/go/+/740220
Re... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2182,7 +2182,7 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \tcreateRelroSect := func(name string, symn sym.SymKind) *sym.Section {\n \t\tsect := state.allocateNamedDataSection(segRelro, genrelrosecname(name), []sym.SymKind{sym... | 2026-01-29T08:51:32 |
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 |
golang/go | 48788436b8c9a87d056e52cf90d493940b610b4d | 5593ea463498dce06a1b52dce2918912a9db6c4e | go/token: simplify fixOffset
Each time I go to definition of this I am deeply confused
at what I am looking, so let's clean this a bit with modern Go.
Change-Id: I8f44e78f0cdde9b970388f9b98a2720e6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738341
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/go/token/position.go",
"patch": "@@ -276,26 +276,12 @@ func (f *File) AddLineColumnInfo(offset int, filename string, line, column int)\n \n // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.\n func (f *File) fixOffset(offset int) int {\n-\tswitch {\n-\tcase offset < 0... | 2026-01-23T15:12:27 |
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 |
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 | 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 |
golang/go | 10ed9b6ed5ffadf16151d98a188a4242515b62e9 | 11722941452d04aa0364a5c6b60acffaa2776b1c | runtime: use smaller max align for arm32
Maybe fixes a dashboard build failure for linux/arm32 casued
by CL 724261.
This value comes from cmd/link/internal/arm/l.go (and in general,
maxAlign in cmd/link/internal/$ARCH/<something>.go).
Change-Id: I4d02cd41072da1b6ad6c7405044bd7788626b013
Reviewed-on: https://go-revie... | [
{
"path": "src/runtime/type.go",
"patch": "@@ -526,7 +526,11 @@ func moduleTypelinks(md *moduledata) []*_type {\n \tfor td < etypedesc {\n \t\t// TODO: The fact that type descriptors are aligned to\n \t\t// 0x20 does not make sense.\n-\t\ttd = alignUp(td, 0x20)\n+\t\tif GOARCH == \"arm\" {\n+\t\t\ttd = alig... | 2026-01-28T23:39:46 |
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 | 11722941452d04aa0364a5c6b60acffaa2776b1c | 2bd7f15dd7423b6817939b199cd2c8032e3b79cc | runtime, cmd/link: store type descriptor length, not end
Storing the type descriptor length lets us save a relocation.
It also avoids a problem for Darwin dynamic linking.
For #6853
Fixes #77350
Change-Id: If5c94330fe10d75690325f3d0b0658060ef3eb2d
Reviewed-on: https://go-review.googlesource.com/c/go/+/739681
Reviewe... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1535,10 +1535,6 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \ttypes.SetSize(8)\n \tldr.SetAttrSpecial(types.Sym(), false)\n \n-\tetypedesc := ldr.CreateSymForUpdate(\"runtime.etypedesc\", 0)\n-\tetypedesc.SetType(sym.STYPE)\n-\tldr.SetAttrSpecial(e... | 2026-01-28T01:34:46 |
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,
"language": "Unknown"
},
{
"path": "filena... | 2025-10-15T21:10:10 |
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 |
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 |
golang/go | 15882523a18cf7653c17e7c91aeaa1174a23702b | 3c924059e66427eface8d357adcf1566e3be847a | go/parser: use (*Scanner).End in error testing
Updates #74958
Change-Id: I43dcbff6ec828bddf157b2e6ec80df526a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738700
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "src/go/parser/error_test.go",
"patch": "@@ -81,6 +81,8 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \n \tfor {\n \t\tpos, tok, lit := s.Scan()\n+\t\tend := s.End()\n+\n \t\tswitch tok {\n \t\tcase token.EOF:\n \t\t\treturn errors\n@@ -104,13 +106,7 @@ func... | 2026-01-23T09:19:18 |
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 |
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 |
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 | 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 |
golang/go | 3c924059e66427eface8d357adcf1566e3be847a | 7f0f67195194cb07122315d5ab563eb617dbe21a | go/scanner: add End method to Scanner
Fixes #74958
Change-Id: I50ef64ae9ae6a762a7aada3d29914bae6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/738681
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "api/next/74958.txt",
"patch": "@@ -0,0 +1 @@\n+pkg go/scanner, method (*Scanner) End() token.Pos #74958",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/go/scanner/74958.md",
"patch": "@@ -0,0 +1 @@\n+The scanner now allow... | 2026-01-23T08:09:49 |
electron/electron | 9b740594fbdd0a205a1c2062c27184bb691a0b05 | 9e577ae60e884fcef0e35511b42e190e2ce3672a | fix: enable shader-f16 on windows (#48342)
* fix: Enable shader-f16 on Windows
* fix: include dxil.dll and dxcompiler.dll for windows x64 and arm64
* fix: modified to follow the chromium dawn build configuration
* fix: include dxil.dll and dxcompiler.dll for windows x86
* fix: Modified to avoid explicitly specifyi... | [
{
"path": "build/args/all.gn",
"patch": "@@ -24,10 +24,6 @@ enable_printing = true\n angle_enable_vulkan_validation_layers = false\n dawn_enable_vulkan_validation_layers = false\n \n-# Removes dxc dll's that are only used experimentally.\n-# See https://bugs.chromium.org/p/chromium/issues/detail?id=1474897\... | 2025-10-14T13:46:12 |
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 | 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 | 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 |
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 |
golang/go | 83b232b0af1bd498d3df099eb68e3b1e40df2527 | 6aef900af4eeb4a35d3ff1237a41cf3f63c56c24 | cmd/compile, simd: capture VAES instructions and fix AVX512VAES feature
The code previously filters out VAES-only instructions, this CL added
them back.
This CL added the VAES feature check following the Intel xed data:
XED_ISA_SET_VAES: vaes.7.0.ecx.9 # avx.1.0.ecx.28
This CL also found out that the... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64ops.go",
"patch": "@@ -28,16 +28,16 @@ func simdAMD64Ops(v11, v21, v2k, vkv, v2kv, v2kk, v31, v3kv, vgpv, vgp, vfpv, vf\n \t\t{name: \"VADDSUBPS128\", argLength: 2, reg: v21, asm: \"VADDSUBPS\", commutative: false, typ: \"Vec128\", resultInArg0: false},\... | 2026-01-22T17:44:32 |
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 | 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 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.