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
facebook/react
fe3f0ec0374b7323bf259e4154eb4ee739caac7b
d70ee32b8867f6cf99b1787f8adb4f3705756805
[Flight] Don't use object property initializer for async iterable (#33591) It turns out this was being compiled to a `_defineProperty` helper by Babel or Closure. We're supposed to have it error the build when we use features like this that might get compiled. We should stick to simple ES5 features.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2077,32 +2077,34 @@ function startAsyncIterable<T>(\n }\n },\n };\n- const iterable: $AsyncIterable<T, T, void> = {\n- [ASYNC_ITERATOR](): $AsyncIterator<T, T, void> {\n- let nextReadIndex = 0;\n- return crea...
2025-06-22T14:40:56
vercel/next.js
479877d6d7a6fef89938a3217780f8663126a49a
80ace0fe9e4d4dd95ba13a3d4622b84b34487ef7
Improve consistency of how Flag typed fields are handled in the macro to more structurally prevent bugs like what was fixed in #89228 (#89255) # Fix inconsistencies in flag handling ## What? This PR refactors the task flags bitfield implementation to properly separate flags by category (meta vs data) during serializa...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/storage_schema.rs", "patch": "@@ -785,8 +785,6 @@ mod tests {\n .aggregated_dirty_containers_mut()\n .insert(TaskId::new(50).unwrap(), 2);\n \n- // Set flags (persisted)\n- original.flags.set_immutable(true);\n...
2026-01-30T19:35:15
golang/go
276cc4d3dbbf413be008113e6c88ffb3df2de4d6
f2d96272cb1b695dfddcd5b80dfed2ad2ee6db59
cmd/link: fix AIX builds after recent linker changes This updates XCOFF-specific code for the recent addition of funcdata to pclntab. Because XCOFF puts separate symbols into separate csects, each with their own alignment, it's important to tell the external linker the expected alignment of each part of pclntab. Othe...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -55,13 +55,20 @@ type pclntab struct {\n \n // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.\n // It is the caller's responsibility to save the symbol in state.\n-func (state *pclntab) addGeneratedSym(ctxt *Link, name st...
2025-12-02T00:25:56
nodejs/node
5ac6ee7716d7694fe4afd75f579837660445f36b
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
process: fix hrtime fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_process.h", "patch": "@@ -3,6 +3,7 @@\n \n #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS\n \n+#include \"node_debug.h\"\n #include \"node_snapshotable.h\"\n #include \"v8-fast-api-calls.h\"\n #include \"v8.h\"\n@@ -72,23 +73,23 @@ class BindingData : public SnapshotableObject {...
2025-07-13T20:10:18
electron/electron
bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d
0a74e91580984c14e73e868b2874347824d786f0
docs: fix `--experimental-network-inspection` spelling (#47565) doc: fix `--experimental-network-inspection` spelling
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -292,7 +292,7 @@ Specify ways of the inspector web socket url exposure.\n \n By default inspector websocket url is available in stderr and under /json/list endpoint on `http://host:port/json/list`.\n \n-### `--experimental-network-inspector`\n+### ...
2025-06-26T09:40:55
rust-lang/rust
d48e699b6cdcf76590a141ccf9fde84adb297176
244322f0be1296f5ac4d6fc0dcc603b5ccab2832
Emit fewer errors for incorrect rtn and `=` -> `:` typos in bindings Stash parse errors when pasing rtn that doesn't use `(..)`. Emit single error on `Foo::bar(qux)` that looks like rtn in incorrect position and suggest `Foo::bar(..)`. ``` error: return type notation not allowed in this position yet --> $DIR/let-bin...
[ { "path": "compiler/rustc_ast_lowering/src/path.rs", "patch": "@@ -1,6 +1,7 @@\n use std::sync::Arc;\n \n use rustc_ast::{self as ast, *};\n+use rustc_errors::StashKey;\n use rustc_hir::def::{DefKind, PartialRes, PerNS, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::{self as hir, GenericArg};\n@@ -2...
2026-03-20T19:33:05
facebook/react
d70ee32b8867f6cf99b1787f8adb4f3705756805
6c7b1a1d9898025bb087a3b97d875091e4f67cf3
[Flight] Eagerly parse stack traces in DebugNode (#33589) There's a memory leak in DebugNode where the `Error` objects that we instantiate retains their callstacks which can have Promises on them. In fact, it's very likely since the current callsite has the "resource" on it which is the Promise itself. If those Promis...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -7,7 +7,11 @@\n * @flow\n */\n \n-import type {ReactDebugInfo, ReactComponentInfo} from 'shared/ReactTypes';\n+import type {\n+ ReactDebugInfo,\n+ ReactComponentInfo,\n+ ReactStackTrace,\n+} from 'shared/ReactTypes';\n \n e...
2025-06-22T14:40:33
vercel/next.js
abfd99455120c5636238ddebb63636b19011e556
eb828c684e9aa964b1545f064b17af5ef36079aa
Fix/zlib mem node (#89099) - What? Fixes zlib memory leak in Node.js 24 when requests are aborted. - Why? Compression streams weren't cleaned up on abort, causing memory to accumulate. - How? Destroy the response on request abort/close to clean up compression streams. Closes NEXT- fixes: #89091
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -262,6 +262,12 @@ export async function initialize(opts: {\n if (compress) {\n // @ts-expect-error not express req/res\n compress(req, res, () => {})\n+\n+ // Only on client abort: destroy response so compression st...
2026-01-30T19:17:09
nodejs/node
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
perf_hooks: fix histogram fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/histogram.cc", "patch": "@@ -2,6 +2,7 @@\n #include \"base_object-inl.h\"\n #include \"histogram-inl.h\"\n #include \"memory_tracker-inl.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"util.h\"\n@@ -11,10 +12,8 @@ namespace no...
2025-07-09T21:29:43
facebook/react
6c7b1a1d9898025bb087a3b97d875091e4f67cf3
ed077194b5b76df6f8fdbf805e1b895e2deb5a07
Rename serializeConsoleMap/Set to serializeDebugMap/Set (#33587) Follow up to #33583. I forgot to rename these too.
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2435,7 +2435,7 @@ function serializeSet(request: Request, set: Set<ReactClientValue>): string {\n return '$W' + id.toString(16);\n }\n \n-function serializeConsoleMap(\n+function serializeDebugMap(\n request: Request,\n counter:...
2025-06-21T14:36:07
vercel/next.js
e3e6f3586ee6bc0576a592793c8ca9ca3cead5d3
99eae38f38549e030247c3f3ec59c09c5aedc5cb
Add experimental.varyParams feature flag (#89307) ## Summary - Adds `experimental.varyParams` feature flag (defaults to `false`) - When disabled, the client skips vary params rekeying and treats params as unknown - Allows internal rollout with easy revert if regressions occur during dogfooding The flag only gates th...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -359,6 +359,7 @@ export function getDefineEnv({\n config.experimental.gestureTransition ?? false,\n 'process.env.__NEXT_OPTIMISTIC_ROUTING':\n config.experimental.optimisticRouting ?? false,\n+ 'process.env.__NEXT_VARY_PARAMS...
2026-01-30T19:05:02
golang/go
144cf17d2c444a530d7c08c5870dc8e70bec2c72
3417b48b17d01cf170317d679aef10984cc1a4d0
[dev.simd] simd, cmd/compile: move "simd" to "simd/archsimd" Also removes a few leftover TODOs and scraps of commented-out code from simd development. Updated etetest.sh to make it behave whether amd64 implies the experiment, or not. Fixes #76473. Change-Id: I6d9792214d7f514cb90c21b101dbf7d07c1d0e55 Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -445,7 +445,7 @@ type hairyVisitor struct {\n \n func isDebugFn(fn *ir.Func) bool {\n \t// if n := fn.Nname; n != nil {\n-\t// \tif n.Sym().Name == \"Int32x8.Transpose8\" && n.Sym().Pkg.Path == \"simd\" {\n+\t// \tif n.Sym().Name == \"Int32x8....
2025-12-08T18:24:12
nodejs/node
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
f46444d8b7333248da8adf143eee9feb3f00fe9e
2025-09-24, Version 22.20.0 'Jod' (LTS) Notable changes: crypto: * update root certificates to NSS 3.114 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/59571 deps: * fix OpenSSL security level at 1 (Richard Lau) https://github.com/nodejs/node/pull/59859 * upgrade openssl sources to openssl-3.5.2 (Node...
[ { "path": "CHANGELOG.md", "patch": "@@ -53,7 +53,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.19.0\">22.19.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.20.0\">22.20.0...
2025-09-22T16:13:25
rust-lang/rust
3ea7d1ece76c0d207f3c7754140b07c2b7f5e549
4e446d55a40cae05284fc4118b18373e7dd71f02
fixing seperate empty arm and doc comment
[ { "path": "compiler/rustc_attr_parsing/src/attributes/stability.rs", "patch": "@@ -367,7 +367,7 @@ pub(crate) fn parse_stability<S: Stage>(\n }\n }\n \n-// Read the content of a `unstable`/`rustc_const_unstable`/`rustc_default_body_unstable`\n+/// Read the content of a `unstable`/`rustc_const_unstable`/...
2026-03-20T16:14:41
electron/electron
035879357ecdaa60b9e06185fca5375d161542fd
e4c37e4b38195bd0cf7f0ae8257ac6d7fd5e4603
chore: bump chromium to 139.0.7256.0 (main) (#47481) * chore: bump chromium in DEPS to 139.0.7242.0 * chore: update render_widget_host_view_mac.patch no code changes; just updating patch context Do a cleanup pass on the history swiper code | https://chromium-review.googlesource.com/c/chromium/src/+/6604367 * chore...
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -57,8 +57,19 @@ runs:\n sudo rm -rf $TMPDIR/del-target\n \n sudo rm -rf /Applications/Safari.app\n+ sudo rm -rf /Applications/Xcode_16.1.app\n+ sudo rm -rf /Applications/Xcode_16.3.app\n+ sudo rm -rf /...
2025-06-25T15:12:49
vercel/next.js
af18c32bc81e500f748f18c23e47f7329d5684d9
7517e3ec264e26fdc34c39d5669912c8d9a2d6db
Improve lock dir error message (#89119)
[ { "path": "crates/napi/src/lockfile.rs", "patch": "@@ -1,5 +1,6 @@\n use std::{\n fs::{File, OpenOptions},\n+ io::Write,\n mem::ManuallyDrop,\n sync::Mutex,\n };\n@@ -24,10 +25,10 @@ pub struct LockfileInner {\n }\n \n #[napi(ts_return_type = \"{ __napiType: \\\"Lockfile\\\" } | null\")]\n-pu...
2026-01-30T15:38:25
facebook/react
ed077194b5b76df6f8fdbf805e1b895e2deb5a07
643257ca52c92d74ef7b7c7b474e5cae9e5451e4
[Flight] Dedupe objects serialized as Debug Models in a separate set (#33583) Stacked on #33539. Stores dedupes of `renderConsoleValue` in a separate set. This allows us to dedupe objects safely since we can't write objects using this algorithm if they might also be referenced by the "real" serialization. Also renam...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -266,7 +266,11 @@ ReactPromise.prototype.then = function <T>(\n initializeModuleChunk(chunk);\n break;\n }\n- if (__DEV__ && enableAsyncDebugInfo) {\n+ if (\n+ __DEV__ &&\n+ enableAsyncDebugInfo &&\n+ (typeof r...
2025-06-20T17:36:39
golang/go
4837bcc92c27e72c157e2c7b7e098dd91fa36fd3
b5f6816cea5b195e583c60e97a519d5d4ad5793f
internal/trace: skip tests for alloc/free experiment by default These tests are just too flaky and I don't have the time to fix them right now. I also am thinking to just change how trace experiments work, so it may not be worth taking the time to fix them. For #70838. Change-Id: Ia896215a0cbeccac99b73fefc836088f435...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -20,6 +20,7 @@ import (\n var (\n \tlogEvents = flag.Bool(\"log-events\", false, \"whether to log high-level events; significantly slows down tests\")\n \tdumpTraces = flag.Bool(\"dump-traces\", false, \"dump traces even on success\")\n+\tallocFre...
2025-12-08T17:48:53
rust-lang/rust
c614e3d216b26052d0badfeb5c33f095b4ced1f3
ed6a6fddb440f2b19d55530a07df0c7c94391ad8
linting, moving error to session diagnostics
[ { "path": "compiler/rustc_attr_parsing/src/attributes/stability.rs", "patch": "@@ -452,16 +452,14 @@ pub(crate) fn parse_unstability<S: Stage>(\n \n match (feature, issue) {\n (Ok(feature), Ok(_)) => {\n- // Validate that unstable attributes don't use already-stable language features\...
2026-03-13T20:38:15
nodejs/node
d2ff9daf589af059cacd58972640c8dbc6c7ba88
24ded11b66af8a80e99f987f3e12acab74b8f920
sqlite: fix crash session extension callbacks with workers PR-URL: https://github.com/nodejs/node/pull/59848 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1668,26 +1668,28 @@ void Backup(const FunctionCallbackInfo<Value>& args) {\n job->ScheduleBackup();\n }\n \n+struct ConflictCallbackContext {\n+ std::function<bool(std::string_view)> filterCallback;\n+ std::function<int(int)> conflictCallback;\n+};\n+\n // t...
2025-09-23T14:41:39
electron/electron
51fbc964a65455e1f7533538bdafd2a1c896faef
3e8e87d186ab3b7c79d2b96b931e2bf98fda3f26
fix: ensure `/dev/null` fd is closed on failure (#47525) * fix: ensure /dev/null fd is closed on failure * chore: ignore closehandle for windows --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -78,6 +78,9 @@ UtilityProcessWrapper::UtilityProcessWrapper(\n base::FileHandleMappingVector fds_to_remap;\n #endif\n for (const auto& [io_handle, io_type] : stdio) {\n+ if (io_handle == IOHandle::STDIN)\n+ continue;\n+\...
2025-06-24T15:44:50
facebook/react
643257ca52c92d74ef7b7c7b474e5cae9e5451e4
06e89951be5b4b23ca343d02721521fe392e94c5
[Flight] Serialize functions by reference (#33539) On pages that have a high number of server components (e.g. common when doing syntax highlighting), the debug outlining can produce extremely large RSC payloads. For example a documentation page I was working on had a 13.8 MB payload. I noticed that a majority of this...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -3276,6 +3276,7 @@ describe('ReactFlight', () => {\n expect(typeof loggedFn2).toBe('function');\n expect(loggedFn2).not.toBe(foo);\n expect(loggedFn2.toString()).toBe(foo.toString());\n+ expect(loggedFn2).toBe(l...
2025-06-20T17:36:07
golang/go
b5f6816cea5b195e583c60e97a519d5d4ad5793f
44a39c9dacdb3378197b9515add22d292dd71af9
cmd/link: generate DWARF for moduledata Fixes #76731 Change-Id: I5c686c91af8543b57880a89d30393912ef1958ad Reviewed-on: https://go-review.googlesource.com/c/go/+/727760 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com> Reviewed-by: Florian Lehner <lehner.flo...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -156,10 +156,102 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\tif !strings.HasSuffix(line.File.Name, wantFile) || line.Line != wantLine {\n \t\t\t\tt.Errorf(\"%#x is %s:%d, want %s:%d\", addr, line.File.Name, l...
2025-12-06T23:06:11
vercel/next.js
64328fe985ed806be588b7e40dcd32b484b9125e
0ed1edd852600de49f1c1cfb3a43a5428dc10dfb
Track vary params during static prerendering (#89267) During prerendering, track which route params each segment accesses. Params that are NOT accessed can be omitted from the client router's cache key for that segment, allowing it to be shared across multiple pages and reducing the number of prefetch requests. For e...
[ { "path": "packages/next/src/client/components/segment-cache/cache.ts", "patch": "@@ -7,6 +7,10 @@ import type {\n CacheNodeSeedData,\n Segment as FlightRouterStateSegment,\n } from '../../../shared/lib/app-router-types'\n+import {\n+ readVaryParams,\n+ type VaryParams,\n+} from '../../../shared/lib/s...
2026-01-30T14:48:32
nodejs/node
0a72b2cd7b5ff8a53f501ffb916d5e9ce2ed2f71
3c0c1609df3c0f5fa5b0ea94d4a2cbae2da0086a
doc: fix typo in section on microtask order PR-URL: https://github.com/nodejs/node/pull/59932 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3013,7 +3013,7 @@ is drained immediately after.\n \n So in CJS modules `process.nextTick()` callbacks are always run before `queueMicrotask()` ones.\n However since ESM modules are processed already as part of the microtask queue, there\n-`queueMicrotask()` call...
2025-09-23T10:33:13
electron/electron
93d5152a25eeb74e7bee54b228aaa998acafe391
fb651242348cb3931534993124d2c334156bf9c5
fix: `chrome://accessibility` loading correctly (#47497) fix: chrome://accessibility loading correctly
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -41,6 +41,7 @@\n #include \"shell/browser/window_list.h\"\n #include \"ui/accessibility/accessibility_features.h\"\n #include \"ui/accessibility/ax_updates_and_events.h\"\n+#include \"ui/accessibility/platform/ax_platform.h\"\n #include \"...
2025-06-23T12:38:29
facebook/react
06e89951be5b4b23ca343d02721521fe392e94c5
79d9aed7edb52e89b3ef9ba3d6b480b04180b664
[Fizz] Ignore error if content node is gone before reveal (#33531)
[ { "path": "fixtures/view-transition/src/components/App.js", "patch": "@@ -4,7 +4,6 @@ import React, {\n useEffect,\n useState,\n unstable_addTransitionType as addTransitionType,\n- use,\n } from 'react';\n \n import Chrome from './Chrome';", "additions": 0, "deletions": 1, "language": "Ja...
2025-06-20T12:21:57
golang/go
4122d3e9ea55c8d2293e0a0c59cd6e467021c9e0
34397865b1174f4d4b33941877a5906e50965b3b
runtime: use atomic C types with atomic C functions Mark types as _Atomic - fixes breakage introduced in CL 726964 across most LLVM based platforms/builders. Change-Id: I5e64b9ccb0cf5244977a787a52ee124bc03c10de Reviewed-on: https://go-review.googlesource.com/c/go/+/728040 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/runtime/testdata/testprogcgo/notingo.go", "patch": "@@ -14,8 +14,8 @@ package main\n \n extern void Ready();\n \n-static int spinning;\n-static int released;\n+static _Atomic int spinning;\n+static _Atomic int released;\n \n static void* enterGoThenSpinTwice(void* arg __attribute__ ((unused))...
2025-12-08T13:11:55
nodejs/node
81af7b93c57f1dd5f363be05d276bca9046a8578
54c456702c7fe6b9b0ef026f864dc1bc9590c88e
http,https: handle IPv6 with proxies This simplifies the proxy configuration handling code, adds tests to make sure the proxy support works with IPv6 and throws correct errors for invalid proxy IPs. Drive-by: remove useless properties from ProxyConfig PR-URL: https://github.com/nodejs/node/pull/59894 Refs: https://g...
[ { "path": "lib/https.js", "patch": "@@ -68,7 +68,7 @@ let debug = require('internal/util/debuglog').debuglog('https', (fn) => {\n const net = require('net');\n const { URL, urlToHttpOptions, isURL } = require('internal/url');\n const { validateObject } = require('internal/validators');\n-const { isIP, isIPv...
2025-09-22T23:19:26
vercel/next.js
0ed1edd852600de49f1c1cfb3a43a5428dc10dfb
91bf04930da717ff167f9bb12e704436613c6316
Turbopack: refactor extend transforms (#89116) ### What? Stop rules when module type is set. Apply ecmascript transforms before module type is set. (no more errors when trying to apply a transform on non-ecmascript type) Fix ordering of transform apply. Reorder module rules to match previous order. They are applied i...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -327,6 +327,7 @@ pub async fn get_client_module_options_context(\n ecmascript: EcmascriptOptionsContext {\n esm_url_rewrite_behavior: Some(UrlRewriteBehavior::Relative),\n enable_typeof_window_inlining: Som...
2026-01-30T14:32:35
rust-lang/rust
910d0d7a7779ee7e620ec420f0a324b99f0d3c7a
1111eb599e6ce93acfd854961749bebb3b0664e5
Fix calling custom call conv functions from inline asm
[ { "path": "example/std_example.rs", "patch": "@@ -167,6 +167,9 @@ fn main() {\n \n rust_call_abi();\n \n+ // #[cfg(target_arch = \"x86_64\")]\n+ // inline_asm_call_custom_abi();\n+\n const fn no_str() -> Option<Box<str>> {\n None\n }\n@@ -678,3 +681,18 @@ fn map(a: Option<(u8, Box<...
2026-03-20T10:37:33
electron/electron
fb651242348cb3931534993124d2c334156bf9c5
93f4b3cf9ff4087ffdd1b6ce6e11df4f1de27013
chore: fix nightly issues getting unsupported label comment (#47503) * chore: fix nightly issues getting unsupported label comment * chore: address review feedback
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -60,6 +60,8 @@ jobs:\n // It's possible for multiple versions to be listed -\n // for now check for comma or space separated version.\n const versions = electronVersion.split(/, | /);\n+ let h...
2025-06-23T12:22:41
facebook/react
a947eba4f2c8741d2c61a3b33fd79cf13bf9f39d
374dfe8edf8beef62e5bb312f99c600a232f353f
Fix CI (#33578)
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -301,10 +301,12 @@ jobs:\n path: |\n **/node_modules\n key: runtime-and-compiler-node_modules-v6-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock', 'compiler/yarn.lock') }}\n- restore-...
2025-06-19T21:40:59
golang/go
34397865b1174f4d4b33941877a5906e50965b3b
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
runtime: deflake TestProfBufWakeup If CI infrastructure is oversubscribed, the profile buffer reader can be blocked long enough for the status in the traceback to be something like "[syscall, 3 minutes]", rather than the "[syscall]" we are looking for. Tweak the regexp to look for the expected state at the beginning o...
[ { "path": "src/runtime/profbuf_test.go", "patch": "@@ -232,11 +232,14 @@ func TestProfBufWakeup(t *testing.T) {\n \t// The reader shouldn't wake up for this\n \tb.Write(nil, 1, []uint64{1, 2}, []uintptr{3, 4})\n \n-\t// The reader should still be blocked\n-\t//\n-\t// TODO(nick): this is racy. We could Gosc...
2025-12-06T15:09:38
nodejs/node
55cd2e589ec6a82155dcc686988fbfafee973a5a
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
dgram: restore buffer optimization in fixBufferList Restore the Buffer.isBuffer() check to avoid unnecessary Buffer.from() calls when the input is already a Buffer. This improves performance by 30-50% for buffer-heavy UDP operations. Includes benchmark test for fixBufferList function to verify the performance improve...
[ { "path": "benchmark/dgram/send-types.js", "patch": "@@ -0,0 +1,52 @@\n+'use strict';\n+\n+const common = require('../common.js');\n+const dgram = require('dgram');\n+const { Buffer } = require('buffer');\n+\n+const bench = common.createBenchmark(main, {\n+ type: ['string', 'buffer', 'mixed', 'typedarray']...
2025-09-21T17:50:41
vercel/next.js
91bf04930da717ff167f9bb12e704436613c6316
5eb6eefdafd594cddf2da15b9a4aefc90d67a137
docs: Rename Error component to ErrorPage (#89284)
[ { "path": "docs/01-app/01-getting-started/10-error-handling.mdx", "patch": "@@ -206,7 +206,7 @@ Create an error boundary by adding an [`error.js`](/docs/app/api-reference/file-\n \n import { useEffect } from 'react'\n \n-export default function Error({\n+export default function ErrorPage({\n error,\n re...
2026-01-30T12:43:57
facebook/react
2bee34867d30083ce01232baccb72b6fa696456b
d37faa041bce86c1cbb05fdbc839440c9d9de9cf
[compiler] Cleanup debugging code (#33571) Removes unnecessary debugging code in the new inference passes now that they've stabilized more. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33571). * _...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -57,7 +57,6 @@ import {\n import {\n printAliasingEffect,\n printAliasingSignature,\n- printFunction,\n printIdentifier,\n printInstruction,\n printInstructionValue,\n@@ -194,19 +...
2025-06-18T23:00:55
electron/electron
90a14299fd34d7c70b14e74dddb4ffb5d754c0e2
60924690d9a8f872a2890d1c98f245f954d55ad5
ci: fix sending Slack message in CI audit workflow (#47494)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -136,7 +136,7 @@ jobs:\n \n await core.summary.write();\n - name: Send Slack message if errors\n- if: ${{ steps.audit-errors.outputs.errorsFound && github.ref == 'refs/heads/main' }}\n+ if: ${{ always() && steps....
2025-06-23T09:23:39
golang/go
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
0d0d5c9a827bac4da9cf20da351791d217e84ebb
runtime: mark getfp as nosplit When compiling with -l, we can't take a stack split here. Fixes #76702 Change-Id: Ieab1225c6259c7f16bb5188aa84bff615d9db2e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/728060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submi...
[ { "path": "src/runtime/os_wasm.go", "patch": "@@ -142,6 +142,8 @@ func preemptM(mp *m) {\n \n // getfp returns the frame pointer register of its caller or 0 if not implemented.\n // TODO: Make this a compiler intrinsic\n+//\n+//go:nosplit\n func getfp() uintptr { return 0 }\n \n func setProcessCPUProfiler(h...
2025-12-08T14:21:39
vercel/next.js
5eb6eefdafd594cddf2da15b9a4aefc90d67a137
c6de62407adfe01849d9c0ff9d3bbc199ac20665
Revert "fix(router): support BigInt in query parameters" (#89283)
[ { "path": "packages/next/src/shared/lib/router/utils/querystring.ts", "patch": "@@ -24,8 +24,7 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean' ||\n- typeof param === 'bigint'\n+ typeof param...
2026-01-30T10:32:59
nodejs/node
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
vm: explain how to share promises between contexts w/ afterEvaluate PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: https://groups.google.com/g/v8-dev/c/YIeRg8CUNS8/m/rEQdFuNZAAAJ Refs: https://tc39.es/ecma262...
[ { "path": "doc/api/vm.md", "patch": "@@ -1946,6 +1946,68 @@ inside a `vm.Context`, functions passed to them will be added to global queues,\n which are shared by all contexts. Therefore, callbacks passed to those functions\n are not controllable through the timeout either.\n \n+### When `microtaskMode` is `...
2025-09-19T14:47:31
facebook/react
3a2ff8b51b5ab54c22f55a5f826c53419f718887
cc3806377a43f0bd339d54ceaf2e1e16b0b113bf
[compiler] Fix <ValidateMemoization> (#33547) By accident we were only ever checking the compiled output, but the intention was in general to be able to compare memoization with/without forget. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](h...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/todo-control-flow-sensitive-mutation.expect.md", "patch": "@@ -23,14 +23,9 @@ function Component({a, b, c}: {a: number; b: number; c: number}) {\n \n return (\n <>\n- <ValidateMemoization input...
2025-06-18T23:00:36
golang/go
c270e7183582600aa54dcc8bb14aeecf61fc4275
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
cmd/go/internal/vet: skip -fix on pkgs from vendor or non-main mod This change causes go fix (and go vet -fix) to skip applying fixes to any package in the vendor/ tree, including the GOROOT vendor packages that are part of std, and to any package from a non-main module (since these usually come from the readonly modu...
[ { "path": "src/cmd/go/internal/vet/vet.go", "patch": "@@ -262,6 +262,15 @@ func run(ctx context.Context, cmd *base.Command, args []string) {\n \t// will only be executed in VetxOnly mode, for facts but not\n \t// diagnostics.\n \tfor _, p := range pkgs {\n+\t\t// Don't apply fixes to vendored packages, incl...
2025-12-05T17:41:21
electron/electron
626895848eecd40ead822ad0ed47aab125fedba8
3536d4976a3e42f1b96210b77b12d2545cd4b08c
fix: utilityProcess running user script after process.exit is called (#47469) * fix: utilityProcess running user script after process.exit is called * docs: update breaking changes * chore: update spec * chore: update spec/api-utility-process-spec.ts Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * chore...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -36,6 +36,16 @@ process.on('unhandledRejection', () => {\n })\n ```\n \n+### Behavior Changed: `process.exit()` kills utility process synchronously\n+\n+Calling `process.exit()` in a utility process will now kill the utility process synchronously.\n+This br...
2025-06-17T19:36:22
vercel/next.js
a1e958980d953a2d59f7c6a65000633e55425b59
16087898734a7f048ee4a9225036eb22f0d389d2
fix(router): support BigInt in query parameters (#89213) **What changed?** `stringifyUrlQueryParam` now handles `bigint` type properly. **Why?** BigInt is a valid JavaScript primitive but was being converted to empty string: Before: ```js stringifyUrlQueryParam(123n) // '' ❌ ``` After: ```js stringifyUrlQueryParam(...
[ { "path": "packages/next/src/shared/lib/router/utils/querystring.ts", "patch": "@@ -24,7 +24,8 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean'\n+ typeof param === 'boolean' ||\n+ typeof para...
2026-01-30T00:17:54
nodejs/node
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
1d8df51e4238a524253396108a8ab94298effb49
vm: "afterEvaluate", evaluate() return a promise from the outer context Consider the default context A with a microtask queue QA, and a context B with its own microtask queue QB. Context B is constructed with vm.createContext(..., {microtaskMode: "afterEvaluate"}). The evaluation in context B can be performed via vm....
[ { "path": "src/module_wrap.cc", "patch": "@@ -759,8 +759,48 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo<Value>& args) {\n MaybeLocal<Value> result;\n auto run = [&]() {\n MaybeLocal<Value> result = module->Evaluate(context);\n- if (!result.IsEmpty() && microtask_queue)\n+\n+ Local<...
2025-09-10T17:51:53
facebook/react
0e7cdebb32817de0e0bbee3b362f0959e36c959c
81d81151169be4b1b0ad8bd6439e94cfc982bb5a
[compiler] Repro for case of lost precision in new inference (#33522) In comparing compilation output of the old/new inference models I found this case (heavily distilled into a fixture). Roughly speaking the scenario is: * Create a mutable object `x` * Extract part of that object and pass it to a hook/jsx so that _p...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/repro-jsx-captures-value-mutated-later.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @enableNewMutationAliasingModel\n+\n+import {identity, Stringify, useFragment} fro...
2025-06-18T22:43:33
golang/go
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
f3d572d96a25d1a0956ef828c0ff510ebf214d22
runtime: don't count nGsyscallNoP for extra Ms in C In #76435, it turns out that the new metric /sched/goroutines/not-in-go:goroutines counts C threads that have called into Go before (on Linux) as not-in-go goroutines. The reason for this is that the M is still attached to the C thread on Linux as an optimization, so...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1584,3 +1584,18 @@ func TestReadMetricsSched(t *testing.T) {\n \t\tt.Fatalf(\"output:\\n%s\\n\\nwanted:\\n%s\", output, want)\n \t}\n }\n+\n+func TestNotInGoMetricCallback(t *testing.T) {\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\t...
2025-12-04T23:27:03
electron/electron
3536d4976a3e42f1b96210b77b12d2545cd4b08c
2ad762e0753d4df633a6d5792c2f971919b7ee26
fix: revert moving IsClosed() and IsClosable() into NativeWindow::Close() (#47482) Revert "refactor: move `IsClosed()` and `IsClosable()` tests into `NativeWindow::Close()` (#46888)" This reverts commit 3faddd5ae2ae03be8ba037c77989630576bb8167.
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -362,7 +362,8 @@ void BaseWindow::SetContentView(gin::Handle<View> view) {\n }\n \n void BaseWindow::CloseImmediately() {\n- window_->CloseImmediately();\n+ if (!window_->IsClosed())\n+ window_->CloseImmediately();\n }\n \n void Ba...
2025-06-16T23:41:19
nodejs/node
1d8df51e4238a524253396108a8ab94298effb49
aa6838c25203e997847531421b752c62e88f5763
test: testcase demonstrating issue 59541 Check that we lose the execution flow in the outer context, upon resolving a promise created in in the inner context. PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: h...
[ { "path": "test/parallel/test-vm-module-after-evaluate.js", "patch": "@@ -0,0 +1,34 @@\n+// Flags: --experimental-vm-modules\n+'use strict';\n+\n+// https://github.com/nodejs/node/issues/59541\n+//\n+// Promises created in a context using microtaskMode: \"aferEvaluate\" (meaning it\n+// has its own microtas...
2025-09-07T23:09:42
vercel/next.js
516b2ea3b28f2b44487551ab79ff39d5318f457a
d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5
fix(build): format runAfterProductionCompile duration as human-readable time (#89232) This change should unifiy the runAfterProductionCompile output to follow the same style as other times printed in the build logs. Currently build logs look like ``` ✓ Compiled successfully in 89s Running next.config.js provided ru...
[ { "path": "packages/next/src/build/after-production-compile.ts", "patch": "@@ -6,6 +6,7 @@ import createSpinner from './spinner'\n import isError from '../lib/is-error'\n import type { Telemetry } from '../telemetry/storage'\n import { EVENT_BUILD_FEATURE_USAGE } from '../telemetry/events/build'\n+import { ...
2026-01-29T23:57:13
golang/go
f3d572d96a25d1a0956ef828c0ff510ebf214d22
76345533f70e149511b1f50dbee598d0980cf867
cmd/go: fix race applying fixes in fix and vet -fix modes Previously, the cmd/fix tool, which is analogous to a compiler in a "go fix" or "go vet -fix" build, applied its fixes directly to source files during the build. However, this led to races since the edits may in some cases occur concurrently with other build st...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1371,7 +1371,7 @@ func addTestVet(loaderstate *modload.State, b *work.Builder, p *load.Package, ru\n \t\treturn\n \t}\n \n-\tvet := b.VetAction(loaderstate, work.ModeBuild, work.ModeBuild, p)\n+\tvet := b.VetAction(loaderstate, work.ModeBuild, work...
2025-12-04T20:29:49
facebook/react
81d81151169be4b1b0ad8bd6439e94cfc982bb5a
8f4ce72f0bfe02e51e9a7c704dc33122d909f292
[compiler] Fix infinite loop due to uncached applied signatures (#33518) When we apply new aliasing signatures we can generate new temporaries, which causes the abstract memory model to not converge. The fix is to make sure we cache the applications of these signatures. --- [//]: # (BEGIN SAPLING FOOTER) Stack create...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AliasingEffects.ts", "patch": "@@ -8,6 +8,7 @@\n import {CompilerErrorDetailOptions} from '../CompilerError';\n import {\n FunctionExpression,\n+ GeneratedSource,\n Hole,\n IdentifierId,\n ObjectMethod,\n@@ -18,6 +19,7 @@ import...
2025-06-18T22:43:23
nodejs/node
2a0fcdbc883db4d09d99b651be23555b4cb22f69
36256230b4cab235f4e8248b4289839771661521
http2: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback This is required to use HTTP/1 websockets on an HTTP/2 server, which is fairly common as websockets over HTTP/2 is much less widely supported. This was broken by the recent shouldUpgradeCallback HTTP/1 addition, which wasn't correctly added to the corresp...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3374,6 +3374,9 @@ class Http2SecureServer extends TLSServer {\n this.headersTimeout = 60_000; // Minimum between 60 seconds or requestTimeout\n this.requestTimeout = 300_000; // 5 minutes\n this.connectionsCheckingInterval = 30_000; // ...
2025-09-20T18:18:23
vercel/next.js
d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5
59c48b73b4a01b4b5b9277eff1e62d75097ba812
fix: CSRF origin matching should be case-insensitive (#89127) ## Summary This PR fixes ~two~ one bug~s~ in the `isCsrfOriginAllowed` function used for Server Actions CSRF protection: 1. **Case sensitivity bug**: Domain matching was case-sensitive, but DNS names are case-insensitive per [RFC 1035](https://datatracker...
[ { "path": "packages/next/src/server/app-render/csrf-protection.test.ts", "patch": "@@ -77,4 +77,13 @@ describe('isCsrfOriginAllowed', () => {\n expect(isCsrfOriginAllowed('vercel.com', ['*'])).toBe(false)\n expect(isCsrfOriginAllowed('vercel.com', ['**'])).toBe(false)\n })\n+\n+ it('should match ...
2026-01-29T23:49:55
facebook/react
8f4ce72f0bfe02e51e9a7c704dc33122d909f292
7ce2a63acc199a4f8829625470ea56a347632340
[commit] Improve error for hoisting violations (#33514) The previous error for hoisting violations pointed only to the variable declaration, but didn't show where the value was accessed before that declaration. We now track where each hoisted variable is first accessed and report two errors, one for the reference and ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -38,6 +38,7 @@ import {\n import {\n eachInstructionValueLValue,\n eachInstructionValueOperand,\n+ eachTerminalOperand,\n eachTerminalSuccessor,\n } from '../HIR/visitors';\n import {...
2025-06-18T22:24:41
golang/go
76345533f70e149511b1f50dbee598d0980cf867
b133524c0f661b88fc31db0076a939e1466c8aad
runtime: expand Pinner documentation This change expands the Pinner documentation based on a few points of feedback. - We need a note that the Pinner has a finalizer. - We need a note that the Pinner is safe to reuse. I also added a note that the zero value is ready to use, and expanded upon the use-cases of a Pinner...
[ { "path": "src/runtime/pinner.go", "patch": "@@ -12,7 +12,25 @@ import (\n \n // A Pinner is a set of Go objects each pinned to a fixed location in memory. The\n // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned\n-// objects. See their comments for more information.\n+// objects...
2025-12-03T23:07:26
electron/electron
6779769d22dd751f9877bcef305f94d03306fa33
96fcc2f8c8f4a5577b4eb5312a12dad46501ef14
chore: bump chromium to 139.0.7219.0 (main) (#47348) * chore: bump chromium in DEPS to 139.0.7205.0 * 6543986: Mac: decouple deserializing and applying sandbox policy Refs https://chromium-review.googlesource.com/c/chromium/src/+/6543986 * 6580079: Reland 'Remove the third-party blocking feature' Refs https://chrom...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -13,7 +13,7 @@ runs:\n git config --global core.fscache true\n git config --global core.preloadindex true\n fi\n- export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n+ export BUILD_TOOLS_SHA...
2025-06-16T17:46:06
rust-lang/rust
de1b0ac73a5701f1c3916e27938df22139e7b939
76be1cc4eef94daeab731ed9395a317b34d89d63
fix: guard paren-sugar pretty-printing on short trait args
[ { "path": "compiler/rustc_middle/src/ty/print/pretty.rs", "patch": "@@ -3314,7 +3314,8 @@ define_print_and_forward_display! {\n TraitRefPrintSugared<'tcx> {\n if !with_reduced_queries()\n && p.tcx().trait_def(self.0.def_id).paren_sugar\n- && let ty::Tuple(args) = self.0.ar...
2026-03-20T10:02:43
nodejs/node
4612c793cb9007a91cb3fd82afe518440473826e
897932c4848ae4eb4a27a399ac165fc5efe264a2
vm: expose hasTopLevelAwait on SourceTextModule Expose `hasTopLevelAwait` and `hasAsyncGraph` on `vm.SourceTextModule`. `hasAsyncGraph` requires the module to be instantiated first. PR-URL: https://github.com/nodejs/node/pull/59865 Fixes: https://github.com/nodejs/node/issues/59656 Reviewed-By: James M Snell <jasnel...
[ { "path": "doc/api/vm.md", "patch": "@@ -920,6 +920,36 @@ to disallow any changes to it.\n Corresponds to the `[[RequestedModules]]` field of [Cyclic Module Record][]s in\n the ECMAScript specification.\n \n+### `sourceTextModule.hasAsyncGraph()`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Returns: {bool...
2025-09-19T09:12:17
vercel/next.js
59c48b73b4a01b4b5b9277eff1e62d75097ba812
dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a
test: add resume-data-cache failing deploy test (#89243) This deployment test has been failing very recently. This PR adds the test case to the deployment test manifest to unblock sync. Will continue deflaking at this PR at https://github.com/vercel/next.js/pull/89187 x-ref: [Datadog](https://app.datadoghq.com/ci/t...
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -86,6 +86,11 @@\n },\n \"test/e2e/middleware-rewrites/test/index.test.ts\": {\n \"failed\": [\"Middleware Rewrite should handle catch-all rewrite correctly\"]\n+ },\n+ \"test/e2e/app-dir/resume-data-cache/resume-data-cache.test.ts...
2026-01-29T23:37:16
facebook/react
7ce2a63acc199a4f8829625470ea56a347632340
b067c6fe7962ce2c8ddca6deeadcb21afe2538f8
[compiler] update fixtures (#33573) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33573). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #33518 * #33514 * __->__ ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/inner-function/nullable-objects/array-map-named-callback-cross-context.expect.md", "patch": "@@ -57,67 +57,62 @@ import { Stringify } from \"shared-runtime\";\n * - cb1 is not assumed to be called since it's only used ...
2025-06-18T22:24:30
golang/go
96e142ba2bfe5fe483f5364df91222c19ac13c49
fe4952f1165c43dcd195ab8b024f79ac5beced8a
runtime: skip TestArenaCollision if we run out of hints This seems failure mode seems to have become more common on Windows. I suspect the randomized heap base address has something to do with it, but I'm not 100% sure. What's definitely certain is that we're running out of hints, since we're seeing failures that mhe...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -551,8 +551,11 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \treturn\n }\n \n-func GetNextArenaHint() uintptr {\n-\treturn mheap_.arenaHints.addr\n+func NextArenaHint() (uintptr, bool) {\n+\tif mheap_.arenaHints == nil {\n+\t\treturn 0, fa...
2025-12-03T23:22:18
electron/electron
6f915e85e208b25ce62c36b656314360733a6ef4
0259abe9201be0028406eebaf7db8aa9beaebc3a
refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> (#47428) * refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> * fixup! refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath>
[ { "path": "shell/browser/api/electron_api_dialog.cc", "patch": "@@ -71,9 +71,8 @@ v8::Local<v8::Promise> ShowOpenDialog(\n \n void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,\n gin::Arguments* args) {\n- base::FilePath path;\n- if (file_dialog::ShowSaveDialogSyn...
2025-06-12T10:25:40
vercel/next.js
dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a
1565d63467e140d874fd28dd0842e2966dff8208
test: add client-cache.defaults failing deploy test (#89242) This deployment test has been failing very recently since the first attempt of [v16.1.5](https://github.com/vercel/next.js/actions/runs/21373599266/attempts/2). Tried deflaking at https://github.com/vercel/next.js/pull/87412, but seems to have no effect. Thi...
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -3,7 +3,8 @@\n \"suites\": {\n \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n \"failed\": [\n- \"app dir client cache semantics (default semantics) prefetch={true} should re-use the cache for the full page...
2026-01-29T23:36:38
facebook/react
b067c6fe7962ce2c8ddca6deeadcb21afe2538f8
e081cb344652dc3003d9194cca618292a889ff2a
[compiler] Improve error message for mutating hook args/return (#33513) The previous error message was generic, because the old style function signature didn't support a way to specify a reason alongside a freeze effect. This meant we could only say why a value was frozen for instructions, but not hooks which use func...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1388,6 +1388,16 @@ export enum ValueReason {\n */\n JsxCaptured = 'jsx-captured',\n \n+ /**\n+ * Argument to a hook\n+ */\n+ HookCaptured = 'hook-captured',\n+\n+ /**\n+ * Return value of a hook\n+ */\n+ ...
2025-06-18T20:04:53
golang/go
fe4952f1165c43dcd195ab8b024f79ac5beced8a
8947f092a8427674b7628003b873f57d3b6cdd83
runtime: relax threadsSlack in TestReadMetricsSched runtime.GC is called in the test and may spin up GOMAXPROCS (proportional to the initial count) new threads. We need to be robust to this, and it happens relatively frequently on some platforms. We didn't notice this earlier since the heap is so miniscule that runti...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -91,8 +91,10 @@ func SchedMetrics() {\n \t// threads through frequent scheduling, like mayMoreStackPreempt.\n \t// A slack of 5 is arbitrary but appears to be enough to cover\n \t// the leftovers plus any inflation from scheduling-heavy...
2025-12-03T23:13:36
vercel/next.js
1565d63467e140d874fd28dd0842e2966dff8208
2b0edf628e201b56bdeacc62a5fb3d2597132761
refactor: Improve templates layout flexibility (#89245) ### What Switches the `create-next-app` templates (`app-tw`, `app`) to flex-based layouts instead of `min-height: 100vh`. ### Why At Clerk, we ship a template on top of `create-next-app` that adds a header with sign-in/sign-up links to the root layout. The cur...
[ { "path": "packages/create-next-app/templates/app-tw/js/app/layout.js", "patch": "@@ -18,9 +18,9 @@ export const metadata = {\n \n export default function RootLayout({ children }) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" className=\"h-full\">\n <body\n- className={`${geis...
2026-01-29T23:33:26
electron/electron
38fe14041d5430d63680632a93d2aade6a762f14
996945d3e39e322568c3af775915d7960dd06065
fix: crash calling `Fetch.continueResponse` with `WebContentsView` (#47434) fix: crash calling Fetch.continueResponse with WebContentsView
[ { "path": "shell/browser/api/electron_api_debugger.cc", "patch": "@@ -81,7 +81,11 @@ void Debugger::DispatchProtocolMessage(DevToolsAgentHost* agent_host,\n \n void Debugger::RenderFrameHostChanged(content::RenderFrameHost* old_rfh,\n content::RenderFrameHost* new_rfh) ...
2025-06-11T13:43:47
facebook/react
7b67dc92b0339062ce8b6a1d64a458d7c8f04561
7c28c154651f54a63a6823e4dc54faa218c05a89
[commit] Better error message for invalid hoisting (#33504) We're already tracking which variables are hoisted context variables, so if we see a mutation of a frozen value we can emit a custom error message to help users identify the problem. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sap...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -901,23 +901,44 @@ function applyEffect(\n console.log(prettyFormat(state.debugAbstractValue(value)));\n }\n \n- const reason = getWriteErrorReason({\n- kin...
2025-06-18T20:02:32
nodejs/node
897932c4848ae4eb4a27a399ac165fc5efe264a2
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
diagnostics_channel: fix race condition with diagnostics_channel and GC PR-URL: https://github.com/nodejs/node/pull/59910 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "lib/diagnostics_channel.js", "patch": "@@ -37,7 +37,9 @@ const { WeakReference } = require('internal/util');\n // Only GC can be used as a valid time to clean up the channels map.\n class WeakRefMap extends SafeMap {\n #finalizers = new SafeFinalizationRegistry((key) => {\n- this.delete(key)...
2025-09-19T07:28:39
golang/go
44cb82449e7f24530fe0fe0bf8261ba9e0e4e7d8
435e61c80141653c22e29d81447e4c6e4033f768
runtime/race: set missing argument frame for ppc64x atomic And/Or wrappers The ppc64x TSAN wrappers for atomic And/Or did not initialize R6 with the Go argument frame before calling racecallatomic. Since racecallatomic expects R6 to point to the argument list and dereferences it unconditionally, this led to a nil-poin...
[ { "path": "src/runtime/race_ppc64le.s", "patch": "@@ -329,11 +329,13 @@ TEXT\tsync∕atomic·AddUintptr(SB), NOSPLIT, $0-24\n TEXT\tsync∕atomic·AndInt32(SB), NOSPLIT, $0-20\n \tGO_ARGS\n \tMOVD\t$__tsan_go_atomic32_fetch_and(SB), R8\n+\tADD $32, R1, R6\n \tBR\tracecallatomic<>(SB)\n \n TEXT\tsync∕atomic·An...
2025-11-06T19:43:45
vercel/next.js
b0ebf2a822dd82283d2122323c3d51682dbcb13b
0e457e95a96089eea85159635d7b75838699dd87
fix: fully static pages should emit & serve static rsc payloads (#89202) This restores fast navigations to fully static PPR routes in Cache Components, even when prefetch hasn’t completed or `prefetch={false}` is used. In legacy versions of PPR, the `prefetchDataRoute` entries would be populated with `.prefetch.rsc` v...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1233,6 +1233,7 @@ export async function handleBuildComplete({\n initialHeaders,\n initialStatus,\n dataRoute,\n+ prefetchDataRoute,\n renderingMode,\n allowHeader,\n ...
2026-01-29T22:26:40
facebook/react
7c28c154651f54a63a6823e4dc54faa218c05a89
90ccbd71c158a8aeb1bf3ec704011ddd58842b71
[compiler] Fix AnalyzeFunctions to fully reset context identifiers (#33500) AnalyzeFunctions had logic to reset the mutable ranges of context variables after visiting inner function expressions. However, there was a bug in that logic: InferReactiveScopeVariables makes all the identifiers in a scope point to the same m...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AnalyseFunctions.ts", "patch": "@@ -42,8 +42,16 @@ export default function analyseFunctions(func: HIRFunction): void {\n * Reset mutable range for outer inferReferenceEffects\n */\n for (const operand of i...
2025-06-18T20:02:23
rust-lang/rust
4a439b640fdc6d09437b5131a3809efbaddabbfa
bcf3d36c997dd9b5db4bb7f40cb91dd4cf46a305
Inline and remove `DepGraphData::try_mark_parent_green`. It has a single call site. And also remove all the `debug!` calls that clutter up the code. The end result is much easier to read, with `try_mark_previous_green` now recursively calling itself directly, instead of indirectly via `try_mark_parent_green`.
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -18,7 +18,7 @@ use rustc_macros::{Decodable, Encodable};\n use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};\n use rustc_session::Session;\n use rustc_span::Symbol;\n-use tracing::{debug, instrument};\n+use tracing::instrumen...
2026-03-20T06:09:07
nodejs/node
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
57f61ad5986a2da0ff33156215c95db2a5764611
esm: make hasAsyncGraph non-enumerable Otherwise the debug() calls would attempt to display it and throws an error. PR-URL: https://github.com/nodejs/node/pull/59905 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/module_wrap.cc", "patch": "@@ -56,6 +56,7 @@ using v8::ObjectTemplate;\n using v8::PrimitiveArray;\n using v8::Promise;\n using v8::PromiseRejectEvent;\n+using v8::PropertyAttribute;\n using v8::PropertyCallbackInfo;\n using v8::ScriptCompiler;\n using v8::ScriptOrigin;\n@@ -1391,7 +1392,10 @...
2025-09-18T19:02:05
golang/go
435e61c80141653c22e29d81447e4c6e4033f768
54e5540014f7aa7c85a3a5988259ef40637d541a
runtime: reject any goroutine leak test failure that failed to execute This is far more general than the regexp, which was necessary only because runTestProg doesn't return the error. This change makes runTestProg a wrapper function around a function that *does* return the error. For #76526. Change-Id: Ib3daa75eb0fe...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -97,6 +97,13 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {\n \tt.Helper()\n \n+\tout, _ := runBuiltTestProgErr(t, exe, name, env...)\n+\treturn...
2025-12-03T22:29:19
electron/electron
6f48e3ab12e5bd6ee697478eefc2835f8a9e9fb0
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
ci: fix up branch CI audit workflow (#47404)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -17,6 +17,7 @@ jobs:\n steps:\n - run: npm install @actions/cache @electron/fiddle-core\n - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1\n+ id: audit-errors\n with:\n git...
2025-06-07T07:58:48
vercel/next.js
f17694d61ff6b980721746ac6c9efa224ea01316
0e1b6d6afcd3a265392b5559ff15491ea4b3fb9f
Optimistic routing: client-side route prediction (#88965) Based on: - https://github.com/vercel/next.js/pull/88834 - https://github.com/vercel/next.js/pull/88989 - https://github.com/vercel/next.js/pull/88998 --- Adds optimistic routing, enabling the client to predict route structure for URLs that haven't been pref...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -357,6 +357,8 @@ export function getDefineEnv({\n config.experimental.transitionIndicator ?? false,\n 'process.env.__NEXT_GESTURE_TRANSITION':\n config.experimental.gestureTransition ?? false,\n+ 'process.env.__NEXT_OPTIMISTI...
2026-01-29T22:05:28
nodejs/node
f551c312977d83e50b8f0eaba5242cd1ab49cd2a
ed71aeec0f64380bcd1ca1f6dd54b1906d7214f2
tools: fix `tools/make-v8.sh` for clang Update `tools/make-v8.sh` so that it can work with either `gcc` or `clang`. Adds: - clang settings when CC/CXX environment variables set to clang/clang++. - Turns off warnings as errors. Removes: - goma settings. - Machine specific settings (moved to Jenkins job configuration)...
[ { "path": "tools/make-v8.sh", "patch": "@@ -20,37 +20,19 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n if [ \"$ARCH\" = \"ppc64le\" ]; then\n TARGET_ARCH=\"ppc64\"\n fi\n- # set paths manually for now to use locally installed gn\n- export BUILD_TOOLS=/home/iojs/build-tools...
2025-09-17T14:45:42
facebook/react
0cf6d0c929e14d4a3c5bcc11a7347b4cad250e7f
df080d228bdf5260067235c64daaa57ec3cfac23
[compiler] Update fixtures for new inference (#33496) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33496). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #33518 ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/aliased-nested-scope-truncated-dep.expect.md", "patch": "@@ -2,6 +2,7 @@\n ## Input\n \n ```javascript\n+// @enableNewMutationAliasingModel\n import {\n Stringify,\n mutate,\n@@ -101,7 +102,7 @@ expor...
2025-06-18T20:01:56
electron/electron
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
0b84c682291b1490a80849409623c3627bcdcab7
fix: rework lifetime mgmt of `ClearDataTask`/`ClearDataOperation` (#47361) * fix: rework lifetime mgmt of ClearDataTask/ClearDataOperation * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@gmail.com> * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@g...
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -84,6 +84,7 @@\n #include \"shell/common/gin_converters/time_converter.h\"\n #include \"shell/common/gin_converters/usb_protected_classes_converter.h\"\n #include \"shell/common/gin_converters/value_converter.h\"\n+#include \"shell/common/g...
2025-06-07T06:00:30
vercel/next.js
e5043d0e4d62c4fd718544b88d72d3b8488bdbac
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
[ci] Clear Jest transform cache (#89247) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impro...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -317,9 +317,10 @@ jobs:\n timeout-minutes: ${{ inputs.timeout_minutes }}\n \n # This file messes up the tests because it influences the build root autodetection.\n+ # Jest has a global cache, so PRs that poison the cache can b...
2026-01-29T16:25:08
electron/electron
0b84c682291b1490a80849409623c3627bcdcab7
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
ci: ignore network-related error annotations in audit (#47333) * ci: ignore network-related error annotation in audit * chore: add another error message
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -57,13 +57,15 @@ jobs:\n repo: \"electron\",\n check_run_id: checkRun.id,\n })).data ?? [];\n- console.log(checkRun);\n- console.log(annotations);\n \n ...
2025-06-06T20:52:25
facebook/react
df080d228bdf5260067235c64daaa57ec3cfac23
66cfe048d3ab02afd3eeba9e8d7710acb3a4ab38
[compiler] Copy fixtures affected by new inference (#33495) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33495). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/aliased-nested-scope-truncated-dep.expect.md", "patch": "@@ -0,0 +1,221 @@\n+\n+## Input\n+\n+```javascript\n+import {\n+ Stringify,\n+ mutate,\n+ identity,\n+ shallowCopy,\n+ setPropertyByKey,\n+} f...
2025-06-18T19:58:16
golang/go
54e5540014f7aa7c85a3a5988259ef40637d541a
9616c332956589c86a8366dc42f324108e6b88a4
runtime: print output in case of segfault in goroutine leak tests For #76526. Change-Id: I017e5d4c06e5de23cccc59c4c347599fecdece03 Reviewed-on: https://go-review.googlesource.com/c/go/+/726524 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,9 +487,9 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic|DATA RACE`...
2025-12-03T22:21:07
vercel/next.js
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
f1a047fd80944ac722ab6e481e1ec077378d31fc
fix: coerce HEAD to GET for internal images (#84180) Fixes: https://github.com/vercel/next.js/issues/84129 TODO: - [x] e2e test (?) - [x] verify against repro steps in source issue --------- Co-authored-by: Steven <steven@ceriously.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -900,9 +900,12 @@ export async function fetchInternalImage(\n ) => Promise<void>\n ): Promise<ImageUpstream> {\n try {\n+ // Coerce HEAD to GET to avoid issues with the image optimizer\n+ const method = !_req.method || _req.meth...
2026-01-29T15:43:18
nodejs/node
5c7b83a94e7bb0d4d7758acdfcd61fa8f21fc7cc
c46260284cb29a55e4f3aebc020bc31237110128
test: guard write to proxy client if proxy connection is ended In the testing proxy server for proxy client tests, the proxy client might have already closed the connection when the upstream connection fails. In that case, there's no need for the proxy server to inform the proxy client about the error. PR-URL: https:...
[ { "path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs", "patch": "@@ -21,9 +21,10 @@ const server = https.createServer({\n cert: fixtures.readKey('agent8-cert.pem'),\n key: fixtures.readKey('agent8-key.pem'),\n }, (req, res) => {\n+ console.log(`[Upstream server] responding to r...
2025-09-17T13:59:09
facebook/react
ae962653d63ca88b6727d6f585026f2bbfa313a1
e1dc03492eedaec517e14a6e32b8fda571d00767
[compiler] Remove unnecessary fixture (#33572) This is covered by iife-inline-ternary --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33572). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.todo-iife-inline-ternary.expect.md", "patch": "@@ -1,33 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function Component(props) {\n- const x = props.foo\n- ? 1\n- : (() => {\n- throw new Error('Did not ...
2025-06-18T19:57:54
electron/electron
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
660623081321b4774cd8f7962d2b1654bba14917
fix: printing PDF via `webContents.print()` (#47377) fix: printing PDF via webContents.print()
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2951,12 +2951,15 @@ void OnGetDeviceNameToUse(base::WeakPtr<content::WebContents> web_contents,\n print_settings.Set(printing::kSettingDpiVertical, dpi.height());\n }\n \n- auto* print_view_manager =\n- PrintViewManagerEle...
2025-06-06T18:20:37
golang/go
f84f8d86beb08631217e77d725a4b6528ed91dc2
a70addd3b31ccb685f48867e24c6c2b4dc364a11
cmd/compile: fix mis-infer bounds in slice len/cap calculations CL 704875 enhanced prove to infer bounds when index have a relationship with len(A) - K. However, the change incorrectly infer "K - len(A)" case, causing wrong bounds information. Fixing this by matching exactly "len(A) - K" case. Fixes #76709 Change-I...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2119,7 +2119,10 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\tif bound := ow.Args[0]; (bound.Op == OpSliceLen || bound.Op == OpStringLen) && bound.Args[0] == slice {\n \t\t\tlenOffset = ow.Args[1]\n \t\t} else if bound := o...
2025-12-05T14:49:53
nodejs/node
f6ea5bf3b0912741dfbbf0e8c1bafa8dd0fde550
e596098e50f1e4d8ad06dd9a0214d67e0b448431
fs,win: do not add a second trailing slash in readdir Do not add a trailing slash if it was not removed by resolve in ToNamespacedPath. PR-URL: https://github.com/nodejs/node/pull/59847 Fixes: https://github.com/nodejs/node/issues/58223 Refs: https://github.com/nodejs/node/pull/56110 Reviewed-By: Luigi Pinca <luigipi...
[ { "path": "src/node_file.cc", "patch": "@@ -1988,7 +1988,7 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n \n #ifdef _WIN32\n- if (slashCheck) {\n+ if (slashCheck && !path.ToStringView().ends_with(\"\\\\\")) {\n size_t new_length = path.length() + ...
2025-09-17T11:15:51
vercel/next.js
458933317a544c2e42a40eddfb2abe562b970fb9
980975f7933d70115f1fc5620fdaa7483d9a96d3
Turbopack: fix tracking modifications for transient and data (#89228) ### What? track modifications on the correct category
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs", "patch": "@@ -2160,8 +2160,7 @@ fn generate_flag_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n \n // Flags use check_access_call() which handles transient vs non-transient\n let check_access = field.chec...
2026-01-29T11:19:42
electron/electron
660623081321b4774cd8f7962d2b1654bba14917
a42afaa8665b6d1b3a344918c60853184a97060e
fix: silent printing of PDFs with `webContents.print` (#47378) fix: silent printing
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -666,7 +666,7 @@ index 6809c4576c71bc1e1a6ad4e0a37707272a9a10f4..3aad10424a6a31dab2ca393d00149ec6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/...
2025-06-06T18:19:08
golang/go
a70addd3b31ccb685f48867e24c6c2b4dc364a11
93b49f773d1a4b706f5352dffb912c259c15dc4f
all: fix some comment issues Change-Id: I5dec35b1432705b3a52859c38e758220282226af Reviewed-on: https://go-review.googlesource.com/c/go/+/726700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Dmitri Shuralyov <dmitshur@golang...
[ { "path": "src/crypto/md5/gen.go", "patch": "@@ -153,7 +153,7 @@ var data = Data{\n \t\t0x8d2a4c8a,\n \t},\n \tTable3: []uint32{\n-\t\t// round3\n+\t\t// round 3\n \t\t0xfffa3942,\n \t\t0x8771f681,\n \t\t0x6d9d6122,", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "src/cry...
2025-12-04T03:39:53
facebook/react
e1dc03492eedaec517e14a6e32b8fda571d00767
90bee819028bfecb724df298da798607b6a76abf
Expose cacheSignal() alongside cache() (#33557) This was really meant to be there from the beginning. A `cache()`:ed entry has a life time. On the server this ends when the render finishes. On the client this ends when the cache of that scope gets refreshed. When a cache is no longer needed, it should be possible to ...
[ { "path": "packages/react-noop-renderer/src/ReactNoopFlightServer.js", "patch": "@@ -70,6 +70,7 @@ type Options = {\n environmentName?: string | (() => string),\n filterStackFrame?: (url: string, functionName: string) => boolean,\n identifierPrefix?: string,\n+ signal?: AbortSignal,\n onError?: (er...
2025-06-17T21:04:40
nodejs/node
db926dc1fc10a4001708c5dbd6607b9e63e658b8
1ebe88f87cd618c2b5dc304a9440e9b5e118deb3
src: replace FIXED_ONE_BYTE_STRING with Environment-cached strings PR-URL: https://github.com/nodejs/node/pull/59891 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "src/node_realm.cc", "patch": "@@ -72,8 +72,7 @@ void Realm::CreateProperties() {\n CHECK(primordials->IsObject());\n set_primordials(primordials.As<Object>());\n \n- Local<String> prototype_string =\n- FIXED_ONE_BYTE_STRING(isolate(), \"prototype\");\n+ Local<String> prototype_string =...
2025-09-17T06:34:40
vercel/next.js
980975f7933d70115f1fc5620fdaa7483d9a96d3
e86876d3792fdea786be64a5727105c94e0e877c
Turbopack: add support for turbopackOptional: true (#89227) ### What? * add support for turbopackOptional: true * fix runtime code for unresolvable dynamic imports * add documentation about magic comments
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -65,7 +65,7 @@ use turbopack_core::{\n output::{OutputAsset, OutputAssets, OutputAssetsWithReferenced},\n reference::all_assets_from_entries,\n reference_type::{CommonJsReferenceSubType, CssReferenceSubType, ReferenceType},\n- resolve::{ori...
2026-01-29T09:13:21
electron/electron
a42afaa8665b6d1b3a344918c60853184a97060e
b1f0ab11c5c4511026a844f624bf93745896d3cc
chore: fix docs lint (#47389)
[ { "path": "docs/tutorial/native-code-and-electron-swift-macos.md", "patch": "@@ -1088,7 +1088,7 @@ NODE_API_MODULE(swift_addon, Init)\n You're so close! We now have working Objective-C, Swift, and thread-safe ways to expose methods and events to JavaScript. In this final step, let's create a JavaScript wrap...
2025-06-06T08:01:26
golang/go
91267f0a709191d8f1e3f4fa805c9d88856f9957
a753a9ed54c7ead93e56e5b183b743877b7695a6
all: update vendored x/tools Pull in the following x/tools changes: - CL 726000: go/analysis/passes/modernize: omitzero: suppress on kubebuilder - CL 726621: internal/refactor/inline: built-ins may affect inference - CL 727041: go/analysis/passes/modernize: fix stringscut false positives - CL 727040: go/analysis/unit...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.1-0.20251125153526-08e54827f670\n \tgolang.org/x/telemetry v0.0.0-20251128220624-abf20d0e57ec\n \tgolang.org/x/term v0.37.0\n-\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713\n+\tgolang.org/x/tools v0.39.1...
2025-12-04T22:57:40