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 |
|---|---|---|---|---|---|
facebook/react | e3e5d95cc457eb1ba54431bc95604aa931fc6adf | 426a394845e3e471c020543f3560046c74549c13 | [compiler] Phase 4 (batch 1): Update validation passes to record errors on env (#35875)
Update 9 validation passes to record errors directly on fn.env instead
of
returning Result<void, CompilerError>:
- validateHooksUsage
- validateNoCapitalizedCalls (also changed throwInvalidReact to
recordError)
- validateUseMemo
- ... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -127,49 +127,49 @@ All validation passes need to record errors on the environment instead of return\n \n These passes already accumulate errors internally and return `Result<void, CompilerError>`. The change is: instead of returning the Result, ... | 2026-02-23T23:35:52 |
rust-lang/rust | 0f767084b8c562dea5a95b760cf30fb80eb6454b | cf96c5fa87f6805a382d4c6a9082c9777a404b5f | `ty::Alias` refactor: fixup all the compiler code | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/opaque_types.rs",
"patch": "@@ -219,11 +219,11 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for FindOpaqueRegion<'_, 'tcx> {\n fn visit_ty(&mut self, ty: Ty<'tcx>) -> Self::Result {\n // If we find an opaque in a local ty, then for each of its captur... | 2026-03-05T13:07:17 |
golang/go | 330aec810997f89262fa04939a00425194e94216 | 40ec033c33802cf6e1236ea8030d882338a457d5 | hash/maphash: add Hasher interface and ComparableHasher impl
Hasher is the standard interface for expressing custom hash
functions and equivalence relations for arbitrary data types.
This allows them to be used in hash-based collection types
such as a hash table (CL 612217) or a Bloom filter (CL 740440).
The Comparab... | [
{
"path": "api/next/70471.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg hash/maphash, method (ComparableHasher[$0]) Equal($0, $0) bool #70471\n+pkg hash/maphash, method (ComparableHasher[$0]) Hash(*Hash, $0) #70471\n+pkg hash/maphash, type ComparableHasher[$0 comparable] struct #70471\n+pkg hash/maphash, type Hashe... | 2025-03-12T21:12:41 |
nodejs/node | 141d9f15b2ff2860ffb0b10e730a783f587dee7c | d2be89c08158a01eb220f657952fbeb6b86fde06 | 2026-03-24, Version 24.14.1 'Krypton' (LTS)
This is a security release.
Notable changes:
build,deps,test:
* (CVE-2026-21717) test array index hash collision
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC and KMAC
http:
* (CVE-2026-21710) use null prototype for headersDistinct/tr... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,19 +41,45 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.2\">22.22.2</a></b><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.1\">22.22.1</a><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.0\">2... | 2026-03-16T17:02:03 |
vercel/next.js | 9cb2048439b8b95b6e6460d17d94d9cb1823fbef | 678a4aa9dd5a7b53c8f212011ea8107576bb400c | Ensure app-page reports stale ISR revalidation errors via onRequestError (#92282)
Note: the change is mostly whitespace. Recommend reviewing w/o
whitespace
[here](https://github.com/vercel/next.js/pull/92282/changes?w=1).
For App Router pages using time-based ISR, a stale cached response can
be returned before backgr... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -995,214 +995,317 @@ export async function handler(\n const isProduction = routeModule.isDev === false\n const didRespond = hasResolved || res.writableEnded\n \n- // skip on-demand revalidate if cache is not present and... | 2026-04-03T16:04:29 |
electron/electron | ae6b2195450b9d940a8616426ca4a2a033452bcc | c44d60cfe420dfacc311f1c1333ab4d589fc1722 | fix: outdated execution path for COM activation (#50471)
* fix: outdated execution path
* fix: use stub exe when detected | [
{
"path": "shell/browser/notifications/win/windows_toast_activator.cc",
"patch": "@@ -133,6 +133,21 @@ std::wstring GetExecutablePath() {\n return std::wstring(path, len);\n }\n \n+// Installers sometimes put the running app in a versioned subfolder and ship a\n+// stub with the same filename one director... | 2026-03-26T18:21:58 |
rust-lang/rust | f8d3c27650f668f575349ed38a1341826e9f29ba | 9602bda1dd0c1bbf5787e398385bbac81fd532f8 | rustdoc: Inherit inline attributes for declarative macros
When explicitly re-exporting a declarative macro by name, rustdoc
previously bypassed intermediate re-exports and dropped `#[doc(inline)]`
attributes, causing the macro to be incorrectly stripped if the original
definition was `#[doc(hidden)]`.
This updates `g... | [
{
"path": "src/librustdoc/clean/mod.rs",
"patch": "@@ -176,6 +176,35 @@ fn is_glob_import(tcx: TyCtxt<'_>, import_id: LocalDefId) -> bool {\n }\n }\n \n+/// Returns true if `def_id` is a macro and should be inlined.\n+pub(crate) fn macro_reexport_is_inline(\n+ tcx: TyCtxt<'_>,\n+ import_id: LocalD... | 2026-04-06T16:18:47 |
facebook/react | 426a394845e3e471c020543f3560046c74549c13 | eca778cf8bf88b2a62a5244f94a0084593ffbf14 | [compiler] Phase 2+7: Wrap pipeline passes in tryRecord for fault tolerance (#35874)
- Change runWithEnvironment/run/compileFn to return
Result<CodegenFunction, CompilerError>
- Wrap all pipeline passes in env.tryRecord() to catch and record
CompilerErrors
- Record inference pass errors via env.recordErrors() instead ... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -51,20 +51,20 @@ Add error accumulation to the `Environment` class so that any pass can record er\n \n Change `runWithEnvironment` to run all passes and check for errors at the end instead of letting exceptions propagate.\n \n-- [ ] **2.1 Change... | 2026-02-23T23:26:28 |
golang/go | 40ec033c33802cf6e1236ea8030d882338a457d5 | 4ce2612f21d2c32fc8a6f7bbd2c6c6c5b807f4fe | runtime: add sysUnreserve to undo sysReserve
This is inspired by CL 724560 by Bobby Powers, particularly their great
commit message.
When using address sanitizer with leak detection, sysReserve registers
memory regions with LSAN via lsanregisterrootregion. However, several
code paths release this memory using sysFree... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -550,7 +550,7 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \tif !ok {\n \t\t// We were unable to get the requested reservation.\n \t\t// Release what we did get and fail.\n-\t\tsysFreeOS(got, physPageSize)\n+\t\tsysUnreserve(got, physPageS... | 2026-04-02T17:17:23 |
nodejs/node | d2be89c08158a01eb220f657952fbeb6b86fde06 | 8e8b98d3aafa018f7b30cf7878bef057acf2d235 | 2026-03-24, Version 22.22.2 'Jod' (LTS)
This is a security release.
Notable changes:
build,test,deps:
* (CVE-2026-21717) test array index hash collision
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC
http:
* (CVE-2026-21710) use null prototype for headersDistinct/trailersDistinc... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,43 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.1\">25.8.1</a></b><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.0\">25.8.0</a><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V25.md#25.7.0\">25.7.0<... | 2026-03-22T16:06:18 |
vercel/next.js | 678a4aa9dd5a7b53c8f212011ea8107576bb400c | fb3ebba63d0bfb1c1e2d676ebe389d6c4535de6a | [turbopack] optimize RcStr parsing (#91773)
`RcStr` has 3 internal forms
* `INLINE` meaning it is small enough that the bytes are stored inline (7 bytes)
* `STATIC` meaning it was allocated by `rcstr!` and is stored in a `static` item somewhere
* `DYNAMIC` meaning it is stored in an `Arc`
The nice thing is that `I... | [
{
"path": "Cargo.lock",
"patch": "@@ -3638,9 +3638,9 @@ dependencies = [\n \n [[package]]\n name = \"js-sys\"\n-version = \"0.3.77\"\n+version = \"0.3.91\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f\"\n... | 2026-04-03T15:42:13 |
electron/electron | 9928c7d8285acdddd76f1a5ad86ef9ef5ea42be0 | f5bc6f7949d601e25d5470037797fbaf2fe716d0 | chore: harden GitHub Actions against script injection patterns (#50512)
* fix: harden GitHub Actions against script injection vulnerabilities
Replace direct ${{ }} expression interpolation in run: blocks with
environment variables to prevent script injection attacks. Changes:
- archaeologist-dig.yml: move clone_url,... | [
{
"path": ".github/actions/cipd-install/action.yml",
"patch": "@@ -22,30 +22,50 @@ runs:\n steps:\n - name: Delete wrong ${{ inputs.dependency }}\n shell: bash\n+ env:\n+ CIPD_ROOT_PREFIX: ${{ inputs.cipd-root-prefix-path }}\n+ INSTALLATION_DIR: ${{ inputs.installation-dir }}\... | 2026-03-26T14:02:50 |
facebook/react | eca778cf8bf88b2a62a5244f94a0084593ffbf14 | 0dbb43bc57d27a79ecf4c78508089a36bd08ef5d | [compiler] Phase 1: Add error accumulation infrastructure to Environment (#35873)
Add error accumulation methods to the Environment class:
- #errors field to accumulate CompilerErrors across passes
- recordError() to record a single diagnostic (throws if Invariant)
- recordErrors() to record all diagnostics from a Com... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -31,7 +31,7 @@ Note that some errors may continue to cause an eager bailout:\n \n Add error accumulation to the `Environment` class so that any pass can record errors during compilation without halting.\n \n-- [ ] **1.1 Add error accumulator to ... | 2026-02-23T23:18:23 |
golang/go | 78d5260426899e934a4d680910b1484953e78087 | ef90a565b50af191c4f20b62770b084d6978a88d | runtime: use asmcgocall_no_g in libInit
libInit runs before rt0_go, which is where TLS setup occurs. Thus the
contents of the TLS may not be defined, so the g lookup in asmcgocall is
not safe.
Concretely, android-386 c-shared builds crash without this change
because asmcgocall reads an invalid non-zero g from the TLS... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -568,6 +568,15 @@ nosave:\n \tMOVW\tR4, ret+16(FP)\n \tRET\n \n+// func asmcgocall_no_g(fn, arg unsafe.Pointer)\n+// Call fn(arg) aligned appropriately for the gcc ABI.\n+// Called on a system stack, and there may be no g yet.\n+TEXT ·asmcgocall_no_g(SB),N... | 2026-03-31T20:34:59 |
nodejs/node | 02104c08bbf5bcb3bbd94541bb62fe2dc0e97cb7 | a98d9f6ad79661c4c33d4274346716dc7d95c6e7 | doc: fix overstated Date header requirement in response.sendDate
The docs stated "HTTP requires the Date header in responses" which
oversimplifies the actual requirement. Per RFC 9110 Section 6.6.1,
the Date header is required only in most responses (2xx/3xx/4xx from
servers with a clock), not all. Reference the speci... | [
{
"path": "doc/api/http.md",
"patch": "@@ -2319,8 +2319,8 @@ added: v0.7.5\n When true, the Date header will be automatically generated and sent in\n the response if it is not already present in the headers. Defaults to true.\n \n-This should only be disabled for testing; HTTP requires the Date header\n-in ... | 2026-03-24T10:49:30 |
vercel/next.js | 41839289de02d7f426fff0d0b9922b646c7afe31 | be3ee02b83756b9b24c07464b94e5fb687e8b1c8 | Add MCP `get_compilation_issues` tool and NAPI method (#92062)
### What?
Adds a new \`get_compilation_issues\` MCP tool (and the underlying
\`projectGetAllCompilationIssues\` NAPI method) that returns all
compilation issues from all routes in a single call.
**New files:**
- \`crates/next-napi-bindings/src/next_api/p... | [
{
"path": ".config/eslintignore.mjs",
"patch": "@@ -47,6 +47,7 @@ export default globalIgnores([\n 'examples/with-typescript-graphql/lib/gql/',\n 'test/development/basic/hmr/components/parse-error.js',\n 'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',\n+ 'test/develo... | 2026-04-03T12:38:44 |
electron/electron | f5bc6f7949d601e25d5470037797fbaf2fe716d0 | a839fb94aa9f56e865857e3b853d4a62f4d93144 | ci: fix variable name when downloading previous object checkusms (#50510) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -52,7 +52,7 @@ runs:\n if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') && inputs.is-asan != 'true' }}\n with:\n name: object_checksums_${{ inputs.artifact-platform }}_${{ inputs.target-arch }... | 2026-03-26T13:31:30 |
facebook/react | 0dbb43bc57d27a79ecf4c78508089a36bd08ef5d | 8b6b11f703a1f92dd2bb2e0e3b93a1836dc06de6 | [compiler] Add fault tolerance plan document (#35872)
Add detailed plan for making the React Compiler fault-tolerant by
accumulating errors across all passes instead of stopping at the first
error. This enables reporting multiple compilation errors at once.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapli... | [
{
"path": "compiler/fault-tolerance-overview.md",
"patch": "@@ -0,0 +1,320 @@\n+## React Compiler Fault Tolerance\n+\n+Update React Compiler (@compiler/ directory) to always run all passes and return either the transformed code (if no error) or a list of one or more compilation errors. \n+\n+## Background\n... | 2026-02-23T23:15:29 |
golang/go | 7bbb5a8ec139cce0d126d00de16b167c2512ca1b | affadc7997466dfacad5b9a3dc90ee5e7a7b6085 | io/fs: fix godoc to refer to the 'fsys' arg
Fix godoc for package io/fs functions where 'fs' is mentioned instead of
the 'fsys' argument. This allows to more clearly distinguish references
to the methods of that argument from functions of the io/fs package.
Change-Id: I18674940e59dcf4501f46ee48f94fc58948df28c
Reviewe... | [
{
"path": "src/io/fs/glob.go",
"patch": "@@ -27,7 +27,7 @@ type GlobFS interface {\n // The only possible returned error is [path.ErrBadPattern], reporting that\n // the pattern is malformed.\n //\n-// If fs implements [GlobFS], Glob calls fs.Glob.\n+// If fsys implements [GlobFS], Glob calls fsys.Glob.\n /... | 2026-03-16T09:15:53 |
nodejs/node | 7f8019e3233f61efde5b76a5423475ef2f6e3a90 | 2263b4d6f1dbb8c9355184899e4970359aa8ab13 | doc: fix guaranteed typo
PR-URL: https://github.com/nodejs/node/pull/62374
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -4074,7 +4074,7 @@ that run in libuv's threadpool will experience degraded performance. In order to\n mitigate this issue, one potential solution is to increase the size of libuv's\n threadpool by setting the `'UV_THREADPOOL_SIZE'` environment variable to a value\n g... | 2026-03-23T19:39:10 |
vercel/next.js | be3ee02b83756b9b24c07464b94e5fb687e8b1c8 | cc79ef8cda9725008aacc9071aed423a584253d4 | turbo-tasks-backend: stability fixes for task cancellation and error handling (#92254)
### What?
Bug fixes and a refactoring in `turbo-tasks-backend` targeting stability
issues that surface when filesystem caching is enabled:
1. **Preserve `cell_type_max_index` on task error** — when a task fails
partway through exe... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -55,10 +55,10 @@ use crate::{\n backend::{\n operation::{\n AggregationUpdateJob, AggregationUpdateQueue, ChildExecuteContext,\n- CleanupOldEdgesOperation, ComputeDirtyAndCleanUpdate, Connect... | 2026-04-03T08:05:17 |
electron/electron | a839fb94aa9f56e865857e3b853d4a62f4d93144 | 2e2c56adde6652c9a80655ac1267ea0755f910fa | fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM (#50377)
* fix: fire AXMenuOpened event when a visible ARIA menu instance is added to the DOM
* fix: remove redundent FireMenuPopupEndForDeletedMenus
MENU_POPUP_END for deleted menus is already handled by
AXTreeManager::OnNodeWillBeDeleted, which
fir... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -148,3 +148,4 @@ feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_after_didruntask.patch\n fix_pulseaudio_stream_and_icon_names.pa... | 2026-03-25T21:33:49 |
golang/go | 238d7bddeba8436ff6eea8f9216978afb7d6e7cc | 9301a3eab246d3ddb49415cfd892c00382189264 | go/types, types2: in range-over-func, the yield function cannot be variadic
Fixes #78483.
For #78314.
Change-Id: If83983c0bf79840aa02dc0d2fa8945f5e8b4e969
Reviewed-on: https://go-review.googlesource.com/c/go/+/761682
Auto-Submit: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec... | [
{
"path": "src/cmd/compile/internal/types2/range.go",
"patch": "@@ -240,6 +240,7 @@ func rangeKeyVal(check *Checker, orig Type, allowVersion func(goVersion) bool) (\n \t\t\treturn bad(\"requires go1.23 or later\")\n \t\t}\n \t\t// check iterator arity\n+\t\t// TODO(gri) error messages could be less verbose ... | 2026-03-31T22:38:36 |
facebook/react | 8b6b11f703a1f92dd2bb2e0e3b93a1836dc06de6 | ab18f33d46171ed1963ae1ac955c5110bb1eb199 | [compiler] Remove fallback compilation pipeline dead code (#35827)
Remove dead code left behind after the removal of retryCompileFunction,
enableFire, and inferEffectDependencies:
- Delete ValidateNoUntransformedReferences.ts (always a no-op)
- Remove CompileProgramMetadata type and retryErrors from ProgramContext
- R... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -11,7 +11,6 @@ import {\n injectReanimatedFlag,\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n-import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedRefe... | 2026-02-23T16:54:49 |
electron/electron | 678adeaf7c3f31405e7b271c0e8f84eacdd414c9 | 1d14694dec0b02f73c18a9c1b4d95b3a777563f4 | fix: crash calling OSR shared texture release() after texture GC'd (#50473)
The weak persistent tracking the OffscreenReleaseHolderMonitor was tied
to the texture object, but the release() closure holds a raw pointer to
the monitor via its v8::External data. If JS retained texture.release
while dropping the texture it... | [
{
"path": "shell/common/gin_converters/osr_converter.cc",
"patch": "@@ -155,9 +155,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent ref... | 2026-03-25T17:48:41 |
vercel/next.js | c06658e9199bccc10de1daf24cf7fe542c5ee13a | e464ca398c5992c4ec9fb23192fc60ef7b1b5f94 | fix: preserve HTTP access fallbacks during prerender recovery (#92231)
When a `notFound()`, `forbidden()`, or `unauthorized()` error escapes
into the outer prerender recovery path, we were falling back to the
generic error shell flow.
In the `cacheComponents` case, that could leave us with:
- error HTML rendered from... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -113,7 +113,11 @@ import {\n walkTreeWithFlightRouterState,\n createFullTreeFlightDataForNavigation,\n } from './walk-tree-with-flight-router-state'\n-import { createComponentTree, getRootParams } from './create-component-tree'... | 2026-04-02T14:54:11 |
nodejs/node | 22fc52bda16b8cb08d4e7fdf1bb4a693bb5de2db | 61102cdbb3d59155ad5bb4fc9419627a31e63f7a | doc: remove spawn with shell example from bat/cmd section
Remove the suggestion to use child_process.spawn() with the shell
option set for running .bat and .cmd files on Windows. Passing
arguments through spawn with shell: true is deprecated (DEP0190)
due to shell injection risks. Keep the exec() and direct cmd.exe
sp... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -120,23 +120,19 @@ however, `.bat` and `.cmd` files are not executable on their own without a\n terminal, and therefore cannot be launched using [`child_process.execFile()`][].\n When running on Windows, `.bat` and `.cmd` files can be invoked by:\n \n-* usi... | 2026-03-23T09:49:36 |
golang/go | 9301a3eab246d3ddb49415cfd892c00382189264 | 0dcd7ab1b9658183d52ccadf9135834fdd57e2ba | runtime: rename _mkmalloc's module to avoid GOROOT conflict
Often we want to run _mkmalloc using a different toolchain. The
previous module path runtime/_mkmalloc would produce an ambiguous import
path error because the directory runtime/_mkmalloc exists in a Go 1.26+
toolchain. Rename the module to avoid the conflict... | [
{
"path": "src/runtime/_mkmalloc/go.mod",
"patch": "@@ -1,4 +1,4 @@\n-module runtime/_mkmalloc\n+module _mkmalloc\n \n go 1.24\n ",
"additions": 1,
"deletions": 1
}
] | 2026-04-01T16:47:25 |
electron/electron | a48f03fb8d03933547281ddb2dbb6c6b9e705287 | f6b43cb0efe2f763631c9d0609ecaa92c62635a6 | fix: crash in clipboard.readImage() on malformed image data (#50475)
gfx::PNGCodec::Decode() returns a null SkBitmap when it fails to decode
the clipboard contents as a PNG. Passing that null bitmap to
gfx::Image::CreateFrom1xBitmap() triggers a crash.
Return an empty gfx::Image instead, matching the existing null-ch... | [
{
"path": "shell/common/api/electron_api_clipboard.cc",
"patch": "@@ -378,7 +378,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bitmap ... | 2026-03-25T17:47:00 |
facebook/react | ab18f33d46171ed1963ae1ac955c5110bb1eb199 | b16b768fbd95fff334b15d36b8f141010d68869e | Fix context propagation through suspended Suspense boundaries (#35839)
When a Suspense boundary suspends during initial mount, the primary
children's fibers are discarded because there is no current tree to
preserve them. If the suspended promise never resolves, the only way to
retry is something external like a conte... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -3991,9 +3991,23 @@ function attemptEarlyBailoutIfNoScheduledUpdate(\n // whether to retry the primary children, or to skip over it and\n // go straight to the fallback. Check the priority of the primary\n ... | 2026-02-21T03:03:11 |
nodejs/node | 61102cdbb3d59155ad5bb4fc9419627a31e63f7a | 5d900bed775e29d94336206eee1139e6f2de55c3 | doc: minor typo fix
PR-URL: https://github.com/nodejs/node/pull/62358
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongon... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -1835,10 +1835,10 @@ It does several things at once:\n \n 1. Creates a new context.\n 2. If `contextObject` is an object, [contextifies][contextified] it with the new context.\n- If `contextObject` is undefined, creates a new object and [contextifies][contextified]... | 2026-03-22T21:48:57 |
golang/go | 50f94b1dcd45b88c61d73fce2ec56cedc4c13b14 | b5b9e3cdfee825829c95205dcae3e1d528990cd9 | cmd/go/internal/doc: follow up to CL 733200
I submitted a rebased variant of the CL that dropped changes in
response to Sean Liao and Ian Alexander's comments.
Add the bug updates below and re-implement Ian's suggestion.
Fixes #34750
For #53446
For #60645
Change-Id: Ie132ac65efd27e811edabfbbb083b6946a6a6964
Reviewe... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -373,7 +373,7 @@ func parseArgs(ctx context.Context, flagSet *flag.FlagSet, args []string) (pkg *\n \t}\n \tloader := modload.NewState()\n \tif testGOPATH {\n-\t\tloader = modload.DisabledState()\n+\t\tloader = modload.NewDisabledState()\n \t}\n \tif ... | 2026-03-31T18:43:38 |
rust-lang/rust | 34e410075de78c681c870580a0f3eb6452150d02 | 00ffc137db5ae977575fb47fd06f60d5c5139491 | fix(bootstrap): also unset MFLAGS when fifo jobserver not present
CI jobs were sometimes hanging because cargo would inherit the jobserver based the MFLAGS
environment variable when it contained file descriptors. However, these FDs were not
valid, since bootstrap.py does not pass them through from make.
This leads ca... | [
{
"path": "src/bootstrap/src/core/builder/cargo.rs",
"patch": "@@ -566,6 +566,7 @@ impl Builder<'_> {\n \n if !has_modern_jobserver {\n cargo.env_remove(\"MAKEFLAGS\");\n+ cargo.env_remove(\"MFLAGS\");\n }\n \n cargo",
"additions": 1,
"deletions": 0
}... | 2026-04-06T19:30:34 |
electron/electron | f6b43cb0efe2f763631c9d0609ecaa92c62635a6 | 7451d560ba5f65729d28d77d83f3f38ee3f62133 | fix: fall back to default DPI when GTK returns 0 on Linux (#50453)
GetDefaultPrinterDPI() creates a blank GtkPrintSettings and reads
its resolution, which returns 0 for uninitialized settings. With
DPI=0, SetPrintableAreaIfValid() computes a zero scale factor,
producing empty page dimensions that fail PrintMsgPrintPar... | [
{
"path": "shell/browser/printing/printing_utils.cc",
"patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print_set... | 2026-03-25T17:37:40 |
facebook/react | 2ba3065527cbabc9778363e78a411653cd4cd215 | 38cd020c1fb8a1e88b7852160796f411926a6fac | [Flight] Add support for transporting `Error.cause` (#35810) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -8,6 +8,7 @@\n */\n \n import type {\n+ JSONValue,\n Thenable,\n ReactDebugInfo,\n ReactDebugInfoEntry,\n@@ -132,14 +133,6 @@ interface FlightStreamController {\n \n type UninitializedModel = string;\n \n-export type JSONValue ... | 2026-02-19T23:50:34 |
nodejs/node | b2c52352541b6aa32ed86acadb15ee43fb18a150 | 052aec7127f40f8b70fc185bf6091f10a259d376 | doc: fix stray carriage return in packages.md
PR-URL: https://github.com/nodejs/node/pull/62350
Refs: https://openjs-foundation.slack.com/archives/C019Y2T6STH/p1774015976262609
Refs: https://github.com/nodejs/node/pull/62302
Refs: https://github.com/nodejs/node/actions/runs/23347139396/job/67915524762?pr=61767
Reviewe... | [
{
"path": "doc/api/packages.md",
"patch": "@@ -1012,7 +1012,7 @@ added: v0.4.0\n The `\"main\"` field defines the entry point of a package when imported by name\n via a `node_modules` lookup. Its value is a path.\n \n-The [`\"exports\"`][] field, if it exists, takes precedence over the\r\n+The [`\"exports\... | 2026-03-20T16:17:41 |
electron/electron | 7451d560ba5f65729d28d77d83f3f38ee3f62133 | 27edd6e21c976ef62ac81af59860dc7bad665242 | fix: register `PrintDialogLinuxFactory` on Linux (#50430)
fix: register PrintDialogLinuxFactory on Linux
Chromium 145 refactored Linux print dialog creation to use a factory
pattern instead of directly calling LinuxUi::CreatePrintDialog().
Chrome registers this factory in
ChromeBrowserMainExtraPartsViewsLinux::Toolki... | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -127,6 +127,10 @@\n #include \"shell/common/plugin_info.h\"\n #endif // BUILDFLAG(ENABLE_PLUGINS)\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n+#include \"components/printing/common/print_dialog_linux_factory.h\"\n+#endif\n+\n namespace electro... | 2026-03-25T17:37:03 |
facebook/react | 3a2bee26d23a21cfb04313372a0c0ca46101b785 | 4842fbea02c48fa5cfcb28eb6ceaec12f6f41a45 | [DevTools] Fix alignment of breadcrumbs separator (#35817) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/OwnersStack.css",
"patch": "@@ -34,6 +34,7 @@\n \n .OwnerStackFlatListContainer {\n display: inline-flex;\n+ align-items: baseline;\n }\n \n .OwnerStackFlatListSeparator {",
"additions": 1,
"deletions": 0
},
{
"path":... | 2026-02-18T18:53:49 |
vercel/next.js | e464ca398c5992c4ec9fb23192fc60ef7b1b5f94 | 3421858b5bef076965d99fd88fedc483193a496e | Fix pr-status.js: retry on API errors and report timed-out jobs (#92205)
### What?
Fixes two bugs in `scripts/pr-status.js` that caused the script to
silently report zero failures when there were actual CI failures.
### Why?
When running `node scripts/pr-status.js 92080`, the script reported "No
failed jobs found" ... | [
{
"path": "scripts/pr-status.js",
"patch": "@@ -216,15 +216,17 @@ function getRunMetadata(runId) {\n )\n }\n \n+const FAILED_CONCLUSIONS = new Set(['failure', 'timed_out', 'startup_failure'])\n+\n function getFailedJobs(runId) {\n // Fetch all jobs first, then filter for failures in JS.\n // We can't ... | 2026-04-02T11:22:13 |
nodejs/node | b328bf74bd4fba4dc13b948505a4b309c87d2258 | 4ee467f91254fdd5d9a1c328edd2e3fc5b541943 | lib,src: implement QuotaExceededError as DOMException-derived interface
Implement QuotaExceededError as a DOMException-derived interface per the
WebIDL specification update.
QuotaExceededError is now a proper constructor exposed as a global
[Exposed=*] interface that extends DOMException with optional `quota`
and `re... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -976,6 +976,14 @@ DataHandler.prototype.load = async function load(key) {\n };\n ```\n \n+## Class: `QuotaExceededError`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+The WHATWG {QuotaExceededError} class. Extends {DOMException}.\n+\n ## Class: `ReadableByteStream... | 2026-03-17T12:48:16 |
electron/electron | 27edd6e21c976ef62ac81af59860dc7bad665242 | ec3a18d438d795a48174c1035130a08fc6462705 | fix: pulseaudio stream and icon names (#49270)
Use platform_util::GetXdgAppId() with fallback to argv0 as PA_PROP_APPLICATION_ICON_NAME.
Use electron::GetPossiblyOverriddenApplicationName()
to set environment variable "ELECTRON_PA_APP_NAME" in audio_service.cc,
to use it in pulse_util.cc for setting input/output pa_co... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -147,3 +147,4 @@ fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_after_d... | 2026-03-25T17:25:44 |
facebook/react | 4842fbea02c48fa5cfcb28eb6ceaec12f6f41a45 | 61db53c179a80a40beec3cc220da05bfdbb02efd | [react-dom] Add support for `onFullscreenChange` and `onFullscreenError` events (#34621) | [
{
"path": "packages/react-dom-bindings/src/events/DOMEventNames.js",
"patch": "@@ -51,6 +51,7 @@ export type DOMEventName =\n | 'focusin'\n | 'focusout'\n | 'fullscreenchange'\n+ | 'fullscreenerror'\n | 'gotpointercapture'\n | 'hashchange'\n | 'input'",
"additions": 1,
"deletions": 0
... | 2026-02-18T01:34:16 |
golang/go | e3a10fe3749eea3d7d5f284c3a1e57479131176f | 836b0984ee0b930c02ca62f9e8801f1016c9b253 | net/http/internal/http2: prevent hanging Transport due to bad SETTINGS frame
When processing SETTINGS frame, Transport currently only checks if the
frame is valid for SETTINGS_ENABLE_CONNECT_PROTOCOL. As a result, a
SETTINGS_MAX_FRAME_SIZE with the invalid value of 0 is erroneously
accepted. This will then result in T... | [
{
"path": "src/net/http/internal/http2/transport.go",
"patch": "@@ -2836,6 +2836,9 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {\n \n \tvar seenMaxConcurrentStreams bool\n \terr := f.ForeachSetting(func(s Setting) error {\n+\t\tif err := s.Valid(); err != nil {\n+\t\t\tre... | 2026-03-31T19:02:11 |
rust-lang/rust | 4bc2a5510871ef17eaf9b7d28714f0dee4f48316 | 14ab39c42f6e990d7b41b34e1d3220ab21b6b29a | Fix diagnostic::on_const label span | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -905,7 +905,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n diag.primary_message(message);\n }\n if let Some(label) = label {\n- ... | 2026-04-06T17:01:10 |
nodejs/node | 4ee467f91254fdd5d9a1c328edd2e3fc5b541943 | 56aba88702b3a7da4a44688664ff22d8afebb267 | tools: do not swallow error in `lint-nix` workflow
PR-URL: https://github.com/nodejs/node/pull/62292
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im> | [
{
"path": ".github/workflows/linters.yml",
"patch": "@@ -154,7 +154,12 @@ jobs:\n run: |\n nix-shell -I nixpkgs=./tools/nix/pkgs.nix -p 'nixfmt-tree' --run '\n treefmt --quiet --ci\n- ' || git --no-pager diff --exit-code\n+ ' && EXIT_CODE=\"$?\" || EXIT_CODE=\... | 2026-03-19T11:06:03 |
vercel/next.js | 3421858b5bef076965d99fd88fedc483193a496e | 0aec1df2106066342bd8d88cd4074eea0416f322 | Node.js streams: First pass (#90500)
### What?
Note: This is only the first step. There's more follow-up PRs to
implement the transforms as Node.js streams.
Introduces a compile-time switchable Node.js streams layer for the app
rendering pipeline, gated behind `__NEXT_USE_NODE_STREAMS`. When
enabled, React's `render... | [
{
"path": "packages/next/src/server/app-render/app-render-prerender-utils.ts",
"patch": "@@ -1,28 +1,53 @@\n+import type { Readable } from 'node:stream'\n import { InvariantError } from '../../shared/lib/invariant-error'\n \n+export type AnyStream = ReadableStream<Uint8Array> | Readable\n+\n+function isWebS... | 2026-04-02T11:13:06 |
electron/electron | ec3a18d438d795a48174c1035130a08fc6462705 | 02d4101ca37e8f8ccbcd35f82b9bc7db7cf1929b | fix: hex-encode Windows notification icon temp filenames (#50454)
* fix: hex-encode Windows notification icon temp filenames
NotificationPresenterWin was using SHA1HashString(origin.spec()) directly
as the basename for the temporary PNG written for toast icons.
SHA1HashString returns raw digest bytes, so the generat... | [
{
"path": "shell/browser/notifications/win/notification_presenter_win.cc",
"patch": "@@ -72,7 +72,8 @@ std::wstring NotificationPresenterWin::SaveIconToFilesystem(\n \n std::string filename;\n if (origin.is_valid()) {\n- filename = base::SHA1HashString(origin.spec()) + \".png\";\n+ const auto hash... | 2026-03-25T16:29:58 |
rust-lang/rust | 82cd20b585504d2e034a9862b9ccb9e55a5611b1 | 906ca7ff5e1f01cdf59388574b4822365bffabea | Use debug! instead of info! | [
{
"path": "compiler/rustc_hir/src/attrs/diagnostic.rs",
"patch": "@@ -6,7 +6,7 @@ pub use rustc_ast::attr::data_structures::*;\n use rustc_macros::{Decodable, Encodable, HashStable_Generic, PrintAttribute};\n use rustc_span::{DesugaringKind, Span, Symbol, kw};\n use thin_vec::ThinVec;\n-use tracing::{debug,... | 2026-04-06T16:50:01 |
nodejs/node | f68824a6805a82bd017004443430cf40c3efaf19 | 40c625b0fd38c85081303c62cbb99a8a22ed633f | test_runner: set non-zero exit code when suite errors occur
PR-URL: https://github.com/nodejs/node/pull/62282
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -384,6 +384,9 @@ function countCompletedTest(test, harness = test.root.harness) {\n }\n if (test.reportedType === 'suite') {\n harness.counters.suites++;\n+ if (!test.passed) {\n+ harness.success = false;\n+ }\n return;\n }... | 2026-03-18T17:09:42 |
golang/go | 974764364aa09a34cad2d74a6b7c52c12a136ea3 | 2000e27ea6a644ea3623db201d8ba2818e8f5838 | runtime: unix: sane exit in dieFromSignal for pid 1
A curious bug was reported to kubernetes[1] and runc[2] recently:
sometimes runc init reports exit status of 2.
Turns out, Go runtime assumes that on any UNIX system signals such as
SIGTERM (or any other that has _sigKill flag set in sigtable) with no
signal handler... | [
{
"path": "src/runtime/signal_linux_test.go",
"patch": "@@ -0,0 +1,95 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package runtime_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+... | 2026-03-25T05:18:47 |
vercel/next.js | 0aec1df2106066342bd8d88cd4074eea0416f322 | e9597e6cc10a5a831903c3bec3e7be140c5b7497 | Add telemetry for adapterPath config usage (#92228)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
## What?
Adds telemetry tracking for when the `adapterPath` config option is used
in Next.js.
## Why?
As mentioned in the Slack discussion, telemetry for adapter usage was
missing. This helps track adoption of the adapter featur... | [
{
"path": "packages/next/src/telemetry/events/version.ts",
"patch": "@@ -40,6 +40,7 @@ type EventCliSessionStarted = {\n reactCompiler: boolean\n reactCompilerCompilationMode: string | null\n reactCompilerPanicThreshold: string | null\n+ adapterPath: boolean\n }\n \n export function eventCliSession(\... | 2026-04-02T08:41:12 |
facebook/react | 4ac47537dda5f370dffa185a2e26f8301bf73d45 | 47d1ad1454759859c5a2b29616658e10a1ce049f | [compiler] Track locations for dependencies (#35794)
Tracks locations for reactive scope dependencies, both on the deps and
portions of the path. The immediate need for this is a non-public
experiment where we're exploring type-directed compilation, and
sometimes look up the types of expressions by location. We need t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts",
"patch": "@@ -31,6 +31,7 @@ import {\n PropertyLiteral,\n ReactiveScopeDependency,\n ScopeId,\n+ SourceLocation,\n TInstruction,\n } from './HIR';\n \n@@ -244,6 +245,7 @@ class PropertyPathRegistry {... | 2026-02-17T22:06:21 |
rust-lang/rust | d5f98fbb27f6f31a7d211353b016941fa45f699d | 906ca7ff5e1f01cdf59388574b4822365bffabea | implement `StructuralPartialEq` for `MaybeDangling`
This fixes a stable-to-stable regression where constants of type
`ManuallyDrop<T>` would not be allowed to be used as a pattern due to
`MaybeDangling<T>` in `ManuallyDrop<T>` not implementing
`StructuralPartialEq`. | [
{
"path": "library/core/src/mem/maybe_dangling.rs",
"patch": "@@ -1,5 +1,6 @@\n #![unstable(feature = \"maybe_dangling\", issue = \"118166\")]\n \n+use crate::marker::StructuralPartialEq;\n use crate::{mem, ptr};\n \n /// Allows wrapped [references] and [boxes] to dangle.\n@@ -109,3 +110,5 @@ impl<P: ?Sized... | 2026-04-06T15:01:55 |
electron/electron | 02d4101ca37e8f8ccbcd35f82b9bc7db7cf1929b | fdaba4c6b0caedfed99f125a625ddb68d0f36f1b | chore: remove redundant chromium patches (#50463)
- export_gin_v8platform_pageallocator_for_usage_outside_of_the_gin.patch:
gin::V8Platform::GetPageAllocator() is now exported upstream via the
public v8::Platform interface, so we no longer need to patch gin to
expose a custom accessor. Update javascript_environm... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -52,7 +52,6 @@ adjust_accessibility_ui_for_electron.patch\n worker_feat_add_hook_to_notify_script_ready.patch\n chore_provide_iswebcontentscreationoverridden_with_full_params.patch\n fix_properly_honor_printing_page_ranges.patch\n-export_gin_v8platform_pag... | 2026-03-25T00:21:13 |
nodejs/node | 40c625b0fd38c85081303c62cbb99a8a22ed633f | 27501b48923036c1d0415122f7d1278817834478 | src,sqlite: fix filterFunc dangling reference
PR-URL: https://github.com/nodejs/node/pull/62281
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -2157,7 +2157,8 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo<Value>& args) {\n \n Local<Function> filterFunc = filterValue.As<Function>();\n \n- context.filterCallback = [&](std::string_view item) -> bool {\n+ context.filterCall... | 2026-03-18T16:15:32 |
vercel/next.js | 0167a026958bded7b617fda97d11d5c032e53222 | 93dc872d0d6df3552abef6a7b598d79a9566eea2 | Docs/adapters review (#92223)
Some corrections to the adapters docs.
- The example deploy script ran `cat .next/BUILD_ID` before `pnpm
build`. Under `set -euo pipefail` that kills the script immediately
since the file doesn't exist yet. Moved the build step first.
- `resolveRoutes` requires `URL` and `Headers` objec... | [
{
"path": "docs/01-app/03-api-reference/07-adapters/04-testing-adapters.mdx",
"patch": "@@ -168,6 +168,9 @@ require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2));\n # Set the adapter path so that the app uses it.\n export NEXT_ADAPTER_PATH=\"${ADAPTER_DIR}/dist/index.js\"\n \n+# Build the a... | 2026-04-01T22:31:08 |
golang/go | 2000e27ea6a644ea3623db201d8ba2818e8f5838 | f9d2c2fd692e3aa81b80fbe1d0479866abff54df | cmd/go/internal/doc: use internal go command logic to load packages
We've been using go/build to load packages, and that doesn't
always do the right thing, because it doesn't have the same
context and settings that the go command uses to load packages.
Use the go command's loader to load packages.
This CL doesn't rem... | [
{
"path": "src/cmd/go/internal/doc/dirs.go",
"patch": "@@ -15,6 +15,9 @@ import (\n \t\"strings\"\n \t\"sync\"\n \n+\t\"cmd/go/internal/cfg\"\n+\t\"cmd/go/internal/modload\"\n+\n \t\"golang.org/x/mod/semver\"\n )\n \n@@ -41,29 +44,18 @@ var dirs Dirs\n // dirsInit starts the scanning of package directories ... | 2025-12-29T18:16:53 |
facebook/react | 47d1ad1454759859c5a2b29616658e10a1ce049f | e8c6362678c8bc86a02b8444d2c3f597b3dc4e22 | [Flight] Skip `transferReferencedDebugInfo` during debug info resolution (#35795)
When the Flight Client resolves chunk references during model parsing,
it calls `transferReferencedDebugInfo` to propagate debug info entries
from referenced chunks to the parent chunk. Debug info on chunks is
later moved to their resolv... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -943,6 +943,7 @@ type InitializationHandler = {\n };\n let initializingHandler: null | InitializationHandler = null;\n let initializingChunk: null | BlockedChunk<any> = null;\n+let isInitializingDebugInfo: boolean = false;\n \n functio... | 2026-02-16T17:22:32 |
vercel/next.js | 93dc872d0d6df3552abef6a7b598d79a9566eea2 | a6df8603a4e164da7d758d0eb4082dc70353450d | Generate a CLI warning if using Rosetta 2 on Apple Silicon (#92220)
This PR is AI generated.
Test plan (following https://github.com/vercel/next.js/pull/81950):
- Build a preview deployment:
https://github.com/vercel/next.js/actions/runs/23858712091/job/69559813673
- Enable Rosetta
- Download a standalone x64 macos ... | [
{
"path": "packages/next/src/bin/next.ts",
"patch": "@@ -2,6 +2,7 @@\n \n import '../server/require-hook'\n \n+import os from 'os'\n import {\n Argument,\n Command,\n@@ -89,6 +90,16 @@ class NextRootCommand extends Command {\n ;(process.env as any).NODE_ENV = process.env.NODE_ENV || defaultEnv\n ... | 2026-04-01T22:25:21 |
nodejs/node | 27501b48923036c1d0415122f7d1278817834478 | 7ca5de7eda3cac94c0f39bdf1b3fabe291441352 | build: fix timezone-update path references
PR-URL: https://github.com/nodejs/node/pull/62280
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": ".github/workflows/timezone-update.yml",
"patch": "@@ -57,7 +57,7 @@ jobs:\n with:\n author: Node.js GitHub Bot <github-bot@iojs.org>\n body: |\n- This PR was generated by tools/timezone-update.yml.\n+ This PR was generated by `.github/workflows/ti... | 2026-03-18T15:48:29 |
golang/go | f9d2c2fd692e3aa81b80fbe1d0479866abff54df | 1582ad41058df1092eaed9dec4d97b7856953ade | test/codegen: forbid commas as separators
We need to leave the comma in the regexp so we get the entire comment
for processing, but report an error if commas are actually used.
Change-Id: Ia19a329deda2524cea292d866a84d1bf3b4518c6
Reviewed-on: https://go-review.googlesource.com/c/go/+/760780
Reviewed-by: Junyang Shao ... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1489,7 +1489,6 @@ var (\n \t//\t\"[\\s,]+\" matches \" \"\n \t//\tsecond reMatchCheck matches \"`SUB`\"\n \t//\t\")*)\" closes started groups; \"*\" means that there might be other elements in the space-separated list\n-\t// (TODO: remove a... | 2026-03-28T15:12:15 |
facebook/react | e8c6362678c8bc86a02b8444d2c3f597b3dc4e22 | 03ca38e6e7b84cf20438c1d333636b3d662ca726 | [eslint-plugin-react-hooks] Add ESLint v10 support (#35720)
## Summary
ESLint v10.0.0 was released on February 7, 2026. The current
`peerDependencies` for `eslint-plugin-react-hooks` only allows up to
`^9.0.0`, which causes peer dependency warnings when installing with
ESLint v10.
This PR:
- Adds `^10.0.0` to the e... | [
{
"path": ".github/workflows/runtime_eslint_plugin_e2e.yml",
"patch": "@@ -29,6 +29,7 @@ jobs:\n - \"7\"\n - \"8\"\n - \"9\"\n+ - \"10\"\n steps:\n - uses: actions/checkout@v4\n with:",
"additions": 1,
"deletions": 0
},
{
"path": "fixt... | 2026-02-13T18:26:01 |
rust-lang/rust | adaff7315de473b231c783b1cd256e2e3d35a3ed | 057b24ee8174d784c93722eed07a465862d8564e | fixes rustdoc build script | [
{
"path": "src/librustdoc/build.rs",
"patch": "@@ -27,8 +27,7 @@ fn main() {\n \"static/fonts/FiraSans-MediumItalic.woff2\",\n \"static/fonts/FiraMono-Regular.woff2\",\n \"static/fonts/FiraMono-Medium.woff2\",\n- \"static/fonts/FiraSans-LICENSE.txt\",\n- \"static/fonts/... | 2026-04-06T11:27:32 |
vercel/next.js | 9e1509307e336bc422bc6d1c1cc0a32ce00d9523 | 3e0158846e490509c6a26a4536d33777d9778101 | Fix DashMap read-write self-deadlock in task_cache causing hangs (#92210) | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1532,8 +1532,9 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Create a single ExecuteContext for both lookup and connect_child\n let mut ctx = self.execute_context(turbo_tasks);\n // First... | 2026-04-01T20:25:03 |
facebook/react | 892c68605c46af0558cdd546782f23ad120ad0d4 | cd515d7e22636238adef912356f522168946313d | [fiber] bugfix - don't show <Offscreen> in error message. (#35763)
## Overview
While building the RSC sandboxes I notice error messages like:
> An error occurred in the `<Offscreen>` component
This is an internal component so it should show either:
> An error occurred in the `<Suspense>` component.
> An error ... | [
{
"path": "packages/react-reconciler/src/__tests__/ReactIncrementalErrorLogging-test.js",
"patch": "@@ -213,6 +213,67 @@ describe('ReactIncrementalErrorLogging', () => {\n }).toThrow('logCapturedError error');\n });\n \n+ it('does not report internal Offscreen component for errors thrown during recon... | 2026-02-11T16:20:51 |
nodejs/node | 7ca5de7eda3cac94c0f39bdf1b3fabe291441352 | bd8522a2c9b35ec9d6ab585781be3d1a1a9c0aaa | doc: fix small environment_variables typo
PR-URL: https://github.com/nodejs/node/pull/62279
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": "doc/api/environment_variables.md",
"patch": "@@ -145,7 +145,7 @@ There following two functions allow you to directly interact with `.env` files:\n \n * [`process.loadEnvFile`][] loads an `.env` file and populates `process.env` with its variables\n \n-* [`util.parseEnv`][] parses the row content o... | 2026-03-18T15:48:15 |
golang/go | 1582ad41058df1092eaed9dec4d97b7856953ade | d5b6d583c16f60e4a2f80f8b0fe78abab503f84c | test/codegen: fix some unbalanced quotes
Change-Id: I081da8c79f0264118e079af21ff58c511ae37e6c
Reviewed-on: https://go-review.googlesource.com/c/go/+/760682
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Joel Sing... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1683,6 +1683,8 @@ func (t test) wantedAsmOpcodes(fn string) asmChecks {\n \t\t\ttail := comment[lastUsed:]\n \t\t\tif possibleOpcodeRx.MatchString(tail) {\n \t\t\t\tt.Errorf(\"%s:%d: possible unused assembly pattern: %v\", t.goFileName(), i... | 2026-03-28T00:14:43 |
vercel/next.js | 4582b5fa93dd65b6f9ed1dff7e66bdb93ddd653c | 77c84b4dacb2f9693f8f44a9ee16dad8bce99f9c | Reapply "ci: add node-stream test coverage workflow (#89861)" (#91664)
Re-apply #89861.
Somehow the tests passed in the PR but failed after merging. Will dig
into it.
Edit: Dug into it, there was a missing env var. Fixed and ready to merge
now.
PR doesn't add the Node.js streams code path. Implementation starts in
... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -812,7 +812,6 @@ jobs:\n \n uses: ./.github/workflows/build_reusable.yml\n with:\n- # Keep Next.js related env variables in sync with additionalEnv in next-deploy.ts\n afterBuild: |\n export __NEXT_CACHE_COMPONENTS=tru... | 2026-04-01T18:42:25 |
facebook/react | f23aa1d9f5034e7cfbd3e6015ce102bb72a005a0 | 49c3b270f9991fbecbe2b9c29c27e19a54fb4466 | [DevTools] Fix memory leak when unmounting hoistables (#35741) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3616,4 +3616,59 @@ describe('Store', () => {\n <div>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('cleans up host hoistables', async () => {\n+ function Left() {\n+ return (\n+ <style... | 2026-02-10T12:09:23 |
golang/go | 1673075d4bd324e69cb4e6e58760316e2c84e604 | 9387929d09490ae30a8da75c64d9c64e2c16936d | test/codegen: fix broken syntax
A bunch of tests had broken yet undetected syntax errors
in their assembly output regexps. Things like mismatched quotes,
using ^ instead of - for negation, etc.
In addition, since CL 716060 using commas as separators between
regexps doesn't work, and ends up just silently dropping eve... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1394,10 +1394,11 @@ type wantedError struct {\n }\n \n var (\n-\terrRx = regexp.MustCompile(`// (?:GC_)?ERROR (.*)`)\n-\terrAutoRx = regexp.MustCompile(`// (?:GC_)?ERRORAUTO (.*)`)\n-\terrQuotesRx = regexp.MustCompile(`\"([^\"]*)\"`... | 2026-03-27T22:12:23 |
vercel/next.js | c2914790119fe06835dd555928f4aa3616cdc613 | faa4b992965537cf260eca4887951b7b7eae97be | partial fallbacks: adapter support for intermediate shells (#91902)
Previously, `partialFallback` was only emitted when all dynamic params
could become fully concrete after upgrade. For a route like
`/prefix/[one]/[two]` where only `[one]` has generateStaticParams, the
feature was disabled entirely.
This relaxes the ... | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -1638,16 +1638,8 @@ export async function handleBuildComplete({\n typeof fallback === 'string' &&\n Boolean(meta.postponed)\n \n- // Today, consumers of this build output can only upgrade a fallback shell\... | 2026-04-01T16:49:59 |
electron/electron | 1828690467017b7b0b67e01e0b14564c87f65f1b | f4c4cd14ac8eebf4ed33d75ca4f9b35b0e013208 | fix: deprecate ELECTRON_SKIP_BINARY_DOWNLOAD env (#50406)
* fix: remove ELECTRON_SKIP_BINARY_DOWNLOAD
it is redundant as of electron v42
its purpose was to skip the binary download for post install script
but as of electron v42, post install script is gone
and replaced with a lazy download
it was also slated fo... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -98,6 +98,9 @@ npm install electron --save-dev\n ELECTRON_INSTALL_PLATFORM=mas npx electron . --no\n ```\n \n+This also means the `ELECTRON_SKIP_BINARY_DOWNLOAD` environment variable is no\n+longer supported, as its primary purpose was to prevent the `posti... | 2026-03-24T13:42:15 |
nodejs/node | 4d2d6de1b6b9a50c19bee51715e4ee242d80ffd7 | 9fc6b64c12eaf4569446f1cec9a119c16fc6ab39 | stream: preserve error over AbortError in pipeline
Signed-off-by: marcopiraccini <marco.piraccini@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62113
Fixes: https://github.com/nodejs/node/issues/62089
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-... | [
{
"path": "lib/internal/streams/pipeline.js",
"patch": "@@ -227,7 +227,7 @@ function pipelineImpl(streams, callback, opts) {\n }\n \n function finishImpl(err, final) {\n- if (err && (!error || error.code === 'ERR_STREAM_PREMATURE_CLOSE')) {\n+ if (err && (!error || error.code === 'ERR_STREAM_PREMA... | 2026-03-18T06:04:26 |
facebook/react | c6bb26bf833c5d91760daf28fa2750b81067ac30 | 6a939d0b54a0e1aded58652a307cfc083b691d67 | [DevTools] Don't capture durations for disconnected subtrees when profiling (#35718)
After https://github.com/facebook/react/pull/34089, when updating
(possibly, mounting) inside disconnected subtree, we don't record this
as an operation. This only happens during reconnect. The issue is that
`recordProfilingDurations(... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js",
"patch": "@@ -191,4 +191,73 @@ describe('commit tree', () => {\n expect(commitTrees[1].nodes.size).toBe(2); // <Root> + <App>\n });\n });\n+\n+ describe('Suspense', () => {\n+ it('should handle trans... | 2026-02-09T22:18:17 |
golang/go | 9387929d09490ae30a8da75c64d9c64e2c16936d | f665ff8bc1ab2576d173cb69c3b2e87916dc74fd | cmd/link, runtime: record size of itabs
We were depending on runtime.etypes immediately following the itabs.
However, on AIX, runtime.etypes, as a zero-sized symbol, can float
when using external linking. It won't necessarily stay right at the
end of the itabs. Rather than worry about this, just record the size
of the... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -2549,6 +2549,19 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t\tsu.SetUint(ctxt.Arch, ctxt.moduledataItabOffset, uint64(typeSize))\n \t\t}\n \n+\t\titabSize := int64(0)\n+\t\tfor ; i < len(sl); i++ {\n+\t... | 2026-03-30T04:05:35 |
electron/electron | dbcf0fb5f0351c0cceca24f6ae31944b89299fa4 | 29750dda082501f5b728f58fb57765813d59a193 | fix: lazily initialize safeStorage async encryptor (#50419)
* fix: lazily initialize safeStorage async encryptor
The SafeStorage constructor previously registered a browser observer that
called os_crypt_async()->GetInstance() on app-ready. Because ESM named
imports (import { x } from 'electron') eagerly evaluate all ... | [
{
"path": "docs/api/safe-storage.md",
"patch": "@@ -59,7 +59,12 @@ On Windows, returns true once the app has emitted the `ready` event.\n \n ### `safeStorage.isAsyncEncryptionAvailable()`\n \n-Returns `Promise<Boolean>` - Whether encryption is available for asynchronous safeStorage operations.\n+Returns `Pr... | 2026-03-23T17:47:14 |
vercel/next.js | f7de136c60d0567c62e2bd8b456172170cc778c9 | 36fcc163070a5a0788a56a89791e00cc8ce0b861 | fix: pin 19 actions to commit SHA, extract 7 expressions to env vars (#92016)
Re-submission of #91933. Had a problem with my fork and had to delete
it, which closed the original PR. Apologies for the noise.
## Summary
This PR pins all GitHub Actions to immutable commit SHAs instead of
mutable version tags and extrac... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -65,7 +65,7 @@ jobs:\n if [[ $(node ./scripts/check-is-release.js 2> /dev/null || :) == v* ]];\n then\n echo \"value=production\" >> $GITHUB_OUTPUT\n- elif [ '${{ github.ref }}' == 'refs/heads/canary' ]... | 2026-04-01T00:57:59 |
facebook/react | 4c9d62d2b47be424ad9050725d8bdd8df12fe2a3 | 24f215ce8b0e17a230fbb7317919a6ae0c324f35 | [DevTools] Fix crash when revealing stable, filtered `<Activity>` children (#35734) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3572,4 +3572,48 @@ describe('Store', () => {\n <Suspense name=\"inner\" rects={[{x:1,y:2,width:14,height:1}]}>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('can reconcile newly visible Activity with fil... | 2026-02-09T21:52:24 |
nodejs/node | 9fc6b64c12eaf4569446f1cec9a119c16fc6ab39 | f08e2e06eb382de9f4a7bc0578de6fdea5db47a4 | doc: test and test-only targets do not run linter
`make test` and `make test-only` targets no longer runs linters.
This commit updates the inline comments and building doc to reflect
reality.
Fixes: https://github.com/nodejs/node/issues/58606
PR-URL: https://github.com/nodejs/node/pull/62120
Reviewed-By: Michaël Zass... | [
{
"path": "BUILDING.md",
"patch": "@@ -404,11 +404,9 @@ If you are running tests before submitting a pull request, use:\n make -j4 test\n ```\n \n-`make -j4 test` does a full check on the codebase, including running linters and\n-documentation tests.\n+`make -j4 test` does a full check on the codebase, incl... | 2026-03-17T23:19:31 |
rust-lang/rust | 6be14042168ec1c1c8cfbcb6437aa3d44089a5c8 | c2efcc4ae006a6b2761cb42572fc9cee0d1ce4af | attr parsing: make sure we pass the right target when errors could be emitted | [
{
"path": "compiler/rustc_attr_parsing/src/interface.rs",
"patch": "@@ -64,6 +64,7 @@ impl<'sess> AttributeParser<'sess, Early> {\n sym,\n target_span,\n target_node_id,\n+ Target::Crate, // Does not matter, we're not going to emit errors anyways\n ... | 2026-04-06T07:31:34 |
facebook/react | 24f215ce8b0e17a230fbb7317919a6ae0c324f35 | eab523e2a99583703b13536670dfdd8a3b1e26e0 | [DevTools] Fix false-positive re-render reports for filtered nodes (#35723)
Fixes https://github.com/facebook/react/issues/33423,
https://github.com/facebook/react/issues/35245,
https://github.com/facebook/react/issues/19732.
As demoed
[here](https://github.com/facebook/react/issues/33423#issuecomment-2970750588),
Re... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js",
"patch": "@@ -298,4 +298,164 @@ describe('profiling charts', () => {\n `);\n });\n });\n+\n+ describe('components behind filtered fibers should not report false re-renders', () => {\n+ it('should not report a c... | 2026-02-09T20:39:33 |
nodejs/node | 3db22062cfe0452177b0f9c163228ebef2a08bb2 | 06a8240384419a072be5a73e75d7a153da8d51e4 | tools: fix timeout errors in `lint-nix` job
PR-URL: https://github.com/nodejs/node/pull/62265
Fixes: https://github.com/nodejs/node/issues/62219
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": "tools/nix/pkgs.nix",
"patch": "@@ -8,3 +8,14 @@ let\n }) arg;\n in\n nixpkgs\n+// {\n+ nixfmt-tree = nixpkgs.nixfmt-tree.overrideAttrs (old: {\n+ patches = (old.patches or [ ]) ++ [\n+ (nixpkgs.fetchpatch2 {\n+ url = \"https://github.com/numtide/treefmt/commit/b96016b4e38ffc7651... | 2026-03-17T16:36:20 |
vercel/next.js | 36fcc163070a5a0788a56a89791e00cc8ce0b861 | 5ef10c67f52ed96d5b4e26e4dc0ea2225c96c738 | Improve revalidateTag JSDoc to include guidance about required second parameter (#92176)
### What?
Improved the JSDoc comment on `revalidateTag` to explain the required
second `profile` parameter, linking to `cacheLife` profile docs and
mentioning `updateTag` as an alternative for immediate expiration.
### Why?
The... | [
{
"path": "packages/next/src/server/web/spec-extension/revalidate.ts",
"patch": "@@ -24,6 +24,10 @@ type CacheLifeConfig = {\n /**\n * This function allows you to purge [cached data](https://nextjs.org/docs/app/building-your-application/caching) on-demand for a specific cache tag.\n *\n+ * The second argu... | 2026-04-01T00:44:53 |
golang/go | f665ff8bc1ab2576d173cb69c3b2e87916dc74fd | 9002bd9fa1a3b500ca570844ea563967268a3878 | cmd/compile: fix wrong label loop during rangefunc rewrite
During the rangefunc rewrite, the compiler must correctly identify
the target of branch statements. When a label is defined within a
nested scope - such as inside a function literal or a closure - it
can shadow a label with the same name in the outer scope.
I... | [
{
"path": "src/cmd/compile/internal/rangefunc/rewrite.go",
"patch": "@@ -994,7 +994,14 @@ func (r *rewriter) computeBranchNext() {\n \t\t\t\tl := n.Label.Value\n \t\t\t\tlabels = append(labels, l)\n \t\t\t\tf := forStack[len(forStack)-1]\n-\t\t\t\tr.labelLoop[l] = f\n+\t\t\t\tif _, existed := r.labelLoop[l]... | 2026-03-31T11:53:51 |
electron/electron | 6df6ec5f094f1546b5510c47aa478b2e19187f88 | 882a6b2cf97974fa2ccbd39e9c1e2d43d600c3a5 | chore: bump chromium to 148.0.7741.0 (main) (#50336)
* chore: bump chromium in DEPS to 148.0.7739.0
* chore: bump chromium in DEPS to 148.0.7740.0
* 7654582: Delete obsolete kEnableServiceWorkersForChromeScheme feature flag.
https://chromium-review.googlesource.com/c/chromium/src/+/7654582
* chore: fixup patch ind... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7738.0',\n+ '148.0.7741.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "patches/chromium/add_contentgpucl... | 2026-03-23T09:23:55 |
facebook/react | eab523e2a99583703b13536670dfdd8a3b1e26e0 | 272441a9ade6bf84de11ba73039eb4c80668fa6a | [Fiber] Avoid duplicate debug info for array children (#35733) | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2820,7 +2820,8 @@ describe('ReactFlight', () => {\n ]\n : undefined,\n );\n- expect(getDebugInfo(thirdPartyChildren[2])).toEqual(\n+ const fragment = thirdPartyChildren[2];\n+ expect... | 2026-02-09T19:36:56 |
vercel/next.js | 5ef10c67f52ed96d5b4e26e4dc0ea2225c96c738 | fe99f0d63fbd7564df3a247f39740b2e11d12ab9 | disable bmi2 in qfilter (#92177)
Fixes #91708
set the legacy_x86_64_support feature on qfilter to support older intel cpus | [
{
"path": "turbopack/crates/turbo-persistence/Cargo.toml",
"patch": "@@ -26,7 +26,8 @@ memmap2 = \"0.9.5\"\n nohash-hasher = { workspace = true }\n parking_lot = { workspace = true }\n pot = \"3.0.0\"\n-qfilter = { version = \"0.3.0-alpha.2\", features = [\"serde\"] }\n+# See https://github.com/vercel/next.... | 2026-03-31T23:52:51 |
nodejs/node | 193c49505a54ae72634cce8ed55b640c292c0321 | 6f7b948a492edb4a12f52a33bcb61775bfc17d5e | doc: clarify fs.ReadStream and fs.WriteStream are not constructable
Add explicit wording that fs.ReadStream and fs.WriteStream should not
be constructed directly, matching the existing pattern used by fs.Stats
("not to be created directly using the new keyword"). The factory
functions fs.createReadStream() and fs.crea... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -7155,8 +7155,8 @@ added: v0.1.93\n \n * Extends: {stream.Readable}\n \n-Instances of {fs.ReadStream} are created and returned using the\n-[`fs.createReadStream()`][] function.\n+Instances of {fs.ReadStream} cannot be constructed directly. They are created and\n+retur... | 2026-03-17T16:03:11 |
golang/go | 9002bd9fa1a3b500ca570844ea563967268a3878 | d9fbe4c90d956f7835224f4de1afcf799e8cc3ed | cmd/compile: ensure map/slice clearing expressions are walked
The order pass ensures that initialization operations for clear(expr)
are scheduled. However, if 'expr' is a conversion that the walk pass
subsequently optimizes away or transforms, the resulting nodes can
be left in an un-walked state.
These un-walked nod... | [
{
"path": "src/cmd/compile/internal/walk/builtin.go",
"patch": "@@ -136,17 +136,18 @@ func walkGrowslice(slice *ir.Name, init *ir.Nodes, oldPtr, newLen, oldCap, num i\n }\n \n // walkClear walks an OCLEAR node.\n-func walkClear(n *ir.UnaryExpr) ir.Node {\n+func walkClear(n *ir.UnaryExpr, init *ir.Nodes) ir.... | 2026-03-30T06:15:38 |
electron/electron | 882a6b2cf97974fa2ccbd39e9c1e2d43d600c3a5 | b8fa540fd3c5673d170b950dc0504d290ea66195 | build: speed up apply_all_patches by ~60% (#50417)
git am rewrites the index 2-3x per patch. In Chromium (~500K files,
70MB index) this dominated wall time: ~67 of 73 seconds were spent
rehashing and rewriting the index ~300 times for 150 patches.
- Add index.skipHash=true to skip recomputing the trailing SHA over
... | [
{
"path": "script/apply_all_patches.py",
"patch": "@@ -1,13 +1,16 @@\n #!/usr/bin/env python3\n \n import argparse\n+import concurrent.futures\n import json\n import os\n+import subprocess\n import warnings\n \n from lib import git\n from lib.patches import patch_from_dir\n \n+ELECTRON_DIR = os.path.dirname... | 2026-03-23T08:49:48 |
facebook/react | 272441a9ade6bf84de11ba73039eb4c80668fa6a | b07aa7d643ec9028e452612c3ff2c17a6cee6bb7 | [Flight] Add `unstable_allowPartialStream` option to Flight Client (#35731)
When using a partial prerender stream, i.e. a prerender that is
intentionally aborted before all I/O has resolved, consumers of
`createFromReadableStream` would need to keep the stream unclosed to
prevent React Flight from erroring on unresolv... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -359,6 +359,7 @@ type Response = {\n _stringDecoder: StringDecoder,\n _closed: boolean,\n _closedReason: mixed,\n+ _allowPartialStream: boolean,\n _tempRefs: void | TemporaryReferenceSet, // the set temporary references can be... | 2026-02-09T18:19:32 |
nodejs/node | 6f7b948a492edb4a12f52a33bcb61775bfc17d5e | 9e89867fe6990036225896a0dfb9971c6cb358b3 | module: fix coverage of mocked CJS modules imported from ESM
Signed-off-by: marcopiraccini <marco.piraccini@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62133
Fixes: https://github.com/nodejs/node/issues/61709
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -108,7 +108,9 @@ const kShouldNotSkipModuleHooks = { __proto__: null, shouldSkipModuleHooks: fals\n * @param {boolean} isMain - Whether the module is the entrypoint\n */\n function loadCJSModule(module, source, url, filename, isMain) {\n- ... | 2026-03-17T16:02:55 |
vercel/next.js | fe99f0d63fbd7564df3a247f39740b2e11d12ab9 | e16735f880eb4333313e3d58e5157f1700bba23c | simplify session dependent tasks and add TTL support (#91729)
## Summary
Three related improvements to turbo-tasks session-dependent task handling:
### 1. Make `session_dependent` a function attribute
Previously, tasks called `mark_session_dependent()` at runtime to flag themselves. This PR makes it a compile-time ... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -363,6 +363,37 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.options.dependency_tracking\n }\n \n+ /// Sets the initial aggregation number for a newly created task. Root tasks get `u32::MAX`\n+ ... | 2026-03-31T23:51:08 |
electron/electron | b8fa540fd3c5673d170b950dc0504d290ea66195 | dee8f5a0ffa69116117fb00c4faaaacd30218e2f | fix: use fresh LazyNow for OnEndWorkItemImpl to fix TimeKeeper DCHECK (#50418) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -148,3 +148,4 @@ fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n+fix_use_fre... | 2026-03-23T02:54:31 |
golang/go | db6661a2fd321d4af14efc48492144f86bb50c93 | af4c316c28d2dad63851e7384a7aa198ee729aee | net/http: support passing Server Shutdown context to HTTP/3 implementations
Currently, when Server.Shutdown is called with a given context, an
HTTP/3 server implementation does not have access to said context. This
forces HTTP/3 server implementations to guess a reasonable fixed timeout
when attempting to gracefully s... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -3121,6 +3121,7 @@ type Server struct {\n \tactiveConn map[*conn]struct{}\n \tonShutdown []func()\n \th2 *http2Server\n+\th3 *http3ServerHandler\n \n \tlistenerGroup sync.WaitGroup\n }\n@@ -3188,6 +3189,9 @@ func (s *Server) Shutdown(ctx conte... | 2026-03-31T02:24:12 |
nodejs/node | 9e89867fe6990036225896a0dfb9971c6cb358b3 | ac6375417a5305433c735c781d0f6d1eaec9f2ba | doc,test: clarify --eval syntax for leading '-' scripts
If the script passed to --eval starts with a hyphen, the CLI parser
treats it as another option flag. Document the --eval=<script> form
as the workaround and add tests for --eval=-42, --eval=-0, and the
-e -p missing-argument error.
Co-authored-by: jorge guerrer... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -997,6 +997,9 @@ changes:\n Evaluate the following argument as JavaScript. The modules which are\n predefined in the REPL can also be used in `script`.\n \n+If `script` starts with `-`, pass it using `=` (for example,\n+`node --print --eval=-42`) so it is parsed as t... | 2026-03-13T17:15:54 |
electron/electron | 32f8e2ce4579626ea99602fcf3f3d0100eb5cc66 | 4e6324e00bb73bae1b87736adbf3e8ce6bf1ac75 | build(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.24.0 (#50310)
* build(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.24.0
Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) from 16.6.2 to 17.24.0.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [C... | [
{
"path": "lib/renderer/init.ts",
"patch": "@@ -124,7 +124,9 @@ if (nodeIntegration) {\n delete (global as any).setImmediate;\n delete (global as any).clearImmediate;\n delete (global as any).global;\n+ // eslint-disable-next-line n/no-deprecated-api\n delete (global as any).roo... | 2026-03-20T21:38:44 |
golang/go | af4c316c28d2dad63851e7384a7aa198ee729aee | 1f8aff4386ca8be6ae9b9553205d113884c4a8ee | image/jpeg: reject RGB and non-standard chroma subsampling
This fixes a possible panic introduced a few months ago by "image/jpeg:
add support for non-standard chroma subsampling ratios" (CL 738280).
Fixes #78368
Change-Id: I1f181582b7dc1e2955e3ec26c3aa24bc0f4159df
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/image/jpeg/reader.go",
"patch": "@@ -755,7 +755,27 @@ func (d *decoder) isRGB() bool {\n }\n \n func (d *decoder) convertToRGB() (image.Image, error) {\n-\tcScale := d.comp[0].h / d.comp[1].h\n+\t// Historically, we only supported 4:4:4, 4:4:0, 4:2:2, 4:2:0, 4:1:1 or\n+\t// 4:1:0 chroma subsa... | 2026-03-31T09:09:53 |
nodejs/node | b4ea3238330c7ef215a5ab6414ef01fa83cd318a | a62f6411aeac95d7c17bd4ac806b4843b11592c9 | diagnostics_channel: ensure tracePromise consistency with non-Promises
PR-URL: https://github.com/nodejs/node/pull/61766
Fixes: https://github.com/nodejs/node/issues/59936
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Benjamin Gruenbaum <b... | [
{
"path": "doc/api/diagnostics_channel.md",
"patch": "@@ -829,23 +829,36 @@ channels.traceSync(() => {\n added:\n - v19.9.0\n - v18.19.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61766\n+ description: Custom thenables will no longer be wrapped in native Promi... | 2026-03-17T11:54:48 |
vercel/next.js | 8be5a3c282b1bd9780f79ebaf9bd02b24957d5f3 | 9b66a376e7e66c51d1a0952a96e3c377b56bd81a | [turbopack] Fix CSS HMR on Safari (#92123)
Fixes #91818
**Regression source:** Commit `b7e4c6a011` ("Turbopack: transpile
CHUNK_SUFFIX") introduced `getChunkSuffixFromScriptSrc()` which reads
query strings from `<script>` tags. On Safari, this picks up the `?ts=`
param injected by the server-side cache-busting workar... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -1054,19 +1054,24 @@ jobs:\n \n # these all run without concurrency because they're heavier\n export TEST_CONCURRENCY=1\n- export IS_WEBPACK_TEST=1\n-\n- BROWSER_NAME=firefox node run-tests.js \\\n+ export IS... | 2026-03-31T21:49:53 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.