repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
6bf7fd7f4ecbf74e38e4e02ffbeb452de068921f
d74c4987351252f39c18305dd53dbf047639017f
crypto: fix cross-realm check of `ArrayBuffer` This patch modifies the `isNonSharedArrayBuffer` function in the WebIDL implementation for the SubtleCrypto API to properly handle `ArrayBuffer` instances created in different JavaScript realms. Before this fix, when a `TypedArray.buffer` from a different realm (e.g., fr...
[ { "path": "lib/internal/crypto/webidl.js", "patch": "@@ -12,7 +12,6 @@\n \n const {\n ArrayBufferIsView,\n- ArrayBufferPrototype,\n ArrayPrototypeIncludes,\n ArrayPrototypePush,\n ArrayPrototypeSort,\n@@ -48,6 +47,7 @@ const {\n validateMaxBufferLength,\n kNamedCurveAliases,\n } = require('inte...
2025-04-22T13:01:21
facebook/react
792fa065ca7a46ce4a583e8f6f35eec8bd813d43
33195602ea125af38f9460f0bb2ccab8713e5f10
[compiler][ez] Clean up pragma parsing for tests + playground (#31347) Move environment config parsing for `inlineJsxTransform`, `lowerContextAccess`, and some dev-only options out of snap (test fixture). These should now be available for playground via `@inlineJsxTransform` and `lowerContextAccess`. Other small...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -14,7 +14,7 @@ import {\n CompilerErrorDetail,\n Effect,\n ErrorSeverity,\n- parseConfigPragma,\n+ parseConfigPragmaForTests,\n ValueKind,\n runPlayground,\n type Hook,\n@@ -208,7 +208,7 @@ function compile(sou...
2024-11-05T23:19:44
golang/go
ee163197a879cf19aa9758bc544c717445284311
de9da0de30377532370a09a311851afc0616c185
path/filepath: return cleaned path from Rel As the doc says, Rel should return a cleaned path. Fixes #75763 Change-Id: Ic0f5a3b1da3cc4cf3c31fdb1a88ebcc4ea6f9169 Reviewed-on: https://go-review.googlesource.com/c/go/+/709675 Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -248,7 +248,7 @@ func Rel(basepath, targpath string) (string, error) {\n \t\t\tbuf[n] = Separator\n \t\t\tcopy(buf[n+1:], targ[t0:])\n \t\t}\n-\t\treturn string(buf), nil\n+\t\treturn Clean(string(buf)), nil\n \t}\n \treturn targ[t0:], nil\n }", "addit...
2025-10-06T23:13:14
electron/electron
fff6ea438ac99cfec9818e961faf5c8a87787f91
3e77faf2f75f1cade24f3a9e7f8388d7a2c32013
fix: software compositing infinite loop (#44318) Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
[ { "path": "patches/chromium/.patches", "patch": "@@ -132,4 +132,5 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+fix_software_compo...
2024-10-21T22:56:03
facebook/react
33195602ea125af38f9460f0bb2ccab8713e5f10
5ca2bc6d631dde8c221fa482cb8729a67115c7f9
[compiler][ez] tsconfig: treat all snap fixtures as modules (#31350) Qol improvement. Currently, typescript lints treat test fixtures without an export as a 'global script' (see [docs](https://www.typescriptlang.org/docs/handbook/2/modules.html#how-javascript-modules-are-defined)). This gives confusing lints for du...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/tsconfig.json", "patch": "@@ -19,7 +19,9 @@\n },\n \"verbatimModuleSyntax\": true,\n \"module\": \"ESNext\",\n- \"allowSyntheticDefaultImports\": true\n+ \"allowSyntheticDefaultImports\": true,\n+ \"moduleDe...
2024-11-05T22:57:18
nodejs/node
a365da6b0cf1dd930175ae8cfff312a6d861858a
085b0281d9903c374e00b7e3d4dd97a2275fc9ee
meta: fix subsystem in commit title "config" is not recognized as a valid subsystem by `core-validate-commit@4.1.0`. Refs: https://github.com/nodejs/node/commit/478a2e656d803970e93c PR-URL: https://github.com/nodejs/node/pull/57945 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Jake Yuesong Li <...
[ { "path": ".github/workflows/tools.yml", "patch": "@@ -237,7 +237,7 @@ jobs:\n run: |\n node ./tools/dep_updaters/update-root-certs.mjs -v -f \"$GITHUB_ENV\"\n - id: simdjson\n- subsystem: deps, config\n+ subsystem: deps\n label: dependen...
2025-04-22T06:43:48
electron/electron
3e77faf2f75f1cade24f3a9e7f8388d7a2c32013
cc9d85d3caf8f4dd99d29b310d99029ef50d488b
fix: crash when generating shortcut text for super accelerator (#44341)
[ { "path": "patches/chromium/.patches", "patch": "@@ -132,3 +132,4 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+ui_add_missing_sho...
2024-10-21T18:26:38
facebook/react
5ca2bc6d631dde8c221fa482cb8729a67115c7f9
bddb7c9b5c248c77fb52743cd319945d782bb7aa
[compiler][ez] Fixture repro for function hoisting bug (#31349) Repro for bug reported by @alexmckenley
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-functiondecl-hoisting.expect.md", "patch": "@@ -0,0 +1,81 @@\n+\n+## Input\n+\n+```javascript\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * Fixture currently fails with\n+ * Found differences in evaluato...
2024-11-05T22:56:53
golang/go
de9da0de30377532370a09a311851afc0616c185
ae094a1397d03aafde380cdb79e0d6a5731c8dbc
cmd/compile/internal/devirtualize: improve concrete type analysis This change improves the concrete type analysis in the devirtualizer, it not longer relies on ir.Reassigned, it now statically tries to determine the concrete type of an interface, even when assigned multiple times, following type assertions and iface c...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -18,9 +18,11 @@ import (\n \t\"cmd/compile/internal/types\"\n )\n \n+const go126ImprovedConcreteTypeAnalysis = true\n+\n // StaticCall devirtualizes the given call if possible when the concrete callee\n // is available staticall...
2025-10-07T17:57:59
nodejs/node
64d9b7c5f836628b457b62f7918e1cf6a2df180a
99dc2d376a529ac71d9dbd0662d1593c3a8635e1
util: fix parseEnv handling of invalid lines PR-URL: https://github.com/nodejs/node/pull/57798 Fixes: https://github.com/nodejs/node/issues/56775 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "src/node_dotenv.cc", "patch": "@@ -102,8 +102,11 @@ MaybeLocal<Object> Dotenv::ToObject(Environment* env) const {\n return scope.Escape(result);\n }\n \n-// Removes space characters (spaces, tabs and newlines) from\n-// the start and end of a given input string\n+// Removes leading and trailing...
2025-04-21T06:46:44
rust-lang/rust
95fcc2d5f966afa736ef88cf9be6e6e244a38e3c
80af4486c71f3b4d09f4d41584370c4437aa1c94
fix: cfg_select supports non token-tree tokens - Fix single non-curly groups is ignored `true => ((),)`, old: `(),`, new: `((),)` Example --- ```rust const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 }; ``` **Before this PR** ```rust const _: i32 = cfg_select! { true => 2 /* expected a token tree after `=>` */...
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/builtin_fn_macro.rs", "patch": "@@ -568,6 +568,12 @@ cfg_select! {\n _ => { fn true_2() {} }\n }\n \n+const _: ((),) = cfg_select! { _ => ((), ) };\n+const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };\n+const _: i32 = cfg...
2026-02-24T10:29:05
vercel/next.js
05d71110906b10c5a6eca43b1beedb1ada5a2462
567dc18b2388922c1e14f531159aa1bcc6cfce0a
[test]: move resume-data-cache to e2e test (#85647) Moves `resume-data-cache` to `test/e2e`. We don't currently run `production` tests when deployed - many of them do funky things with `next.build` / `next.start` and are meant to test local behavior rather than deployed behavior. As a result, I also temporarily disab...
[ { "path": "test/e2e/app-dir/resume-data-cache/resume-data-cache/resume-data-cache.test.ts", "patch": "@@ -3,10 +3,18 @@ import { retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/utils/cache-busting-search-param'\n \n describe('resume-data-cache', (...
2025-10-31T23:17:57
electron/electron
cc9d85d3caf8f4dd99d29b310d99029ef50d488b
d3d02ef1115ca5e38c2195017c3b3b5242a3cf80
build: fixup reclient use for prod builds (#44340)
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -159,21 +159,19 @@ runs:\n run: |\n cd src\n gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n- autoninja -C out/ffmpeg electron:electron_ffmpeg_zi...
2024-10-21T18:07:02
facebook/react
bddb7c9b5c248c77fb52743cd319945d782bb7aa
f8f6e1a21a1cac64cf6faf666367d641b2d8b171
[compiler] Add fixture for objectexpr computed key bug (#31348) We were bailing out on complex computed-key syntax (prior to #31344) as we assumed that this caused bugs (due to inferring computed key rvalues to have `freeze` effects). This fixture shows that this bailout is unrelated to the underlying bug
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-object-expression-computed-key-modified-during-after-construction-hoisted-sequence-expr.expect.md", "patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import {identity, mutate} from 'shared-runtime';\n+\...
2024-11-05T22:56:36
golang/go
d945600d060e7a0b7c5e72ac606a017d105a17f3
d4830c61301a32ad9373bc30c5fd6196c3567f61
cmd/gofmt: change -d to exit 1 if diffs exist When using the -d flag, set the exit code to 1 if there is a diff. Fixes #46289 Change-Id: I802e8ccd1798ed7f4448696bec4bc82835ec71a2 GitHub-Last-Rev: db2207fba9a8f7a2f50138ec1f086ac6a74e1b10 GitHub-Pull-Request: golang/go#75649 Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -41,6 +41,9 @@ var (\n \n \t// debugging\n \tcpuprofile = flag.String(\"cpuprofile\", \"\", \"write cpu profile to this file\")\n+\n+\t// errors\n+\terrFormattingDiffers = fmt.Errorf(\"formatting differs from gofmt's\")\n )\n \n // Keep these in sync with go/...
2025-10-06T12:47:34
nodejs/node
e773e09c3f55955b0d47f49f7a869a764202558d
422529a2e3f73f7879dec8dcacd60edc520a5471
src: fixup errorhandling more in various places PR-URL: https://github.com/nodejs/node/pull/57852 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "src/api/encoding.cc", "patch": "@@ -144,7 +144,7 @@ MaybeLocal<Value> TryEncode(Isolate* isolate,\n }\n \n MaybeLocal<Value> TryEncode(Isolate* isolate, const uint16_t* buf, size_t len) {\n- return StringBytes::Encode(isolate, buf, len).ToLocalChecked();\n+ return StringBytes::Encode(isolate, b...
2025-04-21T03:01:30
rust-lang/rust
c1d0e35db07f961803781cd3e7e49b452056a116
6c28ca91011e8775f859ac87b678d4a39b7e330f
c-b: fix path to CONTRIBUTING.md in README.md
[ { "path": "library/compiler-builtins/compiler-builtins/README.md", "patch": "@@ -22,7 +22,7 @@ See `build.rs` for details.\n \n ## Contributing\n \n-See [CONTRIBUTING.md](CONTRIBUTING.md).\n+See [CONTRIBUTING.md](../CONTRIBUTING.md).\n \n ## Progress\n ", "additions": 1, "deletions": 1, "languag...
2026-03-06T09:47:22
vercel/next.js
b57c8a16a38a6cc535fe348672ea790643413c1a
84de02c4200696c1dee754e0816c6551dd8d027d
Preserve interception markers in parameter types (#85526) ### What? This PR preserves the specific interception route markers in dynamic parameter types throughout the routing system. ### Why? Previously, the code only tracked whether a parameter was intercepted (using generic types like `'dynamic-intercepted'` or ...
[ { "path": "packages/next/src/build/static-paths/app.ts", "patch": "@@ -596,7 +596,10 @@ export function resolveParallelRouteParams(\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n- case 'catchall-intercepted':\n+ case 'catchall-intercepte...
2025-10-31T21:57:04
electron/electron
0d948da4b98b0d52115e5be4d047b8f81d857b98
2cf59b38858f1162172f9d5aeacba2396855d59d
chore: bump chromium to 132.0.6787.0 (main) (#44329) * chore: bump chromium in DEPS to 132.0.6785.0 * chore: bump chromium in DEPS to 132.0.6787.0 * 5837702: mac fullscreen: always show traffic lights https://chromium-review.googlesource.com/c/chromium/src/+/5837702 * 5892572: Move SimpleMenuModel out of u...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6783.0',\n+ '132.0.6787.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-10-21T00:02:21
facebook/react
527bcaa83d9d31e848ca1bea1a5b8532ab361527
e7e269b7265ec94929a53f4d402037261c87cf44
[compiler] patch: rewrite scope dep/decl in inlineJsxTransform (#31431) This bugfix is needed to land #31199 PropagateScopeDepsHIR infers scope declarations for the `inline-jsx-transform` test fixture (the non-hir version does not). These declarations must get the rewritten phi identifiers --- [//]: # (BEGIN SA...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InlineJsxTransform.ts", "patch": "@@ -383,6 +383,30 @@ export function inlineJsxTransform(\n mapTerminalOperands(block.terminal, place =>\n handlePlace(place, blockId, inlinedJsxDeclarations),\n );\n+\n+ if (block.ter...
2024-11-05T20:27:39
golang/go
d4830c61301a32ad9373bc30c5fd6196c3567f61
e1ca1de1234aa0f6be85c97db5492a94b099a305
cmd/internal/obj: fix Link.Diag printf errors go1.26's vet printf checker can associate the printf-wrapper property with local vars and struct fields if they are assigned from a printf-like func literal (CL 706635). This leads to better detection of mistakes. Change-Id: I604be1e200aa1aba75e09d4f36ab68c1dba3b8a3 Revie...
[ { "path": "src/cmd/internal/obj/arm/asm5.go", "patch": "@@ -579,7 +579,7 @@ func span5(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tif int64(pc) > p.Pc {\n-\t\t\tctxt.Diag(\"PC padding invalid: want %#d, has %#d: %v\", p.Pc, pc, p)\n+\t\t\tctxt.Diag(\"PC padding invalid: want ...
2025-10-08T16:19:14
rust-lang/rust
20404bf4a65c3c41391790ace10310a02fec8a05
bbc45c16c49573a4d0553ff4fa6e5be720da4df4
Split out linker-info from linker-messages - Hide common linker output behind `linker-info` - Add tests - Account for different capitalization on windows-gnu when removing "warning" prefix - Add some more comments - Add macOS deployment-target test - Ignore linker warnings from trying to statically link glibc I d...
[ { "path": "compiler/rustc_codegen_ssa/src/back/link.rs", "patch": "@@ -22,6 +22,7 @@ use rustc_errors::DiagCtxtHandle;\n use rustc_fs_util::{TempDirBuilder, fix_windows_verbatim_for_gcc, try_canonicalize};\n use rustc_hir::attrs::NativeLibKind;\n use rustc_hir::def_id::{CrateNum, LOCAL_CRATE};\n+use rustc_l...
2025-12-12T22:17:24
vercel/next.js
7d9c12591624dccd090cf5585f99d160c652a4c6
40102ab5ad345ca17290c161ccbe89dc8b7e1495
Turbopack: fix Scope holding Arc too long (#85611) ### What? Turbo tasks Arc should be dropped before returning to the caller
[ { "path": "turbopack/crates/turbo-tasks/src/scope.rs", "patch": "@@ -195,8 +195,17 @@ impl<'scope, 'env: 'scope, R: Send + 'env> Scope<'scope, 'env, R> {\n assert!(index < self.results.len(), \"Too many tasks spawned\");\n let result_cell: &Mutex<Option<R>> = &self.results[index];\n \n+ ...
2025-10-31T15:16:54
nodejs/node
2e0ec72f54afc3afdf8a27418e75398a8adcc308
7102ea1559eb7e84d39bcc4057db9ea09befe090
sqlite: add getter to detect transactions This commit adds an isTransaction getter to the DatabaseSync class for determining if the database is currently within a transaction. Fixes: https://github.com/nodejs/node/issues/57922 PR-URL: https://github.com/nodejs/node/pull/57925 Reviewed-By: Edy Silva <edigleyssonsilva@...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -291,6 +291,15 @@ added: v23.11.0\n \n * {boolean} Whether the database is currently open or not.\n \n+### `database.isTransaction`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* {boolean} Whether the database is currently within a transaction. This method\n+ is ...
2025-04-20T15:57:42
electron/electron
35aeab6ecd273459052b23f72cb7fb7cfd97dd3a
738533dec706a68d73d747daed7b23eb650675e5
fix: respect setAlwaysOnTop before showInactive on Linux under X11 (#44078) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -538,6 +538,11 @@ void NativeWindowViews::ShowInactive() {\n #if BUILDFLAG(IS_LINUX)\n if (global_menu_bar_)\n global_menu_bar_->OnWindowMapped();\n+\n+ // On X11, setting Z order before showing the window doesn't take effect,\n+ // so w...
2024-10-18T18:29:52
facebook/react
e7e269b7265ec94929a53f4d402037261c87cf44
dd1a021bad0908d3ad7ba4314ca9a39173d7758f
[compiler] bugfix for hoistable deps for nested functions (#31345) `PropertyPathRegistry` is responsible for uniqueing identifier and property paths. This is necessary for the hoistability CFG merging logic which takes unions and intersections of these nodes to determine a basic block's hoistable reads, as a functi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -1,5 +1,6 @@\n import {CompilerError} from '../CompilerError';\n import {inRange} from '../ReactiveScopes/InferReactiveScopeVariables';\n+import {printDependency} from '../ReactiveScopes/PrintRea...
2024-11-05T20:25:54
golang/go
bb1ca7ae81ea8ca49a2773ace8ccff8fbc7f4dfd
162392773085d4cc12072200853a0424117983c0
cmd/go, testing: add TB.ArtifactDir and -artifacts flag Add TB.ArtifactDir, which returns a directory for a test to store output files in. Add a -artifacts testflag which enables persistent storage of artifacts in the output directory (-outputdir, or the current directory by default). Fixes #71287 Change-Id: I5f6515...
[ { "path": "api/next/71287.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) ArtifactDir() string #71287\n+pkg testing, method (*F) ArtifactDir() string #71287\n+pkg testing, method (*T) ArtifactDir() string #71287\n+pkg testing, type TB interface, ArtifactDir() string #71287", "additions": 4, ...
2025-08-15T22:24:05
rust-lang/rust
6c28ca91011e8775f859ac87b678d4a39b7e330f
44ee391300a7cc4623410145e4aca511cd2bd00e
meta: Allow or fix `unused_features` These warnings are showing up on the most recent nightly: error: feature `f128` is declared but not used --> builtins-test/tests/addsub.rs:3:35 | 3 | #![cfg_attr(f128_enabled, feature(f128))] | ^^^^ It isn't always easy t...
[ { "path": "library/compiler-builtins/builtins-test-intrinsics/src/main.rs", "patch": "@@ -3,7 +3,7 @@\n // compiling a C implementation and forget to implement that intrinsic in Rust, this file will fail\n // to link due to the missing intrinsic (symbol).\n \n-#![allow(internal_features)]\n+#![allow(interna...
2026-03-06T04:54:40
nodejs/node
7102ea1559eb7e84d39bcc4057db9ea09befe090
25842c5e35efb45df169e591c775a3c4f853556d
os: fix netmask format check condition in getCIDR function Modified to check the format of the netmask instead of just checking that each part of the netmask is even PR-URL: https://github.com/nodejs/node/pull/57324 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/util.js", "patch": "@@ -8,6 +8,7 @@ const {\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeCall,\n+ NumberParseInt,\n ObjectDefineProperties,\n ObjectDefineProperty,\n ObjectFreeze,\n@@ -33,7 +34,9 @@ const {\n SafeSet,\n SafeWeakMap,\n SafeWeakRef,\n+ Stri...
2025-04-20T05:54:48
vercel/next.js
40102ab5ad345ca17290c161ccbe89dc8b7e1495
e7fe28ccc81a8d5f5acf8550e9f2bf3f9a717a0a
Turbopack: Fix compound assignment expression evaluation (#85478) (#85593) Migrated from https://github.com/vercel/next.js/pull/85478 into this non-fork because we had some issues with our CI infra that should be fixed going forward: https://vercel.slack.com/archives/C04KC8A53T7/p1761862171772939 --- fixes #854...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -802,7 +802,10 @@ impl EvalContext {\n ..\n }) => JsValue::WellKnownObject(WellKnownObjectKind::ImportMeta),\n \n- Expr::Assign(AssignExpr { right, .. }) => self.eval(right),\n+ ...
2025-10-31T13:30:03
electron/electron
ac09d11ed19af686fa855aceec42cea021604b65
9280add5b45edbcf39630bae00d78653f3afe213
build: fix main printing patch conflict (#44302) build: update patches
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -926,23 +926,3 @@ index 1e15568ad872c01c7c588ced81897f8dc229247a..ca528863a2dab2f437bbe95b343ccd33\n namespace sandbox::policy {\n \n base::FilePath GetCanonicalPath(const base::FilePath& path) {\n-diff --git a/ui/gtk/gtk_util.cc b/ui/gtk/gtk_util...
2024-10-17T15:29:04
golang/go
a1661e776f57602b4d4470389a0246f9784fd722
cb81270113968408d7cc41c0b1530adb51dd8496
Revert "crypto/internal/fips140/subtle: add assembly implementation of xorBytes for mips64x" This reverts commit 49d6777d87a0abb3eda032da95eff024156835f7. Reason for revert: doesn't handle unaligned accesses correctly Fixes #74998 Change-Id: Ia272245a6a2a91b305d411207430bad660ee355b Reviewed-on: https://go-review.g...
[ { "path": "src/crypto/internal/fips140/subtle/xor_asm.go", "patch": "@@ -2,7 +2,7 @@\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:build (amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64) && !purego\n+//go:build (amd6...
2025-10-07T17:15:43
rust-lang/rust
b4f9fac51ab760950f2ceae27660e8f6293aa3b4
80af4486c71f3b4d09f4d41584370c4437aa1c94
perf: smol_str — avoid redundant work in eq feat: add missing APIs to smol_str docs: Improve safety documentation fix: borsh deserialization off-by-one for inline threshold
[ { "path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs", "patch": "@@ -16,7 +16,7 @@ impl BorshDeserialize for SmolStr {\n #[inline]\n fn deserialize_reader<R: Read>(reader: &mut R) -> borsh::io::Result<Self> {\n let len = u32::deserialize_reader(reader)?;\n- if (len as usize) <...
2026-03-06T08:01:13
facebook/react
156eab2f7b34fe78ef26a1752f95bfdc2092819d
b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949
Fork the "empty" prepareStackTrace case for Server builds (#31427) We don't actually want the source mapped version of `.stack` from errors because that would cause us to not be able to associate it with a source map in the UIs that need it. The strategy in browsers is more correct where the display is responsible ...
[ { "path": "packages/react-server/src/ReactFlightStackConfigV8.js", "patch": "@@ -9,18 +9,7 @@\n \n import type {ReactStackTrace} from 'shared/ReactTypes';\n \n-function prepareStackTrace(\n- error: Error,\n- structuredStackTrace: CallSite[],\n-): string {\n- const name = error.name || 'Error';\n- const ...
2024-11-05T20:05:04
vercel/next.js
e7fe28ccc81a8d5f5acf8550e9f2bf3f9a717a0a
c22f05b94e747475f8b12fa53a2c45d648c67a45
Turbopack: fix hanging dev server and builds with fs cache (#85606) ### What? Fixes a deadlock due to concurrent task locks. Also adds a debug check to prevent this in future.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -469,11 +469,17 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.assert_not_persistent_calling_transient(reader, task_id, /* cell_id */ None);\n \n let mut ctx = self.execute_context(turbo_tasks);\...
2025-10-31T13:27:08
nodejs/node
609df89cd35ce68f40c75c0717e6635d928551ed
e273ddf7a490ee5bec7bd485a78963e9087a4fcc
http2: session tracking and graceful server close This change adds proper tracking of HTTP / 2 server sessions to ensure they are gracefully closed when the server is shut down.It implements: - A new kSessions symbol for tracking active sessions - Adding/removing sessions from a SafeSet in the server - A closeAllSess...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -251,6 +251,7 @@ const kServer = Symbol('server');\n const kState = Symbol('state');\n const kType = Symbol('type');\n const kWriteGeneric = Symbol('write-generic');\n+const kSessions = Symbol('sessions');\n \n const {\n kBitfield,\n@@ -1126,9 +1127,13 ...
2025-03-21T21:42:25
golang/go
f7a68d3804efabd271f0338391858bc1e7e57422
463165699d874ef0ac7965fc5788fe1693eaae9a
archive/tar: set a limit on the size of GNU sparse file 1.0 regions Sparse files in tar archives contain only the non-zero components of the file. There are several different encodings for sparse files. When reading GNU tar pax 1.0 sparse files, archive/tar did not set a limit on the size of the sparse region data. A ...
[ { "path": "src/archive/tar/common.go", "patch": "@@ -39,6 +39,7 @@ var (\n \terrMissData = errors.New(\"archive/tar: sparse file references non-existent data\")\n \terrUnrefData = errors.New(\"archive/tar: sparse file contains unreferenced data\")\n \terrWriteHole = errors.New(\"archive/t...
2025-09-11T20:32:10
rust-lang/rust
a62c6717ff4da33ac304aaebdbb19547b82a9f60
69370dc4a8862b8401615a2a7b950704ba66c495
bootstrap.py: fix typo "parallle"
[ { "path": "src/bootstrap/bootstrap.py", "patch": "@@ -696,7 +696,7 @@ def download_toolchain(self):\n for download_info in tarballs_download_info:\n download_component(download_info)\n \n- # Unpack the tarballs in parallle.\n+ # Unpack the tarballs in parall...
2026-03-06T07:39:05
electron/electron
9280add5b45edbcf39630bae00d78653f3afe213
44c398fedbb90a1f239f719c651938a28c5d9a08
chore: fixup reclient read only access on forks (#44280)
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=33dc5186556bfbf7b0121a00cdd89ed3802e47da\n+ export BUILD_TOOLS_SHA=eeb1a11392e4cec08fd926c93b31ab556dc0c23b\n n...
2024-10-17T15:17:54
vercel/next.js
b8a14cd8f9b1abd8e4f7abb35c0e7d9e1b6d3af5
3b0af3ce56c83c2917761c1e09e3e00d201c4b31
Turbopack: add track_caller to improve panics (#85565) ### What? Helps finding Item does not exist or access type errors
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/mod.rs", "patch": "@@ -382,6 +382,7 @@ impl<B: BackingStorage> TaskGuardImpl<'_, B> {\n /// Verify that the task guard restored the correct category\n /// before accessing the data.\n #[inline]\n+ #[track_caller]\n fn c...
2025-10-31T12:06:19
nodejs/node
2acc8bc6a9a830b38d101ac70390b8c5c9a14bf3
2cff98c853d780b80d757087387e14792f2f45d8
http2: fix graceful session close Fix issue where session.close() prematurely destroys the session when response.end() was called with an empty payload while active http2 streams still existed. This change ensures that sessions are closed gracefully only after all http2 streams complete and clients properly receive th...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1068,6 +1068,7 @@ function setupHandle(socket, type, options) {\n if (typeof options.selectPadding === 'function')\n this[kSelectPadding] = options.selectPadding;\n handle.consume(socket._handle);\n+ handle.ongracefulclosecomplete = this[kMaybeD...
2025-04-19T16:36:03
facebook/react
b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949
33c7bd9ae3b4f998a477fe0ea8ebdf2f2ee8a144
[cleanup] Remove compiler runtime-compat fixture library (#31430) There's no real reason to keep this around anymore now that the compiler beta is released and we have validated that react-compiler-runtime is [usable by libraries](https://www.npmjs.com/package/react-compiler-runtime?activeTab=dependents). Let's ...
[ { "path": "compiler/fixtures/runtime-compat/README.md", "patch": "@@ -1 +0,0 @@\n-Reference library compiled with React Compiler.", "additions": 0, "deletions": 1, "language": "Markdown" }, { "path": "compiler/fixtures/runtime-compat/app-18/.gitignore", "patch": "@@ -1,24 +0,0 @@\n-#...
2024-11-05T19:14:39
golang/go
463165699d874ef0ac7965fc5788fe1693eaae9a
5ede095649db7783726c28390812bca9ce2c684a
net/mail: avoid quadratic behavior in mail address parsing RFC 5322 domain-literal parsing built the dtext value one character at a time with string concatenation, resulting in excessive resource consumption when parsing very large domain-literal values. Replace with a subslice. Benchmark not included in this CL bec...
[ { "path": "src/net/mail/message.go", "patch": "@@ -724,7 +724,8 @@ func (p *addrParser) consumeDomainLiteral() (string, error) {\n \t}\n \n \t// Parse the dtext\n-\tvar dtext string\n+\tdtext := p.s\n+\tdtextLen := 0\n \tfor {\n \t\tif p.empty() {\n \t\t\treturn \"\", errors.New(\"mail: unclosed domain-lite...
2025-09-25T21:41:53
electron/electron
cbe3cb770aa3f2dad92340546e3fbdecd742ed03
bd4ea5ba72574bbe1be39d6b658676b8aa390f5c
fix: Linux crash after `webContents.print()` with no parent window (#44246) fix: Linux crash after print with no parent window
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -926,3 +926,23 @@ index 1e15568ad872c01c7c588ced81897f8dc229247a..ca528863a2dab2f437bbe95b343ccd33\n namespace sandbox::policy {\n \n base::FilePath GetCanonicalPath(const base::FilePath& path) {\n+diff --git a/ui/gtk/gtk_util.cc b/ui/gtk/gtk_util...
2024-10-16T17:15:21
facebook/react
4d577fd216735384a262cbacdcbc5cda18626497
7c8e5e7ab8bb63de911637892392c5efd8ce1d0f
More Unit Tests for Refs in Hidden Subtrees (#31404) ## Summary While fixing ref lifecycles in hidden subtrees in https://github.com/facebook/react/pull/31379, @rickhanlonii noticed that we could also add more unit tests for other types of tags to prevent future regressions during code refactors. This PR adds...
[ { "path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js", "patch": "@@ -430,6 +430,131 @@ describe('ReactFreshIntegration', () => {\n await patch(code);\n });\n \n+ // @gate __DEV__ && enableActivity\n+ it('ignores ref for functional component in hidden subtree', async ...
2024-11-04T15:46:28
nodejs/node
2cff98c853d780b80d757087387e14792f2f45d8
733e0fc2c4d01a3613f157de475e0204bc9a7aad
build: fix missing files warning This commit fixes the following warning: Warning: Missing input files: C:\Users\lpinca\node\tools\v8_gypfiles\..\..\deps\v8\third_party\abseil-cpp\absl\strings\internal\has_absl_stringify.h C:\Users\lpinca\node\deps\ncrypto\dh-primes.h https://github.com/nodejs/node/commi...
[ { "path": "deps/ncrypto/ncrypto.gyp", "patch": "@@ -2,7 +2,6 @@\n 'variables': {\n 'ncrypto_sources': [\n 'engine.cc',\n- 'dh-primes.h',\n 'ncrypto.cc',\n 'ncrypto.h',\n ],", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "tools/v8_gyp...
2025-04-19T15:22:06
electron/electron
bd4ea5ba72574bbe1be39d6b658676b8aa390f5c
af6e2fb257d81d6ea216f773f1fb671bf2fb7849
fix: use proper PDF save approach (#44248)
[ { "path": "patches/chromium/fix_crash_when_saving_edited_pdf_files.patch", "patch": "@@ -13,54 +13,128 @@ This patch can be removed should we choose to support chrome.fileSystem\n or support it enough to fix the crash.\n \n diff --git a/chrome/browser/resources/pdf/pdf_viewer.ts b/chrome/browser/resources/p...
2024-10-16T15:33:21
golang/go
5ede095649db7783726c28390812bca9ce2c684a
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
net/textproto: avoid quadratic complexity in Reader.ReadResponse Reader.ReadResponse constructed a response string from repeated string concatenation, permitting a malicious sender to cause excessive memory allocation and CPU consumption by sending a response consisting of many short lines. Use a strings.Builder to c...
[ { "path": "src/net/textproto/reader.go", "patch": "@@ -285,8 +285,10 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err\n //\n // An expectCode <= 0 disables the check of the status code.\n func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {...
2025-09-30T22:11:16
vercel/next.js
2704e8bd54f79eac5cac80769d34d4d38b56f08d
281a6c00fc0d949334be04bec3b5fa17c6533f39
[turbopack] Support relative paths in turbopack source maps. (#85146) ### What Add an option to turbopack to render sourcemap relative file paths in source maps For now this is unused since it requires some support in next to be added in #85576 ### Why This will be useful for server source maps because it enables n...
[ { "path": "crates/next-core/src/mode.rs", "patch": "@@ -58,10 +58,7 @@ impl NextMode {\n }\n \n pub fn is_production(&self) -> bool {\n- match self {\n- NextMode::Development => false,\n- NextMode::Build => true,\n- }\n+ !self.is_development()\n }\n \n ...
2025-10-31T09:35:54
facebook/react
7c8e5e7ab8bb63de911637892392c5efd8ce1d0f
16409d0560863dac41880bd308dea6efee46087a
Reenable lazy context propagation (#31405) Reverts facebook/react#31403 to reenable lazy context propagation The disabling was to produce a build that could help track down whether this flag is causing a possibly related bug in transitions but we don't intend to disable it just fix forward once we figure out what...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = false;\n+export const enableLazyContextPropagation = true;\n \n // Expose unstable useCo...
2024-11-01T22:17:51
nodejs/node
733e0fc2c4d01a3613f157de475e0204bc9a7aad
2b76dca0fa86093d94e4f58f30ebcf357d64bbc0
assert,util: fix constructor lookup in deep equal comparison The latest performance optimization did not take into account that an object may have a property called constructor. This is addressed in this PR by adding a new fast path and using fallbacks. PR-URL: https://github.com/nodejs/node/pull/57876 Reviewed-By: J...
[ { "path": "benchmark/assert/deepequal-prims-and-objs-big-loop.js", "patch": "@@ -10,6 +10,7 @@ const notCircular = {};\n notCircular.circular = {};\n \n const primValues = {\n+ 'null_prototype': { __proto__: null },\n 'string': 'abcdef',\n 'number': 1_000,\n 'boolean': true,\n@@ -24,6 +25,7 @@ const ...
2025-04-19T11:10:40
rust-lang/rust
06f959c6e6b956b6c996cfdc844815caf5f99bc1
debbabedb3637aa7643f012019e85a5c40fc43f8
fix clippy on master
[ { "path": "src/tools/rust-analyzer/xtask/src/codegen/grammar/ast_src.rs", "patch": "@@ -189,9 +189,9 @@ pub(crate) fn generate_kind_src(\n }\n }\n });\n- PUNCT.iter().zip(used_puncts).filter(|(_, used)| !used).for_each(|((punct, _), _)| {\n+ if let Some(punct) = PUNCT.iter().zi...
2026-03-06T01:40:59
golang/go
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
encoding/pem: make Decode complexity linear Because Decode scanned the input first for the first BEGIN line, and then the first END line, the complexity of Decode is quadratic. If the input contained a large number of BEGINs and then a single END right at the end of the input, we would find the first BEGIN, and then s...
[ { "path": "src/encoding/pem/pem.go", "patch": "@@ -37,7 +37,7 @@ type Block struct {\n // line bytes. The remainder of the byte array (also not including the new line\n // bytes) is also returned and this will always be smaller than the original\n // argument.\n-func getLine(data []byte) (line, rest []byte)...
2025-09-30T18:16:56
electron/electron
af6e2fb257d81d6ea216f773f1fb671bf2fb7849
df45474b58c85df982ed94168f032bc7d880b4e1
fix: trace-startup crashing child process on macOS (#44257)
[ { "path": "shell/app/electron_library_main.mm", "patch": "@@ -23,6 +23,13 @@ int ElectronMain(int argc, char* argv[]) {\n params.argc = argc;\n params.argv = const_cast<const char**>(argv);\n electron::ElectronCommandLine::Init(argc, argv);\n+\n+ // Ensure that Bundle Id is set before ContentMain.\n+...
2024-10-16T15:03:00
vercel/next.js
d349bd08949737c38f162e9d2b44688751a36cea
2f052b16f64ccf68d749b8ca8b07325d338db3a4
[test]: fix broken scroll restoration test (#85599)
[ { "path": "test/integration/scroll-back-restoration/test/index.test.js", "patch": "@@ -8,7 +8,7 @@ import {\n launchApp,\n nextStart,\n nextBuild,\n- check,\n+ retry,\n } from 'next-test-utils'\n \n const appDir = join(__dirname, '../')\n@@ -35,17 +35,15 @@ const runTests = () => {\n \n await br...
2025-10-31T09:22:16
nodejs/node
63640eb32d58b313b8513a1a431237324394429d
52d95f53e466016120048fb43b3732ff9089ecd7
src: fix typo in comments PR-URL: https://github.com/nodejs/node/pull/57868 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com> Reviewed-By: ...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1295,7 +1295,7 @@ void DatabaseSync::AggregateFunction(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n- // Subract 1 because the first argument is the aggregate value.\n+ // Subtract 1 because the first argument is the aggregate val...
2025-04-19T09:33:47
golang/go
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
7dd54e1fd7f3a25fccbb5c6ab7066e2baad23e66
net/url: enforce stricter parsing of bracketed IPv6 hostnames - Previously, url.Parse did not enforce validation of hostnames within square brackets. - RFC 3986 stipulates that only IPv6 hostnames can be embedded within square brackets in a URL. - Now, the parsing logic should strictly enforce that only IPv6 hos...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -237,7 +237,6 @@ var depsRules = `\n \t internal/types/errors,\n \t mime/quotedprintable,\n \t net/internal/socktest,\n-\t net/url,\n \t runtime/trace,\n \t text/scanner,\n \t text/tabwriter;\n@@ -300,6 +299,12 @@ var depsRules = `\n \tFMT\n \t< tex...
2025-08-29T17:35:55
facebook/react
16409d0560863dac41880bd308dea6efee46087a
b7e21579220042c0a60179e2f40f121684e637eb
temporarily disable lazy context propagation (#31403) disables lazy context propagation in oss to help determine if it is causing bugs in startTransition. Will reenable after cutting a canary release with this flag disabled
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = true;\n+export const enableLazyContextPropagation = false;\n \n // Expose unstable useCo...
2024-11-01T22:16:26
vercel/next.js
856dc4f0b610f2d7c56416647722f79c214258fd
137dbec701dee2b6b09d2d97b0f98665b6a148d5
Update parallel routes in build-complete (#85546) This fixes parallel routes being considered separate outputs with the same pathname in the adapters build-complete hook and instead merges them into the same output combining the necessary outputs.
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -966,6 +966,18 @@ export async function handleBuildComplete({\n return {} as Record<string, string>\n }\n )\n+\n+ // If this is a parallel route we just need to merge\n+ // the a...
2025-10-30T22:58:43
nodejs/node
9d6626a37eb4e786f0accc378ad5b1659757419a
d8e9e05a27b732a4f3657c05755d3d01d2ce1003
lib: fix AbortSignal.any() with timeout signals PR-URL: https://github.com/nodejs/node/pull/57867 Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -259,14 +259,30 @@ class AbortSignal extends EventTarget {\n if (!signalsArray.length) {\n return resultSignal;\n }\n+\n const resultSignalWeakRef = new SafeWeakRef(resultSignal);\n resultSignal[kSourceSignals] = new SafeSet();...
2025-04-17T14:28:36
golang/go
3ee761739b0cbb074f5a6e8b28b491664ec1414a
8709a41d5ef7321f486a1857f189c3fee20e8edd
runtime: free spanQueue on P destroy Span queues must be empty when destroying a P since we are outside of the mark phase. But we don't actually free them, so they simply sit around using memory. More importantly, they are still in work.spanSPMCs.all, so freeDeadSpanSPMCs must continue traversing past them until the e...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -618,6 +618,40 @@ func (q *spanQueue) refill(r *spanSPMC) objptr {\n \treturn q.tryGetFast()\n }\n \n+// destroy frees all chains in an empty spanQueue.\n+//\n+// Preconditions:\n+// - World is stopped.\n+// - GC is outside of the mark phase.\n+// ...
2025-10-06T21:28:37
facebook/react
b7e21579220042c0a60179e2f40f121684e637eb
ea3ac586693014e882655728fc8396ecb1d6cf6e
[Flight] Handle errors during JSON stringify of console values (#31391) When we serialize debug info we should never error even though we don't currently support everything being serialized. Since it's non-essential dev information. We already handle errors in the replacer but not when errors happen in the JSON ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -3146,6 +3146,65 @@ describe('ReactFlight', () => {\n expect(ownerStacks).toEqual(['\\n in App (at **)']);\n });\n \n+ // @gate enableServerComponentLogs && __DEV__\n+ it('replays logs with cyclic objects', async ()...
2024-10-31T20:47:51
vercel/next.js
137dbec701dee2b6b09d2d97b0f98665b6a148d5
1db1762a67771d6b247a46a83396abcac13939e8
Turbopack: chore: Remove some dead MagicAny serialization code from turbo_tasks::value (#85577) Noticed this was dead while I was looking through how we might integrate bincode. We only ever use `any_serialization` and not `magic_serialization`. In theory, `magic_serialization` is slightly better because it can inclu...
[ { "path": "turbopack/crates/turbo-tasks/src/value_type.rs", "patch": "@@ -2,24 +2,18 @@ use std::{\n any::{Any, type_name},\n fmt::{self, Debug, Display, Formatter},\n hash::Hash,\n- sync::Arc,\n };\n \n use auto_hash_map::{AutoMap, AutoSet};\n use serde::{Deserialize, Serialize};\n use traci...
2025-10-30T22:15:27
nodejs/node
d8e9e05a27b732a4f3657c05755d3d01d2ce1003
33d8e03d9dfb934cf4821feb93f2d38690981480
util: fix formatting of objects with built-in Symbol.toPrimitive Fixes: https://github.com/nodejs/node/issues/57818 PR-URL: https://github.com/nodejs/node/pull/57832 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -436,7 +436,7 @@ corresponding argument. Supported specifiers are:\n \n * `%s`: `String` will be used to convert all values except `BigInt`, `Object`\n and `-0`. `BigInt` values will be represented with an `n` and Objects that\n- have no user defined `toString` f...
2025-04-17T13:35:56
golang/go
8709a41d5ef7321f486a1857f189c3fee20e8edd
9b9d02c5a015910ce57024788de2ff254c6cfca6
encoding/asn1: prevent memory exhaustion when parsing using internal/saferio Within parseSequenceOf, reflect.MakeSlice is being used to pre-allocate a slice that is needed in order to fully validate the given DER payload. The size of the slice allocated are also multiple times larger than the input DER: - When using ...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -22,6 +22,7 @@ package asn1\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"math\"\n \t\"math/big\"\n \t\"reflect\"\n@@ -666,10 +667,17 @@ func parseSequenceOf(bytes []byte, sliceType reflect.Type, elemType reflect.Type\n \t\toffset +=...
2025-09-03T13:30:56
facebook/react
ea3ac586693014e882655728fc8396ecb1d6cf6e
603e6108f39c6663ec703eed34a89ff1bf0cb70c
Fix Ref Lifecycles in Hidden Subtrees (#31379) ## Summary We're seeing certain situations in React Native development where ref callbacks in `<Activity mode="hidden">` are sometimes invoked exactly once with `null` without ever being called with a "current" value. This violates the contract for refs because re...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -1325,7 +1325,9 @@ function commitDeletionEffectsOnFiber(\n }\n case ScopeComponent: {\n if (enableScopeAPI) {\n- safelyDetachRef(deletedFiber, nearestMountedAncestor);\n+ if (!offscreenSubtreeWasHidd...
2024-10-31T20:24:45
rust-lang/rust
6b7dbff2356b7dccc078c374ddcfad710d03810a
4d314065a4e3e8d9b6823948c98a3441f5e2b55a
coretest in miri: fix using unstable libtest features
[ { "path": "src/bootstrap/src/core/build_steps/test.rs", "patch": "@@ -741,7 +741,13 @@ impl Step for Miri {\n \n // Run it again for mir-opt-level 4 to catch some miscompilations.\n if builder.config.test_args().is_empty() {\n- cargo.env(\"MIRIFLAGS\", \"-O -Zmir-opt-level=4 -Cdeb...
2026-03-05T21:09:35
vercel/next.js
e7fbab4daa58e5d502ffa4963c9a6f1698a0f194
e58657f6bdc15919ab74e700b388daff4e4cf9bf
Turbopack: Make tasks deterministic (#85524) ### What? Fix Equal implementation on a bunch of structs. Make tasks deterministic
[ { "path": "turbopack/crates/turbopack-core/src/changed.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use turbo_tasks::{\n Completion, Completions, ResolvedVc, TryJoinIterExt, Vc,\n- graph::{GraphTraversal, NonDeterministic},\n+ graph::{AdjacencyMap, GraphTraversal, NonDeterministic},\n };...
2025-10-30T12:55:50
electron/electron
df45474b58c85df982ed94168f032bc7d880b4e1
b5acebf3bacb9fcaddf132243847aac2265c9d40
fix: ensure `utilityProcess` only emits one 'exit' event (#44243) fix: ensure utilityProcess only emits one exit
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -247,12 +247,16 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n }\n \n void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+ // HandleTermination is called from multiple callsites,\n+ // we need to ensure...
2024-10-16T08:47:12
facebook/react
0bc30748730063e561d87a24a4617526fdd38349
02c0e824e462c7f81ba79d95cfc41c89c6d81b95
Capture the source and not just the stack on first seen error (#31367) Otherwise we can't capture the owner stack at the right location when there's a rethrow.
[ { "path": "packages/react-noop-renderer/src/createReactNoop.js", "patch": "@@ -81,6 +81,8 @@ type TextInstance = {\n type HostContext = Object;\n type CreateRootOptions = {\n unstable_transitionCallbacks?: TransitionTracingCallbacks,\n+ onUncaughtError?: (error: mixed, errorInfo: {componentStack: string}...
2024-10-28T20:59:38
golang/go
9b9d02c5a015910ce57024788de2ff254c6cfca6
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
net/http: add httpcookiemaxnum GODEBUG option to limit number of cookies parsed When handling HTTP headers, net/http does not currently limit the number of cookies that can be parsed. The only limitation that exists is for the size of the entire HTTP header, which is controlled by MaxHeaderBytes (defaults to 1 MB). U...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,16 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.26\n+\n+Go 1.26 added a new `httpcookiemaxnum` setting that controls the m...
2025-09-30T18:02:38
vercel/next.js
e51b136afb13d98c8a2598153ca383c101f28583
d7d9790027512c7047a31ddbfc94afdb1d4fea30
[test] Consolidate identical snapshots across different bundlers (#85532) I noticed that we fixed some of the differences in error stacks and source frames between bundlers, which allows us to consolidate duplicate snapshots. To accomplish this, I asked Claude to write an AST-based script to find and deduplicate the a...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -111,38 +111,20 @@ describe('Cache Components Errors', () => {\n { isMinified: !isDebugPrerender }\n )\n \n- if (isTurbopack) {\n- if (isDebugPrerender) {\n- ...
2025-10-30T10:36:42
electron/electron
b5acebf3bacb9fcaddf132243847aac2265c9d40
ef84f1365014d0b587659fdae5da6542d1ae296a
fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons() (#44238) * fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons() * fixup! fix: -Wunsafe-buffer-usage warning in ChunkedDataPipeReadableStream (#44211)
[ { "path": "shell/browser/ui/win/taskbar_host.cc", "patch": "@@ -5,6 +5,7 @@\n #include \"shell/browser/ui/win/taskbar_host.h\"\n \n #include <objbase.h>\n+#include <array>\n #include <string>\n \n #include \"base/strings/utf_string_conversions.h\"\n@@ -25,10 +26,10 @@ namespace {\n // From MSDN:\n // https:...
2024-10-15T23:31:44
facebook/react
fe04dbcbc4185d7c9d7afebbe18589d2b681a88c
cae764ce81b1bd6c418e9e23651794b6b09208e8
[compiler] Fix to ref access check to ban ref?.current ghstack-source-id: ea417a468eac2607ce8d1dddcb2e9581e1c4db27 Pull Request resolved: https://github.com/facebook/react/pull/31360
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -214,16 +214,24 @@ function joinRefAccessTypes(...types: Array<RefAccessType>): RefAccessType {\n return b;\n } else if (b.kind === 'None') {\n return a;\n- } else ...
2024-10-25T23:47:19
golang/go
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
6e4007e8cffbb870e6b606307ab7308236ecefb9
crypto/x509: improve domain name verification Don't use domainToReverseLabels to check if domain names are valid, since it is not particularly performant, and can contribute to DoS vectors. Instead just iterate over the name and enforce the properties we care about. This also enforces that DNS names, both in SANs and...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,63 +1456,7 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// An invalid DNS SAN should be detected only at validation time so\n-\t// that we can process CA certificat...
2025-09-15T20:31:22
rust-lang/rust
2093158de7fe26e2f30dfaed1034c3fa79779db0
6f54d591c3116ee7f8ce9321ddeca286810cc142
refactor: move `check_align` to `parse_alignment` * refactor: move `check_align` from check_attrs.rs to `parse_alignment` rel: attribute parser rework * fix: fix error messages * test: fix test * fix: fix invalid error message * ops(test): Fix CI
[ { "path": "compiler/rustc_attr_parsing/src/attributes/repr.rs", "patch": "@@ -1,4 +1,4 @@\n-use rustc_abi::Align;\n+use rustc_abi::{Align, Size};\n use rustc_ast::{IntTy, LitIntType, LitKind, UintTy};\n use rustc_hir::attrs::{IntType, ReprAttr};\n \n@@ -229,7 +229,7 @@ fn parse_repr_align<S: Stage>(\n ...
2026-03-05T18:46:00
vercel/next.js
89cd2058a6b2ff711a7237b0ba5003b73b4649c1
920b2c0073c519d43a6b6b087c08aaf55e9c80b1
[turbopack] Move generation of `cacheLife` types out of the webpack plugin and into the dev bundler directly (#85539) Ensure that users configuring custom `cacheLife` configs with Typescript get support with turbopack This follows the same pattern as typed-routes, so generation can happen during `next type-gen` and a...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -2155,7 +2155,6 @@ export default async function getBaseWebpackConfig(\n dev,\n isEdgeServer,\n pageExtensions: config.pageExtensions,\n- cacheLifeConfig: config.cacheLife,\n originalRewrites...
2025-10-30T09:42:59
facebook/react
cae764ce81b1bd6c418e9e23651794b6b09208e8
d19ba8ecdd04639630d0ddcf6ed4ce316482a58d
Revert "[Re-land] Make prerendering always non-blocking (#31268)" (#31355) This reverts commit 6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74. It looked like the bug we found on the original land was related to broken product code. But through landing #31268 we found additional bugs internally. Since disabling the feat...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog(gate('enableSiblingPrerende...
2024-10-25T16:17:07
golang/go
6e4007e8cffbb870e6b606307ab7308236ecefb9
6f7926589d03180863aa05cbb55a9d9c63e76b99
crypto/x509: mitigate DoS vector when intermediate certificate contains DSA public key An attacker could craft an intermediate X.509 certificate containing a DSA public key and can crash a remote host with an unauthenticated call to any endpoint that verifies the certificate chain. Thank you to Jakub Ciolek for repor...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -927,7 +927,10 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n \t\tif !bytes.Equal(candidate.RawSubject, cert.RawSubject) {\n \t\t\tcontinue\n \t\t}\n-\t\tif !candidate.PublicKey.(pubKeyEqual).Equal(cert.PublicKey) {\n+\t\t// ...
2025-09-11T20:27:04
nodejs/node
af85f3f169b5ce151ad4662cc74775e8c2973e1d
5077ea41491d555b44675f86502d4a91850dcbfd
repl: fix multiline history editing string order PR-URL: https://github.com/nodejs/node/pull/57874 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -467,9 +467,15 @@ class Interface extends InterfaceConstructor {\n }\n \n // Convert newlines to a consistent format for history storage\n- [kNormalizeHistoryLineEndings](line, from, to) {\n+ [kNormalizeHistoryLineEndings](line, from, to, re...
2025-04-16T15:01:38
vercel/next.js
920b2c0073c519d43a6b6b087c08aaf55e9c80b1
f0b97b7e334ad93f82d63860c9560105c1139cd7
[test] Remove `maxRetries` and `hardError` parameters (#85536)
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -2,7 +2,6 @@ import { FileRef, nextTestSetup } from 'e2e-utils'\n import {\n assertHasRedbox,\n retry,\n- check,\n waitFor,\n getRedboxSource,\n getDistDir,\n@@ -527,17 +526,29 @@ describe('app-dir action handling', () => {\n \...
2025-10-30T09:27:03
electron/electron
36b7cf341e814bc7b7b17440033e68d72d14987b
72802c374b8fa719fbd2ec69cf25079a3db67df3
chore: bump chromium to 131.0.6776.0 (main) (#44137) * chore: bump chromium in DEPS to 131.0.6763.0 * chore: bump chromium in DEPS to 131.0.6764.0 * update patches * chore: bump chromium in DEPS to 131.0.6766.0 * chore: update patches * Use PathInfo in FileSystemAccess code Refs https://chromium-revi...
[ { "path": ".github/workflows/pipeline-segment-electron-build.yml", "patch": "@@ -187,8 +187,8 @@ jobs:\n HELPER=$(node -p \"require('./src/utils/reclient.js').helperPath({})\")\n $HELPER login\n echo 'RBE_service='`node -e \"console.log(require('./src/utils/reclient.js').serviceAddre...
2024-10-15T15:51:11
facebook/react
d19ba8ecdd04639630d0ddcf6ed4ce316482a58d
1631855f4303cc8585205307a56c69e3b7248bb4
[react-compiler-runtime] Support React 17 peer dependency (#31336) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a p...
[ { "path": "compiler/packages/react-compiler-runtime/package.json", "patch": "@@ -9,7 +9,7 @@\n \"src\"\n ],\n \"peerDependencies\": {\n- \"react\": \"^18.2.0 || ^19.0.0\"\n+ \"react\": \"^17.0.0 || ^18.0.0 || ^19.0.0\"\n },\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config...
2024-10-24T18:08:57
golang/go
11d5484190f80823c9b6312fd40f6491e864111b
2e52060084ff170097347457525f0debde91aea9
runtime: fix self-deadlock on sbrk platforms The sbrk mem.go implementation doesn't enforce being called on the systemstack, but it can call back into itself if there's a stack growth. Because the sbrk implementation requires acquiring memlock, it can self-deadlock. For the most part the mem.go API is called on the s...
[ { "path": "src/runtime/mem_sbrk.go", "patch": "@@ -48,13 +48,32 @@ type memHdrPtr uintptr\n func (p memHdrPtr) ptr() *memHdr { return (*memHdr)(unsafe.Pointer(p)) }\n func (p *memHdrPtr) set(x *memHdr) { *p = memHdrPtr(unsafe.Pointer(x)) }\n \n+// memAlloc allocates n bytes from the brk reservation, or if...
2025-10-07T16:10:19
nodejs/node
5077ea41491d555b44675f86502d4a91850dcbfd
4b2b3c01b40b6ccbf80e1d252e0d544397ba00a6
deps: update amaro to 0.5.2 PR-URL: https://github.com/nodejs/node/pull/57871 Fixes: https://github.com/nodejs/node/issues/57471 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "deps/amaro/dist/package.json", "patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.11.15\",\n+ \"version\": \"1.11.21\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",", "ad...
2025-04-16T10:34:19
vercel/next.js
1b9eb60878cabfae1af8673d9a4edbafc170d93a
418cddf7e30e9818bbaaab11c159147defbc7967
[docs] Fix a typo (#85492) Fix a small typo
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx", "patch": "@@ -622,7 +622,7 @@ export const config = {\n \n > **Good to know**:\n >\n-> - Even when `_next/data` is excluded in a negative matcher pattern, proxy will still be invoked for `_next/data` routes. This is intentional behavior...
2025-10-30T04:22:32
electron/electron
566c72cd46a509d5f18a5f35f6d420a5451d51c0
8b3d70a2a34b7fdcf91fdda5566bf2663551ff60
fix: -Wunsafe-buffer-usage warning in ChunkedDataPipeReadableStream (#44211) * chore: rename v8_value_serializer.cc,h to v8_util.cc,h * feat: add electron::util::as_byte_span(v8::Local<v8::ArrayBuffer>) * fix: -Wunsafe-buffer-usage warnings in ChunkedDataPipeReadableStream::ReadInternal() Xref: https://chromi...
[ { "path": "filenames.gni", "patch": "@@ -684,8 +684,8 @@ filenames = {\n \"shell/common/skia_util.cc\",\n \"shell/common/skia_util.h\",\n \"shell/common/thread_restrictions.h\",\n- \"shell/common/v8_value_serializer.cc\",\n- \"shell/common/v8_value_serializer.h\",\n+ \"shell/common/v8_u...
2024-10-14T08:46:24
facebook/react
2dc5bebd46d5254f9a02fd58d408acb33c288639
b4cbdc5a7c18672807e119692f99f1cf751242fd
Fix error handling in `resolveClientReference` (#31332) When a React Server Consumer Manifest does not include an entry for a client reference ID, we must not try to look up the export name (or `'*'`) for the client reference. Otherwise this will fail with `TypeError: Cannot read properties of undefined (reading '....
[ { "path": "packages/react-server-dom-turbopack/src/client/ReactFlightClientConfigBundlerNode.js", "patch": "@@ -62,19 +62,19 @@ export function resolveClientReference<T>(\n metadata: ClientReferenceMetadata,\n ): ClientReference<T> {\n const moduleExports = bundlerConfig[metadata[ID]];\n- let resolvedM...
2024-10-23T15:36:40
nodejs/node
c9c61a3a7da6acf15f1ae7eab1606878d4d2ee0b
0a1d5d353bdd18c8beb30991d77ff2925fc5f767
doc: fix typo in `module.md` PR-URL: https://github.com/nodejs/node/pull/57889 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com>
[ { "path": "doc/api/module.md", "patch": "@@ -1185,7 +1185,7 @@ The final value of `format` must be one of the following:\n | `'commonjs'` | Load a Node.js CommonJS module | {string\\|ArrayBuffer\\|TypedArray\\|null\\|undefined} |\n | `'json'` | Load a JSON fi...
2025-04-14T15:11:29
golang/go
f86ddb54b5b8e4cb30b8fe2f9f3a2c0c172e7c37
c938051dd0b80a5c60572d6807270d06ca685d2e
cmd/go: refactor usage of `ForceUseModules` This commit refactors usage of the global variable `ForceUseModules` to the global LoaderState field of the same name. This commit is part of the overall effort to eliminate global modloader state. [git-generate] cd src/cmd/go/internal/modload rf 'mv State.forceUseModules ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3348,7 +3348,7 @@ func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Pa\n // would cause it to be interpreted differently if it were the main module\n // (replace, exclude).\n func PackagesAndErrorsOutsideModule(ctx contex...
2025-08-20T23:21:56
vercel/next.js
1bca3db0bff3ceb7f78968d18e0f4ad9a393130d
94dfab3fdac5f1631ecf808011756abf7b2b5b09
fix: redirect should always return updated router state (#85533) When a server action triggers a redirect, it will return the RSC payload for the destination state in a single roundtrip. This lets us update the UI without needing to waterfall when getting the target page's data. We reject the server action with a spec...
[ { "path": "packages/next/src/client/components/redirect-boundary.tsx", "patch": "@@ -48,6 +48,13 @@ export class RedirectErrorBoundary extends React.Component<\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\...
2025-10-29T23:02:16
facebook/react
b4cbdc5a7c18672807e119692f99f1cf751242fd
9daabc0bf97805be23f6131be4d84d063a3ff446
remove terser from react-compiler-runtime build (#31326) ## Summary This fixes a minor nit I have about the `react-compiler-runtime` package in that the published code is minified. I assume most consumers will minify their own bundles so there's no real advantage to minifying it as part of the build. For my p...
[ { "path": "compiler/packages/react-compiler-runtime/rollup.config.js", "patch": "@@ -11,7 +11,6 @@ import commonjs from '@rollup/plugin-commonjs';\n import json from '@rollup/plugin-json';\n import path from 'path';\n import process from 'process';\n-import terser from '@rollup/plugin-terser';\n import bann...
2024-10-22T23:49:10
nodejs/node
0a1d5d353bdd18c8beb30991d77ff2925fc5f767
2204587d76dd424b3b1c73f68ade75e0b91b96df
crypto: revert dangerous uses of std::string_view An `std::string_view v` is a `const char* v.data()` along with an `std::size_t v.size()` that guarantees that `v.size()` contiguous elements of type `char` can be accessed relative to the pointer `v.data()`. One of the main reasons behind the existence of `std::strin...
[ { "path": "deps/ncrypto/engine.cc", "patch": "@@ -44,15 +44,15 @@ ENGINE* EnginePointer::release() {\n return ret;\n }\n \n-EnginePointer EnginePointer::getEngineByName(const std::string_view name,\n+EnginePointer EnginePointer::getEngineByName(const char* name,\n ...
2025-04-15T12:09:22
vercel/next.js
c0c75e4aaa8ece2c9e789e2e3f150d7487b60bbc
1e53071f778ac79f78979e497fad40c13dee759f
Avoid proxying React modules through workUnitStore (#85486) Today the `captureOwnerStack()` function is provided to shared utilities through an AsyncLocalStorage that scopes the method from the appropriate React instance. This is so that external code like patches to sync IO methods can still generate errors with the ...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -955,7 +955,6 @@ async function prospectiveRuntimeServerPrerender(\n renderResumeDataCache,\n prerenderResumeDataCache,\n hmrRefreshHash: undefined,\n- captureOwnerStack: undefined,\n // We only need task sequenc...
2025-10-29T16:55:51
facebook/react
9daabc0bf97805be23f6131be4d84d063a3ff446
ae90522bc6ea80d87f22e845024dc82e2c05e3d5
`react-hooks/rules-of-hooks`: Add support for `do/while` loops (#28714) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submittin...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -755,6 +755,30 @@ const tests = {\n `,\n errors: [loopError('useHookInsideLoop')],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because it's dangerous and might not warn othe...
2024-10-22T20:07:10
golang/go
c938051dd0b80a5c60572d6807270d06ca685d2e
64699542031b994ec4fdb6de887a94b69a372f9b
Revert "cmd/compile: redo arm64 LR/FP save and restore" This reverts commit 719dfcf8a8478d70360bf3c34c0e920be7b32994. Reason for revert: Causing crashes. Change-Id: I0b8526dd03d82fa074ce4f97f1789eeac702b3eb Reviewed-on: https://go-review.googlesource.com/c/go/+/709755 Reviewed-by: Keith Randall <khr@google.com> Revi...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n- | return PC |\n- | frame pointer on entry | ← R29 points to\n | ... loc...
2025-10-07T14:58:50
electron/electron
8b3d70a2a34b7fdcf91fdda5566bf2663551ff60
527efc01a4d989e973ed96042c890b820bb7b649
feat: add WebFrameMain detached property (#43473) * feat: add WebFrameMain detached property fix: throw instead of returning null senderFrame test: detached frames fix: ensure IPCs of pending deletion RFHs are dispatched fix: lookup WFM by FTN ID to dispatch IPCs feat: add frame.isDestroyed() return ...
[ { "path": "docs/api/session.md", "patch": "@@ -268,7 +268,8 @@ Returns:\n * `event` Event\n * `details` Object\n * `deviceList` [HIDDevice[]](structures/hid-device.md)\n- * `frame` [WebFrameMain](web-frame-main.md)\n+ * `frame` [WebFrameMain](web-frame-main.md) | null - The frame initiating this event.\...
2024-10-11T22:33:53
nodejs/node
b2405e9b075e5637f250cf57e93c0bd6f3189f9b
11bb7cdb07028a0655a2580344a67c15f7165295
src: migrate from deprecated SnapshotCreator constructor Previously we have been using the variant of SnapshotCreator that only passes the external references instead of v8::Isolate::CreateParams and it's about to be deprecated. Switch to using the new constructor that takes a fully CreateParams instead. This also ma...
[ { "path": "lib/internal/buffer.js", "patch": "@@ -39,6 +39,13 @@ const {\n },\n } = internalBinding('util');\n \n+const {\n+ namespace: {\n+ isBuildingSnapshot,\n+ },\n+ addAfterUserSerializeCallback,\n+} = require('internal/v8/startup_snapshot');\n+\n // Temporary buffers to convert numbers.\n cons...
2024-10-09T16:09:40
rust-lang/rust
072bd694adda1ad5c0fb69291c6a5a534dc50923
70d86e3abeecf3a655264d9a716c5d08160176b7
Fix ICEs due to incomplete typechecking on struct literals with syntax errors.
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -2203,14 +2203,18 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n };\n self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr.hir_id, fru_tys);\n }\n- rustc_hir::StructTailExpr::NoneWith...
2026-03-05T17:50:13
vercel/next.js
f3656691c28c346f9d0fa4d7906378d9a4896057
e3b3b1a9ab4ed338b64f57362efd52bfcdfa3cf4
[test] Use `--debug-build-paths` instead of `NEXT_PRIVATE_APP_PATHS` (#85504) With `--debug-build-paths` being added in #85052, we can now use this CLI flag in tests, instead of setting the private environment variable `NEXT_PRIVATE_APP_PATHS`. Related to this change, this PR fixes how we print the dev, start and bui...
[ { "path": "package.json", "patch": "@@ -165,6 +165,7 @@\n \"@types/react\": \"19.2.2\",\n \"@types/react-dom\": \"19.2.1\",\n \"@types/relay-runtime\": \"14.1.13\",\n+ \"@types/shell-quote\": \"1.7.1\",\n \"@types/string-hash\": \"1.1.1\",\n \"@types/trusted-types\": \"2.0.3\",\n ...
2025-10-29T13:03:42