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
7f21d3149808ce70f2a4aae7cde2113324e72eb9
639d3b99b7558c1676910900c33f4799553289ea
feat: use Downloads folder as default path for file dialogs (#49868) * fix: use Downloads folder as default path for file dialogs Co-authored-by: Sourav Bera <sbera987654321@gmail.com> * chore: improve breaking change description --------- Co-authored-by: Sourav Bera <sbera987654321@gmail.com>
[ { "path": "docs/api/dialog.md", "patch": "@@ -28,7 +28,10 @@ added:\n * `window` [BaseWindow](base-window.md) (optional)\n * `options` Object\n * `title` string (optional)\n- * `defaultPath` string (optional)\n+ * `defaultPath` string (optional) - Absolute directory path, absolute file\n+ path, or fi...
2026-03-20T21:28:53
golang/go
1f8aff4386ca8be6ae9b9553205d113884c4a8ee
b526b2d49b39a116cf654551f7f65c965144b096
simd/archsimd: mark pa* unsafe helpers as nocheckptr Despite the cast from smaller to bigger slice, the elements after the input slice length are not actually read. Thus they should have nocheckptr annotation to make checkptr happy. Fixes #78413 Change-Id: I3e27eab8a69b37bb11632b130a87e6625e06e8ac Reviewed-on: https...
[ { "path": "src/simd/archsimd/_gen/tmplgen/main.go", "patch": "@@ -794,6 +794,8 @@ var unsafePATemplate = templateOf(\"unsafe PA helper\", `\n // pa{{.VType}} returns a type-unsafe pointer to array that can\n // only be used with partial load/store operations that only\n // access the known-safe portions of ...
2026-03-30T15:21:43
nodejs/node
a62f6411aeac95d7c17bd4ac806b4843b11592c9
f6d02af01f1a73048fac350c50a8eccc7e4c292b
util: allow color aliases in styleText Fixes an issue where `util.styleText()` would throw an error for valid color aliases like 'grey' in Node.js >= 25.7.0. It now uses `ObjectGetOwnPropertyNames` instead of `ObjectKeys` to fetch both keys and aliases. Fixes: https://github.com/nodejs/node/issues/62177 PR-URL: https...
[ { "path": "lib/util.js", "patch": "@@ -32,6 +32,7 @@ const {\n ObjectDefineProperties,\n ObjectDefineProperty,\n ObjectGetOwnPropertyDescriptors,\n+ ObjectGetOwnPropertyNames,\n ObjectKeys,\n ObjectSetPrototypeOf,\n ObjectValues,\n@@ -115,7 +116,7 @@ function getStyleCache() {\n if (styleCach...
2026-03-17T07:57:07
vercel/next.js
9b66a376e7e66c51d1a0952a96e3c377b56bd81a
4b62ff78c0ad4117477ab78806df809f4c1f8b33
Improve error message for deprecated `experimental.dynamicIO` config (#92081) ### What? Added a specific, actionable error message when users have `experimental.dynamicIO` in their `next.config` file. Instead of the generic "invalid experimental key" message, users now see that `dynamicIO` has been replaced by `cache...
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -84,6 +84,12 @@ function normalizeNextConfigZodErrors(\n \"\\nUse 'experimental.turbopackFileSystemCacheForDev' instead.\"\n message +=\n '\\nLearn more: https://nextjs.org/docs/app/api-reference/config/next-config-js/t...
2026-03-31T21:08:04
facebook/react
b07aa7d643ec9028e452612c3ff2c17a6cee6bb7
2dd9b7cf76c31df5d7e26e5199e3c362c3e94f95
[Flight] Fix `encodeReply` for JSX with temporary references (#35730) `encodeReply` throws "React Element cannot be passed to Server Functions from the Client without a temporary reference set" when a React element is the root value of a `serializeModel` call (either passed directly or resolved from a promise), even w...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -552,14 +552,19 @@ function moveDebugInfoFromChunkToInnerValue<T>(\n resolvedValue._debugInfo,\n debugInfo,\n );\n- } else {\n+ } else if (!Object.isFrozen(resolvedValue)) {\n Object.defineProperty((re...
2026-02-09T15:17:53
golang/go
b526b2d49b39a116cf654551f7f65c965144b096
261d489139b958e3b7b3bf76d1fb23c9bca76142
net/http/internal/http2: don't reuse ClientRequest streams The ClientRequest type (unlike http.Request) is not reusable across RoundTrip attempts because it includes a single-use clientStream. (It's possible for RoundTrip to return while some goroutines are still accessing the clientStream.) Always clone the ClientRe...
[ { "path": "src/net/http/internal/http2/transport.go", "patch": "@@ -644,16 +644,16 @@ var (\n \n // shouldRetryRequest is called by RoundTrip when a request fails to get\n // response headers. It is always called with a non-nil error.\n-// It returns either a request to retry (either the same request, or a\...
2026-03-30T20:55:37
electron/electron
639d3b99b7558c1676910900c33f4799553289ea
0c7bde54d47d17a258e51eec23830a51193776c3
ci: update actions to node24 (#50373) * ci: update actions to node24 * chore: fixup actions/cache to 5.0.4 everywhere
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -274,18 +274,18 @@ runs:\n run: ./src/electron/script/actions/move-artifacts.sh\n - name: Upload Generated Artifacts ${{ inputs.step-suffix }}\n if: always() && !cancelled()\n- uses: actions/upload-artifact@65462800fd76...
2026-03-20T19:33:48
facebook/react
2dd9b7cf76c31df5d7e26e5199e3c362c3e94f95
65db1000b944c8a07b5947c06b38eb8364dce4f2
[Flight] Fix debug channel flag in Node.js server renderToPipeableStream (#35724) ## Summary - Fixes the `createRequest` call in `renderToPipeableStream` to pass `debugChannelReadable !== undefined` instead of `debugChannel !== undefined` in the turbopack, esm, and parcel Node.js server implementations - The webpack ...
[ { "path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js", "patch": "@@ -187,7 +187,7 @@ function renderToPipeableStream(\n options ? options.startTime : undefined,\n __DEV__ && options ? options.environmentName : undefined,\n __DEV__ && options ? options.filterStackFrame ...
2026-02-08T19:14:15
nodejs/node
e0928d6cc46adbc02ae15733d6fd62e6a524ffd6
9c1c08e73a876f741b64544eb8e1780de87230f1
esm: fix path normalization in `finalizeResolution` PR-URL: https://github.com/nodejs/node/pull/62080 Refs: https://github.com/nodejs/node/pull/61478/changes/BASE..6cd90e1c0167f94c7dc671d10316e561c81f26af#r2871221559 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-...
[ { "path": "lib/internal/modules/esm/resolve.js", "patch": "@@ -245,7 +245,7 @@ function finalizeResolution(resolved, base, preserveSymlinks) {\n }\n \n const stats = internalFsBinding.internalModuleStat(\n- StringPrototypeEndsWith(internalFsBinding, path, '/') ? StringPrototypeSlice(path, -1) : path,...
2026-03-16T18:39:56
vercel/next.js
495d50f1872aa397c94333500f17ff4d9b466314
d6ff2197d91fe6716c48ea80aecaaa89f396edaa
docs: document revalidateTag's required second argument in upgrade guide (#92134) ### What? Add a before/after migration snippet to the version 16 upgrade guide showing the old single-argument `revalidateTag('posts')` and the new required two-argument `revalidateTag('posts', 'max')` signature. Also mention the TypeSc...
[ { "path": "docs/01-app/02-guides/upgrading/version-16.mdx", "patch": "@@ -454,7 +454,17 @@ bun add -D babel-plugin-react-compiler\n \n ### revalidateTag\n \n-[`revalidateTag`](/docs/app/api-reference/functions/revalidateTag) has a new function signature. You can pass a [`cacheLife`](/docs/app/api-reference/...
2026-03-31T18:34:23
rust-lang/rust
8f0bd63075723eb534d36b67c06c47eec6a5bcdf
e73c56abd0baf3dbaafbdc3ce6072a416aade867
Fix private fields diagnostics and improve error messages
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -2439,25 +2439,28 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n })\n .partition(|field| field.2);\n err.span_labels(used_private_fields.iter().map(|(_, span, _)| *span), \"private field\");\n- if !remaining_priva...
2026-04-06T04:33:42
golang/go
ed3ec75df47ab8e7d6e4a30c445a8ef771382584
a4b534f5e42fe58d58c0ff0562d76680cedb0466
go/types, types2: report an error if constant string overflows Set a limit of 10 GiB for strings obtained via constant string addition. Fixes #78346. Change-Id: I35dbdff94f3ed32bf69654f4b3da435dad9f6236 Reviewed-on: https://go-review.googlesource.com/c/go/+/761300 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/cmd/compile/internal/types2/const.go", "patch": "@@ -46,6 +46,14 @@ func (check *Checker) overflow(x *operand, opPos syntax.Pos) {\n \t\t}\n \t\tcheck.errorf(atPos(opPos), InvalidConstVal, \"constant %soverflow\", op)\n \t\tx.val = constant.MakeUnknown()\n+\t\treturn\n+\t}\n+\n+\tconst maxLen...
2026-03-30T19:27:31
electron/electron
0c7bde54d47d17a258e51eec23830a51193776c3
8a0c20431cf8f62a600cad3a478e619d66dbfa06
feat: add `copyVideoFrameAt` and `saveVideoFrameAs` methods on `webContents` (#48149) * feat: add copyVideoFrameAt and saveVideoFrameAs Method on Webcontent chore: change the description of savevideoframe api chore: add the description of the restrictive elements for using the APIs. move to webframemain fixed medi...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1585,6 +1585,20 @@ Centers the current text selection in web page.\n \n Copy the image at the given position to the clipboard.\n \n+#### `contents.copyVideoFrameAt(x, y)`\n+\n+* `x` Integer\n+* `y` Integer\n+\n+When executed on a video media element, copie...
2026-03-20T19:32:09
facebook/react
2a879cdc95228b1b3b4cdc81cfc04599716b5562
9a5996a6c144b4d6950b840f2098eff0117b5ac2
[DevTools] Fix broken commit tree builder for initial operations (#35710)
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1138,7 +1138,7 @@ export function attach(\n // if any passive effects called console.warn / console.error.\n let needsToFlushComponentLogs = false;\n \n- function bruteForceFlushErrorsAndWarnings() {\n+ function br...
2026-02-06T14:16:23
nodejs/node
9c1c08e73a876f741b64544eb8e1780de87230f1
35fed19330d2cc00b21377014307dd31116e5976
benchmark: fix destructuring in dgram/single-buffer PR #59872 renamed the config key from `num` to `n` but did not update the destructuring in main(), leaving `{ num: n }` which resolves to undefined. This caused the benchmark to produce near-zero throughput since the send-batching logic never fires when n is undefine...
[ { "path": "benchmark/crypto/hash-stream-creation.js", "patch": "@@ -5,15 +5,15 @@ const common = require('../common.js');\n const crypto = require('crypto');\n \n const bench = common.createBenchmark(main, {\n- writes: [500],\n+ n: [500],\n algo: [ 'sha256', 'md5' ],\n type: ['asc', 'utf', 'buf'],\n ...
2026-03-16T18:16:39
vercel/next.js
d6ff2197d91fe6716c48ea80aecaaa89f396edaa
373d2c448a1370e653e10ff6e42ee3038201fc20
Add PPR evals and fix env loading for agent-eval 0.9.5 (#92063) Upgrades `@vercel/agent-eval` from 0.8.0 to 0.9.5. The new version loads `.env` / `.env.local` from its own cwd (`evals/`) rather than inheriting from the parent process, so the old `process.loadEnvFile()` call no longer works. Instead, `run-evals.js` now...
[ { "path": ".gitignore", "patch": "@@ -50,6 +50,7 @@ examples/**/out/*\n \n # env\n .env*.local\n+evals/.env\n \n pr-stats.md\n test-timings.json", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "evals/evals/agent-041-optimize-ppr-shell/EVAL.ts", "patch": "@@ -0,0 ...
2026-03-31T18:25:31
electron/electron
8a0c20431cf8f62a600cad3a478e619d66dbfa06
72797d7b4254dee923659ba290797969ef46272c
fix: don't re-parse URL unnecessarily when handling dialogs (#50062) * fix: fallback to opaque URL when needed inside dialog callback * refactor: remove additional URL parsing entirely when showing dialogs * test: add crash test case for URL-less dialogs * refactor: exit on events instead of on timeout for dialog c...
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -782,8 +782,7 @@ WebContents.prototype._init = function () {\n const originCounts = new Map<string, number>();\n const openDialogs = new Set<AbortController>();\n this.on('-run-dialog', async (info, callback) => {\n- const originUrl = new UR...
2026-03-20T13:27:59
facebook/react
b9323509be66759201c6a752233370970c2a613f
bb53387716e96912cbfb48d92655bc23882798ff
[DevTools] Throw an error when attempting to clone non-existent node (#35702) There is an existing issue with serialisation logic for the traces from Profiler panel. I've discovered that `TREE_OPERATION_UPDATE_TREE_BASE_DURATION` operation for some reason appears earlier in a sequence of operations, before the `TREE_...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Profiler/CommitTreeBuilder.js", "patch": "@@ -160,11 +160,14 @@ function updateTree(\n \n // Clone nodes before mutating them so edits don't affect them.\n const getClonedNode = (id: number): CommitTreeNode => {\n- // $FlowFixMe[prop-missin...
2026-02-05T17:49:18
golang/go
a4b534f5e42fe58d58c0ff0562d76680cedb0466
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
all: fix some minor issues in the comments Change-Id: If6c304efac7a46a9718cdc63ded3d98a26a3a831 Reviewed-on: https://go-review.googlesource.com/c/go/+/760700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Neal Patel ...
[ { "path": "src/cmd/compile/internal/ir/dump.go", "patch": "@@ -213,7 +213,7 @@ func DumpNodeHTML(fn *Func, why string, n Node) {\n \tw.WritePhase(why, why)\n }\n \n-// CloseHTMLWriter closes the HTML writer for fn, if one exists.\n+// CloseHTMLWriters closes the HTML writer for fn, if one exists.\n func Clo...
2026-03-28T08:50:11
nodejs/node
8ccbe8e38430d278455ac2ed3a5e2aa4c7acfcce
aac5b68211c0ec7fbb008094da358b39aa366519
crypto: reject ML-KEM/ML-DSA PKCS#8 import without seed in SubtleCrypto Reject importing ML-KEM and ML-DSA PKCS#8 private keys that do not include a seed, throwing NotSupportedError. Also add tests for importing PKCS#8 keys with a mismatched expanded key. Refs: https://redirect.github.com/WICG/webcrypto-modern-algos...
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -1260,6 +1260,10 @@ The {CryptoKey} (secret key) generating algorithms supported include:\n <!-- YAML\n added: v15.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62218\n+ description: Importing ML-DSA and ML-KEM PKC...
2026-03-13T21:22:20
vercel/next.js
76df801abc3df027e59ba2902e4a07906c7fc37b
e3b81e05b28c0e888534092717be2074a1aa24c9
Instant Validation: Allow unconfigured slots to render optionally (#92126) When validating an instant navigation we always report blocking data regardless of which parallel slot it was found from because it will block the navigation regardless. To prevent accidental disabling of validation Next.js also requires that t...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -4766,8 +4766,8 @@ async function validateInstantConfigs(\n if (previousBoundaryState) {\n // We're doing a followup render to better discriminate error types\n useRuntimeStageForPartialSegments = true\n- for (...
2026-03-31T14:40:52
electron/electron
9ccc752a43a93c17a30442c4977375e81f6b6bb9
6993eb3c78770087e0d2a10e184ec96f9eda6b97
fix: correct utility process exit code on Windows (#50256) * fix: correct utility process exit code on Windows On Windows, process exit codes are 32-bit unsigned integers (DWORD). When passed from Chromium to Electron as a signed int and then implicitly converted to uint64_t, values with the high bit set (e.g., NTSTA...
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -246,7 +246,7 @@ void UtilityProcessWrapper::OnServiceProcessLaunch(\n EmitWithoutEvent(\"spawn\");\n }\n \n-void UtilityProcessWrapper::HandleTermination(uint64_t exit_code) {\n+void UtilityProcessWrapper::HandleTermination(uint3...
2026-03-19T20:58:14
facebook/react
3aaab92a265ebeb43b15e7c30c2f1dfb9fcd5961
087a34696f1eb484157b19aee1648bcbce51de64
[flags] add enableEffectEventMutationPhase (#35548) Small optimization for useEffectEvent. Not sure we even need a flag for it, but it will be a nice killswitch. As an added benefit, it fixes a bug when `enableViewTransition` is on, where we were not updating the useEffectEvent callback when a tree went from hidden t...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -47,6 +47,7 @@ import type {ViewTransitionState} from './ReactFiberViewTransitionComponent';\n import {\n alwaysThrottleRetries,\n enableCreateEventHandleAPI,\n+ enableEffectEventMutationPhase,\n enableHiddenSubtreeInsert...
2026-02-04T20:04:57
golang/go
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
runtime/race: allow TestOutput output in either order We have only seen the wrappersym case reported in the opposite order in practice, but since these are intentionally racy, they could theoretically all occur in the opposite order. It would be nice to have a bit more structure to these tests so the test itself coul...
[ { "path": "src/runtime/race/output_test.go", "patch": "@@ -119,7 +119,9 @@ func racer() {\n \tstore(xptr, 42)\n \tdonechan <- true\n }\n-`, []string{`==================\n+`, []string{\n+\t// Allow the race output in either order.\n+\t`==================\n WARNING: DATA RACE\n Write at 0x[0-9,a-f]+ by gorout...
2026-03-27T20:25:58
vercel/next.js
a21f3f4008a7d4c1778649d533de76b62dffabaa
c43965275556c3e0243de822e5bd21e07cf9d48c
next.config.js: Accept an option for serverFastRefresh (#91968) ### What? Adds `experimental.serverFastRefresh` to `next.config.js` so users (and Next.js plugins) can opt out of server-side Fast Refresh without needing to pass a CLI flag. Also adds a `--server-fast-refresh` positive CLI flag (hidden) alongside the e...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -314,7 +314,14 @@ program\n '--experimental-https-ca, <path>',\n 'Path to a HTTPS certificate authority file.'\n )\n- .option('--no-server-fast-refresh', 'Disable server-side Fast Refresh')\n+ // `--server-fast-refresh` is hidden because it...
2026-03-31T00:20:15
nodejs/node
e42dbefea7f60e3db09c88cc3bc90c0652d876ae
ee417909ace0674d96f0f756322fda4a6ce1bc00
doc: remove outdated Chrome 66 and ndb references from debugger Remove the Chrome 66.0.3345.0 version check (Chrome 66 shipped in 2018), the claim that Chrome DevTools doesn't support debugging worker threads (which uses time-tied language), and the recommendation to use ndb (which has been archived since July 2023). ...
[ { "path": "doc/api/debugger.md", "patch": "@@ -260,13 +260,5 @@ For help, see: https://nodejs.org/en/docs/inspector\n at the end of the URL is generated on the fly, it varies in different\n debugging sessions.)\n \n-If the Chrome browser is older than 66.0.3345.0,\n-use `inspector.html` instead of `js_app.h...
2026-03-13T13:17:17
facebook/react
087a34696f1eb484157b19aee1648bcbce51de64
6913ea4d28229d066603bff9fc1170334e151a4a
[test] add activity test with gSBU and enableViewTransition bugfix (#35555) Related to https://github.com/facebook/react/pull/35548, `enableViewTransition` fixes a bug where `getSnapshotBeforeUpdate` was running in hidden trees when it shouldn't (`componentWillUpdate` won't run for hidden updates, and when it becomes ...
[ { "path": "packages/react-reconciler/src/__tests__/Activity-test.js", "patch": "@@ -1527,6 +1527,87 @@ describe('Activity', () => {\n expect(root).toMatchRenderedOutput(<span prop={2} />);\n });\n \n+ // @gate enableActivity\n+ it('getSnapshotBeforeUpdate does not run in hidden trees', async () => {...
2026-02-04T19:37:45
golang/go
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
dadc8a5cd274a7d70542d36fa1dfbeb112197988
cmd/go/internal/doc: document that -all and -short cannot be combined And return an error message. Hopefully we can add support by the end of the cycle, but for now return an error to avoid confusing users. For #77191 Change-Id: I8a673a4bdfe640a04ec67b8bee0b5a056a6a6964 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -457,7 +457,8 @@\n //\t \t-http\n //\t\t\tServe HTML docs over HTTP.\n //\t\t-short\n-//\t\t\tOne-line representation for each symbol.\n+//\t\t\tOne-line representation for each symbol. Cannot be\n+//\t\t\tcombined with -all.\n //\t\t-src\n //\t\t\tShow the f...
2026-03-27T19:18:29
electron/electron
e31a95b15f6fcb8359be8e3b764359e767bd5f7c
1ad832a4c18a2e7e20b40e0c124395fc5d48ba6d
chore: remove macos hittest workaround patch (#50330) build: remove macos hittest workaround patch CL:6574464 changed BridgedContentView::hitTest: to use GetHitTestResult(), which returns kRootView for any non-null, non-NativeViewHost view — causing BridgedContentView to absorb all web content mouse events. In Browse...
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,7 +128,6 @@ fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n revert_views_remove_desktopwindowtreehostwin_window_enlargement.patch\n-build_par...
2026-03-19T15:04:17
nodejs/node
ee417909ace0674d96f0f756322fda4a6ce1bc00
da5843b91d4347845ab3bedc6b82dcf2348ab477
doc: add throwIfNoEntry version history to fs.stat PR #61178 added the throwIfNoEntry option to fs.stat and fsPromises.stat (shipped in v25.7.0) but did not add corresponding YAML version history entries. The sync variants (fs.statSync, fs.lstatSync) already had history entries from PR #33716. Fixes: https://github.c...
[ { "path": "doc/api/fs.md", "patch": "@@ -1709,6 +1709,10 @@ Removes files and directories (modeled on the standard POSIX `rm` utility).\n <!-- YAML\n added: v10.0.0\n changes:\n+ - version: v25.7.0\n+ pr-url: https://github.com/nodejs/node/pull/61178\n+ description: Accepts a `throwIfNoEntry` option ...
2026-03-13T10:37:30
electron/electron
b881f86c8f0b01b39bedac92a5a797ed9a0dd160
5959ecc3eefa33163e2eb72393008a6fd5082047
fix: always call the original impl in swizzled mousedown impls (#50096) fix: always call the original implementation in swizzled mousedown implementations
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -87,8 +87,8 @@ - (void)swiz_nsthemeframe_mouseDown:(NSEvent*)event {\n (electron::NativeWindowMac*)[(id)self.window shell];\n if (shell && !shell->has_frame())\n [self cr_mouseDownOnFrameView:event];\n- g_nsthemefram...
2026-03-18T21:54:43
rust-lang/rust
c3709eee095c22f873cec3fd5d893da035ba5d69
9602bda1dd0c1bbf5787e398385bbac81fd532f8
ast_validation: scalable vectors okay for rustdoc Scalable vector types in `core_arch` are cfg'd for aarch64 and for rustdoc, which can successfully document these types given any `--target` (`core_arch` CI uses `i686-unknown-linux-gnu`) - this shouldn't trigger the "scalable vectors not supported on arch" error.
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -1379,7 +1379,9 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n this.dcx()\n .emit_err(errors::ScalableVectorNotTupleStruct { span: item.span });\n }...
2026-04-03T09:14:07
vercel/next.js
c43965275556c3e0243de822e5bd21e07cf9d48c
9a0214a12f1ed1901c4b01e84073ab854848eea0
Turbopack: exclude metadata routes from server HMR (#92034) ### What? Metadata routes (`manifest.ts`, `robots.ts`, `sitemap.ts`, `icon.tsx`, `apple-icon.tsx`, etc.) were not being hot-reloaded in Turbopack dev mode — changes to those files would not be reflected on subsequent requests until a full server restart. ##...
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -82,7 +82,10 @@ import { isAppPageRouteDefinition } from '../route-definitions/app-page-route-de\n import { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\n import type { ModernSourceMapPayload } from '../lib...
2026-03-31T00:17:46
facebook/react
cf993fb457417e0f20535b1fd42c3f45df966583
c137dd6f5484f1bb68a64f07dd0e40d474a29759
[Flight] Fix stack overflow in `visitAsyncNode` with deep async chains (#35612) Database libraries like Gel/EdgeDB can create very long linear chains of async sequences through temporal async sequencing in connection pools. The recursive traversal of `node.previous` chains in `visitAsyncNode` causes stack overflow on ...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2345,19 +2345,53 @@ function visitAsyncNode(\n >,\n cutOff: number,\n ): void | null | PromiseNode | IONode {\n- if (visited.has(node)) {\n- // It's possible to visit them same node twice when it's part of both an \"awaited\" ...
2026-02-04T18:43:23
golang/go
4d1f503396fa30da1e7b841de2f464c8bf8940e0
09031d907c720e38cdde6242c763d25c9f985327
cmd/compile/internal/devirtualize: improve debug logs Change-Id: Ie8d74d0968c3dfa6fe3454f1d3fdf13d6a6a6944 Reviewed-on: https://go-review.googlesource.com/c/go/+/760162 Auto-Submit: Mateusz Poliwczak <mpoliwczak34@gmail.com> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -182,6 +182,17 @@ const concreteTypeDebug = false\n // Returns nil when the concrete type could not be determined, or when there are multiple\n // (different) types assigned to an interface.\n func concreteType(s *State, n ir.No...
2026-03-27T17:09:23
vercel/next.js
9a0214a12f1ed1901c4b01e84073ab854848eea0
c6491ae4b31ffaa796fefa15117854fdbf00d1cd
fix: handle file:// URLs from import.meta.resolve in cache handler path (fixes #73796) (#90370) ## Summary Fixes #73796 ### The Bug When "type": "module" is in package.json, users cannot use require.resolve() for the cache handler path. They must use import.meta.resolve() instead, which returns a file:// URL. Next...
[ { "path": "packages/next/src/build/collect-build-traces.ts", "patch": "@@ -10,6 +10,7 @@ import {\n } from './webpack/plugins/next-trace-entrypoints-plugin'\n \n import path from 'path'\n+import { resolveCacheHandlerPathToFilesystem } from '../lib/format-dynamic-import-path'\n import fs from 'fs/promises'\n...
2026-03-30T23:53:41
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
facebook/react
c137dd6f5484f1bb68a64f07dd0e40d474a29759
22a20e1f2f557b99115d82b639ff5a32b6453cb6
Fix exhaustive deps bug with flow type casting. (#35691) Summary: I noticed there's a bug where the lint will recognize the type on a cast annotation as a missing dependency; ``` function MyComponent() { type ColumnKey = 'id' | 'name'; type Item = {id: string, name: string}; con...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7913,6 +7913,25 @@ const testsFlow = {\n }\n `,\n },\n+ // Flow type aliases in type assertions should not be flagged as missing dependencies\n+ {\n+ code: normalizeIndent`\n...
2026-02-04T16:24:24
nodejs/node
5e3951e0add844c3c4ef73c5b4456b162491ef60
f33e715dd4bb2521353f74ab1d404e4c2af760f5
repl: add customizable error handling Whether or not an exception should be handled when it was thrown in the REPL's context but the REPL is already closed is something that will depend on the details of the specific REPL instance's use case. Adding this option lets the REPL's creator control the details of this beha...
[ { "path": "doc/api/repl.md", "patch": "@@ -709,6 +709,9 @@ npx codemod@latest @nodejs/repl-builtin-modules\n <!-- YAML\n added: v0.1.91\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62188\n+ description: The `handleError` parameter has been added.\n - version: v2...
2026-03-12T16:35:31
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
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
facebook/react
22a20e1f2f557b99115d82b639ff5a32b6453cb6
90c6d1b218bbe07eeb757ce8777805a9b7f8e3c3
[compiler] Fix setState-in-effect for React.useEffect namespace calls (#35377) (#35419) ## Summary Fix react-hooks/set-state-in-effect false negatives when Hooks are called via a namespace import (e.g. `import * as React from 'react'` and `React.useEffect(...))`. The validation now checks the MethodCall property (the ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoSetStateInEffects.ts", "patch": "@@ -97,7 +97,7 @@ export function validateNoSetStateInEffects(\n case 'CallExpression': {\n const callee =\n instr.value.kind === 'MethodCall'\n- ? in...
2026-02-04T16:07:17
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
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
facebook/react
90c6d1b218bbe07eeb757ce8777805a9b7f8e3c3
f84ce5a45c47b1081a09c17eea58c16ef145c113
[compiler][snap] More minimization improvements (#35689) * A few new minimization strategies, removing function params and array/object pattern elements * Ensure that we preserve the same set of errors based on not just category+reason but also description.
[ { "path": "compiler/packages/snap/src/minimize.ts", "patch": "@@ -18,7 +18,7 @@ type CompileSuccess = {kind: 'success'};\n type CompileParseError = {kind: 'parse_error'; message: string};\n type CompileErrors = {\n kind: 'errors';\n- errors: Array<{category: string; reason: string}>;\n+ errors: Array<{c...
2026-02-04T15:09:28
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
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
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
facebook/react
3ce1316b05968d2a8cffe42a110f2726f2c44c3e
cd0c4879a2959db91f9bd51a09dafefedd95fb17
[compiler][snap] Fixes to relative path resolution; compile subcommand (#35688) More snap improvements for use with agents: * `yarn snap compile [--debug] <path>` for compiling any file, optionally with debug logs * `yarn snap minimize <path>` now accepts path as a positional param for consistency w 'compile' command ...
[ { "path": "compiler/.claude/agents/investigate-error.md", "patch": "@@ -13,7 +13,7 @@ You are an expert React Compiler debugging specialist with deep knowledge of com\n Create a new fixture file at `packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/<fixture-name>.js` containing the proble...
2026-02-04T03:12:21
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
nodejs/node
c96c3dad39f24bcca474f055ccadf19552084079
95ee87da538734a07adb5b00e0682884b731aac9
build: fix --node-builtin-modules-path PR-URL: https://github.com/nodejs/node/pull/62115 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "node.gyp", "patch": "@@ -948,7 +948,13 @@\n },\n }],\n [ 'node_builtin_modules_path!=\"\"', {\n- 'defines': [ 'NODE_BUILTIN_MODULES_PATH=\"<(node_builtin_modules_path)\"' ]\n+ 'defines': [ 'NODE_BUILTIN_MODULES_PATH=\"<(node_builtin_modules_path)\"' ],\...
2026-03-05T14:49:43
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
rust-lang/rust
c9e3d313b01f97f385fe4b751b4a3d6b2d62a9e9
56c30e9b397ccba64c719f5b05b33da6047d8e1c
add debugee dependency location to `PATH`
[ { "path": "src/tools/compiletest/src/runtest/debuginfo.rs", "patch": "@@ -455,14 +455,17 @@ impl TestCx<'_> {\n // Path containing `lldb_batchmode.py`, so that the `script` command can import it.\n let rust_pp_module_abs_path = self.config.src_root.join(\"src/etc\");\n let pythonpath...
2026-04-05T09:13:59
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
cd0c4879a2959db91f9bd51a09dafefedd95fb17
6853d7ab2f73989f31fb5a8ed652bd58225ead26
[compiler] Fix `for` loops in try/catch (#35686) This is a combination of a) a subagent for investigating compiler errors and b) testing that agent by fixing bugs with for loops within try/catch. My recent diffs to support maybe-throw within value blocks was incomplete and handled many cases, like optionals/logicals/e...
[ { "path": "compiler/.claude/agents/investigate-error.md", "patch": "@@ -0,0 +1,113 @@\n+---\n+name: investigate-error\n+description: Investigates React compiler errors to determine the root cause and identify potential mitigation(s). Use this agent when the user asks to 'investigate a bug', 'debug why this ...
2026-02-03T23:04:34
nodejs/node
95ee87da538734a07adb5b00e0682884b731aac9
ae228c1ff5934b0fa032d6ef9385d46d9328ac01
fs: fix cpSync to handle non-ASCII characters Fixes: https://github.com/nodejs/node/issues/61878 PR-URL: https://github.com/nodejs/node/pull/61950 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3425,15 +3425,18 @@ static void CpSyncOverrideFile(const FunctionCallbackInfo<Value>& args) {\n THROW_IF_INSUFFICIENT_PERMISSIONS(\n env, permission::PermissionScope::kFileSystemWrite, dest.ToStringView());\n \n+ auto src_path = src.ToPath();\n+ auto des...
2026-03-10T14:11:23
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
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
rust-lang/rust
65b88ea8ee499345aa8414f16d6cf018c6bdaed6
f92020a676251cf985cbe5134a1fd976b5207ab6
fix(lints): Improve ill_formed_attribute_input with better help message
[ { "path": "compiler/rustc_attr_parsing/src/attributes/doc.rs", "patch": "@@ -665,7 +665,11 @@ impl DocParser {\n let span = cx.attr_span;\n cx.emit_lint(\n rustc_session::lint::builtin::INVALID_DOC_ATTRIBUTES,\n- AttributeLintKind::IllFo...
2026-04-05T08:24:16
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
6853d7ab2f73989f31fb5a8ed652bd58225ead26
e32c1261219a9d665f392a4799b8a24ea326f1a1
[Perf Tracks] Prevent crash when accessing `$$typeof` (#35679)
[ { "path": "packages/react-reconciler/src/__tests__/ReactPerformanceTrack-test.js", "patch": "@@ -523,4 +523,110 @@ describe('ReactPerformanceTracks', () => {\n ],\n ]);\n });\n+\n+ // @gate __DEV__ && enableComponentPerformanceTrack\n+ it('diffs HTML-like objects', async () => {\n+ const Ap...
2026-02-03T16:53:45
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
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
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
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
facebook/react
e32c1261219a9d665f392a4799b8a24ea326f1a1
3e00319b352092949ba146e70829310fe6362062
[flags] Turn on `enableAsyncDebugInfo` everywhere (#35683)
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -39,7 +39,7 @@ export const disableLegacyContextForFunctionComponents: boolean = false;\n export const disableLegacyMode: boolean = false;\n export const disableSchedulerTimeoutInWorkLoop: boolean = false;\n export const disableT...
2026-02-03T16:52:57
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
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
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
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
facebook/react
3e00319b352092949ba146e70829310fe6362062
3419420e8b8415c80ead82e4d95f0a039380aee5
[Flight] allow context providers from client modules (#35675) Allows Server Components to import Context from a `"use client'` module and render its Provider. Only tricky part was that I needed to add `REACT_CONTEXT_TYPE` handling in mountLazyComponent so lazy-resolved Context types can be rendered. Previously only f...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -2,7 +2,7 @@ import * as React from 'react';\n import {renderToReadableStream} from 'react-server-dom-unbundled/server';\n import {createFromReadableStream} from 'react-server-dom-webpack/client';\n import {PassThrough, Readable} from 'stream';\n-\n+impor...
2026-02-03T15:22:57
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
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
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
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
facebook/react
b1533b034ee5e38e825fe20d789f2e83ede163ad
5dad2b47b87d93db51f3bd41453a39124127b75d
[Flight] Allow overriding `request.timeOrigin` via `options.startTime` (#35598) Currently, IO that finished before the request started is not considered IO: https://github.com/facebook/react/blob/6a0ab4d2dd62dfdf8881ba1c3443c6d5acedc871/packages/react-server/src/ReactFlightServer.js#L5338-L5343 This leads to loss of ...
[ { "path": "packages/react-markup/src/ReactMarkupServer.js", "patch": "@@ -184,6 +184,7 @@ export function experimental_renderToHTML(\n handleFlightError,\n options ? options.identifierPrefix : undefined,\n undefined,\n+ undefined,\n 'Markup',\n undefined,\n false,", ...
2026-02-03T14:29:51
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
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
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
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
5dad2b47b87d93db51f3bd41453a39124127b75d
748ee74e22ab86994c12564a19fc73950d00ad72
[DevTools] Fix commit index reset when switching profiler roots (#35672) Fixes https://github.com/facebook/react/issues/31463, https://github.com/facebook/react/issues/30114. When switching between roots in the profiler flamegraph, the commit index was preserved from the previous root. This caused an error "Invalid c...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilerContext-test.js", "patch": "@@ -776,6 +776,84 @@ describe('ProfilerContext', () => {\n document.body.removeChild(profilerContainer);\n });\n \n+ it('should reset commit index when switching to a different root', async () => {\n+ const...
2026-02-03T12:44:04
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
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
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
748ee74e22ab86994c12564a19fc73950d00ad72
d4a325df4dbc595cceede81555dd177fc791e8e1
Use modern JSX runtime in Flight fixture (#35677)
[ { "path": "fixtures/flight/config/webpack.config.js", "patch": "@@ -76,19 +76,6 @@ const cssModuleRegex = /\\.module\\.css$/;\n const sassRegex = /\\.(scss|sass)$/;\n const sassModuleRegex = /\\.module\\.(scss|sass)$/;\n \n-const hasJsxRuntime = (() => {\n- if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'tr...
2026-02-03T11:05:24
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
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
rust-lang/rust
92426ef48211cd757fff5e6912532a80de14b985
4e836866b57c1d92c1b747d524cd04ba0f55ea3a
library: std: motor: use OS' process::exit in abort_internal abort_internal() is used in panics; if it calls core::intrinsics::abort(), the process triggers an invalid op code (on x86_64), which is a much harder "abort" than a user-controlled exit via a panic. Most other OSes don't use core::intrinsics::abort() here,...
[ { "path": "library/std/src/sys/pal/motor/mod.rs", "patch": "@@ -42,5 +42,5 @@ pub fn unsupported_err() -> io::Error {\n }\n \n pub fn abort_internal() -> ! {\n- core::intrinsics::abort();\n+ moto_rt::process::exit(-1)\n }", "additions": 1, "deletions": 1, "language": "Rust" } ]
2026-04-05T01:53:09
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
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
facebook/react
d4a325df4dbc595cceede81555dd177fc791e8e1
7b023d7073aa700b48674ae1985235b8c4755880
[compiler] Add snap subcommand to minimize a test input (#35663) Snap now supports subcommands 'test' (default) and 'minimize`. The minimize subcommand attempts to minimize a single failing input fixture by incrementally simplifying the ast so long as the same error occurs. I spot-checked it and it seemed to work pret...
[ { "path": "compiler/packages/snap/package.json", "patch": "@@ -22,6 +22,7 @@\n },\n \"dependencies\": {\n \"@babel/code-frame\": \"^7.22.5\",\n+ \"@babel/generator\": \"^7.19.1\",\n \"@babel/plugin-syntax-jsx\": \"^7.18.6\",\n \"@babel/preset-flow\": \"^7.7.4\",\n \"@babel/preset-type...
2026-02-03T03:03:47
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
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
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
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
facebook/react
b8a6bfa22c8cfc11863f2373fde44ae36695cd0b
ed4bd540ca67f1c4db65f009ad726a5ae1a0af01
[compiler] Support optional/logical/etc within try/catch (#35606) Adds support for value terminals (optional/logical/ternary/sequence) within try/catch clauses. Try/catch expressions insert maybe-throw terminals after each instruction, but BuildReactiveFunction's value block extraction was not expecting these termina...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts", "patch": "@@ -583,6 +583,10 @@ function findOptionalPlaces(fn: HIRFunction): Set<IdentifierId> {\n testBlock = fn.body.blocks.get(terminal.fallthrough)!;\n break;\n }\n+ ...
2026-02-02T17:27:05
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
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
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