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