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
vercel/next.js
891cfe69c8b4ab58c5bab398069a117a29eda879
26a382295bd6849e9f841dda32516009c0387090
Turbopack: Add Next.js version to "initialize project" trace span (#90545) ## Summary Adds the Next.js version as a `version` field on the Turbopack "initialize project" tracing span. The version is passed from the TypeScript side (`process.env.__NEXT_VERSION`) through the NAPI bindings into Rust `ProjectOptions`, wh...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -360,6 +360,9 @@ pub struct ProjectOptions {\n \n /// Whether to enable persistent caching\n pub is_persistent_caching_enabled: bool,\n+\n+ /// The version of Next.js that is running.\n+ pub next_version: RcStr,\n }\n \n #[derive(Default...
2026-02-26T17:37:15
rust-lang/rust
d29c4895994dae92c6e8e47aec08fd4c81fb5d54
c7b206bba4434ed928e9615f31082a9ef3f67c27
add self-referential param-env normalization regression avoid ICE on invalid param-env normalization remove 120033 crash test fix comments use rustc_no_implicit_bounds set #![allow(incomplete_features)]
[ { "path": "compiler/rustc_trait_selection/src/traits/mod.rs", "patch": "@@ -300,19 +300,14 @@ fn do_normalize_predicates<'tcx>(\n Ok(predicates) => Ok(predicates),\n Err(fixup_err) => {\n // If we encounter a fixup error, it means that some type\n- // variable wound up...
2026-03-08T16:41:56
electron/electron
8ecd064d2c3e378e1f874726b83f84f0350521f2
511809ef63c97c1769254e5a10ffd15465abbcad
chore: bump chromium to 144.0.7526.0 (main) (#48932) * chore: bump chromium in DEPS to 144.0.7526.0 * 7138583: [Partitioned Popins Removal] IPC https://chromium-review.googlesource.com/c/chromium/src/+/7138583 * chore: fixup patch indices * 7139794: Partially remove check for global handlers in plugin mime_type co...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7522.0',\n+ '144.0.7526.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-11-13T16:09:51
facebook/react
253abc78a1db0caab1693ecf9407d9bc10dd6bd1
d73b6f111057e09b9886e8edd2bc70fa56229489
[Flight] Transfer Debug Info from a synchronous Reference to another Chunk (#34229)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -496,13 +496,14 @@ function createErrorChunk<T>(\n function wakeChunk<T>(\n listeners: Array<InitializationReference | (T => mixed)>,\n value: T,\n+ chunk: SomeChunk<T>,\n ): void {\n for (let i = 0; i < listeners.length; i++) {...
2025-08-21T21:50:20
golang/go
20bc1949722c1fd66de5d568f1422845332d18f3
b40f0b118014f8dbc25e8ef4de82ccf78410903f
cmd/link: handle runtime.type based on size, not GOOS When handling type descriptors, we add some space at the start to ensure that offset 0 does not refer to a valid type descriptor. AIX has an initial runtime.types symbol with a non-zero size, so we used that instead of adding some space. In some cases Darwin also ...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1498,7 +1498,7 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \tdefineRuntimeTypes := func() {\n \t\ttypes := ldr.CreateSymForUpdate(\"runtime.types\", 0)\n \t\ttypes.SetType(sym.STYPE)\n-\t\ttypes.SetSize(8)\n+\t\ttypes.SetSize(int64(ctxt.Arch.PtrSiz...
2026-02-12T05:23:49
vercel/next.js
cdba5ef07ab96ef0c3d28f51dab32978a65a4af5
a8de0a004490343fc7ad6181282b3b810a17b2b4
Missing React 18 error codes (#90593) Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": "test/development/acceptance/ReactRefreshLogBox.test.ts", "patch": "@@ -118,6 +118,7 @@ describe('ReactRefreshLogBox', () => {\n if (isTurbopack) {\n await expect(browser).toDisplayRedbox(`\n {\n+ \"code\": \"E394\",\n \"description\": \"no\",\n ...
2026-02-26T15:09:59
rust-lang/rust
fe4e53ebf240e2a0d06a02813bb9ba379080a90c
4cf5f9580233c36f6bc8db76e282ba8a1c1ea491
extract AttributeParseError rendering code into smaller subfunctions
[ { "path": "compiler/rustc_attr_parsing/src/session_diagnostics.rs", "patch": "@@ -594,19 +594,96 @@ pub(crate) struct AttributeParseError<'a> {\n pub(crate) suggestions: Vec<String>,\n }\n \n+impl<'a> AttributeParseError<'a> {\n+ fn render_expected_specific_argument<G>(\n+ &self,\n+ dia...
2026-03-29T10:03:53
electron/electron
511809ef63c97c1769254e5a10ffd15465abbcad
32ae696ee04490e6076ebd90605bc28a960d405a
docs: explain how to load SF Symbols with `nativeImage` (#48908) * docs: explain how to load SF Symbols with `nativeImage` * fix: use single quotes * fix: use single quotes
[ { "path": "docs/api/native-image.md", "patch": "@@ -230,6 +230,15 @@ echo -e '#import <Cocoa/Cocoa.h>\\nint main() { NSLog(@\"%@\", SYSTEM_IMAGE_NAME);\n \n where `SYSTEM_IMAGE_NAME` should be replaced with any value from [this list](https://developer.apple.com/documentation/appkit/nsimagename?language=objc...
2025-11-13T15:41:00
facebook/react
812075366552bb757aaa00ff55ecccd1e1e4c5fa
3770ff38536c84c8a456eb74bb771f2fdca5c1c9
[DevTools] fix: always send a response to fetch-file request in the extension (#34235) This fixes the displaying of "rendered by" section if owner stacks contained any native frames. This regressed after https://github.com/facebook/react/pull/34185, where we added the Suspense boundary for the StackTraceView. This fa...
[ { "path": "packages/react-devtools-extensions/src/background/messageHandlers.js", "patch": "@@ -46,22 +46,26 @@ export function handleDevToolsPageMessage(message) {\n payload: {tabId, url},\n } = message;\n \n- if (!tabId) {\n- throw new Error(\"Couldn't fetch file sources: tabId n...
2025-08-21T17:28:33
nodejs/node
732ab9d658e057af5191d4ecd156d38487509462
ae407c310989913f3faf86019b02fdbca217e333
tools,doc: fix format-md files list Adds content of doc/contributing/maintaining to the list Fixes: https://github.com/nodejs/node/issues/55216 PR-URL: https://github.com/nodejs/node/pull/61147 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Aviv Keller <me@av...
[ { "path": "vcbuild.bat", "patch": "@@ -798,6 +798,11 @@ for /D %%D IN (doc\\*) do (\n for %%F IN (%%D\\*.md) do (\n set \"lint_md_files=\"%%F\" !lint_md_files!\"\n )\n+ for /D %%S IN (%%D\\*) do (\n+ for %%F IN (%%S\\*.md) do (\n+ set \"lint_md_files=\"%%F\" !lint_md_files!\"\n+ )\n+ )\...
2025-12-24T09:53:23
golang/go
54c46328ccb9d559fa21c09fd8e2dff22a99c72c
683aa8893a5e2e99ef48fa4502b507a0fe92acc8
internal/poll: avoid race between execIO and DisassociateIOCP This is a step towards deferring adding the handle to IOCP until the first IO operation. There is a small race windows between execIO and DisassociateIOCP where execIO checks if the fd is disassociated before passing the operation to the OS. DisassociateIO...
[ { "path": "src/internal/poll/export_test.go", "patch": "@@ -27,7 +27,7 @@ func (mu *XFDMutex) Decref() bool {\n }\n \n func (mu *XFDMutex) RWLock(read bool) bool {\n-\treturn mu.rwlock(read)\n+\treturn mu.rwlock(read, waitLock)\n }\n \n func (mu *XFDMutex) RWUnlock(read bool) bool {", "additions": 1, ...
2026-02-02T09:42:28
vercel/next.js
a8de0a004490343fc7ad6181282b3b810a17b2b4
cf7103771b15d16cb6059876385e2765e942d102
Enable `experimental.reactDebugChannel` by default (#90310) Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": ".claude/commands/pr-status.md", "patch": "@@ -99,7 +99,7 @@ Analyze PR status including CI failures and review comments.\n - `IS_WEBPACK_TEST=1` forces webpack (turbopack is default locally)\n - `NEXT_SKIP_ISOLATE=1` skips packing next.js into a separate project (hides module resolution fai...
2026-02-26T15:00:47
electron/electron
32ae696ee04490e6076ebd90605bc28a960d405a
b121065984368e1adad83648f03fc968c11bba2a
feat: add --disable-geolocation command-line flag for macOS (#45934) * feat(macos): add --disable-geolocation-mac command-line flag * internally deny geolocation requests if flag set e * wrap PermissionRequestHandler instead * wrap custom handler and deny regardless of response * Update docs/api/command-line-swit...
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -49,6 +49,10 @@ Disables the disk cache for HTTP requests.\n \n Disable HTTP/2 and SPDY/3.1 protocols.\n \n+### --disable-geolocation _macOS_\n+\n+Disables the Geolocation API. Permission requests for geolocation will be denied internally regardles...
2025-11-13T15:39:03
facebook/react
243a56b9a22a41b5b3df6668f9eb97b13cb41c3c
83c7379b9601f25463826449256f0cd3d283702d
Update Flow to 0.246 (#34244) Catching up Flow versions. Since there's plenty new errors, I'm taking each version with breaking changes as a new PR.
[ { "path": "package.json", "patch": "@@ -72,8 +72,8 @@\n \"eslint-plugin-react-internal\": \"link:./scripts/eslint-rules\",\n \"fbjs-scripts\": \"^3.0.1\",\n \"filesize\": \"^6.0.1\",\n- \"flow-bin\": \"^0.245.2\",\n- \"flow-remove-types\": \"^2.245.2\",\n+ \"flow-bin\": \"^0.246\",\n+ ...
2025-08-21T01:46:55
nodejs/node
5e677d6e7e4a04f217ffb79fcbcdadadb02e6fa0
dc8215b90d51fafee3c8faef128d9b1e471ddf38
stream: do not pass `readable.compose()` output via `Readable.from()` PR-URL: https://github.com/nodejs/node/pull/60907 Fixes: https://github.com/nodejs/node/issues/55203 Reviewed-By: Raz Luvaton <rluvaton@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2027,7 +2027,7 @@ changes:\n description: Marking the API stable.\n -->\n \n-* `stream` {Stream|Iterable|AsyncIterable|Function}\n+* `stream` {Writable|Duplex|WritableStream|TransformStream|Function}\n * `options` {Object}\n * `signal` {AbortSignal} allows d...
2025-12-23T18:52:32
rust-lang/rust
e61842d378622d3bbb9271b6edc9b01872c43665
4cf5f9580233c36f6bc8db76e282ba8a1c1ea491
Update `mir-opt` 64-bit panic-abort tests for `Alignment` rename These seem to have been missed when the PR originally merged.
[ { "path": "tests/mir-opt/dont_reset_cast_kind_without_updating_operand.test.GVN.64bit.panic-abort.diff", "patch": "@@ -51,7 +51,7 @@\n StorageLive(_12);\n StorageLive(_13);\n - _13 = boxed::box_new_uninit(const <() as std::mem::SizedTypeProperties>::LAYOUT) -> [return: bb2, unwin...
2026-03-30T10:54:46
golang/go
456d0fe4092cb794a02027e178486bc31f05a8e0
a430bc1bd73ab9a7d4a0c740add9760914588396
cmd/link: correct libc dynamic linker path Ref: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/issues/114 Fixes #77209 Change-Id: I8b575a95ad4e6a7e792514d7fcf9497599c1e404 Reviewed-on: https://go-review.googlesource.com/c/go/+/737180 Reviewed-by: Pengcheng Wang <wangpengcheng.pp@bytedance.com> Reviewed-by: Qui...
[ { "path": "src/cmd/link/internal/riscv64/obj.go", "patch": "@@ -38,7 +38,8 @@ func Init() (*sys.Arch, ld.Arch) {\n \t\tMachoreloc1: machoreloc1,\n \n \t\tELF: ld.ELFArch{\n-\t\t\tLinuxdynld: \"/lib/ld.so.1\",\n+\t\t\tLinuxdynld: \"/lib/ld-linux-riscv64-lp64d.so.1\",\n+\t\t\tLinuxdynldMusl: \"/lib/ld-mus...
2026-01-17T04:19:13
vercel/next.js
cf7103771b15d16cb6059876385e2765e942d102
2307bf6e521a6969423f7010cdd36d4210d1b7a9
Turbopack: add Xxh3Hash128Hasher (#90584) - turbo-persistence used XxHash64, which is supposed to be slower than XxHash3_64 - refactor debug_id computation to just use `rope.content_hash()` which was added in the meantime - update and adjust feature flags of `twox_hash` https://github.com/Cyan4973/xxHash says: | Hash...
[ { "path": "Cargo.lock", "patch": "@@ -9387,7 +9387,7 @@ dependencies = [\n \"tracing\",\n \"turbo-bincode\",\n \"turbo-tasks-malloc\",\n- \"twox-hash 2.1.0\",\n+ \"twox-hash 2.1.2\",\n \"zstd\",\n ]\n \n@@ -9650,7 +9650,7 @@ dependencies = [\n \"data-encoding\",\n \"sha2\",\n \"turbo-tasks-macros\",\...
2026-02-26T14:26:38
electron/electron
b121065984368e1adad83648f03fc968c11bba2a
2622e6606d7d6247ffb8aff5bcee1649d9288542
docs: clarify meaning of string value for menu item icon (#48919) * docs: clarify meaning of string value for menu item icon * fix: format * fix: wording
[ { "path": "docs/api/menu-item.md", "patch": "@@ -34,7 +34,8 @@ See [`Menu`](menu.md) for examples.\n * `sublabel` string (optional) _macOS_ - Available in macOS >= 14.4\n * `toolTip` string (optional) _macOS_ - Hover text for this menu item.\n * `accelerator` string (optional) - An [Accelerator](../tu...
2025-11-13T15:10:18
facebook/react
c2ac8b4f0e000e4e2000f0ea6d11673431191e4d
03fda05d2c112a1fb829ef663ca4e98d540adc36
[ci] Fix permissions for direct sync branch PRs workflow (#34241) Because we sync built artifacts into Meta, we can't support edits from inside www/fbsource to be synced back into OSS as it would cause merge conflicts for future OSS PRs. We have a workflow that should automatically catch and close these PRs, but it l...
[ { "path": ".github/workflows/shared_close_direct_sync_branch_prs.yml", "patch": "@@ -18,6 +18,7 @@ jobs:\n permissions:\n # Used to create a review and close PRs\n pull-requests: write\n+ contents: write\n steps:\n - name: Close PR\n uses: actions/github-script@v7", ...
2025-08-20T21:09:38
nodejs/node
dc8215b90d51fafee3c8faef128d9b1e471ddf38
c837811bafa59896a3509d73c2dc57f3198835ca
fs: remove broken symlinks in rmSync PR-URL: https://github.com/nodejs/node/pull/61040 Fixes: https://github.com/nodejs/node/issues/61020 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -1636,7 +1636,7 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n env, permission::PermissionScope::kFileSystemWrite, path.ToStringView());\n auto file_path = std::filesystem::path(path.ToStringView());\n std::error_code error;\n- auto f...
2025-12-23T17:08:31
golang/go
97c48fd93db95f56849395cf8c7447232d56607a
d3ddc4854429185e6e06ca1f7628bb790404abb5
cmd/compile: move likely used values into registers before entering loop When we are about to enter a loop, we try to put values that will be used soon into registers, so we put them into registers once outside the loop instead of N times inside the loop. But we currently don't kick out values we won't use for a whil...
[ { "path": "src/cmd/compile/internal/ssa/func_test.go", "patch": "@@ -260,6 +260,11 @@ func Eq(cond, sub, alt string) ctrl {\n \treturn ctrl{BlockAMD64EQ, cond, []string{sub, alt}}\n }\n \n+// Lt specifies a BlockAMD64LT.\n+func Lt(cond, yes, no string) ctrl {\n+\treturn ctrl{BlockAMD64LT, cond, []string{yes...
2026-02-09T23:38:55
vercel/next.js
7d98e0b534c8081468bbc84be61de48d885e4154
de03508d2bd834131806bf045fee1cdb04653106
[test] Include error code in Redbox snapshot (#90497)
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1558,6 +1558,7 @@ describe('ReactRefreshLogBox app', () => {\n if (isRspack) {\n await expect({ browser, next }).toDisplayRedbox(`\n {\n+ \"code\": \"E394\",\n \"description\": \...
2026-02-26T11:01:25
facebook/react
03fda05d2c112a1fb829ef663ca4e98d540adc36
0bc71e67ab3d43c8c7eece258d4fdd085ee2244d
[DevTools] Fix display of stack frames with anonymous sources (#34237)
[ { "path": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js", "patch": "@@ -52,8 +52,8 @@ function parseStackTraceFromChromeStack(\n if (filename === '<anonymous>') {\n filename = '';\n }\n- const line = +(parsed[3] || parsed[6]);\n- const col = +(parsed[4] || parsed[7...
2025-08-20T15:31:42
electron/electron
10b07deb9733f02f451a7c739ef4886d0d83812a
92a910d15c6073caea23dee6682852e17943580f
chore: bump chromium to 144.0.7522.0 (main) (#48892) * chore: bump chromium in DEPS to 144.0.7522.0 * 7131867: Remove GenericScopedHandle::IsValid in favor of is_valid https://chromium-review.googlesource.com/c/chromium/src/+/7131867 * 7078879: [video pip] Remove old controls https://chromium-review.googlesource.c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7521.0',\n+ '144.0.7522.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-11-13T08:49:51
nodejs/node
c837811bafa59896a3509d73c2dc57f3198835ca
a385bb1d701c95b5d647666f9e5c12ca548dc124
build: add --debug-symbols to build with -g without enabling DCHECKs This is useful when debugging release builds on Linux without enabling DCHECKs. PR-URL: https://github.com/nodejs/node/pull/61100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "configure.py", "patch": "@@ -107,6 +107,12 @@\n default=None,\n help='build the Node.js part of the binary with debugging symbols')\n \n+parser.add_argument('--debug-symbols',\n+ action='store_true',\n+ dest='debug_symbols',\n+ default=None,\n+ help='add debugging symbols to r...
2025-12-23T14:45:21
golang/go
86f7959aa6e4cb9a0ac67ccd84c5586701583ca4
0f550bcfc3ad8525331d535d1f1e844d86472cbe
runtime/pprof: fix missing Profile docs CL 688335 accidentally introduced a blank line between the Profile doc comment and the type definition, causing the entire doc to get dropped. Change-Id: I97b1c0e57d142d7caea6e543a0138ed6dcd1c3fe Reviewed-on: https://go-review.googlesource.com/c/go/+/743660 LUCI-TryBot-Result: ...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -171,7 +171,6 @@ import (\n // holds a lock for 1s while 5 other goroutines are waiting for the entire\n // second to acquire the lock, its unlock call stack will report 5s of\n // contention.\n-\n type Profile struct {\n \tname string\n \tmu sync.Mut...
2026-02-10T00:17:12
facebook/react
0bc71e67ab3d43c8c7eece258d4fdd085ee2244d
3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae
[Flight] Add `debugChannel` option to Edge and Node clients (#34236) When a debug channel is used between the Flight server and a browser Flight client, we want to allow the same RSC stream to be used for server-side rendering. To support this, the Edge and Node Flight clients also need to accept a `debugChannel` opti...
[ { "path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js", "patch": "@@ -56,8 +56,38 @@ export type Options = {\n findSourceMapURL?: FindSourceMapURLCallback,\n replayConsoleLogs?: boolean,\n environmentName?: string,\n+ // For the Node.js client we only support a single-direct...
2025-08-20T14:46:34
vercel/next.js
d54719ae4c11c1974143481fc6e489c159af80e4
5c24c44440609d2e5441db9c3749d37ac0451841
[test] Fix jest-haste-map warnings (#82995) Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de>
[ { "path": "jest.config.js", "patch": "@@ -19,7 +19,27 @@ const customJestConfig = {\n '<rootDir>/../packages/font/src/',\n '<rootDir>/../packages/next-routing/',\n ],\n- modulePathIgnorePatterns: ['/\\\\.next/'],\n+ haste: {\n+ // Throwing to avoid warnings creeping up over time polluting log...
2026-02-26T09:57:07
electron/electron
92a910d15c6073caea23dee6682852e17943580f
3c5513015a944bf4da0c3a830fb9aa72c61a0fea
fix: Windows: Calling window.setFocusable(true) will no longer cause a window to lose focus (#45640) Make setFocusable only deactivate a window if focusable is false. Do not deactivate a window when setting focusable to true.
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1363,7 +1363,8 @@ void NativeWindowViews::SetFocusable(bool focusable) {\n ex_style |= WS_EX_NOACTIVATE;\n ::SetWindowLong(GetAcceleratedWidget(), GWL_EXSTYLE, ex_style);\n SetSkipTaskbar(!focusable);\n- Focus(false);\n+ if (!focusabl...
2025-11-12T20:15:40
golang/go
3048de9d6e5693e09c9885ec8b4673dbcf72c1e6
65ac2afd4b22fb29aa8cbd6a1d26ad7bb2ceeca4
io/fs: document that Sub does not check for existence Also recommend os.Root for constraining access. Fixes #77447 Change-Id: Id8d178163438e9264fe19ed37ba03e1ee5d0bd35 Reviewed-on: https://go-review.googlesource.com/c/go/+/742284 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/io/fs/sub.go", "patch": "@@ -24,14 +24,16 @@ type SubFS interface {\n // Otherwise, Sub returns a new [FS] implementation sub that,\n // in effect, implements sub.Open(name) as fsys.Open(path.Join(dir, name)).\n // The implementation also translates calls to ReadDir, ReadFile,\n-// ReadLink, ...
2026-02-06T21:06:09
nodejs/node
fb2a02f1d13e2d05157640054dd7e825fcc8c7e3
1d54921552101445928a13a9343d61c1a1aa7f59
deps: nghttp2: revert 7784fa979d0b This commit reverts "Make error handling robust". Without this revert, we are getting timeouts, crashes, and different error codes in `parallel/test-http2-*`. Refs: https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7 Refs: https://github.com/nodejs/nod...
[ { "path": "deps/nghttp2/lib/nghttp2_int.h", "patch": "@@ -52,11 +52,7 @@ typedef enum {\n * Unlike NGHTTP2_ERR_IGN_HTTP_HEADER, this does not invoke\n * nghttp2_on_invalid_header_callback.\n */\n- NGHTTP2_ERR_REMOVE_HTTP_HEADER = -106,\n- /*\n- * Cancel pushed stream.\n- */\n- NGHTTP2_ERR_PU...
2025-10-26T20:32:37
rust-lang/rust
6c467763047de340e4c40ed661df03a9fd4455c8
584d32e3ee7a2051c9ec1338d259ed8ef16380ca
Debug for vec::ExtractIf
[ { "path": "library/alloc/src/vec/extract_if.rs", "patch": "@@ -130,20 +130,25 @@ where\n A: Allocator,\n {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- let peek = if self.idx < self.end {\n- // This has to use pointer arithmetic as `self.vec[self.idx]` or\n- ...
2026-03-29T19:20:45
facebook/react
3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae
ae5c2f82b3ff71e4c8808c4dc3ebe60b71a1d125
[DevTools] Fix crash when inspecting Components suspended on data awaited in anonymous functions (#34234)
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -6,7 +6,7 @@\n *\n * @flow\n */\n-\n+import type {StackFrame as ParsedStackFrame} from 'error-stack-parser';\n import type {\n Awaited,\n ReactContext,\n@@ -844,7 +844,11 @@ export type HooksTree = Array<HooksNode>;\n \n let ...
2025-08-20T07:34:06
vercel/next.js
34647db294e26df3385b3f01ae7a23343a98228f
299e1ff31897f67a6ddf534be40629facf5517e6
Turbopack: add webpack loader names to traces (#87230) When examining the long trace this morning, it wasn't immediately clear what was running in the shell-out to Node. This doesn't fully fix the issue, but it makes it clearer which webpack loader is running, similar to how the PostCSS loader lists the name of the cs...
[ { "path": "turbopack/crates/turbopack-core/src/loader.rs", "patch": "@@ -67,3 +67,18 @@ impl TaskInput for ResolvedWebpackLoaderItem {\n #[derive(Debug, Clone)]\n #[turbo_tasks::value(shared, transparent)]\n pub struct WebpackLoaderItems(pub Vec<WebpackLoaderItem>);\n+\n+impl std::fmt::Display for WebpackLo...
2026-02-26T02:10:23
electron/electron
3c5513015a944bf4da0c3a830fb9aa72c61a0fea
27727dbe0abab78b3686ecc77dd3d3108c157c1d
refactor: make `api::WebRequest` inherit from `gin::Wrappable` (#48762) * refactor: make api::WebRequest inherit from gin::Wrappable refactor: remove unused v8::Isolate* arg from WebRequest ctor refactor: make electron::api::Session::web_request_ a cppgc::Member<api::WebRequest> refactor: allocate api::WebRequest o...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 573bcb2e56068...
2025-11-12T18:53:00
nodejs/node
9120924de1878e61d65eaf2d5d0d27cbe129224e
799feac6f5d2c251a3d5b1b405292f2e544c2777
util: fix nested proxy inspection Fixes: https://github.com/nodejs/node/issues/61061 PR-URL: https://github.com/nodejs/node/pull/61077 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gu...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1118,17 +1118,29 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n \n // Memorize the context for custom inspection on proxies.\n const context = value;\n+ let proxies = 0;\n // Always check for proxies to prevent side effects an...
2025-12-22T22:22:04
rust-lang/rust
5e21b1715ea28209c6a2acf4661758d68440c303
b56bca0ff6037718980197e1dd24c50ca1861144
fix doc link
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/expr_store.rs", "patch": "@@ -520,7 +520,7 @@ impl ExpressionStore {\n self.const_expr_origins().iter().map(|&(id, _)| id)\n }\n \n- /// Like [`Self::signature_const_expr_roots`], but also returns the origin\n+ /// Like [`Self::expr_roo...
2026-03-30T09:47:00
vercel/next.js
14ac25b975133708a69484d2d5dba322dcd616e6
e2ef94e2efb4d0067d62ce492dba5568ad1379d9
Bump Turborepo to 2.8.11 (#90530) <!-- 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 ### Improving Do...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -19,7 +19,7 @@ concurrency:\n \n env:\n NAPI_CLI_VERSION: 2.18.4\n- TURBO_VERSION: 2.8.9\n+ TURBO_VERSION: 2.8.11\n NODE_LTS_VERSION: 20\n CARGO_PROFILE_RELEASE_LTO: 'true'\n TURBO_TEAM: 'vercel'", "additions": 1, "deletions"...
2026-02-25T22:28:38
facebook/react
0bdb9206b77f334cc428958fc01aeea95355e8db
f508edc83fa1eb316a974c274b4411f081d6e94d
[Fizz] If we haven't painted yet, wait to reveal everything until next paint (#34230) Before the first rAF, we don't know if there has been other paints before this and if so when. (We could get from performance observer.) We can assume that it's not earlier than 0 so we used delay up until the throttle time starting ...
[ { "path": "fixtures/ssr/src/components/LargeContent.js", "patch": "@@ -1,8 +1,4 @@\n-import React, {\n- Fragment,\n- Suspense,\n- unstable_SuspenseList as SuspenseList,\n-} from 'react';\n+import React, {Suspense, unstable_SuspenseList as SuspenseList} from 'react';\n \n export default function LargeCont...
2025-08-19T00:22:40
golang/go
ad170e18540be19bd6db012ff221c01e8c9745e9
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
cmd/link: make TestTypePlacement work on AIX The existing code was just wrong. On AIX the go.type section is folded into the .text section (when internally linking), or the .data section (when externally linking). It follows that the data section adjustment is useless when internally linking, which is currently what h...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -2416,20 +2416,37 @@ func TestTypePlacement(t *testing.T) {\n \tcase xf != nil:\n \t\tdefer xf.Close()\n \n-\t\tfor _, sec := range xf.Sections {\n-\t\t\tif sec.Name == \".go.type\" {\n-\t\t\t\ttypeStart = sec.VirtualAddress\n-\t\t\t\ttypeEnd = sec.Virtual...
2026-01-31T03:15:31
electron/electron
7961206fcb78691195d42ab08d43652b6cf951dd
7da0b4b35129fc82b870ac7834cea1c7e62077da
docs: fix v40 stable release date (#48889) * docs(timelines): Correct v40.0.0 stable release date On the Electron Timelines tutorial page (/docs/latest/tutorial/electron-timelines), there is a clear typo in the release schedule for v40.0.0. The table currently lists the dates as: * Alpha: 2025-Oct-30 * Beta: 2025-De...
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -9,7 +9,7 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n \n | Electron | Alpha | Beta | Stable | EOL | Chrome | Node | Supported |\n | ------- | ----- | ------- | ------ | ------ | ---- | ---- | ---- |\n-| 40.0.0 | 2025-...
2025-11-12T11:59:32
nodejs/node
6157c81f4b28a0448207e0c915e4d218c5fc30c3
fc1d6d6b4c6f9c41817de09e7a37543d8067fc57
assert: use a set instead of an array for faster lookup This is a very small improvement for error creation. PR-URL: https://github.com/nodejs/node/pull/61076 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -10,6 +10,7 @@ const {\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n ObjectPrototypeHasOwnProperty,\n+ SafeSet,\n String,\n StringPrototypeRepeat,\n StringPrototypeSlice,\n@@ -42,7 +43,10 @@ const kReadableOperator = {\n const...
2025-12-15T17:18:53
vercel/next.js
5f6aa1cbb8c8f8a17cb8f85d41e49ed9c713ead0
c36d3427256003cf1340bad9ca3f579d8e2aa7da
Fix: server-patch retry preserves push/replace intent of suspended transitions (#90533) When a navigation triggers a server-patch retry (due to a route tree mismatch), the retry was unconditionally using navigateType='replace'. This assumed the original navigation had already committed to the browser history. But if t...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -25,6 +25,7 @@ import {\n type NavigationPromises,\n } from '../../shared/lib/hooks-client-context.shared-runtime'\n import { dispatchAppRouterAction, useActionQueue } from './use-action-queue'\n+import { setLastCommittedTree } f...
2026-02-25T21:22:49
facebook/react
0c89b160f6382814aa02cc469a80f59c720ab6bb
87a45ae37f4014b6df548a5d9b06bad5dc557992
[Flight] Add DebugInfo for Bundler Chunks (#34226) This adds a "suspended by" row for each chunk that is referenced from a client reference. So when you select a client component, you can see what bundles will block that client component when loading on the client. This is only done in the browser build since if we a...
[ { "path": ".eslintrc.js", "patch": "@@ -468,6 +468,7 @@ module.exports = {\n files: ['packages/react-server-dom-webpack/**/*.js'],\n globals: {\n __webpack_chunk_load__: 'readonly',\n+ __webpack_get_script_filename__: 'readonly',\n __webpack_require__: 'readonly',\n ...
2025-08-18T15:34:00
golang/go
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cmd/link: use correct alignment for type descriptors on AIX CL 724261 changed the linker to put all type descriptors that are used for typelinks in a single list. This caused trouble on AIX when linking externally, because the AIX linker aligns symbols individually, rather than honoring the layout of the object file g...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1469,6 +1469,8 @@ func checkSectSize(sect *sym.Section) {\n \n // fixZeroSizedSymbols gives a few special symbols with zero size some space.\n func fixZeroSizedSymbols(ctxt *Link) {\n+\tldr := ctxt.loader\n+\n \t// The values in moduledata are fill...
2026-01-31T03:06:19
nodejs/node
fc1d6d6b4c6f9c41817de09e7a37543d8067fc57
a968e4e672e4c60c4eebc53e2e875f6add764ea5
assert,util: fix deep comparing invalid dates skipping properties The property comparison of invalid dates regressed when starting to handle invalid dates as being equal. PR-URL: https://github.com/nodejs/node/pull/61076 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Revie...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -304,9 +304,9 @@ function objectComparisonStart(val1, val2, mode, memos) {\n }\n const time1 = DatePrototypeGetTime(val1);\n const time2 = DatePrototypeGetTime(val2);\n- if (time1 !== time2) {\n- // eslint-disable-next-line no-se...
2025-12-15T16:56:36
vercel/next.js
c36d3427256003cf1340bad9ca3f579d8e2aa7da
08ae81fab6ad27bcdcf10d01722a82cd2517177a
[ci] Crash if next-swc could not be loaded when `NEXT_TEST_NATIVE_DIR` is specified (#90387)
[ { "path": "apps/bundle-analyzer/package.json", "patch": "@@ -3,10 +3,10 @@\n \"version\": \"16.0.2-canary.16\",\n \"private\": true,\n \"scripts\": {\n- \"build\": \"cross-env NEXT_TEST_NATIVE_DIR=no next build --no-mangling\",\n- \"dev\": \"cross-env NEXT_TEST_NATIVE_DIR=no next dev\",\n+ \"...
2026-02-25T20:55:45
facebook/react
87a45ae37f4014b6df548a5d9b06bad5dc557992
01ed0e96427328780c8da4caa93377eb9746ff08
[eslint-plugin-react-hooks][RulesOfHooks] handle React.useEffect in addition to useEffect (#34076) ## Summary This is a fix for https://github.com/facebook/react/issues/34074 ## How did you test this change? I added tests in the eslint package, and ran `yarn jest`. After adding the new tests, I have this: On main ...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7735,6 +7735,9 @@ if (__EXPERIMENTAL__) {\n useEffect(() => {\n onStuff();\n }, []);\n+ React.useEffect(() => {\n+ onStuff();\n+ }, []);\n ...
2025-08-18T13:12:49
electron/electron
3d31030fc57eabf1d5d3993c7c5d52bab7f12c09
11d174344a8c833d74d953b552dfee86580356d2
fix: restore window's canHide property on macOS (#47970) * fix: restore window's canHide property on macOS * chore: empty commit to unstick CI --------- Co-authored-by: Charles Kerr <charles@charleskerr.com>
[ { "path": "shell/browser/browser_mac.mm", "patch": "@@ -543,6 +543,9 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n gin_helper::Promise<void> promise(isolate);\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n+ for (auto* const& window : WindowList::GetWindows())\n+ [window->Get...
2025-11-11T20:30:04
golang/go
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cbb37e310e2edd7148c8501567e190746e6d98d2
cmd/link: align covctrs symbol If we start the covctrs blob at an odd alignment, then covctrs will not be correctly aligned. Each individual entry is aligned properly, but the start marker may be before any padding inserted to enforce that alignment. Fixes #58936 Change-Id: I802fbe40eacfa5a3c8c4864e078b0e078da956d5 ...
[ { "path": "src/cmd/cover/cover_test.go", "patch": "@@ -638,3 +638,12 @@ func main() {\n \t\tt.Errorf(\"unexpected success; want failure due to newline in file path\")\n \t}\n }\n+\n+func TestAlignment(t *testing.T) {\n+\t// Test that cover data structures are aligned appropriately. See issue 58936.\n+\ttest...
2026-01-02T21:42:00
nodejs/node
472f58684055a15b465e02466548df5def4ed640
28f468a61544c8175508ee2888224e8b660f8ea8
os: freeze signals constant Remove the ability to mutate signals constant as doing so can lead to unexpected behavior, notably when spawning child process. Fixes: https://github.com/nodejs/node/issues/44749 PR-URL: https://github.com/nodejs/node/pull/61038 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: A...
[ { "path": "lib/os.js", "patch": "@@ -25,6 +25,7 @@ const {\n ArrayPrototypePush,\n Float64Array,\n ObjectDefineProperties,\n+ ObjectFreeze,\n StringPrototypeSlice,\n SymbolToPrimitive,\n } = primordials;\n@@ -330,6 +331,8 @@ module.exports = {\n machine: getMachine,\n };\n \n+ObjectFreeze(const...
2025-12-22T16:14:46
golang/go
cbb37e310e2edd7148c8501567e190746e6d98d2
d1ec0ecec956eb10c3daf40160193daf407c7614
net/http: fix WaitGroup race in TestTransportNoReuseAfterEarlyResponse The remaining race reported in go.dev/issue/66519 is that it's possible for copying.Wait to start running before all copying.Add calls complete. It happens infrequently as is, but padding both Wait and Add calls with a 100 ms sleep makes it highly ...
[ { "path": "src/net/http/client_test.go", "patch": "@@ -438,7 +438,6 @@ func testRedirectsByMethod(t *testing.T, mode testMode, method string, table []r\n \t\treq, _ := NewRequest(method, ts.URL+tt.suffix, strings.NewReader(content))\n \t\treq.GetBody = func() (io.ReadCloser, error) { return io.NopCloser(str...
2026-01-24T18:03:14
electron/electron
09db68252932a7ab4529a5bbce76e4014b192f37
b811ca0cde2536287a322f2e7521629e8c615e84
build: remove track `SSL_ERROR_ZERO_RETURN` explicitly patch (#48875) build: remove track SSL_ERROR_ZERO_RETURN explicitly patch
[ { "path": "patches/boringssl/.patches", "patch": "@@ -1,3 +1,2 @@\n expose_ripemd160.patch\n-revert_track_ssl_error_zero_return_explicitly.patch\n feat_expose_several_extra_cipher_functions.patch", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "patches/boringssl/reve...
2025-11-11T13:16:04
vercel/next.js
08ae81fab6ad27bcdcf10d01722a82cd2517177a
67bb800f321df5ea81633b557a10bacfe666ee8d
[Instant] Fix loading.js not being counted as a suspense boundary (#90292) Fixes a bug where a loading.js isn't properly considered as providing a suspense boundary for a page. This is because we're placing the boundary around the segment component itself, but it should be rendered above the `LoadingBoundary` that is ...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -694,6 +694,17 @@ export default function OuterLayoutRouter({\n use(unresolvedThenable) as never\n }\n \n+ let maybeValidationBoundaryId: string | null = null\n+ if (\n+ typeof window === 'undefined' &&\n+ process....
2026-02-25T20:46:31
nodejs/node
28f468a61544c8175508ee2888224e8b660f8ea8
26b7fd2009c348a64674da78ddda1076e74595d2
module: fix sync resolve hooks for require with node: prefixes Previously, when require()-ing builtins with the node: prefix, the sync resolve hooks were not properly invoked, and load hooks could not override the builtin's format. This fixes the handling and enables redirecting prefixed built-ins to on-disk files and...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1111,7 +1111,9 @@ function resolveForCJSWithHooks(specifier, parent, isMain) {\n filename = convertURLToCJSFilename(url);\n }\n \n- return { __proto__: null, url, format, filename, parentURL };\n+ const result = { __proto__: null, url, fo...
2025-12-22T14:35:45
electron/electron
b811ca0cde2536287a322f2e7521629e8c615e84
f260e06a620e78645b9cf88fbee62a90199fa3e9
chore: bump chromium to 144.0.7521.0 (main) (#48880) * chore: bump chromium in DEPS to 144.0.7521.0 * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7520.0',\n+ '144.0.7521.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-11-11T12:16:38
vercel/next.js
67bb800f321df5ea81633b557a10bacfe666ee8d
199d975934aff4e90949370448a75fd5362b9ea9
Don't start worker for Typescript when only doing config validation (#90504) Only start a Worker for typescript when type checking is actually enabled. When only validating the config (which doesn't load the `typescript` package itself, just invoke it in-process) testing with `pnpm next build bench/app-router-serv...
[ { "path": "packages/next/src/build/type-check.ts", "patch": "@@ -17,11 +17,11 @@ import { hrtimeDurationToString } from './duration-to-string'\n * instead of running \"next/lib/typescript/runTypeCheck\" in a worker,\n * we will run entire \"next/lib/verify-typescript-setup\" in a worker instead.\n */\n-f...
2026-02-25T17:00:31
rust-lang/rust
29710ca2705f5b87d217f6a36b4a9afbd0bc87f0
ddd36bd57051f796850345b76c17e9402e28a9e4
remove debug requirement from hooks
[ { "path": "compiler/rustc_middle/src/hooks/mod.rs", "patch": "@@ -35,8 +35,10 @@ macro_rules! declare_hooks {\n \n impl Default for Providers {\n fn default() -> Self {\n+ #[allow(unused)]\n Providers {\n- $($name: |_, $($arg,)*| default_...
2026-01-27T15:09:52
nodejs/node
26b7fd2009c348a64674da78ddda1076e74595d2
d7e4108bc1beb7dc01890b032e7ba89d12feed4e
util: limit `inspect` to only show own properties `Error`'s `cause` and `errors` properties would be visible even if these were not own properties. This is changed to align with all other parts of the `inspect` handling. Fixes: https://github.com/nodejs/node/issues/60717 PR-URL: https://github.com/nodejs/node/pull/61...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1961,15 +1961,15 @@ function formatError(err, constructor, tag, ctx, keys) {\n }\n name ??= 'Error';\n \n- if ('cause' in err &&\n+ if (ObjectPrototypeHasOwnProperty(err, 'cause') &&\n (keys.length === 0 || !ArrayPrototypeIncludes(keys, 'ca...
2025-12-22T13:06:14
facebook/react
431bb0bddb640d01d668448f1133e44bd3eb3e11
5063b3283fcae4bb43756d0d18d32008e3910bea
[DevTools] Mark Unknown Reasons for Suspending with a Note (#34200) We currently only track the reason something might suspend in development mode through debug info but this excludes some cases. As a result we can end up with boundary that suspends but has no cause. This tries to detect that and show a notice for why...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -15,6 +15,7 @@ import type {\n ReactIOInfo,\n ReactStackTrace,\n ReactCallSite,\n+ Wakeable,\n } from 'shared/ReactTypes';\n \n import type {HooksTree} from 'react-debug-tools/src/ReactDebugHooks';\n@@ -87,6 +88,10...
2025-08-15T22:32:27
electron/electron
bc86e68a720011824d25a83c8ab401356c6ac513
4951b96235917a873576be551dc77876c3529ecf
feat: add bypassCustomProtocolHandlers option to net.request (#47331) * feat: add bypassCustomProtocolHandlers option to net.request * style: fix lint errors in api-protocol-spec
[ { "path": "docs/api/client-request.md", "patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypassCust...
2025-11-10T21:37:29
vercel/next.js
199d975934aff4e90949370448a75fd5362b9ea9
7d92ac638ad68b4316e74e7b79295ff1c4869284
Revert "Turbopack: Add line numbers to debug info in release-with-assertions profile (#90474)" (#90525) Reverts #90474 It appears to have increased the artifact size so much that Turborepo remote caching doesn't work properly anymore see https://vercel.slack.com/archives/C03LMQZL205/p1772027662111429
[ { "path": "Cargo.toml", "patch": "@@ -269,12 +269,12 @@ opt-level = \"s\"\n [profile.release.package.miette]\n opt-level = \"s\"\n \n+\n # Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n [profile.release-with-assertions...
2026-02-25T15:46:20
rust-lang/rust
e82a38040ebd2c653cc23131db8306492a012ca2
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct missing-args messages for sched_getaffinity and getenv shims These branches reused the libc::write error string when arguments were absent. Assisted by an AI coding tool (see CONTRIBUTING.md). Signed-off-by: Weixie Cui <cuiweixie@gmail.com>
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/mir/eval/shim.rs", "patch": "@@ -521,7 +521,7 @@ impl<'db> Evaluator<'db> {\n \"sched_getaffinity\" => {\n let [_pid, _set_size, set] = args else {\n return Err(MirEvalError::InternalError(\n- ...
2026-03-26T02:01:16
nodejs/node
ed6ec9626eddee3ad00edfea4b0535bb9ee2638d
dff46c07c37f5cacc63451b84ba21478c4bbc45c
test: make buffer sizes 32bit-aware in test-internal-util-construct-sab PR-URL: https://github.com/nodejs/node/pull/61026 Fixes: https://github.com/nodejs/node/issues/61025 Refs: https://github.com/nodejs/node/pull/60497 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "test/parallel/test-internal-util-construct-sab.js", "patch": "@@ -3,16 +3,20 @@\n \n require('../common');\n const assert = require('assert');\n+const { kMaxLength } = require('buffer');\n const { isSharedArrayBuffer } = require('util/types');\n const { constructSharedArrayBuffer } = require('int...
2025-12-20T22:20:21
facebook/react
6ffcac8558efbd204c7df5d52787a90e507dd8d7
724b324b966343f08ff0cb16ec9d8013e3891dfd
[compiler] Add support for diagnostic hints (#34126) Hints are meant as additional information to present to the developer about an error. The first use-case here is for the suggestion to name refs with "-Ref" if we encounter a mutation that looks like it might be a ref. The original error printing used a second error...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -58,11 +58,15 @@ export type CompilerDiagnosticDetail =\n /**\n * A/the source of the error\n */\n- {\n- kind: 'error';\n- loc: SourceLocation | null;\n- message: string;\n- };\n+ | {\n+ kin...
2025-08-15T22:09:27
golang/go
228c0468d5a0eefddbfd890565ee8253bd70346e
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
internal/poll: optimize socket completion modes FILE_SKIP_SET_EVENT_ON_HANDLE is always safe to use. FILE_SKIP_COMPLETION_PORT_ON_SUCCESS is safe as long as the socket is provided by an IFS provider. While here, stop using the kindFileNet type, it doesn't provide any value. Fixes #77448 Change-Id: Ib3dc0d68c7ff57b6...
[ { "path": "src/internal/poll/export_windows_test.go", "patch": "@@ -0,0 +1,11 @@\n+// Copyright 2026 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+// Export guts for testing on windows.\n+\n+package poll\...
2026-02-05T12:37:08
vercel/next.js
7d92ac638ad68b4316e74e7b79295ff1c4869284
a341ef9e5719529c610183703aa6869360ec32ad
[test] Fix flaky "delay re-prefetch after revalidation" test (#90503) The test verified that revalidation triggers a 300ms cooldown before re-prefetching by using fixed `setTimeout` delays (50ms, 150ms, 350ms) in the Node.js test runner racing against browser-side timers. With only ~50ms of buffer, the test flaked whe...
[ { "path": "test/e2e/app-dir/segment-cache/revalidation/segment-cache-revalidation.test.ts", "patch": "@@ -1,4 +1,5 @@\n import { isNextDev, isNextDeploy, createNext } from 'e2e-utils'\n+import type * as Playwright from 'playwright'\n import { createRouterAct } from 'router-act'\n import { createTestDataServ...
2026-02-25T13:09:18
rust-lang/rust
785b5113608a886309962ed836ee7a4bcf13bfaa
a25435bcf7cfc9b953d356eda3a51db8da9e3386
fix where clause rustfix suggestion spacing
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -173,17 +173,19 @@ impl<'a> AstValidator<'a> {\n {\n let mut state = State::new();\n \n+ let mut needs_comma = !ty_alias.after_where_clause.predicates.is_empty();\n if !ty_alias.after_where_c...
2026-03-30T02:08:12
electron/electron
a5cebb6df237a0f11f5379e24ebea7330d2a0dea
1ad8d35be9148027aca73d8c9a74d1bc2f9a28be
chore: bump chromium to 144.0.7520.0 (main) (#48869) * chore: bump chromium in DEPS to 144.0.7520.0 * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7514.0',\n+ '144.0.7520.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-11-10T17:44:49
facebook/react
724b324b966343f08ff0cb16ec9d8013e3891dfd
45a6532a088432010c40cbcac1fb6b6f8d56dd69
[compiler] Add hint to name variables with "Ref" suffix (#34125) If you have a ref that the compiler doesn't know is a ref (say, a value returned from a custom hook) and try to assign its `.current = ...`, we currently fail with a generic error that hook return values are not mutable. However, an assignment to `.curre...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AliasingEffects.ts", "patch": "@@ -50,7 +50,7 @@ export type AliasingEffect =\n /**\n * Mutate the value and any direct aliases (not captures). Errors if the value is not mutable.\n */\n- | {kind: 'Mutate'; value: Place}\n+ | {...
2025-08-15T22:05:29
golang/go
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
9263a71b92e84aa34d0e35887d5c23f5a0a21537
internal/poll: make waitIO more idempontent This is a step towards deferring adding the handle to IOCP until the first IO operation. waitIO should use the overlapped event if it is provided, regardless of whether FD is pollable or not. This simplifies reasoning about the code and makes it more robust to race conditio...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -201,10 +201,7 @@ var operationPool = sync.Pool{\n // waitIO waits for the IO operation to complete,\n // handling cancellation if necessary.\n func (fd *FD) waitIO(o *operation) error {\n-\tif fd.isBlocking {\n-\t\tpanic(\"can't wait on blocking ope...
2026-02-05T12:16:12
nodejs/node
dff46c07c37f5cacc63451b84ba21478c4bbc45c
3b7477c4d57862d587026594e2f1b5ba15a62a14
crypto: move DEP0182 to End-of-Life This commit moves support for implicitly short GCM authentication tags to End-of-Life status, thus requiring applications to explicitly specify the `authTagLength` for authentication tags shorter than 128 bits. There is quite a bit of refactoring to be done in the C++ source code. ...
[ { "path": "doc/api/crypto.md", "patch": "@@ -925,6 +925,11 @@ When passing a string as the `buffer`, please consider\n <!-- YAML\n added: v1.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61084\n+ description: Using GCM tag lengths other than 128 bits without sp...
2025-12-20T22:02:29
vercel/next.js
a341ef9e5719529c610183703aa6869360ec32ad
1fd9d3d37a9e1145b5e6b4956349f6f4117a139a
Fix varyParams tracking for optional catch-all params with no value (#90496) When an optional catch-all param like `[[...slug]]` has no value (e.g., visiting `/docs` instead of `/docs/foo`), the param doesn't exist as a property on the params object. The existing varyParams tracking uses `defineProperty` getters, whic...
[ { "path": "packages/next/src/lib/metadata/resolve-metadata.ts", "patch": "@@ -721,6 +721,7 @@ const resolveMetadataItems = cache(async function (\n tree,\n treePrefix,\n parentParams,\n+ null,\n searchParams,\n errorConvention,\n errorMetadataItem,\n@@ -735,6 +736,7 @@ async funct...
2026-02-25T13:07:18
electron/electron
068ac3c40519202c9b895570021fba91ea90c1df
87d1ff59cb2b8a99c766746a770d1a62424ec5a7
fix: the parent window remained interactive after the modal window was opened (#48770) fix: fix the issue where the parent window remained interactive after the modal window was opened in somecases.
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -104,7 +104,8 @@ NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n transparent_{options.ValueOrDefault(options::kTransparent, false)},\n enable_larger_than_screen_{\n options.ValueOrDefault(options::kEnableLarge...
2025-11-10T11:06:28
facebook/react
2d98b45d92ee9adc5ec6dbd2a5a270e0fd2607a4
2ba7b07ce10448cc37d793a50d5ca0999e63aad8
[DevTools] Fix Suspense boundaries always being marked as not suspended (#34206)
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -6071,6 +6071,11 @@ export function attach(\n nativeTag = getNativeTag(fiber.stateNode);\n }\n \n+ let isSuspended: boolean | null = null;\n+ if (tag === SuspenseComponent) {\n+ isSuspended = memoized...
2025-08-15T17:39:59
nodejs/node
3b7477c4d57862d587026594e2f1b5ba15a62a14
79d695356ad4de3e8940718d43deb180d2196f76
test_runner: fix lazy `test.assert` accessor PR-URL: https://github.com/nodejs/node/pull/61097 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "lib/test.js", "patch": "@@ -62,14 +62,18 @@ ObjectDefineProperty(module.exports, 'snapshot', {\n },\n });\n \n+let lazyAssert;\n+\n ObjectDefineProperty(module.exports, 'assert', {\n __proto__: null,\n configurable: true,\n enumerable: true,\n get() {\n- const { register } = require(...
2025-12-20T18:54:32
golang/go
9263a71b92e84aa34d0e35887d5c23f5a0a21537
0430fa977573866f93e66aa61a66b37ff0738aba
database/sql: ensure Null* types have Valid=false when Scan returns error The Scan methods for NullString, NullInt64, NullInt32, NullFloat64, NullBool, and NullTime set Valid=true before calling convertAssign. If convertAssign returns an error, Valid remains true, which creates an inconsistent state where Valid=true b...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -202,8 +202,9 @@ func (ns *NullString) Scan(value any) error {\n \t\tns.String, ns.Valid = \"\", false\n \t\treturn nil\n \t}\n-\tns.Valid = true\n-\treturn convertAssign(&ns.String, value)\n+\terr := convertAssign(&ns.String, value)\n+\tns.Valid = err == ni...
2026-01-26T02:29:30
facebook/react
a96a0f3903ea0a9d45ff7c30a3fd9efe830c4628
02a8811864caf09ed1229e939742f793a8ed5791
Fix fragmentInstance#compareDocumentPosition nesting and portal cases (#34069) Found a couple of issues while integrating FragmentInstance#compareDocumentPosition into Fabric. 1. Basic checks of nested host instances were inaccurate. For example, checking the first child of the first child of the Fragment would not r...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -38,9 +38,16 @@ import hasOwnProperty from 'shared/hasOwnProperty';\n import {checkAttributeStringCoercion} from 'shared/CheckStringCoercion';\n import {REACT_CONTEXT_TYPE} from 'shared/ReactSymbols';\n import {\n- isFi...
2025-08-15T16:14:23
electron/electron
6399527761b43abb5a3ea40dd64eb05efad3b9de
519187db1de74e6795a6fdd3bce15accc3d15a85
fix: ESM-from-CJS import when CJK is in path (#48855) Upstream fix: https://github.com/nodejs/node/pull/60575
[ { "path": "patches/node/.patches", "patch": "@@ -41,3 +41,4 @@ lib_check_sharedarraybuffer_existence_in_fast-utf8-stream.patch\n chore_handle_support_for_import_defer_as_ns_and_import_defer.patch\n api_delete_deprecated_fields_on_v8_isolate.patch\n api_promote_deprecation_of_v8_context_and_v8_object_api_met...
2025-11-10T08:51:56
rust-lang/rust
1d7d435d08c59f917b3fc266a2844fe002cfa7d7
4b0caec04bb1dd73373b0660841c14b72507bede
Panic on unlocking a non-read locked RwLock + provided better error msgs
[ { "path": "library/std/src/sys/sync/rwlock/no_threads.rs", "patch": "@@ -17,12 +17,8 @@ impl RwLock {\n #[inline]\n pub fn read(&self) {\n let m = self.mode.get();\n-\n- // Check for overflow.\n- assert!(m == isize::MAX, \"too many active read locks on RwLock\");\n-\n i...
2026-03-30T00:06:25
vercel/next.js
1fd9d3d37a9e1145b5e6b4956349f6f4117a139a
02af7ed3a4f67d0f6d3d07ee6ac1754c754d145f
fix: sanitize worker args for worker_threads compatibility (#90506) ### What? Sanitize worker method arguments when `enableWorkerThreads` is true to avoid `DataCloneError`. ### Why? When `enableWorkerThreads: true` is set in the build static worker, `postMessage()` uses the structured clone algorithm which throws `...
[ { "path": "packages/next/src/lib/worker.ts", "patch": "@@ -245,29 +245,39 @@ export class Worker {\n hangingTimer = activeTasks > 0 && setTimeout(onHanging, timeout)\n }\n \n+ // TODO: Remove this once callers stop passing non-serializable values\n+ // (e.g. functions) in worker method argum...
2026-02-25T12:13:49
facebook/react
379a083b9a95b0409cff4771bd9887e9e589777b
534bed5fa7ea927b00c48b348bee9a8087b68f9c
Include stack of cause in React instrumentation errors (#34198)
[ { "path": "packages/react-client/src/ReactFlightClientDevToolsHook.js", "patch": "@@ -30,7 +30,7 @@ export function injectInternals(internals: Object): boolean {\n } catch (err) {\n // Catch all errors because it is unsafe to throw during initialization.\n if (__DEV__) {\n- console.error('Rea...
2025-08-13T17:18:02
nodejs/node
aad8c055952839392e3983830cad2114f7fa3863
41c507f56ddff2cd6e5a5509e61bfceab826d9b2
repl: fix getters triggering side effects during completion PR-URL: https://github.com/nodejs/node/pull/61043 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "lib/internal/repl/completion.js", "patch": "@@ -731,35 +731,15 @@ function includesProxiesOrGetters(expr, exprStr, evalFn, ctx, callback) {\n \n if (astProp.type === 'Literal') {\n // We have something like `obj['foo'].x` where `x` is the literal\n-\n- if (safeIsProxyAccess(obj, as...
2025-12-20T18:54:12
rust-lang/rust
6e984cd4bf5535d707b9eeacd023637f6031f1cb
a25435bcf7cfc9b953d356eda3a51db8da9e3386
loongarch: use "_mcount" as the default mcount symbol Set the `mcount` field to "_mcount" for all LoongArch targets to match Clang/GCC behavior [1]. This fixes linking failures when using `-Z instrument-mcount`, where the runtime expects "_mcount" instead of "mcount". [1] https://github.com/llvm/llvm-project/blob/mai...
[ { "path": "compiler/rustc_target/src/spec/targets/loongarch32_unknown_none.rs", "patch": "@@ -22,6 +22,7 @@ pub(crate) fn target() -> Target {\n linker: Some(\"rust-lld\".into()),\n llvm_abiname: LlvmAbi::Ilp32d,\n max_atomic_width: Some(32),\n+ mcount: \"_mcou...
2026-03-29T13:37:07
vercel/next.js
782f16621df7c2f59fc06e4d9cf2879b2a12f7eb
61fa3c6317dba16b64569b676272afc533c417b9
Turbopack: Add line numbers to debug info in release-with-assertions profile (#90474) We use this profile in CI. Without debug symbols, we only get the line/column number of the panic, and we don't get line numbers in the whole backtrace: https://github.com/vercel/next.js/runs/64337217556#step:35:474 This can be diff...
[ { "path": "Cargo.toml", "patch": "@@ -269,12 +269,12 @@ opt-level = \"s\"\n [profile.release.package.miette]\n opt-level = \"s\"\n \n-\n # Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n [profile.release-with-assertions...
2026-02-25T09:14:46
golang/go
0430fa977573866f93e66aa61a66b37ff0738aba
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
simd/archsimd: correct algorithm name in SHA256 ops documentation The three SHA256 ops (SHA256Message1, SHA256Message2 and SHA256TwoRounds) all incorrectly referred to the SHA1 algorithm in their documentation rather than SHA256. Change-Id: Id6c1bfe4fee4517c0e498fb063cc9112464bc1e7 Reviewed-on: https://go-review.goog...
[ { "path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml", "patch": "@@ -83,7 +83,7 @@\n - go: SHA256TwoRounds\n commutative: false\n documentation: !string |-\n- // NAME does 2 rounds of B loop to calculate updated state variables in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME do...
2026-01-11T07:00:06
electron/electron
595920a3085ba580625d71298feacc6f6d6bcccc
ca0b46b4130a8b48ab0b402ea16efe1ce655044f
chore: bump chromium to 144.0.7512.1 (main) (#48768) * chore: bump chromium in DEPS to 144.0.7507.0 * chore: bump chromium in DEPS to 144.0.7508.0 * chore: update patches * 7101838: [pathbuilder] Enforce immutable SkPath APIs globally https://chromium-review.googlesource.com/c/chromium/src/+/7101838 * chore: upda...
[ { "path": "BUILD.gn", "patch": "@@ -762,11 +762,13 @@ source_set(\"electron_lib\") {\n if (enable_pdf_viewer) {\n deps += [\n \"//chrome/browser/resources/pdf:resources\",\n+ \"//chrome/browser/ui:browser_element_identifiers\",\n \"//components/pdf/browser\",\n \"//components/pd...
2025-11-07T15:13:45
facebook/react
534bed5fa7ea927b00c48b348bee9a8087b68f9c
db06f6b75108a45c8b70e526de6db5bc774acca0
Use `yarn run` in Flight fixture (#34197)
[ { "path": "fixtures/flight/package.json", "patch": "@@ -71,10 +71,10 @@\n \"scripts\": {\n \"predev\": \"cp -r ../../build/oss-experimental/* ./node_modules/ && rm -rf node_modules/.cache;\",\n \"prebuild\": \"cp -r ../../build/oss-experimental/* ./node_modules/ && rm -rf node_modules/.cache;\",\n...
2025-08-13T13:49:44
rust-lang/rust
003595348e9fc6ac081a4516deb57d6aa1860f40
80d0e4be6f15899649ba31669077c59a986f96cc
Remove `DepGraphData::dep_node_debug`. This hashmap was added in #42625 and is used for debug-only printing. If a key isn't recoverable, `DepNode::construct` will create a string for it (using `DepNodeKey::to_debug_str`) and insert the string in the hashmap, but only if (a) it's a debug build, and (b) `-Zincremental-i...
[ { "path": "compiler/rustc_middle/src/dep_graph/dep_node.rs", "patch": "@@ -121,19 +121,7 @@ impl DepNode {\n where\n Key: DepNodeKey<'tcx>,\n {\n- let dep_node = DepNode { kind, key_fingerprint: key.to_fingerprint(tcx).into() };\n-\n- #[cfg(debug_assertions)]\n- {\n- ...
2026-03-28T00:05:49
nodejs/node
038cb750122ac94485b9337c7a6aa3284dae08c7
dc97b507d07ea3e89066e1796a5dc320f6b0cf10
doc: fix test settime docs PR-URL: https://github.com/nodejs/node/pull/61117 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -175,7 +175,7 @@ example of a state file:\n ```json\n [\n {\n- \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" },\n+ \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" }\n },\n {\n \"test.js:10:5\": { \"passed_on_at...
2025-12-20T18:11:05
vercel/next.js
0f851c5ecd1872a209595770c5fe8b2b24274715
a0c401fcdba463c71e0836ade25c5b3127b79a07
Fix params leaking into instant navigation shell in dev (#90455) Populate `fallbackRouteParams` in the `isDebugStaticShell` prerender path so that params suspend correctly during instant navigation shell rendering in dev mode. When the instant lock is active, the server forces pages through the prerender path (`isDeb...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -926,9 +926,10 @@ export async function handler(\n ? createOpaqueFallbackRouteParams(\n prerenderInfo.fallbackRouteParams\n )\n- : // Otherwise, if we're debugging the fallbac...
2026-02-25T02:05:23
golang/go
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
db5882ea9bf63849d554910f486c4c5cfea08852
cmd/compile: allow equal functions to perform unaligned load on loong64 The Go compiler always generates Loong64 binaries, which can execute any processor of LA364, LA464, LA664 or higher core. And these processors support unaligned memory access [1]. goos: linux goarch: loong64 pkg: strings cpu: Loongson-3A6000 @ 25...
[ { "path": "src/cmd/internal/sys/arch.go", "patch": "@@ -143,7 +143,7 @@ var ArchLoong64 = &Arch{\n \tPtrSize: 8,\n \tRegSize: 8,\n \tMinLC: 4,\n-\tAlignment: 8, // Unaligned accesses are not guaranteed to be fast\n+\tAlignment: 1,\n \tCanMergeLoads: true,\n \tCanJumpTable: ...
2026-02-04T07:25:07
electron/electron
ca0b46b4130a8b48ab0b402ea16efe1ce655044f
194ce1a1d691446b4ea48217c8cb932289305d76
fix: enable wasm trap handlers in all Node.js processes (#48788) * fix: enable wasm trap handlers in all Node.js processes * fix: separate registrations to account for featurelist init
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,6 +62,7 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/base/l1...
2025-11-07T11:56:51
facebook/react
db06f6b75108a45c8b70e526de6db5bc774acca0
9433fe357aa5df277f0e509c1b8cf975afe9ec9a
[DevTools] Track virtual debug info from suspensey images (#34181) Same as #34166 but for Suspensey images. The trick here is to check the `SuspenseyImagesMode` since not all versions of React and not all subtrees will have Suspensey images enabled yet. The other trick is to read back from `currentSrc` to get the im...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -367,6 +367,7 @@ export function getInternalReactConstants(version: string): {\n ReactPriorityLevels: ReactPriorityLevelsType,\n ReactTypeOfWork: WorkTagMap,\n StrictModeBits: number,\n+ SuspenseyImagesMode: number...
2025-08-13T13:26:21
nodejs/node
dc97b507d07ea3e89066e1796a5dc320f6b0cf10
e5b6f89328cdbee35734ed5f6b69c5ee16fe14ee
util: mark proxied objects as such when inspecting them Fixes: https://github.com/nodejs/node/issues/60964 PR-URL: https://github.com/nodejs/node/pull/61029 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jame...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1180,7 +1180,13 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n return ctx.stylize(`[Circular *${index}]`, 'special');\n }\n \n- return formatRaw(ctx, value, recurseTimes, typedArray);\n+ const formatted = formatRaw(ctx, value...
2025-12-20T17:02:17
facebook/react
0032b2a3eec4723c433c16a738cf17e33ad742c3
14c50e344c2f639a9e08cc03b16cc7fc6c1d194a
[Flight] Log error if prod elements are rendered (#34189)
[ { "path": "packages/internal-test-utils/consoleMock.js", "patch": "@@ -355,7 +355,7 @@ export function createLogAssertion(\n let argIndex = 0;\n // console.* could have been called with a non-string e.g. `console.error(new Error())`\n // eslint-disable-next-line react-internal/safe-s...
2025-08-13T06:47:09
golang/go
db5882ea9bf63849d554910f486c4c5cfea08852
f8f87129646ca3821b3926e649c856a960d6bc9e
os: support deleting inaccessible files in RemoveAll windows: retry file open with DELETE access after access denied Additional access rights when opening files, including SYNCHRONIZE, break deletion when the caller has FILE_DELETE_CHILD on the parent directory but not the file. Retry with DELETE only restores correc...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -246,14 +246,31 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n+\t\tFILE_READ_ATTRIBUTES|DELETE,\n \t\to...
2026-02-04T09:36:59
electron/electron
194ce1a1d691446b4ea48217c8cb932289305d76
b6a9f08be1dd1402120bc64214084ebb417d672c
fix: CSD window frame tiles properly on Wayland (#48765) fix: CSD window frame tiles properly on Linux
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -100,13 +100,19 @@ void ElectronDesktopWindowTreeHostLinux::OnWindowStateChanged(\n void ElectronDesktopWindowTreeHostLinux::OnWindowTiledStateChanged(\n ui::WindowTiledEdges new_tiled_edges) {\n if (auto* const view...
2025-11-07T10:24:12
nodejs/node
1a345922e45c4b7165437648c64075b44216d281
0a5418088fb724c0ab4a958447e338ad13c6d2eb
doc: add a tip about developer mode on Windows On Windows, creating symlinks requires Developer Mode to be enabled or running the command as Administrator. Tests that rely on creating symlinks may fail with EPERM errors if symlink creation is not permitted. Add a tip about this for the docs about running tests on Wind...
[ { "path": "BUILDING.md", "patch": "@@ -870,6 +870,11 @@ To test if Node.js was built correctly:\n Release\\node -e \"console.log('Hello from Node.js', process.version)\"\n ```\n \n+> \\[!TIP]\n+> On Windows, creating symlinks requires [Developer Mode][] to be enabled or\n+> running the command as Administra...
2025-12-20T12:28:30