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
golang/go
e88be8a128d167c5ab91eabc998ab364370c702e
a318843a2ad17d853b13599a73b2912a13474490
runtime: fix stale comment for mheap/malloc mheap use pageAlloc to manage free/scav address space instead of using free/scav treap. The comment on mheap states mheap uses treaps. Update the comment to reflect the use of pageAlloc. In the fallback code when sizeSpecializedMalloc is enabled, heapBitsInSpan is false. Up...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1169,7 +1169,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tvar x unsafe.Pointer\n \tvar elemsize uintptr\n \tif sizeSpecializedMallocEnabled {\n-\t\t// we know that heapBitsInSpan is true.\n+\t\t// we know that heapBitsInSpa...
2025-11-21T03:14:46
vercel/next.js
a93c03b1426fed2fca8d87e88e031857221ed1f2
77eced6d80d33cf6132c5ff9867e347c5f8bc648
fix(build): prevent route handler manifests from inheriting unrelated client components (#88419) ## Summary Fixes #88316 Route handlers (API routes) were generating bloated `client-reference-manifest.js` files containing unrelated client components from pages when using Webpack. This was caused by the manifest mergi...
[ { "path": "AGENTS.md", "patch": "@@ -301,6 +301,7 @@ See [Codebase structure](#codebase-structure) above for detailed explanations.\n - Do NOT add \"Generated with Claude Code\" or co-author footers to commits or PRs\n - Keep commit messages concise and descriptive\n - PR descriptions should focus on what c...
2026-01-14T10:19:20
facebook/react
9938f83ca21f6e01e31b41ce8335a4516de276d1
2af218a7287e3ed5d41ff0ba6cb826850646f47c
[compiler] Emit CompileSkip before CompileSuccess event (#33012) Previously the CompileSuccess event would emit first before CompileSkip, so the lsp's codelens would incorrectly flag skipped components/hooks (via 'use no memo') as being optimized. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https:/...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -469,6 +469,23 @@ export function compileProgram(\n }\n }\n \n+ /**\n+ * Otherwise if 'use no forget/memo' is present, we still run the code through the compiler\n+ * for validation but we ...
2025-04-24T17:30:36
rust-lang/rust
9b1eb935bcab03b831bf2b952e49da293522c128
ec15ca96ff2a5b733ab142ecc3744daed751c440
Tweak wording of failed predicate in inference error Special case message talking about `Predicate` that couldn't be satisfied when in inference errors so that we don't say "cannot satisfy `_: Trait`" and instead say "type must implement `Trait`".
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/ambiguity.rs", "patch": "@@ -11,6 +11,7 @@ use rustc_infer::traits::util::elaborate;\n use rustc_infer::traits::{\n Obligation, ObligationCause, ObligationCauseCode, PolyTraitObligation, PredicateObligation,\n };\n+use rustc_middle::ty...
2026-03-16T17:47:09
electron/electron
e748b521b2c77768bc1c7761299b9607c0076670
51bffb533e01430218f742adcb83560104515eff
test: fix node spec disabled tests (#46627)
[ { "path": "script/node-disabled-tests.json", "patch": "@@ -20,7 +20,6 @@\n \"parallel/test-crypto-key-objects\",\n \"parallel/test-crypto-keygen\",\n \"parallel/test-crypto-keygen-deprecation\",\n- \"parallel/test-crypto-rsa-dsa-revert\",\n \"parallel/test-crypto-rsa-dsa\",\n \"parallel/test-cryp...
2025-04-14T15:38:27
golang/go
437323ef7b933255c5c7fbb0775019e95f19b05e
1993dca4002267b772566d6c8055c6ace46dfd4f
slices: fix incorrect comment in slices.Insert function documentation The comment previously stated that r[i+len(v)] would equal the value originally at r[i], but it should be the value originally at s[i]. Change-Id: I635ddbdd5dc4da9c06ed426d5542bf969b7fe6dd Reviewed-on: https://go-review.googlesource.com/c/go/+/7226...
[ { "path": "src/slices/slices.go", "patch": "@@ -128,7 +128,7 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n // returning the modified slice.\n // The elements at s[i:] are shifted up to make room.\n // In the returned slice r, r[i] == v[0],\n-// and, if i < len(s), r[i+len(v)] == value or...
2025-11-21T02:47:06
nodejs/node
becb55aac3f7eb93b03223744c35c6194f11e3e9
f7a2ba7e8378d95154832811cd290f62ecdbc01e
test: fix typos PR-URL: https://github.com/nodejs/node/pull/59330 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "test/parallel/test-abortsignal-cloneable.js", "patch": "@@ -35,7 +35,7 @@ test('Can create a transferable abort controller', async () => {\n \n mc.port2.postMessage(ac.signal, [ac.signal]);\n \n- // Can be cloned/transferd multiple times and they all still work\n+ // Can be cloned/transferred...
2025-08-13T10:25:19
vercel/next.js
dfe3f140d72216daccb330354d57ec6f220c8f1f
e1c95fc2094f276eb881539d45e0f6f8e42a83e9
Turbopack: fix bad performance edge case in production chunking (#88508) ### What? Fixes a edge case in production chunking performance where many dynamic imports (like https://app.unpkg.com/lucide-react@0.562.0/files/dist/esm/dynamicIconImports.js) causes builds to become very slow under specific scenarios.
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunking/production.rs", "patch": "@@ -26,6 +26,7 @@ pub async fn make_production_chunks(\n \"make production chunks\",\n chunk_items = chunk_items.len(),\n chunks_before_limits = Empty,\n+ merge_iterations = Empty,\n ...
2026-01-14T08:01:30
facebook/react
8b9629c8106b55965ac6e4f078110b484b358101
3a5335676f7df4318e8e399f8f69e880db724f78
[compiler] Fix copyright script (#33003) Don't try to open directories --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33003). * #33004 * __->__ #33003 * #33002 --------- Co-authored-by: Jordan Brow...
[ { "path": "compiler/scripts/copyright.js", "patch": "@@ -51,6 +51,9 @@ if (hasErrors) {\n }\n \n function processFile(file) {\n+ if (fs.lstatSync(file).isDirectory()) {\n+ return;\n+ }\n let source = fs.readFileSync(file, 'utf8');\n \n if (source.indexOf(META_COPYRIGHT_COMMENT_BLOCK) === 0) {", ...
2025-04-24T01:55:24
rust-lang/rust
b7bc96291e12bfe60a1fc6dae9db5af3b62f7431
1b4821082fd1ee2074d4fe1db979ff24aac10e6b
fix: SCIP generation should prime caches in parallel Previously load_workspace_into_db() called parallel_prime_caches() with a worker count of 1 unconditionally. This made SCIP generation slower than it needed to be. Instead, pass the number of workers explicitly, and allow the SCIP subcommand to specify the number o...
[ { "path": "src/tools/rust-analyzer/crates/load-cargo/src/lib.rs", "patch": "@@ -42,6 +42,7 @@ pub struct LoadCargoConfig {\n pub load_out_dirs_from_check: bool,\n pub with_proc_macro_server: ProcMacroServerChoice,\n pub prefill_caches: bool,\n+ pub num_worker_threads: usize,\n pub proc_ma...
2026-03-13T18:34:01
golang/go
337f7b1f5d18e8b2469a37174c24baced4c23801
3c26aef8fba0ef1f4d26d802ba037b43671924e9
cmd/go: update default go directive in mod or work init This commit updates the default go directive when initializing a new module. The current logic is to use the latest version supported by the toolchain. This behavior is simple, predictable, and importantly, it can work while completely offline (i.e., no interne...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,6 +29,7 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n+\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -826,7 +827,7 @@ func...
2025-11-13T21:38:20
electron/electron
51bffb533e01430218f742adcb83560104515eff
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
fix: paint and flash issues on macOS (#46615) * fix: paint and flash issues on macOS * Adhere to paintWhenInitiallyHidden
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,7 +131,7 @@ osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n fix_software_compositing_infinite_loop.patch\n-fix_add_method_which_disable...
2025-04-14T14:29:07
nodejs/node
f7a2ba7e8378d95154832811cd290f62ecdbc01e
ff11b5956954e96e7b0917c83ef0d901adf62dcf
test_runner: fix isSkipped check in junit The `isSkipped` function in the JUnit reporter was incorrectly checking for `node?.attrs.failures` instead of `node?.attrs.skipped`. PR-URL: https://github.com/nodejs/node/pull/59414 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Pietro Marchini <pietro.marchini94@...
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -58,7 +58,7 @@ function isFailure(node) {\n }\n \n function isSkipped(node) {\n- return (node?.children && ArrayPrototypeSome(node.children, (c) => c.tag === 'skipped')) || node?.attrs?.failures;\n+ return (node?.children && ArrayPrototy...
2025-08-13T08:50:42
facebook/react
b75af0467099b7fd0e668b500adb0888b7b21d10
f765082996f056c2abb354eb43cec3a3bf535264
[forgive] Don't crash if we couldn't compile (#33001) Compiler shouldn't crash Forgive if it can't compile (eg parse error due to being mid-typing). Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack...
[ { "path": "compiler/packages/react-forgive/server/src/index.ts", "patch": "@@ -134,11 +134,17 @@ documents.onDidChangeContent(async event => {\n resetState();\n if (SUPPORTED_LANGUAGE_IDS.has(event.document.languageId)) {\n const text = event.document.getText();\n- await compile({\n- text,\n...
2025-04-24T01:32:11
vercel/next.js
a43b362eee9156371ba768bda247f3dd1dff60a7
6ed4453c22e640446885b6d3778c8c4ee9709f0d
Turbopack: parallelize making dependent tasks dirty (#86755) <!-- 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 Con...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -34,10 +34,11 @@ use turbo_tasks::{\n event::{Event, EventListener},\n message_queue::TimingEvent,\n registry::get_value_type,\n+ scope::scope_and_block,\n task_statistics::TaskStatisticsApi,\n trace::Tr...
2026-01-13T20:22:42
golang/go
31aa9f800bc8d4089e05b8726b599abe04a486a3
d68aec8db1bc3c167d2f0e5fdee8c1346ee35418
crypto/tls: use inner hello for earlyData when using QUIC and ECH I don't think we have good QUIC ECH tests. BoGo has some for this, but I'm not sure how easy it would be to enable those for QUIC. Fixes #76283 Change-Id: I0ffa535fd89a624b7f9bfd73441ce2a1683e0549 Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/crypto/tls/handshake_client.go", "patch": "@@ -308,7 +308,11 @@ func (c *Conn) clientHandshake(ctx context.Context) (err error) {\n \tif hello.earlyData {\n \t\tsuite := cipherSuiteTLS13ByID(session.cipherSuite)\n \t\ttranscript := suite.hash.New()\n-\t\tif err := transcriptMsg(hello, transcr...
2025-11-17T00:09:16
electron/electron
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
fix: handle potential missing close event property (#46605) fix: handle missing close event property
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -54,7 +54,7 @@ BrowserWindow.prototype._init = function (this: BWT) {\n });\n this.on('close', (event) => {\n queueMicrotask(() => {\n- if (!unresponsiveEvent && !event.defaultPrevented) {\n+ if (!unresponsiveEvent && !event?.defa...
2025-04-11T17:07:26
nodejs/node
eed1d33c53f404f2868949266064dfad564355a5
fc3f19ef932444e8de5d69fe3fb5033b2e0ec2e4
lib: simplify IPv6 checks in isLoopback() The checks for '[::1]' and '[0:0:0:0:0:0:0:1]' in isLoopback were using startsWith, which is unnecessary as these are canonical loopback addresses with no valid prefixes. Switching to strict equality improves clarity and improves performance. PR-URL: https://github.com/nodej...
[ { "path": "lib/internal/net.js", "patch": "@@ -93,8 +93,8 @@ function isLoopback(host) {\n return (\n hostLower === 'localhost' ||\n hostLower.startsWith('127.') ||\n- hostLower.startsWith('[::1]') ||\n- hostLower.startsWith('[0:0:0:0:0:0:0:1]')\n+ hostLower === '[::1]' ||\n+ hostLower...
2025-08-06T07:22:13
facebook/react
ebf7318e87cf2e10b6bd9a6bb0ad8bf6f6186f80
620c838fb64c87c92691ff0fe83b320a7f50f617
Hide/unhide the content of dehydrated suspense boundaries if they resuspend (#32900) Found this bug while working on Activity. There's a weird edge case when a dehydrated Suspense boundary is a direct child of another Suspense boundary which is hydrated but then it resuspends without forcing the inner one to hydrate/d...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1127,6 +1127,61 @@ export function clearSuspenseBoundaryFromContainer(\n retryIfBlockedOn(container);\n }\n \n+function hideOrUnhideSuspenseBoundary(\n+ suspenseInstance: SuspenseInstance,\n+ isHidden: boolean,\n+) ...
2025-04-22T23:29:12
vercel/next.js
c1fc988f71f1ef52fa2e9f7512be3c7eeb175622
60b5df66f674713310bc19b758259d89a7ff84ef
Turbopack: remove unused code (#88497) <!-- 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 ### Improvi...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/mod.rs", "patch": "@@ -1,11 +1,10 @@\n use core::panic;\n use std::{\n- collections::{BinaryHeap, VecDeque, hash_map::Entry},\n+ collections::{BinaryHeap, VecDeque},\n future::Future,\n };\n \n use anyhow::{Context, Result, bail};\n-use a...
2026-01-13T19:32:48
electron/electron
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
3064b24c9df15dbc7bcb55e78a12a92fd761daf6
fix: fallback to old MacOS context menu behavior if no frame is present (#46595) * fix: fallback to old MacOS context menu behavior if no frame is present Co-authored-by: georgexu99 <georgexu99@electronjs.org> Co-authored-by: erickzhao <erickzhao@electronjs.org> Co-authored-by: clavin <calvin@electronjs.org> * docs:...
[ { "path": "docs/api/menu.md", "patch": "@@ -74,7 +74,7 @@ The `menu` object has the following instance methods:\n * `options` Object (optional)\n * `window` [BaseWindow](base-window.md) (optional) - Default is the focused window.\n * `frame` [WebFrameMain](web-frame-main.md) (optional) - Provide the rel...
2025-04-11T14:15:35
golang/go
6aeacdff3889bc743f2baf8e8239b8cb83afd807
9570036ca5a95bff4c6768288a7c1db68277b9c0
cmd/go: support sha1 repos when git default is sha256 When git is recent enough (beyond 2.29), always set the --object-format flag. This fixes repo cloning when users have set the git configuration init.defaultObjectFormat to sha256. Git is planning[1] to switch the default hash function to sha256 with the 3.0 relea...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"slices\"\n \t\"sort\"\n@@ -91,9 +92,21 @@ func newGitRepo(ctx context.Context, remote string, local bool) (Repo, error) {\n \t\...
2025-11-14T02:16:43
nodejs/node
f993fca4e476c514f5a97f8a61287fc7f94df26f
48aa9c7425cb5bb752d7f62b52e728788fffddf6
test: deflake sequential/test-tls-session-timeout This patch: - Splits the validation tests into a separate file and keep the test focus on functional test of the sessionTimeout option. - Increase the testing timeout to 5 seconds in case it takes too long for the first connection to complete and the session is ...
[ { "path": "test/parallel/test-tls-session-timeout-errors.js", "patch": "@@ -0,0 +1,36 @@\n+'use strict';\n+// This tests validation of sessionTimeout option in TLS server.\n+const common = require('../common');\n+\n+if (!common.hasCrypto) {\n+ common.skip('missing crypto');\n+}\n+\n+const tmpdir = require(...
2025-08-11T17:36:30
facebook/react
efd890422db30a426bf395866ac3ec90573bbfd0
b303610c33ab903f6f0d9d1c6297b704781b3678
[compiler] Fix version name in publish script (#32979) Add ability to specify an optional tagVersion which is appended to the version name + tag, eg 19.1.0-rc.1 --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/r...
[ { "path": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -16,6 +16,9 @@ on:\n version_name:\n required: true\n type: string\n+ tag_version:\n+ required: false\n+ type: number\n secrets:\n NPM_TOKEN:\n required: true\n@@ -55,4 +58,4 @@ jo...
2025-04-21T18:43:20
electron/electron
c6e6a03a2421dc3da6a67d3976cb6fbcce342592
c1c74b0a6c734773f224422b83879703a4e7f271
fix: `NativeWindow.window_id()` returns same value for all windows (#46562) fix: NativeWindow.window_id() returns same value for all windows
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -94,8 +94,6 @@ gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n NativeWindow* parent)\n : widget_(std::make_unique<views:...
2025-04-09T15:45:06
golang/go
155efbbeeb532473c0ac3cc93f9a8a7597322157
6f16669e346038c983ae33025ca02dccd78b6f20
crypto/sha3: make the zero value of SHA3 useable Fixes #75154 Change-Id: I860ab0b4bd5d64e1f58aa5dfbab19d77e2925430 Reviewed-on: https://go-review.googlesource.com/c/go/+/714120 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mark Freeman <markfreeman@google.com> ...
[ { "path": "src/crypto/sha3/sha3.go", "patch": "@@ -97,6 +97,7 @@ func sumSHAKE256(out, data []byte, length int) []byte {\n }\n \n // SHA3 is an instance of a SHA-3 hash. It implements [hash.Hash].\n+// The zero value is a usable SHA3-256 hash.\n type SHA3 struct {\n \ts sha3.Digest\n }\n@@ -126,43 +127,57 @...
2025-10-23T09:20:10
nodejs/node
220f5c644ed4b6654bf9e65ba12949d8d5e0f8e3
8a2fec1f6ff83bad3264032e54c8fc0a10247ca3
test: exclude mock from coverage Fixes: https://github.com/nodejs/node/issues/59112 PR-URL: https://github.com/nodejs/node/pull/59348 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -28,7 +28,7 @@ const {\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n const { join, resolve, relative } = require('path');\n-const { fileURLToPath } = require('internal/url');\n+const { fileURLTo...
2025-08-11T05:49:53
facebook/react
bc6184dd993e6ea0efdee7553293676db774c3ca
ce578f9c59be73e6e32c633e6d251e8ec6dcad84
[devtools] Fix "View source" for sources with URLs that aren't normalized (#32951)
[ { "path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js", "patch": "@@ -1,6 +1,6 @@\n /* global chrome */\n \n-import {normalizeUrl} from 'react-devtools-shared/src/utils';\n+import {normalizeUrlIfValid} from 'react-devtools-shared/src/utils';\n import {__DEBUG__} from 'react-devtools...
2025-04-17T19:56:05
electron/electron
c1c74b0a6c734773f224422b83879703a4e7f271
45a049428795402cefa4799bb04567db65da4429
fix: re-enable OOP printing on Linux (#46529)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -932,3 +932,19 @@ index 63f170c95050416c595e62f4c460c4cd6b7dbd1c..157e3d046889f9c63fdf0fd5d503890f\n // Does bookkeeping when an error occurs.\n virtual mojom::ResultCode OnError();\n \n+diff --git a/printing/printing_context_linux.cc b/printi...
2025-04-09T13:42:16
golang/go
6f16669e346038c983ae33025ca02dccd78b6f20
121bc3e464b901327a5c138d8a992bb85c440862
database/sql: don't ignore ColumnConverter for unknown input count In the case a sql driver implements the ColumnConverter interface and also returns -1 for NumInputs, indicating an unknown number of input arguments to a query, the previous implementation would ignore the column converter would not be called, leading ...
[ { "path": "src/database/sql/convert.go", "patch": "@@ -55,7 +55,7 @@ func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {\n \t// it isn't expecting. The final error will be thrown\n \t// in the argument converter loop.\n \tindex := nv.Ordinal - 1\n-\tif c.want <= index {\n+\tif c.want >= 0 && c...
2024-07-08T16:14:43
nodejs/node
aac7925801edfc8dd1de051a29aac85332e7d200
ca76b393561e0bdb19818407e6ec950a97d714b0
test: split test-fs-cp.js This test previously squeezed 70+ test cases into one single file and has been constantly crashing on Windows with exit code 3221226505 and no stack trace. As it is already marked as flaky there is no way to understand which test case is failing and the Windows CI was constantly orange. This ...
[ { "path": "test/common/fs.js", "patch": "@@ -0,0 +1,49 @@\n+'use strict';\n+\n+const { mustNotMutateObjectDeep } = require('.');\n+const { readdirSync } = require('node:fs');\n+const { join } = require('node:path');\n+const assert = require('node:assert');\n+const tmpdir = require('./tmpdir.js');\n+\n+let d...
2025-08-10T19:35:42
facebook/react
b8bedc267f79db375f3147db4d766e09de599b68
4a36d3eab7d9bbbfae62699989aa95e5a0297c16
[compiler][autodeps/fire] Do not include fire functions in autodep arrays (#32532) Summary: We landed on not including fire functions in dep arrays. They aren't needed because all values returned from the useFire hook call will read from the same ref. The linter will error if you include a fired function in an explici...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -9,6 +9,7 @@ import {Effect, ValueKind, ValueReason} from './HIR';\n import {\n BUILTIN_SHAPES,\n BuiltInArrayId,\n+ BuiltInFireFunctionId,\n BuiltInFireId,\n BuiltInMapId,\n BuiltInMixedReadonlyId,\n@@ -67...
2025-04-17T17:03:19
vercel/next.js
7b63bd360bfda310e7fcf508bf3c91c91e2cbccb
7fc6b947688aa91896a5017c1c973acf129f146c
Turbopack: add lint rule to not cell in async map (#88474) <!-- 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 Contr...
[ { "path": ".config/ast-grep/rule-tests/__snapshots__/no-map-async-cell-snapshot.yml", "patch": "@@ -0,0 +1,282 @@\n+id: no-map-async-cell\n+snapshots:\n+ ? |\n+ items.into_iter()\n+ .map(async |item| Ok(item.process().await?.cell()))\n+ .try_join()\n+ .await\n+ : labels:\n+ - ...
2026-01-13T18:45:14
electron/electron
45a049428795402cefa4799bb04567db65da4429
521108e2a52a9449323e7493355ae9b32523f105
fix: remove obsoleted `--inspect-brk` logic (#46560) fix: remove obsoleted --inspect-brk logic
[ { "path": "lib/browser/init.ts", "patch": "@@ -218,7 +218,6 @@ if (packagePath) {\n } else {\n // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchronous\n appCodeLoaded!();\n- process._firstFileName = Module._resolveFilename(path.join(packagePath, mainStartupS...
2025-04-09T13:35:40
golang/go
121bc3e464b901327a5c138d8a992bb85c440862
b604148c4e8ad61640d12cde40379bc3c137d8a6
runtime/pprof: remove hard-coded sleep in CPU profile reader The CPU profiler reader goroutine has a hard-coded 100ms sleep between reads of the CPU profile sample buffer. This is done because waking up the CPU profile reader is not signal-safe on some platforms. As a consequence, stopping the profiler takes 200ms (on...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -924,7 +924,10 @@ func profileWriter(w io.Writer) {\n \tb := newProfileBuilder(w)\n \tvar err error\n \tfor {\n-\t\ttime.Sleep(100 * time.Millisecond)\n+\t\tif runtime.GOOS == \"darwin\" || runtime.GOOS == \"ios\" {\n+\t\t\t// see runtime_pprof_readProfil...
2025-11-21T16:01:29
nodejs/node
3c741f7ccd47119077eabdb15ee2427a6bd09a1b
a73b575304722a3682fbec3a5fb13b39c5791342
doc: fix Pbkdf2Params hash attribute heading PR-URL: https://github.com/nodejs/node/pull/59395 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -1573,7 +1573,7 @@ added: v15.0.0\n added: v15.0.0\n -->\n \n-#### `pbkdb2Params.hash`\n+#### `pbkdf2Params.hash`\n \n <!-- YAML\n added: v15.0.0", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-08-09T16:35:12
vercel/next.js
fe6a3385e6bfd2a8c5c1280dea532a2f0d6a6c55
6339e63839f0f322087d0049fec9e2a324d27501
Turbopack: use mimalloc on Linux musl (#88426) Closes #88174 With musl (i.e. Alpine), the system memory allocator can cause catastrophic slowdowns - https://medium.com/p/stop-using-alpine-images-b51d12b0fde2 - https://nickb.dev/blog/default-musl-allocator-considered-harmful-to-performance/ We were seeing it ca...
[ { "path": "turbopack/crates/turbo-tasks-malloc/Cargo.toml", "patch": "@@ -12,13 +12,13 @@ bench = false\n [dependencies]\n \n \n-[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\", target_env = \"musl\")))'.dependencies]\n+[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\...
2026-01-13T14:11:01
facebook/react
2ddf8caa9d3abd22f54304bf7650e512efb93f18
95ff37f5f5ee7c756f844aea2947e961e7151ac9
[ci] Fix check_access again (#32935) I can see the value being output and set correctly but not sure why it's skipping the 2nd job. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32935). * #32936 * _...
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,15 +13,15 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_or_collaborator }}\n+ is_member_or_collaborator: ${{ steps.check_is_me...
2025-04-16T22:00:25
golang/go
b604148c4e8ad61640d12cde40379bc3c137d8a6
22f24f90b52958158a2de5fa68adf0faf7699e4e
runtime: fix double wakeup in CPU profile buffer The profBuf.wakeupExtra method wakes up the profile reader if it's sleeping, either when the buffer is closed or when there is a pending overflow entry. Unlike in profBuf.write, profBuf.wakeupExtra does not clear the profReaderSleeping bit before doing the wakeup. As a...
[ { "path": "src/runtime/profbuf.go", "patch": "@@ -406,6 +406,11 @@ func (b *profBuf) wakeupExtra() {\n \tfor {\n \t\told := b.w.load()\n \t\tnew := old | profWriteExtra\n+\t\t// Clear profReaderSleeping. We're going to wake up the reader\n+\t\t// if it was sleeping and we don't want double wakeups in case\n...
2025-11-21T14:09:57
electron/electron
521108e2a52a9449323e7493355ae9b32523f105
93a51cc7560939b011224c6fdfea02ffea12969b
fix: crash on parent window close and focur/blur (#46559)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -219,14 +219,14 @@ void BrowserWindow::CloseImmediately() {\n }\n \n void BrowserWindow::Focus() {\n- if (api_web_contents_->IsOffScreen())\n+ if (api_web_contents_ && api_web_contents_->IsOffScreen())\n FocusOnWebView();\n e...
2025-04-09T13:35:30
vercel/next.js
2af84065cbbbe7bfd9c132f022c3989ab24a26f3
9a55a09627ba682b50e4e90fa9dc040bbb5bf00b
[test] Always run all tests without aborting on failure (#88435) It's more useful and efficient to run all tests and report all failures instead of aborting on the first failure. This way, developers get a complete picture of what needs to be fixed in a single run, and don't have to go through multiple iterations of f...
[ { "path": ".github/workflows/integration_tests_reusable.yml", "patch": "@@ -91,7 +91,6 @@ jobs:\n afterBuild: |\n # e2e and ${{ inputs.test_type }} tests with `node run-tests.js`\n \n- export NEXT_TEST_CONTINUE_ON_ERROR=true\n export NEXT_TEST_MODE=${{\n inputs.test_ty...
2026-01-13T11:37:29
nodejs/node
21eac793cd746eab0b36d75af5e16aed11f9aa4b
f3adc11e37b8bfaaa026ea85c1cf22e3a0e29ae9
build: fix node_use_sqlite for GN builds PR-URL: https://github.com/nodejs/node/pull/59017 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
[ { "path": "node.gni", "patch": "@@ -42,6 +42,9 @@ declare_args() {\n # The variable is called \"openssl\" for parity with node's GYP build.\n node_use_openssl = true\n \n+ # Build node with SQLite support.\n+ node_use_sqlite = true\n+\n # Use the specified path to system CA (PEM format) in addition ...
2025-08-09T00:22:24
golang/go
22f24f90b52958158a2de5fa68adf0faf7699e4e
cfb9d2eb73d9ecb0e5ea2ce5ef0d3f23593087be
cmd/compile: change testing.B.Loop keep alive semantic This CL implements this initial design of testing.B.Loop's keep variable alive semantic: https://github.com/golang/go/issues/61515#issuecomment-2407963248. Fixes #73137. Change-Id: I8060470dbcb0dda0819334f3615cc391ff0f6501 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -0,0 +1,313 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package bloop\n+\n+// This file contains support routines...
2025-10-30T19:14:57
facebook/react
3c75bf21dd2fca130635c5b67b5361f4759a7d29
3e04b2a214cdc962dd5acde412c7107321ec7a56
[mcp] Fix bailout loc (#32931) Use the correct loc line numbers and not [Object:object] --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32931). * #32932 * __->__ #32931 * #32930 * #32929 * #32928
[ { "path": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -283,7 +283,7 @@ server.tool(\n if (typeof err.loc !== 'symbol') {\n return {\n type: 'text' as const,\n- text: `React Compiler bailed out: ${err.message}@${err.loc.start}:${err.loc.end...
2025-04-16T21:49:15
electron/electron
1a6de10da85dba77ebc1e52570cc028af2d9de38
b1731407bc595084d9982df96a8e4a93afd0be44
fix: `assert.ok` in the renderer process (#46528) fix: assert.ok in the renderer process
[ { "path": "patches/node/feat_add_oom_error_callback_in_node_isolatesettings.patch", "patch": "@@ -13,7 +13,7 @@ To fix this issue, provide the interface oom_error_callback to enable a\n custom oom error callback set from Electron.\n \n diff --git a/src/api/environment.cc b/src/api/environment.cc\n-index 32f...
2025-04-08T12:09:54
vercel/next.js
de3e9d4f36e865c7ace2dda209cf89df25883647
2b314e744a0d8035a2234f3359976689352d850e
Turbopack: Update reqwest, remove experimental system TLS feature (#88290) I added this as an option in https://github.com/vercel/next.js/pull/81818 as a solution for users with corporate firewalls that MITM TLS traffic. Reqwest 0.13.x now uses `rustls-platform-verifier` by default, which doesn't have the tradeoffs t...
[ { "path": "Cargo.lock", "patch": "@@ -443,6 +443,29 @@ dependencies = [\n \"arrayvec 0.7.6\",\n ]\n \n+[[package]]\n+name = \"aws-lc-rs\"\n+version = \"1.13.3\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17...
2026-01-12T22:45:46
golang/go
0f32fbc631875bb729c74b839328fdf541bfed9a
3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9
net/http: populate Response.Request when using NewFileTransport Fixes #51562 Change-Id: Ia6fe4728b1e3e0cf3a6462be99c1044260cadf31 Reviewed-on: https://go-review.googlesource.com/c/go/+/720822 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@goog...
[ { "path": "src/net/http/filetransport.go", "patch": "@@ -57,15 +57,15 @@ func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {\n \t// sends our *Response on, once the *Response itself has been\n \t// populated (even if the body itself is still being\n \t// written to the res.Body, a p...
2025-11-16T00:26:27
electron/electron
85dce12be3c4fb45dee53cd2ff13746aebf6887e
a6875c732cbd5be58bc00291ba5dc65b3a89292b
refactor: migrate to `View::AddChildView(std::unique_ptr<ui::View*>)` (#46474) * refactor: use AddChildView(std::unique_ptr<View>) in OpaqueFrameView::CreateButton() Xref: https://issues.chromium.org/issues/40485510 * refactor: use AddChildView(std::unique_ptr<View>) in MenuBar::RebuildChildren() * refactor: use Ad...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -323,7 +323,7 @@ static bool FromV8(v8::Isolate* isolate,\n root_view->RemoveChildView(content_view());\n \n set_content_view(view);\n- root_view->AddChildView(content_view());\n+ root_view->AddChildViewRaw(content_view());\n \n root_vie...
2025-04-07T14:20:46
vercel/next.js
0daf2b58b4a75c908775a7df0b5a473e646531f8
0fd7d90d6385fbf0822db50c919272fe72b86997
[prebuilt-skew-protection] feat: adding in automatic deploymentId (#88012) <!-- 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 makin...
[ { "path": "errors/deploymentid-not-a-string.mdx", "patch": "@@ -0,0 +1,34 @@\n+---\n+title: '`deploymentId` function must return a string'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` option in your `next.config.js` is defined as a function, but it did not return a string value.\n+\n+## Pos...
2026-01-12T21:27:26
golang/go
3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9
831af61120b9b846965996ed1d4daaa079847b2a
net/http: preserve original path encoding in redirects Fixes #70758 Change-Id: I9fc6fe98c194351557c6219513918b7593899bc1 Reviewed-on: https://go-review.googlesource.com/c/go/+/720821 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> R...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -2881,6 +2881,19 @@ func TestRedirectBadPath(t *testing.T) {\n \t}\n }\n \n+func TestRedirectEscapedPath(t *testing.T) {\n+\tbaseURL, redirectURL := \"http://example.com/foo%2Fbar/\", \"qux%2Fbaz\"\n+\treq := httptest.NewRequest(\"GET\", baseURL, NoBody)\...
2025-11-16T00:13:40
vercel/next.js
818be9ae62a850dc60faf8f8dcb55c922f0a83ac
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
Warn when overriding Cache-Control header on `/_next/` routes (#88353) Custom `Cache-Control` headers on `/_next/` routes can cause hard-to-debug development behaviors. Normally the dev server sends no-cache values to ensure that assets are always fresh. If a developer sets the max-age or immutable flag,, the browser ...
[ { "path": "packages/next/src/lib/load-custom-routes.ts", "patch": "@@ -725,6 +725,27 @@ export default async function loadCustomRoutes(\n )\n }\n \n+ const cacheControlSources: string[] = []\n+ for (const headerRoute of headers) {\n+ if (!headerRoute.source.startsWith('/_next/')) {\n+ contin...
2026-01-12T19:02:07
nodejs/node
5baff3e47b10e1360a99d973e6ff18284e850301
60a58f63a1589e4fb45d558e58b9be149c6cb6f6
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "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.17',\n+ 'v8_embedder_string': '-node.18',\n \n ##### V8 defaults for Node.js #####\n...
2025-08-07T14:14:08
golang/go
831af61120b9b846965996ed1d4daaa079847b2a
87269224cb3609a967b821c89f5a920864969a10
net/http: use HTTP 307 redirects in ServeMux Clients receiving an HTTP 301 Moved Permanently may conservatively change the method of a POST request to GET. The newer HTTP 307 Temporary Redirect and 308 Permanent Redirect explicitly allows retrying POST requests after the redirect. These should be safe for ServeMux as ...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -288,7 +288,7 @@ func testHostHandlers(t *testing.T, mode testMode) {\n \t\t\tif s != vt.expected {\n \t\t\t\tt.Errorf(\"Get(%q) = %q, want %q\", vt.url, s, vt.expected)\n \t\t\t}\n-\t\tcase StatusMovedPermanently:\n+\t\tcase StatusTemporaryRedirect:\n \t...
2025-11-15T23:58:58
electron/electron
c0fdf09f283ba927c8913a60aa9b033ee96cfccf
41d8f90d6864174634dfbbb8285d605e4000a9a9
perf: on Windows, make `Archive::HeaderIntegrity()` faster (#46509) * perf: do not clone the map each time we call Archive::HeaderIntegrity() * perf: use absl::flat_hash_map for the integrity cache * perf: do not clone the JSON payload string * perf: preallocate capacity for the integrity cache * perf: use move va...
[ { "path": "shell/common/asar/archive_win.cc", "patch": "@@ -6,9 +6,10 @@\n #include \"shell/common/asar/archive.h\"\n \n #include <algorithm>\n-#include <sstream>\n+#include <string_view>\n \n #include \"base/base_paths.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/json/json_reader.h\"\n #...
2025-04-07T09:10:29
facebook/react
35ab8ffef7b755c899d9e19d61277a4fceb760d1
68013725ac5671ab06572bd361e168681782a727
[mcp] Add inspect script (#32928) Uses https://github.com/modelcontextprotocol/inspector to inspect and debug the mcp server. `yarn workspace react-mcp-server dev` will build the server in watch mode and launch the inspector. Default address is http://127.0.0.1:6274. --- [//]: # (BEGIN SAPLING FOOTER) Stack created w...
[ { "path": "compiler/packages/react-mcp-server/package.json", "patch": "@@ -8,6 +8,8 @@\n \"scripts\": {\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"echo 'no tests'\",\n+ \"dev\": \"concurrently --kill-others -n build,inspect \\\"yarn run watch\\\" \\\"wait-on dist/index.js && yarn run i...
2025-04-16T21:48:38
vercel/next.js
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
d067b620784e8293d1bef3ad85bf3f9110a4366a
Type-check `run-tests.js` and remove unused `related` flag (#88433) The file already had the `@ts-check` directive, so the IDE did show errors in that file. But since it was not included in the root `tsconfig.json`, those errors were not reported during CI runs. One issue found this way was that the `related` flag ...
[ { "path": "package.json", "patch": "@@ -168,6 +168,7 @@\n \"@types/shell-quote\": \"1.7.1\",\n \"@types/string-hash\": \"1.1.1\",\n \"@types/trusted-types\": \"2.0.3\",\n+ \"@types/yargs\": \"16.0.11\",\n \"@vercel/devlow-bench\": \"workspace:*\",\n \"@vercel/kv\": \"3.0.0\",\n \"...
2026-01-12T18:46:11
nodejs/node
0309806a74f8596059061525ba56fd9c82c56a8f
cce8c4dd83d7d78fc670d206e91d25eaff3d0ebb
doc: fix missing reference links for server.keepAliveTimeoutBuffer PR-URL: https://github.com/nodejs/node/pull/59356 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -1945,7 +1945,7 @@ incoming data, after it has finished writing the last response, before a socket\n will be destroyed.\n \n This timeout value is combined with the\n-\\[`server.keepAliveTimeoutBuffer`]\\[] option to determine the actual socket\n+[`server.keepAliveT...
2025-08-07T02:53:30
electron/electron
ac18decc566c9641475c0c677bf2e60758c2f08a
052da50aeb0d56ae8f4c7a749bc37d5a985fe71d
revert: allow NSMenuItems to be disabled (#46502) Revert "fix: allow NSMenuItems to be disabled (#46307)" This reverts commit ac616ef41d9379ead79130d6da071cad220b21d2.
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -320,10 +320,6 @@ - (NSMenuItem*)makeMenuItemForIndex:(NSInteger)index\n NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:label\n action:@selector(itemSelected:)\n ...
2025-04-07T01:42:05
golang/go
87269224cb3609a967b821c89f5a920864969a10
7aa9ca729fcb063506ea4ed35ee9b2673a853e4f
net/http: update Response.Request.URL after redirects on GOOS=js Fixes #71346 Change-Id: Id4053626e621faf50bb88a10ca0d540f393c8e01 Reviewed-on: https://go-review.googlesource.com/c/go/+/720860 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco...
[ { "path": "src/net/http/roundtrip_js.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"net/http/internal/ascii\"\n+\t\"net/url\"\n \t\"strconv\"\n \t\"strings\"\n \t\"syscall/js\"\n@@ -195,6 +196,13 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\t\tuncompressed...
2025-11-16T00:45:28
facebook/react
68013725ac5671ab06572bd361e168681782a727
bf39780a066626ebef67d4b3faf7eb163e35782a
[ci] Fix check_access fr (#32934) 💀
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.result }}\n+ is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_o...
2025-04-16T21:39:24
rust-lang/rust
1d43a421b5ec13e9c8f6d43c92dedad9c9c5fe0c
f3f4ab9205af504e9f58268645b41b743587a965
Remove `Clone` impl from `CycleError`. It's unused.
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -50,7 +50,7 @@ pub enum ActiveKeyStatus<'tcx> {\n Poisoned,\n }\n \n-#[derive(Clone, Debug)]\n+#[derive(Debug)]\n pub struct CycleError<'tcx> {\n /// The query and related span that uses the cycle.\n pub usage: Option<Spanned<...
2026-03-11T03:22:31
vercel/next.js
d067b620784e8293d1bef3ad85bf3f9110a4366a
d90847dead1f5c135741043f7720844583a26d0a
docs: add rebuild guidance and ICE troubleshooting to AGENTS.md (#88337) Update AGENTS.md with better instructions abotu rebuilding and handling rustc crashes Also make the graphite instructions more emphatic
[ { "path": "AGENTS.md", "patch": "@@ -41,13 +41,20 @@ The main Next.js framework lives in `packages/next/`. This is what gets publishe\n \n ## Git Workflow\n \n-**Use Graphite for all git operations** instead of raw git commands:\n+**CRITICAL: Use Graphite (`gt`) instead of git for ALL branch and commit oper...
2026-01-12T18:14:32
nodejs/node
c8b64bd02324ec48d73c7e01982f06c0218b0f87
e2fefd78e218515dc657486d7abe60b7a928cb3f
quic: fixup NO_ERROR macro conflict on windows PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -386,6 +386,8 @@ const QuicError QuicError::FromConnectionClose(ngtcp2_conn* session) {\n QUIC_TRANSPORT_ERRORS(V)\n #undef V\n \n+const QuicError QuicError::TRANSPORT_NO_ERROR =\n+ ForTransport(TransportError::NO_ERROR_);\n const QuicError QuicError::HTTP3_NO_E...
2025-08-06T22:48:10
electron/electron
c2ae4afb8f98c0180e9e67f8f1c7cf76cb88ce9c
e81e3acd2dcaf4f0a77c5fae87d1a1f88d39e29a
fix: destroy parent port backend when JS env exits (#46437) * fix: destroy parent port backend when JS env exits * fix: close parent port before destroying --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -96,6 +96,7 @@ NodeService::NodeService(\n NodeService::~NodeService() {\n if (!node_env_stopped_) {\n node_env_->set_trace_sync_io(false);\n+ ParentPort::GetInstance()->Close();\n js_env_->DestroyMicrotasksRunner();\n node::Stop...
2025-04-04T16:02:54
golang/go
7aa9ca729fcb063506ea4ed35ee9b2673a853e4f
f870a1d3989d428a5d87368e340f23c4d8232380
net/http/cookiejar: treat localhost as secure origin For development purposes, browsers treat localhost as a secure origin regardless of protocol. Fixes #60997 https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Cookies#restrict_access_to_cookies https://bugzilla.mozilla.org/show_bug.cgi?id=1618113 https://issu...
[ { "path": "src/net/http/cookiejar/jar.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"net\"\n \t\"net/http\"\n \t\"net/http/internal/ascii\"\n+\t\"net/netip\"\n \t\"net/url\"\n \t\"slices\"\n \t\"strings\"\n@@ -120,7 +121,7 @@ func (e *entry) id() string {\n // request to host/path. It is the caller's respo...
2025-11-04T22:47:42
facebook/react
bf39780a066626ebef67d4b3faf7eb163e35782a
b04254fdcee30871760301f34236ee0dfadf86ab
[ci] Fix check_access output (#32933) the joy of yml
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n - name: Check access\n id: check_access\n if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}\n- run: ...
2025-04-16T21:27:09
rust-lang/rust
f3f4ab9205af504e9f58268645b41b743587a965
d27207d3d64a1399f90344d6ef3c5743204b3fd3
Remove `QueryInfo`. `CycleError` has one field containing a `(Span, QueryStackFrame<I>)` and another field containing a `QueryInfo`, which is a struct containing just a `Span` and a `QueryStackFrame<I>`. We already have the `Spanned` type for adding a span to something. This commit uses it for both fields in `CycleEr...
[ { "path": "compiler/rustc_middle/src/query/job.rs", "patch": "@@ -7,17 +7,8 @@ use parking_lot::{Condvar, Mutex};\n use rustc_span::Span;\n \n use crate::query::plumbing::CycleError;\n-use crate::query::stack::QueryStackFrame;\n use crate::ty::TyCtxt;\n \n-/// Represents a span and a query key.\n-#[derive(C...
2026-03-10T00:57:05
nodejs/node
e2fefd78e218515dc657486d7abe60b7a928cb3f
24e28c41b5b20dbeaa247ca053d7a2711a2058da
quic: fixup windows coverage compile error PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/quic/data.cc", "patch": "@@ -149,15 +149,15 @@ T Store::convert() const {\n }\n \n Store::operator uv_buf_t() const {\n- return convert<uv_buf_t, typeof(*uv_buf_t::base)>();\n+ return convert<uv_buf_t, char>();\n }\n \n Store::operator ngtcp2_vec() const {\n- return convert<ngtcp2_vec, typ...
2025-08-06T21:15:45
vercel/next.js
90a4927806cbcd52d65cc9ff0330dc9bb4b6bcb7
76a15d8db611453a08924b936c88b3738dff02f6
fix: use RDC for server action requests (#88129) When a server action triggers a re-render of the underlying page (eg by calling `refresh()`), cached data that was part of the Resume Data Cache (RDC) was not provided to the server action handler, and so those parts of the UI would update with new data. A subsequent re...
[ { "path": "packages/next/errors.json", "patch": "@@ -976,5 +976,6 @@\n \"975\": \"Failed to find Server Action. This request might be from an older or newer deployment.\\\\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action\",\n \"976\": \"Decompressed resume data cache exceeded %s...
2026-01-12T17:17:44
golang/go
f870a1d3989d428a5d87368e340f23c4d8232380
9962d95fed9c13b9a7497bc41ba86253ba619a29
net/url: warn that JoinPath arguments should be escaped Fixes #75799 Change-Id: I483f7b1129799d8dd7f359a04e6ebc1b6a5d0b08 Reviewed-on: https://go-review.googlesource.com/c/go/+/719000 Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/net/url/url.go", "patch": "@@ -1205,7 +1205,13 @@ func (u *URL) UnmarshalBinary(text []byte) error {\n // JoinPath returns a new [URL] with the provided path elements joined to\n // any existing path and the resulting path cleaned of any ./ or ../ elements.\n // Any sequences of multiple / ch...
2025-11-08T18:16:48
facebook/react
b04254fdcee30871760301f34236ee0dfadf86ab
539bbdbd86d9cd342aabde4cb08e398751789103
Don't try to hydrate a hidden Offscreen tree (#32862) I found a bug even before the Activity hydration stuff. If we're hydrating an Offscreen boundary in its "hidden" state it won't have any content to hydrate so will trigger hydration errors (which are then eaten by the Offscreen boundary itself). Leaving it not pre...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -3723,6 +3723,11 @@ describe('ReactDOMServerPartialHydration', () => {\n <Activity mode=\"hidden\">\n <HiddenChild />\n </Activity>\n+ <Suspense fallback={null}...
2025-04-15T21:43:42
nodejs/node
2b4a09ef8bd8945268b0ad6d03caae8f7a1a8082
31aacfa67cecf89d12062a3bacc644d6af7c9e30
build: fix OpenSSL version detection Fix OpenSSL version detection in `configure.py` when `pkg-config` is used to configure building with a shared OpenSSL library. PR-URL: https://github.com/nodejs/node/pull/59353 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-B...
[ { "path": "configure.py", "patch": "@@ -1205,7 +1205,7 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n-def get_openssl_version():\n+def get_openssl_version(o):\n \"\"\"Parse OpenSSL version from opensslv.h header file.\n \n Returns the version as a num...
2025-08-06T19:47:18
electron/electron
9c019b6147e88dc14959cdb8e555de0fe52f51a4
0a5da83a1b8bb9316f4b171a0da72587080638d1
chore: bump chromium to 136.0.7095.0 (main) (#46118) * chore: bump chromium in DEPS to 136.0.7076.0 * chore: bump chromium in DEPS to 136.0.7077.0 * 6368856: Migrate absl variant.h and utility.h in content (part 2/2) | https://chromium-review.googlesource.com/c/chromium/src/+/6368856 * 6356528: Clean up LegacyRende...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -20,3 +20,4 @@ runs:\n cp \"C:\\Python311\\python.exe\" \"C:\\Python311\\python3.exe\"\n fi\n echo \"$HOME/.electron_build_tools/third_party/depot_tools\" >> $GITHUB_PATH\n+ echo \"$HOME/.electron_build_tools/t...
2025-04-04T00:02:49
vercel/next.js
76a15d8db611453a08924b936c88b3738dff02f6
17acc812237db6eee64a13844beb45a11a5758b4
fix(turbo-tasks-backend): use correct TaskDataCategory for is_immutable check (#88331) ## Fix task immutability check by using correct TaskDataCategory ### What? This PR fixes a bug in the task immutability check by ensuring we use `TaskDataCategory::Meta` instead of `TaskDataCategory::Data` when checking if dependen...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2133,7 +2133,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n if let Some(dependencies) = task_dependencies_for_immutable\n && dependencies\n .iter()\n- .all(|&task...
2026-01-12T16:56:12
golang/go
f821fc46c586d2f114dddbcfaaffbb4bf5cd89b7
b59efc38a0ce1683bb360a2db67d2543047170dc
crypto/internal/fisp140test: update acvptool, test data This commit updates the BoringSSL module version used for the acvptool, as well as the module version used for the static test data used by our CI process to avoid interacting with a live ACVP server. Two important upstream changes of note: 1. NIST changed the ...
[ { "path": "src/crypto/internal/fips140test/acvp_capabilities.json", "patch": "@@ -16,17 +16,17 @@\n {\"algorithm\":\"cSHAKE-128\",\"hexCustomization\":false,\"outputLen\":[{\"min\":16,\"max\":65536,\"increment\":8}],\"msgLen\":[{\"min\":0,\"max\":65536,\"increment\":8}],\"revision\":\"1.0\"},\n {\"algor...
2025-11-11T19:41:43
nodejs/node
31aacfa67cecf89d12062a3bacc644d6af7c9e30
134625d76139b4b3630d5baaf2efccae01ede564
meta: clarify pr objection process further Based on some recent confusion around the objection process for PRs, this commit adds some additional clarification to the collaborator guide. Specifically, it clarifies that: * Objections must be made in the PR itself * All objections are considered equal... no special a...
[ { "path": "doc/contributing/collaborator-guide.md", "patch": "@@ -154,10 +154,13 @@ requirements. If a pull request meets all requirements except the\n \n Collaborators can object to a pull request by using the \"Request\n Changes\" GitHub feature. Dissent comments alone don't constitute an\n-objection. Any...
2025-08-06T14:30:52
facebook/react
7ff4d057b69683dd6c512c7940dbadd10788306f
08075929f2d5eea319418ea379773bb7276ff940
[DevTools] feat: show changed hooks names in the Profiler tab (#31398) <!-- 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 pul...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Components.js", "patch": "@@ -19,7 +19,6 @@ import {\n } from 'react-devtools-shared/src/storage';\n import InspectedElementErrorBoundary from './InspectedElementErrorBoundary';\n import InspectedElement from './InspectedElement';\n-imp...
2025-04-15T10:10:00
vercel/next.js
9857ed1e091cc39eefe2f756ee4ea16789f5ded0
9c5e3da9daace868479bd8eb5c0aa09414c1452a
fix: support TypeScript `noUncheckedSideEffectImports` for CSS imports (#88199) ## Summary This PR adds type declarations for plain CSS side-effect imports (`*.css`, `*.sass`, `*.scss`) to support TypeScript 5.6's `noUncheckedSideEffectImports` option. ### What? Added empty module declarations for non-module CSS im...
[ { "path": "packages/next/types/global.d.ts", "patch": "@@ -39,6 +39,13 @@ declare module '*.module.scss' {\n export default classes\n }\n \n+// CSS side-effect imports (non-modules)\n+// These are needed for `noUncheckedSideEffectImports` support\n+// See: https://www.typescriptlang.org/tsconfig/#noUnchec...
2026-01-12T13:15:33
golang/go
62741480b8837f2570e75fbb982e80bc0be564ca
7db2f0bb9a5d0e3d68e3eb153dbce928138206a0
runtime: remove linkname for gopanic github.com/goplus/igop now renamed github.com/goplus/ixgo already requires checklinkname=0, so the special case can be removed. https://github.com/goplus/ixgo/tree/e0d0bfeb2de9cfbe0b6cd668f015a1ba35dfea76/ixgo go.undefinedlabs.com is no longer a resolvable domain, having been abso...
[ { "path": "src/runtime/panic.go", "patch": "@@ -793,10 +793,7 @@ var panicnil = &godebugInc{name: \"panicnil\"}\n // The compiler emits calls to this function.\n //\n // gopanic should be an internal detail,\n-// but widely used packages access it using linkname.\n-// Notable members of the hall of shame in...
2025-11-17T21:16:06
nodejs/node
134625d76139b4b3630d5baaf2efccae01ede564
09c906ade8783d8775a7dd3d2a117e5137fefc16
doc: fix grammar in global dispatcher usage Add missing preposition "by" to clarify how to change the global dispatcher. PR-URL: https://github.com/nodejs/node/pull/59344 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/globals.md", "patch": "@@ -537,7 +537,7 @@ The dispatcher must be compatible with `undici`'s\n fetch(url, { dispatcher: new MyAgent() });\n ```\n \n-It is possible to change the global dispatcher in Node.js installing `undici` and using\n+It is possible to change the global dispatcher in ...
2025-08-06T03:53:35
facebook/react
5e9b48778c83dd8b2c63966db3e23abefebe910c
c44e4a250557e53b120e40db8b01fb5fd93f1e35
[RN] Map Fabric priorities to reconciler priorities correctly (#32847) ## Summary This fixes how we map priorities between Fabric and the React reconciler. At the moment, we're only considering default and discrete priorities, when there's a larger range of priorities available. In Fabric, we'll test supporting addi...
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -18,6 +18,8 @@ import {\n NoEventPriority,\n DefaultEventPriority,\n DiscreteEventPriority,\n+ ContinuousEventPriority,\n+ IdleEventPriority,\n type EventPriority,\n } from 'react-reconciler/src/ReactEventPriori...
2025-04-10T16:35:15
electron/electron
7601af52002a716f211d24f11c757dd5adb1fe3a
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
fix: don't copy 'package.json's out of ASAR file (#46390) New Node.js module resolution system reads `package.json` from imported modules by reading from the file natively in C++ without calling into `fs.readFileSync`. The ASAR FS wrapper code had copied files out into a temporary folder as a workaround, but it is ine...
[ { "path": "lib/node/asar-fs-wrapper.ts", "patch": "@@ -667,10 +667,10 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n return p(pathArgument, options);\n };\n \n- const { readFileSync } = fs;\n- fs.readFileSync = function (pathArgument: string, options: any) {\n- const pathInfo =...
2025-04-03T20:39:53
rust-lang/rust
1bc2c442870a669669880b7487d46f4ce90e71b0
d4e76b7cb893ae3dfa6a128acc0d78726cdfcf55
fix: remove empty angle brackets in inline type alias code assist. fixes https://github.com/rust-lang/rust-analyzer/issues/21769
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/inline_type_alias.rs", "patch": "@@ -12,7 +12,7 @@ use itertools::Itertools;\n use syntax::ast::syntax_factory::SyntaxFactory;\n use syntax::syntax_editor::SyntaxEditor;\n use syntax::{\n- AstNode, NodeOrToken, SyntaxNode,\n+ AstNode, ...
2026-03-08T15:21:00
vercel/next.js
e99a92bbada5c2811b00f2abc0795b7171ee47fb
f814b8b51a8207d28640348dc347f18ad0dc64c8
[test] Remove rogue debug log (#88423) Logging the work unit store caused the following runtime error under some circumstances: ``` TypeError: Cannot read private member #headersList from an object whose class did not declare it ```
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-runtime/app/(default)/errors/sync-io-after-runtime-api/dynamic-params/[id]/page.tsx", "patch": "@@ -1,6 +1,5 @@\n import { Suspense } from 'react'\n import { DebugRenderKind } from '../../../../../shared'\n-import { workUnitAsyncStorage } from 'next/dist/se...
2026-01-12T12:59:37
golang/go
35d2712b324af111816e9d637032cbbb8eaeedc7
90c970cd0fce1804d82f5148884e69d179c2e265
net/http: fix typo in Transport docs Change-Id: Ifeb8d6d2e3fd4c8b0e27da62bec5cf28fe71db34 GitHub-Last-Rev: 5760fb106f58bf77817b9813f029d47be4ca7e3b GitHub-Pull-Request: golang/go#76316 Reviewed-on: https://go-review.googlesource.com/c/go/+/720800 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/net/http/transport.go", "patch": "@@ -87,7 +87,7 @@ const DefaultMaxIdleConnsPerHost = 2\n // ClientTrace.Got1xxResponse.\n //\n // Transport only retries a request upon encountering a network error\n-// if the connection has been already been used successfully and if the\n+// if the connecti...
2025-11-16T00:00:59
facebook/react
336614679600af371b06371c0fbdd31fd9838231
365c031fd2354e94248ed9390f13fe2975b994f6
Fix `Failed to execute 'measure' on 'Performance'` error (#32823) When `startTime` still has its initial value of `-1.1` we must not call `logComponentMount`. This can occur when rendering a `'next/dynamic'` component with `{ssr: false}` in a client component, for example. Unfortunately, I didn't manage to reproduce t...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -3756,7 +3756,7 @@ function commitPassiveMountOnFiber(\n ) {\n // Log the reappear in the render phase.\n const startTime = ((finishedWork.actualStartTime: any): number);\n- if (endTi...
2025-04-07T14:13:34
electron/electron
e46b0c8ddc73800f816ffec5c072deeaaa876e9e
0e3246e20d709ddfdc4a1820278068d771f1e9d7
fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 (#46434) * fix: gin_helper::Promise in GPUInfoManager must be destroyed before destroying Node/V8 * fix: use CleanedUpAtExit to control the lifetime of GPUInfoManager
[ { "path": "shell/browser/api/gpuinfo_manager.cc", "patch": "@@ -17,7 +17,9 @@\n namespace electron {\n \n GPUInfoManager* GPUInfoManager::GetInstance() {\n- return base::Singleton<GPUInfoManager>::get();\n+ // will be deleted by CleanedUpAtExit::DoCleanup\n+ static GPUInfoManager* instance = new GPUInfoM...
2025-04-03T17:12:12
vercel/next.js
f8553f86bfd11646459ad4555f292572f661602f
5746e3bb14e72db37b4dc75d37137af8ed7c0310
ci: Fix retry comments in workflow files (#88412) The retry comments for e2e tests and deploy tests were off by one.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -15,7 +15,7 @@ permissions:\n jobs:\n retry-on-failure:\n name: retry failed jobs\n- # Retry the test-e2e-deploy-release workflow up to 2 times\n+ # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n ...
2026-01-12T10:53:27
rust-lang/rust
774f23201523e60fd729c654061f82492760adec
35f1109ece895199e4b8d755b101e9a481d18243
Provide better suggestions for inference errors on `.collect()?` When encountering an inference error when calling `.collect()` followed by `?`, detect the return type of the enclosing function and suggest `.collect::<Result<_, _>>()?` instead of `.collect::<Vec<_>>()?`: ``` error[E0283]: type annotations needed --...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -555,6 +555,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n def_id: _,\n generic_args,\n have_turbofish,\n+ hir_id,\n } => {\n ...
2026-03-15T17:39:06
golang/go
9772d3a690eabd4a167301b886e18c6ce7b6e4bc
1903782ade15293358c983e03db2bf238c5352fa
cmd/cgo: strip top-level const qualifier from argument frame struct Otherwise we can't assign to it. Fixes #75751 Change-Id: Iba680db672297bca1a1d1a33912b80863da66a08 Reviewed-on: https://go-review.googlesource.com/c/go/+/717342 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Ian Lance Taylor <iant@golang...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -953,6 +953,12 @@ typedef struct {\n } issue69086struct;\n static int issue690861(issue69086struct* p) { p->b = 1234; return p->c; }\n static int issue690862(unsigned long ul1, unsigned long ul2, unsigned int u, issue69086struct s) { return (int)(s...
2025-11-03T23:54:39
nodejs/node
b8e643259ee1baccb36518221c3215984e003eb4
f7c2a7ed4a888aad50c9075c8aec531a27b94c22
zlib: add dictionary support to zstdCompress and zstdDecompress Adds optional dictionary support to zlib’s zstdCompress and zstdDecompress APIs. This enables better compression ratios when the dictionary matches expected input structure or content patterns. The implementation allows passing a `dictionary` buffer thro...
[ { "path": "doc/api/zlib.md", "patch": "@@ -1069,6 +1069,9 @@ Each Zstd-based class takes an `options` object. All options are optional.\n * `maxOutputLength` {integer} Limits output size when using\n [convenience methods][]. **Default:** [`buffer.kMaxLength`][]\n * `info` {boolean} If `true`, returns an o...
2025-08-04T16:13:57
facebook/react
365c031fd2354e94248ed9390f13fe2975b994f6
a9d63f3f9798355cd814237b5f5391d6adbfa750
Workaround against display: inline bug in Safari (#32822) Safari has a bug where if you put a block element inside an inline element and the inline element has a `view-transition-name` assigned it finds it as duplicate names. https://bugs.webkit.org/show_bug.cgi?id=290923 This adds a warning if we detect this scenar...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -113,7 +113,9 @@ export default function Page({url, navigate}) {\n \n const exclamation = (\n <ViewTransition name=\"exclamation\" onShare={onTransition}>\n- <span>!</span>\n+ <span>\n+ <div>!</div>\n+ </sp...
2025-04-07T14:08:07
electron/electron
0e3246e20d709ddfdc4a1820278068d771f1e9d7
0ff98810ba1cabba826343a69e7c72997304f9f0
fix: ensure maximize is emitted when reduce motion is enabled on macOS (#46459) * fix: ensure maximize is emitted when reduce motion is enabled on macOS * Revert "build: reenable graphics effects for macOS tests (#46454)" This reverts commit 682ea345ace76d41996165c7efa55852da9546ab.
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -118,12 +118,6 @@ jobs:\n - name: Turn off the unexpectedly quit dialog on macOS\n if: ${{ inputs.target-platform == 'macos' }}\n run: defaults write com.apple.CrashReporter DialogType server\n- - name: Reenabl...
2025-04-03T16:14:16
vercel/next.js
ec11c8622f58e3746b04edffcebcc5206718e418
38ac035394d6f834f50a442182c6fe2b39487c61
docs: fix CSP example to only include unsafe-eval in development (#88407) ## What Fixes the CSP documentation "Without Nonces" example to only include `'unsafe-eval'` in development mode. ## Why The example was showing `'unsafe-eval'` without a development check, which would cause it to be shipped to production. Th...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -415,9 +415,11 @@ Consider nonces when:\n For applications that do not require nonces, you can set the CSP header directly in your [`next.config.js`](/docs/app/api-reference/config/next-config-js) file:\n \n ```js filename=\"next.co...
2026-01-12T09:13:16
golang/go
1903782ade15293358c983e03db2bf238c5352fa
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
errors: add examples for custom Is/As matching Change-Id: Ia92dae13b6a4e9434b29d2ab3f698f6ba87b4b89 Reviewed-on: https://go-review.googlesource.com/c/go/+/713740 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/errors/example_test.go", "patch": "@@ -44,6 +44,39 @@ func ExampleNew() {\n \t// Output: emit macho dwarf: elf header corrupted\n }\n \n+func OopsNew() error {\n+\treturn errors.New(\"an error\")\n+}\n+\n+var ErrSentinel = errors.New(\"an error\")\n+\n+func OopsSentinel() error {\n+\treturn E...
2025-10-22T12:13:51
nodejs/node
99c80e3a45eb8ac25c904dc699e9289bfabbd02f
ebfc28a037bc880070928efc4a3db1ca8e6b064e
quic: update the guard to check openssl version Since we need to be able to use the openssl adapter provided by the ngtcp2 library, and because that adapter does not include any compile guards to ensure that OpenSSL 3.5 is being used and that the APIs are actually available, we need to add a compile time check for the...
[ { "path": "configure.py", "patch": "@@ -1205,6 +1205,65 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n+def get_openssl_version():\n+ \"\"\"Parse OpenSSL version from opensslv.h header file.\n+\n+ Returns the version as a number matching OPENSSL_VERSION_...
2025-07-27T21:34:12
facebook/react
a9d63f3f9798355cd814237b5f5391d6adbfa750
6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf
fix: incorrect type in getTypeSymbol (#32825) `getTypeSymbol` also returns string
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -248,7 +248,7 @@ function createVirtualInstance(\n type DevToolsInstance = FiberInstance | VirtualInstance | FilteredFiberInstance;\n \n type getDisplayNameForFiberType = (fiber: Fiber) => string | null;\n-type getTypeSym...
2025-04-07T09:51:28
electron/electron
0ff98810ba1cabba826343a69e7c72997304f9f0
f48680a98392dc0aeae305c9ebf89c8a36b18468
fix: `NativeWindowViews::GetRestoredState()` can return wrong state when maximized (#46450) fix: NativeWindowViews::GetRestoredState() returning wrong state Introduced by the af58931 Chromium 131.0.6744.0 roll, specifically https://github.com/electron/electron/pull/43948/commits/9840662#diff-f9d7ef7 98406626
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1839,7 +1839,7 @@ ui::mojom::WindowShowState NativeWindowViews::GetRestoredState() {\n return ui::mojom::WindowShowState::kMaximized;\n }\n #else\n- return ui::mojom::WindowShowState::kMinimized;\n+ return ui::mojom::WindowShowS...
2025-04-03T13:55:04
vercel/next.js
78c102f2e55ecfe3fe7fbccd48f5a9c2119af715
774b78a0972402e87b71ea485d877df8d5007c69
fix: skip stats-aggregate job for docs-only changes (#88330) ## What? Adds the docs-only change check to the `stats-aggregate` job. ## Why? The `stats` job already skips work for docs-only changes using `scripts/run-for-change.mjs`, but the `stats-aggregate` job was missing this check. This caused unnecessary job r...
[ { "path": ".github/workflows/pull_request_stats.yml", "patch": "@@ -95,25 +95,33 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n with:\n- fetch-depth: 1\n+ fetch-depth: 25\n+\n+ - name: Check non-docs only change\n+ run: echo \"DOCS_CHANGE<<EOF\" >> $GITHUB_...
2026-01-11T21:03:59
golang/go
ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0
3820f94c1d081921494ada1da64b4fab21ae1a48
cmd/compile: rewrite Rsh to RshU if arguments are proved positive Fixes #76332 Change-Id: I9044025d5dc599531c7f88ed2870bcf3d8b0acbd Reviewed-on: https://go-review.googlesource.com/c/go/+/721206 Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Jorropo <jorropo...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2664,14 +2664,30 @@ var mostNegativeDividend = map[Op]int64{\n \tOpMod64: -1 << 63,\n }\n var unsignedOp = map[Op]Op{\n-\tOpDiv8: OpDiv8u,\n-\tOpDiv16: OpDiv16u,\n-\tOpDiv32: OpDiv32u,\n-\tOpDiv64: OpDiv64u,\n-\tOpMod8: OpMod8u,\n-\tOpMod16:...
2025-11-18T00:42:37