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 |
|---|---|---|---|---|---|
facebook/react | 006ae379727ebceb82d03929222a71104d01135f | a688a3d18cfd911bf9c5e6a7ddc1af7c061b9653 | [compiler] Collapse CompilerError.{invariant,simpleInvariant} (#35614)
`invariant()` was a pain to use - we always record a single location,
but the API required passing a compiler detail. This PR replaces
`invariant()` (keeping the name) with `simpleInvariant()`s signature,
and updates call sites accordingly. I've no... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -304,11 +304,12 @@ export class CompilerError extends Error {\n disabledDetails: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n printedMessage: string | null = null;\n \n- static simpleInvariant(\n+ s... | 2026-01-23T19:07:11 |
vercel/next.js | 2aabb6de352cda1bce6441e10cedb37d336cf769 | 039c56f707c2b7958f3511ea0d70f3f08491d3d0 | Revert "turbo-tasks: add hashed cell mode for hash-based change detection without cell data" (#92103)
Reverts vercel/next.js#91576
That PR leads to failures in
`test/e2e/filesystem-cache/filesystem-cache.test.ts`, e.g.:
```
FATAL: An unexpected Turbopack error occurred:
Failed to write app endpoint /page
Caused by:... | [
{
"path": "Cargo.lock",
"patch": "@@ -9725,7 +9725,6 @@ dependencies = [\n \"bincode 2.0.1\",\n \"data-encoding\",\n \"sha2\",\n- \"smallvec\",\n \"turbo-tasks-macros\",\n \"xxhash-rust\",\n ]",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "crates/next-core/src... | 2026-03-30T14:34:37 |
nodejs/node | 17c76c1775cd7a50973e8cdf2e258415851b3ba7 | e39e1fdce8bf131b387cccab5bd2c038c4c55a86 | deps: patch resb crate
Original commit message:
Fix resb on big endian platforms
Refs: https://github.com/unicode-org/icu4x/commit/d310df8b3fb1cbfc551682ccf80f378ed152da8e
Refs: https://github.com/unicode-org/icu4x/pull/7658
PR-URL: https://github.com/nodejs/node/pull/62138
Fixes: https://github.com/nodejs/node/... | [
{
"path": "deps/crates/Cargo.lock",
"patch": "@@ -243,8 +243,6 @@ dependencies = [\n [[package]]\n name = \"resb\"\n version = \"0.1.1\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6a067ab3b5ca3b4dc307d0de9cf75f9f5e6ca9717b192b2f28a36c83e5de9e76\"\n dependencies = [\n... | 2026-03-09T21:38:25 |
electron/electron | 12ea28c23e816696f84287eec7661834f4aa49e3 | ade684dc35e3e534d8c2179f088851260448069c | fix: ensure WebContents::WasShown runs when window is shown (#49421)
Avoids a freeze when failing to enter fullscreen on macOS. | [
{
"path": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -276,16 +276,22 @@ v8::Local<v8::Value> BrowserWindow::GetWebContents(v8::Isolate* isolate) {\n }\n \n void BrowserWindow::OnWindowShow() {\n+ if (!web_contents_shown_) {\n+ web_contents()->WasShown();\n+ web_contents_shown_ =... | 2026-03-18T16:34:11 |
golang/go | 09031d907c720e38cdde6242c763d25c9f985327 | acc2ce075982cea15636f018c421f96105049282 | cmd/compile/internal/devirtualize: use pointer identity for type comparison
Fixes #78404
Change-Id: I6adc1fb42ad6a3acce21333c6819d0796a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/760161
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randa... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -293,9 +293,22 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\t\t\tcontinue\n \t\t\t}\n \t\t}\n-\t\tif t == nil || (typ != nil && !types.Identical(typ, t)) {\n-\t\t\treturn nil\n+\t\tif ... | 2026-03-27T17:09:23 |
vercel/next.js | 039c56f707c2b7958f3511ea0d70f3f08491d3d0 | a0925512428746ea6e6fb034ee36a1997d1d1076 | docs: clarify that `use cache` requires async functions (#92101)
### What?
Update the "Good to know" note in the `use cache` directive docs to
clarify that functions and components using `use cache` must be `async`
at all levels — not just at file level.
### Why?
Users get the build error `"use cache" functions mus... | [
{
"path": "docs/01-app/03-api-reference/01-directives/use-cache.mdx",
"patch": "@@ -14,7 +14,7 @@ related:\n - app/api-reference/functions/revalidateTag\n ---\n \n-The `use cache` directive allows you to mark a route, React component, or a function as cacheable. It can be used at the top of a file to in... | 2026-03-30T14:13:03 |
golang/go | 47c0cd9929b82a0d95a8d0dffda47604081565ea | e7e45d770c4d46617dd17b0f5c7dd58bd448f47b | test/codegen: remove noop Ands from test cases
Theses test cases search for an AND that gets
optimized away after CL 760307.
Should help to fix riscv64 (coudn't check as
builders don't appear on https://build.golang.org/ )
and loong64 CI on master.
Change-Id: I57e4e5ab7d3003f239355137472585e46493d8dc
Reviewed-on: ht... | [
{
"path": "test/codegen/bits.go",
"patch": "@@ -40,8 +40,8 @@ func bitsCheckConstLeftShiftU64(a uint64) (n int) {\n func bitsCheckConstRightShiftU64(a [8]uint64) (n int) {\n \t// amd64:\"BTQ [$]63,\"\n \t// arm64:\"TBNZ [$]63,\" -\"LSR\"\n-\t// loong64:\"SRLV [$]63,\" \"AND [$]1,\" \"BNE\"\n-\t// riscv64:\"... | 2026-03-28T01:31:48 |
rust-lang/rust | 772d9620f4f91ebe167e0c7d2d02e502a5f253c0 | 8609572f432b9739ad36bfedcde18e0e84250917 | fix: update exact and include_ignored flags | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/target_spec.rs",
"patch": "@@ -232,16 +232,13 @@ impl CargoTargetSpec {\n \n let exact = match kind {\n RunnableKind::Test { test_id } | RunnableKind::Bench { test_id } => match test_id {\n- TestId::Path(_) => \"\... | 2026-04-07T13:40:55 |
facebook/react | 2c8725fdfd13705487d13dce008d62c605cd7f73 | 03613cd68c9e1d7ec5cb1eceb91f27f1935a7b8b | [compiler] snap fails if nothing compiled, unless @expectNothingCompiled (#35615)
A few times an agent has constructed fixtures that are silently skipped
because the component has no jsx or hook calls. This PR updates snap to
ensure that for each fixture either:
1) There are at least one compile success/failure *and*... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/class-component-with-render-helper.expect.md",
"patch": "@@ -2,7 +2,7 @@\n ## Input\n \n ```javascript\n-// @compilationMode:\"infer\"\n+// @expectNothingCompiled @compilationMode:\"infer\"\n class Component {\n _rend... | 2026-01-23T18:38:40 |
electron/electron | ade684dc35e3e534d8c2179f088851260448069c | 4ec69238983f3be891b4a5325e8a1f78655fe33f | fix: correctly track BaseWindow::IsActive() on MacOS (#49460)
fix: correctly set IsActive() in BaseWindow on MacOS | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -307,6 +307,12 @@ void BaseWindow::OnWindowSheetEnd() {\n Emit(\"sheet-end\");\n }\n \n+void BaseWindow::OnWindowIsKeyChanged(bool is_key) {\n+#if BUILDFLAG(IS_MAC)\n+ window()->SetActive(is_key);\n+#endif\n+}\n+\n void BaseWindow::O... | 2026-03-18T15:47:19 |
nodejs/node | bd3cba5633e8a363407747bed4123a8c695076fa | 70b35704a04be477e60755bf075d617976925fef | repl: handle exceptions from async context after close
a9da9ffc04c923f383 recently restructured async context handling
in the REPL source so that it no longer uses the domain module,
and instead performs its own async context tracking.
That change was not intended to be breaking, but it affected
behavior for uncaught... | [
{
"path": "lib/repl.js",
"patch": "@@ -195,7 +195,12 @@ function setupExceptionCapture() {\n \n process.addUncaughtExceptionCaptureCallback((err) => {\n const store = replContext.getStore();\n- if (store?.replServer && !store.replServer.closed) {\n+ // TODO(addaleax): Add back a `store.replServe... | 2026-03-09T21:20:08 |
vercel/next.js | e586cda31772c875bd2f5ed52f3c007357c82522 | 4ceb770531fb64899a8d4a2336b853710a95e202 | Update revalidateTag examples to use the new two-argument signature (#92065)
### What?
Updated all documentation examples of `revalidateTag` to use the new
two-argument signature (`revalidateTag(tag, 'max')`) instead of the
deprecated single-argument form (`revalidateTag(tag)`).
### Why?
The `revalidateTag` API now... | [
{
"path": "docs/01-app/02-guides/backend-for-frontend.mdx",
"patch": "@@ -575,7 +575,7 @@ export async function GET(request: NextRequest) {\n return NextResponse.json({ success: false }, { status: 400 })\n }\n \n- revalidateTag(tag)\n+ revalidateTag(tag, 'max')\n \n return NextResponse.json({ succ... | 2026-03-29T04:09:24 |
facebook/react | 03613cd68c9e1d7ec5cb1eceb91f27f1935a7b8b | 2af6822c2108eabc0228d7809aa27c00bb2ebb53 | [compiler] Improve snap usability (#35537)
A whole bunch of changes to snap aimed at making it more usable for
humans and agents. Here's the new CLI interface:
```
node dist/main.js --help
Options:
--version Show version number [boolean]
--sync Run compiler in... | [
{
"path": "compiler/packages/snap/src/constants.ts",
"patch": "@@ -26,5 +26,3 @@ export const FIXTURES_PATH = path.join(\n 'compiler',\n );\n export const SNAPSHOT_EXTENSION = '.expect.md';\n-export const FILTER_FILENAME = 'testfilter.txt';\n-export const FILTER_PATH = path.join(PROJECT_ROOT, FILTER_FILEN... | 2026-01-23T18:36:55 |
golang/go | 880f126233a377ee656612e68710eefe7964f646 | c7238e81ca45af755a2c7770950eb163efa3495f | test/codegen: fix ppc64x rldicl bit test
The prove pass removes superfluous bit masking. This was meant to
test the edge cases of the ppc64 folding rules which are exactly
the cases the prove pass now removes.
Fixes #78403
Change-Id: I45eeac58e01b42e19b8a06bb0d7af96c616ccbff
Reviewed-on: https://go-review.googlesour... | [
{
"path": "test/codegen/bits.go",
"patch": "@@ -606,8 +606,8 @@ func bitsRotateAndMask(io64 [8]uint64, io32 [4]uint32, io16 [4]uint16, io8 [4]ui\n \tio64[1] = io64[1] & 0x0000FFFFFFFFFFFF\n \t// ppc64x: -\"SRD\", -\"AND\", \"RLDICL [$]60, R[0-9]*, [$]16, R\"\n \tio64[2] = (io64[2] >> 4) & 0x0000FFFFFFFFFFFF... | 2026-03-27T19:56:25 |
electron/electron | 4ec69238983f3be891b4a5325e8a1f78655fe33f | e86cd9da965efec42253646d254cc860002a3cde | chore: bump chromium to 148.0.7738.0 (main) (#50323)
* chore: bump chromium in DEPS to 148.0.7738.0
* chore: fixup patch indices
* 7664509: Migrate ServiceWorkerInfo to ChildProcessId
https://chromium-review.googlesource.com/c/chromium/src/+/7664509
---------
Co-authored-by: electron-roller[bot] <84116207+electro... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7737.0',\n+ '148.0.7738.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-03-18T15:45:24 |
rust-lang/rust | bcfd03276d7ede21e7e9f8676f60af02368ccfdf | c963c130beaff6d29a65a66720fe9f6e4998d67d | fix: Improve label on add_missing_match_arms assist
"Fill match arms" is an extremely helpful assist, but the name is
pretty opaque to new users (at least it was to me). We actually
renamed the file in rust-lang/rust-analyzer#10299 from
`fill_match_arms.rs` to `add_missing_match_arms.rs` but the label
hasn't changed f... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs",
"patch": "@@ -1,4 +1,4 @@\n-use std::iter::{self, Peekable};\n+use std::iter;\n \n use either::Either;\n use hir::{Adt, AsAssocItem, Crate, FindPathConfig, HasAttrs, ModuleDef, Semantics};\n@@ -93,8 +93,8 @@ pub(c... | 2026-03-31T14:08:20 |
nodejs/node | 70b35704a04be477e60755bf075d617976925fef | a0d8ea42e5184a6ab6d7f743bfbca28834a19c4c | tools: revert timezone update GHA workflow to ubuntu-latest
The timezone update script requires `icupkg` which doesn't
appear to be available on `ubuntu-slim`.
PR-URL: https://github.com/nodejs/node/pull/62140
Fixes: https://github.com/nodejs/node/issues/62109
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-B... | [
{
"path": ".github/workflows/timezone-update.yml",
"patch": "@@ -16,7 +16,8 @@ jobs:\n pull-requests: write # to create a PR (gr2m/create-or-update-pull-request-action)\n \n if: github.repository == 'nodejs/node'\n- runs-on: ubuntu-slim\n+ # cannot use ubuntu-slim here because it does not h... | 2026-03-09T13:06:24 |
vercel/next.js | 1e73fa94ac0fbdd2827b79085f7223c1268e4848 | 904501127c9ed2e0a7ffd51bd192537b7c398fb3 | adapters: remove unused suffix code (#91997)
The regex associated with this flag was the same value in both the
true/false case and the underlying flag was only used to control this
regex. This appears to be dead code, so removing it. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -1958,8 +1958,6 @@ export async function handleBuildComplete({\n const isFallbackFalse =\n prerenderManifest.dynamicRoutes[route.page]?.fallback === false\n \n- const { hasFallbackRootParams } = route\n-\n c... | 2026-03-28T01:07:28 |
facebook/react | 7fccd6b5a344d9d2603392c354c4b471cd2b2cef | d29087523a09d2babff2ce258f3527944a0ecd2e | [DevTools] Fix console links not being openable (#35229) | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -711,6 +711,12 @@ if (chrome.devtools.panels.setOpenResourceHandler) {\n resource.url,\n lineNumber - 1,\n columnNumber - 1,\n+ maybeError => {\n+ if (maybeError && maybeError.isError) {\n+... | 2026-01-21T09:34:26 |
golang/go | 5a0e0838232d7aa7c82b5a33d89458c01ccd4ffc | 90adad7b2565d456bf5e120a59a07ff31f3ada45 | crypto: disallow RegisterHash with hash value 0
We already prevent registering hash values larger than the number of
hashes we actually have, but for some reason we don't prevent
registering hash value 0, which is the sentinel value we typically use
for "no hash". This change adds a check to prevent registering hash
v... | [
{
"path": "src/crypto/crypto.go",
"patch": "@@ -143,7 +143,7 @@ func (h Hash) Available() bool {\n // hash function. This is intended to be called from the init function in\n // packages that implement hash functions.\n func RegisterHash(h Hash, f func() hash.Hash) {\n-\tif h >= maxHash {\n+\tif h == 0 || h... | 2026-03-27T15:40:08 |
electron/electron | e86cd9da965efec42253646d254cc860002a3cde | d6db1a27af662fd8b7378d87afefdff015a213aa | docs: fix markdown formatting in fuses.md (#50318)
* docs: fix markdown formatting in fuses.md
* Use bulleted list (was being run together on one line)
* Wrap ASCII diagram in code block
* docs: apply suggestions from code review
Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com>
Co-authored-by: Erick... | [
{
"path": "docs/tutorial/fuses.md",
"patch": "@@ -146,13 +146,15 @@ The extra privileges granted to the `file://` protocol by this fuse are incomple\n The `wasmTrapHandlers` fuse controls whether V8 will use signal handlers to trap Out of Bounds memory\n access from WebAssembly. The feature works by surroun... | 2026-03-18T14:47:52 |
rust-lang/rust | eb708d6dde415686869a55066ecfda394e78077c | c963c130beaff6d29a65a66720fe9f6e4998d67d | internal: Fix lsp_ext field name for RecursiveMemoryLayoutNode
Due `editors/code/src/commands.ts` uses inline HTML, so this error pass to type check | [
{
"path": "src/tools/rust-analyzer/editors/code/src/lsp_ext.ts",
"patch": "@@ -300,14 +300,14 @@ export type SsrParams = {\n };\n \n export type RecursiveMemoryLayoutNode = {\n- item_name: string;\n+ itemName: string;\n typename: string;\n size: number;\n alignment: number;\n offset: n... | 2026-04-07T12:02:48 |
nodejs/node | a0d8ea42e5184a6ab6d7f743bfbca28834a19c4c | f82525e9c854f15fa4e1da3fe02ec711d3f2fd74 | deps: V8: cherry-pick aa0b288f87cc
Original commit message:
PPC/S390: [wasm] Fix jump table offset when patching
... need to make sure patching of target occurs at the correct spot
based on what `EmitFarJumpSlot` emits. Also mask the branch offset in
PPC64 EmitJumpSlot to match `Assembler::b()`.
... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n... | 2026-03-09T03:18:27 |
facebook/react | c55ffb5ca3b2ba3a09a978629d5a1548c0e8085b | a49952b303a646c17f4d667956639300840a3e5b | Add Clean Up Callbacks to View Transition and Gesture Transition Events (#35564)
Stacked on #35556 and #35559.
Given that we don't automatically clean up all view transition
animations since #35337 and browsers are buggy, it's important that you
clean up any `Animation` started manually from the events. However,
ther... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -82,8 +82,12 @@ export default function Page({url, navigate}) {\n {rotate: '0deg', transformOrigin: '30px 8px'},\n {rotate: '360deg', transformOrigin: '30px 8px'},\n ];\n- viewTransition.old.animate(keyframes, 250);... | 2026-01-20T00:27:45 |
vercel/next.js | 904501127c9ed2e0a7ffd51bd192537b7c398fb3 | d8b5ea2d4757250c9f4650034a2eaa733f585040 | [experiment] Add useOffline flag with offline retry behavior (#92011)
**Current:**
1. https://github.com/vercel/next.js/pull/92011
**Up next:**
2. https://github.com/vercel/next.js/pull/92012
---
When a navigation, server action, or prefetch fails due to a network
error, instead of falling back to MPA navigation ... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -245,6 +245,7 @@ export function getDefineEnv({\n 'process.env.__NEXT_DYNAMIC_ON_HOVER': Boolean(\n config.experimental.dynamicOnHover\n ),\n+ 'process.env.__NEXT_USE_OFFLINE': Boolean(config.experimental.useOffline),\n 'pr... | 2026-03-28T00:47:46 |
golang/go | 90adad7b2565d456bf5e120a59a07ff31f3ada45 | eeefb11776b91e4c758306d00094dccddffc8ce8 | cmd/go: specify full path to go command when running go tool covdata
Otherwise the GOROOT will be a post-1.25 GOROOT, while we try to run
"go tool covdata" with a go command that's 1.24 or earlier from the post
1.25 toolchain. The 1.24 go command won't be able to find covdata in the
1.25 goroot because go 1.25 and lat... | [
{
"path": "src/cmd/go/internal/work/cover.go",
"patch": "@@ -24,7 +24,7 @@ import (\n func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {\n \tcmdline := str.StringList(cmdargs...)\n \targs := append([]string{}, cfg.BuildToolexec...)\n-\targs = append(args, \"go\", \"tool\", \"covdata\")\n... | 2026-03-17T21:07:02 |
electron/electron | 76331f05644b8a8e43319736fe1688ed87dd7e67 | 7cb6a737a913c8670a2bd4d8b7d9e36282aff274 | refactor: replace `CHILD_PLUGIN` with `CHILD_EMBEDDER_FIRST` on macOS (#50278)
refactor: replace CHILD_PLUGIN with CHILD_EMBEDDER_FIRST on macOS
Chromium removed upstream support for child plugin processes without
library validation in https://crbug.com/461717105, which we patched
back via feat_restore_macos_child_pl... | [
{
"path": "BUILD.gn",
"patch": "@@ -1017,7 +1017,17 @@ if (is_mac) {\n }\n }\n \n- foreach(helper_params, content_mac_helpers) {\n+ # Electron defines its own plugin helper (using CHILD_EMBEDDER_FIRST + 1) to\n+ # allow loading of unsigned or third-party-signed libraries.\n+ _electron_plugin_helpe... | 2026-03-17T18:41:15 |
rust-lang/rust | 03b453cda3ec7cd3d656972340df933c7ea67691 | 906ca7ff5e1f01cdf59388574b4822365bffabea | Fix no results when searching for == in doc | [
{
"path": "src/librustdoc/html/static/js/search.js",
"patch": "@@ -4749,11 +4749,16 @@ class DocSearch {\n })(),\n \"query\": parsedQuery,\n };\n- } else if (parsedQuery.error !== null) {\n+ } else if (parsedQuery.error !== null || parsedQuery.foundE... | 2026-04-07T05:54:30 |
nodejs/node | 724ef8ef9ede4b468675c9ce4e32214d333d68f1 | 84ae06e411e5e93a7e163f97845845b4c359e0cb | url: suppress warnings from url.format/url.resolve inside node_modules
PR-URL: https://github.com/nodejs/node/pull/62005
Fixes: https://github.com/nodejs/node/issues/61724
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "lib/url.js",
"patch": "@@ -132,7 +132,7 @@ const {\n let urlParseWarned = false;\n \n function urlParse(url, parseQueryString, slashesDenoteHost) {\n- if (!urlParseWarned && !isInsideNodeModules(2)) {\n+ if (!urlParseWarned && !isInsideNodeModules(4)) {\n urlParseWarned = true;\n proces... | 2026-03-08T18:32:29 |
facebook/react | a49952b303a646c17f4d667956639300840a3e5b | 4bcf67e74657086ff7d8f951d6365db06cf1f72c | Properly clean up gesture Animations (#35559)
Follow up to #35337.
During a gesture, we always cancel the original animation and create a
new one that we control. That's the one we need to add to the set that
needs to be cancelled. Otherwise future gestures hang.
An unfortunate consequence is that any custom ones th... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2372,6 +2372,7 @@ function animateGesture(\n targetElement: Element,\n pseudoElement: string,\n timeline: GestureTimeline,\n+ viewTransitionAnimations: Array<Animation>,\n customTimelineCleanup: Array<() => voi... | 2026-01-20T00:26:28 |
golang/go | 4d6a40923b7b55d48e9e7abfc3514e607d58fe40 | 703bb60bf19f5410402fed4c736b31f2f8ec9fba | debug/buildinfo: remove macho/elf DataStart fallback code
The go version code can't read pre-1.13 go versions, but in 1.13 we
always write the go version info to the .go.buildinfo section. Remove
the fallback code because it won't be used.
See https://github.com/rsc/goversion/blob/v1.2.0/version/read.go for the
origi... | [
{
"path": "src/debug/buildinfo/buildinfo.go",
"patch": "@@ -458,11 +458,6 @@ func (x *elfExe) DataStart() (uint64, uint64) {\n \t\t\treturn s.Addr, s.Size\n \t\t}\n \t}\n-\tfor _, p := range x.f.Progs {\n-\t\tif p.Type == elf.PT_LOAD && p.Flags&(elf.PF_X|elf.PF_W) == elf.PF_W {\n-\t\t\treturn p.Vaddr, p.Mem... | 2026-03-18T17:34:44 |
rust-lang/rust | efe858abb86329347abf2dc03ff4277e4ce6faff | c963c130beaff6d29a65a66720fe9f6e4998d67d | fix: Use the official npm mirror for all VS Code dependencies
c420e48547e444e1f978be9dbf045d459936b0d5 changed a few packages to be
installed from npmmirror.com rather than npmjs.org. This is
harmless (there's a SHA512 hash to confirm integrity) but it prevents
building the VS Code extension in locked down environment... | [
{
"path": "src/tools/rust-analyzer/editors/code/package-lock.json",
"patch": "@@ -257,7 +257,7 @@\n },\n \"node_modules/@emnapi/core\": {\n \"version\": \"1.9.1\",\n- \"resolved\": \"https://registry.npmmirror.com/@emnapi/core/-/core-1.9.1.tgz\",\n+ \"resolv... | 2026-04-07T10:42:33 |
electron/electron | 7cb6a737a913c8670a2bd4d8b7d9e36282aff274 | 3659b975638da8913022bf1090161459cf2a1985 | chore: bump chromium to 148.0.7737.0 (main) (#50277)
* chore: bump chromium in DEPS to 148.0.7734.0
* chore: fixup patch indices
* chore: bump chromium in DEPS to 148.0.7736.0
* chore: fixup patch indices
* chore: bump chromium in DEPS to 148.0.7737.0
* chore: fixup patch indices
* 7666125: Migrate ServiceWorker... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7733.0',\n+ '148.0.7737.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-03-17T17:30:32 |
facebook/react | 41b3e9a67004eb42631a9ff4504c56d22e2f97f0 | 195fd2286bcc3286859651d6709e5ae5a250335b | [Fizz] Push a stalled use() to the ownerStack/debugTask (#35226) | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js",
"patch": "@@ -108,6 +108,28 @@ describe('ReactFlightDOMNode', () => {\n );\n }\n \n+ /**\n+ * Removes all stackframes not pointing into this file\n+ */\n+ function ignoreListStack(str) {\n+ if (!str) {\n+ ... | 2026-01-19T08:10:16 |
golang/go | 703bb60bf19f5410402fed4c736b31f2f8ec9fba | 2d72c268ea10db520b7dd99802cf2aa40b18c1af | database/sql: don't try to synctest.Wait in benchmarks
Benchmarks shouldn't use synctest. Avoid a synctest.Wait in database
shutdown when in benchmarks.
Fixes #78373
Change-Id: I14755f8eefb3ab5c69cc660b1e884bbf6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/760400
Auto-Submit: Damien Neil <dneil@goog... | [
{
"path": "src/database/sql/sql_test.go",
"patch": "@@ -184,8 +184,21 @@ func closeDB(t testing.TB, db *DB) {\n \t}\n \n \t// Connections close asynchronously; wait for them to finish doing so.\n-\tsynctest.Wait()\n-\tif numOpen := db.numOpenConns(); numOpen != 0 {\n+\tnumOpenConns := func() int {\n+\t\tdb.... | 2026-03-27T17:04:29 |
nodejs/node | 1bd17b47735f407d2bcefd31c60ce9d11f744a75 | 3725bd2145b1effcf49dd8a41ed7fadfd3cee1e6 | tools: improve error handling in test426 update script
If the current SHA is not found in the README for some reason,
exit with an error.
PR-URL: https://github.com/nodejs/node/pull/62121
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/dep_updaters/update-test426-fixtures.sh",
"patch": "@@ -6,11 +6,17 @@ BASE_DIR=$(cd \"$(dirname \"$0\")/../..\" && pwd)\n \n TARGET_DIR=\"$BASE_DIR/test/fixtures/test426\"\n README=\"$BASE_DIR/test/test426/README.md\"\n-TARBALL_URL=$(curl -fsIo /dev/null -w '%header{Location}' https://githu... | 2026-03-07T20:40:33 |
rust-lang/rust | fe134ed0c4db55068e3b28ac9addd49a8c4801f9 | c963c130beaff6d29a65a66720fe9f6e4998d67d | minor: Fix self kw is snippet in type location
Example
---
```rust
const _: $0
```
**Before this PR**
```text
self::~
crate::~
```
**After this PR**
```text
self::
crate::
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/render.rs",
"patch": "@@ -590,14 +590,17 @@ pub(crate) fn render_type_keyword_snippet(\n let mut item =\n CompletionItem::new(CompletionItemKind::Keyword, source_range, label, ctx.edition);\n \n- let cap = ctx.config.snippet_cap;\n-... | 2026-04-07T10:26:14 |
electron/electron | 958278c273004d6c61074795c5fe3dc8d1804c97 | b7e9bbed0c301f338eeabdaeedae1940c8129d8f | feat: add id and groupId options to macOS notifications (#50097)
* feat: add custom `id` property to Notification API (macOS only)
* feat: add `groupId` property to Notification API (macOS). Notifications with the same groupId will be visually grouped together in Notification Center
* fix: move validation to constru... | [
{
"path": "docs/api/notification.md",
"patch": "@@ -79,6 +79,8 @@ app.whenReady().then(() => {\n ### `new Notification([options])`\n \n * `options` Object (optional)\n+ * `id` string (optional) _macOS_ - A unique identifier for the notification, mapping to `UNNotificationRequest`'s [`identifier`](https://d... | 2026-03-16T20:24:29 |
facebook/react | 195fd2286bcc3286859651d6709e5ae5a250335b | d87298ae166b84cf6fcc8f9dbc25d2e320309841 | [tests] Fix flaky flight tests (#35513)
Flights tests are failing locally and in CI non-deterministically
because we're not disabling async hooks after tests, and GC can clear
WeakRefs non-deterministically.
This PR fixes the issue by adding an afterEach to disable installed
hooks, and normalizing the `value` to `val... | [
{
"path": "packages/internal-test-utils/debugInfo.js",
"patch": "@@ -79,6 +79,18 @@ function normalizeIOInfo(config: DebugInfoConfig, ioInfo) {\n status: promise.status,\n };\n }\n+ } else if ('value' in ioInfo) {\n+ // If value exists in ioInfo but is undefined (e.g., WeakRef was GC'd... | 2026-01-18T20:36:00 |
rust-lang/rust | eacf5b85561628a24bcda3e8c277c7cfbb686cbe | bcded331651b60a0383b3ff51db4f24c4495ac53 | Generate more verbose error delegation | [
{
"path": "compiler/rustc_ast_lowering/src/delegation.rs",
"patch": "@@ -128,14 +128,12 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n {\n self.get_sig_id(delegation_info.resolution_node, span)\n } else {\n- return self.generate_delegat... | 2026-04-07T10:04:59 |
electron/electron | b7e9bbed0c301f338eeabdaeedae1940c8129d8f | eec3fe967eb9051af0e7dbf57bcc361d8375869b | fix: restore `sdk_inputs` cross-toolchain deps for macOS (#50297)
fix: restore sdk_inputs cross-toolchain deps for macOS
The change in CL:7652975 restricted sdk_inputs public_deps
to iOS only, to avoid setting up Xcode symlinks for the Linux
toolchain when cross-building chrome/linux on Mac. However, this
also broke ... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -149,3 +149,4 @@ fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n feat_restore_macos_child_plugin_process.patch\n+fix_restore_sdk_inputs_cr... | 2026-03-16T20:12:38 |
nodejs/node | 3725bd2145b1effcf49dd8a41ed7fadfd3cee1e6 | 7991cd2a711a0aa7d634f1ec90a00bafe00f0ac2 | stream: fix brotli error handling in web compression streams
Convert brotli decompression errors to TypeError to match the
Compression Streams spec, by extending handleKnownInternalErrors()
in the adapters layer to recognize brotli error codes.
This replaces the manual error event handler on DecompressionStream
which... | [
{
"path": "lib/internal/webstreams/adapters.js",
"patch": "@@ -120,7 +120,14 @@ function handleKnownInternalErrors(cause) {\n case cause?.code === 'ERR_STREAM_PREMATURE_CLOSE': {\n return new AbortError(undefined, { cause });\n }\n- case ZLIB_FAILURES.has(cause?.code): {\n+ case ZLIB_FAI... | 2026-03-04T22:37:06 |
vercel/next.js | 5f25885874163c9bd3aec0a889a50cc61d912aa5 | 3cbf85d1fcb8d77dbf6ec503cc35ca688c9829bd | [devtools] Show `AggregateError.errors` in the error overlay (#91835) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/runtime-error/error-aggregate-errors.tsx",
"patch": "@@ -0,0 +1,134 @@\n+import { useMemo } from 'react'\n+import React from 'react'\n+import { CodeFrame } from '../../components/code-frame/code-frame'\n+import { ErrorOverlayCallStack } from '... | 2026-03-27T14:21:19 |
facebook/react | 3926e2438fd65a0fb2c7807b5a633ba147408ab9 | 6baff7ac763c475087ab5ebf7eef5d0b9f4436df | Fix ViewTransition null stateNode with SuspenseList (#35520)
I was experimenting with animations in SuspenseList and hit a crash
using ViewTransition as a direct child with `revealOrder="together"`
```
TypeError: Cannot read properties of null (reading 'autoName')
33 | return props.name;
34 | }... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMViewTransition-test.js",
"patch": "@@ -0,0 +1,179 @@\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... | 2026-01-16T21:39:25 |
golang/go | 2d72c268ea10db520b7dd99802cf2aa40b18c1af | 7f2e2fd71f0b25fde6031b8317f525f1a2739e9b | cmd/fix: change -diff to exit 1 if diffs exist
Currently "go fix -diff" and "go vet -fix -diff" always exit with status
0 even when they print diffs, which is inconsistent with "gofmt -d"
(#46289) and "go mod tidy -diff" (#27005) that exit non-zero when diffs
are present.
The root cause is that the default VetHandleS... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -511,7 +511,8 @@\n // It supports these flags:\n //\n //\t -diff\n-//\t\tinstead of applying each fix, print the patch as a unified diff\n+//\t\tinstead of applying each fix, print the patch as a unified diff;\n+//\t\texit with a non-zero status if the diff i... | 2026-03-03T06:22:28 |
rust-lang/rust | db373833ce6d49c593507db7cffd170826ed951f | bcded331651b60a0383b3ff51db4f24c4495ac53 | Fix pin docs
Split a long sentence to improve readability. | [
{
"path": "library/core/src/pin.rs",
"patch": "@@ -474,9 +474,9 @@\n //!\n //! In an intrusive doubly-linked list, the collection itself does not own the memory in which\n //! each of its elements is stored. Instead, each client is free to allocate space for elements it\n-//! adds to the list in whichever m... | 2026-04-07T06:01:23 |
electron/electron | eec3fe967eb9051af0e7dbf57bcc361d8375869b | 01714757e3600bb0e7b6791ff9e684d5312f5d2c | fix: user resizable transparent windows on win32 (#49428)
test: revert win32 frameless and transparent resizable expectations | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -1018,17 +1018,13 @@ void NativeWindowViews::MoveTop() {\n \n bool NativeWindowViews::CanResize() const {\n #if BUILDFLAG(IS_WIN)\n- return resizable_ && thick_frame_;\n+ return has_frame() ? resizable_ && thick_frame_ : resizable_;\n #else\n ... | 2026-03-16T19:31:07 |
nodejs/node | 7991cd2a711a0aa7d634f1ec90a00bafe00f0ac2 | 165334a920ea73d156a61260a6bccf83d25e7cb2 | stream: improve Web Compression spec compliance
Pass rejectGarbageAfterEnd: true to createInflateRaw() and
createBrotliDecompress(), matching the behavior already in place
for deflate and gzip. The Compression Streams spec treats any
data following a valid compressed payload as an error.
When the underlying Node.js s... | [
{
"path": "lib/internal/webstreams/adapters.js",
"patch": "@@ -11,6 +11,8 @@ const {\n SafePromiseAll,\n SafePromisePrototypeFinally,\n SafeSet,\n+ StringPrototypeStartsWith,\n+ Symbol,\n TypeError,\n TypedArrayPrototypeGetBuffer,\n TypedArrayPrototypeGetByteLength,\n@@ -94,6 +96,9 @@ const { ... | 2026-03-04T21:36:41 |
facebook/react | db71391c5c70dc113560d1c23d0b6548604d827f | 4cf906380d5d3282f1df3c8c34cf642e86a3a0a3 | [Fiber] Instrument the lazy initializer thenable in all cases (#35521)
When a lazy element or component is initialized a thenable is returned
which was only be conditionally instrumented in dev when asyncDebugInfo
was enabled. When instrumented these thenables can be used in
conjunction with the SuspendOnImmediate opt... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9551,33 +9551,20 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n \n // Create fresh lazy components for CLIENT\n let resolveClientInner;\n- const clientLazyInner = React.laz... | 2026-01-16T03:05:23 |
vercel/next.js | 63f485248bacc347b8593d4597d74bd4aaa160c4 | ad65b1bdcf3d10e5213c80bea56a73038bbf1c99 | test(interoperability): increase waitForElementByCss timeout for cross-router navigations (#91918)
### What?
Increase the `waitForElementByCss` timeout from the default (~10 s) to
30 s on every cross-router navigation assertion in
`test/e2e/app-dir/interoperability-with-pages/navigation.test.ts`.
### Why?
[Datadog... | [
{
"path": "test/e2e/app-dir/interoperability-with-pages/navigation.test.ts",
"patch": "@@ -20,21 +20,25 @@ describe('navigation between pages and app dir', () => {\n it('It should be able to navigate app -> pages', async () => {\n const browser = await webdriver(next.url, '/app')\n expect(await br... | 2026-03-26T21:20:55 |
golang/go | 7f2e2fd71f0b25fde6031b8317f525f1a2739e9b | 31a839621976f968a997fd8578b6c5fd074bbc0c | cmd/go: add example support to go doc output
The go doc command now includes a -ex flag to list executable examples.
It will also print the code and expected output of an example when
passed its name.
Fixes #26715
Change-Id: I34b09403cc3cb45655939bd4fe27accec0e141f5
Reviewed-on: https://go-review.googlesource.com/c/... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -452,6 +452,8 @@\n //\t\t\tTreat a command (package main) like a regular package.\n //\t\t\tOtherwise package main's exported symbols are hidden\n //\t\t\twhen showing the package's top-level documentation.\n+//\t\t-ex\n+//\t\t\tInclude executable examples.\n ... | 2026-02-10T08:26:25 |
electron/electron | ffad67222d2c7516c97310adf1436304ff9ae256 | 078586fab0380335c64c7a15e9674d34af9266ed | test: fix esm issue in node-spec-runner (#50289)
Chromium added a top-level package.json in CL:7485999 that sets
the type to module and breaks commonjs tests run via
node-spec-runner.js. This commit temporarily changes the type to
commonjs while running the tests, then changes it back to module when done. | [
{
"path": "script/node-spec-runner.js",
"patch": "@@ -14,6 +14,7 @@ const args = minimist(process.argv.slice(2), {\n \n const BASE = path.resolve(__dirname, '../..');\n \n+const ROOT_PACKAGE_JSON = path.resolve(BASE, 'package.json');\n const NODE_DIR = path.resolve(BASE, 'third_party', 'electron_node');\n c... | 2026-03-16T16:55:03 |
facebook/react | 4028aaa50c92f1a546cd1aeac421bfabd66bef68 | f0fbb0d199c166a634084c66a7cf9486ebb64bc1 | Commit the Gesture lane if a gesture ends closer to the target state (#35486)
Stacked on #35485.
Before this PR, the `startGestureTransition` API would itself never
commit its state. After the gesture releases it stops the animation in
the next commit which just leaves the DOM tree in the original state. If
there's a... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -171,17 +171,20 @@ export default function Page({url, navigate}) {\n }}>\n <h1>{!show ? 'A' + counter : 'B'}</h1>\n </ViewTransition>\n- {show ? (\n- <div>\n- ... | 2026-01-16T01:43:52 |
nodejs/node | 165334a920ea73d156a61260a6bccf83d25e7cb2 | 7feff3a715bf2954534505e64e43b60afee35435 | test: improve WPT report runner
Add incremental report writing after each spec completes and on
worker errors so that reports survive if the process is killed
before the exit handler runs.
Add bytes() method to readAsFetch() to match the Response API
used by newer WPT tests.
PR-URL: https://github.com/nodejs/node/pu... | [
{
"path": "test/common/wpt.js",
"patch": "@@ -223,6 +223,7 @@ class ResourceLoader {\n return {\n ok: true,\n arrayBuffer() { return data.buffer; },\n+ bytes() { return new Uint8Array(data); },\n json() { return JSON.parse(data.toString()); },\n text() { return data.toString... | 2026-03-04T21:32:21 |
vercel/next.js | ad65b1bdcf3d10e5213c80bea56a73038bbf1c99 | f7d487057c75a73f5a570cf8fd83b49262ca9809 | test(app-basepath): increase waitForElementByCss timeout for hard-nav test (#91920)
### What?
Increase the `waitForElementByCss('#page-2', ...)` timeout in the `app
dir - basepath › should successfully hard navigate from pages -> app`
test from the default 10 s to 30 s.
### Why?
[Datadog test
runs](https://app.data... | [
{
"path": "test/e2e/app-dir/app-basepath/index.test.ts",
"patch": "@@ -13,7 +13,8 @@ describe('app dir - basepath', () => {\n it('should successfully hard navigate from pages -> app', async () => {\n const browser = await next.browser('/base/pages-path')\n await browser.elementByCss('#to-another')... | 2026-03-26T21:20:37 |
golang/go | 31a839621976f968a997fd8578b6c5fd074bbc0c | faeffecf8666bde8cbb3383c3fdf4a4d92ee421c | all: remove openbsd/mips64 port
The openbsd/mips64 port is dead, remove the remaining code specific to
that port and clean up build tags.
Fixes #61546
Change-Id: I0328b7b76ce1ddacd3a526b3f4ae29eaa1254c3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/746480
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -1819,7 +1819,6 @@ var cgoEnabled = map[string]bool{\n \t\"openbsd/amd64\": true,\n \t\"openbsd/arm\": true,\n \t\"openbsd/arm64\": true,\n-\t\"openbsd/mips64\": true,\n \t\"openbsd/ppc64\": false,\n \t\"openbsd/riscv64\": true,\n \t\"plan9/386\": ... | 2026-03-25T22:45:38 |
rust-lang/rust | b400f22c7b5125a3f35c12ecae1d31251e90fdc5 | 49b6ac01d6f4c3da812039ae846407a20961aa4c | Show the guard exhaustivity note only when it's the guards alone that cause non-exhaustiveness
Only show the "match arms with guards don't count towards exhaustivity"
note when removing all guards would make the match exhaustive. Previously,
this note was shown whenever all arms had guards, even if the patterns
themse... | [
{
"path": "compiler/rustc_mir_build/src/thir/pattern/check_match.rs",
"patch": "@@ -532,6 +532,18 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {\n | hir::MatchSource::AwaitDesugar\n | hir::MatchSource::FormatArgs => None,\n };\n+\n+ // Check... | 2026-04-07T09:04:24 |
electron/electron | a561dd97a682d92eec636122ebb442686b9fb04c | b9cbcde600437eb5e6b882a78b0ec365c5c70892 | fix: add ASAR support to additional copy methods (#50226)
* fix: add ASAR support for additional copy methods
* test: add tests for ASAR support for additional copy messages | [
{
"path": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -1232,6 +1232,8 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n // has filesystem caching.\n overrideAPI(fs, 'copyFile');\n overrideAPISync(fs, 'copyFileSync');\n+ overrideAPI(fs, 'cp');\n+ overrideAPISync(fs, 'cpSync');\n \n ... | 2026-03-16T13:36:48 |
facebook/react | f0fbb0d199c166a634084c66a7cf9486ebb64bc1 | bb8a76c6cc77ea2976d690ea09f5a1b3d9b1792a | [Fiber] fix useId tracking on replay (#35518)
When Fiber replays work after suspending and resolving in a microtask it
stripped the Forked flag from Fibers because this flag type was not
considered a Static flag. The Forked nature of a Fiber is not render
dependent and should persist after unwinding work. By making th... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9478,4 +9478,159 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n </div>,\n );\n });\n+\n+ it('useId is consistent for siblings when component suspends with nested lazy', a... | 2026-01-16T01:27:58 |
nodejs/node | 50fe0102525d24434681ff4f6a60107fbb6a2b54 | 6ad5f7cb80c012244e9fda1e9afd01e31fd0dc35 | src: expose async context frame debugging helper to JS
This was invaluable for debugging the previous change,
so I'm suggesting we add it regardless of it being a
debugging-only API.
PR-URL: https://github.com/nodejs/node/pull/62103
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Gerhard Stöbic... | [
{
"path": "src/async_wrap.cc",
"patch": "@@ -322,6 +322,13 @@ void AsyncWrap::AsyncReset(const FunctionCallbackInfo<Value>& args) {\n wrap->AsyncReset(resource, execution_async_id);\n }\n \n+// Useful for debugging async context propagation. Not intended for public use.\n+void AsyncWrap::GetAsyncContextFr... | 2026-03-03T23:04:37 |
golang/go | 91d1a883768b8b38fe79eefd820063b2b593f23a | 87fae3622dacca9cfa5026c712df40af694a4e6a | cmd/internal/obj/riscv: add assembly support of Zbc extension
The Zbc extension adds carry-less multiplication instructions for
polynomial arithmetic over GF(2), which is used in cryptographic
algorithms and error-correcting codes. The instructions included
are: clmul, clmulh, and clmulr.
Change-Id: I77a40add1a795c7b... | [
{
"path": "src/cmd/asm/internal/asm/testdata/riscv64.s",
"patch": "@@ -509,6 +509,14 @@ start:\n \tORCB\tX5, X6\t\t\t\t\t// 13d37228\n \tREV8\tX7, X8\t\t\t\t\t// 13d4836b\n \n+\t// 28.4.3: Carry-less multiplication (Zbc)\n+\tCLMUL\tX5, X6, X7 \t\t\t\t// b313530a\n+\tCLMUL\tX5, X6\t \t\t\t\t// 3313530a\n+\tC... | 2025-11-27T06:37:04 |
vercel/next.js | f7d487057c75a73f5a570cf8fd83b49262ca9809 | 0090db224d177c51f6d5e45fe1be2527ce04e899 | test(typed-routes): fix flaky tests by increasing retry timeout (#91923)
## Fixing a bug
### What?
Three tests in `test/e2e/app-dir/typed-routes/typed-routes.test.ts` were
intermittently failing with `Failed to retry within 3000ms`:
- `typed-routes › should generate route types correctly`
- `typed-routes › should h... | [
{
"path": "test/e2e/app-dir/typed-routes/typed-routes.test.ts",
"patch": "@@ -23,13 +23,21 @@ describe('typed-routes', () => {\n }\n \n it('should generate route types correctly', async () => {\n+ // Route type generation happens after the \"Ready\" log fires; give it time.\n await retry(async ()... | 2026-03-26T21:20:13 |
rust-lang/rust | 3350dae0ea7570d78ae888dc101c2fee1bd028fc | b2a3e5f05283d878d2c2340ffb0392fd29007fa6 | fix: Improve add some on block like expression
Example
---
```rust
fn foo() -> Result<(), ()> {
for _ in 0..5 {}$0
}
```
**Before this PR**
```rust
fn foo() -> Result<(), ()> {
Ok(for _ in 0..5 {})
}
```
**After this PR**
```rust
fn foo() -> Result<(), ()> {
for _ in 0..5 {}
Ok(())
}
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/type_mismatch.rs",
"patch": "@@ -110,7 +110,8 @@ fn add_missing_ok_or_some(\n ) -> Option<()> {\n let root = ctx.sema.db.parse_or_expand(expr_ptr.file_id);\n let expr = expr_ptr.value.to_node(&root);\n- let expr_range = ctx.se... | 2026-04-04T12:05:57 |
facebook/react | 53daaf5aba1827c2f6c6e01ae1318c36f5a1902e | 4a3d993e52fd6bcadd9c3029c75df3c22684f69c | Improve the detection of changed hooks (#35123)
## Summary
cc @hoxyq
Fixes https://github.com/facebook/react/issues/28584. Follow up to PR:
https://github.com/facebook/react/pull/34547
This PR updates getChangedHooksIndices to account for the fact that
`useSyncExternalStore`, `useTransition`, `useActionState`,
`us... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -467,9 +467,11 @@ function useSyncExternalStore<T>(\n // useSyncExternalStore() composes multiple hooks internally.\n // Advance the current hook index the same number of times\n // so that subsequent hooks have the right memo... | 2026-01-15T11:06:14 |
electron/electron | 36b0709942ec5addddd15ecb7cf86f5e6dababba | cf84efbbb9e88389f5ac4a86f5f1766ae2bc779a | chore: bump chromium to 148.0.7733.0 (main) (#50197)
* chore: bump chromium in DEPS to 147.0.7727.2
* chore: bump chromium in DEPS to 148.0.7728.0
* chore: bump chromium in DEPS to 148.0.7729.0
* chore: bump chromium in DEPS to 148.0.7730.0
* chore: bump chromium in DEPS to 148.0.7732.0
* chore: update WrappableP... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7727.0',\n+ '148.0.7733.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-03-16T09:55:06 |
golang/go | 7c1806932fb91c7f8f8d17be7c1a63aa3d6cf175 | 1cfd0dc9a3416c1077acfcd44ad0084dd508116a | cmd/go: default to Go 1.20 GODEBUGs in GOPATH mode
We used MainModules.GoVersion to get the Go version to use for godebugs
in GOPATH mode. That returned Go 1.16 which is the default version for
modules to use when they don't have a go directive, but is modules
specific and doesn't make sense for GOPATH mode. Set the v... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2878,11 +2878,11 @@\n // GOPATH mode import path checking (see 'go help importpath').\n //\n // In GOPATH mode, the default GODEBUG values built into a binary\n-// will be those used in Go 1.20, setting the same GODEBUG values\n-// as when a module specifies ... | 2026-03-25T18:05:36 |
rust-lang/rust | 8c490f312c29a056a29d489b47b0a7b20c925783 | 2ea74a93444b8f53c89d863d2f471abfb439054a | track caller
Add `#[track_caller]` to some functions which can panic b/c of the
caller's wrong index (this helped me debug some mistakes I did while
refactoring `ty::Alias`) | [
{
"path": "compiler/rustc_middle/src/ty/generic_args.rs",
"patch": "@@ -50,14 +50,17 @@ impl<'tcx> rustc_type_ir::inherent::GenericArgs<TyCtxt<'tcx>> for ty::GenericArg\n self.rebase_onto(tcx, source_ancestor, target_args)\n }\n \n+ #[track_caller]\n fn type_at(self, i: usize) -> Ty<'tcx>... | 2026-04-03T13:42:47 |
nodejs/node | a9da9ffc04c923f383a0aa220123687909dd2263 | 798797aa890edc04944fa24f166f7f6ee67d75f3 | repl: remove dependency on domain module
Replace the domain-based error handling with AsyncLocalStorage and
setUncaughtExceptionCaptureCallback. This removes the REPL's dependency
on the deprecated domain module while preserving all existing behavior:
- Synchronous errors during eval are caught and displayed
- Async ... | [
{
"path": "doc/api/process.md",
"patch": "@@ -736,6 +736,44 @@ generate a core file.\n \n This feature is not available in [`Worker`][] threads.\n \n+## `process.addUncaughtExceptionCaptureCallback(fn)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimental\n+\n+* `fn` {Function}\n+\n+Th... | 2026-03-06T15:38:36 |
vercel/next.js | 0090db224d177c51f6d5e45fe1be2527ce04e899 | 548fbca6df69d771b1112b6de9c3eb8380dcf02e | turbo-tasks: add hashed cell mode for hash-based change detection without cell data (#91576)
## Summary
### Core: hash-based cell change detection
- Adds `cell_data_hash: AutoMap<CellId, [u8; 16]>` to the storage schema
(`category = "data"`) so the backend can persist a hash of transient
cell data across evictions
-... | [
{
"path": "Cargo.lock",
"patch": "@@ -9725,6 +9725,7 @@ dependencies = [\n \"bincode 2.0.1\",\n \"data-encoding\",\n \"sha2\",\n+ \"smallvec\",\n \"turbo-tasks-macros\",\n \"xxhash-rust\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-core/src... | 2026-03-26T19:32:45 |
facebook/react | 4a3d993e52fd6bcadd9c3029c75df3c22684f69c | 3e1abcc8d7083a13adf4774feb0d67ecbe4a2bc4 | Add the suffix to cancelled view transition names (#35485)
When a View Transition might not need to update we add it to a queue. If
the parent are able to be reverted, we then cancel the already started
view transitions. We do this by adding an animation that hides the "old"
state and remove the view transition name f... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -711,7 +711,11 @@ function measureViewTransitionHostInstancesRecursive(\n }\n viewTransitionCancelableChildren.push(\n instance,\n- oldName,\n+ viewTransitionHostInstanceIdx... | 2026-01-14T15:00:06 |
electron/electron | cf84efbbb9e88389f5ac4a86f5f1766ae2bc779a | 58cd1aba10d9bbd6de2012d97c3e5f64c19fa5a4 | fix: prefer browser runtime over node in DevTools HostRuntime detection (#50241)
Upstream DevTools' HostRuntime checks `IS_NODE` before `IS_BROWSER` when
selecting the platform runtime. In Electron, `process` is available in
renderer processes, so `IS_NODE` evaluates to `true` in the DevTools
context. This causes DevT... | [
{
"path": "patches/devtools_frontend/.patches",
"patch": "@@ -1 +1,2 @@\n chore_expose_ui_to_allow_electron_to_set_dock_side.patch\n+fix_prefer_browser_runtime_over_node_in_hostruntime_detection.patch",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "patches/devtools_... | 2026-03-16T09:29:35 |
golang/go | 1cfd0dc9a3416c1077acfcd44ad0084dd508116a | 5e17860e1b177b146c965f4ab1cb7d7ea51b91ed | runtime: truncate trace strings before inserting into trace map
traceStringTable.put inserted the full user-supplied string into the
trace map, then only truncated it to MaxEventTrailerDataSize (1024
bytes) when writing to the trace buffer. If the string exceeded the
traceRegionAlloc block size (~64KB), this caused a ... | [
{
"path": "src/runtime/trace/annotation_test.go",
"patch": "@@ -8,9 +8,22 @@ import (\n \t\"context\"\n \t\"io\"\n \t. \"runtime/trace\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n+func TestStartRegionLongString(t *testing.T) {\n+\t// Regression test: a region name longer than the trace region\n+\t// allocator... | 2026-03-26T07:47:30 |
rust-lang/rust | 2ea74a93444b8f53c89d863d2f471abfb439054a | 5d5cdefd0a2ea19a1052f0414ecb238fe5f4df57 | `ty::Alias` refactor: fix clippy | [
{
"path": "src/tools/clippy/clippy_lints/src/dereference.rs",
"patch": "@@ -885,12 +885,21 @@ impl TyCoercionStability {\n continue;\n },\n ty::Param(_) if for_return => Self::Deref,\n- ty::Alias(ty::Free | ty::Inherent, _) => unreachable!(\... | 2026-04-03T13:23:22 |
nodejs/node | 798797aa890edc04944fa24f166f7f6ee67d75f3 | 83f5cc74fcf63c90a06651616deb7a059c7a2870 | tools: fix `--node-builtin-modules-path` value in `shell.nix`
PR-URL: https://github.com/nodejs/node/pull/62102
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "shell.nix",
"patch": "@@ -64,7 +64,7 @@ let\n ++ pkgs.lib.optional (!withSSL) \"--without-ssl\"\n ++ pkgs.lib.optional withTemporal \"--v8-enable-temporal-support\"\n ++ pkgs.lib.optional (ninja != null) \"--ninja\"\n- ++ pkgs.lib.optional loadJSBuiltinsDynamically \"--node-builtin-modules... | 2026-03-06T15:20:51 |
electron/electron | 58cd1aba10d9bbd6de2012d97c3e5f64c19fa5a4 | 26a3a8679a063623cf7e6bc1f5e07042fa953d7a | ci: fix unsupported major in release board automation (#50260) | [
{
"path": ".github/workflows/branch-created.yml",
"patch": "@@ -31,8 +31,8 @@ jobs:\n else\n echo \"Not a release branch: $BRANCH_NAME\"\n fi\n- - name: Determine Unsupported Major Version\n- id: determine-unsupported-major\n+ - name: Determine Next Unsupport... | 2026-03-14T22:34:50 |
vercel/next.js | 548fbca6df69d771b1112b6de9c3eb8380dcf02e | 73e654f678de9ff2f53208a660bfe2fbadc86ee7 | turbopack: Remove Vc::resolve(), migrate all callsites to Vc::to_resolved() (#91725)
### What?
Remove the `Vc::resolve()` method and migrate all ~37 callsites across
the turbopack and next crates to use `Vc::to_resolved()` instead.
### Why?
`Vc::resolve()` returned `Result<Vc<T>>` — a resolved `Vc` with no
static g... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -860,7 +860,7 @@ impl AppProject {\n None,\n ResolveErrorMode::Error,\n )\n- .resolve()\n+ .to_resolved()\n .await?\n .first_module()\n .await?",
"additions": 1,
"deletions": 1,... | 2026-03-26T18:30:36 |
facebook/react | 3e1abcc8d7083a13adf4774feb0d67ecbe4a2bc4 | c18662405cc436646411647f8a8965c1c0594c3c | [tests] Require exact error messages in assertConsole helpers (#35497)
Requires full error message in assert helpers.
Some of the error messages we asset on add a native javascript stack
trace, which would be a pain to add to the messages and maintain. This
PR allows you to just add `\n in <stack>` placeholder to th... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -278,6 +278,7 @@ jobs:\n if: steps.node_modules.outputs.cache-hit != 'true'\n - run: yarn --cwd compiler install --frozen-lockfile\n if: steps.node_modules.outputs.cache-hit != 'true'\n+ - run: node --version\n... | 2026-01-13T20:52:53 |
golang/go | b77fdc333aecc4691a0f637bd8a2600c879e342a | 5edb5d729d14f0e036669e505548c899592a4d7c | cmd/compile: skip incomplete types in needWrapper
A recursive pointer type *T may still be a TFORW when the compiler
determines if method wrappers are needed. This leads to an incorrect
decision and triggers an internal compiler error.
Fix this by skipping incomplete types during the method wrapper
generation check.
... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -3827,7 +3827,7 @@ type methodValueWrapper struct {\n // needWrapper records that wrapper methods may be needed at link\n // time.\n func (r *reader) needWrapper(typ *types.Type) {\n-\tif typ.IsPtr() {\n+\tif typ.IsPtr() || typ.IsKind(types.... | 2026-03-25T09:36:34 |
rust-lang/rust | 5d5cdefd0a2ea19a1052f0414ecb238fe5f4df57 | 0f767084b8c562dea5a95b760cf30fb80eb6454b | `ty::Alias` refactor: fix rustdoc | [
{
"path": "src/librustdoc/clean/mod.rs",
"patch": "@@ -1699,7 +1699,7 @@ fn clean_qpath<'tcx>(hir_ty: &hir::Ty<'tcx>, cx: &mut DocContext<'tcx>) -> Type\n let self_type = clean_ty(qself, cx);\n \n let (trait_, should_fully_qualify) = match ty.kind() {\n- ty::Alias(ty::... | 2026-04-03T13:07:24 |
nodejs/node | 856231e8c40952df6e115d439b997e1cceecdb4f | a06e789625ecb46e3d6ef3e265ee15b37527c44a | crypto: fix importKey required argument count check
PR-URL: https://github.com/nodejs/node/pull/62099
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/internal/crypto/webcrypto.js",
"patch": "@@ -865,7 +865,7 @@ async function importKey(\n \n webidl ??= require('internal/crypto/webidl');\n const prefix = \"Failed to execute 'importKey' on 'SubtleCrypto'\";\n- webidl.requiredArguments(arguments.length, 4, { prefix });\n+ webidl.require... | 2026-03-04T10:16:25 |
electron/electron | f4a50a8fde877075ce3877efd54578997d5e7ece | b35ed6346e3c989d9ef52357c910431a799fa8f4 | build: skip archiving patch conflict fix artifact (#50251)
The update-patches artifact is a single .patch file, so zipping it
is unnecessary overhead. With archive: false, gh run download fetches
the raw file directly without requiring a decompression step.
Co-authored-by: Claude <noreply@anthropic.com> | [
{
"path": ".github/workflows/apply-patches.yml",
"patch": "@@ -78,3 +78,4 @@ jobs:\n name: update-patches\n path: patches/update-patches.patch\n if-no-files-found: ignore\n+ archive: false",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2026-03-13T21:49:05 |
facebook/react | c18662405cc436646411647f8a8965c1c0594c3c | 583e20033220bc17a590a25624f6251c6b101ff4 | [Fiber] Correctly handle replaying when hydrating (#35494)
When hydrating if something suspends and then resolves in a microtask it
is possible that React will resume the render without fully unwinding
work in progress. This can cause hydration cursors to be offset and lead
to hydration errors. This change adds a rest... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js",
"patch": "@@ -4063,4 +4063,170 @@ describe('ReactDOMServerPartialHydration', () => {\n expect(span.style.display).toBe('');\n expect(ref.current).toBe(span);\n });\n+\n+ // Regression for https://github.... | 2026-01-13T20:48:01 |
vercel/next.js | 73e654f678de9ff2f53208a660bfe2fbadc86ee7 | 16935744fbd44743e9546cbcc578be3e473c0035 | fix(turbopack): preserve resolveExtensions priority in read_matches fast path (#91856)
### What?
Fix a bug where Turbopack ignored the priority order of
`resolveExtensions` when both a platform-specific variant (e.g.
`Component.web.tsx`) and a default variant (`Component.tsx`) exist for
the same module path. The firs... | [
{
"path": "test/e2e/app-dir/resolve-extensions/app/PlatformComponent.tsx",
"patch": "@@ -0,0 +1,3 @@\n+export default function PlatformComponent() {\n+ return <span>hello default platform</span>\n+}",
"additions": 3,
"deletions": 0,
"language": "Unknown"
},
{
"path": "test/e2e/app-dir/r... | 2026-03-26T18:28:06 |
golang/go | 5edb5d729d14f0e036669e505548c899592a4d7c | e4fcdc6c55bfdc90f4f42eefc4e97998de3ef4e7 | cmd/compile: do not invert loops that would overflow or underflow
On the final iteration we need space below start (which becomes end)
such that i-step does not overflow or underflow.
In other words the code used to assume that the last time the loop header
execute `start < i - step` (or `<=`, `>` `>=` based on the l... | [
{
"path": "src/cmd/compile/internal/ssa/downward_counting_loop.go",
"patch": "@@ -4,6 +4,8 @@\n \n package ssa\n \n+import \"fmt\"\n+\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ... | 2026-03-24T19:42:41 |
rust-lang/rust | 0f767084b8c562dea5a95b760cf30fb80eb6454b | cf96c5fa87f6805a382d4c6a9082c9777a404b5f | `ty::Alias` refactor: fixup all the compiler code | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/opaque_types.rs",
"patch": "@@ -219,11 +219,11 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for FindOpaqueRegion<'_, 'tcx> {\n fn visit_ty(&mut self, ty: Ty<'tcx>) -> Self::Result {\n // If we find an opaque in a local ty, then for each of its captur... | 2026-03-05T13:07:17 |
facebook/react | 8a83073753125156d62db14726e8527706411962 | 5aec1b2a8d1bcafb43a7ddb64dc37eacad081bea | [test] Fix DevTools regression tests (#35501) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n+import semver from 'semver';\n+\n import {getVersionedRenderImplementation} from './utils';\n+import {ReactVersion} from '../../../../ReactVersions';\n+\n+const ReactVersionTestingAgainst... | 2026-01-13T15:00:16 |
nodejs/node | a06e789625ecb46e3d6ef3e265ee15b37527c44a | 8edeff9aa715bbc23f22a68bd864eba1854a9513 | http: fix use-after-free when freeParser is called during llhttp_execute
When pipelined requests arrive in one TCP segment, llhttp_execute()
parses them all in a single call. If a synchronous 'close' event
handler invokes freeParser() mid-execution, cleanParser() nulls out
parser state while llhttp_execute() is still ... | [
{
"path": "lib/_http_common.js",
"patch": "@@ -189,8 +189,8 @@ function freeParser(parser, req, socket) {\n if (parser) {\n if (parser._consumed)\n parser.unconsume();\n- cleanParser(parser);\n parser.remove();\n+ cleanParser(parser);\n if (parsers.free(parser) === false) {\n ... | 2026-03-06T06:01:21 |
golang/go | 286a79658efbe6dcbea53aaf8112abeb8e9f2cc3 | 09dadce4fee15148a9f3a6969d15a0db8afe75bc | cmd/compile: fix missing walk for OAS2RECV node
When channel receive operator is used in the context that requires
conversion to destination type, there's an implicit conversion operator
inserted by typecheck. This typecheck-ed node is un-walked, then passing
to the backend as-is, causing the ICE.
Fixes #78313
Chang... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -220,7 +220,7 @@ func walkAssignRecv(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \tfn := chanfn(\"chanrecv2\", 2, r.X.Type())\n \tok := n.Lhs[1]\n \tcall := mkcall1(fn, types.Types[types.TBOOL], init, r.X, n1)\n-\treturn typecheck.Stmt(... | 2026-03-24T14:14:30 |
rust-lang/rust | f8d3c27650f668f575349ed38a1341826e9f29ba | 9602bda1dd0c1bbf5787e398385bbac81fd532f8 | rustdoc: Inherit inline attributes for declarative macros
When explicitly re-exporting a declarative macro by name, rustdoc
previously bypassed intermediate re-exports and dropped `#[doc(inline)]`
attributes, causing the macro to be incorrectly stripped if the original
definition was `#[doc(hidden)]`.
This updates `g... | [
{
"path": "src/librustdoc/clean/mod.rs",
"patch": "@@ -176,6 +176,35 @@ fn is_glob_import(tcx: TyCtxt<'_>, import_id: LocalDefId) -> bool {\n }\n }\n \n+/// Returns true if `def_id` is a macro and should be inlined.\n+pub(crate) fn macro_reexport_is_inline(\n+ tcx: TyCtxt<'_>,\n+ import_id: LocalD... | 2026-04-06T16:18:47 |
electron/electron | 816e5964fb574585840ec82f7b1e3e99b3f93785 | 3295d0d4b05bf338427e5f98374dda206b83651f | build: add patch conflict resolution workflow with CI artifacts (#50235)
ci: upload patch conflict fix as artifact in apply-patches
When patch-up.js cannot auto-push the 3-way-merged patch diff (e.g. on
fork PRs), the checkout action already writes patches/update-patches.patch
and tells the user to check CI artifacts... | [
{
"path": ".github/workflows/apply-patches.yml",
"patch": "@@ -71,3 +71,10 @@ jobs:\n uses: ./src/electron/.github/actions/checkout\n with:\n target-platform: linux\n+ - name: Upload Patch Conflict Fix\n+ if: ${{ failure() }}\n+ uses: actions/upload-artifact@bbbca2ddaa5d8fea... | 2026-03-13T01:46:29 |
vercel/next.js | 16935744fbd44743e9546cbcc578be3e473c0035 | be3e90af35451edaeb7d99e4ec2422037a5128d0 | turbo-tasks-backend: assert non-transient task_ids in track_modification (#91924)
### What?
Add a `debug_assert!` in `StorageWriteGuard::track_modification` to enforce that transient `TaskId`s are never inserted into the persistence-modified set.
### Why?
Concurrent server component HMR updates triggered a runtime ... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs",
"patch": "@@ -302,6 +302,10 @@ impl StorageWriteGuard<'_> {\n category: SpecificTaskDataCategory,\n #[allow(unused_variables)] name: &str,\n ) {\n+ debug_assert!(\n+ !self.inner.key().is_transient(... | 2026-03-26T05:59:20 |
electron/electron | 6be775ad8341712a59e69680c55f1ce51d0837e0 | 11f28ac3ac4f9432c96514ffdb6759e435254a42 | fix: preserve staged update dir when pruning orphaned updates on macOS (#50210)
fix: preserve staged update dir when pruning orphaned update dirs on macOS
The previous squirrel.mac patch cleaned up all staged update directories
before starting a new download. This kept disk usage bounded but broke
quitAndInstall() if... | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -9,5 +9,5 @@ refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_u... | 2026-03-11T22:42:23 |
nodejs/node | 8edeff9aa715bbc23f22a68bd864eba1854a9513 | 10cfcbeaf75f92542e98bc6df5756018d58ab6c8 | stream: fix UTF-8 character corruption in fast-utf8-stream
Fix releaseWritingBuf() to correctly handle partial writes that split
multi-byte UTF-8 characters. The previous implementation incorrectly
converted byte counts to character counts, causing:
- 3-byte characters (CJK) to be silently dropped
- 4-byte characters... | [
{
"path": "lib/internal/streams/fast-utf8-stream.js",
"patch": "@@ -237,7 +237,7 @@ class Utf8Stream extends EventEmitter {\n \n this.on('newListener', (name) => {\n if (name === 'drain') {\n- this._asyncDrainScheduled = false;\n+ this.#asyncDrainScheduled = false;\n }\n })... | 2026-03-05T19:32:54 |
golang/go | a6500456f3dff5a8b69e5961ee58fe341ae8b30a | c173b531342b05d14877a95a4186cc234edc9b9c | cmd/link: fix host object's .pdata entries order
Host objects are expected to have their .pdata entries in the correct
order, but the Go internal linker might reorder some of the functions
associated with the .pdata entries. This causes the .pdata section
in the final binary to have entries in the wrong order, and the... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1689,6 +1689,20 @@ func (ctxt *Link) dodata(symGroupType []sym.SymKind) {\n \t\tldr.SetAttrOnList(s, true)\n \t}\n \n+\t// SEH symbols are tracked in side lists (sehp.pdata/xdata), so make\n+\t// them follow the same reachability decision used for ... | 2026-03-11T12:14:41 |
electron/electron | 11f28ac3ac4f9432c96514ffdb6759e435254a42 | 5ec589a1de39b299c86cd33bc05decf69cb5c5bd | fix: improved the appearance of shadows and borders on frameless windows on Wayland (#50007)
* remove painting from linux frame layout
* use chromium csd strategy for frameless windows
* Apply suggestions from code review
Remove unneeded virtual methods
Co-authored-by: Charles Kerr <charles@charleskerr.com>
* rem... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -245,6 +245,10 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/views/dark_mode_manager_linux.cc\",\n \"//chrome/browser/ui/views/dark_mode_manager_linux.h\",\n ]\n+ sources += [\n+ \"//chrome/browser/ui/views/frame/browser_frame... | 2026-03-11T19:42:09 |
vercel/next.js | df88058f5eaee58771385534d10b5f75b8689f7d | 78f162568634798de281a27889fa313bae8513d6 | Turbopack: switch from base40 to base38 hash encoding (remove ~ and . from charset) (#91832)
### What?
Switch Turbopack's hash encoding charset from base40 (`0-9 a-z _ - ~ .`)
to base38 (`0-9 a-z _ -`), removing the `~` and `.` characters. Pure
rename/charset change — no structural changes.
### Why?
The `~` and `.`... | [
{
"path": "test/e2e/app-dir-export/test/utils.ts",
"patch": "@@ -30,13 +30,9 @@ export const expectedWhenTrailingSlashTrue = [\n // Turbopack and plain next.js have different hash output for the file name\n // Turbopack will output favicon in the _next/static/media folder\n ...(process.env.IS_TURBOPAC... | 2026-03-25T07:27:30 |
nodejs/node | 55363254cc8d6fd105f34b30ceae572dfb2e4210 | 7c4dc34c28a4ff95058c945c9db2c98fe73a9919 | tools: fix daily wpt workflow nighly release version lookup
PR-URL: https://github.com/nodejs/node/pull/62076
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Revie... | [
{
"path": ".github/workflows/daily-wpt-fyi.yml",
"patch": "@@ -49,7 +49,7 @@ jobs:\n # install a version and checkout\n - name: Get latest nightly\n if: matrix.node-version == 'latest-nightly'\n- run: echo \"NIGHTLY=$(curl -s https://nodejs.org/download/nightly/index.json | jq -r ... | 2026-03-04T17:25:42 |
facebook/react | f93b9fd44b576c1e0233f854cd986cbf08b7a5c4 | b731fe28cc492cb36c51c89866f5b63a3ffae2aa | Skip hydration errors when a view transition has been applied (#35380)
When the Fizz runtime runs a view-transition we apply
`view-transition-name` and `view-transition-class` to the `style`. These
can be observed by Fiber when hydrating which incorrectly leads to
hydration errors.
More over, even after we remove the... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -235,17 +235,60 @@ function warnForPropDifference(\n }\n }\n \n+function hasViewTransition(htmlElement: HTMLElement): boolean {\n+ return !!(\n+ htmlElement.getAttribute('vt-share') ||\n+ htmlElement.getAttribute(... | 2025-12-17T14:37:43 |
electron/electron | 4fe3752fae695c3f445c7e34f1bdd5567064f68e | c8dd0b99ee3705f0e6eaacd4003d7aa9d8152d37 | refactor: move `electron::api::Tray` to cppgc (#50187)
* refactor: migrate electron::api::tray to cppgc
* chore: add Tray to wrappable_pointer_tags.h patch
* fixup! refactor: migrate electron::api::tray to cppgc
clear keep_alive_ if error is thrown in constructor
* refactor: make Tray::menu_ a cppgc::Member<Menu> | [
{
"path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch",
"patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index c29e855493399... | 2026-03-11T19:38:08 |
vercel/next.js | 78f162568634798de281a27889fa313bae8513d6 | b5cb015c5f94088cf0211613051fb696b67cddda | turbo-tasks-backend: improve print_cache_item_size instrumentation (#91742)
### What?
Fixes a compilation hang that occurred when the `print_cache_item_size`
debug feature was enabled,
and cleans up the surrounding instrumentation code.
**Root cause of the hang (double lock / deadlock):**
During `persist_snapshot`,... | [
{
"path": "turbopack/crates/turbo-tasks-backend/Cargo.toml",
"patch": "@@ -14,7 +14,8 @@ workspace = true\n \n [features]\n default = []\n-print_cache_item_size = [\"dep:lzzzz\"]\n+print_cache_item_size_with_compressed = [\"print_cache_item_size\", \"dep:lzzzz\"]\n+print_cache_item_size = []\n no_fast_stale... | 2026-03-25T07:16:14 |
Subsets and Splits
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.