repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
2947cb0469aa89aac70cc6e3968f00f4c625671a
cead111a772c2852c870fb140029d89152da4d14
runtime/_mkmalloc: fix log.Fatal formatting directive Change-Id: I9b9b9dbde440c3a24599efd55ef6f85a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724281 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/runtime/_mkmalloc/mkmalloc.go", "patch": "@@ -288,7 +288,7 @@ func inline(config generatorConfig) []byte {\n \t\t\tcase foldCondition:\n \t\t\t\tstamped = foldIfCondition(stamped, repl.from, repl.to)\n \t\t\tdefault:\n-\t\t\t\tlog.Fatal(\"unknown op kind %v\", repl.kind)\n+\t\t\t\tlog.Fatalf(...
2025-11-27T10:42:27
electron/electron
a7a3e10300926898db0ceff1f778cd9cd06e05c6
7b77a24211784e4c8e54072703ea961a4991069c
refactor: prefer `base::circular_deque` over `std::deque` (#47171) * refactor: use base::circular_deque in ResolveProxyHelper * refactor: use base::circular_deque in GetExtraCrashKeys() refactor: reduce visibility of kMaxCrashKeyValueSize This change is to match Chromium's usage advice from base/containers/README.m...
[ { "path": "shell/browser/net/resolve_proxy_helper.h", "patch": "@@ -5,10 +5,10 @@\n #ifndef ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n #define ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n \n-#include <deque>\n #include <optional>\n #include <string>\n \n+#include \"base/containers/circular...
2025-05-21T17:04:36
facebook/react
22b929156c325eaf52c375f0c62801831951814a
a3be6829c6425f306a8bef9f7dba72d1347a64b3
[Fizz] Suspensey Images for View Transition Reveals (#33433) Block the view transition on suspensey images Up to 500ms just like the client. We can't use `decode()` because a bug in Chrome where those are blocked on `startViewTransition` finishing we instead rely on sync decoding but also that the image is live when ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -4860,8 +4860,9 @@ export function writeCompletedSegmentInstruction(\n const completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(\n completeBoundaryFunction,\n );\n-const completeBoundaryUpgradeToViewTransitio...
2025-06-06T14:14:13
vercel/next.js
d8a0f6caa3a774320c8841a69805f3b9f25c1fd5
89cddc26da7627d668a6469c1a36d87b3bc3b3b2
docs: Update Partytown URLs and package reference (#88928) - Update Partytown documentation links from `builder.io` to `qwik.dev`. - Update Partytown installation package reference in the guide. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possibl...
[ { "path": "docs/01-app/02-guides/scripts.mdx", "patch": "@@ -127,7 +127,7 @@ Refer to the [`next/script`](/docs/app/api-reference/components/script#strategy)\n \n > **Warning:** The `worker` strategy is not yet stable and does not yet work with the App Router. Use with caution.\n \n-Scripts that use the `wo...
2026-01-24T15:51:37
golang/go
c2af9f14b429741cfd4fed11a67a52427dec3931
6be5de4bc4e30ac0e2843c781393235d78e384a8
internal/runtime/cgroup: fix path on non-root mount point We should trim the mount root (4th field in /proc/self/mountinfo) from cgroup path read from /proc/self/cgroup before appending it to the mount point. Non-root mount points are very common in containers with cgroup v1. parseCPURelativePath is renamed to parse...
[ { "path": "src/internal/cgrouptest/cgrouptest_linux.go", "patch": "@@ -50,9 +50,8 @@ func (c *CgroupV2) SetCPUMax(quota, period int64) error {\n //\n // This must not be used in parallel tests, as it affects the entire process.\n func InCgroupV2(t *testing.T, fn func(*CgroupV2)) {\n-\tmount, rel := findCurr...
2025-11-21T17:44:14
electron/electron
7b77a24211784e4c8e54072703ea961a4991069c
7112c592c9ce0f0e55ee23ca8415b2f14f62a56c
fix: remove extra 'suspend'/'resume' handling from `powerMonitor` (#47162) fix: remove extra 'suspend'/'resume' handling from powerMonitor
[ { "path": "shell/browser/api/electron_api_power_monitor_mac.mm", "patch": "@@ -34,17 +34,6 @@ - (id)init {\n selector:@selector(onScreenUnlocked:)\n name:@\"com.apple.screenIsUnlocked\"\n object:nil];\n- // A notificat...
2025-05-21T15:00:38
facebook/react
b1759882c0b8045aff27fa9e41600534d396f69c
dddcae7a11b8241cbd6e2de55f9e68881baea458
[Flight] Bypass caches in Flight fixture if requested (#33445)
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -101,6 +101,9 @@ async function renderApp(req, res, next) {\n } else if (req.get('Content-type')) {\n proxiedHeaders['Content-type'] = req.get('Content-type');\n }\n+ if (req.headers['cache-control']) {\n+ proxiedHeaders['Cache-Control']...
2025-06-06T04:42:58
nodejs/node
57bc1778a3758d1a8a1bc2884c0de0b564d6c577
0f58a3d0cbe2e6c17325665359b6b56a4d52f351
repl: fix REPL completion under unary expressions PR-URL: https://github.com/nodejs/node/pull/59744 Fixes: https://github.com/nodejs/node/issues/59735 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/repl.js", "patch": "@@ -1744,6 +1744,16 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(lastDeclarationInitCode);\n }\n \n+ // If the last statement is an expression statement with a unary operator (delete, typeof, etc.)\n+ // we want to extract ...
2025-09-05T17:37:04
facebook/react
b4477d3800ccb0bdf26670cd1f021d094159c38f
93f1668045b924294f5832d5044fa049cd7af16e
[Flight] Add a cached 3rd-party component to the Flight fixture (#33443) This should allow us to visualize what https://github.com/facebook/react/pull/33438 is trying to convey. An uncached 3rd-party component is displayed like this in the dev tools: <img width="1072" alt="Screenshot 2025-06-05 at 12 57 32" src="htt...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -1,4 +1,7 @@\n import * as React from 'react';\n+import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n+import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {PassThrough, Readable} from 'stream';\n \n import Co...
2025-06-05T15:19:54
golang/go
481c6df7b9006e59febbb24689ab8bf686695e9d
cec4d4303f6475475d1a632cca506e8a82072d25
io: reduce intermediate allocations in ReadAll and have a smaller final result Currently, io.ReadAll allocates a significant amount of intermediate memory as it grows its result slice to the size of the input data. This CL aims to reduce the allocated memory. Geomean benchstat results comparing existing io.ReadAll to...
[ { "path": "src/io/io.go", "patch": "@@ -707,20 +707,44 @@ func (c nopCloserWriterTo) WriteTo(w Writer) (n int64, err error) {\n // defined to read from src until EOF, it does not treat an EOF from Read\n // as an error to be reported.\n func ReadAll(r Reader) ([]byte, error) {\n+\t// Build slices of exponen...
2025-11-20T19:43:50
electron/electron
263c76df091f2dae65db19e9e3375a3afb56c556
517f5c15b957a43702bd0cc5009440d5a0a339d6
fix: prevent gc monitor 2nd pass crash (#46987)
[ { "path": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -143,19 +143,21 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n // texture, output it in second pass callback.\n data.SetSecondPassCallback([](const v8::WeakCallbackInfo<\n ...
2025-05-20T13:54:03
vercel/next.js
5c70b4beaa80ec7031284153ba012b243788ef1e
1a2eccf30e4c210c910178228c51bc16385a8c90
Turbopack: add `?dpl=` to all asset urls returned by Turbopack (#88828) ### What? Closes PACK-6554 All asset urls returned by Turbopack should include a `?dpl` suffix.
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -11,12 +11,12 @@ use turbopack::module_options::{\n side_effect_free_packages_glob,\n };\n use turbopack_browser::{\n- BrowserChunkingContext, ChunkSuffix, ContentHashing, CurrentChunkMethod,\n+ BrowserChunkingContext, ContentHa...
2026-01-23T21:38:24
nodejs/node
8e2b093c0793768498db6fa6f73da13d88db78c1
fdef0725de03a719c78757bd9aae2b01e4bc7863
url: add err.input to ERR_INVALID_FILE_URL_PATH Otherwise there's no information from the error about what exactly is the invalid URL. PR-URL: https://github.com/nodejs/node/pull/59730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/errors.md", "patch": "@@ -1996,6 +1996,9 @@ A Node.js API that consumes `file:` URLs (such as certain functions in the\n [`fs`][] module) encountered a file URL with an incompatible path. The exact\n semantics for determining whether a path can be used is platform-dependent.\n \n+The thro...
2025-09-05T17:03:16
golang/go
cec4d4303f6475475d1a632cca506e8a82072d25
f1bbc66a10a545811a21dcf9f9431e783aafcb42
os: allow direntries to have zero inodes on Linux Some Linux filesystems have been known to return valid enties with zero inodes. This new behavior also puts Go in agreement with recent glibc. Fixes #76428 Change-Id: Ieaf50739a294915a3ea2ef8c5a3bb2a91a186881 GitHub-Last-Rev: 8f83d009ef0320fd3fe7cf03e55d5d24df57f015 ...
[ { "path": "src/os/dir_unix.go", "patch": "@@ -112,7 +112,8 @@ func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEn\n \t\t// or might expose a remote file system which does not have the concept\n \t\t// of inodes. Therefore, we cannot make the assumption that it is safe\n \t\t// t...
2025-11-25T03:55:45
facebook/react
37054867c15a7381abe0f73d98f3fecd06da52da
d742611ce40545127032f4e221c78bf9f70eb437
[Flight] Forward debugInfo from awaited instrumented Promises (#33415) Stacked on #33403. When a Promise is coming from React such as when it's passed from another environment, we should forward the debug information from that environment. We already do that when rendered as a child. This makes it possible to also `...
[ { "path": ".eslintrc.js", "patch": "@@ -561,6 +561,7 @@ module.exports = {\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n AnimationFrameID: 'readonly',\n+ WeakRef: 'readonly',\n // For Flow type annotation. Only `BigInt` ...
2025-06-04T04:49:03
electron/electron
e0ea069859bae238eac3ea65d51500607393c166
7cc76c094a38e350045c1346bfe8ce6ebf6f1c44
build: remove `fix_linter_error.patch` (#47150) build: remove fix_linter_error.patch
[ { "path": "patches/chromium/.patches", "patch": "@@ -133,6 +133,5 @@ feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n-fi...
2025-05-19T20:52:01
nodejs/node
cfcb355ee0311afd4794b57161e4859709476119
538186b84fb45ed725ea3d6353ec2353253e3ccd
doc: fix missing links in the `errors` page PR-URL: https://github.com/nodejs/node/pull/59427 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2183,8 +2183,8 @@ contains the URL that failed to parse.\n \n ### `ERR_INVALID_URL_PATTERN`\n \n-An invalid URLPattern was passed to the [WHATWG][WHATWG URL API] \\[`URLPattern`\n-constructor]\\[`new URLPattern(input)`] to be parsed.\n+An invalid URLPattern was p...
2025-09-05T04:38:43
rust-lang/rust
9975d4760d1888a7cbd4bd9acfd26101792a3bcf
fd0c901b00ee1e08a250039cdb90258603497e20
Reorder inline asm operands in pretty printer to satisfy grammar constraints After macro expansion, named `asm!` operands are converted to positional operands and the template string uses numeric indices. However, the pretty printer previously emitted operands in their original AST order, which could place positional ...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -1620,8 +1620,86 @@ impl<'a> State<'a> {\n Options(InlineAsmOptions),\n }\n \n- let mut args = vec![AsmArg::Template(InlineAsmTemplatePiece::to_string(&asm.template))];\n- args.extend(asm.operands.iter(...
2026-03-19T10:27:36
golang/go
43cfd785e72ccd04fe638395aa80029aae23fef6
312b2034a4e16583fac00070e698c3d464eca1c8
cmd/link, runtime, debug/gosym: move pclntab magic to internal/abi Change-Id: I2d3c41b0e61b994d7b04bd16a791fd226dc45269 Reviewed-on: https://go-review.googlesource.com/c/go/+/720302 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Cherry Mui <cherryyz@google...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -261,7 +261,7 @@ func (state *pclntab) generatePCHeader(ctxt *Link) {\n \n \t\t// Write header.\n \t\t// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.\n-\t\theader.SetUint32(ctxt.Arch, 0, 0xfffffff1)\n+\t\theader.SetUint32(ct...
2025-11-13T21:01:14
vercel/next.js
1a2eccf30e4c210c910178228c51bc16385a8c90
1fbb35f2037c944823d5875a12fcbf717f7cc04b
Improve performance and token usage of `/ci-failures` command (#88960) Improve performance and token usage of `/ci-failures` command include type in failure table, provide more instructions use subagents <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly...
[ { "path": ".claude/commands/ci-failures.md", "patch": "@@ -1,91 +1,76 @@\n # Check CI Failures\n \n-Analyze failing tests from PR CI runs with parallel subagent log analysis.\n+Analyze failing tests from PR CI runs.\n \n ## Usage\n \n ```\n-/ci-failures [pr-number]\n+/ci-failures\n ```\n \n-If no PR number ...
2026-01-23T21:37:19
electron/electron
7cc76c094a38e350045c1346bfe8ce6ebf6f1c44
3660432f42ae7ab311f12d139fb0032bd06a0f2b
chore: bump node to v22.15.1 (main) (#47105) * chore: bump node in DEPS to v22.15.1 * chore: fixup patch indices * src: fix error handling on async crypto operations https://github.com/nodejs-private/node-private/pull/709 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply....
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.0',\n+ 'v22.15.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-05-19T20:12:48
facebook/react
154008172573d64519ebbc23da611a27073b0a8c
9cc74fec749bcca2e0f5d1e41aa612b2135641ff
[Flight] Encode Async I/O Tasks using the Enclosing Line/Column (#33403) Stacked on #33402. There's a bug in Chrome Performance tracking which uses the enclosing line/column instead of the callsite in stacks. For our fake eval:ed functions that represents functions on the server, we can position the enclosing functi...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -813,7 +813,13 @@ function createElement(\n console,\n getTaskName(type),\n );\n- const callStack = buildFakeCallStack(response, stack, env, createTaskFn);\n+ const callStack = buildFakeCallStack(\n+ ...
2025-06-03T21:30:31
nodejs/node
3ffc3d73ac75cf85f2c2ab57fa8361431ca07102
2258f22672a084ea1de6354bbc3b69c218654e20
esm: fix missed renaming in ModuleJob.runSync https://redirect.github.com/nodejs/node/pull/59675 missed a case when renaming .async to .hasAsyncGraph. This fixes that and add a test that would previously crash with the missed rename. PR-URL: https://github.com/nodejs/node/pull/59724 Refs: https://github.com/nodejs/no...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -335,7 +335,7 @@ class ModuleJob extends ModuleJobBase {\n const parentFilename = urlToFilename(parent?.filename);\n this.module.hasAsyncGraph ??= this.module.isGraphAsync();\n \n- if (this.module.async && !getOptionValue('--e...
2025-09-04T10:01:32
rust-lang/rust
e9740a4be5cf4e89accacae0bd868557d942d247
fd0c901b00ee1e08a250039cdb90258603497e20
Insert space after float literal ending with `.` in pretty printer The pretty printer was collapsing unsuffixed float literals (like `0.`) with adjacent dot tokens, producing ambiguous or invalid output: - `0. ..45.` (range) became `0...45.` - `0. ..=360.` (inclusive range) became `0...=360.` - `0. .to_string()` (met...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs", "patch": "@@ -260,12 +260,15 @@ impl<'a> State<'a> {\n //\n // loop { break x; }.method();\n //\n- self.print_expr_cond_paren(\n- receiver,\n- receiver.precedence() < ExprPrecedence::Unam...
2026-03-19T10:27:40
vercel/next.js
20be9bb47a69e850ec474e0a60ea9e6d8e998d8a
2b3d4f815bff3ef3a12f3ca5d787032dd6123769
[turbopack] add task type infromation to the print_cache_item_size feature (#88925) Enhance our debugging output to include information about TaskType values example output: ``` Task type cache stats: 337.82MiB (364.22MiB) 49.98MiB (53.43MiB) <ModuleAssetContext as AssetContext>::resolve_asset x 417238 avg 125B (1...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1177,14 +1177,28 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .into_iter()\n .collect::<Vec<_>>();\n if !task_cache_stats.is_empty() {\n+ ...
2026-01-23T18:15:11
golang/go
d8269ab0d59212fed0f5975f7083f6bbbfc00ec4
c6d64f85565e6a934110c4928ca95fea0045ebaa
cmd/link, cmd/internal/obj: fix a remote call failure issue When a function call exceeds the immediate value range of the instruction, a trampoline is required to assist in the jump. Trampoline is only omitted when plt is needed; otherwise, a check is required. Change-Id: I7fe2e08d75f6f574475837b560e650bbd4215858 Rev...
[ { "path": "src/cmd/internal/obj/loong64/asm.go", "patch": "@@ -2437,6 +2437,9 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\tv := int32(0)\n \t\tif p.To.Target() != nil {\n \t\t\tv = int32(p.To.Target().Pc-p.Pc) >> 2\n+\t\t\tif v < -1<<25 || v >= 1<<25 {\n+\t\t\t\tc.ctxt.Diag(\"branc...
2025-11-24T09:28:42
facebook/react
2e9f8cd3e031212bc507e31e2888f8f96b1de138
65a46c7eebb731ba5c1602afef87365491beb75d
Clear bundler cache before bundling fixtures (#33426)
[ { "path": "fixtures/fizz/package.json", "patch": "@@ -28,8 +28,8 @@\n \"prettier\": \"1.19.1\"\n },\n \"scripts\": {\n- \"predev\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n- \"prestart\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n+ \"predev\": \"cp -r ../...
2025-06-03T19:10:13
electron/electron
5dd6481e53b253463ec65ebe806f5c14dc855924
d72e622a3fd25c462e2e3916469c2ac571bcdb47
fix: explicit microtask scope DCHECK condition (#47134)
[ { "path": "shell/common/node_util.cc", "patch": "@@ -15,6 +15,7 @@\n #include \"shell/browser/javascript_environment.h\"\n #include \"shell/common/gin_converters/callback_converter.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/process_util.h\"\n #include \"third_party/electron_no...
2025-05-19T03:08:59
rust-lang/rust
c77768590dbc2e63acf853ab86177de3fb4e5bfb
fd0c901b00ee1e08a250039cdb90258603497e20
Fix whitespace after fragment specifiers in macro pretty printing When a macro-generating-macro captures fragment specifier tokens (like `$x:ident`) as `tt` metavariables and replays them before a keyword (like `where`), the pretty printer concatenates them into an invalid fragment specifier (e.g. `$x:identwhere` inst...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -329,6 +329,19 @@ fn print_crate_inner<'a>(\n /// - #63896: `#[allow(unused,` must be printed rather than `#[allow(unused ,`\n /// - #73345: `#[allow(unused)]` must be printed rather than `# [allow(unused)]`\n ///\n+/// Returns `true` i...
2026-03-19T10:27:40
nodejs/node
2258f22672a084ea1de6354bbc3b69c218654e20
3903ee8cf3da6961eb3f5939a84235fa12f8d7a3
test_runner: fix todo inheritance PR-URL: https://github.com/nodejs/node/pull/59721 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-B...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -647,7 +647,7 @@ class Test extends AsyncResource {\n this.expectedAssertions = plan;\n this.cancelled = false;\n this.skipped = skip !== undefined && skip !== false;\n- this.isTodo = todo !== undefined && todo !== false;\n+ this.i...
2025-09-04T09:35:48
golang/go
c6d64f85565e6a934110c4928ca95fea0045ebaa
c048a9a11f21e879a76e328b7a92f3a47f298b37
cmd/internal/obj/loong64: remove the incorrect unsigned instructions The loong64 ISA does not support the 32-bit unsigned arithmetic instructions ADDU, SUBU and MULU. Change-Id: Ifa67de9c59aa12d08844189ed23e6daad0cc11ea Reviewed-on: https://go-review.googlesource.com/c/go/+/722760 Reviewed-by: abner chenc <chenguoqi@...
[ { "path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s", "patch": "@@ -199,8 +199,6 @@ lable2:\n \tMOVHU\tR4, 1(R5)\t\t// a4044029\n \tMOVHU\ty+8(FP), R4\t\t// 6440402a\n \tMOVHU\t1(R5), R4\t\t// a404402a\n-\tMULU\tR4, R5\t \t\t// a5101c00\n-\tMULU\tR4, R5, R6\t\t// a6101c00\n \tMULH\tR4, R5\t \t\t/...
2025-11-21T09:22:05
vercel/next.js
631b2c60c89352e794b7d863db79457a278fe2ac
599fc3f82a40044bb31d64f08dcd7b5a6ded2b8d
Add Graphite workflow Cursor command (#88939) ### What? Adds a Cursor command file (`.cursor/commands/gt-workflow.md`) that provides guidance on using Graphite (gt) instead of git for branch and commit operations. ### Why? To make the Graphite workflow easily accessible within Cursor IDE via the `/gt-workflow` comm...
[ { "path": ".cursor/commands/gt-workflow.md", "patch": "@@ -0,0 +1,67 @@\n+# Git Workflow with Graphite\n+\n+## Overview\n+\n+Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n+\n+## Forbidden Git Commands\n+\n+NEVER use these git commands directly:\n+\n+- `git push...
2026-01-23T12:42:30
facebook/react
3fb17d16a4838e132d0d6dbb08f91b7e7da691eb
acee65d6d031697ab8c71932a5b028351cbc3b03
[Flight] Encode ReactIOInfo as its own row type (#33390) Stacked on #33388. This encodes the I/O entries as their own row type (`"J"`). This makes it possible to parse them directly without first parsing the debug info for each component. E.g. if you're just interested in logging the I/O without all the places it was...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -13,6 +13,7 @@ import type {\n ReactComponentInfo,\n ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactIOInfo,\n ReactTimeInfo,\n ReactStackTrace,\n ReactFunctionLocation,\n@@ -47,6 +48,7 @@ import {\n enablePostpone,\n ...
2025-06-03T18:16:34
electron/electron
e2bcd8f0aadffd74bc85eedebe1a2ceab91e1356
99a3e360ec1783f25399a25c6efb3bae017bdcea
test: fix desktopCapturer mocha syntax (#47088) * test: fix desktopCapturer mocha syntax do not nest `it` calls in desktopCapturer specs * empty commit
[ { "path": "spec/api-desktop-capturer-spec.ts", "patch": "@@ -99,7 +99,7 @@ ifdescribe(!process.arch.includes('arm') && process.platform !== 'win32')('deskt\n expect(isEmpties.every(e => e === true)).to.be.true();\n });\n \n- it('getMediaSourceId should match DesktopCapturerSource.id', async () => {\n...
2025-05-15T20:54:49
rust-lang/rust
e15897f6c4bd948526b8f43d3ea8874075eccab9
fd0c901b00ee1e08a250039cdb90258603497e20
Parenthesize or-patterns in prefix pattern positions in pretty printer The AST pretty printer was dropping parentheses around or-patterns when they appeared inside `@` bindings, `&` references, or `box` patterns. For example: - `v @ (1 | 2 | 3)` was printed as `v @ 1 | 2 | 3` - `&(1 | 2 | 3)` was printed as `&1 | 2 |...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -1749,6 +1749,23 @@ impl<'a> State<'a> {\n }\n }\n \n+ /// Print a pattern, parenthesizing it if it is an or-pattern (`A | B`).\n+ ///\n+ /// Or-patterns have the lowest precedence among patterns, so they need\n+ ...
2026-03-19T10:27:40
nodejs/node
a87f1c140ed24deeaf4f512b2f8f3037556bf9a2
b8fa294994210f8bedb9de2b7fba292bae0b7ae2
build: fix getting OpenSSL version on Windows Node.js on Windows is built with `clang`, not `gcc`. PR-URL: https://github.com/nodejs/node/pull/59609 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "configure.py", "patch": "@@ -20,9 +20,9 @@\n original_argv = sys.argv[1:]\n \n # gcc and g++ as defaults matches what GYP's Makefile generator does,\n-# except on OS X.\n-CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')\n-CXX = os.environ.get('CXX', 'c++' if sys.platform == ...
2025-09-04T09:28:24
vercel/next.js
13c47b3ff46ec4dc323130b7b5beec4b1df9121b
c582bf8eb2e1fabb020c940f360562b70a26c6c2
Turbopack: improve module type error message (#88815) ### What? improve module type error message
[ { "path": "turbopack/crates/turbopack/src/lib.rs", "patch": "@@ -674,10 +674,12 @@ async fn process_default_internal(\n ModuleIssue::new(\n *ident,\n rcstr!(\"Invalid module type\"),\n- ...
2026-01-23T09:14:06
electron/electron
99a3e360ec1783f25399a25c6efb3bae017bdcea
883f48b9b499b0f626b354910bfa4b6f427a7363
fix: opening package paths as directory on macOS (#47077)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -318,9 +318,10 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL exists =\n [[NSFileManager defaultManager] fileExistsAtPath:path\n isDirectory:&is_directory];\n- ...
2025-05-15T17:47:46
golang/go
ff2fd6327ecb343d96074dff3ccee359b5f1d629
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
go/types, types2: remove setDefType and most def plumbing CL 722161 replaced the setDefType mechanism with boundaries on composite literals, removing the need to pass the def argument in all but 1 case. The exception is interface types, which use def to populate the receiver type for better error messages. Change-Id...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -669,7 +669,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {\n+func (check *Check...
2025-11-24T19:34:39
rust-lang/rust
082cdf7c48245088b3384e8a573e60b8dda14d9d
fd0c901b00ee1e08a250039cdb90258603497e20
Preserve braces around `self` in use tree pretty printing The AST pretty printer strips braces from single-item `use` sub-groups, simplifying `use foo::{Bar}` to `use foo::Bar`. However, when the single item is `self`, this produces `use foo::self` which is not valid Rust (E0429) — the grammar requires `use foo::{self...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/item.rs", "patch": "@@ -881,7 +881,13 @@ impl<'a> State<'a> {\n }\n if items.is_empty() {\n self.word(\"{}\");\n- } else if let [(item, _)] = items.as_slice() {\n+ } else i...
2026-03-19T10:27:40
facebook/react
acee65d6d031697ab8c71932a5b028351cbc3b03
1ae0a845bde5b95dfc319cadf366cb7b3fb1ca92
[Flight] Track Awaits on I/O as Debug Info (#33388) This lets us track what data each Server Component depended on. This will be used by Performance Track and React DevTools. We use Node.js `async_hooks`. This has a number of downside. It is Node.js specific so this feature is not available in other runtimes until so...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -0,0 +1,41 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n...
2025-06-03T18:14:40
nodejs/node
5600c0eb4094c78b833666840561242dd24d618b
5b32bb1573dace2dd058c05ac4fab1e4e446c775
src: fix build on NetBSD Include missing cmath.h header. Fixes: https://github.com/nodejs/node/issues/59714 PR-URL: https://github.com/nodejs/node/pull/59718 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Re...
[ { "path": "src/tracing/traced_value.cc", "patch": "@@ -9,6 +9,7 @@\n #include <unicode/utypes.h>\n #endif\n \n+#include <cmath>\n #include <sstream>\n \n #include \"node_metadata.h\"", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2025-09-04T08:00:30
vercel/next.js
c582bf8eb2e1fabb020c940f360562b70a26c6c2
2e2dd02c120ebe62c154043acb1fdbd8537dd1b7
fix typo (#88934) typo
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1347,7 +1347,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .flatten()\n } {\n // Task exists in backing storage\n- // So we only need to insert it in...
2026-01-23T08:52:09
golang/go
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
go/types, types2: replace setDefType with pending type check Given a type definition of the form: type T RHS The setDefType function would set T.fromRHS as soon as we knew its top-level type. For instance, in: type S struct { ... } S.fromRHS is set to a struct type before type-checking anything inside the stru...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -993,6 +993,13 @@ func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, a\n \t\tcheck.nonGeneric(T, x)\n \t}\n \n+\t// Here, x is a value, meaning it has a type. If that type is pending, then we have\n+\t// a cycle. A...
2025-11-24T22:04:49
electron/electron
6170a5af40b12cfc2d32fb6690fafb22b743fb40
d65a856bf3cfda04db4c4a2725272e825366a60d
chore: combine all the "patch out Profiles" changes into a single patch (#47063) * chore: fold the profile patches into one patch * chore: e patches all * chore: patch out ProfileSelections::ApplyProfileSelection() Another profile reference. Referenced iff making a debug build.
[ { "path": "patches/chromium/.patches", "patch": "@@ -91,14 +91,11 @@ fix_remove_caption-removing_style_call.patch\n build_allow_electron_to_use_exec_script.patch\n chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n-chore_patch_out_profile_method...
2025-05-14T14:21:11
rust-lang/rust
4a60dae793e07440c32ec2d5ef71bf58cf1df7a9
cec0a68d6a69a9c29efc4055f7215dff1c9de103
Add UI tests for path resolution errors of `impl` restrictions
[ { "path": "tests/ui/impl-restriction/restriction_resolution_errors.rs", "patch": "@@ -0,0 +1,85 @@\n+#![feature(impl_restriction)]\n+#![expect(incomplete_features)]\n+\n+pub mod a {\n+ pub enum E {}\n+ pub mod d {}\n+ pub mod b {\n+ pub mod c {}\n+\n+ // We do not use crate-relative p...
2026-03-19T09:43:32
facebook/react
526dd340b3e77193846fe5eed02b9bb89d7c2d15
ee76351917106c6146745432a52e9a54a41ee181
[compiler][patch] Emit unary expressions instead of negative numbers (#33383) This is a babel bug + edge case. Babel compact mode produces invalid JavaScript (i.e. parse error) when given a `NumericLiteral` with a negative value. See https://codesandbox.io/p/devbox/5d47fr for repro.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1726,7 +1726,7 @@ function codegenInstructionValue(\n }\n case 'UnaryExpression': {\n value = t.unaryExpression(\n- instrValue.operator as 'throw', // todo\n+ in...
2025-06-02T15:43:45
nodejs/node
35053d82299d1b31627664c80f045102c4bf06b2
737b42e4eeaf975ae11d15887898fb99f0e8da1c
build: fix 'implicit-function-declaration' on OpenHarmony platform PR-URL: https://github.com/nodejs/node/pull/59547 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@ho...
[ { "path": "deps/uvwasi/uvwasi.gyp", "patch": "@@ -28,7 +28,7 @@\n 'include_dirs': ['include']\n },\n 'conditions': [\n- [ 'OS==\"linux\"', {\n+ [ 'OS==\"linux\" or OS==\"openharmony\"', {\n 'defines': [\n '_GNU_SOURCE',\n '_POSIX_C_SOURCE=2...
2025-09-02T16:27:04
vercel/next.js
7282ce6759ea2373b2060e0720abe8983e1a87ae
5a0b9787c7ef8beb5bc194c5e7182112919f0567
[prebuilt-skew-protection] feat: adding in automatic deploymentId (#88496) Original [PR](https://github.com/vercel/next.js/pull/88012/) has a bug that attempted to validate on environment variables. Edited function to not run validations on environment variables, only on the user provided deployment id. <!-- Thanks f...
[ { "path": "errors/deploymentid-invalid-characters.mdx", "patch": "@@ -0,0 +1,71 @@\n+---\n+title: '`deploymentId` contains invalid characters'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` in your `next.config.js` contains characters that are not allowed. Only alphanumeric characters (a-z, A...
2026-01-22T21:07:34
rust-lang/rust
74776c4008a668e70733e16d8cf8519f3551e388
fd0c901b00ee1e08a250039cdb90258603497e20
Rewrite `query_ensure_result`. It currently uses chaining which is concise but hard to read. There are up to four implicit matches occurring after the call to `execute_query_fn`. - The first `map` on `Option<Erased<Result<T, ErrorGuaranteed>>>`. - The second `map` on `Option<Result<T, ErrorGuaranteed>>`. - The third `...
[ { "path": "compiler/rustc_middle/src/query/inner.rs", "patch": "@@ -77,23 +77,34 @@ where\n C: QueryCache<Value = Erased<Result<T, ErrorGuaranteed>>>,\n Result<T, ErrorGuaranteed>: Erasable,\n {\n+ let convert = |value: Erased<Result<T, ErrorGuaranteed>>| -> Result<(), ErrorGuaranteed> {\n+ ...
2026-03-19T00:06:21
golang/go
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
21ebed0ac0a3f733811bea2355ed85d3b1bf6fbd
crypto,testing/cryptotest: ignore random io.Reader params, add SetGlobalRandom First, we centralize all random bytes generation through drbg.Read. The rest of the FIPS 140-3 module can't use external functions anyway, so drbg.Read needs to have all the logic. Then, make sure that the crypto/... tree uses drbg.Read (o...
[ { "path": "api/next/70942.txt", "patch": "@@ -0,0 +1 @@\n+pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/godebug.md", "patch": "@@ -178,6 +178,11 @@ includes these key/value pairs in...
2025-09-15T16:58:04
facebook/react
ee76351917106c6146745432a52e9a54a41ee181
8b55eb4e724271206bd5dec7dba0a35aedc74493
fix typo in compiler validation filename (#33345) ## Summary While investigating the root cause of #33208, I noticed a clear typo for one of the validation files. ## How did you test this change? Inside `/react/compiler/packages/babel-plugin-react-compiler` I ran the test script successfully: <img width="415" alt=...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/index.ts", "patch": "@@ -9,7 +9,7 @@ export {validateContextVariableLValues} from './ValidateContextVariableLValues';\n export {validateHooksUsage} from './ValidateHooksUsage';\n export {validateMemoizedEffectDependencies} from './Valid...
2025-05-30T23:31:16
electron/electron
d65a856bf3cfda04db4c4a2725272e825366a60d
f2639d13ccc2c70cc45d63518924d1a4e08886b6
chore: bump chromium to 138.0.7177.0 (main) (#47081) * chore: bump chromium in DEPS to 138.0.7177.0 * 6530423: [WebContents] Fix IsNeverComposited() calls during initialization Refs https://chromium-review.googlesource.com/c/chromium/src/+/6530423 * 6512551: [ios] Enable -Wobjc-property-assign-on-object-type Refs ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7175.0',\n+ '138.0.7177.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-14T14:08:31
rust-lang/rust
b2e8177455cad2c001a58d43a4dec6d896cea0ad
fd0c901b00ee1e08a250039cdb90258603497e20
Reorder `define_callbacks`. This is nitpicky, but the lack of a sensible order has been bugging me. - Within `mod $name`, put all the typedefs together. - After that: - First, types definitions and their impls. - Then the `TyCtxt*` impls, in a sensible order. - Likewise, put `TyCtxt::at` before the similar me...
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -201,6 +201,13 @@ pub struct TyCtxtEnsureDone<'tcx> {\n }\n \n impl<'tcx> TyCtxt<'tcx> {\n+ /// Returns a transparent wrapper for `TyCtxt` which uses\n+ /// `span` as the location of queries performed through it.\n+ #[inline(alwa...
2026-03-19T04:59:16
vercel/next.js
092458fd6a84bd0cf1b6fa7eb814bcb13f4e6637
4e8671cf5c142b1661b6b53404782aace2fb8d71
feat: implement LRU cache with invocation ID scoping for minimal mode response cache (#88509) ## Summary Implements an LRU cache with compound keys for the minimal mode response cache to improve cache hit rates during parallel revalidation scenarios. **Problem**: The previous single-entry cache (`previousCacheItem`)...
[ { "path": "packages/next/src/server/lib/lru-cache.test.ts", "patch": "@@ -226,4 +226,75 @@ describe('LRUCache', () => {\n expect(cache.has('key149')).toBe(true) // recent keys retained\n })\n })\n+\n+ describe('onEvict Callback', () => {\n+ it('should call onEvict when an entry is evicted', ...
2026-01-22T18:45:15
nodejs/node
737b42e4eeaf975ae11d15887898fb99f0e8da1c
961554c89dd2793a43e7c8e2a2e5768c7d0b2b73
src: fix race on process exit and off thread CA loading When calling `process.exit()` or on uncaught exceptions as soon as the process starts, the process will try to terminate immediately. In this case, there could be a race condition on the unfinished off-thread system CA loader which tries to access the OpenSSL API...
[ { "path": "src/api/environment.cc", "patch": "@@ -1,4 +1,7 @@\n #include <cstdlib>\n+#if HAVE_OPENSSL\n+#include \"crypto/crypto_util.h\"\n+#endif // HAVE_OPENSSL\n #include \"env_properties.h\"\n #include \"node.h\"\n #include \"node_builtins.h\"\n@@ -1004,6 +1007,11 @@ void DefaultProcessExitHandlerInter...
2025-09-02T10:19:25
facebook/react
14094f80cbf52cad4024211080d8491f3334ef61
5717f1933f2e8b10406fde1043c3047cbfbddc82
Allow `nonce` to be used on hoistable styles (#32461) fixes https://github.com/facebook/react/issues/32449 This is my first time touching this code. There are multiple systems in place here and I wouldn't be surprised to learn that this has to be handled in some other areas too. I have found some other style-related ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -135,6 +135,13 @@ const SentMarkShellTime /* */ = 0b001000000;\n const NeedUpgradeToViewTransitions /* */ = 0b010000000;\n const SentUpgradeToViewTransitions /* */ = 0b100000000;\n \n+type NonceOpti...
2025-05-29T15:17:10
electron/electron
e3e647d21e3997810f446a9e75b5548719e86858
7ab032f5940cc7bf6189163d130b284516d16bc0
chore: bump chromium to 138.0.7175.0 (main) (#46986) * chore: bump chromium in DEPS to 138.0.7166.0 * chore: bump chromium in DEPS to 138.0.7166.2 * 6508373: Add WebContents, Tab getters for future Clank navigation capture rework https://chromium-review.googlesource.com/c/chromium/src/+/6508373 * 6470924: Introduc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7165.0',\n+ '138.0.7175.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-13T18:51:20
nodejs/node
fe1a2e33f5e71787546213f20442dc3173bddde1
dddc4a597288ba30a46bfef762dd22ab732b941e
fs: fix dereference: false on cpSync PR-URL: https://github.com/nodejs/node/pull/59681 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pin...
[ { "path": "src/node_file.cc", "patch": "@@ -3245,8 +3245,8 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n errorno, dereference ? \"stat\" : \"lstat\", nullptr, src.out());\n }\n auto dest_status =\n- dereference ? std::filesystem::symlink_status(dest_path, erro...
2025-08-31T17:30:53
vercel/next.js
61bf6f633f26a6eadee31693fe4b11c5f43e97cd
85d043a64aec4f49a6432e4c1a693881e6688e49
Turbopack: Fix next/font preloading for page.mdx (#88848) ## What? This PR fixes font preloading for MDX pages in Turbopack and adds an e2e test to verify the fix. ## Why? When using `next/font` with MDX pages, font preloading was failing with Turbopack because the LoaderTree was storing the **transformed module pa...
[ { "path": "crates/next-core/src/base_loader_tree.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use indoc::formatdoc;\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{FxIndexMap, ResolvedVc, ValueToString, Vc};\n+use turbo_tasks::{FxIndexMap, ResolvedVc, Vc};\n use turbo_tasks_fs::FileSystemPath;\n use...
2026-01-22T14:56:50
facebook/react
c0464aedb16b1c970d717651bba8d1c66c578729
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
[Fizz] Block on Suspensey Fonts during reveal (#33342) This is the same technique we do for the client except we don't check whether this is newly created font loading to keep code small. Unfortunately, we can't use this technique for Suspensey images. They'll need to block before we call `startViewTransition` in a s...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -8,7 +8,7 @@ export const clientRenderBoundary =\n export const completeBoundary =\n '$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=...
2025-05-23T17:26:02
rust-lang/rust
a3e469ea1f03936e2156b7d683aa7fc83d56a252
fcdaca4d9b14274ddcfa47eda8183d3db9be4137
fix some outdated comments in tests
[ { "path": "src/tools/miri/tests/fail/stacked_borrows/transmute-is-no-escape.rs", "patch": "@@ -2,7 +2,7 @@\n // (i.e, no EscapeToRaw happened).\n // We could, in principle, do EscapeToRaw lazily to allow this code, but that\n // would no alleviate the need for EscapeToRaw (see `ref_raw_int_raw` in\n-// `run...
2026-03-19T06:48:27
electron/electron
7ab032f5940cc7bf6189163d130b284516d16bc0
2493e530d0ad2b68091e4388352e6c1ab6491c7d
fix: white window flicker on window creation (#47022)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -37,6 +37,7 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/aura/window_tree_host.h\"\n #include \"ui/base/hit_test.h\"\n+#include \"ui/compositor/compositor.h\"\n #include \"ui/display/screen.h\"\n #include \"ui/gfx/image/imag...
2025-05-10T23:24:35
nodejs/node
dddc4a597288ba30a46bfef762dd22ab732b941e
494909b4f8f2f10b277140eaf96343d4dc26a115
lib: fix DOMException subclass support PR-URL: https://github.com/nodejs/node/pull/59680 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/per_context/domexception.js", "patch": "@@ -60,7 +60,6 @@ const disusedNamesSet = new SafeSet()\n .add('NoDataAllowedError')\n .add('ValidationError');\n \n-let DOMExceptionPrototype;\n // The DOMException WebIDL interface defines that:\n // - ObjectGetPrototypeOf(DOMException) =...
2025-08-31T17:20:02
vercel/next.js
85d043a64aec4f49a6432e4c1a693881e6688e49
98fd3456fb19b1305816ccba8f45d43eb1e367da
Create-next-app update message (#88706) ### What? This PR fixes `create-next-app` update notifications for prerelease versions by checking against the correct npm dist-tag. ### Why? Users running `pnpx create-next-app@canary` were incorrectly prompted to update to the stable version because: 1. The `update-check` ...
[ { "path": "packages/create-next-app/index.ts", "patch": "@@ -656,7 +656,18 @@ async function run(): Promise<void> {\n conf.set('preferences', preferences)\n }\n \n-const update = updateCheck(packageJson).catch(() => null)\n+// Determine the appropriate dist-tag to check for updates.\n+// For prerelease ve...
2026-01-22T14:38:37
facebook/react
6a1dfe37776e5a41f4c1e07c33cf1f26c4a82979
99efc627a5a8cb56f50cfffee544c86c49572b6f
Disable moveBefore experiment (#33348) There seems to be some bugs still to work out in Chrome. See #33187. Additionally, since you can't really rely on this function existing across browsers, it's hard to depend on its behavior anyway. In fact, you now have a source of inconsistent behaviors across browsers to deal ...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -194,7 +194,7 @@ export const disableLegacyContext = true;\n export const disableLegacyContextForFunctionComponents = true;\n \n // Enable the moveBefore() alternative to insertBefore(). This preserves states of moves.\n-export const enableMoveB...
2025-05-23T17:25:13
golang/go
a3fb92a7100f3f2824d483ee0cbcf1264584b3e4
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
runtime/secret: implement new secret package Implement secret.Do. - When secret.Do returns: - Clear stack that is used by the argument function. - Clear all the registers that might contain secrets. - On stack growth in secret mode, clear the old stack. - When objects are allocated in secret mode, mark them and t...
[ { "path": "doc/next/6-stdlib/1-secret.md", "patch": "@@ -0,0 +1,20 @@\n+### New secret package\n+\n+<!-- https://go.dev/issue/21865 --->\n+\n+The new [secret](/pkg/runtime/secret) package is available as an experiment.\n+It provides a facility for securely erasing temporaries used in\n+code that manipulates...
2025-09-25T16:26:03
rust-lang/rust
f60b6499d84ccf8bf0c325bf7ff3f736e134b730
fd0c901b00ee1e08a250039cdb90258603497e20
rustc_resolve: improve const generic errors Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_resolve/src/build_reduced_graph.rs", "patch": "@@ -898,7 +898,7 @@ impl<'a, 'ra, 'tcx> BuildReducedGraphVisitor<'a, 'ra, 'tcx> {\n }\n \n // These items live in both the type and value namespaces.\n- ItemKind::Struct(ident, _, ref vdata) => {\n+ ...
2026-02-20T14:41:37
electron/electron
10e4f9ad373bd29c61f5ed20238a308687e882ff
b9f0aebb2f54d4f6ea547a39278cf595e880ba90
feat: enable secondary label for macOS menu (#46887) * feat: enable secondary label for macOS menu * Update shell/browser/ui/cocoa/electron_menu_controller.mm Co-authored-by: Robo <hop2deep@gmail.com> * fix for lint * update docs for sublabel --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "docs/api/menu-item.md", "patch": "@@ -19,7 +19,7 @@ See [`Menu`](menu.md) for examples.\n * `type` string (optional) - Can be `normal`, `separator`, `submenu`, `checkbox` or\n `radio`.\n * `label` string (optional)\n- * `sublabel` string (optional)\n+ * `sublabel` string (optional) _mac...
2025-05-09T16:05:26
nodejs/node
f36de728115d257bcb23723ef3202cdaffc401cd
eefe3b14bfb33f0a14decd687a77bbb00099c054
wasi: fix `clean` target in `test/wasi/Makefile` PR-URL: https://github.com/nodejs/node/pull/59576 Refs: https://www.gnu.org/software/make/manual/make.html#Cleanup Refs: https://www.gnu.org/software/make/manual/make.html#Parallel-Disable Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigi...
[ { "path": "test/wasi/Makefile", "patch": "@@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c\n wasm/%.wasm : c/%.c\n \t$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@\n \n-.PHONY clean:\n+.PHONY: clean\n+.NOTPARALLEL: clean\n+clean:\n \trm -f $(OBJ)", "additions": 3, "deletions": ...
2025-08-30T19:06:03
vercel/next.js
9e933be762ada796e4d263739cda3360a3c38e91
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
[devtools] Fix notch coloring of error overlay in forced colors mode (#88892)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overlay/styles.tsx", "patch": "@@ -15,6 +15,8 @@ const styles = css`\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n+ /* color schemes we handle. Every other scheme the UA would need to overwrite */\n...
2026-01-22T11:46:54
facebook/react
99efc627a5a8cb56f50cfffee544c86c49572b6f
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
[eslint] Add an option to require dependencies on effect hooks (#33344) Summary: To prepare for automatic effect dependencies, some codebases may want to codemod existing useEffect calls with no deps to include an explicit undefined second argument in order to preserve the "run on every render" behavior. In sufficien...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -8344,6 +8344,23 @@ const testsTypescript = {\n },\n ],\n },\n+ {\n+ code: normalizeIndent`\n+ function MyComponent(props) {\n+ useEffect(() => {\n+ co...
2025-05-23T14:09:41
electron/electron
8ecd731e96ad47078733437e38ecb8ddc6c689ab
75cf8ea96d6a81525c9e1b097e2bcba488a1f83b
fix: webview crash on focus (#46979)
[ { "path": "patches/chromium/.patches", "patch": "@@ -145,3 +145,4 @@ fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n+make_focus_methods_in_webcontentsviewchildf...
2025-05-09T15:56:22
golang/go
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
0f6397384b583a18bae90421a71b6abad39a437f
go/build/constraint: use strings.Builder instead of for { str+=str } (This works around a bug in the stringsbuilder modernizer.) For #76476 Change-Id: I1cb8715fd79c0363cb9c159686eaeb3482c93228 Reviewed-on: https://go-review.googlesource.com/c/go/+/724721 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Byp...
[ { "path": "src/go/build/constraint/expr.go", "patch": "@@ -515,18 +515,18 @@ func PlusBuildLines(x Expr) ([]string, error) {\n \t// Prepare the +build lines.\n \tvar lines []string\n \tfor _, or := range split {\n-\t\tline := \"// +build\"\n+\t\tvar line strings.Builder\n+\t\tline.WriteString(\"// +build\")...
2025-11-26T22:53:04
nodejs/node
67cb0adbc29190a4558378c3d4c22c415cc53a45
5af035503a1621dfac7b3d63e307c16671fc6c8a
test: fix internet/test-dns The `nodejs.org` domain has now two TXT records. Do not verify the exact number of records returned (only their shape), and check that one of them is the SPF. PR-URL: https://github.com/nodejs/node/pull/59660 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee C...
[ { "path": "test/internet/test-dns.js", "patch": "@@ -523,9 +523,9 @@ TEST(function test_resolveTlsa_failure(done) {\n \n TEST(async function test_resolveTxt(done) {\n function validateResult(result) {\n- assert.ok(Array.isArray(result[0]));\n- assert.strictEqual(result.length, 1);\n- assert(resul...
2025-08-30T09:47:38
vercel/next.js
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
37ac3974db79adc7d8da7923f09df6d1509986e4
[devtools] Wrap long file names of stack frames in the error overlay (#88886) https://github.com/user-attachments/assets/0594744b-5dd5-4550-90b8-77071962f666 See [overflow-wrap docs](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/overflow-wrap) for break-word vs anywhere. Just a one-line...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/call-stack-frame/call-stack-frame.tsx", "patch": "@@ -2,7 +2,7 @@ import type { OriginalStackFrame } from '../../../shared/stack-frame'\n \n import { HotlinkedText } from '../hot-linked-text'\n import { ExternalIcon, SourceMappingErrorIcon } ...
2026-01-22T11:38:35
facebook/react
bfaeb4a46175fa0f4edf2eba58349d5029e5e86e
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
Fix incorrect use of NoLanes in executionContext check (#33170) ## Summary This PR fixes a likely incorrect condition in the `scheduleUpdateOnFiber` function inside `ReactFiberWorkLoop.js`. Previously, the code checked: ```js (executionContext & RenderContext) !== NoLanes ```` However, `NoLanes` is part of the lan...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -908,7 +908,7 @@ export function scheduleUpdateOnFiber(\n markRootUpdated(root, lane);\n \n if (\n- (executionContext & RenderContext) !== NoLanes &&\n+ (executionContext & RenderContext) !== NoContext &&\n root === ...
2025-05-23T02:02:39
rust-lang/rust
ca2139d3262232d6b15471783f503ffe125531f6
53d60bb1c5d325b43419c7618287a1405dec36d0
Point at return type when it is the source of the type expectation When calling an fn that returns a return type as a returned expression, point at the return type to explain that it affects the expected type. ``` error[E0308]: mismatched types --> f56.rs:5:15 | 3 | fn main() { | - the call ...
[ { "path": "compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs", "patch": "@@ -11,7 +11,7 @@ use rustc_hir::attrs::DivergingBlockBehavior;\n use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit::Visitor;\n-use rustc_hir::{Expr, ExprKind, HirId, LangIt...
2026-03-16T22:38:16
golang/go
0f6397384b583a18bae90421a71b6abad39a437f
992ad55e3dcea4bd017d618d759cb9cd3529f288
go/types: relax NewSignatureType for append(slice, str...) CL 688815 contained a partial fix for the reported bug, but NewSignatureType continued to panic. This change relaxes it to permit construction of the type "func([]byte, B) []byte" where "type B []byte". We must do so because a client may instantiate the type "...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -28,17 +28,28 @@ type Signature struct {\n \trecv *Var // nil if not a method\n \tparams *Tuple // (incoming) parameters from left to right; or nil\n \tresults *Tuple // (outgoing) results from left to ri...
2025-07-21T18:35:08
electron/electron
75cf8ea96d6a81525c9e1b097e2bcba488a1f83b
376634c75a5cae443c664f7369480a589427aa81
fix: restore previous Windows screenshotting (#47020) Fixes https://github.com/electron/electron/issues/45990 We previously made a change in https://github.com/electron/electron/pull/45868 to fix content protection being lost on hide and re-show. However, this cause a breaking change where protected windows were made...
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -126,6 +126,16 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+void ElectronDesktopWindowTreeHostWin::Hand...
2025-05-09T14:38:27
vercel/next.js
acd5d5edda97f263818b7bc5606f31afb4e785dc
4095107fd39711b4a875cf67a9173ceb4cfb38c5
Turbopack: [chore] Fix Rust check warnings (#88871) # What? Fix some unimportant `check` warnings that appear as noise in the build logs.
[ { "path": "crates/napi/src/next_api/turbopack_ctx.rs", "patch": "@@ -158,7 +158,7 @@ pub struct NapiNextTurbopackCallbacks {\n throw_turbopack_internal_error: ThreadsafeFunction<TurbopackInternalErrorOpts>,\n }\n \n-/// Arguments for [`NapiNextTurbopackCallbacks::throw_turbopack_internal_error`].\n+/// ...
2026-01-22T08:37:23
nodejs/node
5af035503a1621dfac7b3d63e307c16671fc6c8a
cbabdbf3f246dd0e65cb9262d89719c0a2c36b2f
src: migrate WriteOneByte to WriteOneByteV2 PR-URL: https://github.com/nodejs/node/pull/59634 Fixes: https://github.com/nodejs/node/issues/59555 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Darsh...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1037,8 +1037,11 @@ void IndexOfString(const FunctionCallbackInfo<Value>& args) {\n if (needle_data == nullptr) {\n return args.GetReturnValue().Set(-1);\n }\n- needle->WriteOneByte(\n- isolate, needle_data, 0, needle_length, String::NO_NU...
2025-08-29T22:41:00
facebook/react
3e9db65fc3341148a5248b3ffc6bc68c0640fd3f
0d072884f9201f645ae298936f2933970b73bec4
Fix typo in error message. (#33313) ## Summary I am writing code that isn't so good, so I saw this error message many times. It appears to have a typo. This PR fixes the typo. ## How did you test this change? Ran the tests
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js", "patch": "@@ -573,7 +573,7 @@ describe('ReactCompositeComponent-state', () => {\n assertConsoleErrorDev([\n \"Can't perform a React state update on a component that hasn't mounted yet. \" +\n 'This indicates...
2025-05-22T20:18:23
rust-lang/rust
45b22efe06630703e20de19c589299e6a592469e
1e2183119f0ee19cc26df899e26b04ad0de3475d
tests: Activate must_not_suspend test for MutexGuard dropped before await The test pass in `nightly-2023-09-24` but fail in `nightly-2023-09-23`: $ rustc +nightly-2023-09-23 --edition 2018 tests/ui/lint/must_not_suspend/mutex-guard-dropped-before-await.rs error: `MutexGuard` held across a suspend point, but s...
[ { "path": "src/tools/tidy/src/issues.txt", "patch": "@@ -1476,7 +1476,6 @@ ui/lint/issue-97094.rs\n ui/lint/issue-99387.rs\n ui/lint/let_underscore/issue-119696-err-on-fn.rs\n ui/lint/let_underscore/issue-119697-extra-let.rs\n-ui/lint/must_not_suspend/issue-89562.rs\n ui/lint/unused/issue-103320-must-use-op...
2026-03-18T20:29:45
golang/go
992ad55e3dcea4bd017d618d759cb9cd3529f288
3fd9cb1895d37682096cde4229e45bea1428dfbe
crypto/tls: support crypto.MessageSigner private keys Fixes #75656 Change-Id: I6bc71c80973765ef995d17b1450ea2026a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724820 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> Reviewed-by: Roland Shoemaker <roland@...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/tls/75656.md", "patch": "@@ -0,0 +1,2 @@\n+If [Certificate.PrivateKey] implements [crypto.MessageSigner], its SignMessage\n+method is used instead of Sign in TLS 1.2 and later.", "additions": 2, "deletions": 0, "language": "Markdown" }, { "pat...
2025-11-26T20:11:35
electron/electron
376634c75a5cae443c664f7369480a589427aa81
8e8d3a4f3e1fed290f279c5a844593db0417cd1f
feat: add support for `--experimental-network-inspection` (#46690) * feat: add support for `--experimental-network-inspection` * docs: fix minor formatting issues visible on both GH[1] and the docs site[2] [1] https://github.com/electron/electron/blob/main/docs/api/command-line-switches.md#nodejs-flags [2] https://...
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -254,7 +254,7 @@ Electron supports some of the [CLI flags][node-cli] supported by Node.js.\n \n **Note:** Passing unsupported command line switches to Electron when it is not running in `ELECTRON_RUN_AS_NODE` will have no effect.\n \n-### `--inspec...
2025-05-09T13:44:14
facebook/react
3710c4d4f9ffb6aa07e291b822e4ec7d69ed5a32
2388481283640d034fd6b4edfca4f11e67953673
Prevent errors from comment node roots with enableViewTransition (#33205) We have many cases internally where the `containerInstance` resolves to a comment node. `restoreRootViewTransitionName` is called when `enableViewTransition` is on, even without introducing a `<ViewTransition />`. So that means it can crash page...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1549,6 +1549,19 @@ export function cancelRootViewTransitionName(rootContainer: Container): void {\n rootContainer.nodeType === DOCUMENT_NODE\n ? (rootContainer: any).documentElement\n : rootContainer.own...
2025-05-21T17:57:35
nodejs/node
a240a9c2229fc9cc780266424047ce3091323561
95bef5af8884a11dd4ba36b665d8b786ef7596b0
doc: update install_tools.bat free disk space Fixes: https://github.com/nodejs/node/issues/59326 PR-URL: https://github.com/nodejs/node/pull/59579 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -13,7 +13,7 @@ echo This script will install Python and the Visual Studio Build Tools, necessar\n echo to compile Node.js native modules. Note that Chocolatey and required Windows\n echo updates will also be installed.\n echo.\n-echo This ...
2025-08-29T12:34:55
rust-lang/rust
49bb371ca74904400330e065dd847b6b9390b2a0
53d60bb1c5d325b43419c7618287a1405dec36d0
When single impl can satisfy inference error, suggest type When encountering an inference error where a return type must be known, like when calling `Iterator::sum::<T>()` without specifying `T`, look for all `T` that would satisfy `Sum<S>`. If only one, suggest it. ``` error[E0283]: type annotations needed --> $DI...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -158,6 +158,7 @@ impl UnderspecifiedArgKind {\n \n struct ClosureEraser<'a, 'tcx> {\n infcx: &'a InferCtxt<'tcx>,\n+ depth: usize,\n }\n \n impl<'a, 'tcx> ClosureEraser<'a, 'tcx> {\n@@ -172,7 +173,8 @...
2026-03-11T16:39:03
golang/go
3fd9cb1895d37682096cde4229e45bea1428dfbe
3353c100bb97954edc11c1bc07fd07db9d4bc567
cmd/compile: fix bloop get name logic This CL change getNameFrom impl to pattern match addressible patterns. Change-Id: If1faa22a3a012d501e911d8468a5702b348abf16 Reviewed-on: https://go-review.googlesource.com/c/go/+/724180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -42,40 +42,42 @@ import (\n \t\"cmd/compile/internal/reflectdata\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n-\t\"fmt\"\n+\t\"cmd/internal/src\"\n )\n \n // getNameFromNode tries to iteratively peel down the n...
2025-11-25T01:37:13
electron/electron
8e8d3a4f3e1fed290f279c5a844593db0417cd1f
2cbd968da5f20609f43db440ce9de3b0c947e026
fix: use-after-move of bus connection in xdg portal detection (#47008)
[ { "path": "shell/browser/ui/file_dialog_linux_portal.cc", "patch": "@@ -86,8 +86,9 @@ void CheckPortalAvailabilityOnBusThread() {\n << (g_portal_available ? \"yes\" : \"no\");\n flag->Set();\n bus->ShutdownAndBlock();\n+ bus.reset();\n },\n- ...
2025-05-09T09:32:08
vercel/next.js
0866832665da1b7fbd51e5ae6c8153028288340c
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
refactor: migrate to typed accessors and remove CachedDataItem adapter (#88397) Adopt the new generated accessor methods in turbo-tasks-backend. Remove the CachedDataItem enum and related support macros. This new approach is more ergonomic, memory efficient, and generates slightly smaller serialized payloads. Fro...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/counter_map.rs", "patch": "@@ -106,15 +106,7 @@ impl<K, V> CounterMap<K, V> {\n {\n self.0.get(key)\n }\n- // TODO(lukesandberg): this is just here for the CachedDataItem adaptor layer, can be removed\n- // once that is gone.\...
2026-01-22T01:53:40
nodejs/node
d08a1f96b262b628b273e830b6c80e1af50a6268
fba8e6ab4a59fe608fdd0c171a81924392ea3ec6
doc: fix quic session instance typo PR-URL: https://github.com/nodejs/node/pull/59642 Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/quic.md", "patch": "@@ -438,7 +438,7 @@ added: v23.8.0\n \n The callback to invoke when the path validation is updated. Read/write.\n \n-### `seesion.onsessionticket`\n+### `session.onsessionticket`\n \n <!-- YAML\n added: v23.8.0", "additions": 1, "deletions": 1, "language": ...
2025-08-29T02:24:57
facebook/react
9c7b10e22ea4c184c0465df15705f17ba36b115a
50389e179273558d0919d45bc5db99a21b258b03
[Fizz] Clean up row that was blocked by an aborted boundary (#33318) Fixes a bug that we caused us to hang after an abort because we didn't manage the ref count correctly.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzSuspenseList-test.js", "patch": "@@ -27,9 +27,10 @@ let writable;\n let container;\n let buffer = '';\n let hasErrored = false;\n+let hasCompleted = false;\n let fatalError = undefined;\n \n-describe('ReactDOMFizSuspenseList', () => {\n+describe('React...
2025-05-21T00:31:16
vercel/next.js
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
21fcfb01ac21c596a9109a4deeb2b39a355a53fd
Turbopack: Use webpki-root-certs in addition to rustls-platform-verifier on Linux for bare-bones Linux images without root CA stores (#88869) This should fix the user-reported issue here: https://github.com/vercel/next.js/pull/88290#issuecomment-3762940063 That issue occurs when building with bare-bones docker images...
[ { "path": "Cargo.lock", "patch": "@@ -610,7 +610,7 @@ dependencies = [\n \"bitflags 2.9.1\",\n \"cexpr\",\n \"clang-sys\",\n- \"itertools 0.10.5\",\n+ \"itertools 0.12.1\",\n \"lazy_static\",\n \"lazycell\",\n \"log\",\n@@ -4641,7 +4641,7 @@ version = \"0.50.3\"\n source = \"registry+https://github.co...
2026-01-22T01:18:28
nodejs/node
bfcba89cc212b826f3dea07909cdd3898bbd14c1
28225857d7e613fad0909e0345aca25c739cc1fb
test: mark test-inspector-network-fetch as flaky again https://redirect.github.com/nodejs/node/pull/59104 did not fix it and it's still flaky in the CI. Refs: https://github.com/nodejs/reliability/blob/main/reports/2025-08-26.md Refs: https://github.com/nodejs/node/issues/59090 PR-URL: https://github.com/nodejs/node/...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -20,6 +20,8 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n test-snapshot-incompatible: SKIP\n \n [$system==win32]\n+# https://github.com/nodejs/node/issues/59090\n+test-inspector-network-fetch: PASS, FLAKY\n # https://github.com/nodejs/node/iss...
2025-08-28T20:21:07
golang/go
3353c100bb97954edc11c1bc07fd07db9d4bc567
301d9f9b52b9b5dbc57151f680a64d1bf85e6d43
cmd/go: remove experiment checks for compile -c There's a comment that we should test that compile -c is compatible with the fieldtrack and preemptibleloops experiments and then remove the check disabling -c when those experiments are enabled. I tested this and the tests pass with fieldtrack (with the exception of on...
[ { "path": "src/cmd/go/internal/work/build.go", "patch": "@@ -238,8 +238,6 @@ See also: go install, go get, go clean.\n \t`,\n }\n \n-const concurrentGCBackendCompilationEnabledByDefault = true\n-\n func init() {\n \t// break init cycle\n \tCmdBuild.Run = runBuild", "additions": 0, "deletions": 2, ...
2025-11-26T15:30:34
electron/electron
a8695d4387b128729ed8a80984cf10f543c37df3
924a8da940ec0acefeb6d43e74f5669a8704d159
chore: bump chromium to 138.0.7166.0 (main) (#46975) * chore: bump chromium in DEPS to 138.0.7165.0 * 6492127: Add new less invasive context menu mode for mobile interesttarget https://chromium-review.googlesource.com/c/chromium/src/+/6492127 * chore: fixup patch indices --------- Co-authored-by: electron-roller[...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7164.0',\n+ '138.0.7165.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-07T17:04:15
facebook/react
4c6967be290fc31182c61cfdac19915fdb16aa60
c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0
[Fiber] Support AsyncIterable children in SuspenseList (#33299) We support AsyncIterable (more so when it's a cached form like in coming from Flight) as children. This fixes some warnings and bugs when passed to SuspenseList. Ideally SuspenseList with `tail="hidden"` should support unblocking before the full result ...
[ { "path": "packages/react-reconciler/src/ReactChildFiber.js", "patch": "@@ -13,6 +13,7 @@ import type {\n Thenable,\n ReactContext,\n ReactDebugInfo,\n+ SuspenseListRevealOrder,\n } from 'shared/ReactTypes';\n import type {Fiber} from './ReactInternalTypes';\n import type {Lanes} from './ReactFiberLa...
2025-05-20T13:39:25
vercel/next.js
8fe8ff79157a675b56259a8eaf2d16fc1647b254
f263c5622d0a48ddac1fc8e88d9f396f24a818e7
Turbopack: Tweak retry loop for link creation to try to fix os error 80 on Windows (#88669) Though I've been unable to reproduce the issue (prior PRs in this stack are my attempts at that), I believe this *should* fix the OS Error 80 ([`ERROR_FILE_EXISTS`](https://learn.microsoft.com/en-us/windows/win32/debug/system-e...
[ { "path": "Cargo.lock", "patch": "@@ -9544,6 +9544,7 @@ dependencies = [\n \"serde_path_to_error\",\n \"sha2\",\n \"tempfile\",\n+ \"thiserror 1.0.69\",\n \"tokio\",\n \"tracing\",\n \"triomphe 0.1.12\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopac...
2026-01-22T01:17:42