repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
vercel/next.js
15fcfb9ce4ec73c6ff8d08d72201726b983127fa
ef993b251cef0a71050515665c26cfd41cdf090f
docs: fix navigationType value and variable name in useReportWebVitals (#90599) ## For Contributors ### Improving Documentation - [x] Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - [x] Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs....
[ { "path": "docs/01-app/03-api-reference/04-functions/use-report-web-vitals.mdx", "patch": "@@ -72,7 +72,7 @@ The `metric` object passed as the hook's argument consists of a number of proper\n - `name`: The name of the performance metric. Possible values include names of [Web Vitals](#web-vitals) metrics (TT...
2026-02-27T14:10:29
facebook/react
e2332183591ff3a5657c3322a21bcdcccae32088
05b61f812a2070276c5db0d2107808a6161632fc
Track "Animating" Entry for Gestures while the Gesture is Still On-going (#34548) Stacked on #34546. Same as #34538 but for gestures. Includes various fixes. This shows how it ends with a Transition when you release in the committed state. Note how the Animation of the Gesture continues until the Transition is done...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2320,6 +2320,9 @@ export function startViewTransition(\n mutationCallback();\n layoutCallback();\n // Skip afterMutationCallback(). We don't need it since we're not animating.\n+ if (enableProfilerTimer) ...
2025-09-24T15:26:03
electron/electron
ba5f7d272f776a541bb6b8fcee292e0503c87684
6b50b5e81648814367ffa4583bbaff2b6c7c25fa
fix: rename RUNNER_NAME to MATRIX_RUNNER in disk cleanup workflow (#49120) RUNNER_NAME is a reserved environment variable in GitHub Actions. Renamed to MATRIX_RUNNER to avoid conflicts. Co-authored-by: Claude <noreply@anthropic.com>
[ { "path": ".github/workflows/macos-disk-cleanup.yml", "patch": "@@ -59,7 +59,7 @@ jobs:\n DD_API_KEY: ${{ secrets.DD_API_KEY }}\n FREE_BEFORE: ${{ steps.disk-before.outputs.free_kb }}\n FREE_AFTER: ${{ steps.disk-after.outputs.free_kb }}\n- RUNNER_NAME: ${{ matrix.runn...
2025-12-01T21:33:45
vercel/next.js
ef993b251cef0a71050515665c26cfd41cdf090f
bb813afd4957d6f3849ff7da357c5b729545783c
Use `VisitMut` instead of `Fold` for debug_instant_stack transform (#90274)
[ { "path": "crates/next-custom-transforms/src/transforms/debug_instant_stack.rs", "patch": "@@ -4,7 +4,7 @@ use swc_core::{\n common::{Span, Spanned},\n ecma::{\n ast::*,\n- visit::{Fold, fold_pass},\n+ visit::{VisitMut, visit_mut_pass},\n },\n quote,\n };\n@@ -14,7 +14,...
2026-02-27T12:47:07
nodejs/node
05d6b9b5dfba8984a5c600d5e568520aa83ca23c
9f06e7223442ad52773842271f6dc453e4eb5231
fs: fix rmSync to handle non-ASCII characters Update fs.rmSync to properly handle file paths that include non-ASCII characters. This change prevents crashes and errors when attempting to delete files with international or special characters in their names. Add a test in test/parallel to ensure that files with non-ASC...
[ { "path": "src/node_file.cc", "patch": "@@ -1634,7 +1634,7 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n THROW_IF_INSUFFICIENT_PERMISSIONS(\n env, permission::PermissionScope::kFileSystemWrite, path.ToStringView());\n- auto file_path = std::fil...
2025-12-28T01:21:49
facebook/react
e0c421ab71e26c05afe506662a4574070c13d131
2ee61475100e3d729816467c857366b37a231494
Include SyncLane in includesBlockingLane helper (#34543) This helper weirdly doesn't include the sync lane. Everywhere we use it we have to check the sync lane separately. We can simplify things by simply including the sync lane. This fixes a lack of optimization because we should not check the store consistency for...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -611,10 +611,6 @@ export function includesSyncLane(lanes: Lanes): boolean {\n return (lanes & (SyncLane | SyncHydrationLane)) !== NoLanes;\n }\n \n-export function isSyncLane(lanes: Lanes): boolean {\n- return (lanes & (SyncLane | ...
2025-09-24T13:34:35
electron/electron
06044b50f4e4abedbf7092d48bf6a0b2186b7d98
4adfc212b31d09df83416d8a8b9bfef30e002862
chore: mention quiet period in PR template (#49117) * chore: mention quiet period in PR template * fix: remove trailing spaces
[ { "path": ".github/PULL_REQUEST_TEMPLATE.md", "patch": "@@ -1,3 +1,6 @@\n+> [!IMPORTANT]\n+> Please note that code reviews and merges will be delayed during our [quiet period in December](https://www.electronjs.org/blog/dec-quiet-period-25) and might not happen until January.\n+\n #### Description of Change...
2025-12-01T16:55:13
nodejs/node
0804ec4cfefefab3dd45d05eab671999ae345ea1
ed47077736f6fdf797aa45de9e0516da5b99e690
doc: document error event on readline InterfaceConstructor Aims to document the error event introduced by cb3020d in v16.0.0. Fixes: https://github.com/nodejs/node/issues/58289 PR-URL: https://github.com/nodejs/node/pull/61170 Fixes: https://github.com/nodejs/node/issues/61037 Reviewed-By: Aviv Keller <me@aviv.sh> Re...
[ { "path": "doc/api/readline.md", "patch": "@@ -102,6 +102,17 @@ The listener function is called without passing any arguments.\n The `InterfaceConstructor` instance is finished once the `'close'` event is\n emitted.\n \n+### Event: `'error'`\n+\n+<!-- YAML\n+added: v16.0.0\n+-->\n+\n+The `'error'` event is ...
2025-12-27T16:52:40
vercel/next.js
4c6c31ad1e794834148242bcd3ca7f94de74b3ea
1c1550ca7bb6252c8f9e05edd55eca0e9ad50858
[instant] Don't add debug stack to random `unstable_instant` exports (#90273) Instead of just limiting the transform to any file within the app dir, we now restrict it to any page, default, or layout file in the app dir. This avoids having the transform applied to random modules. The inserted value would not have been...
[ { "path": "crates/next-core/src/next_shared/transforms/next_debug_instant_stack.rs", "patch": "@@ -28,8 +28,8 @@ struct NextDebugInstantStack {}\n #[async_trait]\n impl CustomTransformer for NextDebugInstantStack {\n #[tracing::instrument(level = tracing::Level::TRACE, name = \"debug_instant_stack\", sk...
2026-02-27T09:17:52
electron/electron
4adfc212b31d09df83416d8a8b9bfef30e002862
640c7bb90841b8669896712104c64d3bab09bcf7
fix: crash when attempting to resolve modules during process exit (#49090) * fix: crash when attempting to resolve modules during process exit * chore: fix build
[ { "path": "patches/node/api_remove_deprecated_getisolate.patch", "patch": "@@ -586,10 +586,10 @@ index 57e068ae249d618c2658638f9f3b03e1fedb6524..8c51ae4e0a435971c6d0288af8781087\n data_.Reset();\n return ret;\n diff --git a/src/node_modules.cc b/src/node_modules.cc\n-index eea4ba313d8dbcf7b88b79f5a3e9...
2025-11-27T09:30:09
facebook/react
24a2ba03fb2e1b59844d98a1ce68dce1e502d8ad
012b371cde3157a8dd46535839fbcda6c2bed1a0
[DevTools] fix: dedupe file fetch requests and define a timeout (#34566) If there is a large owner stack, we could potentially spam multiple fetch requests for the same source map. This adds a simple deduplication logic, based on URL. Also, this adds a timeout of 60 seconds to all fetch requests initiated by fileFetc...
[ { "path": "packages/react-devtools-extensions/src/contentScripts/fileFetcher.js", "patch": "@@ -23,7 +23,7 @@ function fetchResource(url) {\n });\n };\n \n- fetch(url, {cache: 'force-cache'}).then(\n+ fetch(url, {cache: 'force-cache', signal: AbortSignal.timeout(60000)}).then(\n response => {\n ...
2025-09-23T18:38:07
nodejs/node
9c346d22a75696b8a5f615224816542f271bf450
7786470ff50e912b16a68012456c86b611488ad7
sqlite: improve error messages for tag store When using SQLite tag store functions (sql.get`, sql.run`, etc.), preparation errors now show descriptive SQLite error messages instead of the generic 'Failed to prepare statement' message. The tag store's GetOrCreateStatement function now passes the database object to THR...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -2946,7 +2946,7 @@ BaseObjectPtr<StatementSync> SQLTagStore::PrepareStatement(\n session->database_->connection_, sql.data(), sql.size(), &s, 0);\n \n if (r != SQLITE_OK) {\n- THROW_ERR_SQLITE_ERROR(isolate, \"Failed to prepare statement\");\n+ ...
2025-12-27T00:04:05
golang/go
a01a4f98026f834311f9029573030c3e1799646b
fb0c8e16c329da6f0caafa2d5ae48e625a00b652
runtime/cgo: rename and update ppc64x and s390x croscall1 functions crosscall1 has the same signature and behavior on all platforms except for ppc64x and s390x, fix that. Cq-Include-Trybots: luci.golang.try:gotip-linux-ppc64le_power9,gotip-linux-ppc64_power8,gotip-linux-s390x Change-Id: Iead8b578a45787bb1fb2dd2dcfcb1...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -197,9 +197,9 @@ TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0\n TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0\n \tRET\n \n-// Any changes must be reflected to runtime/cgo/gcc_aix_ppc64.S:.crosscall_ppc64\n+// Any changes must be reflected to runtime/cgo...
2025-10-01T08:33:17
vercel/next.js
c0a661eef0b2d0fff52fc8ddb07f634e4b5c4287
38b69ff7093e941986af1bddd09191ecdd11f41a
[instant] Allow providing user feedback for blocking route errors (#90498)
[ { "path": "packages/next/errors.json", "patch": "@@ -1073,5 +1073,16 @@\n \"1072\": \"Missing segment data: <head>\",\n \"1073\": \"Expected static stage body to be available\",\n \"1074\": \"Page \\\"%s\\\" cannot use both \\\"use client\\\" and export const \\\"unstable_instant\\\".\",\n- \"1075\":...
2026-02-27T07:36:30
facebook/react
cad813ac1ed5c04c6ccb390a3bdf5fedbbacaa45
720bb130694169f8d1bf1e8001a2177dd18cdf92
Fix CI from stale merge (#34555)
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt", "patch": "@@ -2,4 +2,4 @@ import type { PluginOptions } from \n 'babel-plugin-react-compiler/dist';\n ({\n   //compilationMode: \"all\"\n-} satisfies Partial<PluginOptions>);\n\\ No newline at end of file\n+} s...
2025-09-23T06:49:16
electron/electron
0767b42cb85c64b827cf32ab612bd20437653eec
555f507c177b03a3e95286e48d4accbc13d82674
ci: fix import in issue opened workflow (#49095)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -56,6 +56,7 @@ jobs:\n const { chdir } = require('node:process');\n chdir('${{ github.workspace }}/.github/workflows');\n \n+ const { ElectronVersions } = require('@electron/fiddle-core');\n const { f...
2025-11-26T18:33:45
nodejs/node
732ab9d658e057af5191d4ecd156d38487509462
ae407c310989913f3faf86019b02fdbca217e333
tools,doc: fix format-md files list Adds content of doc/contributing/maintaining to the list Fixes: https://github.com/nodejs/node/issues/55216 PR-URL: https://github.com/nodejs/node/pull/61147 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Aviv Keller <me@av...
[ { "path": "vcbuild.bat", "patch": "@@ -798,6 +798,11 @@ for /D %%D IN (doc\\*) do (\n for %%F IN (%%D\\*.md) do (\n set \"lint_md_files=\"%%F\" !lint_md_files!\"\n )\n+ for /D %%S IN (%%D\\*) do (\n+ for %%F IN (%%S\\*.md) do (\n+ set \"lint_md_files=\"%%F\" !lint_md_files!\"\n+ )\n+ )\...
2025-12-24T09:53:23
vercel/next.js
38b69ff7093e941986af1bddd09191ecdd11f41a
2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52
test: Run Adapter e2e tests with Turbopack instead (#90600) <!-- 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 Cont...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -146,7 +146,7 @@ jobs:\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n test-deploy-adapter:\n- name: Run Deploy Adapter Tests\n+ name: Run Deploy Adapter Tests (Turbopack)\n needs: setup\n if:...
2026-02-27T06:22:07
golang/go
50b63f6cb90a1437ca6756ede016f1918e721da6
45929774c3d5c084cc478afba63c77cf67a68bd7
cmd/link: don't pass -Wl,-S on illumos The change in CL 707096 to exclude GOOS=solaris needs to also be applied for GOOS=illumos, which shares the same linker lineage. Fixes #77530 Change-Id: Ifc2047595af2db52870f9fb0a9faf646666d9e61 Reviewed-on: https://go-review.googlesource.com/c/go/+/746560 LUCI-TryBot-Result: G...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -426,7 +426,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linker doesn't support the -S f...
2026-02-18T14:24:18
electron/electron
555f507c177b03a3e95286e48d4accbc13d82674
1ff8e8014ab4a6e152e357b62665a7f917a6c541
fix: ensure `menu-did-close` is emitted for application menus (#49075) fix: ensure menu-did-close is emitted for application menus
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -157,7 +157,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ set...
2025-11-26T15:44:20
facebook/react
1eca9a2747bfbe9832c3ef1665642e12d7d87d1e
cd85bb561612f9da467a0cb1978afbf843d25757
[playground] Add compiler playground tests (#34528) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please m...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt", "patch": "@@ -0,0 +1,5 @@\n+import type { PluginOptions } from \n+'babel-plugin-react-compiler/dist';\n+({\n+  //compilationMode: \"all\"\n+} satisfies Partial<PluginOptions>);\n\\ No newline at end of file", ...
2025-09-22T16:11:45
golang/go
45929774c3d5c084cc478afba63c77cf67a68bd7
93b6475e1de0f055139bd0926048ee8e36aa7c42
internal/runtime/gc/scan: require popcnt for x86 The GOAMD64=v1 test disables popcnt instructions, which is a feature this package's amd64 assembly uses. Fixes #77674 Change-Id: I7be9bb665838f5da50275f96ef3df398412bb44a Reviewed-on: https://go-review.googlesource.com/c/go/+/746640 LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/internal/runtime/gc/scan/scan_amd64.go", "patch": "@@ -38,4 +38,5 @@ var avx512ScanPackedReqsMet = cpu.X86.HasAVX512VL &&\n \tcpu.X86.HasAVX512BW &&\n \tcpu.X86.HasGFNI &&\n \tcpu.X86.HasAVX512BITALG &&\n-\tcpu.X86.HasAVX512VBMI\n+\tcpu.X86.HasAVX512VBMI &&\n+\tcpu.X86.HasPOPCNT", "additi...
2026-02-18T17:09:57
nodejs/node
5e677d6e7e4a04f217ffb79fcbcdadadb02e6fa0
dc8215b90d51fafee3c8faef128d9b1e471ddf38
stream: do not pass `readable.compose()` output via `Readable.from()` PR-URL: https://github.com/nodejs/node/pull/60907 Fixes: https://github.com/nodejs/node/issues/55203 Reviewed-By: Raz Luvaton <rluvaton@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2027,7 +2027,7 @@ changes:\n description: Marking the API stable.\n -->\n \n-* `stream` {Stream|Iterable|AsyncIterable|Function}\n+* `stream` {Writable|Duplex|WritableStream|TransformStream|Function}\n * `options` {Object}\n * `signal` {AbortSignal} allows d...
2025-12-23T18:52:32
electron/electron
20c7042a20da0f1f0b5582b289da465fb34db8a7
4786e80f3314ab7e48aca1863db444932292928f
ci: don't build yarn modules for linux arm (#49031) This should fix the oom errors
[ { "path": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ARCH...
2025-11-26T09:25:16
facebook/react
d415fd3ed716f02f463232341ab21e909e0058ca
5e3cd53f20189001711f90d4db671f36d49a91f5
[Flight] Handle Lazy in `renderDebugModel` (#34536) If we don't handle Lazy types specifically in `renderDebugModel`, all of their properties will be emitted using `renderDebugModel` as well. This also includes its `_debugInfo` property, if the Lazy comes from the Flight client. That array might contain objects that a...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -4702,6 +4702,70 @@ function renderDebugModel(\n element._store.validated,\n ];\n }\n+ case REACT_LAZY_TYPE: {\n+ // To avoid actually initializing a lazy causing a side-effect, we make\n+ // ...
2025-09-19T21:38:11
golang/go
a09c908cc6e63a89a6206eadb12f8e2800326465
6fd52a57f8f88e18247b9741278a126ab65cdb47
internal/syscall/windows: correct some enums and syscall signatures This CL corrects code submitted in CL 741040. Fixes #77402 Change-Id: I1c22c1a9f77028f3c2a8e3905f2ec5b071b5445e GitHub-Last-Rev: 2bfb07310b4707484b5bdce96ad367db567741c4 GitHub-Pull-Request: golang/go#77525 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/internal/syscall/windows/at_windows_test.go", "patch": "@@ -131,7 +131,7 @@ func makeFileNotReadable(t *testing.T, name string) {\n \t\t\tInheritance: windows.SUB_CONTAINERS_AND_OBJECTS_INHERIT,\n \t\t\tTrustee: windows.TRUSTEE{\n \t\t\t\tTrusteeForm: windows.TRUSTEE_IS_SID,\n-\t\t\t\tN...
2026-02-13T18:19:04
nodejs/node
dc8215b90d51fafee3c8faef128d9b1e471ddf38
c837811bafa59896a3509d73c2dc57f3198835ca
fs: remove broken symlinks in rmSync PR-URL: https://github.com/nodejs/node/pull/61040 Fixes: https://github.com/nodejs/node/issues/61020 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -1636,7 +1636,7 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n env, permission::PermissionScope::kFileSystemWrite, path.ToStringView());\n auto file_path = std::filesystem::path(path.ToStringView());\n std::error_code error;\n- auto f...
2025-12-23T17:08:31
electron/electron
fdb7fc77948d3330b76b85199f6be492b918ec7c
e601d05cbd28a2d84e0c62bd07ea67e70564a0bd
docs: Clarify that menus use non-native styles (#45033) * docs: Clarify menus use non-native styles Addresses #42262 * empty commit to kick ci * fix: make linter happy * Strip trailing space for lint --------- Co-authored-by: George Xu <george.xu@slack-corp.com> Co-authored-by: John Kleinschmidt <jkleinsc@electr...
[ { "path": "docs/api/menu.md", "patch": "@@ -2,10 +2,15 @@\n \n ## Class: Menu\n \n-> Create native application menus and context menus.\n+> Create application menus and context menus.\n \n Process: [Main](../glossary.md#main-process)\n \n+The presentation of menus varies depending on the operating system:\n...
2025-11-25T17:27:46
facebook/react
6eda534718d09a26d58d65c0a376e05d7e2a3358
c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0
[playground] bug fixes & UX improvements (#34499) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please mak...
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -136,7 +136,7 @@ test('editor should compile from hash successfully', async ({page}) => {\n path: 'test-results/01-compiles-from-hash.png',\n });\n const text =\n- (await page.locator('.monaco-editor').nth(1).allInnerTe...
2025-09-18T19:44:25
golang/go
6fd52a57f8f88e18247b9741278a126ab65cdb47
a00f0ed521f32c704b9a5bf8886848829dd13415
crypto: don't overwrite existing GODEBUG settings Some tests set GODEBUG by calling t.Setenv("GODEBUG", "foo=bar"). This overwrites any existing GODEBUG settings, which is undesirable. Instead, append the new setting to any existing GODEBUG settings. As this operation is quite common, add a helper function testenv.Se...
[ { "path": "src/crypto/fips140/fips140_test.go", "patch": "@@ -6,46 +6,30 @@ package fips140\n \n import (\n \t\"internal/godebug\"\n-\t\"os\"\n+\t\"internal/testenv\"\n \t\"testing\"\n )\n \n func TestImmutableGODEBUG(t *testing.T) {\n-\tdefer func(v string) { os.Setenv(\"GODEBUG\", v) }(os.Getenv(\"GODEBUG...
2026-01-07T09:14:43
nodejs/node
c837811bafa59896a3509d73c2dc57f3198835ca
a385bb1d701c95b5d647666f9e5c12ca548dc124
build: add --debug-symbols to build with -g without enabling DCHECKs This is useful when debugging release builds on Linux without enabling DCHECKs. PR-URL: https://github.com/nodejs/node/pull/61100 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "configure.py", "patch": "@@ -107,6 +107,12 @@\n default=None,\n help='build the Node.js part of the binary with debugging symbols')\n \n+parser.add_argument('--debug-symbols',\n+ action='store_true',\n+ dest='debug_symbols',\n+ default=None,\n+ help='add debugging symbols to r...
2025-12-23T14:45:21
electron/electron
66367e9db497ed592a541daeadfacafa57072f15
05233b4962181e812bca3bd2cca71c27a72c6161
chore: bump chromium to 144.0.7527.0 (main) (#48959) * chore: bump chromium in DEPS to 144.0.7527.0 * 7106405: [video pip] Fix gesture handling issues https://chromium-review.googlesource.com/c/chromium/src/+/7106405 * 7130938: Reland "Remove some dependencies from the custom_handlers component" https://chromium-r...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -243,9 +243,9 @@ jobs:\n runuser -u builduser -- xvfb-run script/actions/run-tests.sh script/yarn.js test --runners=main --trace-uncaught --enable-logging --files $tests_files | $ASAN_SYMBOLIZE\n else\n ...
2025-11-24T17:30:57
facebook/react
c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0
ad578aa01fcd08488b8378c7538d802e7a1e8b26
Move `getDebugInfo` test util function to `internal-test-utils` (#34523) In an upstack PR, I need `getDebugInfo` in another test file, so I'm moving it to `internal-test-utils` so it can be shared.
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -16,6 +16,7 @@ import {\n clearErrors,\n createLogAssertion,\n } from './consoleMock';\n+export {getDebugInfo} from './debugInfo';\n export {act, serverAct} from './internalAct';\n const {assertConsoleLogsCleared} = require...
2025-09-18T19:32:36
golang/go
a00f0ed521f32c704b9a5bf8886848829dd13415
eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286
runtime/cgo: remove clang mmap bug workaround Clang 3.8 was released in 2016, that is 10 years ago. The issue that the workaround was addressing (a bug in the memory sanitizer) is no longer relevant. Change-Id: I277ea94cf1bfbc6a9da63841be8ac990c839d7b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/745662 LUC...
[ { "path": "src/runtime/cgo/gcc_unix.c", "patch": "@@ -4,9 +4,6 @@\n \n //go:build unix && !solaris\n \n-#include <signal.h>\n-#include <string.h>\n-#include <errno.h>\n #include \"libcgo.h\"\n #include \"libcgo_unix.h\"\n \n@@ -37,37 +34,9 @@ _cgo_set_stacklo(G *g)\n \t}\n }\n \n-static void\n-clang_init()\...
2026-02-15T07:43:56
nodejs/node
fb2a02f1d13e2d05157640054dd7e825fcc8c7e3
1d54921552101445928a13a9343d61c1a1aa7f59
deps: nghttp2: revert 7784fa979d0b This commit reverts "Make error handling robust". Without this revert, we are getting timeouts, crashes, and different error codes in `parallel/test-http2-*`. Refs: https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7 Refs: https://github.com/nodejs/nod...
[ { "path": "deps/nghttp2/lib/nghttp2_int.h", "patch": "@@ -52,11 +52,7 @@ typedef enum {\n * Unlike NGHTTP2_ERR_IGN_HTTP_HEADER, this does not invoke\n * nghttp2_on_invalid_header_callback.\n */\n- NGHTTP2_ERR_REMOVE_HTTP_HEADER = -106,\n- /*\n- * Cancel pushed stream.\n- */\n- NGHTTP2_ERR_PU...
2025-10-26T20:32:37
vercel/next.js
2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52
350ce78c75a6005b891765d772121a20dced4042
refactor(turbopack-node): support execution by napi and worker_threads (#86266) 1. refactor `turbopack-node` to run webpack loaders via nodejs `worker_threads` 2. the `child_proccess` loader runner is keep in the crate feature to run unit tests in `turbopack-tests` or run `turbopack-cli` 3. if wanting to switch back t...
[ { "path": "Cargo.lock", "patch": "@@ -4465,6 +4465,7 @@ dependencies = [\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-malloc\",\n+ \"turbopack-node\",\n \"turbopack-trace-utils\",\n ]\n \n@@ -4607,6 +4608,7 @@ dependencies = [\n \"turbopack-core\",\n \"turbopack-ecmascript-hmr-protoco...
2026-02-27T04:52:32
electron/electron
e4f02faa0a5e67dbae663014255862c22dd2c2ce
d890ebd9fadce3611b38a57b9caf1434e8b52f87
fix: only call popup closecallback for top-level menu (#49017)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -563,16 +563,22 @@ - (void)menuWillOpen:(NSMenu*)menu {\n }\n \n - (void)menuDidClose:(NSMenu*)menu {\n- if (isMenuOpen_) {\n- isMenuOpen_ = NO;\n- if (model_)\n- model_->MenuWillClose();\n- // Post async task so tha...
2025-11-21T15:37:46
rust-lang/rust
d10baae9ce4947706623256d4a31d588e9cfaafe
212ef7770dfad656782207fda799bdae28fc5b7b
Normalize rustc path prefix when testing `-Z track-diagnostics` Fixes https://www.github.com/rust-lang/rust/issues/154392
[ { "path": "tests/rustdoc-ui/track-diagnostics.rs", "patch": "@@ -3,6 +3,7 @@\n // Normalize the emitted location so this doesn't need\n // updating everytime someone adds or removes a line.\n //@ normalize-stderr: \".rs:\\d+:\\d+\" -> \".rs:LL:CC\"\n+//@ normalize-stderr: \"/rustc(?:-dev)?/[a-z0-9.]+/\" -> ...
2026-03-25T23:37:39
facebook/react
581321160fe0d9d9ef461174c7e14cbbed341d28
1bcdd224b10999138ef5aa1c1917b28d918e5421
[Compiler Bug] Complier mark ts instantiation expression as reorderable in build hir (#34488) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -3081,6 +3081,12 @@ function isReorderableExpression(\n return true;\n }\n }\n+ case 'TSInstantiationExpression': {\n+ const innerExpr = (expr as NodePath<t.TSInstantiationExpression>).get(\...
2025-09-18T16:34:47
golang/go
eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286
2eb890bde31495cdd90423fcfbc789351ca56ec6
internal/poll: readWriteLock should destroy the fd when there are no more references to it The read lock in readWriteLock might be holding the last reference to the fd. If the fd is closed while the read lock is still held, then the fd will not be destroyed until the read lock is released and fd.destroy is called. Th...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -269,7 +269,9 @@ func (fd *FD) readWriteLock() error {\n \t\treturn errClosing(fd.isFile)\n \t}\n \tif !fd.fdmu.rwlock(writeLock, waitLock) {\n-\t\tfd.fdmu.rwunlock(readlock) // unlock read lock acquired above\n+\t\tif fd.fdmu.rwunlock(readlock) {\n+\t...
2026-02-17T12:59:51
nodejs/node
9120924de1878e61d65eaf2d5d0d27cbe129224e
799feac6f5d2c251a3d5b1b405292f2e544c2777
util: fix nested proxy inspection Fixes: https://github.com/nodejs/node/issues/61061 PR-URL: https://github.com/nodejs/node/pull/61077 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gu...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1118,17 +1118,29 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n \n // Memorize the context for custom inspection on proxies.\n const context = value;\n+ let proxies = 0;\n // Always check for proxies to prevent side effects an...
2025-12-22T22:22:04
vercel/next.js
8430d3711962588d07a03e2808eeb3cb7d40893a
94db8c6ea79051b2605c3f19dfec027efac14e55
Fix middleware case with adapters (#90624) Follow-up to https://github.com/vercel/next.js/pull/90611 this fixes the middleware case to ensure it doesn't create a `_next/data` output. x-ref: https://github.com/vercel/next.js/actions/runs/22465910596/job/65075127711#step:34:302
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -771,7 +771,10 @@ export async function handleBuildComplete({\n pathname: rscPathname,\n id: page.name + '.rsc',\n })\n- } else if (serverPropsPages.has(pathname)) {\n+ } else if (\n+ ...
2026-02-27T02:02:15
electron/electron
79e17ce4be43864c12f6d2ee1fbce107a0a6c5e4
2200a70e8d8debc59f7d8d315b17e208393def2a
fix: exception when reading system certificates via nodejs (#49028)
[ { "path": "patches/node/.patches", "patch": "@@ -42,3 +42,4 @@ api_promote_deprecation_of_v8_context_and_v8_object_api_methods.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n reland_temporal_unflag_temporal.patch\n+src_handle_der_dec...
2025-11-21T15:35:05
nodejs/node
6157c81f4b28a0448207e0c915e4d218c5fc30c3
fc1d6d6b4c6f9c41817de09e7a37543d8067fc57
assert: use a set instead of an array for faster lookup This is a very small improvement for error creation. PR-URL: https://github.com/nodejs/node/pull/61076 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -10,6 +10,7 @@ const {\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n ObjectPrototypeHasOwnProperty,\n+ SafeSet,\n String,\n StringPrototypeRepeat,\n StringPrototypeSlice,\n@@ -42,7 +43,10 @@ const kReadableOperator = {\n const...
2025-12-15T17:18:53
facebook/react
1bcdd224b10999138ef5aa1c1917b28d918e5421
84af9085c11411e44cc5e5aee6cf00c02a78986e
[compiler] Don't show hint about ref-like naming if we infer another type (#34521) Some components accept a union of a ref callback function or ref object. In this case we may infer the type as a function due to the presence of invoking the ref callback function. In that case, we currently report a "Hint: name `fooRef...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -1816,8 +1816,16 @@ function computeSignatureForInstruction(\n }\n case 'PropertyStore':\n case 'ComputedStore': {\n+ /**\n+ * Add a hint about naming as \"ref\"/\"-Re...
2025-09-18T16:26:10
golang/go
f75c7ccaefe16a13be7ccc08731478976a6cc645
845b7b0e493c86dc2c97d157c931f8b6254e24b0
cmd/covdata: update test expectations after coverage position change CL 726800 changed cmd/cover to exclude brace tokens from coverage ranges, shifting where coverage spans start (from the opening brace to the first executable token inside the block). Update the hardcoded position expectations in TestCovTool subtests...
[ { "path": "src/cmd/covdata/tool_test.go", "patch": "@@ -414,7 +414,7 @@ func testTextfmt(t *testing.T, s state) {\n \t\tdumplines(lines[0:10])\n \t\tt.Errorf(\"textfmt: want %s got %s\", want0, lines[0])\n \t}\n-\twant1 := mainPkgPath + \"/prog1.go:13.14,15.2 1 1\"\n+\twant1 := mainPkgPath + \"/prog1.go:14....
2026-02-16T08:16:46
electron/electron
8f9637fde46c7957cd24dce12c7327a615b4fb30
5b5b24775e501fbe8da80978440a503c0ea24f21
fix: revert the parent window remained interactive after the modal window was opened (#48977)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -553,7 +553,7 @@ bool NativeWindowViews::IsFocused() const {\n }\n \n void NativeWindowViews::Show() {\n- if (is_modal() && NativeWindow::parent())\n+ if (is_modal() && NativeWindow::parent() && !widget()->IsVisible())\n static_cast<Native...
2025-11-19T17:24:12
nodejs/node
fc1d6d6b4c6f9c41817de09e7a37543d8067fc57
a968e4e672e4c60c4eebc53e2e875f6add764ea5
assert,util: fix deep comparing invalid dates skipping properties The property comparison of invalid dates regressed when starting to handle invalid dates as being equal. PR-URL: https://github.com/nodejs/node/pull/61076 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Revie...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -304,9 +304,9 @@ function objectComparisonStart(val1, val2, mode, memos) {\n }\n const time1 = DatePrototypeGetTime(val1);\n const time2 = DatePrototypeGetTime(val2);\n- if (time1 !== time2) {\n- // eslint-disable-next-line no-se...
2025-12-15T16:56:36
vercel/next.js
89f3649a00f6ed5c35949e3683e054ad509bd679
8f5afa357d8da657968117d1cf4f6663d8dbff03
Turbopack: Panic if a top-level task attempts an eventually consistent read (#89735) We've had some really bad bugs in the past, which can be hard to root-cause due to eventually-consistent reads a the top-level, e.g. https://github.com/vercel/next.js/pull/77511 Outside of tests, there's no good justification for doi...
[ { "path": "Cargo.lock", "patch": "@@ -9676,6 +9676,7 @@ dependencies = [\n \"serde\",\n \"tokio\",\n \"trybuild\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-testing\",", "additions": 1, "deletions": 0 }, { "path": "crates/next-api/src/project.rs"...
2026-02-27T00:14:30
facebook/react
e3c9656d20618ed321aea85cb3d844cbd1dce078
27b4076ab051b4d0e1ae6cec3266367294df024c
Ensure Performance Track are Clamped and Don't overlap (#34509) This simplifies the logic for clamping the start times of various phases. Instead of checking in multiple places I ensure we compute a value for each phase that is then clamped to the next phase so they don't overlap. If they're zero they're not printed. ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -636,38 +636,52 @@ export function logBlockingStart(\n ): void {\n if (supportsUserTiming) {\n currentTrack = 'Blocking';\n+ // Clamp start times\n+ if (updateTime > 0) {\n+ if (updateTime > renderStartTim...
2025-09-17T14:52:02
rust-lang/rust
1792232d01c1f4f336640c913e21bab4d0e7db78
5cf7376aac506122c466ecdb569b431636e0b5e9
fix tests/incremental/hashes
[ { "path": "tests/incremental/hashes/inherent_impls.rs", "patch": "@@ -55,7 +55,7 @@ impl Foo {\n #[cfg(not(any(cfail1,cfail4)))]\n #[rustc_clean(cfg=\"cfail2\")]\n #[rustc_clean(cfg=\"cfail3\")]\n-#[rustc_clean(cfg=\"cfail5\")]\n+#[rustc_clean(except=\"opt_hir_owner_nodes\", cfg=\"cfail5\")]\n #[rustc_clean...
2026-03-25T10:59:59
electron/electron
13e84e686814ed6b35ace75f636e30be56e5ac1d
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
fix: abort more descriptively for beforeunload (#48960)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1252,7 +1252,8 @@ Captures a snapshot of the page within `rect`. Omitting `rect` will capture the\n \n Returns `Promise<void>` - the promise will resolve when the page has finished loading\n (see [`did-finish-load`](web-contents.md#event-did-finish-load)...
2025-11-18T17:16:08
golang/go
845b7b0e493c86dc2c97d157c931f8b6254e24b0
f827b854254bec05b3a11d30886c1331a68efd7b
cmd/internal/obj: remove ARM64 prefix from encoding helpers Remove the ARM64 prefix from encoding helper functions that were moved to cmd/internal/obj to be used by both cmd/asm and cmd/compile. These functions now use the package prefix and look like: arm64.EncodeRegisterExtension and arm64.RegisterListOffset. Chang...
[ { "path": "src/cmd/asm/internal/asm/parse.go", "patch": "@@ -775,7 +775,7 @@ func (p *Parser) registerExtension(a *obj.Addr, name string, prefix rune) {\n \n \tswitch p.arch.Family {\n \tcase sys.ARM64:\n-\t\terr := arm64.ARM64RegisterExtension(a, ext, reg, num, isAmount, isIndex)\n+\t\terr := arm64.EncodeR...
2025-10-23T16:23:43
nodejs/node
472f58684055a15b465e02466548df5def4ed640
28f468a61544c8175508ee2888224e8b660f8ea8
os: freeze signals constant Remove the ability to mutate signals constant as doing so can lead to unexpected behavior, notably when spawning child process. Fixes: https://github.com/nodejs/node/issues/44749 PR-URL: https://github.com/nodejs/node/pull/61038 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: A...
[ { "path": "lib/os.js", "patch": "@@ -25,6 +25,7 @@ const {\n ArrayPrototypePush,\n Float64Array,\n ObjectDefineProperties,\n+ ObjectFreeze,\n StringPrototypeSlice,\n SymbolToPrimitive,\n } = primordials;\n@@ -330,6 +331,8 @@ module.exports = {\n machine: getMachine,\n };\n \n+ObjectFreeze(const...
2025-12-22T16:14:46
facebook/react
78997291302c42b788dafa4c12da246e44be2dda
a51f925217e7c2a92fe4df707487acb29cb12b1e
[compiler] Option to treat "set-" prefixed callees as setState functions (#34505) Calling setState functions during render can lead to extraneous renders or even infinite loops. We also have runtime detection for loops, but static detection is obviously even better. This PR adds an option to infer identifers as setSt...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -621,6 +621,13 @@ export const EnvironmentConfigSchema = z.object({\n */\n enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(true),\n \n+ /**\n+ * Treat identifiers as SetState type if both\n+ * -...
2025-09-16T22:48:27
vercel/next.js
ee885f864184e9351db29f6a590ca8c3811aece5
0db78041ad448edae78c77d9b8679bd94e7effa5
Pre-warm a single NodeJS instance when the next devserver starts (#90174) When cold-booting `next dev` on a fresh create-next-app, on the first server hit we need to fetch fonts and compile CSS, which takes up nearly half of the request time. It shouldn't be necessary to wait until the first server request to launc...
[ { "path": "Cargo.lock", "patch": "@@ -10193,9 +10193,11 @@ dependencies = [\n \"turbo-bincode\",\n \"turbo-rcstr\",\n \"turbo-tasks\",\n+ \"turbo-tasks-backend\",\n \"turbo-tasks-bytes\",\n \"turbo-tasks-env\",\n \"turbo-tasks-fs\",\n+ \"turbo-tasks-testing\",\n \"turbopack-cli-utils\",\n \"turbopac...
2026-02-26T22:40:56
electron/electron
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
530be28bc570a1d18d3c6a59ac7553638620a0f6
chore: bump node to v24.11.1 (main) (#48917) * chore: bump node in DEPS to v24.11.1 * src: add a default branch for module phase https://github.com/nodejs/node/pull/60261 * src: conditionally disable source phase imports by default https://github.com/nodejs/node/pull/60364 * chore: update patches * src: update l...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '144.0.7526.0',\n 'node_version':\n- 'v24.11.0',\n+ 'v24.11.1',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "p...
2025-11-18T14:34:51
golang/go
f65692ea562bf24c21ae46854e98584dd4bcc201
3c8b5e673816c733f13a38b1ed1f53d7d49ea084
cmd/compile: don't drop same register twice For instructions that clobber both of their input registers, make sure we don't clobber the same register twice when both input registers are the same. This is rare, but it can happen. Fixes #77604 Change-Id: I794249cf43a8cc4ab3262055daef9193e2442f73 Reviewed-on: https://...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1810,7 +1810,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\tif regspec.clobbersArg0 {\n \t\t\t\ts.freeReg(register(s.f.getHome(args[0].ID).(*Register).num))\n \t\t\t}\n-\t\t\tif regspec.clobbersArg1 {\n+\t\t\tif regspec.clobbersAr...
2026-02-14T18:04:13
vercel/next.js
0db78041ad448edae78c77d9b8679bd94e7effa5
b6d47641d7f0399a687cb927defd827b476d4441
Fix edge index page _next/data route (#90611) Fixes failing assertion with turbopack Verified against turbopack + adapter deploy test locally <img width="2076" height="1336" alt="CleanShot 2026-02-26 at 13 25 30@2x" src="https://github.com/user-attachments/assets/a8c66314-8163-4371-b02a-dc7146989425" /> x-ref: http...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -677,6 +677,11 @@ export async function handleBuildComplete({\n }\n \n const route = page.page.replace(/^(app|pages)\\//, '')\n+ const pathname = isAppPrefix\n+ ? normalizeAppPath(route)\n+ :...
2026-02-26T21:52:16
facebook/react
5e0c951b58a98feed034e2bb92f25ae6d0616855
348a4e2d44fed940313d0657ee180083d12ffc04
Add forwards fill mode to animations in view transition fixture (#34502) It turns out that View Transitions can sometimes overshoot and then we need to ensure it fills. It can otherwise sometimes flash in Chrome. This is something users might hit as well.
[ { "path": "fixtures/view-transition/src/components/Transitions.module.css", "patch": "@@ -56,10 +56,10 @@\n }\n \n ::view-transition-new(.enter-slide-right):only-child {\n- animation: enter-slide-right ease-in 0.25s;\n+ animation: enter-slide-right ease-in 0.25s forwards;\n }\n ::view-transition-old(.exit...
2025-09-16T14:20:40
nodejs/node
28f468a61544c8175508ee2888224e8b660f8ea8
26b7fd2009c348a64674da78ddda1076e74595d2
module: fix sync resolve hooks for require with node: prefixes Previously, when require()-ing builtins with the node: prefix, the sync resolve hooks were not properly invoked, and load hooks could not override the builtin's format. This fixes the handling and enables redirecting prefixed built-ins to on-disk files and...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1111,7 +1111,9 @@ function resolveForCJSWithHooks(specifier, parent, isMain) {\n filename = convertURLToCJSFilename(url);\n }\n \n- return { __proto__: null, url, format, filename, parentURL };\n+ const result = { __proto__: null, url, fo...
2025-12-22T14:35:45
electron/electron
530be28bc570a1d18d3c6a59ac7553638620a0f6
537fd7b10bd5f9045db863ceb997976e20cce1a1
fix: handle empty event scenario in ipc callbacks (#48987)
[ { "path": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate, se...
2025-11-17T20:28:25
vercel/next.js
9d13b676e8a3f8f8f8ecc35df7e2ea94ab95bbd3
2ba73b7a30686740cc6d4143c20fb39020e10494
Add `unstable_retry()` to error.js (#89685) Extends the error components API to give better control over recovery. Previously, the `reset()` prop only cleared the error state and re-rendered the children. However, this only handles a temporary rendering error. The error can be due to data fetching or an RSC phase. In...
[ { "path": "packages/next/src/client/components/builtin/global-error.tsx", "patch": "@@ -1,11 +1,13 @@\n 'use client'\n \n+import React from 'react'\n import { HandleISRError } from '../handle-isr-error'\n import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComp...
2026-02-26T20:22:27
golang/go
3c8b5e673816c733f13a38b1ed1f53d7d49ea084
6837583eec31bf197a8f16bcb431e3beb73b2aa5
cmd/compile: avoid folding 64-bit integers into 32-bit constants Folding a 64-bit integer into a 32-bit constant may result in a negative integer if the value exceeds math.MaxInt32 (the maximum value of a 32- bit signed integer). This negative value will be sign-extended to 64 bits at runtime, leading to unexpected re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -1578,7 +1578,8 @@\n \n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder...
2026-02-14T10:55:34
facebook/react
92d7ad5dd976f4b7bc22abc507569b30609b1579
67a44bcd1b09ab809cf503b39c2568212e13e1a5
[DevTools] fix: validate url in file fetcher bridging calls (#34498) This was prone to races and sometimes messed up symbolication when multiple source maps were fetched simultaneously.
[ { "path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js", "patch": "@@ -82,7 +82,7 @@ const fetchFromPage = async (url, resolve, reject) => {\n debugLog('[main] fetchFromPage()', url);\n \n function onPortMessage({payload, source}) {\n- if (source === 'react-devtools-background...
2025-09-15T17:14:09
nodejs/node
26b7fd2009c348a64674da78ddda1076e74595d2
d7e4108bc1beb7dc01890b032e7ba89d12feed4e
util: limit `inspect` to only show own properties `Error`'s `cause` and `errors` properties would be visible even if these were not own properties. This is changed to align with all other parts of the `inspect` handling. Fixes: https://github.com/nodejs/node/issues/60717 PR-URL: https://github.com/nodejs/node/pull/61...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1961,15 +1961,15 @@ function formatError(err, constructor, tag, ctx, keys) {\n }\n name ??= 'Error';\n \n- if ('cause' in err &&\n+ if (ObjectPrototypeHasOwnProperty(err, 'cause') &&\n (keys.length === 0 || !ArrayPrototypeIncludes(keys, 'ca...
2025-12-22T13:06:14
rust-lang/rust
1b724576cfda121debe1b7bdb442980a696d6726
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct Display label for Event::FetchWorkspaces The fmt::Display implementation for Event printed the wrong variant name (Event::SwitchWorkspaces) for FetchWorkspaces events, which was misleading in tracing output. Add a regression test.
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs", "patch": "@@ -92,7 +92,7 @@ impl fmt::Display for Event {\n Event::DeferredTask(_) => write!(f, \"Event::DeferredTask\"),\n Event::TestResult(_) => write!(f, \"Event::TestResult\"),\n Event::Discov...
2026-03-26T01:49:01
electron/electron
71be38f87f4f064b5f5e0ac1f6820645b07dc7f7
925966fde4ed32d11c57815fc526a0f9f2d2d28c
fix: revert enabling WASM trap handlers in all Node.js processes (#48973) Revert "fix: enable wasm trap handlers in all Node.js processes (#48788)" This reverts commit ca0b46b4130a8b48ab0b402ea16efe1ce655044f.
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,7 +62,6 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n-#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/base/l1...
2025-11-14T23:23:15
vercel/next.js
2ba73b7a30686740cc6d4143c20fb39020e10494
10725f8499d1e5dbd824931cd94da3f4c0509b7b
Fix per-segment prefetching for initial loads with Cache Components (#90610) The `S` field in the RSC payload was only set to `true` during static generation, but the client used it to determine whether a route supports per-segment prefetching (`isPPREnabled` on the route cache entry). For partially static pages with ...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -325,7 +325,7 @@ export async function hydrate(\n initialCanonicalUrlParts: initialRSCPayload.c,\n initialRenderedSearch: initialRSCPayload.q,\n initialCouldBeIntercepted: initialRSCPayload.i,\n- initialPrerendered: init...
2026-02-26T20:21:17
facebook/react
67a44bcd1b09ab809cf503b39c2568212e13e1a5
3fa927b6746a8666309ba1dc945f022b55b94b27
Playground applied configs (#34474) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure the fol...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,37 +6,41 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n+import {PluginOptions} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n import * as mona...
2025-09-15T16:13:28
nodejs/node
ed6ec9626eddee3ad00edfea4b0535bb9ee2638d
dff46c07c37f5cacc63451b84ba21478c4bbc45c
test: make buffer sizes 32bit-aware in test-internal-util-construct-sab PR-URL: https://github.com/nodejs/node/pull/61026 Fixes: https://github.com/nodejs/node/issues/61025 Refs: https://github.com/nodejs/node/pull/60497 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "test/parallel/test-internal-util-construct-sab.js", "patch": "@@ -3,16 +3,20 @@\n \n require('../common');\n const assert = require('assert');\n+const { kMaxLength } = require('buffer');\n const { isSharedArrayBuffer } = require('util/types');\n const { constructSharedArrayBuffer } = require('int...
2025-12-20T22:20:21
golang/go
6837583eec31bf197a8f16bcb431e3beb73b2aa5
c01d1f095bd8897b7bf4d9e07bd588134952e047
cmd/internal/obj/loong64: improve ARNG type register name conversion When resolving ARNG type names, the base value was not subtracted when calculating the variable simd_type, causing its actual value to not match the expected meaning after the base value adjustment. Fixes #77414 Change-Id: I713bab849ecdb5610d2593ba...
[ { "path": "src/cmd/asm/internal/arch/loong64.go", "patch": "@@ -75,48 +75,51 @@ var loong64LasxArngExtMap = map[string]int16{\n // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.\n func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex...
2026-02-06T02:09:10
vercel/next.js
10725f8499d1e5dbd824931cd94da3f4c0509b7b
4de94897443e1debb4fe298069591ef07c59db95
Allow `reset()` from user's global-error (#89684) User's `global-error.js` is within the router. There's no reason it shouldn't have access to the options available to the `error.js` component. It was already available on prod. This PR syncs dev behavior to prod. For the follow-up feature, `retry()` will also be avai...
[ { "path": "packages/next/src/client/components/builtin/global-error.tsx", "patch": "@@ -5,6 +5,7 @@ import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComponent = React.ComponentType<{\n error: any\n+ reset: () => void\n }>\n \n function DefaultGlobalError(...
2026-02-26T19:56:15
electron/electron
c896ab80fe8ad39eb87d5d4107b94f1d9afa22d4
40b673873534f4c4a7cf3cb633f977610857b773
fix: handle tar.xz files in uploaders, add to breaking changes (#48941) * fix: handle tar.xz files in uploaders, add to breaking changes * docs: add additional file extension info
[ { "path": "docs/breaking-changes.md", "patch": "@@ -20,6 +20,11 @@ Using the `clipboard` API directly in the renderer process is deprecated.\n If you want to call this API from a renderer process, place the API call in\n your preload script and expose it using the [contextBridge](https://www.electronjs.org/...
2025-11-13T21:03:24
facebook/react
3fa927b6746a8666309ba1dc945f022b55b94b27
47664deb8e981ec0425731495be1c5826ce90956
Fix some DevTools regression test actions and assertions (#34459)
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -93,7 +93,9 @@ test.describe('Components', () => {\n \n const name = isEditable.name\n ? existingNameElements[0].value\n- : existingNameElements[0].innerText;\n+ : existingNameEl...
2025-09-15T13:31:58
nodejs/node
dff46c07c37f5cacc63451b84ba21478c4bbc45c
3b7477c4d57862d587026594e2f1b5ba15a62a14
crypto: move DEP0182 to End-of-Life This commit moves support for implicitly short GCM authentication tags to End-of-Life status, thus requiring applications to explicitly specify the `authTagLength` for authentication tags shorter than 128 bits. There is quite a bit of refactoring to be done in the C++ source code. ...
[ { "path": "doc/api/crypto.md", "patch": "@@ -925,6 +925,11 @@ When passing a string as the `buffer`, please consider\n <!-- YAML\n added: v1.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61084\n+ description: Using GCM tag lengths other than 128 bits without sp...
2025-12-20T22:02:29
golang/go
c01d1f095bd8897b7bf4d9e07bd588134952e047
c186fe87686819cdf4dea49e1c556e9bc6e12e23
cmd/go: validate inferred module path for go mod init Ensure `go mod init` validates the module path even when it is inferred from GOPATH. Fixes #73121 Change-Id: I8b7785ff57eec17bba432f48c8e3a18a2f92aab5 GitHub-Last-Rev: 8ff1ca2d71bee2b948f114ad1f0a4706a4c0b152 GitHub-Pull-Request: golang/go#76432 Reviewed-on: http...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -1187,26 +1187,8 @@ func CreateModFile(loaderstate *State, ctx context.Context, modPath string) {\n \t\tif err != nil {\n \t\t\tbase.Fatal(err)\n \t\t}\n-\t} else if err := module.CheckImportPath(modPath); err != nil {\n-\t\tif pathErr, ok := err...
2025-11-24T10:16:11
vercel/next.js
891cfe69c8b4ab58c5bab398069a117a29eda879
26a382295bd6849e9f841dda32516009c0387090
Turbopack: Add Next.js version to "initialize project" trace span (#90545) ## Summary Adds the Next.js version as a `version` field on the Turbopack "initialize project" tracing span. The version is passed from the TypeScript side (`process.env.__NEXT_VERSION`) through the NAPI bindings into Rust `ProjectOptions`, wh...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -360,6 +360,9 @@ pub struct ProjectOptions {\n \n /// Whether to enable persistent caching\n pub is_persistent_caching_enabled: bool,\n+\n+ /// The version of Next.js that is running.\n+ pub next_version: RcStr,\n }\n \n #[derive(Default...
2026-02-26T17:37:15
electron/electron
40b673873534f4c4a7cf3cb633f977610857b773
05b9a5bfc70385268fcbe925a90adc1f5ef98299
test: fix types in chromium-spec (#48943)
[ { "path": "spec/chromium-spec.ts", "patch": "@@ -915,7 +915,7 @@ describe('chromium features', () => {\n \n if (action !== 'none') {\n // Make the PermissionRequestHandler behave according to action variable passed for this test\n- testSession.setPermissionRequestHandler((_w...
2025-11-13T20:25:09
nodejs/node
3b7477c4d57862d587026594e2f1b5ba15a62a14
79d695356ad4de3e8940718d43deb180d2196f76
test_runner: fix lazy `test.assert` accessor PR-URL: https://github.com/nodejs/node/pull/61097 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "lib/test.js", "patch": "@@ -62,14 +62,18 @@ ObjectDefineProperty(module.exports, 'snapshot', {\n },\n });\n \n+let lazyAssert;\n+\n ObjectDefineProperty(module.exports, 'assert', {\n __proto__: null,\n configurable: true,\n enumerable: true,\n get() {\n- const { register } = require(...
2025-12-20T18:54:32
facebook/react
68f00c901c05e3a91f6cc77b660bc2334700f163
93d7aa69b29c20529c40cf64b0afdb5d51c9ddd1
Release Activity in Canary (#34374) ## Overview This PR ships `<Activity />` to the `react@canary` release channel for final feedback and prepare for semver stable release. ## What this means Shipping `<Activity />` to canary means it has gone through extensive testing in production, we are confident in the stabili...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -1,7 +1,7 @@\n import React, {\n unstable_addTransitionType as addTransitionType,\n unstable_ViewTransition as ViewTransition,\n- unstable_Activity as Activity,\n+ Activity,\n useLayoutEffect,\n useEffect,\n useState,", ...
2025-09-12T16:47:40
golang/go
c186fe87686819cdf4dea49e1c556e9bc6e12e23
9c9412cbad09ed7fc253de3ccfeea9ca18d22943
encoding/json/v2: allow streaming JSON methods to return errors.ErrUnsupported Allow the MarshalJSONTo and UnmarshalJSONFrom methods to return errors.ErrUnsupported to be skipped in a similar manner to how the caller-specified functions can be skipped as well. Note that the v1 MarshalJSON and UnmarshalJSON methods ma...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -55,6 +55,8 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If the value type implements [MarshalerTo],\n // then the MarshalJSONTo method is called to encode the value.\n+// If the method returns [errors.Err...
2026-02-13T00:54:32
vercel/next.js
cdba5ef07ab96ef0c3d28f51dab32978a65a4af5
a8de0a004490343fc7ad6181282b3b810a17b2b4
Missing React 18 error codes (#90593) Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": "test/development/acceptance/ReactRefreshLogBox.test.ts", "patch": "@@ -118,6 +118,7 @@ describe('ReactRefreshLogBox', () => {\n if (isTurbopack) {\n await expect(browser).toDisplayRedbox(`\n {\n+ \"code\": \"E394\",\n \"description\": \"no\",\n ...
2026-02-26T15:09:59
electron/electron
05b9a5bfc70385268fcbe925a90adc1f5ef98299
b9d3f1526510d5bac8de48333f2eb0f63d8126b8
docs: fix docs for `app.isHardwareAccelerationEnabled()` (#48925)
[ { "path": "docs/api/app.md", "patch": "@@ -1218,7 +1218,7 @@ This method can only be called before app is ready.\n \n ### `app.isHardwareAccelerationEnabled()`\n \n-Returns `boolean` - whether hardware acceleration is currently disabled.\n+Returns `boolean` - whether hardware acceleration is currently enabl...
2025-11-13T19:39:59
nodejs/node
aad8c055952839392e3983830cad2114f7fa3863
41c507f56ddff2cd6e5a5509e61bfceab826d9b2
repl: fix getters triggering side effects during completion PR-URL: https://github.com/nodejs/node/pull/61043 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "lib/internal/repl/completion.js", "patch": "@@ -731,35 +731,15 @@ function includesProxiesOrGetters(expr, exprStr, evalFn, ctx, callback) {\n \n if (astProp.type === 'Literal') {\n // We have something like `obj['foo'].x` where `x` is the literal\n-\n- if (safeIsProxyAccess(obj, as...
2025-12-20T18:54:12
facebook/react
20e5431747347796b3be8312e56cef655b26ef4d
1a27af36073d7dffcc7a4284ed569af6f804747a
[Flight][Fiber] Encode owner in the error payload in dev and use it as the Error's Task (#34460) When we report an error we typically log the owner stack of the thing that caught the error. Similarly we restore the `console.createTask` scope of the catching component when we call `reportError` or `console.error`. We ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -3181,11 +3181,27 @@ function resolveErrorDev(\n 'An error occurred in the Server Components render but no message was provided',\n ),\n );\n- const rootTask = getRootTask(response, env);\n- if (rootTask != null) {\n- ...
2025-09-12T15:55:07
golang/go
770864f3b452dbd83e33e42b9659c387d03425b9
1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e
encoding/json/v2: remove SkipFunc sentinel error WARNING: This commit contains breaking changes for those already using GOEXPERIMENT=jsonv2. Existing users of SkipFunc should migrate to errors.ErrUnsupported, for which support was added in at least one prior commit. Updates #74324 Change-Id: Ifbdee39165a134a33ea000...
[ { "path": "src/encoding/json/v2/arshal_funcs.go", "patch": "@@ -19,17 +19,6 @@ import (\n \t\"encoding/json/jsontext\"\n )\n \n-// SkipFunc may be returned by [MarshalToFunc] and [UnmarshalFromFunc] functions.\n-//\n-// Any function that returns SkipFunc must not cause observable side effects\n-// on the pr...
2026-02-12T18:42:52
vercel/next.js
a8de0a004490343fc7ad6181282b3b810a17b2b4
cf7103771b15d16cb6059876385e2765e942d102
Enable `experimental.reactDebugChannel` by default (#90310) Co-authored-by: Cursor Agent <cursoragent@cursor.com>
[ { "path": ".claude/commands/pr-status.md", "patch": "@@ -99,7 +99,7 @@ Analyze PR status including CI failures and review comments.\n - `IS_WEBPACK_TEST=1` forces webpack (turbopack is default locally)\n - `NEXT_SKIP_ISOLATE=1` skips packing next.js into a separate project (hides module resolution fai...
2026-02-26T15:00:47
electron/electron
b9d3f1526510d5bac8de48333f2eb0f63d8126b8
8ecd064d2c3e378e1f874726b83f84f0350521f2
fix: crash on windows when UTF-8 is in path (#48898) In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings that `node_modules.cc` operates on from single-byte to wide strings. Unfortunately this means that `generic_path()` that the "fix: ensure TraverseParent bails on resource path exit" patch was ca...
[ { "path": "patches/node/.patches", "patch": "@@ -26,7 +26,6 @@ build_allow_unbundling_of_node_js_dependencies.patch\n build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation....
2025-11-13T18:09:34
nodejs/node
038cb750122ac94485b9337c7a6aa3284dae08c7
dc97b507d07ea3e89066e1796a5dc320f6b0cf10
doc: fix test settime docs PR-URL: https://github.com/nodejs/node/pull/61117 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -175,7 +175,7 @@ example of a state file:\n ```json\n [\n {\n- \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" },\n+ \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" }\n },\n {\n \"test.js:10:5\": { \"passed_on_at...
2025-12-20T18:11:05
facebook/react
1a27af36073d7dffcc7a4284ed569af6f804747a
0e10ee906e3ea55e4d717d4db498e1159235b06b
[playground] Update the playground UI (#34468) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make s...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt", "patch": "@@ -1,5 +1,4 @@\n-import { c as _c } from \"react/compiler-runtime\"; // \n-@compilationMode:\"all\"\n+import { c as _c } from \"react/compiler-runtime\"; // @compilationMode:\"all\"\n fun...
2025-09-12T15:43:04
golang/go
1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e
58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e
cmd/go: document PATH behavior for `go run` and `go tool` Fixes #77509 Change-Id: I1b6b38f86e4c8b18dd7638b4dd8246e2993e8307 Reviewed-on: https://go-review.googlesource.com/c/go/+/745100 Reviewed-by: Sean Liao <sean@liao.dev> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Michael Matloob <matloob@gola...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1792,6 +1792,10 @@\n // used by debuggers, to reduce build time. To include debugger information in\n // the binary, use 'go build'.\n //\n+// The go command places $GOROOT/bin at the beginning of $PATH in the\n+// subprocess environment, so that subprocesses...
2026-02-12T21:40:01
vercel/next.js
cf7103771b15d16cb6059876385e2765e942d102
2307bf6e521a6969423f7010cdd36d4210d1b7a9
Turbopack: add Xxh3Hash128Hasher (#90584) - turbo-persistence used XxHash64, which is supposed to be slower than XxHash3_64 - refactor debug_id computation to just use `rope.content_hash()` which was added in the meantime - update and adjust feature flags of `twox_hash` https://github.com/Cyan4973/xxHash says: | Hash...
[ { "path": "Cargo.lock", "patch": "@@ -9387,7 +9387,7 @@ dependencies = [\n \"tracing\",\n \"turbo-bincode\",\n \"turbo-tasks-malloc\",\n- \"twox-hash 2.1.0\",\n+ \"twox-hash 2.1.2\",\n \"zstd\",\n ]\n \n@@ -9650,7 +9650,7 @@ dependencies = [\n \"data-encoding\",\n \"sha2\",\n \"turbo-tasks-macros\",\...
2026-02-26T14:26:38
nodejs/node
dc97b507d07ea3e89066e1796a5dc320f6b0cf10
e5b6f89328cdbee35734ed5f6b69c5ee16fe14ee
util: mark proxied objects as such when inspecting them Fixes: https://github.com/nodejs/node/issues/60964 PR-URL: https://github.com/nodejs/node/pull/61029 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jame...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1180,7 +1180,13 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n return ctx.stylize(`[Circular *${index}]`, 'special');\n }\n \n- return formatRaw(ctx, value, recurseTimes, typedArray);\n+ const formatted = formatRaw(ctx, value...
2025-12-20T17:02:17
facebook/react
f3a803617ec4ba9d14bf5205ffece28ed1496a1d
fe84397e81c94a7bccdf0479994a7d0363a12115
[Flight] Ensure async info owners are outlined properly (#34465) When we emit objects of type `ReactAsyncInfo`, we need to make sure that their owners are outlined, using `outlineComponentInfo`. Otherwise we would end up accidentally emitting stashed fields that are not part of the transport protocol, specifically `de...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2384,6 +2384,11 @@ function visitAsyncNode(\n // Promise that was ultimately awaited by the user space await.\n serializeIONode(request, ioNode, awaited.promise);\n \n+ // Ensure the owner is a...
2025-09-11T16:10:25
golang/go
58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e
4dca8b3e619a321de36b99b6b514d9c01ef76e5e
cmd/link: support PIE on linux/s390x without cgo Enable PIE builds on linux/s390x when CGO is disabled by teaching the linker to handle dynamic relocations against SDYNIMPORT symbols. This adds support for TLS_IE and handles R_CALL, R_PCRELDBL, and R_ADDR relocations by generating the appropriate PLT/GOT entries inst...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1243,7 +1243,7 @@ func (t *tester) internalLinkPIE() bool {\n \t}\n \tswitch goos + \"-\" + goarch {\n \tcase \"darwin-amd64\", \"darwin-arm64\",\n-\t\t\"linux-amd64\", \"linux-arm64\", \"linux-loong64\", \"linux-ppc64le\",\n+\t\t\"linux-amd64\", \"linux-arm64...
2026-02-05T15:05:23
electron/electron
8ecd064d2c3e378e1f874726b83f84f0350521f2
511809ef63c97c1769254e5a10ffd15465abbcad
chore: bump chromium to 144.0.7526.0 (main) (#48932) * chore: bump chromium in DEPS to 144.0.7526.0 * 7138583: [Partitioned Popins Removal] IPC https://chromium-review.googlesource.com/c/chromium/src/+/7138583 * chore: fixup patch indices * 7139794: Partially remove check for global handlers in plugin mime_type co...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7522.0',\n+ '144.0.7526.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/add_didinstallco...
2025-11-13T16:09:51
vercel/next.js
7d98e0b534c8081468bbc84be61de48d885e4154
de03508d2bd834131806bf045fee1cdb04653106
[test] Include error code in Redbox snapshot (#90497)
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1558,6 +1558,7 @@ describe('ReactRefreshLogBox app', () => {\n if (isRspack) {\n await expect({ browser, next }).toDisplayRedbox(`\n {\n+ \"code\": \"E394\",\n \"description\": \...
2026-02-26T11:01:25
electron/electron
511809ef63c97c1769254e5a10ffd15465abbcad
32ae696ee04490e6076ebd90605bc28a960d405a
docs: explain how to load SF Symbols with `nativeImage` (#48908) * docs: explain how to load SF Symbols with `nativeImage` * fix: use single quotes * fix: use single quotes
[ { "path": "docs/api/native-image.md", "patch": "@@ -230,6 +230,15 @@ echo -e '#import <Cocoa/Cocoa.h>\\nint main() { NSLog(@\"%@\", SYSTEM_IMAGE_NAME);\n \n where `SYSTEM_IMAGE_NAME` should be replaced with any value from [this list](https://developer.apple.com/documentation/appkit/nsimagename?language=objc...
2025-11-13T15:41:00
facebook/react
fe84397e81c94a7bccdf0479994a7d0363a12115
b1c519f3d40932c126523dcad745ed9e06ddd636
[compiler][playground] (4/N) Config override panel (#34436) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -10,14 +10,8 @@ import type {editor} from 'monaco-editor';\n import * as monaco from 'monaco-editor';\n import React, {useState, useCallback} from 'react';\n import {Resizable} from 're-resizable';\n-import {useSnackbar} f...
2025-09-11T15:51:32