repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
3a7c6dd4a551eebb6bd4581ad746ba38808049ac
26e886c517bc57747081b6cc26380b03bc61654a
fix: MacOS 26 Tahoe - stop overriding private cornerMask API to fix WindowServer GPU load (#48376) fix: macOS stop overriding private cornerMask API to fix WindowServer GPU load spike Electron fetched a custom `_cornerMask` for `ElectronNSWindow` to smooth vibrancy corners. On macOS 15 (Tahoe) that private hook force...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1333,7 +1333,6 @@ static bool FromV8(v8::Isolate* isolate,\n maskImage.capInsets = NSEdgeInsetsMake(radius, radius, radius, radius);\n maskImage.resizingMode = NSImageResizingModeStretch;\n [vibrantView setMaskImage:maskImage];\...
2025-09-26T19:41:16
vercel/next.js
6144980ce306a1d962304f1e3881ad2b84f5ff92
f8e47d49b0b5feb9e0f281cdb79af6d6f7013eb8
Expand deferred entries test suite and fix turbopack build (#90057) ## Summary Reworks Turbopack deferred entries in production build so deferred routes are processed last in the same project lifecycle, with `onBeforeDeferredEntries` executed between the non-deferred and deferred phases. ## What changed - Moved defer...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -806,11 +806,26 @@ impl AppProject {\n \n #[turbo_tasks::function]\n pub async fn routes(self: Vc<Self>) -> Result<Vc<Routes>> {\n+ Ok(self.routes_with_filter(None))\n+ }\n+\n+ #[turbo_tasks::function]\n+ pub async fn routes_with_f...
2026-02-16T23:54:14
golang/go
cc6923e839ff10581223a600fca805203d56acd5
f809faeb8e2534da29e980ebd98dfbd4e8a7f4ba
cmd/compile: reduce lock/scheduler contention During the parallel section of compilation, we limit the amount of parallelism to prevent scheduler churn. We do this with a worker scheduler, but it does not have insight on when a compilation is blocked due to lock contention. The symbol table was protected with a lock....
[ { "path": "src/cmd/compile/internal/gc/compile.go", "patch": "@@ -142,73 +142,47 @@ func compileFunctions(profile *pgoir.Profile) {\n \t\t// Compile the longest functions first,\n \t\t// since they're most likely to be the slowest.\n \t\t// This helps avoid stragglers.\n+\t\t// Since we remove from the end ...
2025-12-01T09:40:16
nodejs/node
76027d83e975c2d66d15ed2575b3718f45319ab2
cfa11ba893f5905840049b0bfe33653bbfd718a8
test: split test-esm-wasm.js The test has been flaking due to either timeout or calling uv_async_send on a closing/closed handle. As the test squeezes too many independent test cases in one file, split it up to avoid timing out on slower machines and aid debugging. PR-URL: https://github.com/nodejs/node/pull/60491 Re...
[ { "path": "test/es-module/test-esm-wasm-escape-import-names.mjs", "patch": "@@ -0,0 +1,10 @@\n+// Test that import names are properly escaped\n+import '../common/index.mjs';\n+import { spawnSyncAndAssert } from '../common/child_process.js';\n+import * as fixtures from '../common/fixtures.js';\n+\n+spawnSync...
2025-11-05T10:36:31
facebook/react
3958d5d84b3d3e6ae5c1caef9c8cf0dc58e862e6
738aebdbacff9becd469b888209a08436f87c511
[Flight] Copy the name field of a serialized function debug value (#34085) This ensures that if the name is set manually after the declaration, then we get that name when we log the value. For example Node.js `Response` is declared as `_Response` and then later assigned a new name. We should probably really serialize...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1969,6 +1969,44 @@ function createModel(response: Response, model: any): any {\n return model;\n }\n \n+const mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/;\n+\n+function getInferredFunctionApproximate(code: string): () =...
2025-08-07T14:55:01
electron/electron
26e886c517bc57747081b6cc26380b03bc61654a
26a473db981c9593154aaeb0a558565722105c83
fix: disable NSAutoFillHeuristicController on macOS 26 (#48379) Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -141,3 +141,4 @@ chore_add_electron_objects_to_wrappablepointertag.patch\n chore_expose_isolate_parameter_in_script_lifecycle_observers.patch\n revert_partial_remove_unused_prehandlemouseevent.patch\n allow_electron_to_depend_on_components_os_crypt_sync.pa...
2025-09-25T23:40:55
vercel/next.js
a04d598f3c9070674968e57c610182df65a0755e
ababa1b3d967030ba2aa63a808ef3203f59e9b73
docs: agent skills, pr-status script, and AGENTS.md updates (1/8) (#89857) ## Summary - **Agent skills**: 9 new skill files in `.agents/skills/` covering DCE, flags, react-vendoring, runtime-debug, PR triage, and skill authoring - **PR status tooling**: `scripts/pr-status.js` script and `.claude/commands/pr-status.md...
[ { "path": ".agents/skills/README.md", "patch": "@@ -0,0 +1,115 @@\n+# Skills Authoring Guide\n+\n+Skills are on-demand context files that Claude loads when relevant. They extend `AGENTS.md` with deep-dive workflows, code templates, and verification steps.\n+\n+## When to Create a Skill\n+\n+Create a skill w...
2026-02-16T17:32:27
golang/go
30dff416e42b0bd44237b7658eafc7063dda6b63
f8b72802d7a7dd2bcb81bdaead80be802e16351b
cmd/compile: redo how equality functions are generated Instead of generating an equality function for each type that needs it, generate one per "signature". A "signature" is a summary of the comparisons needed to check a type for equality. For instance, the type type S struct { i int32 j uint32 s str...
[ { "path": "src/cmd/compile/internal/reflectdata/alg.go", "patch": "@@ -6,6 +6,9 @@ package reflectdata\n \n import (\n \t\"fmt\"\n+\t\"go/constant\"\n+\t\"strconv\"\n+\t\"strings\"\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/compare\"\n@@ -14,7 +17,6 @@ import (\n \t\"cmd/compile/interna...
2025-11-29T01:17:24
nodejs/node
f4145f04518f6da697344029a963e24b95ef4276
53c4a39fec941e04150554fdd3e654b48f2e1b31
doc: fix typo in http.md PR-URL: https://github.com/nodejs/node/pull/59354 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: theanarkh <theratliter@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/http.md", "patch": "@@ -639,7 +639,7 @@ added: v0.3.6\n -->\n \n Emitted when the request has been sent. More specifically, this event is emitted\n-when the last segment of the response headers and body have been handed off to\n+when the last segment of the request headers and body have b...
2025-11-04T22:37:12
facebook/react
4c9c109cea9be3622d9d70f81f96e72528bdad16
552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1
[Fiber] Try to give a stack trace to every entry in the Scheduler Performance Track (#34123) For "render" and "commit" phases we don't give any specific stack atm. This tries to always provide something useful to say the cause of the render. For normal renders this will now show the same thing as the "Event" and "Upd...
[ { "path": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -158,6 +158,7 @@ import {\n DefaultHydrationLane,\n SomeRetryLane,\n includesSomeLane,\n+ includesOnlyRetries,\n laneToLanes,\n removeLanes,\n mergeLanes,\n@@ -269,6 +270,7 @@ import {\n scheduleUpdateOnFiber,\n ...
2025-08-07T14:26:30
electron/electron
26a473db981c9593154aaeb0a558565722105c83
6661457cdfdddfc7963aa2450fcec9d4bb9688f6
refactor: make api::Menu inherit from gin::Wrappable (#48351) * refactor: make api::Menu inherit from gin::Wrappable* * refactor: make api::Menu::kWrapperInfo const * refactor: use three-arg version of GetConstructor in Menu refactor: undo branch changes to two-arg version of GetConstructor * fixup! refactor: make...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,20 +8,21 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163...
2025-09-25T00:42:22
vercel/next.js
80e849e152aa244d270cd539766e3bd69a97b6cf
0382ecc2963f42baa2aa15f378309a40d0f62ed3
fix(turbopack): --debug-build-paths fails with route groups (#89336) Confirmed the fix locally on the original app I faced the issue with. ### Why? When using `--debug-build-paths`, a pattern with a route group on Turbopack, it fails with an error: ``` Error [PageNotFoundError]: Cannot find module for page: /nested...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -10,6 +10,7 @@ use next_core::{\n instrumentation::instrumentation_files,\n middleware::middleware_files,\n mode::NextMode,\n+ next_app::{AppPage, AppPath},\n next_client::{\n ClientChunkingContextOptions, get_client_chunkin...
2026-02-16T09:23:00
rust-lang/rust
36c22f7cf7a7070c9c6b478406f9b2ba831560c6
bbe853615821442ef11d6cd42a30a73432b38d89
Add test for dead code warnings in const _ Tests that dead code warnings work correctly inside const _ blocks. Issue was already fixed, adding regression test as requested.
[ { "path": "tests/ui/lint/dead-code/const-underscore-issue-101532.rs", "patch": "@@ -0,0 +1,14 @@\n+//@ check-pass\n+// Test for issue #101532 - dead code warnings should work inside const _\n+\n+#![warn(dead_code)]\n+\n+const _: () = {\n+ let a: ();\n+ struct B {} //~ WARN struct `B` is never construc...
2026-03-23T12:08:12
golang/go
f8b72802d7a7dd2bcb81bdaead80be802e16351b
b408256be720c51ff1730d7a97389a975744a312
encoding/json: fix typo in package doc. Change-Id: Id5520757e4d73e56e533e4de4f5f303105c4339e Reviewed-on: https://go-review.googlesource.com/c/go/+/738180 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: David Symonds <dsymonds@golang.org> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Dav...
[ { "path": "src/encoding/json/encode.go", "patch": "@@ -26,7 +26,7 @@\n //\n // Due to the Go Backwards Compatibility promise (https://go.dev/doc/go1compat)\n // there are a number of behaviors this package exhibits that may cause\n-// interopability issues, but cannot be changed. In particular the following...
2026-01-22T00:25:18
nodejs/node
c9578dc557ef767eb8204a9d0d7731a599213028
be3fc1f7296f831a49b7c538b503684c7c6ca7b8
crypto: fix argument validation in crypto.timingSafeEqual fast path A regression introduced by https://github.com/nodejs/node/commit/0136bb0ee807b9789bf69e8d87e7a98e1b15f217 made it possible for the fast path to be hit with non-array-buffer arguments despite that the fast paths could only deal with array buffer argume...
[ { "path": "src/crypto/crypto_timing.cc", "patch": "@@ -56,6 +56,20 @@ bool FastTimingSafeEqual(Local<Value> receiver,\n // NOLINTNEXTLINE(runtime/references)\n FastApiCallbackOptions& options) {\n HandleScope scope(options.isolate);\n+ if (!IsAnyBufferSou...
2025-11-03T22:18:51
electron/electron
6661457cdfdddfc7963aa2450fcec9d4bb9688f6
b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc
refactor: prefer upstream `gin::Arguments::ThrowTypeError()` over `gin_helper` (#48368) * refactor: use gin::Arguments::ThrowTypeError() in AutoUpdater::SetFeedURL() * refactor: use gin::Arguments::ThrowTypeError() in Browser::Focus() * refactor: use gin::Arguments::ThrowTypeError() in SystemPreferences::SetUserDefa...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -455,10 +455,10 @@ void GotPrivateKey(std::shared_ptr<content::ClientCertificateDelegate> delegate,\n }\n \n void OnClientCertificateSelected(\n- v8::Isolate* isolate,\n+ v8::Isolate* const isolate,\n std::shared_ptr<content::ClientCe...
2025-09-25T00:10:05
facebook/react
552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1
f468d37739cbce9caff88c3b83aca47b0ea7bdbc
[DevTools] fix: handle store mutations synchronously in TreeContext (#34119) If there is a commit that removes the currently inspected (selected) elements in the Components tree, we are going to kick off the transition to re-render the Tree. The elements will be re-rendered with the previous inspectedElementID, which ...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/TreeContext.js", "patch": "@@ -954,7 +954,7 @@ function TreeContextController({\n Array<number>,\n Map<number, number>,\n ]) => {\n- transitionDispatch({\n+ dispatch({\n type: 'HANDLE_STORE_MUTATION',\n...
2025-08-07T13:05:56
golang/go
b408256be720c51ff1730d7a97389a975744a312
27fcec4d8f3041e845762303d85d868cc3e351e8
cmd/compile: fix loopvar version detection with line directives The Go loop variable semantics changed in Go 1.22: loop variables are now created per-iteration instead of per-loop. The compiler decides which semantics to use based on the Go version in go.mod. When go.mod specifies go 1.21 and the code is built with a...
[ { "path": "src/cmd/compile/internal/loopvar/loopvar_test.go", "patch": "@@ -6,6 +6,7 @@ package loopvar_test\n \n import (\n \t\"internal/testenv\"\n+\t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"regexp\"\n@@ -381,3 +382,62 @@ func TestLoopVarVersionDisableGoBuild(t *testing.T) {\n \t\tt.Errorf(\"err...
2026-01-21T06:57:14
vercel/next.js
18b18e228aee0d578963bdebf5df805ab426f6e1
ee76e305cc26fc20035bdaf556273a0246876b14
fix(agents-md): use `require.resolve()` to get the installed `next` version (#89166) ### Why? When the package.json has Next.js version with a tag instead of a specific version, e.g., `"next": "canary"`, it received an error: ``` Failed to pull docs: Could not find documentation for Next.js vcanary. This version may...
[ { "path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js", "patch": "@@ -5,6 +5,7 @@ const fs = require('fs')\n const path = require('path')\n const os = require('os')\n const { runAgentsMd } = require('../../bin/agents-md')\n+const { getNextjsVersion } = require('../../lib/agents-md')\n \n /**\...
2026-02-14T20:36:47
nodejs/node
4346c0f7a7fe67e4ed2d5c0bf7b5815957a8abf4
f9a83ffcd904a563bd74e27253fe265d36b1c03a
http: fix handling of HTTP upgrades with bodies Previously, we ignored all indicators of the body (content-length or transfer-encoding headers) and treated any information following the headers as part of the upgraded stream. We now fully process the requests bodies separately instead, allowing us to automatically han...
[ { "path": "doc/api/http.md", "patch": "@@ -745,7 +745,7 @@ added: v0.1.94\n -->\n \n * `response` {http.IncomingMessage}\n-* `socket` {stream.Duplex}\n+* `stream` {stream.Duplex}\n * `head` {Buffer}\n \n Emitted each time a server responds to a request with an upgrade. If this\n@@ -768,13 +768,13 @@ const s...
2025-11-03T17:19:33
electron/electron
b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc
235fdc41f6ccea67afa10a423024d337093540fd
test: rerun failed tests individually (#48205) * test: rerun failed tests individually * ci: use screencapture-nag-remover Needed to bypass the popup message "bash" is requesting to bypass the system private window picker and directly access your screen and audio. * Revert "chore: test with 1st quadrant of the wind...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -110,11 +110,6 @@ jobs:\n configure_sys_tccdb \"$values\"\n fi\n done\n-\n- # Ref: https://github.com/getsentry/sentry-cocoa/blob/main/scripts/ci-enable-permissions.sh\n- if [ \"$OSTYPE...
2025-09-24T20:35:14
facebook/react
b080063331af4d2c359b3cc576813dbca6e7db5c
66f09bd0540d0a094b80c94d013df885903c97da
[DevTools] Source Map Stack Traces such in await locations (#34094) Stacked on #34093. Instead of using the original `ReactStackTrace` that has the call sites on the server, this parses the `Error` object which has the virtual call sites on the client. We'll need this technique for things stack traces suspending on t...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -401,7 +401,7 @@ Object.defineProperty(exports, \"__esModule\", { value: true });\n exports.f = f;\n function f() { }\n //# sourceMappingURL=`;\n- const result = ['', 'http://test/a.mts', 1, 16];\n+ const result = [''...
2025-08-06T17:45:06
golang/go
27fcec4d8f3041e845762303d85d868cc3e351e8
478d86446e88dc9e0b46e08914cb564d7c705d1e
runtime: speed up cheaprand and cheaprand64 The current cheaprand performs 128-bit multiplication on 64-bit numbers and truncate the result to 32 bits, which is inefficient. A 32-bit specific implementation is more performant because it performs 64-bit multiplication on 32-bit numbers instead. The current cheaprand6...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -273,6 +273,10 @@ func CountPagesInUse() (pagesInUse, counted uintptr) {\n \treturn\n }\n \n+func Blocksampled(cycles, rate int64) bool { return blocksampled(cycles, rate) }\n+\n+func Cheaprand() uint32 { return cheaprand() }\n+func Cheaprand64() ...
2026-01-23T03:44:50
nodejs/node
e40b9b98bb50e40de8996aac46e6c1fa2702df76
21b0fe4b28d2972fa96e535106e607666d33bc5b
tls: fix leak on invalid protocol method PR-URL: https://github.com/nodejs/node/pull/60427 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -1351,7 +1351,6 @@ SecureContext* SecureContext::Create(Environment* env) {\n SecureContext::SecureContext(Environment* env, Local<Object> wrap)\n : BaseObject(env, wrap) {\n MakeWeak();\n- env->external_memory_accounter()->Increase(env->isolate(...
2025-11-03T16:35:56
vercel/next.js
ee76e305cc26fc20035bdaf556273a0246876b14
9662feb629fd9c1d402e558a7783bb12d5300313
dx: Include path count in export error message (#89333) Supersedes https://github.com/vercel/next.js/pull/88910 --- <a href="https://cursor.com/background-agent?bcId=bc-a05c69b9-7049-4095-8985-761868c63e1c"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-cursor-d...
[ { "path": "packages/next/errors.json", "patch": "@@ -1050,5 +1050,6 @@\n \"1049\": \"Turbopack is not supported on this platform (%s/%s) because native bindings are not available. Only WebAssembly (WASM) bindings were loaded, and Turbopack requires native bindings.\\\\n\\\\nTo use Next.js on this platform...
2026-02-14T20:28:28
rust-lang/rust
bf8178627c7140f86387eb94b942d39577642161
2db5d1ffdb6d7efdfa722221c0b5dd6093e1881d
fix: keep comments for 'Fill match arms' Example --- ```rust enum E { A, B, C } fn foo(t: E) -> i32 { match $0t { // variant a E::A => 2 // comment on end } } ``` **Before this PR** ```rust enum E { A, B, C } fn foo(t: E) -> i32 { match t { E::A => 2, E::B => ${1...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -6,10 +6,11 @@ use ide_db::RootDatabase;\n use ide_db::syntax_helpers::suggest_name;\n use ide_db::{famous_defs::FamousDefs, helpers::mod_path_to_ast};\n use itertools::Itertools;\n-use syntax::ToSmol...
2026-03-04T04:02:07
facebook/react
b211d7023c2f142aa21296bccba1de212d700c09
ba4bdb2ab5e15398fb2ffaafe944a1de56851734
[compiler] Add repros for various invariants (#34099) We received some bug reports about invariants reported by the compiler in their codebase. Adding them as repros. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/face...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-infer-mutation-aliasing-effects.expect.md", "patch": "@@ -0,0 +1,46 @@\n+\n+## Input\n+\n+```javascript\n+import {useCallback, useRef} from 'react';\n+\n+export default function useThunkDispatch(state, dispatc...
2025-08-04T18:36:12
golang/go
478d86446e88dc9e0b46e08914cb564d7c705d1e
8f739162e6479e98b0950ac9dc2f69cd79031be2
cmd/compile: on amd64 use 32bits copies for 64bits copies of 32bits values Fixes #76449 This saves a single byte for the REX prefix per OpCopy it triggers on. Change-Id: I1eab364d07354555ba2f23ffd2f9c522d4a04bd0 Reviewed-on: https://go-review.googlesource.com/c/go/+/731640 Reviewed-by: Michael Pratt <mpratt@google.c...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isGPReg(r int16) bool {\n+\treturn x86.REG_AL <= r && r <= x86.REG_R15\n+}\n+\n func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n...
2025-12-20T13:11:35
nodejs/node
0de8425dc9d8926d543fe517843f31567a6b6154
c586449f0661534c5dbd16dc219f37871d4258cc
doc: instantiate resolver object PR-URL: https://github.com/nodejs/node/pull/60476 Fixes: https://github.com/nodejs/node/issues/60455 Refs: https://nodejs.org/api/stream.html#readabletoarrayoptions Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2315,6 +2315,8 @@ import { Resolver } from 'node:dns/promises';\n \n await Readable.from([1, 2, 3, 4]).toArray(); // [1, 2, 3, 4]\n \n+const resolver = new Resolver();\n+\n // Make dns queries concurrently using .map and collect\n // the results into an array usi...
2025-11-02T19:09:37
electron/electron
1fda08b8c8ffad2fec485f7c8089b9e0958cc2f5
19256a07dde3771b36cdec01ccf4b004a623d79b
chore: bump chromium to 142.0.7417.0 (main) (#48275) * chore: bump chromium in DEPS to 142.0.7401.0 * 6911185: Reland "Send touch moves async immediately after scroll starts." https://chromium-review.googlesource.com/c/chromium/src/+/6911185 * 6906887: mac: click through content area in main window https://chromiu...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -172,7 +172,6 @@ runs:\n run: |\n rm -rf src/android_webview\n rm -rf src/ios/chrome\n- rm -rf src/third_party/blink/web_tests\n rm -rf src/third_party/blink/perf_tests\n rm -rf src/chrome/test/data/xr/webvr_info\...
2025-09-23T03:16:27
vercel/next.js
f63be5da4275166c9ee618ffa4010c888c9fa6a9
373abe4dd0046ca4810005beff087bc4345eec5d
test: Isolate read-only-source-hmr test (#86721) This was flakey with Turbopack: ``` Error: TIMED OUT: /New page/ 404 This page could not be found. undefined at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9) at Object.<anonymous> (/root/actions-runner/_work/next.js/next....
[ { "path": "test/development/read-only-source-hmr/test/index.test.ts", "patch": "@@ -0,0 +1,156 @@\n+import { nextTestSetup } from 'e2e-utils'\n+import { getBrowserBodyText, retry } from 'next-test-utils'\n+import fs from 'fs-extra'\n+import path from 'path'\n+import { type Playwright } from 'next-webdriver'...
2026-02-14T10:08:12
facebook/react
557745eb0b50c2c7b126813fdae9c1929afc87f9
d3f800d47a9f98f03e44bf30b0c3ad524110ba6d
[DevTools] Add structure full stack parsing to DevTools (#34093) We'll need complete parsing of stack traces for both owner stacks and async debug info so we need to expand the stack parsing capabilities a bit. This refactors the source location extraction to use some helpers we can use for other things too. This is ...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -19,8 +19,8 @@ import {\n formatWithStyles,\n gt,\n gte,\n- parseSourceFromComponentStack,\n } from 'react-devtools-shared/src/backend/utils';\n+import {extractLocationFromComponentStack} from 'react-devtools-shared/...
2025-08-04T13:37:46
electron/electron
f62d7254c4c4c865e40da8056aee73644aa37bd7
c7aa0b537d4be8bf5db281bacdf76a26aae1866d
build: update build tools to get siso for forks fix (#48345)
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -44,14 +44,6 @@ runs:\n - name: Add Clang problem matcher\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n- - name: Setup Siso for fork pull requests\n- if: ${{ github.e...
2025-09-18T04:04:09
rust-lang/rust
e20616882af110507162e48b113456eaf5aadac1
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
fix: upmap macro-expanded usages in destructure struct/tuple binding when a local binding is used inside a macro call (e.g. write!(s, "{}", x.field) or write!(s, "{}", t.0)), the usage's name node lives in the macro expansion tree while the syntax editor is rooted at the source file tree. passing the expansion node to...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/destructure_struct_binding.rs", "patch": "@@ -17,7 +17,7 @@ use syntax::{\n \n use crate::{\n assist_context::{AssistContext, Assists, SourceChangeBuilder},\n- utils::ref_field_expr::determine_ref_and_parens,\n+ utils::{cover_edit_...
2026-03-24T08:58:24
nodejs/node
8f66bec900e65479b03cb5715f17bcb68ea35a7f
24bebd01a72a30743a35d7c7c12c559a77464995
deps: V8: cherry-pick 7ef6a001762 Origin commit message: [loong64] Fix no pointer compression build 1. Fix a typo that breaks no static root build. 2. Use less scratch regs in some compare and branch functions. This bug is triggered by Node.js loong64 port. Change-Id: If251906cc07feca237c75f0b6...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-11-02T13:17:53
facebook/react
30fca45c1c3aa8c37a9fd63e7d43ab20f229958f
c499adf8c89bbfd884f4d3a58c4e510001383525
fix: apply initial horizontal offset on tree mount (#34088) When the element is pre-selected and the Tree component is mounted, right now we are only applying initial vertical offset, but not the horizontal one. Because of this, if the DOM element was selected on Elements panel and then user opens Components panel fo...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js", "patch": "@@ -24,7 +24,7 @@ import {TreeDispatcherContext, TreeStateContext} from './TreeContext';\n import Icon from '../Icon';\n import {SettingsContext} from '../Settings/SettingsContext';\n import {BridgeContext, StoreCont...
2025-08-04T11:12:53
electron/electron
048d6207014ac6294ac3f69bbd71182b91593f46
15cdae1cf0bed0d759fe1e7b7087e5e3fc32269d
fix: remove unneeded handlescope from JS callbacks (#48318) fix: remove handlescope from JS callbacks
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -1700,14 +1700,11 @@ Session* Session::CreateFrom(v8::Isolate* isolate,\n return nullptr;\n }\n \n- {\n- v8::HandleScope handle_scope(isolate);\n- v8::Local<v8::Object> wrapper;\n- if (!session->GetWrapper(isolate).ToLocal(&...
2025-09-15T21:56:38
vercel/next.js
373abe4dd0046ca4810005beff087bc4345eec5d
40b924359474771cd11c25bc14bfa44d2a7024bb
Turbopack: Update trybuild test dependency from 1.0.104 to 1.0.116 (#89986) This fixes a bug where these tests could fail if your terminal was too wide: https://github.com/dtolnay/trybuild/pull/325
[ { "path": "Cargo.lock", "patch": "@@ -2568,7 +2568,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253\"\n dependencies = [\n \"fallible-iterator\",\n- \"indexmap 2.9.0\",\n+ \"indexmap 2.12.0\",\n \"stable...
2026-02-14T10:07:46
golang/go
3443ae086314e8cb7994166a5b63a8ab056b6c44
ca5ffe0092363f21df2c57b50144ba056f260049
net: fix some ineffectual assignments reported by ineffassign Updates #35136 Change-Id: I5422a50dde51c0a57f135c83f4963053285a9bc2 GitHub-Last-Rev: 6db1a88da60fce3e4fd6697d5db75d55d53b2b49 GitHub-Pull-Request: golang/go#76704 Reviewed-on: https://go-review.googlesource.com/c/go/+/727080 Reviewed-by: Florian Lehner <le...
[ { "path": "src/net/dial_test.go", "patch": "@@ -1088,14 +1088,16 @@ func TestDialContext(t *testing.T) {\n \t\t\tvar c Conn\n \t\t\tswitch network {\n \t\t\tcase \"tcp\", \"tcp4\", \"tcp6\":\n-\t\t\t\traddr, err := netip.ParseAddrPort(ln.Addr().String())\n+\t\t\t\tvar raddr netip.AddrPort\n+\t\t\t\traddr, e...
2025-12-06T01:35:22
nodejs/node
fa33ba3f76cc0bf3d4ab8eda11b45eb3b08626e2
e1e0830ae519765d7f0f941feb4f52b44a5adefc
test: fix flaky test-watch-mode-kill-signal-* After the write triggers a restart of the grandchild, the newly spawned second grandchild can post another 'script ready' message before the stdout from the first grandchild is relayed by the watcher and processed by this parent process to kill the watcher. If we write aga...
[ { "path": "test/fixtures/kill-signal-for-watch.js", "patch": "@@ -1,4 +1,10 @@\n-process.on('SIGTERM', () => { console.log('__SIGTERM received__'); process.exit(); });\n-process.on('SIGINT', () => { console.log('__SIGINT received__'); process.exit(); });\n-process.send('script ready');\n+process.on('SIGTERM...
2025-11-01T11:15:52
electron/electron
54447387218af60f6290170e72fe7c32b4b2a1c8
a6959ca97b93485f3ccc38e4d357e9b2e9273479
fix: set ozone platform for wayland (#48301) * fix: set ozone platform for wayland * whoops, includes. thx charles
[ { "path": "BUILD.gn", "patch": "@@ -655,6 +655,7 @@ source_set(\"electron_lib\") {\n \"//ui/events/devices/x11\",\n \"//ui/events/platform/x11\",\n \"//ui/gtk:gtk_config\",\n+ \"//ui/linux:display_server_utils\",\n \"//ui/linux:linux_ui\",\n \"//ui/linux:linux_ui_factory\"...
2025-09-12T23:17:06
facebook/react
c499adf8c89bbfd884f4d3a58c4e510001383525
1d163962b21f9396d26930e31719bd8b10d9e107
[Flight] Allow Temporary References to be awaited (#34084) Fixes #33534. `.then` method can be tested when you await a value that's not a Promise. For regular Client References we have a way to mark those as "async" and yield a reference to the unwrapped value in case it's a Promise on the Client. However, the reali...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReply-test.js", "patch": "@@ -438,6 +438,50 @@ describe('ReactFlightDOMReply', () => {\n expect(response.obj).toBe(obj);\n });\n \n+ it('can return an opaque object through an async function', async () => {\n+ function fn() {...
2025-08-02T22:44:20
vercel/next.js
40b924359474771cd11c25bc14bfa44d2a7024bb
bd473d007b461eab4866e38c66590f79e26c370f
docs: fix broken blockquote formatting in API Routes page (#89966) The second and third bullet points in the 'Good to know' callout were incorrectly placed outside the blockquote, breaking the visual grouping on the rendered documentation page. <!-- Thanks for opening a PR! Your contribution is much appreciated. To m...
[ { "path": "docs/02-pages/03-building-your-application/01-routing/07-api-routes.mdx", "patch": "@@ -45,9 +45,8 @@ export default function handler(req, res) {\n > **Good to know**:\n >\n > - API Routes [do not specify CORS headers](https://developer.mozilla.org/docs/Web/HTTP/CORS), meaning they are **same-ori...
2026-02-14T00:31:20
golang/go
b291c3c35c41ddd2db75c3b3ce8ae476fe11ea7b
d774ced6a97d3e354d92e874861fb24d7527e3cb
cmd/compile: fix typos in types2 api_test.go Change-Id: Ifee1b0f590ebb6671efd61a289c8884a225f5d6b GitHub-Last-Rev: 175ae95847b0108949459b881c2cd2144e74353e GitHub-Pull-Request: golang/go#76782 Reviewed-on: https://go-review.googlesource.com/c/go/+/728980 Reviewed-by: Jorropo <jorropo.pgm@gmail.com> Auto-Submit: Jorrop...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -1015,13 +1015,13 @@ func (r *N[C]) n() { }\n \t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n \t}\n \tif gn != dn {\n-\t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n+\...
2025-12-10T17:52:23
nodejs/node
e1e0830ae519765d7f0f941feb4f52b44a5adefc
3c248c35562389d13057927f11a90b1671cf85ca
tools: fix update-icu script Closes: https://github.com/nodejs/node/issues/60506 PR-URL: https://github.com/nodejs/node/pull/60521 Fixes: https://github.com/nodejs/node/issues/60506 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "tools/dep_updaters/update-icu.sh", "patch": "@@ -32,15 +32,11 @@ CURRENT_VERSION=\"$(grep \"#define U_ICU_VERSION \" \"$ICU_VERSION_H\" | cut -d'\"' -f\n # This function exit with 0 if new version and current version are the same\n compare_dependency_version \"icu-small\" \"$NEW_VERSION\" \"$CURR...
2025-11-01T08:34:43
rust-lang/rust
bb0bc8567ffa39c767650f6603a965001cba94c0
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
fix: wrap `Option<>` for desugar_try_expr_let_else Example --- ```rust fn test() { let pat: bool = Some(true)$0?; } ``` **Before this PR** ```rust fn test() { let Some(pat): bool = Some(true) else { return None; }; } ``` **After this PR** ```rust fn test() { let Some(pat): Option<bool> = So...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/desugar_try_expr.rs", "patch": "@@ -116,7 +116,7 @@ pub(crate) fn desugar_try_expr(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let fill_expr = || crate::utils::expr_fill_default(ctx.config);\n let new_...
2026-03-24T09:53:31
facebook/react
1d163962b21f9396d26930e31719bd8b10d9e107
ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872
Allow returning a temporary reference inside an async function (#33761) <!-- 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": "packages/react-server/src/ReactFlightServerTemporaryReferences.js", "patch": "@@ -70,6 +70,9 @@ const proxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ // Allow returning a t...
2025-08-02T22:11:54
electron/electron
a6959ca97b93485f3ccc38e4d357e9b2e9273479
45353ae38c9b3bee1ed888bed5685a64c3e864ab
refactor: allocate api::Debugger on cpp heap (#48266) * refactor: remove unused isolate arg from Debugger ctor * refactor: make Debugger ctor, dtor public needed for cppgc::MakeGarbageCollected() This is what upstream does, e.g. https://chromium-review.googlesource.com/c/chromium/src/+/6722236 * fixup! refactor: r...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,17 +8,18 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163...
2025-09-11T20:03:17
vercel/next.js
e0668e46689d75d7f2b44b8d634dcaeecfeeb741
69d63edcc74d0ca428322406329872887e82aae9
Run fast immediates during prerender abort to fix flaky I/O stack traces (#89969) Follow-up for #89834. In `prerenderAndAbortInSequentialTasks`, React's `finishHalt` (scheduled via `setImmediate` from `abort()`) could race with the component's pending `setTimeout` callback. When both ended up in the same timer phase,...
[ { "path": "packages/next/src/server/app-render/app-render-prerender-utils.ts", "patch": "@@ -33,8 +33,15 @@ export function prerenderAndAbortInSequentialTasks<R>(\n })\n scheduleTimeout(() => {\n try {\n- expectNoPendingImmediates()\n+ DANGEROUSLY_runPendingImmediatesAf...
2026-02-13T22:24:44
golang/go
d774ced6a97d3e354d92e874861fb24d7527e3cb
6d89ab44cc783abb68d511e88723c2b8ebf4ca3b
cmd/go/internal/vcs: support git worktrees Fixes golang/go#58218 Change-Id: Ia155b26514557cf822caf37e727e5a410b0a36a6 Reviewed-on: https://go-review.googlesource.com/c/go/+/736260 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -35,10 +35,10 @@ import (\n // A Cmd describes how to use a version control system\n // like Mercurial, Git, or Subversion.\n type Cmd struct {\n-\tName string\n-\tCmd string // name of binary to invoke command\n-\tEnv []string ...
2026-01-14T00:45:30
nodejs/node
3c248c35562389d13057927f11a90b1671cf85ca
3e31baeda6cf597ab3804dd8ca6f049a1d126940
tools: fix linter for semver-major release proposals PR-URL: https://github.com/nodejs/node/pull/60481 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -23,8 +23,9 @@ const commitListingStart = changelog.indexOf('\\n### Commits\\n');\n let commitList;\n if (commitListingStart === -1) {\n // We're preparing a semver-major release.\n- commitList = changelog.replace(/(^.+\\n### S...
2025-11-01T07:11:01
vercel/next.js
69d63edcc74d0ca428322406329872887e82aae9
ad7d27ec50ed44fcd473fd82fc2fe8283e70822d
Fix missing incremental cache in middleware unstable_cache (#89980) ## Summary - pass `IncrementalCache` into the shared middleware template adapter so middleware/proxy modules initialize `globalThis.__incrementalCache` - add regression coverage for `unstable_cache` usage inside both deprecated `middleware` (edge) and...
[ { "path": "packages/next/src/build/templates/middleware.ts", "patch": "@@ -3,6 +3,7 @@ import '../adapter/setup-node-env.external'\n import '../../server/web/globals'\n \n import { adapter } from '../../server/web/adapter'\n+import { IncrementalCache } from '../../server/lib/incremental-cache'\n \n // Impor...
2026-02-13T22:22:32
facebook/react
ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872
0860b9cc1f4a7188b41204bddc57a127a8bbf6e9
[compiler] Improve merging of scopes that invalidate together (#34049) We try to merge consecutive reactive scopes that will always invalidate together, but there's one common case that isn't handled. ```js const y = [[x]]; ``` Here we'll create two consecutive scopes for the inner and outer array expressions. Becau...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/MergeReactiveScopesThatInvalidateTogether.ts", "patch": "@@ -119,6 +119,7 @@ class FindLastUsageVisitor extends ReactiveFunctionVisitor<void> {\n \n class Transform extends ReactiveFunctionTransform<ReactiveScopeDependencies | null>...
2025-08-01T20:00:01
golang/go
021d5ca042775537d707c6f5ae2f53f57dac243f
c04335e33a6915ae4edc9c9f94a909a46557f99a
cmd/compile: avoid extending when already sufficiently shifted on loong64 This reduces 744 instructions from the go toolchain binary on loong64. file before after Δ % asm 599282 599222 -60 -0.0100% cgo 513606 513534 -72 -0.0140% compile 2939250 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -843,6 +843,11 @@\n \n (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)\n \n+// Avoid extending when already sufficiently shifted.\n+(MOVBUreg x:(SRLconst [c] y)) && c >= 24 => x\n+(MOVHUreg x:(SRLconst [c] y)) && c >= 16 => x\n+(...
2025-12-01T06:46:23
rust-lang/rust
4e1fd93ab735a64c824e58fb76052b1b6194da18
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
Fix not applicable on ambiguous ident pat for merge_match_arms Example --- ```rust enum X { A, B, C, } use X::*; fn main() { match A { $0A => todo!(), B => todo!(), C => todo!(), } } ``` **Before this PR** Assist not applicable **After this PR** ```rust enum X { A, ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/merge_match_arms.rs", "patch": "@@ -160,8 +160,11 @@ fn get_arm_types<'db>(\n }\n }\n ast::Pat::IdentPat(ident_pat) => {\n- if let Some(name) = ident_pat.name() {\n+ ...
2026-01-06T09:46:00
nodejs/node
3e31baeda6cf597ab3804dd8ca6f049a1d126940
943b1edb3cc2e4e34979ef27173f59674508d15f
esm: use sync loading/resolving on non-loader-hook thread ESM resolution and loading is now always synchronous from a non-loader-hook thread. If no asynchrnous loader hooks are registered, the resolution/loading is entirely synchronous. If asynchronous loader hooks are registered, these would be synchronous on the non...
[ { "path": "doc/api/errors.md", "patch": "@@ -703,6 +703,13 @@ by the `node:assert` module.\n An attempt was made to register something that is not a function as an\n `AsyncHooks` callback.\n \n+<a id=\"ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED\"></a>\n+\n+### `ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`\n+\n+An op...
2025-10-31T20:45:10
vercel/next.js
ad7d27ec50ed44fcd473fd82fc2fe8283e70822d
6df0b7b905d298c4d47c7be389267cb0893f6343
Turbopack hmr: preserve group factory consistency for compressed modules (#89976) ## Summary - update `installCompressedModuleFactories` to reuse an existing factory in a compressed ID group when filling missing IDs - keep `newModuleId` notifications aligned with actual IDs installed (`newModuleId(id)`) - add an execu...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime/runtime-utils.ts", "patch": "@@ -551,7 +551,6 @@ function installCompressedModuleFactories(\n ) {\n let i = offset\n while (i < chunkModules.length) {\n- let moduleId = chunkModules[i] as ModuleId\n let end = i + 1\n ...
2026-02-13T22:17:25
facebook/react
0860b9cc1f4a7188b41204bddc57a127a8bbf6e9
538ac7ae4b918136c5bd7d15ada19439d15f8080
[compiler] Add definitions for Object entries/keys/values (#34047) Fixes remaining issue in #32261, where passing a previously useMemo()-d value to `Object.entries()` makes the compiler think the value is mutated and fail validatePreserveExistingMemo. While I was there I added Object.keys() and Object.values() too. -...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -114,6 +114,99 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n returnValueKind: ValueKind.Mutable,\n }),\n ],\n+ [\n+ 'entries',\n+ addFunction(DEFAULT_SHAPES, [],...
2025-08-01T19:59:49
golang/go
a1150b5017b789c6dc22d2c3939f7df10baf3dff
6b7206feb2df3116bd5c471813353ffec1ff25fe
cmd/compile/internal/pgo: error parsing profile (for pgo) after scaling If a valid profile is scaled such that the samples/counts become 0, an empty graph in which the compiler complain that we never saw a start line since the graph has no nodes which is a misleading error message. src/cmd/internal/pgo/pprof.go was m...
[ { "path": "src/cmd/compile/internal/test/pgo_inl_test.go", "patch": "@@ -365,3 +365,53 @@ func TestPGOHash(t *testing.T) {\n \t\tt.Errorf(\"output contains unexpected source line, out:\\n%s\", out)\n \t}\n }\n+\n+// TestPGOZeroValues tests that a profile with all sample values scaled to zero\n+// is treated...
2025-11-28T08:27:09
electron/electron
793565e4bebec96fa1a471b3a22cb147ae4e747c
1f322ebce3cccc65b32b653ea15bc1511a0b5993
chore: bump chromium to 141.0.7390.7 (main) (#48212) * chore: bump chromium in DEPS to 141.0.7381.3 * chore: update patches * chore: bump chromium in DEPS to 141.0.7382.0 * chore: update patches * chore: bump chromium in DEPS to 141.0.7384.0 * chore: bump chromium in DEPS to 141.0.7386.0 * [Extensions] Move devt...
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -109,7 +109,7 @@ runs:\n deps-file: src/DEPS\n installation-dir: src/third_party/siso/cipd\n target-platform: ${{ inputs.target-platform }}\n- package: infra/build/siso/${platform}\n+ package: build/siso/${pl...
2025-09-08T10:57:15
nodejs/node
684c3b31f066cb3506315f721070c11a9a788116
fbef1cf438ad27ce04d679aa3384e5e291d20474
test: capture stack trace in debugger timeout errors Otherwise when the expected prompt does not show up in the session and the debugger tests time out, there is not enough information to figure out exactly which line in the test is causing the timeout. PR-URL: https://github.com/nodejs/node/pull/60457 Reviewed-By: E...
[ { "path": "test/common/debugger.js", "patch": "@@ -88,12 +88,12 @@ function startCLI(args, flags = [], spawnOpts = {}, opts = { randomPort: true })\n reject(new Error(message));\n }\n \n+ // Capture stack trace here to show where waitFor was called from when it times out.\n+ ...
2025-10-31T13:18:50
vercel/next.js
6df0b7b905d298c4d47c7be389267cb0893f6343
d45f83fbc5f9a808b28f56e0bf1c3692ef7f1702
Turbopack: Fix flake in task_statistics unit test (#89981) If we don't explicitly return a `Vc::cell(())` here, then `<() as dyn turbo_tasks::vc::default::ValueDefault>::value_default` gets called in a non-deterministic way. That's not something we care about testing here, so just add a an explicit `Vc::cell(())` c...
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/task_statistics.rs", "patch": "@@ -362,7 +362,9 @@ fn inline_definitions() -> Result<Vc<()>> {\n #[turbo_tasks::value_trait]\n trait Trait {\n #[turbo_tasks::function]\n- fn trait_fn(&self) {}\n+ fn trait_fn(&self) -> Vc<()>...
2026-02-13T21:57:18
facebook/react
538ac7ae4b918136c5bd7d15ada19439d15f8080
52612a7cbdd8e1fee9599478247f78725869ebad
[Flight] Fix debug info leaking to outer handler (#34081) The `waitForReference` call for debug info can trigger inside a different object's initializingHandler. In that case, we can get confused by which one is the root object. We have this special case to detect if the initializing handler's object is `null` and we...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -879,7 +879,7 @@ function initializeDebugChunk(\n waitForReference(\n debugChunk,\n {}, // noop, since we'll have already added an entry to debug info\n- '', // noop\n+ ...
2025-08-01T19:44:48
rust-lang/rust
bd16cd4fb54a1f54317d2cb9a7b623c32d081ce3
212b0d480f337082bbe1132d2b62be20e7e61f8a
CopyProp: fix outdated comment
[ { "path": "compiler/rustc_mir_transform/src/copy_prop.rs", "patch": "@@ -58,7 +58,8 @@ impl<'tcx> crate::MirPass<'tcx> for CopyProp {\n }\n }\n \n-/// Utility to help performing substitution of `*pattern` by `target`.\n+/// Utility to help performing substitution: for all key-value pairs in `copy_classe...
2026-03-24T07:12:17
golang/go
6edb9f9c51f4f9042563f6fcf68701d1fed33c8f
819c53c25f2992113c202644045b93bd3a578f54
go/types, types2: remove support for gotypesalias GODEBUG flag For #76472. Change-Id: Ia51b41639637b1de916625e73c26f625382be305 Reviewed-on: https://go-review.googlesource.com/c/go/+/736441 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacc...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -56,7 +56,6 @@ func checkFiles(m posMap, noders []*noder) (*types2.Package, *types2.Info, map[*\n \t\tIgnoreBranchErrors: true, // parser already checked via syntax.CheckBranches mode\n \t\tImporter: &importer,\n \t\tSizes: ...
2026-01-15T00:10:00
nodejs/node
fbef1cf438ad27ce04d679aa3384e5e291d20474
0981426d3c37891fcf03a1bba5611bcd2cd5ba22
util: fix stylize of special properties in inspect Previously, formatExtraProperties applied ctx.stylize to the entire '[key]: value' string. This caused the colon and space to be styled, making the output inconsistent with normal object properties. Now, only the key itself is stylized, and the colon and space remain...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -2520,7 +2520,8 @@ function formatExtraProperties(ctx, value, recurseTimes, key, typedArray) {\n ctx.indentationLvl -= 2;\n \n // These entries are mainly getters. Should they be formatted like getters?\n- return ctx.stylize(`[${key}]: ${str}`, 'st...
2025-10-31T08:33:38
electron/electron
1f322ebce3cccc65b32b653ea15bc1511a0b5993
f009e077f2ec4d1b224e2c7fbb6eec1ea0709211
chore: bump node to v22.19.0 (main) (#48222) * chore: bump node in DEPS to v22.19.0 * chore: fixup patch indices * crypto: add tls.setDefaultCACertificates() https://github.com/nodejs/node/pull/58822 * esm: js-string Wasm builtins in ESM Integration https://github.com/nodejs/node/pull/59179 --------- Co-authore...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '141.0.7361.0',\n 'node_version':\n- 'v22.18.0',\n+ 'v22.19.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-09-05T21:16:45
vercel/next.js
ba08f5fef6c71735a7d4b77d05e00fea9eeae62a
740d55cdcefe5e62a2e0f6d65cd543d4b24423cc
Fix parallel routes with deferred entries (#89967) These were being filtered unexpectedly causing build failures with the deferredEntries flag. x-ref: [slack thread](https://vercel.slack.com/archives/C09125LC4AX/p1771010370849309?thread_ts=1770975846.539109&cid=C09125LC4AX)
[ { "path": "packages/next/src/build/turbopack-build/impl.ts", "patch": "@@ -26,6 +26,7 @@ import { isCI } from '../../server/ci-info'\n import { backgroundLogCompilationEvents } from '../../shared/lib/turbopack/compilation-events'\n import { getSupportedBrowsers, printBuildErrors } from '../utils'\n import {...
2026-02-13T19:49:11
facebook/react
52612a7cbdd8e1fee9599478247f78725869ebad
bdb4a96f628d3b426d3c79fbd598ec35c05835a3
[compiler] Emit more specific error when making identifiers with reserved words (#34080) This currently throws an invariant which may be misleading. I checked the ecma262 spec and used the same list of reserved words in our check. To err on the side of being conservative, we also error when strict mode reserved words ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -14,6 +14,7 @@ import type {HookKind} from './ObjectShape';\n import {Type, makeType} from './Types';\n import {z} from 'zod';\n import type {AliasingEffect} from '../Inference/AliasingEffects';\n+import {isReservedWord} ...
2025-08-01T19:10:34
nodejs/node
0981426d3c37891fcf03a1bba5611bcd2cd5ba22
fdcf4d9454f050d199c49ff25f25d7bad133ff56
sqlite,doc: fix StatementSync section PR-URL: https://github.com/nodejs/node/pull/60474 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/sqlite.md", "patch": "@@ -647,120 +647,6 @@ times with different bound values. Parameters also offer protection against\n [SQL injection][] attacks. For these reasons, prepared statements are preferred\n over hand-crafted SQL strings when handling user input.\n \n-## Class: `SQLTagStore`\...
2025-10-31T02:46:05
golang/go
819c53c25f2992113c202644045b93bd3a578f54
c7258178cda55e3903ad8e4b6cc51861fb689457
cmd/compile: ensure ops have the expected argument widths The generic SSA representation uses explicit extension and truncation operations to change widths of values. The map intrinsics were playing somewhat fast and loose with this requirement. Fix that, and add a check to make sure we don't regress. I don't think t...
[ { "path": "src/cmd/compile/internal/ssa/_gen/divmod.rules", "patch": "@@ -223,7 +223,7 @@\n (Rsh64Ux64 <typ.UInt64>\n (Avg64u\n (Lsh64x64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt64> [32]))\n- (Mul64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt32> [int64(umagic32(c).m)]...
2025-12-18T20:29:39
electron/electron
828fd59a72e673acf03f878b4f488a40fca46dfe
e8928409755245eb706c55cb6180a5bf0d9d4fcd
fix: file-only picker incorrectly allowing some directories (#48198)
[ { "path": "patches/chromium/.patches", "patch": "@@ -138,3 +138,4 @@ fix_resolve_dynamic_background_material_update_issue_on_windows_11.patch\n feat_add_support_for_embedder_snapshot_validation.patch\n chore_restore_some_deprecated_wrapper_utility_in_gin.patch\n chore_add_electron_objects_to_wrappablepointe...
2025-08-29T17:14:45
vercel/next.js
af4ceab6d4e177a01f3d4de0dbd7dd005712e9b7
e9b96b4128ef8fa19fc523aa262be5459428c806
Enable backtraces in turbopack integration tests (#89935) ## Enable Rust backtraces in CI tests ### What? Added `RUST_BACKTRACE=1` environment variable to all Turbopack-related test workflows. ### Why? This change enables detailed Rust backtraces when Turbopack encounters errors during CI tests, making it easier to ...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -256,6 +256,7 @@ jobs:\n export NEXT_TEST_MODE=dev\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n export __NEXT_EXPERIMENTAL_STRICT_ROUTE_TYPES=true\n+ export RUST_BACKTRACE=1\n \n node run-test...
2026-02-13T16:10:20
facebook/react
98773466ce6736a5ffb7e54c1f4b44645ac18a80
9784cb379e249a5495cde5ba3037521207144e91
[Fizz] Don't outline Boundaries that may contribute to the preamble (#34058) Suspense boundaries that may have contributed to the preamble should not be outlined due to size because these boundaries are only meant to be in fallback state if the boundary actually errors. This change excludes any boundary which has the ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -10695,4 +10695,40 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Success!</div>);\n });\n+\n+ it('should always flush the boundaries contributing the preamble rega...
2025-07-31T01:06:47
golang/go
a006e17162ddf70b7ee23a8ec2e3e064d0102bd5
858d4bf8511a7741cf5c21f1d51b23ed180fd450
syscall: document Sendfile semantics syscall.Sendfile behavior differs significantly between operating systems. Document the platform-specific behavior for the offset argument and partial write reporting on Linux versus BSD-derived systems. Fixes #64044 Change-Id: I93f740c3e2df911a10bf0884ffab218d4bb4e5fc GitHub-La...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -525,6 +525,22 @@ func Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n \treturn\n }\n \n+// Sendfile copies up to count bytes from file descriptor infd to file descriptor outfd.\n+//\n+// It wraps the sendfile system call. The behavior vari...
2026-01-18T14:11:05
electron/electron
e8928409755245eb706c55cb6180a5bf0d9d4fcd
7373173e44d25c90a5127ad5c7b49295c12117a7
fix: ensure dragging works again after emitting contextmenu event (#48199)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -324,11 +324,6 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n- case WM_RBUTTONUP: {\n- if (!has_frame())\n- electron::api::WebContents::SetDisableDraggableRegions(false);\n- retur...
2025-08-29T14:37:37
nodejs/node
fdcf4d9454f050d199c49ff25f25d7bad133ff56
bdf03bfcd5420fa9d2ea824d6338080363cdf309
tools: fix failing release-proposal linter for LTS transitions PR-URL: https://github.com/nodejs/node/pull/60465 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -26,9 +26,13 @@ if (commitListingStart === -1) {\n commitList = changelog.replace(/(^.+\\n### Semver-Major|\\n### Semver-(Minor|Patch)) Commits\\n/gs, '')\n .replaceAll('**(SEMVER-MAJOR)** ', '');\n } else {\n- const commit...
2025-10-30T17:29:10
vercel/next.js
e9b96b4128ef8fa19fc523aa262be5459428c806
b737b04638b03c202288819c0fabd3dde344fbe4
Build with dev runtimes when `--debug-prerender` is set (#89834) When running `next build --debug-prerender`, React owner stacks are now captured and displayed in prerender error output. This makes it much easier to diagnose which component triggered uncached I/O or accessed request data without Suspense. Previously, ...
[ { "path": "AGENTS.md", "patch": "@@ -246,6 +246,13 @@ See [Codebase structure](#codebase-structure) above for detailed explanations.\n - Use `DEBUG=next:*` for debug logging\n - Use `NEXT_TELEMETRY_DISABLED=1` when testing locally\n \n+### `NODE_ENV` vs `__NEXT_DEV_SERVER`\n+\n+Both `next dev` and `next bui...
2026-02-13T15:29:10
facebook/react
4395689980a3e7d771675c99e4de42f40ea5bf0d
6891dcb87db831db17ab109730dea63706875dd7
[compiler] ref guards apply up to fallthrough of the test (#34024) Fixes #30782 When developers do an `if (ref.current == null)` guard for lazy ref initialization, the "safe" blocks should extend up to the if's fallthrough. Previously we only allowed writing to the ref in the if consequent, but this meant that you co...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -27,6 +27,7 @@ import {\n eachTerminalOperand,\n } from '../HIR/visitors';\n import {Err, Ok, Result} from '../Utils/Result';\n+import {retainWhere} from '../Utils/utils';\n \n /**\n * Va...
2025-07-29T17:53:13
rust-lang/rust
fef8a7130e21dc45fdbf5e86f3d0b402dae2e69a
ac86fd103df1434db04ad223e5daa891a8a434ab
fix: `collapsible_if` FP when the inner if contains cfg
[ { "path": "clippy_lints/src/collapsible_if.rs", "patch": "@@ -2,7 +2,7 @@ use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint_hir_and_then;\n use clippy_utils::msrvs::Msrv;\n use clippy_utils::source::{HasSession, IntoSpan as _, SpanRangeExt, snippet, snippet_block_with_applicability};\n-use...
2026-03-24T04:48:31
golang/go
858d4bf8511a7741cf5c21f1d51b23ed180fd450
8e3104dc269b959083f7e7133841e3366a477ef1
debug/elf: return FormatError when reading short files NewFile returns the raw error from ReadAt when failing to read the ELF identifier, typically io.EOF for empty or short files. This breaks the API contract that all parsing failures should return *FormatError. Wrap the error in FormatError for consistency with oth...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -290,7 +290,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t// Read and decode ELF identifier\n \tvar ident [16]uint8\n \tif _, err := r.ReadAt(ident[0:], 0); err != nil {\n-\t\treturn nil, err\n+\t\treturn nil, &FormatError{0, \"cannot read ELF identifi...
2026-01-15T12:19:10
electron/electron
7373173e44d25c90a5127ad5c7b49295c12117a7
5d5e672f17248519b3c7bbdf27cb803c481c4d07
fix: showMessageDialog should center dialog to parent (#48181)
[ { "path": "shell/browser/ui/message_box_win.cc", "patch": "@@ -160,6 +160,7 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n \n if (parent) {\n config.hwndParent = parent;\n+ config.dwFlags |= TDF_POSITION_RELATIVE_TO_WINDOW;\n }\n \n if (default_id > 0)", "additions": 1,...
2025-08-29T07:56:51
vercel/next.js
b05a35a79fb3bd0b802d3a8d8b1c07d3c7fc7649
fe39a3c440fa1463935403bdaabeaf9f509ea131
Turbopack: Move turbopackIgnoreIssue from experimental to turbopack.ignoreIssue (#89817) ## What? Moves the `turbopackIgnoreIssue` config from `experimental` to the stable `turbopack` config as `turbopack.ignoreIssue`. ## Why? Reviewers on #89682 agreed the API is stable enough to graduate from experimental. Also a...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1087,7 +1087,7 @@ impl Project {\n }\n \n /// Build the `IssueFilter` for this project, incorporating any\n- /// `experimental.turbopackIgnoreIssue` rules from the Next.js config.\n+ /// `turbopack.ignoreIssue` rules from the Next.js co...
2026-02-13T13:56:59
facebook/react
6891dcb87db831db17ab109730dea63706875dd7
3f40eb73a8de2823ea5cab39496faef33aa3f2b1
[compiler] treat ref-like identifiers as refs by default (#34005) `@enableTreatRefLikeIdentifiersAsRefs` is now on by default. I made one small fix to the render helper logic as part of this, uncovered by including more tests. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). B...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -608,7 +608,7 @@ export const EnvironmentConfigSchema = z.object({\n *\n * Here the variables `ref` and `myRef` will be typed as Refs.\n */\n- enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(fal...
2025-07-29T17:51:10
golang/go
8e3104dc269b959083f7e7133841e3366a477ef1
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
simd/archsimd/_gen/simdgen: fix typos in error messages simdgen: fix typos in error messages Change-Id: I921eea63c4847b2af43a1d5a1ea075e86f58aa77 GitHub-Last-Rev: 8c9dae51fd906aee04f52a5d44c6d4c923fc52d0 GitHub-Pull-Request: golang/go#77012 Reviewed-on: https://go-review.googlesource.com/c/go/+/732880 Reviewed-by: Ke...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_utility.go", "patch": "@@ -157,7 +157,7 @@ func (op *Operation) shape() (shapeIn inShape, shapeOut outShape, maskType maskS\n \t\t\tif shapeOut != OneVregOutAtIn && in.AsmPos == 0 && in.Class == \"vreg\" {\n \t\t\t\tshapeOut = OneVregOutAtIn\n \t\t\t} else {\n-\...
2025-12-27T14:09:40
vercel/next.js
fe39a3c440fa1463935403bdaabeaf9f509ea131
5c589abdf42d768654bc2a07a6a9614a0f617e80
fix: support multiple icon formats with same base name (icon.png + icon.svg) (#89504) ## What? Fixes a crash in Turbopack and incorrect behavior in Webpack when users have multiple icon files with the same base name but different extensions (e.g., `icon.png` and `icon.svg`) in their app directory. ## Why? This is a...
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -201,9 +201,13 @@ async fn static_route_source(mode: NextMode, path: FileSystemPath) -> Result<Vc<\n original_file_content_b64 = StringifyJs(&original_file_content_b64),\n };\n \n+ // Use full filename (stem + extension...
2026-02-13T12:55:27
electron/electron
5d5e672f17248519b3c7bbdf27cb803c481c4d07
e39943bf4578e91da598923fd60f87a0a562c522
chore: bump chromium to 141.0.7361.0 (main) (#48054) * chore: bump chromium in DEPS to 141.0.7352.0 * chore: update patches * 6830573: Revert 'Migrate WrappableWithNamedPropertyInterceptor to gin::Wrappable' | https://chromium-review.googlesource.com/c/chromium/src/+/6830573 * chore: bump chromium in DEPS to 141.0....
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -15,7 +15,7 @@ runs:\n git config --global core.preloadindex true\n git config --global core.longpaths true\n fi\n- export BUILD_TOOLS_SHA=8559e5d325d61f195a255f41077ffc9e5b70b0e5\n+ export BUILD_TOOLS_S...
2025-08-29T03:31:47
golang/go
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
1b7e5836ad2ae6bc5466e3b1916294d20403386c
test: use lower-case error message in heapsampling.go According to Go style guidelines, error strings should not be capitalized. Change-Id: Iacfb3f5192b7be40da99b6b7e4801f1ae1169efc GitHub-Last-Rev: 440396e0946edb18c422442ea235b5c57c2899af GitHub-Pull-Request: golang/go#76999 Reviewed-on: https://go-review.googlesour...
[ { "path": "test/heapsampling.go", "patch": "@@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram\n // consistently far from the expected value.\n func checkValue(fname string, ln int, testName string, want int64, got []int64) error {\n \tif got == nil {\n-\t\t...
2025-12-26T14:48:24
facebook/react
1d7e942da76c794c3cbf52a8c214d90a69814a8f
79dc706498c4f8ef077167898492693197e1b975
[compiler] Allow mergeRefs pattern (and detect refs passed as ref prop) (#34004) Two related changes: * ValidateNoRefAccessInRender now allows the mergeRefs pattern, ie a function that aggregates multiple refs into a new ref. This is the main case where we have seen false positive no-ref-in-render errors. * Behind `@e...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/TypeInference/InferTypes.ts", "patch": "@@ -451,6 +451,18 @@ function* generateInstructionTypes(\n \n case 'JsxExpression':\n case 'JsxFragment': {\n+ if (env.config.enableTreatRefLikeIdentifiersAsRefs) {\n+ if (value.kind === ...
2025-07-29T17:06:11
nodejs/node
8ea8d4ce838b848c366952db1c9605c9769807e3
3dba25fbd239f446ab1988ffbf6410de8fee1078
src: remove unconditional NAPI_EXPERIMENTAL in node.h PR-URL: https://github.com/nodejs/node/pull/60345 Fixes: https://github.com/nodejs/node/issues/60311 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "node.gyp", "patch": "@@ -890,6 +890,9 @@\n 'NODE_ARCH=\"<(target_arch)\"',\n 'NODE_PLATFORM=\"<(OS)\"',\n 'NODE_WANT_INTERNALS=1',\n+ # Define NAPI_EXPERIMENTAL to enable Node-API experimental function symbols being exposed.\n+ 'NAPI_EXPERIMENTAL=1',\n+ ...
2025-10-30T10:50:44
vercel/next.js
5c589abdf42d768654bc2a07a6a9614a0f617e80
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
docs: document cacheLife expire omission behavior and fix default preset value (#89913) ## Summary - Add note that omitting `expire` in `cacheLife` results in cache never expiring - Fix `default` preset table: `expire` was documented as "1 year" but actual code uses `INFINITE_CACHE` (never) - Add mention of expire omi...
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -93,6 +93,8 @@ Cache profiles control caching behavior through three timing properties:\n \n During this time, the client-side router displays cached content immediately without any network request. After this period expires, ...
2026-02-13T12:52:38
electron/electron
e39943bf4578e91da598923fd60f87a0a562c522
f331606e0718a291d14d21ec3218b21543b90d8d
fix: BrowserWindow add the same BrowserView (#48053) fix: BrowserWindow add the same BrowserView (#48057)
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -199,7 +199,14 @@ BrowserWindow.prototype.setBackgroundThrottling = function (allowed: boolean) {\n };\n \n BrowserWindow.prototype.addBrowserView = function (browserView: BrowserView) {\n- if (browserView.ownerWindow) { browserView.ownerWindow.re...
2025-08-28T08:31:41
golang/go
1b7e5836ad2ae6bc5466e3b1916294d20403386c
e9e05687dee08ba0f0fb07b076f1c3f47bb57f34
cmd/compile: speedup large init function compile time Fixes #77153 Change-Id: Ia3906e4d686281be78b65daf7a7a4fd1b2b2483d Reviewed-on: https://go-review.googlesource.com/c/go/+/737880 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3342,6 +3342,9 @@ func (r *reader) pkgInitOrder(target *ir.Package) {\n \t// Outline (if legal/profitable) global map inits.\n \tstaticinit.OutlineMapInits(fn)\n \n+\t// Split large init function.\n+\tstaticinit.SplitLargeInit(fn)\n+\n \tta...
2026-01-21T11:11:29
facebook/react
79dc706498c4f8ef077167898492693197e1b975
85bbe39ef8e24a192b5e9f2987b1babf8ce772e1
[compiler] Improve ref validation error message (#34003) Improves the error message for ValidateNoRefAccessInRender, using the new diagnostic type as well as providing a longer but succinct summary of what refs are for and why they're unsafe to access in render. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -5,7 +5,11 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import {CompilerError, ErrorSeverity} from '../CompilerError';\n+import {\n+ CompilerDiagnostic,\n+ Co...
2025-07-29T17:03:28
nodejs/node
77a0a0fc6029cc9499559c2268095377f68b08ba
63f83408ee64c8295286a1de5e402b432ed2f303
inspector: fix crash when receiving non json message PR-URL: https://github.com/nodejs/node/pull/60388 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "src/inspector_io.cc", "patch": "@@ -353,6 +353,9 @@ std::optional<std::string> InspectorIoDelegate::GetTargetSessionId(\n std::string_view view(message.data(), message.size());\n std::unique_ptr<protocol::DictionaryValue> value =\n protocol::DictionaryValue::cast(JsonUtil::parseJSON(vie...
2025-10-29T11:20:29
electron/electron
bf29d2f0bdde2718da082e848ab17bd86de74cad
fea1a2a9876ac9fdfc268ea4fce249935b6ef8b6
docs: fix some module headings (#48177)
[ { "path": "docs/api/menu-item.md", "patch": "@@ -1,3 +1,5 @@\n+# MenuItem\n+\n ## Class: MenuItem\n \n > Add items to native application menus and context menus.", "additions": 2, "deletions": 0, "language": "Markdown" }, { "path": "docs/api/service-worker-main.md", "patch": "@@ -1,1...
2025-08-27T21:52:26
vercel/next.js
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
1fac9a1b7ec514a15b8b2a922efcdd3600e567e6
Turbopack: fix CSS dependency locations (#89761) For some locations LightningCSS is 1-indexed (but not all of them, the rustdoc describes it though) IssueSource is always 0-indexed Previously, it looked like this ``` Error: Turbopack build failed with 1 errors: ./bench/basic-app/app/[variants]/styles.css:7:12 Module ...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1508,10 +1508,10 @@ describe('ReactRefreshLogBox app', () => {\n \"description\": \"Module not found: Can't resolve './boom.css'\",\n \"environmentLabel\": null,\n \"label\": \"Build Error\",\n- ...
2026-02-13T11:01:32
golang/go
1996c22f0a58a32f5f415e1a6c84bcb305f04c36
c61a48619ff2d26543d0f4874ab495bbbfdc701f
syscall: return early on error in Recvmsg Currently, Recvmsg may access the rsa buffer even if the underlying syscall returns an error. Following the same change done for x/sys/unix.Recvmsg in CL 734740. For golang/go#76848 Change-Id: I2a145d822442a2033a76f4717317a39010b17bd5 Reviewed-on: https://go-review.googleso...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -385,6 +385,9 @@ func recvmsgInet6(fd int, p, oob []byte, flags int, from *SockaddrInet6) (n, oob\n func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n \tvar rsa RawSockaddrAny\n \tn, oobn, recvflags,...
2026-01-10T14:56:01
nodejs/node
4e9e5a183c3f918247942f7d187174d0888fa10a
79d0ed77e5dedf244db480e16c248b815b2a2d9f
src: add enum handle for ToStringHelper + formatting Fixes: https://github.com/nodejs/node/issues/56666 PR-URL: https://github.com/nodejs/node/pull/56829 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -38,9 +38,11 @@ struct ToStringHelper {\n \n template <typename T,\n typename test_for_number = typename std::\n- enable_if<std::is_arithmetic<T>::value, bool>::type,\n+ enable_if_t<std::is_arithmetic_v<T> || std::is...
2025-10-28T19:42:25
electron/electron
52ed4646d9b33245835517077eba2d8b8ea44237
68098c317f772f9d9b8327b7f4be98e66b70f5c9
chore: remove upstream OSR temp fix (#48162)
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -332,9 +332,7 @@ void OffScreenRenderWidgetHostView::Hide() {\n return;\n \n if (render_widget_host_) {\n- // TODO(codebytere) - remove when CL:6250383 is released.\n- if (render_widget_host_->delegate())\n- render_w...
2025-08-26T20:22:45