repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
e83729677999c2f7073cd5a743a5c530ad8e1544
53481e3f74d271608689ae2f0306fa33c05e4ffe
Improve not-found-with-pages test (#89538) The fixture contains both App and Pages router But the assertions only ever tested the App endpoints Fixed by https://github.com/vercel/vercel/pull/14878 There is still a bug in the builder: ``` FAIL webpack test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.te...
[ { "path": "test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.test.ts", "patch": "@@ -1,7 +1,9 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('not-found-with-pages', () => {\n- const { next, isNextStart } = nextTestSetup({\n+const isAdapterTest = Boolean(process.env.NEXT_ENABLE_A...
2026-02-10T17:24:21
facebook/react
911dbd9e34048b21e96f24acb837b926687aa939
c0b5a0cad32cbf237d4c0134bef702d6ba3e393c
feat(ReactNative): prioritize attribute config `process` function to allow processing function props (#32119) ## Summary In react-native props that are passed as function get converted to a boolean (`true`). This is the default pattern for event handlers in react-native. However, there are reasons for why you might w...
[ { "path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js", "patch": "@@ -254,14 +254,17 @@ function diffProperties(\n prevProp = prevProps[propKey];\n nextProp = nextProps[propKey];\n \n- // functions are converted to booleans as markers that the associated\n- // even...
2025-06-09T09:55:28
golang/go
08dc8393d7d04f250b317cad5183415962ea56d5
43ebed88cc661e37bf01d5336b5de13fba6e51c7
time: skip test that will fail with GO111MODULE=off The test is designed to ensure that behavior introduced in Go 1.23 to garbage collect async timed channels is working correctly. If GO111MODULE=off is set (or GODEBUG=asynctimerchan=1) Go reverts to the Go 1.20 behavior of not garbage collecting these channels, which...
[ { "path": "src/time/export_test.go", "patch": "@@ -40,6 +40,7 @@ var (\n \tTzset = tzset\n \tTzsetName = tzsetName\n \tTzsetOffset = tzsetOffset\n+\tAsynctimerChan = asynctimerchan\n )\n \n func LoadFromEmbeddedTZData(zone string) (string, error) {", "add...
2025-12-23T06:07:32
electron/electron
bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772
5c98e3609f4b62490fd44541f28f1086b604e4e9
refactor: replace webFrame.routingId with sync IPC (#47717) * refactor: replace webFrame.routingId with sync IPC * fix: GetConstructor missing isolate * fix: missing isolate
[ { "path": "docs/api/web-frame.md", "patch": "@@ -253,15 +253,15 @@ and intend to stay there).\n \n * `selector` string - CSS selector for a frame element.\n \n-Returns `WebFrame` - The frame element in `webFrame's` document selected by\n+Returns `WebFrame | null` - The frame element in `webFrame's` document...
2025-08-02T15:00:42
nodejs/node
2fb82c8c281a5610a1d9afc8abaa49255147e1ea
cec1bd5498ff6dc70f1beaae42b5f43c89cf7860
util: use more defensive code when inspecting error objects PR-URL: https://github.com/nodejs/node/pull/60139 Fixes: https://github.com/nodejs/node/issues/60107 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "lib/internal/util.js", "patch": "@@ -8,6 +8,7 @@ const {\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeCall,\n+ FunctionPrototypeSymbolHasInstance,\n NumberParseInt,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -96,7 +97,7 @@ function isError(e) {\n // An error cou...
2025-10-20T18:14:39
vercel/next.js
53481e3f74d271608689ae2f0306fa33c05e4ffe
a24095495f02c7b8cc0b4e2fcae7c5ca6c7343e3
Add 2nd cloned body to FinalizationRegistry. Only used RuntimeStyles component for webpack (#88577) ### What? Reduces memory retention in two areas: response stream cleanup in `cloneResponse` and unnecessary runtime style initialization in Turbopack mode. Also adds a test fixture for standalone mode fetch memory leak...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -523,7 +523,7 @@ function Router({\n return (\n <>\n <HistoryUpdater appRouterState={state} />\n- <RuntimeStyles />\n+ {process.env.TURBOPACK ? null : <RuntimeStylesForWebpack />}\n <NavigationPromisesCo...
2026-02-10T15:48:01
facebook/react
c0b5a0cad32cbf237d4c0134bef702d6ba3e393c
e4b88ae4c6c30791b6c1c2794d5a8e32ed19c931
[Flight] Use Web Streams APIs for 3rd-party component in Flight fixture (#33481)
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -1,6 +1,6 @@\n import * as React from 'react';\n-import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n-import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {renderToReadableStream} from 'react-server-dom-webpa...
2025-06-08T04:33:25
golang/go
81283ad33985958c63e43ada6c168da49e62de0f
3e0e1667f694e989371e021dd8f269dae5a78e9f
runtime: fix nGsyscallNoP accounting CL 726964 has two bugs. One is fairly obvious. Where there was previous a decrement of nGsyscallNoP in exitsyscallTryGetP, it added a call to addGSyscallNoP. Oops. The other is more subtle. In needm we set isExtraInC to false very early. This will cause exitsyscall (via cgocallba...
[ { "path": "src/runtime/metrics_cgo_test.go", "patch": "@@ -12,7 +12,7 @@ import (\n \t\"testing\"\n )\n \n-func TestNotInGoMetricCallback(t *testing.T) {\n+func TestNotInGoMetric(t *testing.T) {\n \tswitch runtime.GOOS {\n \tcase \"windows\", \"plan9\":\n \t\tt.Skip(\"unsupported on Windows and Plan9\")\n@@...
2025-12-23T17:16:17
electron/electron
5c98e3609f4b62490fd44541f28f1086b604e4e9
2cfccac0747d5142230ab187ce8d004bce7ca702
feat: add `{get|set}AccentColor` on Windows (#47741) * feat: add setAccentColor on Windows * refactor: unify GetSystemAccentColor * refactor: remove redundant parsing * chore: fixup documentation * Update docs/api/browser-window.md Co-authored-by: Will Anderson <andersonw@dropbox.com> * Update docs/api/base-wind...
[ { "path": "docs/api/base-window.md", "patch": "@@ -1260,6 +1260,43 @@ Sets the properties for the window's taskbar button.\n > `relaunchCommand` and `relaunchDisplayName` must always be set\n > together. If one of those properties is not set, then neither will be used.\n \n+#### `win.setAccentColor(accentCo...
2025-08-01T20:29:02
nodejs/node
6a0c9c8e3359700d836b90d8586ca42d733f5f7d
21da2050aba8d7c641132aeb3615d2161a99d65c
meta: fix typo in test-shared workflow name Changed 'librairies' to 'libraries' in the workflow name. PR-URL: https://github.com/nodejs/node/pull/60321 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": ".github/workflows/test-shared.yml", "patch": "@@ -1,4 +1,4 @@\n-name: Test Shared librairies\n+name: Test Shared libraries\n \n on:\n pull_request:", "additions": 1, "deletions": 1, "language": "YAML" } ]
2025-10-19T22:57:02
vercel/next.js
a7a017455b76593b3025c30f9851d65e9050d25b
c76b0fe2a0bcf971ccc7008ee201244df872f52d
clarify unstable_cache replacement with use cache (#89435) There’s an inconsistency in the docs: [unstable_cache](https://nextjs.org/docs/app/api-reference/functions/unstable_cache) has already been replaced by use cache, so I think the documentation should be updated accordingly. I’d appreciate it if you could look i...
[ { "path": "docs/01-app/03-api-reference/04-functions/unstable_cache.mdx", "patch": "@@ -3,7 +3,9 @@ title: unstable_cache\n description: API Reference for the unstable_cache function.\n ---\n \n-> **Warning:** This API will be replaced by [`use cache`](/docs/app/api-reference/directives/use-cache) when it r...
2026-02-10T13:27:12
rust-lang/rust
4fd1d9713af32df00514bb57e5e888b84d34291d
043bd767688281d574ea8cc0c368156021baa61d
Skip ICE message for fatal errors
[ { "path": "src/tools/miri/src/eval.rs", "patch": "@@ -10,6 +10,7 @@ use std::{iter, thread};\n \n use rustc_abi::ExternAbi;\n use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n+use rustc_errors::FatalErrorMarker;\n use rustc_hir::def::Namespace;\n use rustc_hir::def_id::DefId;\n use rustc_middle::ty::...
2026-03-16T21:18:59
facebook/react
6c8bcdaf1b0c3340150e174a342429d94e729fbb
b367b60927dd85239852bfee60715034c7ca97ba
[Flight] Clarify Semantics for Awaiting Cached Data (#33438) Technically the async call graph spans basically all the way back to the start of the app potentially, but we don't want to include everything. Similarly we don't want to include everything from previous components in every child component. So we need some h...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2826,46 +2826,46 @@ describe('ReactFlight', () => {\n expect(getDebugInfo(thirdPartyChildren[0])).toEqual(\n __DEV__\n ? [\n- {time: 14},\n+ {time: 22}, // Clamped to the star...
2025-06-07T21:26:36
golang/go
3faf988f217f59630509c057f48549f59a02c25e
2485a0bc2cf87837d5e610eed584d8d7ab5831d0
errors: add a test verifying join does not flatten errors For #76961 Change-Id: Ib81f3202074bf83a5b204b32706445f051f837a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/732360 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/errors/join_test.go", "patch": "@@ -25,6 +25,7 @@ func TestJoinReturnsNil(t *testing.T) {\n func TestJoin(t *testing.T) {\n \terr1 := errors.New(\"err1\")\n \terr2 := errors.New(\"err2\")\n+\tmerr := multiErr{errors.New(\"err3\")}\n \tfor _, test := range []struct {\n \t\terrs []error\n \t\tw...
2025-12-23T17:42:37
rust-lang/rust
043bd767688281d574ea8cc0c368156021baa61d
0312931d8c0ba1a28268a12c06202b68cbc65f76
Make `layout_of` cycles fatal errors
[ { "path": "compiler/rustc_codegen_llvm/src/context.rs", "patch": "@@ -1134,11 +1134,7 @@ impl<'tcx> FnAbiOfHelpers<'tcx> for CodegenCx<'_, 'tcx> {\n fn_abi_request: FnAbiRequest<'tcx>,\n ) -> ! {\n match err {\n- FnAbiError::Layout(\n- LayoutError::SizeOverflow(...
2026-02-27T05:23:06
nodejs/node
21da2050aba8d7c641132aeb3615d2161a99d65c
9fbf0cbc60b4f7aab9d0f212d1571996b34d5800
tools: show diff alongside the error in Nix linter PR-URL: https://github.com/nodejs/node/pull/60301 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": ".github/workflows/linters.yml", "patch": "@@ -151,10 +151,10 @@ jobs:\n sparse-checkout-cone-mode: false\n - uses: cachix/install-nix-action@7be5dee1421f63d07e71ce6e0a9f8a4b07c2a487 # v31.6.1\n - name: Lint Nix files\n- run: nix-shell -I nixpkgs=./tools/nix/pkgs.nix ...
2025-10-19T22:49:11
vercel/next.js
839fe54b77d15a802269dea2133501c16aac08be
cc68574b8dcc22680ff2e218df90e811a552e937
Avoid using unclosing prefetch streams in the browser (#89610) Previously, `createPrefetchResponseStream` intentionally never called `controller.close()` on the wrapper stream, to prevent React Flight from erroring on unresolved references (dynamic holes). However, Chrome and Firefox keep unclosed ReadableStreams with...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -232,13 +232,11 @@ export async function fetchServerResponse(\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once ...
2026-02-09T22:30:18
electron/electron
03aad284126a1ae5714c7802a0d307baa8dc8414
25e2459f315510f84932726fba38499f0967e7de
chore: bump chromium to 140.0.7327.0 (main) (#47902) * chore: bump chromium in DEPS to 140.0.7324.0 * chore: bump chromium in DEPS to 140.0.7325.0 * chore: remove @dsanders11's unused include patch CL: https://chromium-review.googlesource.com/c/chromium/src/+/6782507 * fix: apply keychain patch to new apple subdir ...
[ { "path": "BUILD.gn", "patch": "@@ -452,7 +452,7 @@ source_set(\"electron_lib\") {\n \"//components/certificate_transparency\",\n \"//components/compose:buildflags\",\n \"//components/embedder_support:user_agent\",\n- \"//components/input:input\",\n+ \"//components/input\",\n \"//compo...
2025-07-31T22:11:00
golang/go
8254d66eab23bf334d619d888dc98630c1c5c5fd
1b3db48db7afc3fe17440af28cdeac67a0d048f1
cmd/asm/internal/asm: abort end to end test if assembly failed If errors are encountered during assembly, do not attempt to perform verification. In this case the output is unlikely to be correct and all verification fails, which means the real issue gets lost in the noise. Change-Id: I62c1bf09fa025b0df4c06f0bfa424fb...
[ { "path": "src/cmd/asm/internal/asm/endtoend_test.go", "patch": "@@ -199,6 +199,11 @@ Diff:\n \t}\n \tobj.Flushplist(ctxt, pList, nil)\n \n+\tif !ok {\n+\t\t// If we've encountered errors, the output is unlikely to be sane.\n+\t\tt.FailNow()\n+\t}\n+\n \tfor p := top; p != nil; p = p.Link {\n \t\tif p.As ==...
2025-12-21T03:39:20
facebook/react
b367b60927dd85239852bfee60715034c7ca97ba
9666605abfee7e525a22931ce38d40bb29ddc8a5
[Flight] Add "use ..." boundary after the change instead of before it (#33478) I noticed that the ThirdPartyComponent in the fixture was showing the wrong stack and the `"use third-party"` is in the wrong location. <img width="628" alt="Screenshot 2025-06-06 at 11 22 11 PM" src="https://github.com/user-attachments/as...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -33,20 +33,26 @@ function Foo({children}) {\n return <div>{children}</div>;\n }\n \n+async function delay(text, ms) {\n+ return new Promise(resolve => setTimeout(() => resolve(text), ms));\n+}\n+\n async function Bar({children}) {\n- await new Promise...
2025-06-07T15:28:57
nodejs/node
9fbf0cbc60b4f7aab9d0f212d1571996b34d5800
f25cce2805028db0529bf2894a96aa4f952ca5af
doc: use `any` for `worker_threads.Worker` 'error' event argument `err` A worker thread can throw anything via the `throw` keyword, which gets passed directly to 'error' event listeners. The event listener should not assume it is an `Error` object. PR-URL: https://github.com/nodejs/node/pull/60300 Reviewed-By: Anna H...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -1717,7 +1717,7 @@ changes:\n added: v10.5.0\n -->\n \n-* `err` {Error}\n+* `err` {any}\n \n The `'error'` event is emitted if the worker thread throws an uncaught\n exception. In that case, the worker is terminated.", "additions": 1, "deletions": ...
2025-10-19T20:37:00
vercel/next.js
208c4f44b1db7d97dcad84a12bf9ee4ba4810757
35a46b157834b5620a509712a5431d5be32cb46f
fix(image): findClosestQuality returns 0 for low quality values (#89621) Fixes #89620 Fix `findClosestQuality` returning `0` when the `quality` prop on `<Image>` is set to a low value (e.g. `quality={1}`), which causes the image optimization server to reject the request with a 400 error. ### Cause The `reduce` call...
[ { "path": "packages/next/src/shared/lib/find-closest-quality.ts", "patch": "@@ -16,6 +16,6 @@ export function findClosestQuality(\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n- 0\n+ config.qualities[0]\n )\n }", "additions...
2026-02-09T15:11:38
electron/electron
9f43503b3e0a405d071f2a3d297fd5327bda77b1
ecb1eb0b5d7044cc9f0636c9586faa327a45cd09
chore: revert "ci: fixup mac runners" (#47917) This reverts commit 06d7a51a586fda203db91e21963c8fe15fb368d3.
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,8 +6,6 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n- echo \"Disk usage before cleanup:\"\n- df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -75,5 +73,4 @@ ru...
2025-07-31T15:08:43
golang/go
1b3db48db7afc3fe17440af28cdeac67a0d048f1
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
Revert "errors: optimize errors.Join for single unwrappable errors" This reverts CL 635115. Reason for revert: The new behavior does not match the function documentation. Fixes #76961 Change-Id: If2450aa4efba28c7a12887a5b306c231a836e740 Reviewed-on: https://go-review.googlesource.com/c/go/+/731981 Reviewed-by: Dmit...
[ { "path": "src/errors/join.go", "patch": "@@ -27,16 +27,6 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n-\tif n == 1 {\n-\t\tfor _, err := range errs {\n-\t\t\tif _, ok := err.(interface {\n-\t\t\t\tUnwrap() []error\n-\t\t\t}); ok {\n-\t\t\t\treturn err\n-\t\t\t}\n-\t\t}\n-\t}\...
2025-12-23T00:35:42
facebook/react
b3d5e9078685c000e7e9ee3668a7a4b4f3256b1f
280ff6fed2a84b6ad7588c72d3e66b20f0f3c91a
[Fizz] Include unit of threshold in rel=expect deopt error (#33476)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerEdge-test.js", "patch": "@@ -138,7 +138,7 @@ describe('ReactDOMFizzServerEdge', () => {\n if (gate(flags => flags.enableFizzBlockingRender)) {\n expect(errors.length).toBe(1);\n expect(errors[0].message).toContain(\n- 'This...
2025-06-07T00:11:33
vercel/next.js
a0b5d9ad8b314bc9c34b138a3935d571561bb6b6
3f80419318a7553794bc63b9618664a89f10164d
Fix reset-project script for E2E deploy tests (#89693) Our reset script was failing from invalid body shape: ```sh Error: Create project failed. Got status: 400, {"error":{"code":"bad_request","message":"Invalid request: should NOT have additional property `env`."}} ``` x-ref: https://github.com/vercel/next.js/acti...
[ { "path": "scripts/reset-project.mjs", "patch": "@@ -97,10 +97,11 @@ export async function resetProject({\n resourceConfig: {\n buildMachineType: 'enhanced',\n },\n- env: [\n+ environmentVariables: [\n {\n key: 'VERCEL_FORCE_NO_BUILD_CACHE_UPLOAD...
2026-02-09T08:28:05
electron/electron
4c9ab8765b14b76b0d7dab7ec9d936c06f538f88
051f78dd1dbe5f54bc933e3e0119fbb6bdafa8b5
fix: dark mode on Linux default themeing (#47869)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -26,6 +26,7 @@\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n #include \"ui/platform_window/platform_window.h\"\n+#include \"ui/platform_window/platform_window_init_properties.h\"\n #i...
2025-07-31T08:54:55
golang/go
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
2cd0371a0a61e0dec6034239b1a92a20968c8522
cmd/compile: handle propagating an out-of-range jump table index For an out-of-range jump table index, the constant facts should not be propagated to the destinations. Fixes #76950 Change-Id: Iff29814cb466c7aaa432cec212e5387665c45afc Reviewed-on: https://go-review.googlesource.com/c/go/+/731860 Auto-Submit: Cuong Ma...
[ { "path": "src/cmd/compile/internal/ssa/sccp.go", "patch": "@@ -507,6 +507,10 @@ func (t *worklist) propagate(block *Block) {\n \t\t\t\tbranchIdx = 1 - condLattice.val.AuxInt\n \t\t\t} else {\n \t\t\t\tbranchIdx = condLattice.val.AuxInt\n+\t\t\t\tif branchIdx < 0 || branchIdx >= int64(len(block.Succs)) {\n+...
2025-12-22T11:49:17
vercel/next.js
a4f8b179e125265af9b79e28c8bf5e7322e66fdd
1c73ca5a58e3ec8ab6f1b908f2819245a6147469
Include `AggregateError.errors` in terminal output (#88999) Co-authored-by: bencmbrook <7354176+bencmbrook@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -451,13 +451,16 @@ function sourceMapError(\n error: Error,\n inspectOptions: util.InspectOptions\n ): Error {\n+ // Setting an undefined `cause` would print `[cause]: undefined`\n+ const options = error.cause !== undefined ? { ...
2026-02-08T23:18:03
electron/electron
06d7a51a586fda203db91e21963c8fe15fb368d3
2255bb620ae037f3eb641d79a7436d4e6facf435
ci: fixup mac runners (#47877) ci: make sure camera and bluetooth are available on macos ci: turn off spotlight indexing
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru...
2025-07-28T17:37:05
golang/go
2cd0371a0a61e0dec6034239b1a92a20968c8522
91435be1531727f3220a8fdebb7e4894f39edb41
debug/pe: avoid panic in File.ImportedSymbols This change skips symbols where dt.OriginalFirstThunk is less than ds.VirtualAddress. The variable types are uint32, and (dt.OriginalFirstThunk-ds.VirtualAddress) becomes very large number when dt.OriginalFirstThunk < ds.VirtualAddress. Fixes #73548. Fixes #76721. Fixes ...
[ { "path": "src/debug/pe/file.go", "patch": "@@ -379,7 +379,11 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t}\n \n \t// seek to the virtual address specified in the import data directory\n-\td = d[idd.VirtualAddress-ds.VirtualAddress:]\n+\tseek := idd.VirtualAddress - ds.VirtualAddress\n+\tif ...
2025-06-24T05:18:28
vercel/next.js
7c9be45a48ea58a2ddbe37c2840142dd79cc7b3a
9ce7250725df2344f59d391b70f9110f7329f9d8
[Turbopack] Include CSS URL attributes, including Layer, Media and Supports (#89300) Note that this is my first contribution in Rust, so let me know if I missed anything idiomatic or if there is a particularly better way to do something. Also, I did not use AI to create this at all, although I did chat a bit to try t...
[ { "path": "test/e2e/app-dir/app-css/app/externalLayer/external-layer.css", "patch": "@@ -0,0 +1,11 @@\n+@import url('https://cdn.jsdelivr.net/npm/modern-css-reset/dist/reset.min.css')\n+layer(default);\n+/* Any external stylesheet should work. Using this css-reset because it is very small and backed by CDN ...
2026-02-08T17:55:32
electron/electron
084c6ef549742e15375c711a9aabc20a59d970e2
01faaa30eaef04d1da951a29e9f86fdfbed036b1
refactor: prefer `GetCreationContextChecked(v8::Isolate*)` over `GetCreationContextChecked()` (#47878) * refactor: pass an isolate when calling GetCreationContextChecked() in V8FunctionInvoker * refactor: pass an isolate when calling GetCreationContextChecked() in RendererClientBase * refactor: pass an isolate when ...
[ { "path": "shell/common/gin_helper/callback.h", "patch": "@@ -49,7 +49,7 @@ struct V8FunctionInvoker<v8::Local<v8::Value>(ArgTypes...)> {\n if (!function.IsAlive())\n return v8::Null(isolate);\n v8::Local<v8::Function> holder = function.NewHandle(isolate);\n- v8::Local<v8::Context> context ...
2025-07-25T14:06:57
facebook/react
142aa0744d0e73dc5390bc19d4d41dd8aeda2b19
6ccf328499f06c140ffe96a096744c22319394cc
[Fizz] Support deeply nested Suspense inside fallback (#33467) When deeply nested Suspense boundaries inside a fallback of another boundary resolve it is possible to encounter situations where you either attempt to flush an aborted Segment or you have a boundary without any root segment. We intended for both of these ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -88,6 +88,7 @@ describe('ReactDOMFizzServer', () => {\n setTimeout(cb);\n container = document.getElementById('container');\n \n+ CSPnonce = null;\n Scheduler = require('scheduler');\n React = require(...
2025-06-06T18:59:15
golang/go
91435be1531727f3220a8fdebb7e4894f39edb41
c1efada1d20a0f4af6ffc2be17706713af11b3b0
runtime: revert entry point on freebsd/arm64 CL 706175 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future. Fixes #76958 Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8...
[ { "path": "src/runtime/rt0_freebsd_arm64.s", "patch": "@@ -4,9 +4,12 @@\n \n #include \"textflag.h\"\n \n-// On FreeBSD argc/argv are passed in R0, not RSP\n+// FreeBSD passes a pointer to the argument block in R0, not RSP,\n+// so _rt0_arm64 cannot be used.\n TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0\n-\tJMP\...
2025-12-22T21:25:08
nodejs/node
f25cce2805028db0529bf2894a96aa4f952ca5af
3437e1c4bd529e51d96ea581b6435bbeb77ef524
test: fix status when compiled without inspector PR-URL: https://github.com/nodejs/node/pull/60289 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo ...
[ { "path": "test/common/index.js", "patch": "@@ -54,6 +54,7 @@ const noop = () => {};\n const hasCrypto = Boolean(process.versions.openssl) &&\n !process.env.NODE_SKIP_CRYPTO;\n \n+const hasInspector = Boolean(process.features.inspector);\n const hasSQLite = Boolean(process.versions.sqlite)...
2025-10-19T17:39:54
rust-lang/rust
cc65ec1892b2aa593bc5421996a655fbfce64050
cde9cf08d7a79042758db8d5d824d0341da97f7a
trim prefix/suffix for paths
[ { "path": "library/std/src/path.rs", "patch": "@@ -2725,6 +2725,41 @@ impl Path {\n self._strip_prefix(base.as_ref())\n }\n \n+ /// Returns a path with the optional prefix removed.\n+ ///\n+ /// If `base` is not a prefix of `self` (i.e., [`starts_with`] returns `false`), returns the ori...
2026-03-24T16:07:22
vercel/next.js
e20f127a1f30d7fb7caadad9101074a355a44fea
355d4484e5d7d923c8508695d9d14d11e812ebaf
Fix missing non-deferred turbopack build items (#89616) This expands test suite for deferred entries experimental handling and fixes missing handling for metadata routes and route handlers when building the non-deferred entries.
[ { "path": "packages/next/src/build/turbopack-build/impl.ts", "patch": "@@ -2,6 +2,11 @@\n import { saveCpuProfile } from '../../server/lib/cpu-profile'\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib/turbopack-warning'\n+import { isMetadataRouteFile } from '../../lib/metadata/...
2026-02-07T05:24:51
facebook/react
6ccf328499f06c140ffe96a096744c22319394cc
a374e0ec87ec1d45a94b69e26c747529ea5dbab0
[Fizz] Shorten throttle to hit a specific target metric (#33463) Adding throttling or delaying on images, can obviously impact metrics. However, it's all in the name of better actual user experience overall. (Note that it's not strictly worse even for metric. Often it's actually strictly better due to less work being ...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -6,9 +6,9 @@ export const markShellTime =\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"...
2025-06-06T18:01:15
electron/electron
01faaa30eaef04d1da951a29e9f86fdfbed036b1
c569d5e4baf049a5c7f1b61b420109b9294ae6c3
fix: window content protection on older Windows versions (#47856)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1282,12 +1282,7 @@ void NativeWindowViews::SetOpacity(const double opacity) {\n #if BUILDFLAG(IS_WIN)\n const double boundedOpacity = std::clamp(opacity, 0.0, 1.0);\n HWND hwnd = GetAcceleratedWidget();\n- if (!layered_) {\n- LONG ex_st...
2025-07-24T19:05:28
golang/go
c1efada1d20a0f4af6ffc2be17706713af11b3b0
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
simd/archsimd: correct documentation for pairwise operations For Add/SubPairs(Saturated?), the documented result element order is wrong. Corrected. Also, for 256-bit vectors, this is a grouped operation. So name it with the Grouped suffix to be clear. Change-Id: Idfd0975cb4a332b2e28c898613861205d26f75b0 Reviewed-on:...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -250,12 +250,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPADDQ256,\n \t\tssa.OpAMD64VPADDQ512,\n \t\tssa.OpAMD64VHADDPS128,\n-\t\tssa.OpAMD64VHADDPS256,\n \t\tssa.OpAMD64VHADDPD128,\n-\t\tssa.OpAMD64VH...
2025-12-22T19:52:57
nodejs/node
481b9b11b3a96dfe9923baf6e4ef77895be951e4
70e7c1511ffd6dfbba2033028447eaf82b9ff23a
tools: fix inspector_protocol updater `.github/workflows/tools.yml` creates a temp file `temp-output` in the workspace, which fails `git status` clean repo check. Also, the GHA checks out a new branch after the update script. Removes these checks in the `roll.py` to fix its run on the GHA. PR-URL: https://github.co...
[ { "path": "tools/inspector_protocol/roll.py", "patch": "@@ -47,13 +47,6 @@ def CheckRepoIsClean(path):\n raise Exception('%s is not a clean git repo (run git status)' % path)\n \n \n-def CheckRepoIsNotAtMainBranch(path):\n- os.chdir(path)\n- stdout = RunCmd(['git', 'rev-parse', '--abbrev-ref', 'HEAD']...
2025-10-18T22:44:44
facebook/react
a374e0ec87ec1d45a94b69e26c747529ea5dbab0
ab859e31be5db56106161060033109c9f2d26eca
[ci] Fix missing permissions for stale job (#33466) Missed these the last time.
[ { "path": ".github/workflows/shared_stale.yml", "patch": "@@ -6,7 +6,10 @@ on:\n - cron: '0 * * * *'\n workflow_dispatch:\n \n-permissions: {}\n+permissions:\n+ # https://github.com/actions/stale/tree/v9/?tab=readme-ov-file#recommended-permissions\n+ issues: write\n+ pull-requests: write\n \n env:\...
2025-06-06T17:32:51
electron/electron
670da27305e5fc6433d8898f7c4dfa27b8ca5c23
5f901174c54fb3b3a3cd0e71bb9d66e6a067227e
ci: add ability to debug SSH sessions in CI (#47819)
[ { "path": ".github/actions/ssh-debug/action.yml", "patch": "@@ -0,0 +1,20 @@\n+name: Debug via SSH\n+description: Setup a SSH server with a tunnel to access it to debug via SSH.\n+inputs:\n+ tunnel:\n+ description: 'Enable SSH tunneling via cloudflared'\n+ required: true\n+ default: 'false'\n+ ti...
2025-07-23T14:57:06
vercel/next.js
355d4484e5d7d923c8508695d9d14d11e812ebaf
7cd9c7071ea92d599b7415d0d1c195a17a2407f0
fix: deprecated util._extend (#89614) ### What? Fix deprecated warning: "Use Object.assign instead of deprecated util._extend" from http-proxy (which hasn't been updated for 5 years) ### Why? ### How? Fixes #74460 In favour of https://github.com/vercel/next.js/pull/81544 (which didn't use a patch, but manually upd...
[ { "path": "package.json", "patch": "@@ -158,7 +158,7 @@\n \"@types/fs-extra\": \"8.1.0\",\n \"@types/glob\": \"7.1.1\",\n \"@types/html-validator\": \"5.0.3\",\n- \"@types/http-proxy\": \"1.17.3\",\n+ \"@types/http-proxy\": \"1.17.17\",\n \"@types/jest\": \"29.5.5\",\n \"@types/nod...
2026-02-06T23:45:46
nodejs/node
649d73a043f9da35c6d110d4d338b6883e42a080
38bf955937b5a30f5bd59360c2b153647d4737e2
test: fix incorrect calculation in test-perf-hooks.js After https://redirect.github.com/nodejs/node/pull/46588, Date.now() - performance.timeOrigin and process.uptime() are no longer similar - the former measures uptime from process initilaization, while the latter measures uptime from the main context initialization....
[ { "path": "test/sequential/test-perf-hooks.js", "patch": "@@ -28,15 +28,10 @@ const epsilon = 50;\n {\n const uptime1 = Date.now() - performance.timeOrigin;\n const uptime2 = performance.now();\n- const uptime3 = process.uptime() * 1000;\n assert(Math.abs(uptime1 - uptime2) < epsilon,\n `Dat...
2025-10-18T12:21:44
golang/go
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
7ecb1f36acab7b48d77991d58d456a34074a2d0e
os/exec: second call to Cmd.Start is always an error Previously it would return an error only if the first call resulted in process creation, contra the intent of the comment at exec.Cmd: // A Cmd cannot be reused after calling its [Cmd.Start], [Cmd.Run], // [Cmd.Output], or [Cmd.CombinedOutput] methods. Also, clear...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -102,6 +102,7 @@ import (\n \t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync/atomic\"\n \t\"syscall\"\n \t\"time\"\n )\n@@ -354,6 +355,9 @@ type Cmd struct {\n \t// the work of resolving the extension, so Start doesn't need to do it again.\n \t// This is...
2025-12-09T15:06:23
facebook/react
d177272802b7f86a847312c23b7e60a6f56434de
22b929156c325eaf52c375f0c62801831951814a
[Fizz] Error and deopt from rel=expect for large documents without boundaries (#33454) We want to make sure that we can block the reveal of a well designed complete shell reliably. In the Suspense model, client transitions don't have any way to implicitly resolve. This means you need to use Suspense or SuspenseList to...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -5465,7 +5465,7 @@ export function writePreambleStart(\n destination: Destination,\n resumableState: ResumableState,\n renderState: RenderState,\n- skipExpect?: boolean, // Used as an override by ReactFizzConfigMar...
2025-06-06T14:29:48
electron/electron
b39a1fb8777e1f1703a5bee30f5d4ee4e1e4d3a9
2156ccb577f892bf25dea22a6d250beddbd4a2f7
fix: `webContents.downloadURL()` did not support referer header (#47625) Signed-off-by: xufuhang <576484918@qq.com>
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2398,6 +2398,13 @@ void WebContents::DownloadURL(const GURL& url, gin::Arguments* args) {\n content::DownloadRequestUtils::CreateDownloadForWebContentsMainFrame(\n web_contents(), url, MISSING_TRAFFIC_ANNOTATION));\n ...
2025-07-23T08:37:24
vercel/next.js
522de8c34fbf8070ab4c0deb90b716f0ceb6f8e4
5ea38767d231c741f83cdadfbe317b9d84d9209b
Fix deployment id header when proxying (#89593) When proxying through multiple projects, this header would get overwritten by the proxy project: - the header would be the proxy's deployment id - `process.env.NEXT_DEPLOYMENT_ID` would be the origin's deployment id Needs https://github.com/vercel/vercel/pull/14903
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -30,6 +30,7 @@ import type {\n ManifestRewriteRoute,\n FunctionsConfigManifest,\n DynamicPrerenderManifestRoute,\n+ ManifestHeaderRoute,\n } from '..'\n \n import {\n@@ -1977,6 +1978,19 @@ export async function handleBuildCom...
2026-02-06T19:34:25
facebook/react
22b929156c325eaf52c375f0c62801831951814a
a3be6829c6425f306a8bef9f7dba72d1347a64b3
[Fizz] Suspensey Images for View Transition Reveals (#33433) Block the view transition on suspensey images Up to 500ms just like the client. We can't use `decode()` because a bug in Chrome where those are blocked on `startViewTransition` finishing we instead rely on sync decoding but also that the image is live when ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -4860,8 +4860,9 @@ export function writeCompletedSegmentInstruction(\n const completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(\n completeBoundaryFunction,\n );\n-const completeBoundaryUpgradeToViewTransitio...
2025-06-06T14:14:13
nodejs/node
38bf955937b5a30f5bd59360c2b153647d4737e2
8b52c89b00642d624a5472a0df139593ef82a239
vm: make vm.Module.evaluate() conditionally synchronous - Make sure that the vm.Module.evaluate() method is conditionally synchronous based on the specification. Previously, the returned promise is unconditionally pending (even for synthetic modules and source text modules without top-level await) instead of imm...
[ { "path": "doc/api/vm.md", "patch": "@@ -618,19 +618,47 @@ in the ECMAScript specification.\n work after that. **Default:** `false`.\n * Returns: {Promise} Fulfills with `undefined` upon success.\n \n-Evaluate the module.\n+Evaluate the module and its depenendencies. Corresponds to the [Evaluate() concr...
2025-10-10T18:20:09
golang/go
7ecb1f36acab7b48d77991d58d456a34074a2d0e
70c22e0ad7d89504ab26fb157864f61a79cd4d47
simd/archsimd: add HasAVX2() guards to tests that need them This may not be complete, because some 256-bit float operations may be implemented with integer simd instead (in some cases there is no float op). (And some tests may have just been overlooked.) Fixes #76866. Change-Id: I90b1dfe039c322c484af916436fc6f6c50a...
[ { "path": "src/simd/archsimd/internal/simd_test/binary_test.go", "patch": "@@ -17,23 +17,29 @@ func TestAdd(t *testing.T) {\n \ttestFloat64x2Binary(t, archsimd.Float64x2.Add, addSlice[float64])\n \ttestFloat64x4Binary(t, archsimd.Float64x4.Add, addSlice[float64])\n \n-\ttestInt16x16Binary(t, archsimd.Int16x...
2025-12-19T20:50:57
electron/electron
2156ccb577f892bf25dea22a6d250beddbd4a2f7
9e2f7065a0173d98d217ef6662992bd61eaf4d16
ci: update llvmobjdump package as part of fix sync (#47858)
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -19,11 +19,13 @@ inputs:\n runs:\n using: \"composite\"\n steps:\n- - name: Fix clang\n+ - name: Fix llvm toolchain\n shell: bash\n run : |\n rm -rf src/third_party/llvm-build\n python3 src/tools/clang/script...
2025-07-23T08:05:30
rust-lang/rust
36c22f7cf7a7070c9c6b478406f9b2ba831560c6
bbe853615821442ef11d6cd42a30a73432b38d89
Add test for dead code warnings in const _ Tests that dead code warnings work correctly inside const _ blocks. Issue was already fixed, adding regression test as requested.
[ { "path": "tests/ui/lint/dead-code/const-underscore-issue-101532.rs", "patch": "@@ -0,0 +1,14 @@\n+//@ check-pass\n+// Test for issue #101532 - dead code warnings should work inside const _\n+\n+#![warn(dead_code)]\n+\n+const _: () = {\n+ let a: ();\n+ struct B {} //~ WARN struct `B` is never construc...
2026-03-23T12:08:12
facebook/react
b1759882c0b8045aff27fa9e41600534d396f69c
dddcae7a11b8241cbd6e2de55f9e68881baea458
[Flight] Bypass caches in Flight fixture if requested (#33445)
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -101,6 +101,9 @@ async function renderApp(req, res, next) {\n } else if (req.get('Content-type')) {\n proxiedHeaders['Content-type'] = req.get('Content-type');\n }\n+ if (req.headers['cache-control']) {\n+ proxiedHeaders['Cache-Control']...
2025-06-06T04:42:58
nodejs/node
c2d44174b2f38f15214c5e395b7a59b66824252c
86560880905cf11ea49a5dfb72505fe1ef856eaf
test: ignore EPIPE errors in https proxy invalid URL test There can be a race from eagerly shutting down the servers and severing two pipes at the same time but for the purpose of this test, we only care about whether the requests are initiated from the client as expected, not how the upstream/proxy servers behave. Ig...
[ { "path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs", "patch": "@@ -82,7 +82,19 @@ for (const testCase of testCases) {\n proxy.close();\n server.close();\n assert.deepStrictEqual(requests, expectedUrls);\n- assert.deepStrictEqual(new Set(logs)...
2025-10-18T05:43:08
vercel/next.js
a1c12562f0e07c3a1340745e06dd13064971f7c3
869b45ef0dd84a71296b1809c8bed2dce7bd1ad1
Turbopack: Pass globals to node.js workers as well (#89261) ## What Changes how Turbopack creates Web Workers and Worker Threads to use a unified factory function pattern. Workers now receive the same runtime globals (like `NEXT_DEPLOYMENT_ID` and `NEXT_CLIENT_ASSET_SUFFIX`) as the parent context, and asset loading...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -71,7 +71,7 @@ use crate::{\n util::{\n OptionEnvMap, defines, foreign_code_context_condition,\n free_var_references_with_vercel_system_env_warnings, internal_assets_conditions,\n- module_styles_rule_condition,\...
2026-02-06T17:02:54
golang/go
70c22e0ad7d89504ab26fb157864f61a79cd4d47
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
simd/archsimd: delete DotProductQuadruple methods for now The DotProductQuadruple methods are currently defined on Int8 vectors. There are some problems for that. 1. We defined a DotProductQuadrupleSaturated method, but the dot product part does not need saturation, as it cannot overflow. It is the addition part of V...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1324,12 +1324,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256,\n \t\tssa.OpAMD64VPERMI2PD512,\n \t\tssa.OpAMD64VPERMI2Q512,\n-\t\tssa.OpAMD64VPDPBUSD128,\n-\t\tssa.OpAMD64VPDPBUSD256,\n-\t\tssa....
2025-12-19T22:05:03
electron/electron
51bfe07da974efe111ef73ccf7ecdf510f33d256
4699761649ee6eb125e01c72ed290f4ec941ad2d
build: extend Chromium options in bug report template (#47829) * build: extend Chromium options in bug report template As predicted by @dsanders11 and others, we got a bunch of bug reports with clearly incorrect values for "does this issue appear in Chromium?" because people didn't test or didn't know how to test. ...
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -63,6 +63,7 @@ body:\n label: Does the issue also appear in Chromium / Google Chrome?\n description: If it does, please report the issue in the [Chromium issue tracker](https://issues.chromium.org/issues), not against Electron. Electron...
2025-07-21T19:26:02
facebook/react
b4477d3800ccb0bdf26670cd1f021d094159c38f
93f1668045b924294f5832d5044fa049cd7af16e
[Flight] Add a cached 3rd-party component to the Flight fixture (#33443) This should allow us to visualize what https://github.com/facebook/react/pull/33438 is trying to convey. An uncached 3rd-party component is displayed like this in the dev tools: <img width="1072" alt="Screenshot 2025-06-05 at 12 57 32" src="htt...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -1,4 +1,7 @@\n import * as React from 'react';\n+import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n+import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {PassThrough, Readable} from 'stream';\n \n import Co...
2025-06-05T15:19:54
nodejs/node
70c04c7fd8630397a4062de1ca2e834fa2a5fad0
8429d9a40b665e2a192d00b73a6a21d687f9b870
test: parallelize test-without-async-context-frame correctly It previously re-einvented the pattern matching that's already supported by test.py, and was running the tests one by one, which can lead to time out on slower machines. This move it to sequential and use wildcard support in test.py to correctly parallelize ...
[ { "path": "test/parallel/test-without-async-context-frame.mjs", "patch": "@@ -1,64 +0,0 @@\n-import { isWindows } from '../common/index.mjs';\n-import { spawn } from 'node:child_process';\n-import { once } from 'node:events';\n-import { opendir } from 'node:fs/promises';\n-import { fileURLToPath } from 'nod...
2025-10-17T22:40:34
rust-lang/rust
bf8178627c7140f86387eb94b942d39577642161
2db5d1ffdb6d7efdfa722221c0b5dd6093e1881d
fix: keep comments for 'Fill match arms' Example --- ```rust enum E { A, B, C } fn foo(t: E) -> i32 { match $0t { // variant a E::A => 2 // comment on end } } ``` **Before this PR** ```rust enum E { A, B, C } fn foo(t: E) -> i32 { match t { E::A => 2, E::B => ${1...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs", "patch": "@@ -6,10 +6,11 @@ use ide_db::RootDatabase;\n use ide_db::syntax_helpers::suggest_name;\n use ide_db::{famous_defs::FamousDefs, helpers::mod_path_to_ast};\n use itertools::Itertools;\n-use syntax::ToSmol...
2026-03-04T04:02:07
vercel/next.js
869b45ef0dd84a71296b1809c8bed2dce7bd1ad1
bba2a9cf268cca9bf3fb754eedfe0dfc79512e9d
Resolve local variable references in error code SWC plugin (#89596) The error code plugin now resolves local variable references in error constructors to their string literal initializers. Previously, `const msg = 'Error text'; throw new Error(msg)` would produce `"%s"` as the error message, preventing it from being t...
[ { "path": "crates/next-error-code-swc-plugin/src/lib.rs", "patch": "@@ -8,6 +8,23 @@ use swc_core::{\n \n pub struct TransformVisitor {\n errors: FxHashMap<String, String>,\n+ resolved_bindings: FxHashMap<Id, String>,\n+}\n+\n+struct BindingCollector {\n+ bindings: FxHashMap<Id, String>,\n+}\n+\n+...
2026-02-06T16:38:24
electron/electron
4699761649ee6eb125e01c72ed290f4ec941ad2d
26e1bda335878dac2afdafad772e6b431a01bb4b
build: improve `check-zip-manifest` (#47828) * build: improve check-zip-manifest * fix: unicode on Windows
[ { "path": "script/zip_manifests/check-zip-manifest.py", "patch": "@@ -2,24 +2,79 @@\n \n import zipfile\n import sys\n+import os\n \n-def main(zip_path, manifest_in):\n- with open(manifest_in, 'r', encoding='utf-8') as manifest, \\\n- zipfile.ZipFile(zip_path, 'r', allowZip64=True) as z:\n- files_i...
2025-07-21T19:20:27
facebook/react
37054867c15a7381abe0f73d98f3fecd06da52da
d742611ce40545127032f4e221c78bf9f70eb437
[Flight] Forward debugInfo from awaited instrumented Promises (#33415) Stacked on #33403. When a Promise is coming from React such as when it's passed from another environment, we should forward the debug information from that environment. We already do that when rendered as a child. This makes it possible to also `...
[ { "path": ".eslintrc.js", "patch": "@@ -561,6 +561,7 @@ module.exports = {\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n AnimationFrameID: 'readonly',\n+ WeakRef: 'readonly',\n // For Flow type annotation. Only `BigInt` ...
2025-06-04T04:49:03
golang/go
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
baa0ae3aaacfcef6ae04beba78a2d2b06776e423
simd/archsimd: add Grouped for 256- and 512-bit SaturateTo(U)Int16Concat, and fix type They operate on 128-bit groups, so name them Grouped to be clear, and consistent with other grouped operations. Reword the documentation, mention the grouping only for grouped versions. Also, SaturateToUnt16Concat(Grouped) is a sig...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -739,12 +739,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPRORVQMasked128,\n \t\tssa.OpAMD64VPRORVQMasked256,\n \t\tssa.OpAMD64VPRORVQMasked512,\n-\t\tssa.OpAMD64VPACKSSDWMasked128,\n \t\tssa.OpAMD64VPA...
2025-12-19T20:21:15
nodejs/node
d3f79aa65d828e7cd81e95381d1893117824fbd6
8096aeab81a801d9a1bcda10fe354235ee556932
assert: allow printf-style messages as assertion error Also add functions as allowed message input. This allows to have leavy message computation to become cheaper. PR-URL: https://github.com/nodejs/node/pull/58849 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.c...
[ { "path": "doc/api/assert.md", "patch": "@@ -39,6 +39,27 @@ strict methods. For example, [`assert.deepEqual()`][] will behave like\n In strict assertion mode, error messages for objects display a diff. In legacy\n assertion mode, error messages for objects display the objects, often truncated.\n \n+### Mess...
2025-10-17T20:15:17
vercel/next.js
7429f7ce86accf790414553d4b8c066fbf41e6e6
1bf6c2f4b138dbf6b426d2b04b7f7e16a1b52f6d
refactor: extract route discovery into unified `discoverRoutes()` API (#88971) ## Summary Route collection, mapping, and processing logic was duplicated across six call sites (`build/index.ts`, `build/analyze/index.ts`, `cli/next-typegen.ts`, `server/lib/router-utils/setup-dev-bundler.ts`, `server/mcp/tools/get-route...
[ { "path": "packages/next/src/build/analyze/index.ts", "patch": "@@ -9,14 +9,8 @@ import { PHASE_ANALYZE } from '../../shared/lib/constants'\n import { turbopackAnalyze, type AnalyzeContext } from '../turbopack-analyze'\n import { durationToString } from '../duration-to-string'\n import { cp, writeFile, mkdi...
2026-02-06T15:29:35
facebook/react
154008172573d64519ebbc23da611a27073b0a8c
9cc74fec749bcca2e0f5d1e41aa612b2135641ff
[Flight] Encode Async I/O Tasks using the Enclosing Line/Column (#33403) Stacked on #33402. There's a bug in Chrome Performance tracking which uses the enclosing line/column instead of the callsite in stacks. For our fake eval:ed functions that represents functions on the server, we can position the enclosing functi...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -813,7 +813,13 @@ function createElement(\n console,\n getTaskName(type),\n );\n- const callStack = buildFakeCallStack(response, stack, env, createTaskFn);\n+ const callStack = buildFakeCallStack(\n+ ...
2025-06-03T21:30:31
golang/go
25ed6c7f9b1985688cc9b09b2afdda54fc8932bd
4411edf9721cb4cdb0a5b81b9511ff7472581519
cmd/go/internal/doc: update pkgsite version Fixes #76827 For #36905 Change-Id: I3f855a75efc9272105f0a352c54600cd6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731460 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Matloob <matloob@google....
[ { "path": "src/cmd/go/internal/doc/pkgsite.go", "patch": "@@ -71,7 +71,7 @@ func doPkgsite(urlPath, fragment string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n+\tconst version = \"v0.0.0-20251215153041-4eb0af2c...
2025-12-19T18:00:33
nodejs/node
9e8c7535f2331f767dd4ddc15abd99bf72a61cc5
64bbb979decdbfffc3d88b26c1e2045a8e2ed6d8
test: skip sea tests on x64 macOS It's unlikely that anyone would invest in fixing them on x64 macOS in the near future, now that x64 macOS is being phased out. Simply skip them for now. PR-URL: https://github.com/nodejs/node/pull/60250 Refs: https://github.com/nodejs/node/issues/59553 Reviewed-By: Richard Lau <richa...
[ { "path": "test/sea/sea.status", "patch": "@@ -8,25 +8,7 @@ prefix sea\n \n [$system==macos && $arch==x64]\n # https://github.com/nodejs/node/issues/59553\n-test-single-executable-application: PASS, FLAKY\n-test-single-executable-application-assets: PASS, FLAKY\n-test-single-executable-application-assets-ra...
2025-10-13T20:57:48
rust-lang/rust
e20616882af110507162e48b113456eaf5aadac1
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
fix: upmap macro-expanded usages in destructure struct/tuple binding when a local binding is used inside a macro call (e.g. write!(s, "{}", x.field) or write!(s, "{}", t.0)), the usage's name node lives in the macro expansion tree while the syntax editor is rooted at the source file tree. passing the expansion node to...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/destructure_struct_binding.rs", "patch": "@@ -17,7 +17,7 @@ use syntax::{\n \n use crate::{\n assist_context::{AssistContext, Assists, SourceChangeBuilder},\n- utils::ref_field_expr::determine_ref_and_parens,\n+ utils::{cover_edit_...
2026-03-24T08:58:24
facebook/react
2e9f8cd3e031212bc507e31e2888f8f96b1de138
65a46c7eebb731ba5c1602afef87365491beb75d
Clear bundler cache before bundling fixtures (#33426)
[ { "path": "fixtures/fizz/package.json", "patch": "@@ -28,8 +28,8 @@\n \"prettier\": \"1.19.1\"\n },\n \"scripts\": {\n- \"predev\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n- \"prestart\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n+ \"predev\": \"cp -r ../...
2025-06-03T19:10:13
vercel/next.js
1bf6c2f4b138dbf6b426d2b04b7f7e16a1b52f6d
488d90d141c6f84db3aae5ef57546052c5d8c7f0
Fix flaky turbo cache pull with retries and graceful fallback (#89575) - Add retry logic (3 attempts with 5s delay) for transient network failures - Don't fail the job when cache restoration fails - let workflow build from source - Add error handling for dry run failures and JSON parsing This attempts to address tran...
[ { "path": "scripts/pull-turbo-cache.js", "patch": "@@ -3,69 +3,122 @@\n \n const { spawn } = require('child_process')\n \n-;(async function () {\n- const target = process.argv[process.argv.length - 1]\n-\n- let turboResult = ''\n- const turboCommand = `pnpm dlx turbo@${process.env.TURBO_VERSION || 'lates...
2026-02-06T15:06:40
golang/go
d00e96d3aeccb11c373d125418316f0b019f4fb0
cfc024daebb84b1864f538d60659691ccf3acf30
internal/cpu: repair VNNI feature check This is a pain to test. Also the original test was never executed, because it was wrong. It looks like processors that might lack this features include Intel 11th generation and AMD Zen 4. These might or might not have bit 2 set in the 7th cpuid "leaf" (SM4) which is what the ...
[ { "path": "src/internal/cpu/cpu_x86.go", "patch": "@@ -219,7 +219,7 @@ func doinit() {\n \tif eax7 >= 1 {\n \t\teax71, _, _, _ := cpuid(7, 1)\n \t\tif X86.HasAVX {\n-\t\t\tX86.HasAVXVNNI = isSet(4, eax71)\n+\t\t\tX86.HasAVXVNNI = isSet(eax71, cpuid_AVXVNNI)\n \t\t}\n \t}\n ", "additions": 1, "deleti...
2025-12-18T18:18:14
electron/electron
26e1bda335878dac2afdafad772e6b431a01bb4b
cf871bce4e380cff71036e877d5e42bd6c32e911
chore: bump chromium to 140.0.7301.0 (main) (#47747) * chore: bump chromium in DEPS to 140.0.7296.0 * chore: update patches * 6702959: Remove OwnedByWidgetPassKey usage from content analysis dialog tests | https://chromium-review.googlesource.com/c/chromium/src/+/6702959 * 6722750: Remove un-used `stream_id` argume...
[ { "path": "BUILD.gn", "patch": "@@ -4,9 +4,9 @@ import(\"//build/config/win/manifest.gni\")\n import(\"//components/os_crypt/sync/features.gni\")\n import(\"//components/spellcheck/spellcheck_build_features.gni\")\n import(\"//content/public/app/mac_helpers.gni\")\n+import(\"//content/public/common/features...
2025-07-21T16:32:53
facebook/react
3fb17d16a4838e132d0d6dbb08f91b7e7da691eb
acee65d6d031697ab8c71932a5b028351cbc3b03
[Flight] Encode ReactIOInfo as its own row type (#33390) Stacked on #33388. This encodes the I/O entries as their own row type (`"J"`). This makes it possible to parse them directly without first parsing the debug info for each component. E.g. if you're just interested in logging the I/O without all the places it was...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -13,6 +13,7 @@ import type {\n ReactComponentInfo,\n ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactIOInfo,\n ReactTimeInfo,\n ReactStackTrace,\n ReactFunctionLocation,\n@@ -47,6 +48,7 @@ import {\n enablePostpone,\n ...
2025-06-03T18:16:34
nodejs/node
71f5b1cbf0540d1309d58ac181326e5b65f680c7
e8fd0ee74ded1e2badd25401785b9d0ec0a660c9
doc: fix `blob.bytes()` heading level PR-URL: https://github.com/nodejs/node/pull/60252 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -513,7 +513,7 @@ added:\n Returns a promise that fulfills with an {ArrayBuffer} containing a copy of\n the `Blob` data.\n \n-#### `blob.bytes()`\n+### `blob.bytes()`\n \n <!-- YAML\n added:", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-10-16T08:17:53
vercel/next.js
488d90d141c6f84db3aae5ef57546052c5d8c7f0
a91b3609d0a1fa4f6c3d8603f9b5bad9b5aa33a9
[test] consolidate the browser log test (#89601) Filter out the extra logging from test env so we only assert on the snapshot of forwarded logs ``` Snapshot name: `Terminal Logging (Webpack) App Router - Hydration Errors should show hydration errors with owner stack trace 1` - Snapshot - 1 + Received + 9 @@ -39,7 ...
[ { "path": "test/development/browser-logs/browser-logs.test.ts", "patch": "@@ -303,8 +303,10 @@ describe(`Terminal Logging (${bundlerName})`, () => {\n await retry(() => {\n const logOutput = logs.join('\\n')\n // Find the hydration error log entry\n+ // Stop at: another [browser...
2026-02-06T13:48:26
golang/go
b8c4cc63e77bd457dffa6ec83a3ff65382dac94b
8564fede8929df5bbf9f10d35ff9d3620683ca80
runtime: keep track of secret allocation size During a naive attempt to test the new runtime/secret package, I tried wrapping the entire handshake in a secret.Do call. This lead to a panic because some of the allocator logic had been previously untested. freeSpecial takes p and size, but they can be misleading. They ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1213,7 +1213,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tif goexperiment.RuntimeSecret && gp.secret > 0 {\n \t\t// Mark any object allocated while in secret mode as secret.\n \t\t// This ensures we zero it immediately when...
2025-12-16T13:50:57
rust-lang/rust
bb0bc8567ffa39c767650f6603a965001cba94c0
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
fix: wrap `Option<>` for desugar_try_expr_let_else Example --- ```rust fn test() { let pat: bool = Some(true)$0?; } ``` **Before this PR** ```rust fn test() { let Some(pat): bool = Some(true) else { return None; }; } ``` **After this PR** ```rust fn test() { let Some(pat): Option<bool> = So...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/desugar_try_expr.rs", "patch": "@@ -116,7 +116,7 @@ pub(crate) fn desugar_try_expr(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let fill_expr = || crate::utils::expr_fill_default(ctx.config);\n let new_...
2026-03-24T09:53:31
electron/electron
cf871bce4e380cff71036e877d5e42bd6c32e911
39cca586f65d7d23c78aa5905a5132762ce171d5
build: fix ffmpeg generation on Windows non-x64 (#47768) * build: fix ffmpeg generation on Windows non-x64 * test: ffmpeg artifact
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -38,6 +38,12 @@ runs:\n run: |\n GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS target_cpu=\\\"x64\\\" v8_snapshot_toolchain=\\\"//build/toolchain/mac:clang_x64\\\"\"\n echo \"GN_EXTRA_ARGS=$GN_APPENDED_ARGS\" >> $GITHUB_ENV\n+ ...
2025-07-21T15:33:42
facebook/react
acee65d6d031697ab8c71932a5b028351cbc3b03
1ae0a845bde5b95dfc319cadf366cb7b3fb1ca92
[Flight] Track Awaits on I/O as Debug Info (#33388) This lets us track what data each Server Component depended on. This will be used by Performance Track and React DevTools. We use Node.js `async_hooks`. This has a number of downside. It is Node.js specific so this feature is not available in other runtimes until so...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -0,0 +1,41 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n...
2025-06-03T18:14:40
vercel/next.js
a91b3609d0a1fa4f6c3d8603f9b5bad9b5aa33a9
9f4eccff862c2ad048fd96f18be61e373a8ede60
Ensure Errors with deep causal chains respect inspect depth (#89594) Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: bencmbrook <7354176+bencmbrook@users.noreply.github.com>
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -501,10 +501,7 @@ export function patchErrorInspectNodeJS(\n try {\n return inspect(newError, {\n ...inspectOptions,\n- depth:\n- (inspectOptions.depth ??\n- // Default in Node....
2026-02-06T13:02:05
golang/go
8564fede8929df5bbf9f10d35ff9d3620683ca80
eecdb61eebabc083f588a349d4ce5ac2defaf2ca
cmd/go: remove reference to no longer existing -i flag The flag was removed in CL 416094. Fixes #76850 Change-Id: Ia219b4d2d8391f08487b4ff1bbec43766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/730721 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1954,7 +1954,7 @@\n //\n //\t-o file\n //\t Save a copy of the test binary to the named file.\n-//\t The test still runs (unless -c or -i is specified).\n+//\t The test still runs (unless -c is specified).\n //\t If file ends in a slash or names a...
2025-12-17T16:30:52
facebook/react
526dd340b3e77193846fe5eed02b9bb89d7c2d15
ee76351917106c6146745432a52e9a54a41ee181
[compiler][patch] Emit unary expressions instead of negative numbers (#33383) This is a babel bug + edge case. Babel compact mode produces invalid JavaScript (i.e. parse error) when given a `NumericLiteral` with a negative value. See https://codesandbox.io/p/devbox/5d47fr for repro.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1726,7 +1726,7 @@ function codegenInstructionValue(\n }\n case 'UnaryExpression': {\n value = t.unaryExpression(\n- instrValue.operator as 'throw', // todo\n+ in...
2025-06-02T15:43:45
nodejs/node
a520a39adfc5b8e9cdc1725d96516d16412a34a3
1d2b89a2a063a2d5124816ea4adf8a2e298b20d1
2025-10-15, Version 25.0.0 (Current) assert: * (SEMVER-MAJOR) move assert.fail with multiple arguments to eol (James M Snell) https://github.com/nodejs/node/pull/58532 * (SEMVER-MAJOR) move CallTracker to EOL (James M Snell) https://github.com/nodejs/node/pull/58006 assert,util: * (SEMVER-MAJOR) fail promise com...
[ { "path": "CHANGELOG.md", "patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 25](doc/changelogs/CHANGELOG_V25.md) **Current**\n * [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**\n * [Node.js 23](doc/changelogs/CHANGELOG_V23.md) End-of-Life\...
2025-09-15T20:59:44
electron/electron
39cca586f65d7d23c78aa5905a5132762ce171d5
2f4a070c39d3fa97e15ea9514a44d7800f8ec159
refactor: avoid deprecated `v8::Context::GetIsolate()` calls (pt 1) (#47760) * refactor: avoid redundant GetIsolate() calls in NodeBindings::CreateEnvironment() Xref: https://chromium-review.googlesource.com/c/v8/v8/+/6563615 * refactor: use v8::Isolate::GetCurrent() in Initialize() methods * refactor: add v8::Isol...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1856,8 +1856,8 @@ void Initialize(v8::Local<v8::Object> exports,\n v8::Local<v8::Value> unused,\n v8::Local<v8::Context> context,\n void* priv) {\n- v8::Isolate* isolate = context->GetIsolate();...
2025-07-21T14:34:38
vercel/next.js
6dece1b365f32de374e96534025ca7aa10b1d3cc
b01037d8da5b76ba61327e2284c30195d6ac293b
Fix spelling in robots.mdx documentation (#89565) This pull request makes minor documentation improvements to the `robots.mdx` API reference, correcting a typo and clarifying the description of `robots.js` route handler behavior. - Documentation clarity and typo fixes: * Corrected "Route Handlers" to "Route Handler" ...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/robots.mdx", "patch": "@@ -19,7 +19,7 @@ Sitemap: https://acme.com/sitemap.xml\n \n Add a `robots.js` or `robots.ts` file that returns a [`Robots` object](#robots-object).\n \n-> **Good to know**: `robots.js` is a special Route Handlers...
2026-02-06T09:20:05
facebook/react
ee76351917106c6146745432a52e9a54a41ee181
8b55eb4e724271206bd5dec7dba0a35aedc74493
fix typo in compiler validation filename (#33345) ## Summary While investigating the root cause of #33208, I noticed a clear typo for one of the validation files. ## How did you test this change? Inside `/react/compiler/packages/babel-plugin-react-compiler` I ran the test script successfully: <img width="415" alt=...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/index.ts", "patch": "@@ -9,7 +9,7 @@ export {validateContextVariableLValues} from './ValidateContextVariableLValues';\n export {validateHooksUsage} from './ValidateHooksUsage';\n export {validateMemoizedEffectDependencies} from './Valid...
2025-05-30T23:31:16
golang/go
516699848b7c19b2b7f80de82c66012719f6835b
8c28ab936a1042fad8531583ff7737aa361e324a
runtime/secret: warn users about allocations, loosen guarantees The discussion at #76477 warranted some stronger documentation about what is expected from users of the secret package. In addition, #76764 presented a problem about when a user can expect their secrets to be deleted. Fix by loosening the guarantee to wh...
[ { "path": "src/runtime/secret/doc.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.runtimesecret\n+\n+// Package secret contains he...
2025-12-10T10:13:05
nodejs/node
7c7f30ed17654f29293f586ad009f0f8340213d4
daf0a44669992ea2dff7f4a5b14e6f9088ce4399
deps: V8: cherry-pick 3d0f462a17ff Original commit message: [api] Add index-based module resolution in InstantiateModule() Add new InstantiateModule() overload that allows embedders to identify modules requests by index in the module requests array rather than using specifier and import attributes. W...
[ { "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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2025-09-16T16:28:29
vercel/next.js
9d9e13a2e04affd76bf40fc5e4ceadee1f02951a
a2ee2d5830c048baa456aaa699db22902aab345a
Fix a small doc typo (#89553) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Docume...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -482,7 +482,7 @@ export interface ExperimentalConfig {\n turbopackMinify?: boolean\n \n /**\n- * Enable support for `with {type: \"module\"}` for ESM imports.\n+ * Enable support for `with {type: \"bytes\"}` for ESM imports.\n */...
2026-02-05T22:24:31
electron/electron
2f4a070c39d3fa97e15ea9514a44d7800f8ec159
2b098408a8f98304edc185efe02812dbd000a85e
fix: dialog file filters and macOS app bundles (#47825)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -122,6 +122,18 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n if (ext == \"*\") {\n [content_types_set addObject:[UTType typeWithFilenameExtension:@\"*\"]];\n break;\n+ } else if (ext == \"...
2025-07-21T11:57:50
facebook/react
14094f80cbf52cad4024211080d8491f3334ef61
5717f1933f2e8b10406fde1043c3047cbfbddc82
Allow `nonce` to be used on hoistable styles (#32461) fixes https://github.com/facebook/react/issues/32449 This is my first time touching this code. There are multiple systems in place here and I wouldn't be surprised to learn that this has to be handled in some other areas too. I have found some other style-related ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -135,6 +135,13 @@ const SentMarkShellTime /* */ = 0b001000000;\n const NeedUpgradeToViewTransitions /* */ = 0b010000000;\n const SentUpgradeToViewTransitions /* */ = 0b100000000;\n \n+type NonceOpti...
2025-05-29T15:17:10
nodejs/node
170848bc1831ea9be665b527e2131c81263dfd2c
0c35aaf55f489abb55c9990d0bbeacdf4b2b0e62
module: handle null source from async loader hooks in sync hooks This relaxes the validation in sync hooks so that it accepts the quirky nullish source returned by the default step of the async loader when the module being loaded is CommonJS. When there are no customization hooks registered, a saner synchronous defaul...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -177,6 +177,7 @@ const {\n registerHooks,\n resolveHooks,\n resolveWithHooks,\n+ validateLoadStrict,\n } = require('internal/modules/customization_hooks');\n const { stripTypeScriptModuleTypes } = require('internal/modules/typescript');\n c...
2025-10-14T16:28:22
golang/go
8c28ab936a1042fad8531583ff7737aa361e324a
65b71c11d469029f755328c5e51742139f6b8686
cmd/cgo: don't emit C local if it is not used Fixes #76861 Change-Id: Icc8452e48ed736e8240f8afea18637c33b8e3ef8 Reviewed-on: https://go-review.googlesource.com/c/go/+/730600 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed...
[ { "path": "src/cmd/cgo/internal/test/issue76861.go", "patch": "@@ -0,0 +1,12 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build cgo\n+\n+package cgotest\n+\n+// Issue 43639: N...
2025-12-17T00:00:36
vercel/next.js
a2ee2d5830c048baa456aaa699db22902aab345a
6aeef8eb8918f39178c9cca0346e5ceea9b99a7d
Turbpopack: fix is_persistent_caching_enabled (#89533) The next config setting was renamed, so this was always false. So far, this was only used for telemetry.
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -275,6 +275,9 @@ pub struct ProjectOptions {\n /// Debug build paths for selective builds.\n /// When set, only routes matching these paths will be included in the build.\n pub debug_build_paths: Option<DebugBuildPaths>,\n+\n+ /// Wheth...
2026-02-05T20:37:05
rust-lang/rust
4e1fd93ab735a64c824e58fb76052b1b6194da18
375a2bb7604505bc5e8caf49b90cf3f49301a1ae
Fix not applicable on ambiguous ident pat for merge_match_arms Example --- ```rust enum X { A, B, C, } use X::*; fn main() { match A { $0A => todo!(), B => todo!(), C => todo!(), } } ``` **Before this PR** Assist not applicable **After this PR** ```rust enum X { A, ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/merge_match_arms.rs", "patch": "@@ -160,8 +160,11 @@ fn get_arm_types<'db>(\n }\n }\n ast::Pat::IdentPat(ident_pat) => {\n- if let Some(name) = ident_pat.name() {\n+ ...
2026-01-06T09:46:00