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 | 6d0e8044ebca06a3de8d7063a0aa989735bab343 | f8b05bc127a0bdca54ecf0ef004d07ceab782a80 | fix: update `chrome.tabs` for Manifest v3 (#39317) | [
{
"path": "shell/common/extensions/api/tabs.json",
"patch": "@@ -3,13 +3,23 @@\n \"namespace\": \"tabs\",\n \"description\": \"Use the <code>chrome.tabs</code> API to interact with the browser's tab system. You can use this API to create, modify, and rearrange tabs in the browser.\",\n \"types\"... | 2023-08-03T16:34:02 |
golang/go | 5a1f47a7f716ce0dbd88128d18ce556dd9280c68 | d13da63929df73ab506314f35524ebb9b0f8a216 | cmd/internal/obj/riscv: fix LMUL encoding for MF2 and MF8
The encodings for the riscv64 special operands SPOP_MF2 and SPOP_MF8
are incorrect, i.e., their values are swapped. This leads to
incorrect encodings for the VSETVLI and VSETIVLI instructions. The
assembler currently encodes
VSETVLI X10, E32, MF8, TA, MA, X1... | [
{
"path": "src/cmd/asm/internal/asm/testdata/riscv64.s",
"patch": "@@ -438,9 +438,9 @@ start:\n \tVSETVLI\tX10, E32, M2, TA, MA, X12\t\t// 5776150d\n \tVSETVLI\tX10, E32, M4, TA, MA, X12\t\t// 5776250d\n \tVSETVLI\tX10, E32, M8, TA, MA, X12\t\t// 5776350d\n-\tVSETVLI\tX10, E32, MF2, TA, MA, X12\t\t// 577655... | 2025-05-06T11:02:34 |
rust-lang/rust | d2ce1c9c3d87f81e6550f6af56eb133db46e9b42 | 01036ee64e341a83c88ebe38bb94f57eaf5bda44 | stdarch-gen-hexagon: Fix clippy warnings
- Move regex compilations outside loops
- Use Option::map and or_else instead of manual if-let chains
- Use strip_prefix instead of manual starts_with + slice
- Use !is_empty() instead of len() >= 1
- Combine consecutive str::replace calls | [
{
"path": "library/stdarch/crates/stdarch-gen-hexagon/src/main.rs",
"patch": "@@ -333,10 +333,10 @@ fn parse_prototype(prototype: &str) -> Option<(RustType, Vec<(String, RustType)>\n \n let mut params = Vec::new();\n if !params_str.trim().is_empty() {\n+ // Pattern: Type Name or T... | 2026-02-12T14:03:13 |
facebook/react | 6a01aca75b77da01b0e6513fe61a4842637c7dfd | 74cb1bdfec296af4ac3eda383fb6b5a9324803f3 | Fix ReactHooksInspectionIntegration-test (#28577)
Resolve conflict between #28508 and #28546 | [
{
"path": "packages/react-debug-tools/src/__tests__/ReactHooksInspectionIntegration-test.js",
"patch": "@@ -1244,7 +1244,7 @@ describe('ReactHooksInspectionIntegration', () => {\n <Context.Provider value=\"provided\">\n <Foo />\n </Context.Provider>,\n- {isConcurrent: true},... | 2024-03-18T17:15:23 |
nodejs/node | 385ca623e452d4b4eb671ab5d7d1a267b99b8da0 | 821ffab0f78972d6e63bafa598b0c6d92550072b | test_runner: defer inheriting hooks until run()
This commit updates the way the test runner computes inherited
hooks. Instead of computing them when the Test/Suite is
constructed, they are now computed just prior to running the
Test/Suite. The reason is because when multiple test files are
run in the same process, it ... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -408,14 +408,6 @@ class Test extends AsyncResource {\n this.childNumber = 0;\n this.timeout = kDefaultTimeout;\n this.entryFile = entryFile;\n- this.hooks = {\n- __proto__: null,\n- before: [],\n- after: [... | 2024-07-19T18:56:35 |
vercel/next.js | b05d6d764216ffe22b0c802384fdda26f8841d6e | 9d45ade9f66d31bed46cd020b6e254d5dae2747c | Turbopack: Move fs watcher anyhow::Context import inline to fix compilation warnings (#81997)
I broke this in my previous PR
https://github.com/vercel/next.js/pull/81909/files#r2225998847 | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/watcher.rs",
"patch": "@@ -10,7 +10,7 @@ use std::{\n time::Duration,\n };\n \n-use anyhow::{Context, Result};\n+use anyhow::Result;\n use notify::{\n Config, EventKind, PollWatcher, RecommendedWatcher, RecursiveMode, Watcher,\n event::{MetadataKind... | 2025-07-24T03:26:58 |
golang/go | 0c15d88974e5bb4285d6cdf6ef125e1e4d438c6d | ef7724c4324f6bac40463a12e4fea43ff0b4a8e8 | runtime: fix tag pointers on aix, take 2
Previous fix in CL 667715 wasn't correct for aix.
Change-Id: I44042786079463967165507b15756cf24b9a213a
Reviewed-on: https://go-review.googlesource.com/c/go/+/668036
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam... | [
{
"path": "src/runtime/tagptr_64bit.go",
"patch": "@@ -66,6 +66,9 @@ func (tp taggedPointer) pointer() unsafe.Pointer {\n \t\t// val before unpacking.\n \t\treturn unsafe.Pointer(uintptr(int64(tp) >> tagBits << tagAlignBits))\n \t}\n+\tif GOOS == \"aix\" {\n+\t\treturn unsafe.Pointer(uintptr((tp >> tagBits ... | 2025-04-25T17:09:44 |
electron/electron | e96b1613a4dd9bfa1d47e9a493727fc0f385db9a | fe93f69e5a3f5d8f28b9834329590dce9a5c97f5 | fix: destroy message port backend when JS env exits (#39335) | [
{
"path": "shell/browser/api/message_port.h",
"patch": "@@ -11,6 +11,7 @@\n #include \"gin/wrappable.h\"\n #include \"mojo/public/cpp/bindings/connector.h\"\n #include \"mojo/public/cpp/bindings/message.h\"\n+#include \"shell/common/gin_helper/cleaned_up_at_exit.h\"\n #include \"third_party/blink/public/com... | 2023-08-03T12:30:19 |
rust-lang/rust | 6a3baf6f2764e404f282119165b78ef68436edcc | f5a8b86695fb7109d494f8aed595318e76957d36 | CI: rfl: add temporary commit for compiler bug
The compiler is fixing a bug [1] that Rust for Linux happened to trigger,
thus temporarily add Benno's patch to the CI job.
As usual, the patch will eventually make it to the Linux kernel so that
both sides are good.
Cc: Benno Lossin <lossin@kernel.org>
Link: https://gi... | [
{
"path": "src/ci/docker/scripts/rfl-build.sh",
"patch": "@@ -3,7 +3,8 @@\n set -euo pipefail\n \n # https://github.com/rust-lang/rust/pull/151534\n-LINUX_VERSION=eb268c7972f65fa0b11b051c5ef2b92747bb2b62\n+# https://github.com/rust-lang/rust/pull/149389\n+LINUX_VERSION=167ea5357eb7c3a39200627a36dfbfe2495761... | 2026-02-12T12:48:12 |
facebook/react | 37452089fba2492cbc622b80d9e987193f343054 | 8c8e318bd4182186699814992e56245ba64c89b3 | [ez] CompilerError: optional description and suggestions
---
Many compiler errors have neither descriptions nor suggestions (e.g. most `todo`
or `invariant` errors), so let's make those optional | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -51,7 +51,7 @@ export type CompilerErrorDetailOptions = {\n description?: string | null | undefined;\n severity: ErrorSeverity;\n loc: SourceLocation | null;\n- suggestions: Array<CompilerSuggestion> | null;\n+... | 2024-03-18T16:09:36 |
golang/go | 94c4cdc94869454eb25c725c5f4a92ff305ffa3b | 591c4b50c0d8c61087c30261efd5e97668625e06 | runtime: remove GODEBUG=runtimecontentionstacks
Go 1.22 promised to remove the setting in a future release once the
semantics of runtime-internal lock contention matched that of
sync.Mutex. That work is done, remove the setting.
Previously reviewed as https://go.dev/cl/585639.
For #66999
Change-Id: I9fe62558ba0ac12... | [
{
"path": "doc/godebug.md",
"patch": "@@ -169,6 +169,9 @@ Go command will follow symlinks to regular files embedding files.\n The default value `embedfollowsymlinks=0` does not allow following\n symlinks. `embedfollowsymlinks=1` will allow following symlinks.\n \n+Go 1.25 corrected the semantics of contenti... | 2025-04-29T21:39:11 |
vercel/next.js | e506cab3727d48e6a942b7c308a26ec55feb0479 | b8f43dd7ab625e8185f3c9b7219edcfe143fcf2b | Turbopack: Update bundled webpki-roots (#81906)
- It makes sense to update these certs periodically. The long-term solution would be to stop shipping certs once https://github.com/seanmonstar/reqwest/issues/2159 is fixed.
- ~`webpki-roots 0.26.11` is just a dumb re-export of `1.x`, so this avoids shipping the CA roots... | [
{
"path": "Cargo.lock",
"patch": "@@ -11114,9 +11114,9 @@ dependencies = [\n \n [[package]]\n name = \"webpki-roots\"\n-version = \"1.0.0\"\n+version = \"1.0.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cf... | 2025-07-24T01:40:55 |
nodejs/node | 821ffab0f78972d6e63bafa598b0c6d92550072b | 5376e6906edb79a10f12d74b162630b00a1460c8 | test_runner: account for newline in source maps
This commit updates the source mapping logic in the test runner
to account for newline characters that are not included in line
length calculations.
Co-authored-by: Simon Chan <1330321+yume-chan@users.noreply.github.com>
Fixes: https://github.com/nodejs/node/issues/5424... | [
{
"path": "lib/internal/test_runner/coverage.js",
"patch": "@@ -340,8 +340,8 @@ class TestCoverage {\n const { data, lineLengths } = sourceMapCache[url];\n let offset = 0;\n const executedLines = ArrayPrototypeMap(lineLengths, (length, i) => {\n- const coverageLine = new CoverageLin... | 2024-08-21T02:38:55 |
electron/electron | 303b707fbf8ba15c12db9350b91b0a4e0cb90052 | aaae2abf20dfd3d5c6c550f4e131bbbc7dc3a46c | fix: update `chrome.i18n` for Manifest v3 (#39291)
fix: update chrome.i18n for Manifest v3 | [
{
"path": "shell/common/extensions/api/i18n.json",
"patch": "@@ -1,4 +1,4 @@\n-// Copyright (c) 2012 The Chromium Authors. All rights reserved.\n+// Copyright 2012 The Chromium Authors\n // Use of this source code is governed by a BSD-style license that can be\n // found in the LICENSE file.\n \n@@ -18,15 +... | 2023-08-02T09:02:16 |
facebook/react | 74cb1bdfec296af4ac3eda383fb6b5a9324803f3 | c94110c5f3d66838c22bb23e8abfbfd8e58a55b9 | Bump follow-redirects from 1.15.4 to 1.15.6 in /fixtures/ssr (#28571)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.15.4 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/35a517c5861d79dc8bff7db86... | [
{
"path": "fixtures/ssr/yarn.lock",
"patch": "@@ -2771,9 +2771,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.15.4\"\n- resolved \"https://registry.yarnpkg.com/follow-redirects/... | 2024-03-18T15:59:57 |
golang/go | 591c4b50c0d8c61087c30261efd5e97668625e06 | 4d0f955a5e2a7c3310f15983b643ff5bf5fc1351 | runtime: verify attribution of mutex delay
Have the test use the same clock (cputicks) as the profiler, and use the
test's own measurements as hard bounds on the magnitude to expect in the
profile.
Compare the depiction of two users of the same lock: one where the
critical section is fast, one where it is slow. Confi... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -40,6 +40,8 @@ var Atoi32 = atoi32\n var ParseByteCount = parseByteCount\n \n var Nanotime = nanotime\n+var Cputicks = cputicks\n+var CyclesPerSecond = pprof_cyclesPerSecond\n var NetpollBreak = netpollBreak\n var Usleep = usleep\n ",
"additions": 2,
... | 2024-05-16T22:48:36 |
nodejs/node | 5376e6906edb79a10f12d74b162630b00a1460c8 | 68e94c1e75f7807d2d4db6fb75a454f87fedbcdf | module: add sourceURL magic comment hinting generated source
Source map is not necessary in strip-only mode. However, to map the
source file in debuggers to the original TypeScript source, add a
sourceURL magic comment to hint that it is a generated source.
PR-URL: https://github.com/nodejs/node/pull/54402
Reviewed-B... | [
{
"path": "lib/internal/modules/helpers.js",
"patch": "@@ -371,7 +371,10 @@ function stripTypeScriptTypes(source, filename) {\n const base64SourceMap = Buffer.from(map).toString('base64');\n return `${code}\\n\\n//# sourceMappingURL=data:application/json;base64,${base64SourceMap}`;\n }\n- return ... | 2024-08-20T19:45:17 |
vercel/next.js | 56fed4d6b489b9b60cd3b7647b21597f09768be9 | 7a183a0f3f035d4e31bfa66f1c5ab037d56adec2 | Turbopack: Add an option to use system TLS certificates (fixes #79060, fixes #79059) (#81818)
It's common in enterprise environments for employers to MITM all HTTPS traffic on employee machines to enforce network policies or to detect and block malware. For this to work, they install custom CA roots into the system st... | [
{
"path": ".changeset/silent-houses-lay.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'@next/swc': patch\n+---\n+\n+Added an experimental option for using the system CA store for fetching Google Fonts in Turbopack",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "Cargo.lock... | 2025-07-24T01:02:54 |
electron/electron | 0eef6c67d15564b78a9c356955d92dac53ec5cb3 | 1f19a744176a2407d9b970e8946d30e9a6507078 | docs: fix return type for ipcMain handle functions (#39237) | [
{
"path": "docs/api/ipc-main.md",
"patch": "@@ -72,7 +72,7 @@ Removes listeners of the specified `channel`.\n ### `ipcMain.handle(channel, listener)`\n \n * `channel` string\n-* `listener` Function<Promise\\<void> | any>\n+* `listener` Function<Promise\\<any> | any>\n * `event` [IpcMainInv... | 2023-08-01T08:02:20 |
facebook/react | c94110c5f3d66838c22bb23e8abfbfd8e58a55b9 | d79807537b85cb3e58bc6cc4df00b873fe652aa1 | Bump follow-redirects from 1.15.4 to 1.15.6 in /fixtures/concurrent/time-slicing (#28572)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.15.4 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/35a51... | [
{
"path": "fixtures/concurrent/time-slicing/yarn.lock",
"patch": "@@ -3372,9 +3372,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.15.4\"\n- resolved \"https://registry.yarnpkg.c... | 2024-03-18T15:56:04 |
golang/go | 4d0f955a5e2a7c3310f15983b643ff5bf5fc1351 | bce8486ebec8b2f62f2305b2a17cc5aec8202507 | runtime: blame unlocker for mutex delay
Correct how the mutex contention profile reports on runtime-internal
mutex values, to match sync.Mutex's semantics.
Decide at the start of unlock2 whether we'd like to collect a contention
sample. If so: Opt in to a slightly slower unlock path which avoids
accidentally acceptin... | [
{
"path": "src/runtime/lock_spinbit.go",
"patch": "@@ -86,7 +86,8 @@ func key8(p *uintptr) *uint8 {\n // forming a singly-linked list with the mutex's key field pointing to the head\n // of the list.\n type mWaitList struct {\n-\tnext muintptr // next m waiting for lock\n+\tnext muintptr // next m wai... | 2025-04-22T16:21:30 |
vercel/next.js | 7a183a0f3f035d4e31bfa66f1c5ab037d56adec2 | 63dba672268b8ab57e93cac59c64b2b0e6ba597d | Fix: Unresolved param in x-nextjs-rewritten-query (#81991)
Fixes an issue with the x-nextjs-rewritten-query header where it
responded without the dynamic parts of the URL filled in.
For example, when rewriting to `/hello?id=123` to `/hello/123`:
- Before: `x-nextjs-rewritten-query: id=__ESC_COLON_id`
- After: `x-next... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -33,7 +33,6 @@ import { addRequestMeta } from '../../request-meta'\n import {\n compileNonPath,\n matchHas,\n- parseDestination,\n prepareDestination,\n } from '../../../shared/lib/router/utils/prepare-destination'\... | 2025-07-24T00:45:00 |
nodejs/node | ef4bdbfb76b92c2d8ff1febdd925eedd9dd82291 | 561bc87c7607208f0d3db6dcd9231efeb48cfe2f | test_runner: finish build phase before running tests
This commit updates the test runner to wait for suites to finish
building before starting any tests. This is necessary when test
filtering is enabled, as suites may transition from filtered to
not filtered depending on what is inside of them.
Fixes: https://github.... | [
{
"path": "lib/internal/test_runner/harness.js",
"patch": "@@ -1,9 +1,11 @@\n 'use strict';\n const {\n ArrayPrototypeForEach,\n+ ArrayPrototypePush,\n FunctionPrototypeBind,\n PromiseResolve,\n SafeMap,\n+ SafePromiseAllReturnVoid,\n } = primordials;\n const { getCallerLocation } = internalBindin... | 2024-08-20T07:14:01 |
rust-lang/rust | ef8c95cde1a83a12b7e34a71138729e624da86e0 | 7ad4e69ad585d8ff214f7b42d01f1959eda08f40 | privacy: Fix type privacy holes when it doesn't cause too much breakage | [
{
"path": "compiler/rustc_privacy/src/lib.rs",
"patch": "@@ -1590,13 +1590,14 @@ impl<'tcx> PrivateItemsInPublicInterfacesChecker<'_, 'tcx> {\n let mut check = self.check(item.def_id.expect_local(), vis, effective_vis);\n \n let is_assoc_ty = item.is_type();\n- check.hard_error = is_a... | 2026-02-12T14:35:57 |
electron/electron | 1f19a744176a2407d9b970e8946d30e9a6507078 | c8f7a0e0522b0527082a23438da11bf6f148825c | fix: potential crash calling `tray.popUpContextMenu()` (#39231)
fix: potential crash calling tray.popUpContextMenu | [
{
"path": "shell/browser/api/electron_api_tray.cc",
"patch": "@@ -342,7 +342,9 @@ void Tray::PopUpContextMenu(gin::Arguments* args) {\n }\n }\n }\n- tray_icon_->PopUpContextMenu(pos, menu.IsEmpty() ? nullptr : menu->model());\n+\n+ tray_icon_->PopUpContextMenu(\n+ pos, menu.IsEmpty() ? nu... | 2023-08-01T06:07:30 |
facebook/react | d79807537b85cb3e58bc6cc4df00b873fe652aa1 | 4d686a2da138cad9e76c7de9feadd81ca2aa29e5 | Bump follow-redirects from 1.13.0 to 1.15.6 in /fixtures/dom (#28560)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.13.0 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/35a517c5861d79dc8bff7db86... | [
{
"path": "fixtures/dom/yarn.lock",
"patch": "@@ -3366,9 +3366,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.13.0\"\n- resolved \"https://registry.yarnpkg.com/follow-redirects/... | 2024-03-18T15:55:56 |
vercel/next.js | 63dba672268b8ab57e93cac59c64b2b0e6ba597d | 1937a19fb9f342b0f5a4b982b88dff8971a27e38 | Turbopack: update mimalloc (#81993)
### What?
This fixes a bug where memory is not released back to the OS. | [
{
"path": "Cargo.lock",
"patch": "@@ -3655,9 +3655,9 @@ dependencies = [\n \n [[package]]\n name = \"libmimalloc-sys\"\n-version = \"0.1.38\"\n+version = \"0.1.43\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0e7bb23d733dfcc8af652a78b7bf232f0e967710d044732185e561e47c0... | 2025-07-24T00:23:21 |
golang/go | 86101b083ad14bb0c6ca9c55d2869cba57760046 | ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d | runtime: print stack traces for bubbled goroutines on synctest deadlock
When synctest.Run panics due to every goroutine in the bubble being
blocked, print a stack trace for every goroutine in the bubble.
For #67434
Change-Id: Ie751c2ee6fa136930b18f4bee0277ff30da46905
Reviewed-on: https://go-review.googlesource.com/c... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1272,7 +1272,7 @@ func fatalthrow(t throwType) {\n \n \t\tstartpanic_m()\n \n-\t\tif dopanic_m(gp, pc, sp) {\n+\t\tif dopanic_m(gp, pc, sp, nil) {\n \t\t\t// crash uses a decent amount of nosplit stack and we're already\n \t\t\t// low on stack in throw, so cra... | 2025-02-21T18:55:32 |
rust-lang/rust | eb6bbfa830e94c9f8ba57a8a5b5367631d2dcbee | 736af97d6c4b2d94d5a1189bbd9d330080571a42 | examples: Fix rustfmt formatting in gaussian.rs | [
{
"path": "library/stdarch/examples/gaussian.rs",
"patch": "@@ -274,7 +274,8 @@ fn main() {\n for (i, &expected) in expected_ref_row2.iter().enumerate() {\n let actual = dst_ref[2 * WIDTH + 1 + i];\n assert_eq!(\n- actual, expected,\n+ actual,\n+... | 2026-02-12T13:47:01 |
nodejs/node | b246f225549625e49534492e99921b5d33748573 | 4f943976508713aafc9acbfc52f11a219f9d847e | src: update compile cache storage structure
This refactors the compile cache handler in preparation for the
JS API, and updates the compile cache storage structure into:
- $NODE_COMPILE_CACHE_DIR
- $NODE_VERION-$ARCH-$CACHE_DATA_VERSION_TAG-$UID
- $FILENAME_AND_MODULE_TYPE_HASH.cache
This also adds a magic num... | [
{
"path": "src/compile_cache.cc",
"patch": "@@ -1,4 +1,5 @@\n #include \"compile_cache.h\"\n+#include <string>\n #include \"debug_utils-inl.h\"\n #include \"env-inl.h\"\n #include \"node_file.h\"\n@@ -27,15 +28,19 @@ uint32_t GetHash(const char* data, size_t size) {\n return crc32(crc, reinterpret_cast<co... | 2024-08-19T11:54:36 |
electron/electron | c8f7a0e0522b0527082a23438da11bf6f148825c | b2c62d6ad1fb0745544a20c85abef312c7196d14 | fix: Chrome Extensions service worker host registration (#39290) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -162,6 +162,7 @@\n #include \"extensions/browser/guest_view/mime_handler_view/mime_handler_view_guest.h\"\n #include \"extensions/browser/process_manager.h\"\n #include \"extensions/browser/process_map.h\"\n+#include \"extensions/browser/ser... | 2023-08-01T06:04:38 |
facebook/react | 45d56071b8ce1dbccf1765acf3867263fe3e595b | 38327309a4172a52cf94e8e264990bedafc1df6e | Bump follow-redirects from 1.15.4 to 1.15.6 (#28573)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.15.4 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/35a517c5861d79dc8bff7db8626013d20b711b06">... | [
{
"path": "yarn.lock",
"patch": "@@ -6997,7 +6997,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -7977,9 +7976,9 @@ fluent-syntax@0.13.0:\n integrity ... | 2024-03-18T15:49:53 |
golang/go | ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d | 17789bc8771ad2d36e374df65262c4ffd81c97c5 | runtime: improve Error documentation
The current Error documentation is vacuous and doesn't say anything
about what this interface is actually for. Expand to include its meaning
and why it might be used.
Change-Id: I6a6a636cbd5f5788cb9d1a88845de16b98f7424b
Reviewed-on: https://go-review.googlesource.com/c/go/+/670635... | [
{
"path": "src/runtime/error.go",
"patch": "@@ -10,14 +10,24 @@ import (\n \t\"internal/runtime/sys\"\n )\n \n-// The Error interface identifies a run time error.\n+// Error identifies a runtime error used in panic.\n+//\n+// The Go runtime triggers panics for a variety of cases, as described by the\n+// Go... | 2025-05-07T18:00:37 |
vercel/next.js | 08ee5f678fe57860ad02afc8e349200ecf6be958 | d5f6c11ab0f85fdc0acf78fcdb3459ee945c0ad0 | Fix dynamicParams false layout case in dev (#81990)
This ensures we don't consider a path as ISR in development when it will
be dynamic during a build due to no `generateStaticParams` being fully
generated for a path.
Fixes: https://github.com/vercel/next.js/issues/81976
Closes: NEXT-4650 | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -1240,7 +1240,7 @@ export async function handler(\n }\n } catch (err) {\n // if we aren't wrapped by base-server handle here\n- if (!activeSpan) {\n+ if (!activeSpan && !(err instanceof NoFallbackError)) {\n await ... | 2025-07-23T21:36:43 |
nodejs/node | 18f455b50f0d28fbb75eaa1f356956e7b086a4f1 | 9e83853294321e792cafdcd8384f1bf4c95610c9 | doc: fix error description of the max header size
PR-URL: https://github.com/nodejs/node/pull/54125
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -3189,7 +3189,7 @@ changes:\n -->\n \n Too much HTTP header data was received. In order to protect against malicious or\n-malconfigured clients, if more than 8 KiB of HTTP header data is received then\n+malconfigured clients, if more than `maxHeaderSize` of HTTP h... | 2024-08-18T13:09:11 |
rust-lang/rust | 7a2f2fe754ada6d7d93e3a19bb171c3244ea2ee6 | 1eddc1798998c9faed8725d249640ff7c63548ab | fix tidy | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -279,8 +279,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n let is_shadowed = self.infcx.probe(|_| {\n let impl_substs = self.infcx.fresh_args_for_item(DUMMY_SP, impl_def_id);\n- ... | 2026-02-12T12:20:36 |
electron/electron | b2c62d6ad1fb0745544a20c85abef312c7196d14 | cfc0826b65a4be795daa59c74e76cd2e6b22f45f | fix: initial dark mode title bar on Windows 10 (#39287) | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -8,6 +8,7 @@\n #include \"electron/buildflags/buildflags.h\"\n #include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"shell/browser/win/dark_mode.h\"\n+#include \"third_party/abseil-cpp/absl/types/optional.h\"... | 2023-08-01T05:02:23 |
facebook/react | b09e102ff1e2aaaf5eb6585b04609ac7ff54a5c8 | 1293047d6063f3508af15e68cca916660ded791e | [Fizz] Prevent uncloned large precomputed chunks without relying on render-time assertions (#28568)
A while back we implemented a heuristic that if a chunk was large it was
assumed to be produced by the render and thus was safe to stream which
results in transferring the underlying object memory. Later we ran into
... | [
{
"path": "packages/react-dom-bindings/src/server/ReactDOMLegacyServerStreamConfig.js",
"patch": "@@ -58,12 +58,6 @@ export function typedArrayToBinaryChunk(\n throw new Error('Not implemented.');\n }\n \n-export function clonePrecomputedChunk(\n- chunk: PrecomputedChunk,\n-): PrecomputedChunk {\n- retu... | 2024-03-16T19:39:37 |
golang/go | 0028532118eed355d0ac6337c63b01219cdc4c17 | 6681ff9c9e7805fab9e0dcb767f4807af03dbbbd | unique: use a bespoke canonicalization map and runtime.AddCleanup
This change moves the unique package away from using a concurrent map
and instead toward a bespoke concurrent canonicalization map. The map
holds all its keys weakly, though keys may be looked up by value. The
result is the strong pointer for the canoni... | [
{
"path": "src/runtime/mfinal.go",
"patch": "@@ -324,7 +324,7 @@ func isGoPointerWithoutSpan(p unsafe.Pointer) bool {\n // blockUntilEmptyFinalizerQueue blocks until either the finalizer\n // queue is emptied (and the finalizers have executed) or the timeout\n // is reached. Returns true if the finalizer qu... | 2025-02-18T03:19:06 |
rust-lang/rust | 1eddc1798998c9faed8725d249640ff7c63548ab | 6b3c42592e0aa3dd748d40b5268b772b24b0e27a | fix GATs logic | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -58,6 +58,7 @@ use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit::Visitor;\n use rustc_hir::lang_items::LangItem;\n use rustc_hir::{self as hir};\n+use rustc_infer::infer::DefineOpaqueTypes;\n use rustc_macros:... | 2026-02-12T12:10:08 |
vercel/next.js | d5f6c11ab0f85fdc0acf78fcdb3459ee945c0ad0 | 3fe3fb79d6efb69d227fef8d0576ec753112cf10 | [docs] fix rewrites example wording (#81985)
This PR fixes a small grammatical error in the Next.js rewrites
documentation.
<!-- 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 r... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/rewrites.mdx",
"patch": "@@ -34,7 +34,7 @@ module.exports = {\n }\n ```\n \n-Rewrites are applied to client-side routing, a `<Link href=\"/about\">` will have the rewrite applied in the above example.\n+Rewrites are applied to client-side r... | 2025-07-23T20:51:11 |
nodejs/node | 415bc750a5e1409cc687e3a220fb1563a6900bad | 28f3e5c9d13e7435fbccc19d30fcda3f052a28f3 | deps: V8: cherry-pick 35888fee7bba
Original commit message:
[base] fix builds with GCC 12 on certain Linux distributions
With GCC 12 on certain Linux distributions (at least Debian 12,
Alpine 3.18, Fedora 37, that ships GCC 12.2),
std::is_trivially_copyable is broken
and as a result, V8 fails to ... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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 ... | 2024-07-25T10:08:09 |
electron/electron | cfc0826b65a4be795daa59c74e76cd2e6b22f45f | 8e5bb4949b5e978feb804450bc5ea0a4eb29e6d4 | chore: bump chromium to 117.0.5913.0 (main) (#39172)
* chore: bump chromium in DEPS to 117.0.5899.0
* 4686653: webui: Filter out non-chrome scheme URLs in WebUIConfigMap
https://chromium-review.googlesource.com/c/chromium/src/+/4686653
* 4696355: Remove deprecated version of base::CommandLine::CopySwitchesFro... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5897.0',\n+ '117.0.5911.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2023-07-31T17:47:32 |
facebook/react | 1293047d6063f3508af15e68cca916660ded791e | 4d85c666a3e0c433453a73bdb78ee9cbdfb3fc82 | Fix log assertion in cancels tasks in Scheduler-test (#28562) | [
{
"path": "packages/scheduler/src/__tests__/Scheduler-test.js",
"patch": "@@ -247,7 +247,8 @@ describe('SchedulerBrowser', () => {\n });\n runtime.assertLog(['Post Message']);\n cancelCallback(task);\n- runtime.assertLog([]);\n+ runtime.fireMessageEvent();\n+ runtime.assertLog(['Message... | 2024-03-15T20:21:46 |
rust-lang/rust | ba0e1c949729c14fa495c49747b9eea54c234eb4 | 6f406161488b9656ab8bd8f35fa8ce6f3c2c8b95 | Address review comments: fix span and add run-rustfix
- Change error span to start from 'const' keyword instead of binop RHS
- Add decl_lo parameter to missing_semi_from_binop() for better spans
- Add run-rustfix directive to test file
- Simplify test to focus on const item recovery cases | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -6,9 +6,7 @@ use rustc_ast::ast::*;\n use rustc_ast::token::{self, Delimiter, InvisibleOrigin, MetaVarKind, TokenKind};\n use rustc_ast::tokenstream::{DelimSpan, TokenStream, TokenTree};\n use rustc_ast::util::case::Case;\n-use rustc_ast::{\n... | 2026-02-01T03:45:12 |
vercel/next.js | b54282280e6e551334703e7a0ca7523b76f3bc81 | ae2d1099eafbde1091ef77750897cc025f790716 | Turbopack: fix scope hoisting variable renaming bug (#81640) | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -2062,7 +2062,7 @@ fn hygiene_rename_only(\n }\n // Copied from `hygiene_with_config`'s HygieneRenamer, but added an `preserved_exports`\n impl swc_core::ecma::transforms::base::rename::Renamer for HygieneRenamer<'_> {\n-... | 2025-07-23T15:32:19 |
nodejs/node | 28f3e5c9d13e7435fbccc19d30fcda3f052a28f3 | a41c381cded954f453e23fea36f5907fb0a65ebd | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-08T04:53:41 |
electron/electron | 8e5bb4949b5e978feb804450bc5ea0a4eb29e6d4 | 724f90a2a72c5e3f68b75d24c7584820f0757660 | fix: skip artifact validation for doc-only PRs (#39296) | [
{
"path": "appveyor-woa.yml",
"patch": "@@ -74,8 +74,10 @@ for:\n - ps: |\n node script/yarn.js install --frozen-lockfile\n node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER\n+ $env:SHOULD_SKIP_ARTIFACT_VALIDATION = \"false\"\n if ($LAST... | 2023-07-31T13:59:51 |
facebook/react | 9372c63116fc1e855c51d93d83f5150661371ec3 | a870b2d5494351d75b68c3d9baf03a52fd40a8ef | Revert rollout state of enableCache in React Native to next major only (#28565)
## Summary
We're working on enabling the use of microtasks in React Native by
default when using the new architecture. To enable this we need to
synchronize the RN renderers from React, but doing this causes an error
because the rend... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-oss.js",
"patch": "@@ -10,6 +10,13 @@\n import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags';\n import typeof * as ExportsType from './ReactFeatureFlags.native-oss';\n \n+// -------------------------------------------------------------... | 2024-03-15T18:02:46 |
rust-lang/rust | 6f406161488b9656ab8bd8f35fa8ce6f3c2c8b95 | 6d0e077d138c3c499a51da17b8d7bdc8b1dbdcda | remove mismatched errors when recovered | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -2723,9 +2723,17 @@ impl<'a> Parser<'a> {\n } else if self.check(exp!(OpenBrace)) || self.token.is_metavar_block() {\n let prev_in_fn_body = self.in_fn_body;\n self.in_fn_body = true;\n- let res = se... | 2026-01-19T07:43:03 |
vercel/next.js | 5ed2b9840a882dc05877325d51458869a8a372c0 | e414623cc0d01e4f7dc8f540c5089c1dd3571308 | fix(Turbopack): Remove the duplicate SlowFilesystem warning (#81972)
<!-- 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:
##... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -568,14 +568,6 @@ async fn benchmark_file_io(\n \n let duration = Instant::now().duration_since(start);\n if duration > SLOW_FILESYSTEM_THRESHOLD {\n- println!(\n- \"Slow filesystem detected. The benchmark took {}ms. If ... | 2025-07-23T13:58:49 |
nodejs/node | a41c381cded954f453e23fea36f5907fb0a65ebd | 16c9348e6089238cf266aa2dedf678a7729687a4 | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
electron/electron | 724f90a2a72c5e3f68b75d24c7584820f0757660 | 68701c4c3c158e30d26738629ffabeffa404ad96 | refactor: throw errors directly in async functions (#39233) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -211,28 +211,28 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.landscape !== undefined) {\n if (typeof options.landscape !== 'boolean') {\n- return Promise.reject(new Error('landscape must be a Boolean'))... | 2023-07-31T08:39:37 |
vercel/next.js | e414623cc0d01e4f7dc8f540c5089c1dd3571308 | 4cf2da98ba5f9d997088b90c18a248354024871b | Bump to swc_sourcemap 9.3.3 (#81971)
Pull in https://github.com/swc-project/swc-sourcemap/pull/4 to fix source maps | [
{
"path": "Cargo.lock",
"patch": "@@ -8241,9 +8241,9 @@ dependencies = [\n \n [[package]]\n name = \"swc_sourcemap\"\n-version = \"9.3.2\"\n+version = \"9.3.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"9755c673c6a83c461e98fa018f681adb8394a3f44f89a06f27e80fd4fe4fa1e... | 2025-07-23T13:49:53 |
golang/go | 66ea0ee409df5a025296d7dac8bb3dc1ec0d2b90 | d365f2266df98985f19705717ff8cf4ad3e743dc | spec: avoid use of "raise" in conjunction with panics
For #73526
Change-Id: I06d8ae9080695745db68a51635faa0b244c1760e
Reviewed-on: https://go-review.googlesource.com/c/go/+/670155
Reviewed-by: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
R... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -7894,7 +7894,7 @@ <h3 id=\"Handling_panics\">Handling panics</h3>\n <p>\n The <code>protect</code> function in the example below invokes\n the function argument <code>g</code> and protects callers from\n-run-time panics raised by <code>g</code>.\n+run-time panics ... | 2025-05-05T20:39:11 |
nodejs/node | 16c9348e6089238cf266aa2dedf678a7729687a4 | dc4e702a45719d9728ef1f16e4e24c5b56a73bdf | deps: V8: revert CL 5331688
On Windows debug builds, it is not allowed to dereference empty
iterators.
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/5331688
PR-URL: https://github.com/nodejs/node/pull/52465
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotm... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-04-21T12:06:27 |
rust-lang/rust | 0cbe1cc992f712704abdcbbcb35db431ab181bbc | 590c1c9966caea982b0e6d946dd7637b8c08f0a3 | try to work around rustdoc bug, and other rustdoc adjustments | [
{
"path": "library/core/src/num/nonzero.rs",
"patch": "@@ -31,7 +31,7 @@ use crate::{fmt, intrinsics, ptr, ub_checks};\n issue = \"none\"\n )]\n pub unsafe trait ZeroablePrimitive: Sized + Copy + private::Sealed {\n- #[doc(hidden)]\n+ /// A type like `Self` but with a niche that includes zero.\n ... | 2026-01-21T07:49:25 |
electron/electron | 2b283724ce689a680b20c9b922384bec854415f6 | 6df392162f1d29155e6d8d6f755de7e48c18e709 | docs: fix some string union type (#39258)
* docs: fix some string union types
Improve Type Union Typings in the Docs
* test: add smoke tests
* test: update `ses.clearStorageData` test case
* test: update `ses.clearStorageData` test case
---------
Co-authored-by: mhli <mhli@hillinsight.com> | [
{
"path": "docs/api/desktop-capturer.md",
"patch": "@@ -91,7 +91,7 @@ The `desktopCapturer` module has the following methods:\n \n * `options` Object\n * `types` string[] - An array of strings that lists the types of desktop sources\n- to be captured, available types are `screen` and `window`.\n+ to... | 2023-07-31T08:32:59 |
vercel/next.js | ac6ec259988405f4b1411779e5b11a81879e4091 | 9672bdc4a724c31b493d98e57122c90d50a66b7e | Turbopack: Use workaround for rustc miscompilation bug on macos intel (#81950)
Uses https://github.com/hyperium/hyper/pull/3908 cherry-picked on top of
hyper v1.6.0 to work around
https://github.com/hyperium/hyper/issues/3902 and
https://github.com/rust-lang/rust/issues/140686
- Git Branch:
https://github.com/bgw/hyp... | [
{
"path": "Cargo.lock",
"patch": "@@ -2809,8 +2809,7 @@ dependencies = [\n [[package]]\n name = \"hyper\"\n version = \"1.6.0\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80\"\n+source = \"git+https://gith... | 2025-07-22T22:52:17 |
golang/go | d365f2266df98985f19705717ff8cf4ad3e743dc | 92e23b683f01fe581a0e14b5658f0c59d9ce0d38 | runtime: replace mentions of "raised" with "panicked"
Fixes #73526
Change-Id: I4b801cf3e54b99559e6d5ca8fdb2fd0692a0d3a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/669975
TryBot-Bypass: Mark Freeman <mark@golang.org>
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Mark Freeman <mark@golang.org>... | [
{
"path": "doc/next/4-runtime.md",
"patch": "@@ -3,19 +3,19 @@\n <!-- go.dev/issue/71517 -->\n \n The message printed when a program exits due to an unhandled panic\n-that was recovered and re-raised no longer repeats the text of\n+that was recovered and repanicked no longer repeats the text of\n the panic ... | 2025-05-05T16:33:46 |
nodejs/node | ed029bded7cb31a19c8a369ee9058705feab2f85 | e600de93cf443f057bd6d1135d1768ba5a39d110 | deps: avoid compilation error with ASan
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=14221
PR-URL: https://github.com/nodejs/node/pull/49639
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-07-31T09:51:27 |
rust-lang/rust | caf7cdf55895eeacc8b8efca54bdd28c0ebdd3a8 | 605f49b27444a738ea4032cb77e3bdc4eb811bab | Improve code suggestion for incorrect macro_rules! usage | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -534,7 +534,7 @@ impl<'a> Parser<'a> {\n match self.parse_delim_args() {\n // `( .. )` or `[ .. ]` (followed by `;`), or `{ .. }`.\n Ok(args) => {\n- self.eat_semi_for_macro_if_needed(&args);\n+ ... | 2026-01-31T06:36:07 |
electron/electron | 6df392162f1d29155e6d8d6f755de7e48c18e709 | c9bae5da8ef280e310d4c1d03ee94a169c704357 | fix: `pageVisibility` state when `backgroundThrottling` disabled (#39223)
fix: pageVisibility state when backgroundThrottling disabled | [
{
"path": "patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch",
"patch": "@@ -33,6 +33,21 @@ index 180abdc9f983887c83fd9d4a596472222e9ab472..00842717a7570561ee9e3eca11190ab5\n void SendWebPreferencesToRenderer();\n void SendRendererPreferencesToRenderer(\n const bl... | 2023-07-28T08:48:25 |
vercel/next.js | 22d0b54d4cc6b7ec0fd5e9f785049d5c32431d09 | b50c15e0b0cca101d97b086a48693ac708c956a8 | Turbopack: Update notify-rs crate, remove workaround for fixed bug (#81909)
8.0.0 had a bug that was fixed in 8.1.0 that required a workaround for error codes: https://github.com/notify-rs/notify/issues/685
Tested on Linux with
```
rm -rf /tmp/fuzz && RUST_BACKTRACE=1 cargo run --release -p turbo-tasks-fuzz -- fs-wa... | [
{
"path": "Cargo.lock",
"patch": "@@ -3454,9 +3454,9 @@ dependencies = [\n \n [[package]]\n name = \"kqueue\"\n-version = \"1.0.8\"\n+version = \"1.1.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c\"\n+c... | 2025-07-22T19:59:15 |
nodejs/node | e600de93cf443f057bd6d1135d1768ba5a39d110 | cc36db7c06a16d2e9ae34b94f2e0d4d0c39a4168 | deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't
tear down V8 correctly.
Disable it while we work on a solution.
Refs: https://github.com/nodejs/node/issues/47297
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,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.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
rust-lang/rust | ab08cc9950bae44f119f97cef2d760ffcf0d16c7 | 9e1e35d779aa4de0892a6f9511e065df3858cb63 | Fix rustfmt
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/items.rs",
"patch": "@@ -319,12 +319,13 @@ impl<'a> FnSig<'a> {\n method_sig: &'a ast::FnSig,\n generics: &'a ast::Generics,\n visibility: &'a ast::Visibility,\n+ defaultness: ast::Defaultness,\n ) -> FnSig<'a> {\n FnSig {\n safety: metho... | 2026-01-28T14:12:13 |
golang/go | 92e23b683f01fe581a0e14b5658f0c59d9ce0d38 | 30b2b767d6d902787b90476fd00eee4c9b3a3f15 | os: avoid escape from Root via paths ending in ../
The doInRoot function operates on a path split into components.
The final path component retained any trailing path separator
characters, to permit operations in a Root to retain the
trailing-separator behavior of non-Root operations. However,
doInRoot failed to take ... | [
{
"path": "src/os/root.go",
"patch": "@@ -254,20 +254,20 @@ func (r *Root) logStat(name string) {\n //\n // \".\" components are removed, except in the last component.\n //\n-// Path separators following the last component are preserved.\n-func splitPathInRoot(s string, prefix, suffix []string) (_ []string,... | 2025-04-16T18:01:19 |
facebook/react | 9ffe9102ffd08ca7a56c60aa6952208890d213ce | bbc571aee431d44799ae6a70832ea834325a5af9 | Fix a spelling mistake. (#28555) | [
{
"path": "packages/react-reconciler/src/ReactChildFiber.js",
"patch": "@@ -58,7 +58,7 @@ import {isCompatibleFamilyForHotReloading} from './ReactFiberHotReloading';\n import {getIsHydrating} from './ReactFiberHydrationContext';\n import {pushTreeFork} from './ReactFiberTreeContext';\n import {createThenabl... | 2024-03-14T14:04:44 |
vercel/next.js | 4b27fb7bec79ba42df63682887fbcb00c6689422 | 0c0dc4865ef8a9923ed1b94a2bc5e91d92d625f5 | Fix an issue in how css references are collected under `next build --turbopack` (#81704)
## Fix how client references are discovered during `next build --turbopack`
To correctly serve js and css resources during server side rendering we construct a client manifest that lists all the server components and their requ... | [
{
"path": "Cargo.lock",
"patch": "@@ -4262,6 +4262,7 @@ dependencies = [\n \"indexmap 2.9.0\",\n \"next-core\",\n \"regex\",\n+ \"roaring\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_json\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.toml",
... | 2025-07-22T17:30:28 |
electron/electron | 8dea7838058dae356a664be01285b46bc641c8d1 | 695fcf3cb265aa2b635e9bfdad4e0affe527c917 | fix: do not resolve electron entrypoints on disk (#39247) | [
{
"path": "patches/node/.patches",
"patch": "@@ -37,3 +37,4 @@ chore_remove_--no-harmony-atomics_related_code.patch\n fix_account_for_createexternalizablestring_v8_global.patch\n fix_wunreachable-code_warning_in_ares_init_rand_engine.patch\n fix_-wshadow_warning.patch\n+fix_do_not_resolve_electron_entrypoin... | 2023-07-27T05:10:58 |
rust-lang/rust | ae2d679bdd62227f6eaad47c37022221226e70ad | 99e47220fcf7135b052f4ceaf36b217030074127 | Fix clippy ast utils
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "clippy_utils/src/ast_utils/mod.rs",
"patch": "@@ -819,7 +819,9 @@ pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {\n pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {\n matches!(\n (l, r),\n- (Defaultness::Final, Defaultness::Final) | (Defaultne... | 2026-01-28T14:45:25 |
golang/go | 5e7f0b947c3907bd23a13864c3fea2b204f11567 | 044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f | go/types, types2: set up recording of positions for declarations
This creates the infrastructure needed to record compiler panics
induced somewhere beneath a declaration. For now, this is turned
off via a flag.
This does not yet use the position information for better error
messages. That is moved off to a separate C... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -20,6 +20,9 @@ var nopos syntax.Pos\n // debugging/development support\n const debug = false // leave on during development\n \n+// position tracing for panics during type checking\n+const tracePos = false // TODO(markfreeman): check perform... | 2025-04-10T15:27:29 |
facebook/react | d5e2d9f8d594f81693b24d0472b5109388cdbd0c | bf64a826a4881d9ee25500e7cdab416797e12aab | Handle fbt:param with only leading or trailing whitespace
Fixes T180504437. We expected `<fbt:param>` to always have no surrounding
whitespace or have both leading and trailing whitespace, it can have one but not
the other, though such cases are rare in practice. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -1495,23 +1495,15 @@ function codegenInstructionValue(\n tagValue.type === \"StringLiteral\" &&\n SINGLE_CHILD_FBT_TAGS.has(tagValue.value)\n ) {\n- CompilerError.... | 2024-03-13T21:54:39 |
vercel/next.js | 4699f8416eb33b285399369b4001e8b019e80201 | ae6604994c3ec6587036d949e046b1fe52e9e8a4 | [test] Add dedicated test for error when client functions are called from server components (#81930)
We have a more specific one for `use cache`. This is the counterpart for the default environment. | [
{
"path": "test/development/app-dir/source-mapping/app/server-client/client.js",
"patch": "@@ -0,0 +1,5 @@\n+'use client'\n+\n+export function useClient() {\n+ return 'client function'\n+}",
"additions": 5,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/development/app-dir/... | 2025-07-22T16:07:41 |
electron/electron | 695fcf3cb265aa2b635e9bfdad4e0affe527c917 | fa5b1be6f3d6631c0404097b69ea81b4a1eab7f7 | fix: reparenting after `BrowserWindow.destroy()` (#39062)
fix: reparenting after BrowserWindow.destroy() | [
{
"path": "shell/browser/native_window.h",
"patch": "@@ -149,6 +149,7 @@ class NativeWindow : public base::SupportsUserData,\n virtual std::string GetAlwaysOnTopLevel() = 0;\n virtual void SetActive(bool is_key) = 0;\n virtual bool IsActive() const = 0;\n+ virtual void RemoveChildFromParentWindow() =... | 2023-07-26T14:47:32 |
rust-lang/rust | 2e0ff1fb1eaf7405ff19c544bf296a8e59c595ae | f0a019bf9036fa9f14e7cee662d2c01dcbc6f6d2 | Fix clippy ast utils
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/tools/clippy/clippy_utils/src/ast_utils/mod.rs",
"patch": "@@ -819,7 +819,9 @@ pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {\n pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {\n matches!(\n (l, r),\n- (Defaultness::Final, Defaultness::Fi... | 2026-01-28T14:45:25 |
golang/go | 044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f | 35b4fd9f373cbe13778eb259a19c496c9c613a1f | log/slog: export Source method in Record for custom handler support
Currently, the `source` method in `slog.Record` is not accessible to
custom handlers, requiring developers to re-implement logic for
retrieving source location information. This commit exports the `source`
method as `Source`, enabling consistent acces... | [
{
"path": "api/next/70280.txt",
"patch": "@@ -0,0 +1 @@\n+pkg log/slog, method (Record) Source() *Source #70280",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/log/slog/70280.md",
"patch": "@@ -0,0 +1 @@\n+[Record] now has a Source(... | 2025-05-04T04:30:25 |
vercel/next.js | ae6604994c3ec6587036d949e046b1fe52e9e8a4 | 1e5888b210c25d1d36e007dde8d21a99b927c4cf | [router-act] Fixes related to segment inlining (#81896)
While working on a feature called segment inlining, I had to make some
changes to the internal `act` function we use for testing the Next.js
client.
Descriptions are given in each commit message. | [
{
"path": "test/e2e/app-dir/segment-cache/router-act.ts",
"patch": "@@ -8,7 +8,8 @@ type Batch = {\n }\n \n type PendingRSCRequest = {\n- route: Playwright.Route\n+ url: string\n+ route: Playwright.Route | null\n result: Promise<{\n text: string\n body: any\n@@ -153,6 +154,7 @@ export function ... | 2025-07-22T15:13:48 |
facebook/react | d5eca2ed8584fd9cbb75403b34741c0f058db395 | ec3d36b865afa296e92e392618cf06bf2d717092 | Repro for scope with no declarations (already fixed on this stack)
Repro from T180504728 which reproduced internally and on playground, neither of
which have #2687 yet. That PR (earlier in this stack) already fixes the issue,
so i'm just adding the repro to help prevent regressions. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -504,7 +504,7 @@ function codegenReactiveScope(\n if (testCondition === null) {\n CompilerError.invariant(firstOutputIndex !== null, {\n reason: `Expected scope to have at least on... | 2024-03-15T15:26:43 |
electron/electron | fa5b1be6f3d6631c0404097b69ea81b4a1eab7f7 | 38c3d8df2970821f582d7adc6c3ecd400ef265df | fix: delete desktop capturers when they're not needed (#39194)
* fix: delete desktop capturers when they're not needed
Delete desktop capturer objects by resetting the DesktopMediaList
objects that own them after the sources have been collected. Capturers
that are not delegated are already being reset via a patch... | [
{
"path": "patches/webrtc/.patches",
"patch": "@@ -1 +1,2 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n+fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "patches/webrtc/fix_mark_pipewire_capture... | 2023-07-26T08:40:19 |
rust-lang/rust | f0e1c8f416f45225db02355fb4969c6e3ade9ddb | 3572d482a0ddd0b5bd91deb18e618ff254dee3cb | Fix rustfmt
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/tools/rustfmt/src/items.rs",
"patch": "@@ -319,12 +319,13 @@ impl<'a> FnSig<'a> {\n method_sig: &'a ast::FnSig,\n generics: &'a ast::Generics,\n visibility: &'a ast::Visibility,\n+ defaultness: ast::Defaultness,\n ) -> FnSig<'a> {\n FnSig {\n ... | 2026-01-28T14:12:13 |
nodejs/node | e020dd8610978f752ff014b3d5558a3fadee69c9 | fd76646e74cc33ec7d09c39d23db7b83939cf3f3 | doc: correct peformance entry types
Fixes: https://github.com/nodejs/node/issues/54212
Fixes: https://github.com/nodejs/node/issues/50290
PR-URL: https://github.com/nodejs/node/pull/54263
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Trivikram Kamat ... | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -509,13 +509,16 @@ changes:\n \n The type of the performance entry. It may be one of:\n \n-* `'node'` (Node.js only)\n-* `'mark'` (available on the Web)\n-* `'measure'` (available on the Web)\n-* `'gc'` (Node.js only)\n+* `'dns'` (Node.js only)\n * `'function'... | 2024-08-15T11:11:08 |
golang/go | fa2bb342d7b0024440d996c2d6d6778b7a5e0247 | 6729fbe93e535080e9e050b3ca0a80ab407dbacc | Revert "cmd/compile: allow all of the preamble to be preemptible"
This reverts commits
3f3782feed6e0726ddb08afd32dad7d94fbb38c6 (CL 648518)
b386b628521780c048af14a148f373c84e687b26 (CL 668475)
Fixes #73542
Change-Id: I218851c5c0b62700281feb0b3f82b6b9b97b910d
Reviewed-on: https://go-review.googlesource.com/c/go/+/67... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -703,6 +703,12 @@ func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \tp.To.Type = obj.TYPE_REG\n \tp.To.Reg = REG_R1\n \n+\t// Mark the stack bound check and morestack call async nonpreemptible.\n+\t// If we get preempted here, ... | 2025-05-05T17:51:52 |
vercel/next.js | 0fb4a6d4a749723fd644829b92ad750228737d41 | a21b68ab13c21b9669e5d8f1bc911a24ff0f02a2 | fix: logging the correct process for listened port (#81903) | [
{
"path": "packages/next/src/server/lib/start-server.ts",
"patch": "@@ -58,13 +58,14 @@ async function getProcessIdUsingPort(port: number): Promise<string | null> {\n // Use lsof on Unix-like systems (macOS, Linux)\n if (process.platform !== 'win32') {\n exec(\n- `lsof -ti:${por... | 2025-07-22T11:32:50 |
facebook/react | 1b5ae0638ee36b7f68a89641f6808c1afc9b217e | f7ca10a0c7085002076bf85a24a9a4b07598e5f7 | Fix block scoping of declarations with early return
I addressed some of the cases that lead to this invariant but there were still
more. In this case, we have scopes like this:
```
scope @1 declarations=[t$0] {
let t$0 = ArrayExpression []
if (...) {
return null;
}
}
scope @2 deps=[t$0] declarations=... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -307,13 +307,6 @@ function* runWithEnvironment(\n value: reactiveFunction,\n });\n \n- propagateEarlyReturns(reactiveFunction);\n- yield log({\n- kind: \"reactive\",\n- name: \"PropagateEarlyReturn... | 2024-03-14T04:29:58 |
electron/electron | 38c3d8df2970821f582d7adc6c3ecd400ef265df | 12548294c0b2639d34c05c544f56545004efee01 | fix: traffic lights not working when child windows are restored via parent window (#39225) | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window_delegate.h",
"patch": "@@ -23,6 +23,10 @@ class NativeWindowMac;\n int level_;\n bool is_resizable_;\n \n+ // Whether the window is currently minimized. Used to work\n+ // around a macOS bug with child window minimization.\n+ bool is_minimized_;\n+... | 2023-07-26T08:10:34 |
nodejs/node | fd76646e74cc33ec7d09c39d23db7b83939cf3f3 | ccf05ef751f51b8b0b3113f16bcc58397a643be8 | doc: fix typo in method name in the sea doc
PR-URL: https://github.com/nodejs/node/pull/54027
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewe... | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -343,7 +343,7 @@ This method can be used to retrieve the assets configured to be bundled into the\n single-executable application at build time.\n An error is thrown when no matching asset can be found.\n \n-Unlike `sea.getRawAsset()` or `s... | 2024-08-15T11:11:01 |
golang/go | 6953ef86cd72a835d398319c4da560c8b78ba28e | 8ec555931dc65f1cd0e7cf28d771615d8064a8ad | net,os: support converting between *os.File and net.Conn on Windows
The runtime poller and os.NewFile recently gained support for
disassociating the handle from the runtime poller IOCP (see CL 664455).
This was the main blocker for allowing the conversion between *os.File
and net.Conn.
Implementing the conversion is ... | [
{
"path": "doc/next/6-stdlib/99-minor/net/10350.md",
"patch": "@@ -0,0 +1,3 @@\n+On Windows, the [TCPConn.File], [UDPConn.File], [UnixConn.File],\n+[IPConn.File], [TCPListener.File], and [UnixListener.File]\n+methods are now supported.\n\\ No newline at end of file",
"additions": 3,
"deletions": 0,
... | 2025-04-25T12:11:31 |
vercel/next.js | a21b68ab13c21b9669e5d8f1bc911a24ff0f02a2 | 4e96d7d1ad8e64182d623f3c0c5e7c0feb1a614f | fix: support calling onClose multiple times in edge-ssr-app (#81911)
#81389 changed the implementation of `edge-ssr-app`. it added a
`RenderOpts.onClose` implemented like this:
```ts
let onCloseCallback: (() => void) | undefined
const renderOpts = {
// ...
onClose: (cb) => {
onCloseCallback = cb
},
}
```
thi... | [
{
"path": "packages/next/src/build/templates/edge-ssr-app.ts",
"patch": "@@ -24,6 +24,7 @@ import { getBotType } from '../../shared/lib/router/utils/is-bot'\n import { interopDefault } from '../../lib/interop-default'\n import { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\n import { ch... | 2025-07-22T11:10:58 |
facebook/react | 2940440dfb011173758e332da88ede7720b2509b | 79e3fc0acb3c4d3b8cd1caf86880b764e657ec42 | Fix for mutable ranges ended early with interleaving
Fixes T180504437. In MergeOverlappingReactiveScopes we track the active scopes
and mark them as "ended" when reaching the first instruction after their mutable
range. However, in cases of interleaving that will be merged, we could
previously mark a scope as comp... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/MergeOverlappingReactiveScopes.ts",
"patch": "@@ -229,8 +229,23 @@ class Context {\n this.joinedScopes.union([current.shadowedBy, current.scope]);\n }\n } else if (found && current.shadowedBy === null) {\n- ... | 2024-03-13T20:52:29 |
electron/electron | 12548294c0b2639d34c05c544f56545004efee01 | 455f57322f705fdd67751328e8f1feaf6bd29409 | fix: `resizable: false` should disable fullscreen button at start (#39086)
fix: resizable should disable fullscreen button at start | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -198,10 +198,6 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n SetSizeConstraints(size_constraints);\n }\n #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)\n- bool resizable;\n- if (options.Get(options::kResizable,... | 2023-07-25T16:18:36 |
golang/go | 8ec555931dc65f1cd0e7cf28d771615d8064a8ad | 93fb2c90740aef00553c9ce6a7cd4578c2469675 | go/types: fix typo in Info.Types doc comment
Change-Id: Ib95b77ab3dc6e48158e25e70fabb2579f3706b5f
Reviewed-on: https://go-review.googlesource.com/c/go/+/669755
Auto-Submit: Russ Cox <rsc@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Robert Griesemer ... | [
{
"path": "src/go/types/api.go",
"patch": "@@ -228,7 +228,7 @@ type Info struct {\n \t// Similarly, no type is recorded for the (synthetic) FuncType\n \t// node in a FuncDecl.Type field, since there is no corresponding\n \t// syntactic function type expression in the source in this case\n-\t// Instead, the ... | 2025-05-03T21:06:41 |
nodejs/node | 1212eca1fcdfdfca83135bf3d878743851b9d3b5 | c1ec09923964f8e0a011026d08ed223b52620600 | test_runner: fix delete test file cause dependency file not watched
When a watched test file is being deleted then the referenced dependency
file(s) will be updated incorrect when `unfilterFilesOwnedBy` method is
called, which will cause tests not being rerun when its referenced
dependency changed. To prevent this cas... | [
{
"path": "lib/internal/test_runner/runner.js",
"patch": "@@ -424,13 +424,18 @@ function watchFiles(testFiles, opts) {\n const newFileName = ArrayPrototypeFind(updatedTestFiles, (x) => !ArrayPrototypeIncludes(testFiles, x));\n const previousFileName = ArrayPrototypeFind(testFiles, (x) => !ArrayP... | 2024-08-14T15:43:10 |
vercel/next.js | f76e1dc7056b4d0a8d325ff51cf70f52779a8146 | 3db946deea1829c9a8da0a0a8861b24c8e8e060e | Turbopack: Replace `current_value` set/restore mutation pattern with a safer `with_pat_value` helper (#81696)
The previous pattern of
```
self.current_value = Some(...);
// visit children
self.current_value = None;
```
felt very dangerous to me, because it's too easy to not restore `current_value` (or accidentally c... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -280,12 +280,12 @@ pub fn create_graph(m: &Program, eval_context: &EvalContext) -> VarGraph {\n m.visit_with_ast_path(\n &mut Analyzer {\n data: &mut graph,\n+ state: analyzer_state::Anal... | 2025-07-21T22:56:17 |
facebook/react | 79e3fc0acb3c4d3b8cd1caf86880b764e657ec42 | dc7ed065c0d77e5e3df689f906f3a941032257b5 | Fix for method call not memoizing in same scope as outer call
Fixes T175282980. InferReactiveScopeVariables had logic to force assigning a
scope to MethodCall property lookups with the idea of forcing the method call
lookup to be in the same scope as the method call itself. But this doesn't work
if we never assign... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -63,6 +63,7 @@ import {\n pruneUnusedScopes,\n renameVariables,\n } from \"../ReactiveScopes\";\n+import { alignMethodCallScopes } from \"../ReactiveScopes/AlignMethodCallScopes\";\n import { pruneAlwaysInva... | 2024-03-13T20:52:29 |
electron/electron | 455f57322f705fdd67751328e8f1feaf6bd29409 | 77cc1d6ffa83dcf291b2a2ddb4889549c23d154c | refactor: use `TypeError` instead of generic `Error` when appropriate (#39209)
refactor: use TypeError instead of generic Error when appropriate | [
{
"path": "lib/browser/api/auto-updater/auto-updater-win.ts",
"patch": "@@ -24,12 +24,12 @@ class AutoUpdater extends EventEmitter {\n if (typeof options.url === 'string') {\n updateURL = options.url;\n } else {\n- throw new Error('Expected options object to contain a \\'url\\' st... | 2023-07-25T16:08:46 |
golang/go | 21908c3dec35f19d283051e150143a651cc2a71f | 1b40dbce1ab039f6715b8b151a4db093ede87fff | cmd/go/internal/vcs: include Subversion VCS build information
The existing implementation lacks the Status function for retrieving VCS build
information for Subversion. As a consequence, binaries aren't stamped with the
Revision, CommitTime and Uncommitted information from SVN repositories.
This change provides the s... | [
{
"path": "src/cmd/go/internal/vcs/vcs.go",
"patch": "@@ -498,6 +498,7 @@ var vcsSvn = &Cmd{\n \tScheme: []string{\"https\", \"http\", \"svn\", \"svn+ssh\"},\n \tPingCmd: \"info -- {scheme}://{repo}\",\n \tRemoteRepo: svnRemoteRepo,\n+\tStatus: svnStatus,\n }\n \n func svnRemoteRepo(vcsSvn *Cmd, ... | 2025-04-22T15:49:26 |
nodejs/node | 02b30954a8a5b1f93b5e50d005c7a01b122a86ef | 880c446d9558b5c8b90228b077b2721c3bb6070f | test: use relative paths in test-cli-permission tests
`process.permission.has("fs")` checks if the process has permission
for all files under `cwd`. Granting permission for `/tmp` and running
tests with `cwd` containing `/tmp` will make the funtion return
`true`, differing from expected results. Using relative paths e... | [
{
"path": "test/parallel/test-cli-permission-deny-fs.js",
"patch": "@@ -27,7 +27,7 @@ const path = require('path');\n }\n \n {\n- const tmpPath = path.resolve('/tmp/');\n+ const tmpPath = path.resolve('./tmp/');\n const { status, stdout } = spawnSync(\n process.execPath,\n [\n@@ -36,7 +36,7 @@ c... | 2024-08-14T03:49:39 |
facebook/react | dc7ed065c0d77e5e3df689f906f3a941032257b5 | b666bd163759df5afa8bcadc2c14f87f0d294a49 | Fix missing declaration invariant for "for" within try/catch
Fixes T180509722. What happened is that the logic in LeaveSSA to find
declarations within for initializers wasn't working with try/catch because the
initializer block gets broken up with a maybe-throw after every instruction that
can throw. These maybe-t... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/SSA/LeaveSSA.ts",
"patch": "@@ -18,7 +18,7 @@ import {\n Phi,\n Place,\n } from \"../HIR/HIR\";\n-import { printPlace } from \"../HIR/PrintHIR\";\n+import { printIdentifier, printPlace } from \"../HIR/PrintHIR\";\n import {\n eachInstructionLV... | 2024-03-13T20:52:28 |
vercel/next.js | 3db946deea1829c9a8da0a0a8861b24c8e8e060e | c323ee19a89d03955a9ec63298afe85ea64a1f7e | Turbopack: Track variable usage inside of visit_assign_target_pat (#81654)
Fixes #81462
## Bug Report
> Turbopack does not recognise such pattern:
```ts
const func = () => {
return { bool: true };
};
let bool = false;
({ bool } = func()); // This is not recognised
```
> This means `bool` variable will be reass... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -765,7 +765,8 @@ struct Analyzer<'a> {\n \n var_decl_kind: Option<VarDeclKind>,\n \n- /// Used for patterns\n+ /// The RHS (or some part of it) of a pattern assignment, read by the individual parts of the\n+ /... | 2025-07-21T22:28:27 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.