repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 3e77faf2f75f1cade24f3a9e7f8388d7a2c32013 | cc9d85d3caf8f4dd99d29b310d99029ef50d488b | fix: crash when generating shortcut text for super accelerator (#44341) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -132,3 +132,4 @@ build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n+ui_add_missing_sho... | 2024-10-21T18:26:38 |
golang/go | c938051dd0b80a5c60572d6807270d06ca685d2e | 64699542031b994ec4fdb6de887a94b69a372f9b | Revert "cmd/compile: redo arm64 LR/FP save and restore"
This reverts commit 719dfcf8a8478d70360bf3c34c0e920be7b32994.
Reason for revert: Causing crashes.
Change-Id: I0b8526dd03d82fa074ce4f97f1789eeac702b3eb
Reviewed-on: https://go-review.googlesource.com/c/go/+/709755
Reviewed-by: Keith Randall <khr@google.com>
Revi... | [
{
"path": "src/cmd/compile/abi-internal.md",
"patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n- | return PC |\n- | frame pointer on entry | ← R29 points to\n | ... loc... | 2025-10-07T14:58:50 |
nodejs/node | 2c315d24f5775f837e5f51021611820e338d0810 | 555aeb3aae3b1b91a1c183c6326fd033f491e103 | doc: fix `AsyncLocalStorage` example response changes after node v18
PR-URL: https://github.com/nodejs/node/pull/57969
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/async_context.md",
"patch": "@@ -75,8 +75,8 @@ http.get('http://localhost:8080');\n http.get('http://localhost:8080');\n // Prints:\n // 0: start\n-// 1: start\n // 0: finish\n+// 1: start\n // 1: finish\n ```\n \n@@ -107,8 +107,8 @@ http.get('http://localhost:8080');\n http.get... | 2025-04-24T07:54:33 |
vercel/next.js | 7ed2b90651de6503ffda88b3d48ebe0431f8c8c5 | 531293634a1b256164efc60a4c713a0fe1e0e498 | Fix documentation typo in refresh function (#85696)
### What?
Fix documentation typo in `refresh` function. | [
{
"path": "packages/next/src/server/web/spec-extension/revalidate.ts",
"patch": "@@ -55,7 +55,7 @@ export function updateTag(tag: string) {\n /**\n * This function allows you to refresh client cache from server actions.\n * It's useful as dynamic data can be cached on the client which won't\n- * be refres... | 2025-11-04T18:58:46 |
facebook/react | 09197bb786344d2ede1286e7f3ec4e21b18a58f2 | 2df8f6188537514a538741064ae83682c2bef7c1 | [compiler] Outline jsx with duplicate attributes (#31441)
Previously, we would skip outlining jsx expressions that had duplicate
jsx attributes as we would not rename them causing incorrect
compilation.
In this PR, we add outlining support for duplicate jsx attributes by
renaming them. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/OutlineJsx.ts",
"patch": "@@ -222,6 +222,8 @@ function collectProps(\n const attributes: Array<OutlinedJsxAttribute> = [];\n const jsxIds = new Set(instructions.map(i => i.lvalue.identifier.id));\n const seen: Set<string> = new ... | 2024-11-06T17:50:13 |
electron/electron | cc9d85d3caf8f4dd99d29b310d99029ef50d488b | d3d02ef1115ca5e38c2195017c3b3b5242a3cf80 | build: fixup reclient use for prod builds (#44340) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -159,21 +159,19 @@ runs:\n run: |\n cd src\n gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n- autoninja -C out/ffmpeg electron:electron_ffmpeg_zi... | 2024-10-21T18:07:02 |
rust-lang/rust | f5991a8f5a7dd8950534fe91445bf163c5554f89 | 45efcf5606e59e091113a4239717e8fe1a7f98c6 | fix: Incorrect flychecks with multiple workspaces
When rust-analyzer receives textDocument/didChangeWatchedFiles, we
want to trigger a flycheck in all workspaces if we can't find which
workspace owns those files.
However, since we used .any() instead of .all(), this behaviour was
always triggered when the user had mo... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -1021,7 +1021,7 @@ impl JsonLinesParser<CheckMessage> for CheckParser {\n }\n }\n \n-#[derive(Deserialize)]\n+#[derive(Deserialize, Debug)]\n #[serde(untagged)]\n enum JsonMessage {\n Cargo(cargo_metadata::Message... | 2026-02-25T00:29:04 |
golang/go | c1e6e49d5d3f3fb927f1bfd1b453d8e7c906c6ac | 7fbf54bfebf9243550177bc6871d80e58bedf1a6 | fmt: reduce Errorf("x") allocations to match errors.New("x")
For unformatted strings, it comes up periodically that there are
more allocations using fmt.Errorf("x") compared to errors.New("x").
People cite it as a reason to switch code using fmt.Errorf to
use errors.New instead.
Three examples from the last few weeks... | [
{
"path": "src/fmt/errors.go",
"patch": "@@ -6,6 +6,7 @@ package fmt\n \n import (\n \t\"errors\"\n+\t\"internal/stringslite\"\n \t\"slices\"\n )\n \n@@ -19,7 +20,22 @@ import (\n // order they appear in the arguments.\n // It is invalid to supply the %w verb with an operand that does not implement\n // the... | 2025-10-03T14:59:54 |
nodejs/node | 555aeb3aae3b1b91a1c183c6326fd033f491e103 | bd3f27166b37cfde9349d31501cf0aa3401c7b61 | test: deflake test-http2-options-max-headers-block-length
The socket can be closed while data is still being written, causing an
`ECONNRESET` error to be emitted on the client. Add a listener for it.
PR-URL: https://github.com/nodejs/node/pull/57959
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Joyee Che... | [
{
"path": "test/parallel/test-http2-options-max-headers-block-length.js",
"patch": "@@ -22,6 +22,8 @@ server.listen(0, common.mustCall(() => {\n const client = h2.connect(`http://localhost:${server.address().port}`,\n options);\n \n+ client.on('error', () => {});\n+\n const ... | 2025-04-24T05:08:08 |
vercel/next.js | d0177fa07db68b1ebb412af4b4fbe3609924428e | 2c56a6937112e6a0e0cf689234acecfaed8448c2 | Tracing: Fix memory leak in span map (#85529)
## What?
Fixes a small retainer object that is inserted on each request and not
cleaned up.
While at it also swapped array -> Set for the type checks to leverage
`has` instead of `includes`. | [
{
"path": "packages/next/src/server/lib/trace/constants.ts",
"patch": "@@ -125,7 +125,7 @@ type SpanTypes =\n | `${MiddlewareSpan}`\n \n // This list is used to filter out spans that are not relevant to the user\n-export const NextVanillaSpanAllowlist = [\n+export const NextVanillaSpanAllowlist = new Set(... | 2025-11-04T16:17:20 |
rust-lang/rust | ae909778390ad9af2f919e171a576e0f9211d083 | 45efcf5606e59e091113a4239717e8fe1a7f98c6 | fix: Update VFS when a watched file is deleted
When rust-analyzer handles file watching, it previously wouldn't
update the VFS on file deletion. We would discard events where
fs::metadata() isn't available, and we never have metadata for deleted
files.
See also the discussion in rust-lang/rust-analyzer#19907. | [
{
"path": "src/tools/rust-analyzer/crates/vfs-notify/src/lib.rs",
"patch": "@@ -208,6 +208,22 @@ impl NotifyActor {\n )\n })\n .filter_map(|path| -> Option<(AbsPathBuf, Option<Vec<u8>>)> {\n+ ... | 2026-03-06T15:43:14 |
facebook/react | fd018af617cf9f8be607f45fc53d6d8167d29eb4 | f2f002c7c19e273f3f31289d6f288c3248f10183 | [compiler] Delete propagateScopeDeps (non-hir) (#31199)
`enablePropagateScopeDepsHIR` is now used extensively in Meta. This has
been tested for over two weeks in our e2e tests and production.
The rest of this stack deletes `LoweredFunction.dependencies`, which the
non-hir version of `PropagateScopeDeps` depends o... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -57,7 +57,6 @@ import {\n mergeReactiveScopesThatInvalidateTogether,\n promoteUsedTemporaries,\n propagateEarlyReturns,\n- propagateScopeDependencies,\n pruneHoistedContexts,\n pruneNonEscapingScope... | 2024-11-06T00:22:04 |
golang/go | 1d62e92567a858b18f4e7e0c24e071c039dd3edf | 4fca79833fcdd0dc19bb0feba8715a0def3d07be | test/codegen: make sure assignment results are used.
Some tests make assignments to an argument without reading it.
With CL 708865, they are treated as dead stores and are removed.
Make sure the results are used.
Fixes #75745.
Fixes #75746.
Change-Id: I05580beb1006505ec1550e5fa245b54dcefd10b9
Reviewed-on: https://go... | [
{
"path": "test/codegen/constants.go",
"patch": "@@ -7,7 +7,7 @@\n package codegen\n \n // A uint16 or sint16 constant shifted left.\n-func shifted16BitConstants(out [64]uint64) {\n+func shifted16BitConstants() (out [64]uint64) {\n \t// ppc64x: \"MOVD\\t[$]8193,\", \"SLD\\t[$]27,\"\n \tout[0] = 0x0000010008... | 2025-10-04T15:32:33 |
vercel/next.js | 3883a8d9591fe6fb163311b4df0ad7ebb8cab4f7 | 5df646547b1e9a65ad610b0b01f6fdf425ea55ec | Turbopack: disable tree shaking for tracing (#85722)
We had tree shaking enabled for NFT.
That is incorrect however, as even unused imports (if you don't use any of the imported bindings, and the file is marked as `sideEffects: false`) are still needed at runtime, since Node.js will execute everything anyway.
- I mad... | [
{
"path": "test/production/standalone-mode/tracing-side-effects-false/app/layout.js",
"patch": "@@ -0,0 +1,8 @@\n+export default function Root({ children }) {\n+ return (\n+ <html>\n+ <head></head>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}",
"additions": 8,
"deletions": 0,
... | 2025-11-04T09:24:06 |
nodejs/node | 7bc37af0f7150b9c1f90508b491ceff937734188 | d19437d859e4f80cd2b61d95c9a9e9924419c3bf | src: fix -Wunreachable-code-return in node_sea
PR-URL: https://github.com/nodejs/node/pull/57664
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_sea.cc",
"patch": "@@ -640,8 +640,9 @@ bool MaybeLoadSingleExecutableApplication(Environment* env) {\n \n LoadEnvironment(env, LoadSingleExecutableApplication);\n return true;\n-#endif\n+#else\n return false;\n+#endif\n }\n \n void Initialize(Local<Object> target,",
"additions"... | 2025-04-23T10:13:23 |
electron/electron | 0d948da4b98b0d52115e5be4d047b8f81d857b98 | 2cf59b38858f1162172f9d5aeacba2396855d59d | chore: bump chromium to 132.0.6787.0 (main) (#44329)
* chore: bump chromium in DEPS to 132.0.6785.0
* chore: bump chromium in DEPS to 132.0.6787.0
* 5837702: mac fullscreen: always show traffic lights
https://chromium-review.googlesource.com/c/chromium/src/+/5837702
* 5892572: Move SimpleMenuModel out of u... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6783.0',\n+ '132.0.6787.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-10-21T00:02:21 |
rust-lang/rust | ae25efb4ac3db8dbec8dc9f4d41f427f47600175 | dbb159a432940d3788b83f5fbbbe9274d0be25d7 | Fix panic by setting the span before it is actually needed | [
{
"path": "clippy_utils/src/diagnostics.rs",
"patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), ClippyDiag(|diag: ... | 2026-03-06T15:38:53 |
facebook/react | 792fa065ca7a46ce4a583e8f6f35eec8bd813d43 | 33195602ea125af38f9460f0bb2ccab8713e5f10 | [compiler][ez] Clean up pragma parsing for tests + playground (#31347)
Move environment config parsing for `inlineJsxTransform`,
`lowerContextAccess`, and some dev-only options out of snap (test
fixture). These should now be available for playground via
`@inlineJsxTransform` and `lowerContextAccess`.
Other small... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -14,7 +14,7 @@ import {\n CompilerErrorDetail,\n Effect,\n ErrorSeverity,\n- parseConfigPragma,\n+ parseConfigPragmaForTests,\n ValueKind,\n runPlayground,\n type Hook,\n@@ -208,7 +208,7 @@ function compile(sou... | 2024-11-05T23:19:44 |
vercel/next.js | 2f8dec2314e43ca190b454ac73c31d54daa3177e | 3f854dc3eaeedbda8e1ce439e3834985e97250d5 | docs(next.config): this docs should remove ".mts" is not supported. (#85716)
Fix #85715
---------
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com> | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/index.mdx",
"patch": "@@ -37,7 +37,7 @@ const nextConfig = {\n export default nextConfig\n ```\n \n-> **Good to know**: `next.config` with the `.cjs`, `.cts`, or `.mts` extensions are currently **not** supported.\n+> **Good to know**: `next... | 2025-11-03T22:31:44 |
nodejs/node | d19437d859e4f80cd2b61d95c9a9e9924419c3bf | 71f8c3be1fa6f92128176d2cc182b03878b209d0 | doc: fix linter errors
PR-URL: https://github.com/nodejs/node/pull/57987
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/async_context.md",
"patch": "@@ -172,7 +172,7 @@ added:\n - v19.8.0\n - v18.16.0\n changes:\n- - version: \n+ - version:\n - v23.11.0\n - v22.15.0\n pr-url: https://github.com/nodejs/node/pull/57510",
"additions": 1,
"deletions": 1,
"language": "Markdown"
},
{... | 2025-04-23T08:59:33 |
rust-lang/rust | e01a7e7ba1a8adb7bb3477838d6f1b4b57d9761a | 8d96e603b1c3e65bba9e944616de6260e7e40781 | Fix panic by setting the span before it is actually needed | [
{
"path": "src/tools/clippy/clippy_utils/src/diagnostics.rs",
"patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), C... | 2026-03-06T15:38:53 |
facebook/react | 33195602ea125af38f9460f0bb2ccab8713e5f10 | 5ca2bc6d631dde8c221fa482cb8729a67115c7f9 | [compiler][ez] tsconfig: treat all snap fixtures as modules (#31350)
Qol improvement. Currently, typescript lints treat test fixtures without
an export as a 'global script' (see
[docs](https://www.typescriptlang.org/docs/handbook/2/modules.html#how-javascript-modules-are-defined)).
This gives confusing lints for du... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/tsconfig.json",
"patch": "@@ -19,7 +19,9 @@\n },\n \"verbatimModuleSyntax\": true,\n \"module\": \"ESNext\",\n- \"allowSyntheticDefaultImports\": true\n+ \"allowSyntheticDefaultImports\": true,\n+ \"moduleDe... | 2024-11-05T22:57:18 |
golang/go | 719dfcf8a8478d70360bf3c34c0e920be7b32994 | f3312124c2370c2f64a7f9ad29732ec30209647a | cmd/compile: redo arm64 LR/FP save and restore
Instead of storing LR (the return address) at 0(SP) and the FP
(parent's frame pointer) at -8(SP), store them at framesize-8(SP)
and framesize-16(SP), respectively.
We push and pop data onto the stack such that we're never accessing
anything below SP.
The prolog/epilog ... | [
{
"path": "src/cmd/compile/abi-internal.md",
"patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n+ | return PC |\n+ | frame pointer on entry | ← R29 points to\n | ... loc... | 2025-05-17T22:05:56 |
electron/electron | 35aeab6ecd273459052b23f72cb7fb7cfd97dd3a | 738533dec706a68d73d747daed7b23eb650675e5 | fix: respect setAlwaysOnTop before showInactive on Linux under X11 (#44078)
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -538,6 +538,11 @@ void NativeWindowViews::ShowInactive() {\n #if BUILDFLAG(IS_LINUX)\n if (global_menu_bar_)\n global_menu_bar_->OnWindowMapped();\n+\n+ // On X11, setting Z order before showing the window doesn't take effect,\n+ // so w... | 2024-10-18T18:29:52 |
vercel/next.js | 3f854dc3eaeedbda8e1ce439e3834985e97250d5 | 7cfb1488e047f15fe59b8e1b216d6662aef29873 | [codemod] fix: next-lint-to-eslint-cli did not handle `'next'` plugin (#85749)
Codemod `next-lint-to-eslint-cli` did not handle `extends: ['next']` in
legacy ESLint config.
x-ref:
https://github.com/vercel/next.js/issues/85244#issuecomment-3482558412
Fixes #85244 | [
{
"path": "packages/next-codemod/transforms/__testfixtures__/next-lint-to-eslint-cli/legacy-config/.eslintrc.json",
"patch": "@@ -3,6 +3,8 @@\n \"root\": true,\n \"extends\": [\n \"next/core-web-vitals\",\n+ \"next\",\n+ \"next/typescript\",\n \"turbo\",\n \"prettier\",\n \"plugin:... | 2025-11-03T22:18:27 |
rust-lang/rust | 923582ca0833798fe6943afc9cde35b49ba16ffd | 835c745a9ee60493a23fc596e949b20a604ba0e2 | fix: add ident_pat qualifier to fully fn param
- Do not show commas on label
Example
---
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), mut ba$0)
```
**Before this PR**
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), bar: u32)
```
**After this PR**
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), mut bar: u32)... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs",
"patch": "@@ -30,14 +30,27 @@ pub(crate) fn complete_fn_param(\n _ => return None,\n };\n \n+ let qualifier = param_qualifier(param);\n let comma_wrapper = comma_wrapper(ctx);\n let mut add_new_item... | 2026-03-06T12:20:12 |
facebook/react | 5ca2bc6d631dde8c221fa482cb8729a67115c7f9 | bddb7c9b5c248c77fb52743cd319945d782bb7aa | [compiler][ez] Fixture repro for function hoisting bug (#31349)
Repro for bug reported by @alexmckenley | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-functiondecl-hoisting.expect.md",
"patch": "@@ -0,0 +1,81 @@\n+\n+## Input\n+\n+```javascript\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * Fixture currently fails with\n+ * Found differences in evaluato... | 2024-11-05T22:56:53 |
nodejs/node | 71f8c3be1fa6f92128176d2cc182b03878b209d0 | 8e7f32f968a723bc8811e9f146876a1061f7941b | 2025-04-23, Version 22.15.0 'Jod' (LTS)
Notable changes:
assert:
* (SEMVER-MINOR) implement partial error comparison (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370
* (SEMVER-MINOR) improve partialDeepStrictEqual (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370
cli:
* (SEMVER-MINOR) a... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -54,7 +54,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.14.0\">22.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.0\">22.15.0... | 2025-04-11T20:38:28 |
electron/electron | ac09d11ed19af686fa855aceec42cea021604b65 | 9280add5b45edbcf39630bae00d78653f3afe213 | build: fix main printing patch conflict (#44302)
build: update patches | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -926,23 +926,3 @@ index 1e15568ad872c01c7c588ced81897f8dc229247a..ca528863a2dab2f437bbe95b343ccd33\n namespace sandbox::policy {\n \n base::FilePath GetCanonicalPath(const base::FilePath& path) {\n-diff --git a/ui/gtk/gtk_util.cc b/ui/gtk/gtk_util... | 2024-10-17T15:29:04 |
golang/go | f3312124c2370c2f64a7f9ad29732ec30209647a | 24416458c21a48d83f34d3c2242d892e002bcd6c | runtime: remove batching from spanSPMC free
Added in CL 700496, freeSomeSpanSPMCs attempts to bound tail latency by
processing at most 64 entries at a time, as well as returning early if
it notices a preemption request. Both of those are attempts to reduce
tail latency, as we cannot preempt the function while it holds... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -2046,8 +2046,7 @@ func gcSweep(mode gcMode) bool {\n \t\tprepareFreeWorkbufs()\n \t\tfor freeSomeWbufs(false) {\n \t\t}\n-\t\tfor freeSomeSpanSPMCs(false) {\n-\t\t}\n+\t\tfreeDeadSpanSPMCs()\n \t\t// All \"free\" events for this mark/sweep cycle have\n \t\t// no... | 2025-10-06T18:38:47 |
vercel/next.js | 5f9e5f0e70651542cddb027a5ad00aa241a7d788 | 63b9e8bdf85ef7f01039b89a42cd9de573472edc | Don't invalidate hot reloader excessively during dev server boot (#85732)
Suspecting that this fixes (or reduces) the "Watchpack Error (watcher):
Error: EMFILE:" issues e.g.
https://github.com/vercel/next.js/actions/runs/19028750529/job/54337767548?pr=85637
I noticed that all the Watchpack errors in CI happened in te... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -371,6 +371,7 @@ async function startWatcher(\n const routeTypesFilePath = path.join(distDir, 'types', 'routes.d.ts')\n const validatorFilePath = path.join(distDir, 'types', 'validator.ts')\n \n+ let initialW... | 2025-11-03T18:51:14 |
rust-lang/rust | 2d2c5521a2e2c592e587657dbe6277f19b56042d | e316da9660a6a2d28fc0d93a915056705becf5de | Fix another unused feature warning | [
{
"path": "example/neon.rs",
"patch": "@@ -1,6 +1,6 @@\n // Most of these tests are copied from https://github.com/japaric/stdsimd/blob/0f4413d01c4f0c3ffbc5a69e9a37fbc7235b31a9/coresimd/arm/neon.rs\n \n-#![feature(portable_simd)]\n+#![cfg_attr(target_arch = \"aarch64\", feature(portable_simd))]\n \n #[cfg(t... | 2026-03-06T15:07:59 |
facebook/react | bddb7c9b5c248c77fb52743cd319945d782bb7aa | f8f6e1a21a1cac64cf6faf666367d641b2d8b171 | [compiler] Add fixture for objectexpr computed key bug (#31348)
We were bailing out on complex computed-key syntax (prior to #31344) as
we assumed that this caused bugs (due to inferring computed key rvalues
to have `freeze` effects).
This fixture shows that this bailout is unrelated to the underlying bug | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-object-expression-computed-key-modified-during-after-construction-hoisted-sequence-expr.expect.md",
"patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import {identity, mutate} from 'shared-runtime';\n+\... | 2024-11-05T22:56:36 |
golang/go | c2fb15164bdb9d44a302771be613fbef5faa4a8e | ac2ec82172799b88c057bb9ded6fe24e7909e860 | testing/synctest: remove Run
Run (experimental) is replaced by Test.
Fixes #74012
Change-Id: I1721e1edfbcb4f1fe2159dc0430a13685b2d08c4
Reviewed-on: https://go-review.googlesource.com/c/go/+/709355
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Damien Neil... | [
{
"path": "src/testing/synctest/run.go",
"patch": "@@ -1,16 +0,0 @@\n-// Copyright 2025 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build goexperiment.synctest\n-\n-package synctest\n-\n-import \"i... | 2025-10-05T22:17:40 |
nodejs/node | 6bf7fd7f4ecbf74e38e4e02ffbeb452de068921f | d74c4987351252f39c18305dd53dbf047639017f | crypto: fix cross-realm check of `ArrayBuffer`
This patch modifies the `isNonSharedArrayBuffer` function in the WebIDL
implementation for the SubtleCrypto API to properly handle `ArrayBuffer`
instances created in different JavaScript realms.
Before this fix, when a `TypedArray.buffer` from a different realm
(e.g., fr... | [
{
"path": "lib/internal/crypto/webidl.js",
"patch": "@@ -12,7 +12,6 @@\n \n const {\n ArrayBufferIsView,\n- ArrayBufferPrototype,\n ArrayPrototypeIncludes,\n ArrayPrototypePush,\n ArrayPrototypeSort,\n@@ -48,6 +47,7 @@ const {\n validateMaxBufferLength,\n kNamedCurveAliases,\n } = require('inte... | 2025-04-22T13:01:21 |
electron/electron | 9280add5b45edbcf39630bae00d78653f3afe213 | 44c398fedbb90a1f239f719c651938a28c5d9a08 | chore: fixup reclient read only access on forks (#44280) | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=33dc5186556bfbf7b0121a00cdd89ed3802e47da\n+ export BUILD_TOOLS_SHA=eeb1a11392e4cec08fd926c93b31ab556dc0c23b\n n... | 2024-10-17T15:17:54 |
vercel/next.js | 63b9e8bdf85ef7f01039b89a42cd9de573472edc | 1db925ad86b8c74d699781bde251de42dc728944 | [test] Allow CLI integration test to be retryable (#85586)
Fixes https://github.com/vercel/next.js/actions/runs/18937795131/job/54068900147#step:34:1879
`--experimental-https` test creates a cert relying on no cert existing in the default path. When it passes, it doesn't cleanup. Retrying that test file due to an u... | [
{
"path": "test/integration/cli/test/index.test.js",
"patch": "@@ -15,6 +15,7 @@ import path, { join } from 'path'\n import pkg from 'next/package'\n import http from 'http'\n import stripAnsi from 'strip-ansi'\n+import { rmSync } from 'fs'\n \n const dirBasic = join(__dirname, '../basic')\n const dirDuplic... | 2025-11-03T16:44:52 |
rust-lang/rust | e316da9660a6a2d28fc0d93a915056705becf5de | 263613601f446208ad59c6c8ae0644b64b6638a6 | Fix unused feature warning | [
{
"path": "example/std_example.rs",
"patch": "@@ -1,7 +1,6 @@\n #![feature(\n core_intrinsics,\n coroutines,\n- stmt_expr_attributes,\n coroutine_trait,\n repr_simd,\n tuple_trait,",
"additions": 0,
"deletions": 1,
"language": "Rust"
}
] | 2026-03-06T14:16:48 |
facebook/react | 527bcaa83d9d31e848ca1bea1a5b8532ab361527 | e7e269b7265ec94929a53f4d402037261c87cf44 | [compiler] patch: rewrite scope dep/decl in inlineJsxTransform (#31431)
This bugfix is needed to land #31199 PropagateScopeDepsHIR infers scope
declarations for the `inline-jsx-transform` test fixture (the non-hir
version does not).
These declarations must get the rewritten phi identifiers
---
[//]: # (BEGIN SA... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InlineJsxTransform.ts",
"patch": "@@ -383,6 +383,30 @@ export function inlineJsxTransform(\n mapTerminalOperands(block.terminal, place =>\n handlePlace(place, blockId, inlinedJsxDeclarations),\n );\n+\n+ if (block.ter... | 2024-11-05T20:27:39 |
nodejs/node | a365da6b0cf1dd930175ae8cfff312a6d861858a | 085b0281d9903c374e00b7e3d4dd97a2275fc9ee | meta: fix subsystem in commit title
"config" is not recognized as a valid subsystem by
`core-validate-commit@4.1.0`.
Refs: https://github.com/nodejs/node/commit/478a2e656d803970e93c
PR-URL: https://github.com/nodejs/node/pull/57945
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Jake Yuesong Li <... | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -237,7 +237,7 @@ jobs:\n run: |\n node ./tools/dep_updaters/update-root-certs.mjs -v -f \"$GITHUB_ENV\"\n - id: simdjson\n- subsystem: deps, config\n+ subsystem: deps\n label: dependen... | 2025-04-22T06:43:48 |
golang/go | ac2ec82172799b88c057bb9ded6fe24e7909e860 | e74b224b7c7b7511fe37686d81a6e33d40fdeb17 | runtime: bump thread count slack for TestReadMetricsSched
This test is *still* flaky, but it appears to be just
mayMoreStackPreempt and the thread count *occasionally* exceeds the
original (and arbitrary) thread count slack by exactly 1.
Bump the thread count slack by one. We can investigate further and bump
it again... | [
{
"path": "src/runtime/testdata/testprog/schedmetrics.go",
"patch": "@@ -84,7 +84,12 @@ func SchedMetrics() {\n \n \t// threadsSlack is the maximum number of threads left over\n \t// from the runtime (sysmon, the template thread, etc.)\n-\tconst threadsSlack = 4\n+\t// Certain build modes may also cause the... | 2025-10-03T16:23:10 |
electron/electron | cbe3cb770aa3f2dad92340546e3fbdecd742ed03 | bd4ea5ba72574bbe1be39d6b658676b8aa390f5c | fix: Linux crash after `webContents.print()` with no parent window (#44246)
fix: Linux crash after print with no parent window | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -926,3 +926,23 @@ index 1e15568ad872c01c7c588ced81897f8dc229247a..ca528863a2dab2f437bbe95b343ccd33\n namespace sandbox::policy {\n \n base::FilePath GetCanonicalPath(const base::FilePath& path) {\n+diff --git a/ui/gtk/gtk_util.cc b/ui/gtk/gtk_util... | 2024-10-16T17:15:21 |
rust-lang/rust | ddb729abdc8fb0bc47e4dcb95b83cef050ef6272 | f8262c13446ac50a7361cd18ee3eeb93c5d06d99 | fix: Fix invalid `PartialEq` impl for `EditionedFileIdData`
This broke the contract of `HashEqLike`, causing interning to return different IDs | [
{
"path": "src/tools/rust-analyzer/crates/base-db/src/editioned_file_id.rs",
"patch": "@@ -20,7 +20,7 @@ const _: () = {\n use zalsa_::interned as zalsa_struct_;\n type Configuration_ = EditionedFileId;\n \n- #[derive(Debug, Clone, PartialEq, Eq)]\n+ #[derive(Debug, Clone, Eq)]\n pub struc... | 2026-03-06T12:38:25 |
vercel/next.js | a293884745ea0bd930056299e8f10cd05c24d8cd | b350da474b152281ec2da6e2f515634dfaed9aff | Turbopack: Upgrade image crate (#85084)
## What?
Upgrade the image crate which includes some bugfixes for bmp files. | [
{
"path": "Cargo.lock",
"patch": "@@ -300,9 +300,9 @@ checksum = \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\"\n \n [[package]]\n name = \"arrayvec\"\n-version = \"0.7.4\"\n+version = \"0.7.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"96d30a0... | 2025-11-03T09:44:24 |
nodejs/node | 64d9b7c5f836628b457b62f7918e1cf6a2df180a | 99dc2d376a529ac71d9dbd0662d1593c3a8635e1 | util: fix parseEnv handling of invalid lines
PR-URL: https://github.com/nodejs/node/pull/57798
Fixes: https://github.com/nodejs/node/issues/56775
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "src/node_dotenv.cc",
"patch": "@@ -102,8 +102,11 @@ MaybeLocal<Object> Dotenv::ToObject(Environment* env) const {\n return scope.Escape(result);\n }\n \n-// Removes space characters (spaces, tabs and newlines) from\n-// the start and end of a given input string\n+// Removes leading and trailing... | 2025-04-21T06:46:44 |
golang/go | e74b224b7c7b7511fe37686d81a6e33d40fdeb17 | 3a05e7b0325eb71fede880f67db63d192f2fa0e1 | crypto/tls: streamline BoGo testing w/ -bogo-local-dir
If -bogo-local-dir is provided but doesn't exist, populate it with a git
checkout of the BoringSSL repo at the correct SHA.
Without any -bogo-local-dir argument the BoGo TLS handshake test will
fetch the BoringSSL source at a specific SHA as a Go module in a r/o
... | [
{
"path": "src/crypto/tls/bogo_shim_test.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/base64\"\n \t\"encoding/json\"\n \t\"encoding/pem\"\n+\t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n \t\"html/template\"\n@@ -541,6 +542,7 @@ func orderlyShutdown(tlsConn *Conn) {\n }\n \n func TestBogoSuite(t *testin... | 2025-07-11T14:42:22 |
facebook/react | e7e269b7265ec94929a53f4d402037261c87cf44 | dd1a021bad0908d3ad7ba4314ca9a39173d7758f | [compiler] bugfix for hoistable deps for nested functions (#31345)
`PropertyPathRegistry` is responsible for uniqueing identifier and
property paths. This is necessary for the hoistability CFG merging logic
which takes unions and intersections of these nodes to determine a basic
block's hoistable reads, as a functi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts",
"patch": "@@ -1,5 +1,6 @@\n import {CompilerError} from '../CompilerError';\n import {inRange} from '../ReactiveScopes/InferReactiveScopeVariables';\n+import {printDependency} from '../ReactiveScopes/PrintRea... | 2024-11-05T20:25:54 |
electron/electron | bd4ea5ba72574bbe1be39d6b658676b8aa390f5c | af6e2fb257d81d6ea216f773f1fb671bf2fb7849 | fix: use proper PDF save approach (#44248) | [
{
"path": "patches/chromium/fix_crash_when_saving_edited_pdf_files.patch",
"patch": "@@ -13,54 +13,128 @@ This patch can be removed should we choose to support chrome.fileSystem\n or support it enough to fix the crash.\n \n diff --git a/chrome/browser/resources/pdf/pdf_viewer.ts b/chrome/browser/resources/p... | 2024-10-16T15:33:21 |
vercel/next.js | b350da474b152281ec2da6e2f515634dfaed9aff | c2f1062bd305eb3ffaf4b4a9dc5ab5eae786fae1 | docs: fix generateImageMetadata example to use normal params object (#85658)
### What?
Fixes an inconsistency in the v16 upgrade documentation for
`generateImageMetadata`.
### Why?
In the “Upgrading to Version 16” guide, the example incorrectly awaited
the `params` object inside `generateImageMetadata`, implying th... | [
{
"path": "docs/01-app/02-guides/upgrading/version-16.mdx",
"patch": "@@ -322,12 +322,11 @@ export default function Image({ params, id }) {\n }\n ```\n \n-Starting with **Next.js 16**, to align with the [Async Request APIs](#async-request-apis-breaking-change) change, these are also asynchronous.\n+Starting... | 2025-11-03T09:28:31 |
rust-lang/rust | ed12fe81b07cf7c2371306a3400bccc9e2b117e8 | ca2178dd9fe7f036537414def4593258ca4adb7b | fix ICE in offset_of! error recovery | [
{
"path": "compiler/rustc_mir_build/src/thir/cx/expr.rs",
"patch": "@@ -806,6 +806,10 @@ impl<'tcx> ThirBuildCx<'tcx> {\n lit: ScalarInt::try_from_uint(val, Size::from_bits(32)).unwrap(),\n user_ty: None,\n };\n+ let mk_usize_kind = |val... | 2026-03-06T13:19:23 |
golang/go | 3a05e7b0325eb71fede880f67db63d192f2fa0e1 | 2a71af11fc7e45903be9ab84e59c668bb051f528 | spec: close tag
Close an "a" tag. While we are here, fix some escapes.
Change-Id: I16040eff0d4beeef6230aec8fcf4315f0efd13a4
GitHub-Last-Rev: 3ba7b9f7478f54338bd3ca7ac55cc2ad1ffcb3a4
GitHub-Pull-Request: golang/go#75760
Reviewed-on: https://go-review.googlesource.com/c/go/+/708517
Reviewed-by: Sean Liao <sean@liao.dev... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -3173,7 +3173,7 @@ <h3 id=\"Composite_literals\">Composite literals</h3>\n \n <p>\n Unless the LiteralType is a type parameter,\n-its <a href=\"#Underlying_types\">underlying type\n+its <a href=\"#Underlying_types\">underlying type</a>\n must be a struct, array, sl... | 2025-10-05T11:57:40 |
facebook/react | 156eab2f7b34fe78ef26a1752f95bfdc2092819d | b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949 | Fork the "empty" prepareStackTrace case for Server builds (#31427)
We don't actually want the source mapped version of `.stack` from errors
because that would cause us to not be able to associate it with a source
map in the UIs that need it. The strategy in browsers is more correct
where the display is responsible ... | [
{
"path": "packages/react-server/src/ReactFlightStackConfigV8.js",
"patch": "@@ -9,18 +9,7 @@\n \n import type {ReactStackTrace} from 'shared/ReactTypes';\n \n-function prepareStackTrace(\n- error: Error,\n- structuredStackTrace: CallSite[],\n-): string {\n- const name = error.name || 'Error';\n- const ... | 2024-11-05T20:05:04 |
nodejs/node | e773e09c3f55955b0d47f49f7a869a764202558d | 422529a2e3f73f7879dec8dcacd60edc520a5471 | src: fixup errorhandling more in various places
PR-URL: https://github.com/nodejs/node/pull/57852
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "src/api/encoding.cc",
"patch": "@@ -144,7 +144,7 @@ MaybeLocal<Value> TryEncode(Isolate* isolate,\n }\n \n MaybeLocal<Value> TryEncode(Isolate* isolate, const uint16_t* buf, size_t len) {\n- return StringBytes::Encode(isolate, buf, len).ToLocalChecked();\n+ return StringBytes::Encode(isolate, b... | 2025-04-21T03:01:30 |
electron/electron | af6e2fb257d81d6ea216f773f1fb671bf2fb7849 | df45474b58c85df982ed94168f032bc7d880b4e1 | fix: trace-startup crashing child process on macOS (#44257) | [
{
"path": "shell/app/electron_library_main.mm",
"patch": "@@ -23,6 +23,13 @@ int ElectronMain(int argc, char* argv[]) {\n params.argc = argc;\n params.argv = const_cast<const char**>(argv);\n electron::ElectronCommandLine::Init(argc, argv);\n+\n+ // Ensure that Bundle Id is set before ContentMain.\n+... | 2024-10-16T15:03:00 |
golang/go | ee5369b003b17b34aa6417cf8c9b702f1cd76da1 | 1bca4c1673f5d90822086f34aed6de4a9bea2d93 | cmd/link: add LIBRARY statement only with -buildmode=cshared
When creating a .def file for Windows linking, add a LIBRARY statement
only when building a DLL with -buildmode=cshared. That statement is
documented to instruct the linker to create a DLL, overriding any
other flag that might indicate building an executable... | [
{
"path": "src/cmd/link/internal/ld/pe.go",
"patch": "@@ -1758,7 +1758,9 @@ func peCreateExportFile(ctxt *Link, libName string) (fname string) {\n \tfname = filepath.Join(*flagTmpdir, \"export_file.def\")\n \tvar buf bytes.Buffer\n \n-\tfmt.Fprintf(&buf, \"LIBRARY %s\\n\", libName)\n+\tif ctxt.BuildMode == ... | 2025-10-03T09:18:47 |
nodejs/node | 2e0ec72f54afc3afdf8a27418e75398a8adcc308 | 7102ea1559eb7e84d39bcc4057db9ea09befe090 | sqlite: add getter to detect transactions
This commit adds an isTransaction getter to the DatabaseSync
class for determining if the database is currently within a
transaction.
Fixes: https://github.com/nodejs/node/issues/57922
PR-URL: https://github.com/nodejs/node/pull/57925
Reviewed-By: Edy Silva <edigleyssonsilva@... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -291,6 +291,15 @@ added: v23.11.0\n \n * {boolean} Whether the database is currently open or not.\n \n+### `database.isTransaction`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* {boolean} Whether the database is currently within a transaction. This method\n+ is ... | 2025-04-20T15:57:42 |
facebook/react | b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949 | 33c7bd9ae3b4f998a477fe0ea8ebdf2f2ee8a144 | [cleanup] Remove compiler runtime-compat fixture library (#31430)
There's no real reason to keep this around anymore now that the compiler
beta is released and we have validated that react-compiler-runtime is
[usable by
libraries](https://www.npmjs.com/package/react-compiler-runtime?activeTab=dependents).
Let's ... | [
{
"path": "compiler/fixtures/runtime-compat/README.md",
"patch": "@@ -1 +0,0 @@\n-Reference library compiled with React Compiler.",
"additions": 0,
"deletions": 1,
"language": "Markdown"
},
{
"path": "compiler/fixtures/runtime-compat/app-18/.gitignore",
"patch": "@@ -1,24 +0,0 @@\n-#... | 2024-11-05T19:14:39 |
golang/go | 38b26f29f1f97d24afc852b9f4eee829341ee682 | 003b5ce1bc15cf265e74ba1ec4eb7cf801e49986 | cmd/compile: remove stores to unread parameters
Currently, we remove stores to local variables that are not read.
We don't do that for arguments. But arguments and locals are
essentially the same. Arguments are passed by value, and are not
expected to be read in the caller's frame. So we can remove the
writes to them ... | [
{
"path": "src/cmd/compile/internal/ssa/deadstore.go",
"patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F... | 2025-09-22T14:57:29 |
nodejs/node | 7102ea1559eb7e84d39bcc4057db9ea09befe090 | 25842c5e35efb45df169e591c775a3c4f853556d | os: fix netmask format check condition in getCIDR function
Modified to check the format of the netmask instead
of just checking that each part of the netmask is even
PR-URL: https://github.com/nodejs/node/pull/57324
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/util.js",
"patch": "@@ -8,6 +8,7 @@ const {\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeCall,\n+ NumberParseInt,\n ObjectDefineProperties,\n ObjectDefineProperty,\n ObjectFreeze,\n@@ -33,7 +34,9 @@ const {\n SafeSet,\n SafeWeakMap,\n SafeWeakRef,\n+ Stri... | 2025-04-20T05:54:48 |
golang/go | 003b5ce1bc15cf265e74ba1ec4eb7cf801e49986 | d91148c7a8b2d774ddea5c66c170d24937195df5 | cmd/compile: fix SIMD const rematerialization condition
This CL fixes a condition for the previous fix CL 704056.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD specific. Apply early to reduce risk. Test is
SIMD specific so not included for now.
Change-Id: I1f1f8c6f72870403cb3dff14755c43385d... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2561,22 +2561,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa... | 2025-09-19T18:38:25 |
facebook/react | 4d577fd216735384a262cbacdcbc5cda18626497 | 7c8e5e7ab8bb63de911637892392c5efd8ce1d0f | More Unit Tests for Refs in Hidden Subtrees (#31404)
## Summary
While fixing ref lifecycles in hidden subtrees in
https://github.com/facebook/react/pull/31379, @rickhanlonii noticed that
we could also add more unit tests for other types of tags to prevent
future regressions during code refactors.
This PR adds... | [
{
"path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js",
"patch": "@@ -430,6 +430,131 @@ describe('ReactFreshIntegration', () => {\n await patch(code);\n });\n \n+ // @gate __DEV__ && enableActivity\n+ it('ignores ref for functional component in hidden subtree', async ... | 2024-11-04T15:46:28 |
vercel/next.js | 05d71110906b10c5a6eca43b1beedb1ada5a2462 | 567dc18b2388922c1e14f531159aa1bcc6cfce0a | [test]: move resume-data-cache to e2e test (#85647)
Moves `resume-data-cache` to `test/e2e`. We don't currently run
`production` tests when deployed - many of them do funky things with
`next.build` / `next.start` and are meant to test local behavior rather
than deployed behavior.
As a result, I also temporarily disab... | [
{
"path": "test/e2e/app-dir/resume-data-cache/resume-data-cache/resume-data-cache.test.ts",
"patch": "@@ -3,10 +3,18 @@ import { retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/utils/cache-busting-search-param'\n \n describe('resume-data-cache', (... | 2025-10-31T23:17:57 |
nodejs/node | 609df89cd35ce68f40c75c0717e6635d928551ed | e273ddf7a490ee5bec7bd485a78963e9087a4fcc | http2: session tracking and graceful server close
This change adds proper tracking of HTTP / 2 server sessions
to ensure they are gracefully closed when the server is
shut down.It implements:
- A new kSessions symbol for tracking active sessions
- Adding/removing sessions from a SafeSet in the server
- A closeAllSess... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -251,6 +251,7 @@ const kServer = Symbol('server');\n const kState = Symbol('state');\n const kType = Symbol('type');\n const kWriteGeneric = Symbol('write-generic');\n+const kSessions = Symbol('sessions');\n \n const {\n kBitfield,\n@@ -1126,9 +1127,13 ... | 2025-03-21T21:42:25 |
electron/electron | df45474b58c85df982ed94168f032bc7d880b4e1 | b5acebf3bacb9fcaddf132243847aac2265c9d40 | fix: ensure `utilityProcess` only emits one 'exit' event (#44243)
fix: ensure utilityProcess only emits one exit | [
{
"path": "shell/browser/api/electron_api_utility_process.cc",
"patch": "@@ -247,12 +247,16 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n }\n \n void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+ // HandleTermination is called from multiple callsites,\n+ // we need to ensure... | 2024-10-16T08:47:12 |
golang/go | ad3db2562edf23cb4fb9a909ea11d57b65e304fb | 18cd4a1fc7d5387ae91ffc23328e4fc81f93681d | cmd/compile: handle rematerialized op for incompatible reg constraint
This CL fixes an issue raised by contributor dominikh@.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD specific. Apply early to reduce risk. Test is
SIMD specific so not included for now.
Change-Id: I941b330a6ba6f6c120c699... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2561,7 +2561,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p... | 2025-09-16T03:27:41 |
facebook/react | 7c8e5e7ab8bb63de911637892392c5efd8ce1d0f | 16409d0560863dac41880bd308dea6efee46087a | Reenable lazy context propagation (#31405)
Reverts facebook/react#31403 to reenable lazy context propagation
The disabling was to produce a build that could help track down whether
this flag is causing a possibly related bug in transitions but we don't
intend to disable it just fix forward once we figure out what... | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = false;\n+export const enableLazyContextPropagation = true;\n \n // Expose unstable useCo... | 2024-11-01T22:17:51 |
vercel/next.js | b57c8a16a38a6cc535fe348672ea790643413c1a | 84de02c4200696c1dee754e0816c6551dd8d027d | Preserve interception markers in parameter types (#85526)
### What?
This PR preserves the specific interception route markers in dynamic
parameter types throughout the routing system.
### Why?
Previously, the code only tracked whether a parameter was intercepted
(using generic types like `'dynamic-intercepted'` or
... | [
{
"path": "packages/next/src/build/static-paths/app.ts",
"patch": "@@ -596,7 +596,10 @@ export function resolveParallelRouteParams(\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n- case 'catchall-intercepted':\n+ case 'catchall-intercepte... | 2025-10-31T21:57:04 |
nodejs/node | 2acc8bc6a9a830b38d101ac70390b8c5c9a14bf3 | 2cff98c853d780b80d757087387e14792f2f45d8 | http2: fix graceful session close
Fix issue where session.close() prematurely destroys the session
when response.end() was called with an empty payload while active
http2 streams still existed. This change ensures that sessions are
closed gracefully only after all http2 streams complete and clients
properly receive th... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -1068,6 +1068,7 @@ function setupHandle(socket, type, options) {\n if (typeof options.selectPadding === 'function')\n this[kSelectPadding] = options.selectPadding;\n handle.consume(socket._handle);\n+ handle.ongracefulclosecomplete = this[kMaybeD... | 2025-04-19T16:36:03 |
electron/electron | b5acebf3bacb9fcaddf132243847aac2265c9d40 | ef84f1365014d0b587659fdae5da6542d1ae296a | fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons() (#44238)
* fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons()
* fixup! fix: -Wunsafe-buffer-usage warning in ChunkedDataPipeReadableStream (#44211) | [
{
"path": "shell/browser/ui/win/taskbar_host.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"shell/browser/ui/win/taskbar_host.h\"\n \n #include <objbase.h>\n+#include <array>\n #include <string>\n \n #include \"base/strings/utf_string_conversions.h\"\n@@ -25,10 +26,10 @@ namespace {\n // From MSDN:\n // https:... | 2024-10-15T23:31:44 |
rust-lang/rust | 95fcc2d5f966afa736ef88cf9be6e6e244a38e3c | 80af4486c71f3b4d09f4d41584370c4437aa1c94 | fix: cfg_select supports non token-tree tokens
- Fix single non-curly groups is ignored `true => ((),)`, old: `(),`, new: `((),)`
Example
---
```rust
const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };
```
**Before this PR**
```rust
const _: i32 = cfg_select! { true => 2 /* expected a token tree after `=>` */... | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/builtin_fn_macro.rs",
"patch": "@@ -568,6 +568,12 @@ cfg_select! {\n _ => { fn true_2() {} }\n }\n \n+const _: ((),) = cfg_select! { _ => ((), ) };\n+const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };\n+const _: i32 = cfg... | 2026-02-24T10:29:05 |
vercel/next.js | 7d9c12591624dccd090cf5585f99d160c652a4c6 | 40102ab5ad345ca17290c161ccbe89dc8b7e1495 | Turbopack: fix Scope holding Arc too long (#85611)
### What?
Turbo tasks Arc should be dropped before returning to the caller | [
{
"path": "turbopack/crates/turbo-tasks/src/scope.rs",
"patch": "@@ -195,8 +195,17 @@ impl<'scope, 'env: 'scope, R: Send + 'env> Scope<'scope, 'env, R> {\n assert!(index < self.results.len(), \"Too many tasks spawned\");\n let result_cell: &Mutex<Option<R>> = &self.results[index];\n \n+ ... | 2025-10-31T15:16:54 |
facebook/react | 16409d0560863dac41880bd308dea6efee46087a | b7e21579220042c0a60179e2f40f121684e637eb | temporarily disable lazy context propagation (#31403)
disables lazy context propagation in oss to help determine if it is
causing bugs in startTransition. Will reenable after cutting a canary
release with this flag disabled | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = true;\n+export const enableLazyContextPropagation = false;\n \n // Expose unstable useCo... | 2024-11-01T22:16:26 |
golang/go | 1caa95acfa9d516eb3bc26292b5601bea25a4e79 | ec70d1902355f10e0ab4788334b80db11ab69785 | cmd/compile: enhance prove to deal with double-offset IsInBounds checks
For chunked iterations (useful for, but not exclusive to,
SIMD calculations) it is common to see the combination of
```
for ; i <= len(m)-4; i += 4 {
```
and
```
r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3]
``
Prove did not handle the case of l... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+... | 2025-09-03T17:09:32 |
nodejs/node | 2cff98c853d780b80d757087387e14792f2f45d8 | 733e0fc2c4d01a3613f157de475e0204bc9a7aad | build: fix missing files warning
This commit fixes the following warning:
Warning: Missing input files:
C:\Users\lpinca\node\tools\v8_gypfiles\..\..\deps\v8\third_party\abseil-cpp\absl\strings\internal\has_absl_stringify.h
C:\Users\lpinca\node\deps\ncrypto\dh-primes.h
https://github.com/nodejs/node/commi... | [
{
"path": "deps/ncrypto/ncrypto.gyp",
"patch": "@@ -2,7 +2,6 @@\n 'variables': {\n 'ncrypto_sources': [\n 'engine.cc',\n- 'dh-primes.h',\n 'ncrypto.cc',\n 'ncrypto.h',\n ],",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "tools/v8_gyp... | 2025-04-19T15:22:06 |
rust-lang/rust | c1d0e35db07f961803781cd3e7e49b452056a116 | 6c28ca91011e8775f859ac87b678d4a39b7e330f | c-b: fix path to CONTRIBUTING.md in README.md | [
{
"path": "library/compiler-builtins/compiler-builtins/README.md",
"patch": "@@ -22,7 +22,7 @@ See `build.rs` for details.\n \n ## Contributing\n \n-See [CONTRIBUTING.md](CONTRIBUTING.md).\n+See [CONTRIBUTING.md](../CONTRIBUTING.md).\n \n ## Progress\n ",
"additions": 1,
"deletions": 1,
"languag... | 2026-03-06T09:47:22 |
vercel/next.js | 40102ab5ad345ca17290c161ccbe89dc8b7e1495 | e7fe28ccc81a8d5f5acf8550e9f2bf3f9a717a0a | Turbopack: Fix compound assignment expression evaluation (#85478) (#85593)
Migrated from https://github.com/vercel/next.js/pull/85478 into this non-fork because we had some issues with our CI infra that should be fixed going forward: https://vercel.slack.com/archives/C04KC8A53T7/p1761862171772939
---
fixes #854... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -802,7 +802,10 @@ impl EvalContext {\n ..\n }) => JsValue::WellKnownObject(WellKnownObjectKind::ImportMeta),\n \n- Expr::Assign(AssignExpr { right, .. }) => self.eval(right),\n+ ... | 2025-10-31T13:30:03 |
facebook/react | b7e21579220042c0a60179e2f40f121684e637eb | ea3ac586693014e882655728fc8396ecb1d6cf6e | [Flight] Handle errors during JSON stringify of console values (#31391)
When we serialize debug info we should never error even though we don't
currently support everything being serialized. Since it's non-essential
dev information.
We already handle errors in the replacer but not when errors happen in
the JSON ... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -3146,6 +3146,65 @@ describe('ReactFlight', () => {\n expect(ownerStacks).toEqual(['\\n in App (at **)']);\n });\n \n+ // @gate enableServerComponentLogs && __DEV__\n+ it('replays logs with cyclic objects', async ()... | 2024-10-31T20:47:51 |
golang/go | 10e796884905d23ab2419cc158769e8fdc73de4e | ab043953cbd6e3cd262548710f35f05924aa8f32 | cmd/compile: accounts rematerialize ops's output reginfo
This CL implements the check for rematerializeable value's output
regspec at its remateralization site. It has some potential problems,
please see the TODO in regalloc.go.
Fixes #70451.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD sp... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli... | 2025-08-12T16:53:44 |
nodejs/node | 733e0fc2c4d01a3613f157de475e0204bc9a7aad | 2b76dca0fa86093d94e4f58f30ebcf357d64bbc0 | assert,util: fix constructor lookup in deep equal comparison
The latest performance optimization did not take into account that
an object may have a property called constructor. This is addressed
in this PR by adding a new fast path and using fallbacks.
PR-URL: https://github.com/nodejs/node/pull/57876
Reviewed-By: J... | [
{
"path": "benchmark/assert/deepequal-prims-and-objs-big-loop.js",
"patch": "@@ -10,6 +10,7 @@ const notCircular = {};\n notCircular.circular = {};\n \n const primValues = {\n+ 'null_prototype': { __proto__: null },\n 'string': 'abcdef',\n 'number': 1_000,\n 'boolean': true,\n@@ -24,6 +25,7 @@ const ... | 2025-04-19T11:10:40 |
electron/electron | 36b7cf341e814bc7b7b17440033e68d72d14987b | 72802c374b8fa719fbd2ec69cf25079a3db67df3 | chore: bump chromium to 131.0.6776.0 (main) (#44137)
* chore: bump chromium in DEPS to 131.0.6763.0
* chore: bump chromium in DEPS to 131.0.6764.0
* update patches
* chore: bump chromium in DEPS to 131.0.6766.0
* chore: update patches
* Use PathInfo in FileSystemAccess code
Refs https://chromium-revi... | [
{
"path": ".github/workflows/pipeline-segment-electron-build.yml",
"patch": "@@ -187,8 +187,8 @@ jobs:\n HELPER=$(node -p \"require('./src/utils/reclient.js').helperPath({})\")\n $HELPER login\n echo 'RBE_service='`node -e \"console.log(require('./src/utils/reclient.js').serviceAddre... | 2024-10-15T15:51:11 |
rust-lang/rust | 20404bf4a65c3c41391790ace10310a02fec8a05 | bbc45c16c49573a4d0553ff4fa6e5be720da4df4 | Split out linker-info from linker-messages
- Hide common linker output behind `linker-info`
- Add tests
- Account for different capitalization on windows-gnu when removing
"warning" prefix
- Add some more comments
- Add macOS deployment-target test
- Ignore linker warnings from trying to statically link glibc
I d... | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link.rs",
"patch": "@@ -22,6 +22,7 @@ use rustc_errors::DiagCtxtHandle;\n use rustc_fs_util::{TempDirBuilder, fix_windows_verbatim_for_gcc, try_canonicalize};\n use rustc_hir::attrs::NativeLibKind;\n use rustc_hir::def_id::{CrateNum, LOCAL_CRATE};\n+use rustc_l... | 2025-12-12T22:17:24 |
facebook/react | ea3ac586693014e882655728fc8396ecb1d6cf6e | 603e6108f39c6663ec703eed34a89ff1bf0cb70c | Fix Ref Lifecycles in Hidden Subtrees (#31379)
## Summary
We're seeing certain situations in React Native development where ref
callbacks in `<Activity mode="hidden">` are sometimes invoked exactly
once with `null` without ever being called with a "current" value.
This violates the contract for refs because re... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -1325,7 +1325,9 @@ function commitDeletionEffectsOnFiber(\n }\n case ScopeComponent: {\n if (enableScopeAPI) {\n- safelyDetachRef(deletedFiber, nearestMountedAncestor);\n+ if (!offscreenSubtreeWasHidd... | 2024-10-31T20:24:45 |
vercel/next.js | e7fe28ccc81a8d5f5acf8550e9f2bf3f9a717a0a | c22f05b94e747475f8b12fa53a2c45d648c67a45 | Turbopack: fix hanging dev server and builds with fs cache (#85606)
### What?
Fixes a deadlock due to concurrent task locks.
Also adds a debug check to prevent this in future. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -469,11 +469,17 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.assert_not_persistent_calling_transient(reader, task_id, /* cell_id */ None);\n \n let mut ctx = self.execute_context(turbo_tasks);\... | 2025-10-31T13:27:08 |
nodejs/node | 63640eb32d58b313b8513a1a431237324394429d | 52d95f53e466016120048fb43b3732ff9089ecd7 | src: fix typo in comments
PR-URL: https://github.com/nodejs/node/pull/57868
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Reviewed-By: ... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -1295,7 +1295,7 @@ void DatabaseSync::AggregateFunction(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n- // Subract 1 because the first argument is the aggregate value.\n+ // Subtract 1 because the first argument is the aggregate val... | 2025-04-19T09:33:47 |
rust-lang/rust | 6c28ca91011e8775f859ac87b678d4a39b7e330f | 44ee391300a7cc4623410145e4aca511cd2bd00e | meta: Allow or fix `unused_features`
These warnings are showing up on the most recent nightly:
error: feature `f128` is declared but not used
--> builtins-test/tests/addsub.rs:3:35
|
3 | #![cfg_attr(f128_enabled, feature(f128))]
| ^^^^
It isn't always easy t... | [
{
"path": "library/compiler-builtins/builtins-test-intrinsics/src/main.rs",
"patch": "@@ -3,7 +3,7 @@\n // compiling a C implementation and forget to implement that intrinsic in Rust, this file will fail\n // to link due to the missing intrinsic (symbol).\n \n-#![allow(internal_features)]\n+#![allow(interna... | 2026-03-06T04:54:40 |
electron/electron | 566c72cd46a509d5f18a5f35f6d420a5451d51c0 | 8b3d70a2a34b7fdcf91fdda5566bf2663551ff60 | fix: -Wunsafe-buffer-usage warning in ChunkedDataPipeReadableStream (#44211)
* chore: rename v8_value_serializer.cc,h to v8_util.cc,h
* feat: add electron::util::as_byte_span(v8::Local<v8::ArrayBuffer>)
* fix: -Wunsafe-buffer-usage warnings in ChunkedDataPipeReadableStream::ReadInternal()
Xref: https://chromi... | [
{
"path": "filenames.gni",
"patch": "@@ -684,8 +684,8 @@ filenames = {\n \"shell/common/skia_util.cc\",\n \"shell/common/skia_util.h\",\n \"shell/common/thread_restrictions.h\",\n- \"shell/common/v8_value_serializer.cc\",\n- \"shell/common/v8_value_serializer.h\",\n+ \"shell/common/v8_u... | 2024-10-14T08:46:24 |
facebook/react | 0bc30748730063e561d87a24a4617526fdd38349 | 02c0e824e462c7f81ba79d95cfc41c89c6d81b95 | Capture the source and not just the stack on first seen error (#31367)
Otherwise we can't capture the owner stack at the right location when
there's a rethrow. | [
{
"path": "packages/react-noop-renderer/src/createReactNoop.js",
"patch": "@@ -81,6 +81,8 @@ type TextInstance = {\n type HostContext = Object;\n type CreateRootOptions = {\n unstable_transitionCallbacks?: TransitionTracingCallbacks,\n+ onUncaughtError?: (error: mixed, errorInfo: {componentStack: string}... | 2024-10-28T20:59:38 |
vercel/next.js | b8a14cd8f9b1abd8e4f7abb35c0e7d9e1b6d3af5 | 3b0af3ce56c83c2917761c1e09e3e00d201c4b31 | Turbopack: add track_caller to improve panics (#85565)
### What?
Helps finding Item does not exist or access type errors | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/mod.rs",
"patch": "@@ -382,6 +382,7 @@ impl<B: BackingStorage> TaskGuardImpl<'_, B> {\n /// Verify that the task guard restored the correct category\n /// before accessing the data.\n #[inline]\n+ #[track_caller]\n fn c... | 2025-10-31T12:06:19 |
nodejs/node | 9d6626a37eb4e786f0accc378ad5b1659757419a | d8e9e05a27b732a4f3657c05755d3d01d2ce1003 | lib: fix AbortSignal.any() with timeout signals
PR-URL: https://github.com/nodejs/node/pull/57867
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/abort_controller.js",
"patch": "@@ -259,14 +259,30 @@ class AbortSignal extends EventTarget {\n if (!signalsArray.length) {\n return resultSignal;\n }\n+\n const resultSignalWeakRef = new SafeWeakRef(resultSignal);\n resultSignal[kSourceSignals] = new SafeSet();... | 2025-04-17T14:28:36 |
facebook/react | fe04dbcbc4185d7c9d7afebbe18589d2b681a88c | cae764ce81b1bd6c418e9e23651794b6b09208e8 | [compiler] Fix to ref access check to ban ref?.current
ghstack-source-id: ea417a468eac2607ce8d1dddcb2e9581e1c4db27
Pull Request resolved: https://github.com/facebook/react/pull/31360 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -214,16 +214,24 @@ function joinRefAccessTypes(...types: Array<RefAccessType>): RefAccessType {\n return b;\n } else if (b.kind === 'None') {\n return a;\n- } else ... | 2024-10-25T23:47:19 |
golang/go | ebb72bef44a0e125c7f900a04af6538e3c39dfc6 | c54dc1418b6fbff4176aaaffcc9fab6f1ad631a6 | cmd/compile: don't treat devel compiler as a released compiler
The compiler has a logic to print different messages on internal
compiler error depending on whether this is a released version of
Go. It hides the panic stack trace if it is a released version. It
does this by checking the version and see if it has a "go"... | [
{
"path": "src/cmd/compile/internal/base/print.go",
"patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers... | 2025-06-20T16:02:18 |
vercel/next.js | 2704e8bd54f79eac5cac80769d34d4d38b56f08d | 281a6c00fc0d949334be04bec3b5fa17c6533f39 | [turbopack] Support relative paths in turbopack source maps. (#85146)
### What
Add an option to turbopack to render sourcemap relative file paths in source maps
For now this is unused since it requires some support in next to be added in #85576
### Why
This will be useful for server source maps because it enables n... | [
{
"path": "crates/next-core/src/mode.rs",
"patch": "@@ -58,10 +58,7 @@ impl NextMode {\n }\n \n pub fn is_production(&self) -> bool {\n- match self {\n- NextMode::Development => false,\n- NextMode::Build => true,\n- }\n+ !self.is_development()\n }\n \n ... | 2025-10-31T09:35:54 |
electron/electron | 8b3d70a2a34b7fdcf91fdda5566bf2663551ff60 | 527efc01a4d989e973ed96042c890b820bb7b649 | feat: add WebFrameMain detached property (#43473)
* feat: add WebFrameMain detached property
fix: throw instead of returning null senderFrame
test: detached frames
fix: ensure IPCs of pending deletion RFHs are dispatched
fix: lookup WFM by FTN ID to dispatch IPCs
feat: add frame.isDestroyed()
return ... | [
{
"path": "docs/api/session.md",
"patch": "@@ -268,7 +268,8 @@ Returns:\n * `event` Event\n * `details` Object\n * `deviceList` [HIDDevice[]](structures/hid-device.md)\n- * `frame` [WebFrameMain](web-frame-main.md)\n+ * `frame` [WebFrameMain](web-frame-main.md) | null - The frame initiating this event.\... | 2024-10-11T22:33:53 |
rust-lang/rust | b4f9fac51ab760950f2ceae27660e8f6293aa3b4 | 80af4486c71f3b4d09f4d41584370c4437aa1c94 | perf: smol_str — avoid redundant work in eq
feat: add missing APIs to smol_str
docs: Improve safety documentation
fix: borsh deserialization off-by-one for inline threshold | [
{
"path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs",
"patch": "@@ -16,7 +16,7 @@ impl BorshDeserialize for SmolStr {\n #[inline]\n fn deserialize_reader<R: Read>(reader: &mut R) -> borsh::io::Result<Self> {\n let len = u32::deserialize_reader(reader)?;\n- if (len as usize) <... | 2026-03-06T08:01:13 |
nodejs/node | d8e9e05a27b732a4f3657c05755d3d01d2ce1003 | 33d8e03d9dfb934cf4821feb93f2d38690981480 | util: fix formatting of objects with built-in Symbol.toPrimitive
Fixes: https://github.com/nodejs/node/issues/57818
PR-URL: https://github.com/nodejs/node/pull/57832
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -436,7 +436,7 @@ corresponding argument. Supported specifiers are:\n \n * `%s`: `String` will be used to convert all values except `BigInt`, `Object`\n and `-0`. `BigInt` values will be represented with an `n` and Objects that\n- have no user defined `toString` f... | 2025-04-17T13:35:56 |
vercel/next.js | d349bd08949737c38f162e9d2b44688751a36cea | 2f052b16f64ccf68d749b8ca8b07325d338db3a4 | [test]: fix broken scroll restoration test (#85599) | [
{
"path": "test/integration/scroll-back-restoration/test/index.test.js",
"patch": "@@ -8,7 +8,7 @@ import {\n launchApp,\n nextStart,\n nextBuild,\n- check,\n+ retry,\n } from 'next-test-utils'\n \n const appDir = join(__dirname, '../')\n@@ -35,17 +35,15 @@ const runTests = () => {\n \n await br... | 2025-10-31T09:22:16 |
facebook/react | cae764ce81b1bd6c418e9e23651794b6b09208e8 | d19ba8ecdd04639630d0ddcf6ed4ce316482a58d | Revert "[Re-land] Make prerendering always non-blocking (#31268)" (#31355)
This reverts commit 6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74.
It looked like the bug we found on the original land was related to
broken product code. But through landing #31268 we found additional bugs
internally. Since disabling the feat... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js",
"patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog(gate('enableSiblingPrerende... | 2024-10-25T16:17:07 |
electron/electron | 527efc01a4d989e973ed96042c890b820bb7b649 | 6c1b377192039733935ce8b5561576d985cbc56c | fix: -Wunsafe-buffer-usage warnings when read()ing and write()ing integers (#44185) | [
{
"path": "shell/browser/electron_browser_main_parts_posix.cc",
"patch": "@@ -25,6 +25,18 @@ namespace electron {\n \n namespace {\n \n+// write |ref|'s raw bytes to |fd|.\n+template <typename T>\n+void WriteValToFd(int fd, const T& ref) {\n+ base::span<const uint8_t> bytes = base::byte_span_from_ref(ref);... | 2024-10-11T19:29:00 |
rust-lang/rust | a62c6717ff4da33ac304aaebdbb19547b82a9f60 | 69370dc4a8862b8401615a2a7b950704ba66c495 | bootstrap.py: fix typo "parallle" | [
{
"path": "src/bootstrap/bootstrap.py",
"patch": "@@ -696,7 +696,7 @@ def download_toolchain(self):\n for download_info in tarballs_download_info:\n download_component(download_info)\n \n- # Unpack the tarballs in parallle.\n+ # Unpack the tarballs in parall... | 2026-03-06T07:39:05 |
vercel/next.js | 856dc4f0b610f2d7c56416647722f79c214258fd | 137dbec701dee2b6b09d2d97b0f98665b6a148d5 | Update parallel routes in build-complete (#85546)
This fixes parallel routes being considered separate outputs with the
same pathname in the adapters build-complete hook and instead merges
them into the same output combining the necessary outputs. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -966,6 +966,18 @@ export async function handleBuildComplete({\n return {} as Record<string, string>\n }\n )\n+\n+ // If this is a parallel route we just need to merge\n+ // the a... | 2025-10-30T22:58:43 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.