repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
facebook/react
ca12911d1fbe755b9b2b7d1bf548589317311a82
d55cc79bcf5cd3bd4cb406381b067d72842f368e
feat(eslint-plugin-react-hooks): make flat config the `recommended` config (#32457) This change swaps which config `recommended` is aliasing. In 5.2.0, the new flat config was introduced as `recommended-latest`, while `recommended` still pointed at the legacy rc-based config, with a note that in the next major version...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -1,3 +1,4 @@\n+import type {Linter} from 'eslint';\n import * as reactHooks from 'eslint-plugin-react-hooks';\n \n export default [\n@@ -12,10 +13,10 @@ export default [\n },\n },\n },\n- reactHooks.configs['recommended-latest'],\n+ ...
2025-02-28T16:22:08
nodejs/node
dbd24b165128affb7468ca42f69edaf7e0d85a9a
b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e
doc: fix `stream.md` section order For some reason, `stream.isErrored` and `stream.isReadable` sections were in between `stream.Readable` static methods sections. PR-URL: https://github.com/nodejs/node/pull/58811 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Re...
[ { "path": "doc/api/stream.md", "patch": "@@ -3050,6 +3050,44 @@ console.log(res); // prints 'HELLOWORLD'\n \n See [`readable.compose(stream)`][] for `stream.compose` as operator.\n \n+### `stream.isErrored(stream)`\n+\n+<!-- YAML\n+added:\n+ - v17.3.0\n+ - v16.14.0\n+changes:\n+ - version:\n+ - v24....
2025-06-26T12:10:39
electron/electron
b50066f420c562fd4a86b2a286cb7ff26441416d
22b7403cd1beb2aa95bec223ddd6f328c18b7f8c
fix: extension web workers net request failing (#45698)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -1074,6 +1074,12 @@ void ElectronBrowserClient::\n // reason for it, and we could consider supporting it in future.\n protocol_registry->RegisterURLLoaderFactories(factories,\n false /* all...
2025-02-19T18:08:28
vercel/next.js
8d3cbecb8b8257ed5f5c6c31edd325d1b4974505
593cef1b97c7524d786510487c6df240d7453011
bundle-analyzer: fix regression and add basic smoke test (#87010)
[ { "path": "packages/next/src/build/turbopack-analyze/index.ts", "patch": "@@ -1,3 +1,6 @@\n+import type { NextConfigComplete } from '../../server/config-shared'\n+import type { __ApiPreviewProps } from '../../server/api-utils'\n+\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib...
2025-12-11T04:13:12
facebook/react
56c7d1070aabe42b955ea0006477ea1ca02dd0c5
7e2ea902f839264fd327b0df5fae4f6ad8359952
[ci] Upload release for easier debugging (#32492) Uploads the releases that were published in case to help with debugging or verifying a dry run. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32492)...
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -117,3 +117,9 @@ jobs:\n --publishVersion=${{ inputs.version_to_publish }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry'}}\n+ ...
2025-02-28T15:58:39
nodejs/node
b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e
2e9e844d99d7880099736829f1c19b939a2436e3
lib: fix `getTypeScriptParsingMode` jsdoc PR-URL: https://github.com/nodejs/node/pull/58681 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/modules/typescript.js", "patch": "@@ -30,7 +30,7 @@ const {\n \n /**\n * The TypeScript parsing mode, either 'strip-only' or 'transform'.\n- * @type {string}\n+ * @type {function(): TypeScriptMode}\n */\n const getTypeScriptParsingMode = getLazy(() =>\n (getOptionValue('--experim...
2025-06-26T07:04:40
electron/electron
ee67bc7dcbfa9e2ac8af82ece99ee2aae2c61ada
ecd7eb36ac7ae4bc190d8bc12550cdc30c82e5d6
fix: dangling speculative frames (#45609) * fix: dangling speculative frames * harden lifecycle state checks * feedback * add const
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1792,16 +1792,20 @@ void WebContents::RenderFrameDeleted(\n // - An <iframe> is removed from the DOM.\n // - Cross-origin navigation creates a new RFH in a separate process which\n // is swapped by content::RenderFrameHostMana...
2025-02-18T22:52:05
golang/go
052c192a4cf853f0a613eacc623beca35f8c0e24
bc5ffe5c79d45447648a012465e158f29ff5efa2
runtime: fix lock rank for work.spanSPMCs.lock Currently this lock is treated like a leaf lock, but it's not one. It can acquire the globalAlloc lock via fixalloc and persistentalloc. This means we need to figure out where it can be acquired. In general, it can be acquired by any write barrier, which is already incre...
[ { "path": "src/runtime/lockrank.go", "patch": "@@ -71,6 +71,7 @@ const (\n \t// WB\n \tlockRankWbufSpans\n \tlockRankXRegAlloc\n+\tlockRankSpanSPMCs\n \tlockRankMheap\n \tlockRankMheapSpecial\n \tlockRankGlobalAlloc\n@@ -145,6 +146,7 @@ var lockNames = []string{\n \tlockRankHchanLeaf: \"hchanLeaf\...
2025-11-03T21:40:33
vercel/next.js
593cef1b97c7524d786510487c6df240d7453011
42690262d69988cd95e8317a725095f8f75f85cd
docs: remove deprecated url.parse() from custom server example (#86986) This PR updates the custom server documentation to remove usage of Node's deprecated `url.parse()` API. The example does not require URL parsing, since the `parsedUrl` argument is optional for the Next.js `RequestHandler`. Removing `url.parse()` ...
[ { "path": "docs/01-app/02-guides/custom-server.mdx", "patch": "@@ -27,9 +27,9 @@ const handle = app.getRequestHandler()\n \n app.prepare().then(() => {\n createServer((req, res) => {\n- const parsedUrl = parse(req.url!, true)\n- handle(req, res, parsedUrl)\n+ handle(req, res)\n }).listen(port)\...
2025-12-10T13:58:36
facebook/react
7e2ea902f839264fd327b0df5fae4f6ad8359952
3607f4838a8f4a87160da36aa26bb1432d7a5f11
[ci] Fix discord notification title (#32491) fun times --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32491). * #32492 * __->__ #32491
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-28T15:58:28
nodejs/node
8ba66c5e7b367d640a98265ad4b1c7d54bf8005f
a705e240b197262d5a8eee39f11797d14cfc94cb
repl: improve tab completion on computed properties improve the tab completion capabilities around computed properties by replacing the use of brittle and error prone Regex checks with more robust AST based analysis PR-URL: https://github.com/nodejs/node/pull/58775 Reviewed-By: James M Snell <jasnell@gmail.com> Revie...
[ { "path": "lib/repl.js", "patch": "@@ -1225,8 +1225,6 @@ REPLServer.prototype.setPrompt = function setPrompt(prompt) {\n const importRE = /\\bimport\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$/;\n const requireRE = /\\brequire\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$...
2025-06-26T01:50:46
golang/go
771a1dc216ff02dd23c78ada35a207a363690d11
972732b245399097e1e59aa2e35c47ef5efbf394
[dev.simd] cmd/compile: add peepholes for all masked ops and bug fixes For 512-bits they are unchanged. This CL adds the optimization rules for 128/256-bits under feature check. This CL also fixed a bug for masked load variant of instructions and make them zeroing by default as well. Change-Id: I6fe395541c0cd509984a...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1993,38 +1993,65 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSWMasked256,\n \t\tssa.OpAMD64VPABSWMasked512,\n \t\tssa.OpAMD64VPABSDMasked128,\n+\t\tssa.OpAMD64VPABSDMasked128load,\n \t\tssa.OpAMD64VPA...
2025-11-04T21:46:06
electron/electron
47572286f33f3d24eb1efdd7fec5b4fb1a5aacef
6be1151ffc4a83cc241b78e0c3a04211dfb79943
chore: bump chromium to 135.0.7015.0 (main) (#45500) * https://chromium-review.googlesource.com/c/chromium/src/+/6230977 * chore: bump chromium to 135.0.7012.0 * chore: update accelerator.patch Support parsing Ctrl+Alt shortcuts | https://chromium-review.googlesource.com/c/chromium/src/+/6238137 * 6234236: Reapply...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6998.10',\n+ '135.0.7012.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/...
2025-02-18T16:51:27
vercel/next.js
5099903e88943df679d69d81f088a2b7b699f0c6
24ccec0505c22c7cbe7c8f767e26aa56a6016e96
bundle-analyzer: add kbd shortcut labels and fix focus bugs (#87001) - Adds decorated kbd-style shortcut labels to cue the user into using them - Listens only for the appropriate OS or Ctrl key on Mac/Others - Esc now clears and focuses the search field and the treemap focus - Does not trigger in the case where the us...
[ { "path": "apps/bundle-analyzer/app/page.tsx", "patch": "@@ -1,18 +1,15 @@\n 'use client'\n \n import type React from 'react'\n-import { useEffect, useMemo, useRef, useState } from 'react'\n+import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n import { ErrorState } from '@/compo...
2025-12-10T07:36:19
facebook/react
3607f4838a8f4a87160da36aa26bb1432d7a5f11
5eb20b3007a8fafaf032c2e028c335ab09217d9f
Add Commit Scaffolding for Gestures (#32451) This adds a `ReactFiberApplyGesture` which is basically intended to be a fork of the phases in `ReactFiberCommitWork` except for the fake commit that `useSwipeTransition` does. So far none of the phases are actually implemented yet. This is just the scaffolding around them ...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -33,11 +33,6 @@ export default function SwipeRecognizer({\n });\n }\n function onScrollEnd() {\n- if (activeGesture.current !== null) {\n- const cancelGesture = activeGesture.current;\n- activeGesture.c...
2025-02-27T21:45:18
nodejs/node
a705e240b197262d5a8eee39f11797d14cfc94cb
f08e0a0fa05d36c1f131fb7a888725e2a0fa1b3c
module: convert schema-only core module on `convertCJSFilenameToURL` Co-authored-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58612 Fixes: https://github.com/nodejs/node/issues/58607 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/internal/modules/customization_hooks.js", "patch": "@@ -6,6 +6,7 @@ const {\n ArrayPrototypeSplice,\n ObjectAssign,\n ObjectFreeze,\n+ StringPrototypeSlice,\n StringPrototypeStartsWith,\n Symbol,\n } = primordials;\n@@ -126,9 +127,12 @@ function registerHooks(hooks) {\n */\n funct...
2025-06-25T16:49:56
golang/go
bc5ffe5c79d45447648a012465e158f29ff5efa2
32f8d6486f02d5820977180c52889ec72c799d58
internal/runtime/sys,math/bits: eliminate bounds checks on len8tab The compiler cannot currently determine that the accesses to len8tab are within bounds. Cast to uint8 to avoid unnecessary bounds checks. Fixes #76166 Change-Id: I1fd930bba2b20d3998252c476308642e08ce00b4 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/internal/runtime/sys/intrinsics.go", "patch": "@@ -109,7 +109,7 @@ func Len64(x uint64) (n int) {\n \t\tx >>= 8\n \t\tn += 8\n \t}\n-\treturn n + int(len8tab[x])\n+\treturn n + int(len8tab[uint8(x)])\n }\n \n // --- OnesCount ---", "additions": 1, "deletions": 1, "language": "Go" ...
2025-11-05T14:05:29
electron/electron
6be1151ffc4a83cc241b78e0c3a04211dfb79943
c0422d7cc97da03815963bf55384a8b68294999c
fix: win.closeFilePreview recreates panel when called twice (#45319) * fix: close quick look during tests on macOS * use longer delay :shrug: * fix: sharedPreviewPanel being recreated on close * test: ensure preview panel gets closed
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1596,8 +1596,11 @@ static bool FromV8(v8::Isolate* isolate,\n }\n \n void NativeWindowMac::CloseFilePreview() {\n- if ([QLPreviewPanel sharedPreviewPanelExists]) {\n+ // Need to be careful about checking [QLPreviewPanel sharedPreviewPanel] as\n...
2025-02-17T22:25:19
vercel/next.js
347c8dfaaf4afedce16fb632ec03545e0e4ecbf2
ac8d891d9517f84da3450cb0bf2df1ad167fed0f
docs: use cache debugging notes (#86937) Closes: https://github.com/vercel/next.js/issues/86896
[ { "path": "docs/01-app/03-api-reference/01-directives/use-cache.mdx", "patch": "@@ -518,6 +518,24 @@ export default function ClientComponent({ action }) {\n \n ## Troubleshooting\n \n+### Debugging cache behavior\n+\n+#### Verbose logging\n+\n+Set `NEXT_PRIVATE_DEBUG_CACHE=1` for verbose cache logging:\n+\n...
2025-12-09T20:22:51
facebook/react
5eb20b3007a8fafaf032c2e028c335ab09217d9f
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
[ci] Fix --dry not being passed correctly (#32489) Boolean params for dry runs are true if the param exists at all, so only add it if we're in dry run mode.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-27T21:01:31
nodejs/node
2bb7667475e9aad2fe95d60c0d24b1688d6c8f61
100c6da238bec44ea0b18a3df4e82080a8ae05b3
fs: move FileHandle close on GC to EOL Automatically closing a FileHandle on garbage collection has been deprecated for some time now. We've said that it will eventually be removed and become and error. PR-URL: https://github.com/nodejs/node/pull/58536 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-B...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2865,16 +2865,18 @@ To maintain existing behavior `response.finished` should be replaced with\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58536\n+ description: End-of-Life.\n - version: v14.0.0\n...
2025-05-31T19:42:27
golang/go
32f8d6486f02d5820977180c52889ec72c799d58
1c1c1942ba5b596ade56c983e0ab75f0a237ad15
runtime: document that tracefpunwindoff applies to some profilers The tracefpunwindoff GODEBUG applies to all the places where we use frame pointer unwinding. Originally that was just the execution tracer, but now we also use it for the block and mutex profilers. Change-Id: I6a6a69641fede668d96335582dba6d43e62f6a51 R...
[ { "path": "src/runtime/extern.go", "patch": "@@ -211,10 +211,11 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \treport. This also extends the information returned by runtime.Stack.\n \tSetting N to 0 will report no ancestry information.\n \n-\ttracefpunwindoff: setting t...
2025-11-06T14:40:21
electron/electron
e9ba5876d1c38de916eb7246c4011d1650d92187
02be7c11858a172eb398ea0886a27a98d06384cc
fix: osr stutter fix backport for electron. (#45572)
[ { "path": "patches/chromium/.patches", "patch": "@@ -141,3 +141,4 @@ ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n cherry-pick-dd8e2822e507.pa...
2025-02-17T21:13:44
vercel/next.js
7f5f0a69833c3e0e204cdc12d10a846154d5181f
3f19ee59f0e056241e35a7494d869b2958159cb6
enhance debug-build-paths on glob cases (#86953)
[ { "path": "packages/next/errors.json", "patch": "@@ -969,5 +969,6 @@\n \"968\": \"Invariant: getNextConfigEdge must only be called in edge runtime\",\n \"969\": \"Invariant: nextConfig couldn't be loaded\",\n \"970\": \"process.env.NEXT_DEPLOYMENT_ID is missing but runtimeServerDeploymentId is enabled...
2025-12-09T17:42:28
facebook/react
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
227e8414cc5af227b5de339cace2447d4a81c995
[ci] Prepare publish workflow (#32488) Fixes up a few things in the script and workflow to make it possible to run in CI without interactive prompts.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -12,22 +12,22 @@ on:\n description: Version to publish for the specified packages\n type: string\n only_packages:\n- description: Space separated list of packages to publish on NPM. Use this OR skip...
2025-02-27T20:24:57
golang/go
3b3d6b9e5d9898810ee13e739f3ad759ab104fdb
5f4b5f1a196774e45bc50de0729973119eb7bf07
cmd/internal/obj/arm64: shorten constant integer loads Large integer constants can take up to 4 instructions to encode. We can encode some large constants with a single instruction, namely those which are bit patterns (repetitions of certain runs of 0s and 1s). Often the constants we want to encode are *close* to th...
[ { "path": "src/cmd/asm/internal/asm/testdata/arm64.s", "patch": "@@ -400,6 +400,8 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tMOVD\t$0x11110000, R1 // MOVD\t$286326784, R1 // 2122a2d2\n \tMOVD\t$0xaaaa0000aaaa1111, R1 // MOVD\t$-6149102338357718767, R1 // 212282d24155b5f24155...
2025-11-04T23:15:16
nodejs/node
ac540c03e5e2e5350b93a1da8aa1c56fb7383bc3
22d30618d1e6d59f4dc152fa0b9820388bea3861
2025-06-24, Version 22.17.0 'Jod' (LTS) Notable changes: assert: * (SEMVER-MINOR) mark `partialDeepStrictEqual()` as stable (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370 doc: * deprecate instantiating `node:http` classes without new (Yagiz Nizipli) https://github.com/nodejs/node/pull/58518 * dep...
[ { "path": "CHANGELOG.md", "patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.16.0\">22.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.17.0\">22.17.0...
2025-06-10T18:43:50
electron/electron
02be7c11858a172eb398ea0886a27a98d06384cc
7dfcec931a31d7eada23932b6b11542708f32954
feat: add excludeUrls and modify urls in WebRequestFilter for better URL filtering (#44692) * feat: add excludeUrls to web request filter * refactor: add deprecated field * test: update tests * lint: newline * docs: improve API doc * fix: add is filter defined property to match all urls * refactor: r...
[ { "path": "docs/api/structures/web-request-filter.md", "patch": "@@ -1,4 +1,5 @@\n # WebRequestFilter Object\n \n-* `urls` string[] - Array of [URL patterns](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns) that will be used to filter out the requests that do not match ...
2025-02-17T20:40:47
vercel/next.js
3f19ee59f0e056241e35a7494d869b2958159cb6
27c24bf79258597ebf67c5f558091d3ea4f9dcaf
fix: only call `captureOwnerStack` if it exists (#86982)
[ { "path": "packages/next/src/server/node-environment-extensions/utils.tsx", "patch": "@@ -160,8 +160,8 @@ function applyOwnerStack(error: Error) {\n // via `throwIfDisallowedDynamic`.\n if (process.env.NODE_ENV !== 'production') {\n const ownerStack =\n- getClientReact()?.captureOwnerStack() ??...
2025-12-09T14:20:51
facebook/react
22e39ea72e9d10f6634ea580aaba49c2e759ef0e
25677265038b89c1ee3000e0669339ed160d9d75
Include component name in "async/await is not supported" error message if available (#32435)
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -475,10 +475,13 @@ function warnIfAsyncClientComponent(Component: Function) {\n if (!didWarnAboutAsyncClientComponent.has(componentName)) {\n didWarnAboutAsyncClientComponent.add(componentName);\n console.error(...
2025-02-25T09:48:44
golang/go
5f4b5f1a196774e45bc50de0729973119eb7bf07
0fe6c8e8c878c44d4466f07ddd0a5b2cd07650c7
runtime/msan: use different msan routine for copying __msan_memmove records the fact that we're copying memory, and actually does the copy. Use instead __msan_copy_shadow, which records the fact that we're copying memory, but doesn't actually do the copy itself. We're doing the copy ourselves, so we don't need msan t...
[ { "path": "src/runtime/msan/msan.go", "patch": "@@ -13,8 +13,6 @@ package msan\n #include <stdint.h>\n #include <sanitizer/msan_interface.h>\n \n-extern void __msan_memmove(void*, const void*, uintptr_t);\n-\n void __msan_read_go(void *addr, uintptr_t sz) {\n \t__msan_check_mem_is_initialized(addr, sz);\n }...
2025-11-08T19:11:10
nodejs/node
22d30618d1e6d59f4dc152fa0b9820388bea3861
6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9
2025-06-24, Version 24.3.0 (Current) Notable changes: doc: * add islandryu to collaborators (Shima Ryuhei) https://github.com/nodejs/node/pull/58714 fs: * (SEMVER-MINOR) allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) https://github.com/nodejs/node/pull/58490 module: * (SEMVER-M...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">24.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">2...
2025-06-24T18:48:53
rust-lang/rust
8459d6bf3a6ba46368c6649f1cc7d9ba332c9e9c
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix std doctest build for SGX target.
[ { "path": "library/std/src/os/fd/raw.rs", "patch": "@@ -16,7 +16,7 @@ use crate::io;\n use crate::os::hermit::io::OwnedFd;\n #[cfg(all(not(target_os = \"hermit\"), not(target_os = \"motor\")))]\n use crate::os::raw;\n-#[cfg(all(doc, not(target_arch = \"wasm32\")))]\n+#[cfg(all(doc, not(any(target_arch = \"w...
2026-03-12T12:14:40
electron/electron
137a5526411fc987271623eed8d80d208e1beaaa
a841d6484c9856c41df52bcd38e2a56ab9f3e4ae
fix: support for v8.setHeapSnapshotNearHeapLimit api (#45606) * fix: support for v8.setHeapSnapshotNearHeapLimit api * docs: add support
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -313,6 +313,12 @@ Set the default value of the `verbatim` parameter in the Node.js [`dns.lookup()`\n \n The default is `verbatim` and `dns.setDefaultResultOrder()` have higher priority than `--dns-result-order`.\n \n+### `--diagnostic-dir=directory...
2025-02-14T16:00:39
facebook/react
27ba5e8b1fcb5724e653caf154dcf4f9519f08f1
662957cc735a7f630b497ada45af8ff39684d2b9
Add Example of a SwipeRecognizer (#32422) Stacked on #32412. To effectively `useSwipeTransition` you need something to start and stop the gesture as well as triggering an Action. This adds an example Gesture Recognizer to the fixture. Instead of having this built-in to React itself, instead the idea is to leave this...
[ { "path": "fixtures/view-transition/src/components/Chrome.css", "patch": "@@ -1,3 +1,7 @@\n+html {\n+ touch-action: pan-x pan-y;\n+}\n+\n body {\n margin: 10px;\n padding: 0;", "additions": 4, "deletions": 0, "language": "CSS" }, { "path": "fixtures/view-transition/src/components/Pa...
2025-02-21T16:27:05
golang/go
95a0e5adc1e6c27769591de1bfaf520a3265adda
e8ed85d6c22d9530523315c3048ed0455d205bff
sync: don't call Done when f() panics in WaitGroup.Go This change is based on https://github.com/golang/go/issues/76126#issuecomment-3473417226 by adonovan. Fixes #76126 Fixes #74702 Change-Id: Ie404d8204be8917fa8a7b414bb6d319238267c83 GitHub-Last-Rev: b1beddcd725e9168d4d544a9d0322a5a6d8d65b2 GitHub-Pull-Request: go...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -236,7 +236,25 @@ func (wg *WaitGroup) Wait() {\n func (wg *WaitGroup) Go(f func()) {\n \twg.Add(1)\n \tgo func() {\n-\t\tdefer wg.Done()\n+\t\tdefer func() {\n+\t\t\tif x := recover(); x != nil {\n+\t\t\t\t// f panicked, which will be fatal because\n+\t\t\t\t...
2025-11-10T09:28:16
nodejs/node
6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9
d08513dfc7d7fe2e1d89bf5f283a30a006b990ff
module: update tests for combined ambiguous module syntax error PR-URL: https://github.com/nodejs/node/pull/55874 Fixes: https://github.com/nodejs/node/issues/55776 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -73,9 +73,16 @@ const isCommonJSGlobalLikeNotDefinedError = (errorMessage) =>\n * @param {string} url\n * @returns {void}\n */\n-const explainCommonJSGlobalLikeNotDefinedError = (e, url) => {\n+const explainCommonJSGlobalLikeNotDefinedError...
2025-06-24T21:49:31
facebook/react
5f31228d7d17f5959a99456d89a52d467ee2f329
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
[compiler][playground] Upgrade to Next 15.2.0-canary.64 (#32428) Upgrade compiler playground to use the newest nextjs release, which includes react compiler transform pipeline optimizations https://github.com/vercel/next.js/pull/75676/. Also made a drive-by fix to avoid the error `Cannot update a component ('Router')...
[ { "path": "compiler/apps/playground/components/StoreContext.tsx", "patch": "@@ -6,11 +6,10 @@\n */\n \n import type {Dispatch, ReactNode} from 'react';\n-import {useReducer} from 'react';\n+import {useEffect, useReducer} from 'react';\n import createContext from '../lib/createContext';\n import {emptyStore...
2025-02-20T17:28:34
golang/go
b76103c08e72ac34db2092d2cf1a3c1ec6adf451
47a63a331daa96de55562fbe0fa0201757c7d155
cmd/go: output missing GoDebug entries The `go help mod edit` command references the GoDebug struct, but `go mod edit -json` was not displaying them when appropriate. Fixes #75105 Change-Id: Iec987882941e01b0cf4d4fe31dda9e7a6e2dde87 Reviewed-on: https://go-review.googlesource.com/c/go/+/706757 LUCI-TryBot-Result: Go...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -584,8 +584,9 @@ func flagDropIgnore(arg string) {\n // fileJSON is the -json output data structure.\n type fileJSON struct {\n \tModule editModuleJSON\n-\tGo string `json:\",omitempty\"`\n-\tToolchain string `json:\",omitempty\"`\n+\tGo...
2025-09-25T15:07:17
nodejs/node
057b4b5d301bc26a6c011f2f32f15b54d335613c
8204eeb2686f2254932c8e5aee71389ddf7b0396
http: fix keep-alive not timing out after post-request empty line Fixes: https://github.com/nodejs/node/issues/58140 PR-URL: https://github.com/nodejs/node/pull/58178 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/_http_server.js", "patch": "@@ -918,8 +918,6 @@ function socketOnError(e) {\n }\n \n function onParserExecuteCommon(server, socket, parser, state, ret, d) {\n- resetSocketTimeout(server, socket, state);\n-\n if (ret instanceof Error) {\n prepareError(ret, parser, d);\n debug('parse...
2025-06-24T12:37:20
rust-lang/rust
23c24d2bffe202cd38d9b45c54b14984f3b55072
f6db3ef2e3234d412ce79993280b266591eb2517
fix: Clarify error messages when proc-macro-srv changes working directory I'm investigating issues where users see a load of logs of the form: ``` Failed to set the current working dir to /redacted/path. Error: Os { code: 2, kind: NotFound, message: "No such file or directory" } ``` This is tricky to debug because t...
[ { "path": "src/tools/rust-analyzer/crates/proc-macro-srv/src/lib.rs", "patch": "@@ -328,7 +328,7 @@ impl<'snap> EnvChange<'snap> {\n let prev_working_dir = std::env::current_dir().ok();\n if let Err(err) = std::env::set_current_dir(dir) {\n eprintln!(\n- ...
2026-03-12T11:43:59
facebook/react
fcb4e0f137db6efa6e180ad12dcfaabd0c590219
a84862dbdc8dada08a9d1df1c72144cd767704b6
[compiler] remove invariant to account for backedges (#32417) Fixes https://github.com/facebook/react/issues/32269, see comments for details. Added test fixture for repro
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1598,18 +1598,14 @@ function inferBlock(\n break;\n }\n case 'LoadLocal': {\n+ /**\n+ * Due to backedges in the CFG, we may revisit LoadLocal lvalues\n+ ...
2025-02-19T21:22:53
golang/go
7995751d3ae20f82cbd6ef2a893c35bb92f8d2e6
66c7ca7fb3f2e51c39b6b29c8ea9ade62cd08ec5
cmd/go: copy git reuse and support repos to hg The reuse_hg.txt is reuse_git.txt with a skip at the top and a global substitute of git->hg and fetch->pull. The prefixtagtests.txt and tagtests.txt are straight copies of the git equivalents. This is to set up a readable diff in the followup CL that turns it into a reu...
[ { "path": "src/cmd/go/testdata/script/reuse_hg.txt", "patch": "@@ -0,0 +1,483 @@\n+skip\n+\n+[short] skip\n+[!hg] skip\n+\n+env GO111MODULE=on\n+env GOPROXY=direct\n+env GOSUMDB=off\n+\n+# go mod download with the pseudo-version should invoke hg but not have a TagSum or Ref.\n+go mod download -x -json vcs-t...
2025-11-05T23:19:20
nodejs/node
d8de8f3d6b4ae5ff06b27ff041a0acd3209d1f20
5f3262add6f481f4f91075dc40885c9bd9cded15
doc: fix stability 1.x links excluding the decimal digit PR-URL: https://github.com/nodejs/node/pull/58783 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/doc/html.mjs", "patch": "@@ -206,10 +206,11 @@ function linkJsTypeDocs(text) {\n \n const isJSFlavorSnippet = (node) => node.lang === 'cjs' || node.lang === 'mjs';\n \n+const STABILITY_RE = /(.*:)\\s*(\\d(?:\\.\\d)?)([\\s\\S]*)/;\n+\n // Preprocess headers, stability blockquotes, and YAML b...
2025-06-23T22:30:45
vercel/next.js
73f507625796f83edb397626e29cff318e5a3c48
9be830659405e82e2d9a2e6a61ec196652a4fab1
docs: fix generateSitemaps returned type signature (#86984) Closes: https://github.com/vercel/next.js/issues/86959
[ { "path": "docs/01-app/02-guides/upgrading/version-16.mdx", "patch": "@@ -363,8 +363,8 @@ export async function generateSitemaps() {\n \n // Next.js 16 - asynchronous id access\n export default async function sitemap({ id }) {\n- const resolvedId = await id // id is now Promise<number>\n- const start = re...
2025-12-09T12:01:22
golang/go
5cd1b73772e339e3b460d53ba37630704a323ca7
91ca80f970c2a20d1ed6603281c97e7e617b87e8
runtime: correctly print panics before fatal-ing on defer Fixes #67792 Change-Id: I93d16580cb31e54cee7c8490212404e4d0dec446 Reviewed-on: https://go-review.googlesource.com/c/go/+/613757 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Pratt <mpratt@google.co...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1235,10 +1235,12 @@ func throw(s string) {\n //\n //go:nosplit\n func fatal(s string) {\n+\tp := getg()._panic\n \t// Everything fatal does should be recursively nosplit so it\n \t// can be called even when it's unsafe to grow the stack.\n \tprintlock() // Pre...
2024-09-17T12:10:20
facebook/react
86b191347474fa98f002217ed88926efc8164c1e
a9575dcf62e5cb6f8b1d8f738aa75ece216d9054
[compiler][be] Clean up bug test fixtures; evaluate more fixtures (#31812) Test fixtures testing different compiler features (e.g. non-auto memoization) should live in separate directories. Remove bug-prefixed fixtures that have since been fixed Add test evaluator export to more fixtures
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/call-spread.expect.md", "patch": "@@ -2,22 +2,31 @@\n ## Input\n \n ```javascript\n+import {makeArray} from 'shared-runtime';\n+\n function Component(props) {\n- const x = foo(...props.a, null, ...props.b);\n+ const x...
2025-02-18T19:25:33
electron/electron
a841d6484c9856c41df52bcd38e2a56ab9f3e4ae
2af57c4b6a8d9093f39208bda56b2527b5ea9c74
chore: bump node to v22.14.0 (main) (#45578) * chore: bump node in DEPS to v22.14.0 * src: move more crypto impl detail to ncrypto dep https://github.com/nodejs/node/pull/56421 * test: move crypto related common utilities in common/crypto https://github.com/nodejs/node/pull/56714 * module: add findPackageJSON uti...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '134.0.6998.10',\n 'node_version':\n- 'v22.13.1',\n+ 'v22.14.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language...
2025-02-14T10:05:01
nodejs/node
32be16bca2a12eb1bc8a1b9d468f7a4ec4a6522f
04cb57249adffe17fe0a4c0048dd64c4b1fc68f0
build: fix typo 'Stoage' to 'Storage' in help text PR-URL: https://github.com/nodejs/node/pull/58777 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-B...
[ { "path": "configure.py", "patch": "@@ -868,7 +868,7 @@\n action='store_true',\n dest='without_sqlite',\n default=None,\n- help='build without SQLite (disables SQLite and Web Stoage API)')\n+ help='build without SQLite (disables SQLite and Web Storage API)')\n \n parser.add_argument('--nin...
2025-06-23T15:23:47
vercel/next.js
19421c37928da8ea8758c9cfb2dea869f340ff69
78660a53864b8dfff75e8e122cc1db5e8a8d0e4b
docs: fix broken examples link (#86916) ### What? Fix broken link in the documentation pointing to the examples folder. ### Why? The previous link to the examples folder in `docs/04-community/index.mdx` was incorrect: https://github.com/vercel/next.js/tree/canary/contributing/examples This caused confusion and 404 er...
[ { "path": "docs/04-community/index.mdx", "patch": "@@ -11,7 +11,7 @@ With over 5 million weekly downloads, Next.js has a large and active community o\n There are a couple of ways you can contribute to the development of Next.js:\n \n - [Documentation](/docs/community/contribution-guide): Suggest improvement...
2025-12-08T21:12:13
golang/go
91ca80f970c2a20d1ed6603281c97e7e617b87e8
d36e88f21f56dcf45fed2231fe28f948a31c936b
runtime/cgo: improve error messages after pointer panic This CL improves the error messages after panics due to the sharing of an unpinned Go pointer (or a pointer to an unpinned Go pointer) between Go and C. This occurs when it is: 1. returned from Go to C (through cgoCheckResult) 2. passed as argument to a C functi...
[ { "path": "src/cmd/cgo/internal/testerrors/ptr_test.go", "patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -24,15 +25,16 @@ var tmp = flag.String(\"tmp\", \"\", \"use `dir` for temporary files and do no...
2025-11-05T21:00:52
nodejs/node
04cb57249adffe17fe0a4c0048dd64c4b1fc68f0
bf86e025a58e65b9f00e9e8e5698e9909fb51bbf
test: fix test-timeout-flag after revert of auto subtest wait PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "test/fixtures/test-runner/output/test-timeout-flag.js", "patch": "@@ -1,19 +1,39 @@\n-// Flags: --test-timeout=20\n 'use strict';\n-const { describe, test } = require('node:test');\n-const { setTimeout } = require('node:timers/promises');\n+const { describe, it, after } = require('node:test');\n+...
2025-05-14T14:07:04
vercel/next.js
78660a53864b8dfff75e8e122cc1db5e8a8d0e4b
0e973f71f133f4a0b220bbf1e3f0ed8a7c75e00d
Add gitignore note for next-env.d.ts (#86809) <!-- 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 ### ...
[ { "path": "docs/01-app/01-getting-started/02-project-structure.mdx", "patch": "@@ -31,22 +31,22 @@ Top-level folders are used to organize your application's code and static assets\n \n Top-level files are used to configure your application, manage dependencies, run proxy, integrate monitoring tools, and def...
2025-12-08T10:36:09
facebook/react
d99f8bba2e07e3bb953f0821d4da5e341136fe5c
8a7b487e3b171c91f2fe18e9142af53f4dd83454
[compiler] Delete LoweredFunction.dependencies and hoisted instructions (#32096) LoweredFunction dependencies were exclusively used for dependency extraction (in `propagateScopeDeps`). Now that we have a `propagateScopeDepsHIR` that recursively traverses into nested functions, we can delete `dependencies` and their...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -7,7 +7,6 @@\n \n import {NodePath, Scope} from '@babel/traverse';\n import * as t from '@babel/types';\n-import {Expression} from '@babel/types';\n import invariant from 'invariant';\n import {\n CompilerError,\n@...
2025-02-18T16:32:49
electron/electron
2af57c4b6a8d9093f39208bda56b2527b5ea9c74
47dbab3856d1a33b8de51e8c189827ef3a6359ea
fix: osr crash on window close (#45573)
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -208,8 +208,8 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n compositor_->SetRootLayer(root_layer_.get());\n \n ResizeRootLayer(false);\n+\n render_widget_host_->SetView(this);\n- render_widget_host_->rende...
2025-02-14T10:01:00
golang/go
43b91e7abd1c3b84c919c97bca30480d2610f9ec
48c7fa13c63761c8b52cbfac1f9eab062d475c0c
iter: fix a tiny doc comment bug Use the right name for method Pos.Value in a sample doc comment in the package overview. Fixes #76187. Change-Id: Id1f5b0ca4ea39493b10140bc304c57c081c805ee GitHub-Last-Rev: 7bf5d0774749111cd13e40700b31a5a83c288db9 GitHub-Pull-Request: golang/go#76195 Reviewed-on: https://go-review.go...
[ { "path": "src/iter/iter.go", "patch": "@@ -188,7 +188,7 @@ For example, a tree implementation might provide:\n \t// It is only valid during the yield call it is passed to.\n \ttype Pos[V any] struct { ... }\n \n-\t// Pos returns the value at the cursor.\n+\t// Value returns the value at the cursor.\n \tfun...
2025-11-06T05:18:46
nodejs/node
bf86e025a58e65b9f00e9e8e5698e9909fb51bbf
9a1c0bc07adbdc6b298b3585a7f46dd46c3d01e0
Revert "test_runner: remove promises returned by t.test()" This reverts commit 1a2eb15bc610926789a8a3a002ec722c39768c20. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.n...
[ { "path": "doc/api/test.md", "patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- t.test('subtest 1', (t) => {\n+ await t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- t.test('subtest 2', (t) => {\n+ await t.te...
2025-05-11T17:23:20
vercel/next.js
3c2fc61bdb8e55eb8671b4152921b336bdf9ceb9
3bb0bcbf82311538ab1f34184c766e397a7373f5
Fix validateTurboNextConfig running for next start (#86886) This fixes `validateTurboNextConfig` running during `next start` which was caught due to the wrong `phase` being provided to `workflows` config wrapper. We shouldn't run extra validation during `next start` as this needs to boot as fast as possible and would...
[ { "path": "packages/next/src/build/turbopack-analyze/index.ts", "patch": "@@ -8,6 +8,7 @@ import { getSupportedBrowsers } from '../utils'\n import { normalizePath } from '../../lib/normalize-path'\n import type { NextConfigComplete } from '../../server/config-shared'\n import type { __ApiPreviewProps } from...
2025-12-05T22:23:11
facebook/react
4632e36a4ef16a1af24987c56e42b664f6403e64
eb1f77dedfc8f7491ecd39b160e4743fa39dfc99
refactor(eslint-plugin-react-hooks): change array type and improve conditionals (#32400) - [build(eslint-plugin-react-hooks): add ts-linting](https://github.com/facebook/react/commit/4c0fbe73d9abc2681445f62b9450737f3df12ee2) This change adds configuration to the eslint config governing `eslint-plugin-react-hooks` to u...
[ { "path": ".eslintrc.js", "patch": "@@ -446,10 +446,7 @@ module.exports = {\n },\n },\n {\n- files: [\n- 'scripts/eslint-rules/*.js',\n- 'packages/eslint-plugin-react-hooks/src/*.js',\n- ],\n+ files: ['scripts/eslint-rules/*.js'],\n plugins: ['eslint-plugin']...
2025-02-17T01:28:12
electron/electron
47dbab3856d1a33b8de51e8c189827ef3a6359ea
a1e4550c9e5b2b220530a9238795286bd028dbfb
fix: pointer lock permission after focus loss and regain (#45574)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1608,6 +1608,12 @@ void WebContents::LostPointerLock() {\n ->ExitExclusiveAccessToPreviousState();\n }\n \n+bool WebContents::IsWaitingForPointerLockPrompt(\n+ content::WebContents* web_contents) {\n+ return exclusive_access...
2025-02-14T09:22:13
nodejs/node
9a1c0bc07adbdc6b298b3585a7f46dd46c3d01e0
7a0c74b4eadca323a376abc9daa2c7d1cb76ef91
Revert "test_runner: remove promises returned by test()" This reverts commit 96718268fec7e7f1c6156ff9a57899a5cd1487cc. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.nam...
[ { "path": "doc/api/test.md", "patch": "@@ -1472,11 +1472,6 @@ run({ files: [path.resolve('./tests/test.js')] })\n added:\n - v22.0.0\n - v20.13.0\n-changes:\n- - version:\n- - v24.0.0\n- pr-url: https://github.com/nodejs/node/pull/56664\n- description: This function no longer returns a `Promis...
2025-05-11T17:22:38
vercel/next.js
6169e786020b63e101cc09285e1277e278cd34b8
7c969652ad589a62b7d2a90523d919d8a0583192
Fix required-server-files (#86875) Fixes a regression in https://github.com/vercel/next.js/pull/86830 `config.distDir` was missing <img width="1622" height="475" alt="Bildschirmfoto 2025-12-05 um 17 50 43" src="https://github.com/user-attachments/assets/6460801d-949e-441b-a7d3-6fb679f22d83" />
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1931,17 +1931,22 @@ export default async function build(\n \n if (hasInstrumentationHook) {\n serverFilesManifest.files.push(\n- path.join(SERVER_DIRECTORY, `${INSTRUMENTATION_HOOK_FILENAME}.js`)\n+ p...
2025-12-05T17:26:06
golang/go
f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3
8cf7a0b4c956aad5a8b98efde8ea6b7cde173902
cmd/compile: fix error message on loong64 Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5 Reviewed-on: https://go-review.googlesource.com/c/go/+/717700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Meidan Li <l...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t// vs\n \t\t\t// 16 instructions in the straightline code\n \t\t\t// Might as well use straightline code.\n-\t\t\tv.Fatalf(\"ZeroLoop size too small %d\", n)\n...
2025-11-04T09:22:24
facebook/react
5adf40208f4a2f56bda5c059d18ce578c5091dab
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
feat(eslint-plugin-react-hooks): convert to typescript and package type declarations (#32240) <!-- 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": "packages/eslint-plugin-react-hooks/babel.config.js", "patch": "@@ -0,0 +1,8 @@\n+/**\n+ * This file is purely being used for local jest runs, and doesn't participate in the build process.\n+ */\n+'use strict';\n+\n+module.exports = {\n+ extends: '../../babel.config-ts.js',\n+};", "additions"...
2025-02-16T19:10:54
nodejs/node
7a0c74b4eadca323a376abc9daa2c7d1cb76ef91
af6657494bb956c129e4aea4c11df20f6e328954
Revert "test_runner: automatically wait for subtests to finish" This reverts commit aa3523ec22c95dfb11ef93c8333ced41cd431f89. PR-URL: https://github.com/nodejs/node/pull/58282 Fixes: https://github.com/nodejs/node/issues/58227 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@ci...
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -28,8 +28,6 @@ const {\n setupGlobalSetupTeardownFunctions,\n } = require('internal/test_runner/utils');\n const { queueMicrotask } = require('internal/process/task_queues');\n-const { TIMEOUT_MAX } = require('internal/timers');\n-const { clear...
2025-05-11T17:19:04
electron/electron
aa06b065c06e2e7fa1ac88e402d9113ca9c1bc39
9f47c9a0513aae375729dd2c97f2bb10bcd8b8c0
chore: bump chromium to 134.0.6998.10 (main) (#45564) * chore: bump chromium to 134.0.6992.0 * chore: add BrowserProcessImpl::CreateGlobalFeaturesForTesting() stub Xref: https://chromium-review.googlesource.com/c/chromium/src/+/6216193 Remove GlobalFeatures from TestingBrowserProcess::Init * chore: bump ch...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6990.0',\n+ '134.0.6998.10',\n 'node_version':\n 'v22.13.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patch...
2025-02-11T23:26:39
vercel/next.js
b2cc3a20cf0e41483594069b11820d26351a6c7f
3606db59ded25e8d738c035d41ca3131cdf20535
Turbopack: fix race condition when invalidating (#86859) ### What? Fixes a race condition where invalidations got lost, especially after restoring from persistent cache. Theoretically when executing a task again we would remove all dependencies and they would be slowly added again while outputs/cells are read du...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2176,15 +2176,17 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n span.record(\"result\", \"once task\");\n continue;\n }\n+ let mut make_stale = true;\n ...
2025-12-05T14:08:39
golang/go
8cf7a0b4c956aad5a8b98efde8ea6b7cde173902
2dd7e94e163f172472273b81846e6e3add412bc6
cmd/link: support weak binding on darwin Symbols loaded from host files can have the N_WEAK_REF bit set, which is used to instruct the loader to not fail if that symbol can't be resolved. The Go internal linker should honor this information by setting the BIND_SYMBOL_FLAGS_WEAK_IMPORT flag in the corresponding bind t...
[ { "path": "src/cmd/cgo/internal/test/cgo_darwin_test.go", "patch": "@@ -0,0 +1,11 @@\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 && darwin\n+\n+package cgotest\n+\n+im...
2025-10-22T14:33:18
golang/go
2dd7e94e163f172472273b81846e6e3add412bc6
28f1ad5782d80a0a3f95b004c6a822003fd0b1a1
cmd/go: use go.dev instead of golang.org in flag errors Also add the URL to the one possible error that didn't have it. It looks like CL 93836 just missed the third error case when adding the URL. Change-Id: I837f8a730b25adb42909c9dfbde0dad2f664fec5 Reviewed-on: https://go-review.googlesource.com/c/go/+/718220 Review...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -375,13 +375,13 @@ Args:\n \t\t\t\t}\n \n \t\t\t\tif i+1 < len(list) {\n-\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s: %s %s (see https://golang.org/s/invalidflag)\", source, arg, list[i+1])\n+\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s...
2025-11-05T20:02:52
nodejs/node
dcfdaab13aa674d88712ca853551fb432dcc77c8
910a8af2d2bc028976f997baf7f7910b9eef30f2
repl: avoid deprecated `require.extensions` in tab completion PR-URL: https://github.com/nodejs/node/pull/58653 Fixes: https://github.com/nodejs/node/issues/58641 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gma...
[ { "path": "lib/repl.js", "patch": "@@ -1359,7 +1359,7 @@ function complete(line, callback) {\n filter = completeOn;\n if (this.allowBlockingCompletions) {\n const subdir = match[2] || '';\n- const extensions = ObjectKeys(this.context.require.extensions);\n+ const extensions = ObjectK...
2025-06-23T06:21:47
electron/electron
46d316692d79aa988f1bb29c198da099d5221bbd
2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c
fix: asan build on macOS (#45541) * fix: asan build on macOS * chore: fix build
[ { "path": "patches/node/.patches", "patch": "@@ -38,3 +38,4 @@ build_use_third_party_simdutf.patch\n fix_remove_fastapitypedarray_usage.patch\n test_handle_explicit_resource_management_globals.patch\n linux_try_preadv64_pwritev64_before_preadv_pwritev_4683.patch\n+build_remove_explicit_linker_call_to_libm_o...
2025-02-11T06:04:07
vercel/next.js
551b32d8fc26f801a396391c002eea06ab963c31
45f0c79076d3e8280666aaeaab77eeebb12049b4
[test] Fix external rewrite target URL origin (#86863) Switching to the assigned custom domain because the project has now Standard Protection enabled, which requires authentication for all other deployments. [x-ref](https://github.com/vercel/next.js/actions/runs/19954917697/job/57223360201)
[ { "path": "test/e2e/skip-trailing-slash-redirect/app/middleware.js", "patch": "@@ -35,11 +35,11 @@ export default function handler(req) {\n }\n \n console.log(\n- `rewriting to https://middleware-external-rewrite-target-epsp8idgo-uncurated-tests.vercel.app${pathname}`\n+ `rewriting to http...
2025-12-05T09:39:52
rust-lang/rust
675290a40d580f5063bad9ec24ed3a94da96339b
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix that `./x test --no-doc` actually keeps the same behaviour for backwards compatability
[ { "path": "src/bootstrap/src/core/config/flags.rs", "patch": "@@ -570,16 +570,21 @@ impl Subcommand {\n \n pub fn test_target(&self) -> TestTarget {\n match *self {\n- Subcommand::Test { all_targets, doc, tests, .. }\n- | Subcommand::Miri { all_targets, doc, tests, .. } => ...
2026-03-11T16:29:12
facebook/react
037b25cfdcd18deea0e1c6c2e8d2548dbf32f7f3
0d9834caeb3b334eaa1be45f136499f51303e7d3
test(eslint): create eslint test fixtures (#32396)
[ { "path": "fixtures/eslint-v6/.eslintrc.json", "patch": "@@ -1,15 +1,14 @@\n {\n \"root\": true,\n+ \"extends\": [\"plugin:react-hooks/recommended-legacy\"],\n \"parserOptions\": {\n- \"ecmaVersion\": 8,\n+ \"ecmaVersion\": 2020,\n \"sourceType\": \"module\",\n \"ecmaFeatures\": {\n ...
2025-02-16T18:23:44
golang/go
28f1ad5782d80a0a3f95b004c6a822003fd0b1a1
daa220a1c952b50a05a3a9411f122689247881b8
cmd/go: fix TestScript/govcs On my Mac, TestScript/govcs was failing because hg prints a URL using 1.0.0.127.in-addr.arpa instead of 127.0.0.1, and my Mac cannot resolve that name back into an IP address. % host 127.0.0.1 1.0.0.127.in-addr.arpa domain name pointer localhost. % host 1.0.0.127.in-addr.arpa % Change-Id...
[ { "path": "src/cmd/go/internal/vcweb/hg.go", "patch": "@@ -109,6 +109,13 @@ func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.\n \t\t\twg.Done()\n \t\t}()\n \n+\t\t// On some systems,\n+\t\t// hg serve --address=localhost --print-url prints in-addr.arpa hostnames\n+\t\t// even ...
2025-11-05T19:46:35
electron/electron
2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c
f5025b624670e5039d7736c82be2e1ce0743fac8
docs: fix grammar in preload tutorial summary (#45522)
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -252,7 +252,7 @@ apps often use the preload script to set up inter-process communication (IPC) in\n to pass arbitrary messages between the two kinds of processes.\n \n In the next part of the tutorial, we will be showing you resources on adding m...
2025-02-10T21:15:32
rust-lang/rust
06704919507893e4e26a3fc0adf5aefaf0356199
d1ee5e59a964a419b84b760812a35075034f4861
Don't add empty target features for target-cpu=native on macOS LLVM does not support host feature detection (only host cpu detection) on apple platforms. As such, the returned feature string will be empty. Adding this empty string to the target-features attribute results in a verifier error on LLVM 22. Fix this by no...
[ { "path": "compiler/rustc_codegen_llvm/src/llvm_util.rs", "patch": "@@ -702,7 +702,9 @@ pub(crate) fn global_llvm_features(sess: &Session, only_base_features: bool) ->\n \n features_string\n };\n- features.extend(features_string.split(',').map(String::from));\n+ ...
2026-03-12T08:52:53
vercel/next.js
45f0c79076d3e8280666aaeaab77eeebb12049b4
6ff2d98c3823974991b4f98ddc066559f1b3de44
Introduce NextConfigRuntime (#86812) To only include the keys we actually at runtime in the server in `required-server-files.json` and in `.next/standalone/server.js` There is some chance I missed some property that's needed at runtime (and is incorrectly filtered out by `getNextConfigRuntime`)
[ { "path": "packages/next/errors.json", "patch": "@@ -964,5 +964,6 @@\n \"963\": \"Fast setImmediate is not available in the edge runtime.\",\n \"964\": \"An unexpected error occurred while starting to capture immediates\",\n \"965\": \"Expected setImmediate to reject invalid arguments\",\n- \"966\": ...
2025-12-05T09:24:48
facebook/react
cbbe8666a8d6e6f1b81dffb11bd5d767e4acd6ac
e0131f1edae0fc411bf8abb2fed211ca07af60fe
fix value formatting of proxies of class instances (#30880) For Hookstate Proxies of class instances, `data.constructor.name` returns `Proxy({})`, so use `Object.getPrototypeOf(data).constructor.name` instead, which works correctly from my testing. <!-- Thanks for submitting a pull request! We appreciate you...
[ { "path": "packages/react-devtools-shared/src/utils.js", "patch": "@@ -915,7 +915,25 @@ export function formatDataForPreview(\n case 'date':\n return data.toString();\n case 'class_instance':\n- return data.constructor.name;\n+ try {\n+ let resolvedConstructorName = data.const...
2025-02-13T12:04:53
nodejs/node
d7becc58750096b711c55a378a55f596a45f3ce1
dfcb824ae3e7752abf3c809a3f226cb21dd2187a
test: deflake test-buffer-large-size-buffer-alloc-unsafe Use the error message as another condition to skip the test when the buffer allocation fails. Refs: https://github.com/nodejs/node/pull/58738 PR-URL: https://github.com/nodejs/node/pull/58771 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Chengzhong...
[ { "path": "test/pummel/test-buffer-large-size-buffer-alloc-unsafe.js", "patch": "@@ -7,12 +7,22 @@ common.skipIf32Bits();\n const assert = require('node:assert');\n const size = 2 ** 31;\n \n+let largeBuffer;\n+\n+// Test Buffer.allocUnsafe with size larger than integer range\n try {\n- // Test Buffer.allo...
2025-06-22T09:43:35
electron/electron
f5025b624670e5039d7736c82be2e1ce0743fac8
e055ce7c39c80e38321769df78b7323b9a00e52b
fix: avoid IPC for renderer `webFrame.getZoom...` APIs (#45499) * fix: avoid IPC for renderer `webFrame.getZoom...` APIs * Remove `DoGetZoomLevel` IPC * Fix synchronous behavior & nullptr deref * Use local root
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3693,12 +3693,6 @@ void WebContents::SetTemporaryZoomLevel(double level) {\n zoom_controller_->SetTemporaryZoomLevel(level);\n }\n \n-void WebContents::DoGetZoomLevel(\n- electron::mojom::ElectronWebContentsUtility::DoGetZoomLeve...
2025-02-10T21:09:11
rust-lang/rust
5064056dd3971930ad83eaaccf91f1561a274f0d
d1ee5e59a964a419b84b760812a35075034f4861
interpreter error reporting: remove arguments that are always the same
[ { "path": "compiler/rustc_const_eval/src/const_eval/error.rs", "patch": "@@ -8,7 +8,7 @@ use rustc_middle::mir::interpret::{\n use rustc_middle::query::TyCtxtAt;\n use rustc_middle::ty::ConstInt;\n use rustc_middle::ty::layout::LayoutError;\n-use rustc_span::{Span, Symbol};\n+use rustc_span::{DUMMY_SP, Span...
2026-03-09T15:15:38
facebook/react
e0131f1edae0fc411bf8abb2fed211ca07af60fe
5a78dd7cfec4217c1feb89ee6312c13f40b01aed
fix(devtools): Handle nullish values passed to `formatConsoleArguments` (#32372) <!-- 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 ...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -470,5 +470,14 @@ function f() { }\n {},\n ]);\n });\n+\n+ it('formats nullish values', () => {\n+ expect(formatConsoleArguments('This is the %s template', null)).toEqual([\n+ 'This is the n...
2025-02-13T12:02:55
golang/go
daa220a1c952b50a05a3a9411f122689247881b8
3ae9e950021d79134146a751531f151a1f02d9bd
cmd/go: silence TLS handshake errors during test We don't need to see messages like "TLS handshake error: EOF" during go test. Change-Id: If6bf51e655119914f337b9e61448c99485af34f2 Reviewed-on: https://go-review.googlesource.com/c/go/+/718183 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUC...
[ { "path": "src/cmd/go/internal/vcweb/vcstest/vcstest.go", "patch": "@@ -7,6 +7,7 @@\n package vcstest\n \n import (\n+\t\"bytes\"\n \t\"cmd/go/internal/vcs\"\n \t\"cmd/go/internal/vcweb\"\n \t\"cmd/go/internal/web/intercept\"\n@@ -70,7 +71,9 @@ func NewServer() (srv *Server, err error) {\n \t\t}\n \t}()\n \...
2025-11-05T19:45:36
nodejs/node
dfcb824ae3e7752abf3c809a3f226cb21dd2187a
eafbe277b00d3a0f37252c7fe6d7a354c31efed1
tools: make nodedownload module compatible with Python 3.14 FancyURLopener and URLopener have been deprecated since Python 3.3 and they are removed completely from 3.14. Fixes: https://github.com/nodejs/node/issues/58740 PR-URL: https://github.com/nodejs/node/pull/58752 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>...
[ { "path": "tools/configure.d/nodedownload.py", "patch": "@@ -7,10 +7,7 @@\n import zipfile\n import tarfile\n import contextlib\n-try:\n- from urllib.request import FancyURLopener, URLopener\n-except ImportError:\n- from urllib import FancyURLopener, URLopener\n+from urllib.request import build_opener...
2025-06-22T05:49:14
vercel/next.js
b35713c4b5aa922fef5442d002d43c72b7d13838
dfb0b8e6e489a4640c984797cac76e2dd90e61a3
Turbopack: bincode: Use bincode to store the contents of value cells (#86338) This PR switches `turbo-tasks-backend` to use `bincode` instead of serde for cell contents. To keep PR size manageable, `TaskInput`s are still serialized using serde and a compatibility shim. The next PR fixes that. See https://github.com/v...
[ { "path": ".cargo/config.toml", "patch": "@@ -73,4 +73,4 @@ rustflags = [\n linker = \"arm-linux-gnueabihf-gcc\"\n \n [target.wasm32-unknown-unknown]\n-rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file\n+rustflags = [\"-Zshare-generics=y\", \"--cf...
2025-12-05T06:36:23
electron/electron
70168c8bdcafcbf70b33230cbf9fdc82a969870a
e4cd162433927de69943fab3ad13bd9b9c396ec6
fix: fix mksnapshot gen/v8 path (#45488) * fix: fix mksnapshot gen/v8 path * build: use 7z compression * build: unzip mksnapshot on Windows and update zip * chore: escape backslashes * chore: try another attempt * chore: remove rmdir for now --------- Co-authored-by: John Kleinschmidt <jkleinsc@el...
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -108,7 +108,9 @@ runs:\n if [ \"${{ inputs.target-platform }}\" = \"win\" ]; then\n cd out/Default\n powershell Compress-Archive -update mksnapshot_args mksnapshot.zip\n- powershell Compress-Archive -upd...
2025-02-10T15:21:29
rust-lang/rust
cfcbcb715c5120e481b2d1303b590a5eb2417e55
d1ee5e59a964a419b84b760812a35075034f4861
fix(query): Pass query key to value_from_cycle_error Co-authored-by: Daria Sukhonina <zetanumbers@users.noreply.github.com> Co-authored-by: Nicholas Nethercote <nnethercote@users.noreply.github.com>
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -136,8 +136,12 @@ pub struct QueryVTable<'tcx, C: QueryCache> {\n /// For `no_hash` queries, this function pointer is None.\n pub hash_value_fn: Option<fn(&mut StableHashingContext<'_>, &C::Value) -> Fingerprint>,\n \n- pub val...
2026-03-11T22:10:45
facebook/react
192555bb0ed88db30f91c58651c421f178f90384
a69b80d07e5d1bf363ed15d6209a55b35e0765c2
Added dev-only warning for null/undefined create in use*Effect (#32355) ## Summary Fixes #32354. Re-creation of #15197: adds a dev-only warning if `create == null` to the three `use*Effect` functions: * `useEffect` * `useInsertionEffect` * `useLayoutEffect` Updates the warning to match the same text given in the `...
[ { "path": "packages/react/src/ReactHooks.js", "patch": "@@ -93,6 +93,14 @@ export function useEffect(\n updateDeps?: Array<mixed> | void | null,\n destroy?: ((resource: {...} | void | null) => void) | void,\n ): void {\n+ if (__DEV__) {\n+ if (create == null) {\n+ console.warn(\n+ 'React...
2025-02-11T22:01:04
nodejs/node
eafbe277b00d3a0f37252c7fe6d7a354c31efed1
eec03020880cf83d20e827d9067bdbeb4e0adf64
test: correct SIMD support comment The comment in the test file stated that: "SIMD is not supported on rhel8-ppc64le" This is incorrect -- WASM SIMD support is dependent on the available instructions, not the operating system. So it is more correct to say that WASM SIMD is not supported on IBM Power8 architecture. P...
[ { "path": "test/es-module/test-esm-wasm.mjs", "patch": "@@ -70,7 +70,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>\n [\n 'import { strictEqual, deepStrictEqual, ok } from \"node:assert\";',\n \n- // SIMD is not supported on rhel8-ppc64le\n+ ...
2025-06-21T17:19:45
electron/electron
e4cd162433927de69943fab3ad13bd9b9c396ec6
4085185e2dd56cd691ba3c8ece36f63c969563b0
docs: fix powerMonitor event types (#45518) * fix: powerMonitor event types * fix: thermal-state-change missing Returns
[ { "path": "docs/api/power-monitor.md", "patch": "@@ -26,7 +26,10 @@ Emitted when system changes to battery power.\n \n ### Event: 'thermal-state-change' _macOS_\n \n-* `state` string - The system's new thermal state. Can be `unknown`, `nominal`, `fair`, `serious`, `critical`.\n+Returns:\n+\n+* `details` Eve...
2025-02-10T15:13:11
golang/go
3ae9e950021d79134146a751531f151a1f02d9bd
a494a26bc2d0ad52e0e265c2a1b9a3a964118699
cmd/go: fix TestCgoPkgConfig on darwin with pkg-config installed Most darwin systems don't have pkg-config installed and skip this test. (And it doesn't run in all.bash because it is skipped during -short.) But for those systems that have pkg-config and run the non-short tests, it fails because the code was not writi...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -1506,15 +1506,17 @@ func main() {\n \ttg.setenv(\"PKG_CONFIG_PATH\", tg.path(\".\"))\n \ttg.run(\"run\", tg.path(\"foo.go\"))\n \n-\tif runtime.GOOS != \"darwin\" { // darwin doesn't like these ldflags\n-\t\t// test for ldflags\n-\t\ttg.tempFile(\"bar.pc\", `...
2025-11-05T18:42:44
facebook/react
3dd2c627707fea4f45fd8e5cc583036a72e3f77b
93b58361d9c9632acdda76eb8a1a582d1ff9701a
[react-native] fix divergence in synced code (#32348) Alternative to #32334
[ { "path": "packages/react-native-renderer/src/ReactNativeTypes.js", "patch": "@@ -10,6 +10,7 @@\n */\n \n import type {ElementRef, ElementType, MixedElement} from 'react';\n+import {type PublicRootInstance} from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface';\n \n export type MeasureOnSu...
2025-02-10T19:08:44
golang/go
a494a26bc2d0ad52e0e265c2a1b9a3a964118699
a8fb94969cb98efd84fa4f6fdccc14a5866828be
cmd/go: fix TestScript/vet_flags Test caching can cause an incorrect test failure when the vet step result is reused, leading to not printing a vet command line at all. Avoid that with -a (we are also using -n so no real work is done). Fixes one failing case in 'go test cmd/go' on my Mac. Change-Id: I028284436b1ecc7...
[ { "path": "src/cmd/go/testdata/script/vet_flags.txt", "patch": "@@ -20,7 +20,8 @@ stderr '-unsafeptr'\n ! stderr '-unsafeptr=false'\n \n # -unreachable is disabled during test but on during plain vet.\n-go test -n runtime\n+# The -a makes sure the vet result is not cached, or else we won't print the command...
2025-11-05T18:49:48
nodejs/node
b04c4a44a5c1eeda542570710027958586f284bc
e679e38b252ee5203ef583392f77fd532e2b4a67
src: pass resource on permission checks for spawn This commit enhances the permission model errors when no --allow-child-process is used and the error is emitted. Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs/node/pull/58758 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewe...
[ { "path": "src/node_process_methods.cc", "patch": "@@ -518,9 +518,6 @@ static void Execve(const FunctionCallbackInfo<Value>& args) {\n Isolate* isolate = env->isolate();\n Local<Context> context = env->context();\n \n- THROW_IF_INSUFFICIENT_PERMISSIONS(\n- env, permission::PermissionScope::kChildP...
2025-06-21T14:40:10
vercel/next.js
2931550ebbf8b547304d3bccebcb5606700460fc
5118c41567cde92c4db3077c3b656447c57603ef
Turbopack: bincode: Implement bincode Encode/Decode traits on all turbo task values (#85580) It looks like bincode should reduce the filesystem cache size by ~10% versus pot, because its not a self-describing format. This attempts to add the `bincode::Encode`/`bincode::Decode` traits everywhere, so that we can use tho...
[ { "path": "Cargo.lock", "patch": "@@ -394,6 +394,7 @@ checksum = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\"\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n dependencies = [\n+ \"bincode 2.0.1\",\n \"hashbrown 0.14.5\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n@@ -4261,6 +4262,7 ...
2025-12-05T01:47:19
electron/electron
4085185e2dd56cd691ba3c8ece36f63c969563b0
a141f68c83bcb4f45138379436f8e5d6baa39ca6
docs: `transactions-updated` event type (#45527) fix: `transactions-updated` event type
[ { "path": "docs/api/in-app-purchase.md", "patch": "@@ -10,13 +10,13 @@ The `inAppPurchase` module emits the following events:\n \n ### Event: 'transactions-updated'\n \n-Emitted when one or more transactions have been updated.\n-\n Returns:\n \n * `event` Event\n * `transactions` Transaction[] - Array of [`...
2025-02-10T15:12:17
facebook/react
062fb31155e42b6997a35b97180055814471620c
7588b6b291b17fb2130244115b07e9945a864626
[ci] Fix typo (#32337) Oops.
[ { "path": ".github/workflows/shared_close_direct_sync_branch_prs.yml", "patch": "@@ -3,7 +3,7 @@ name: (Shared) Close Direct Sync Branch PRs\n on:\n pull_request:\n branches:\n- - builds/facebook-*\n+ - 'builds/facebook-**'\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles", "add...
2025-02-07T23:01:53
golang/go
a8fb94969cb98efd84fa4f6fdccc14a5866828be
04f05219c4f78b0f932485d2544b8c7193c04bb0
cmd/go: fix TestScript/tool_build_as_needed This test assumes that changing GOOS/GOARCH results in an unrunnable binary, but that's not true if the user has go_GOOS_GOARCH_exec programs in their path (like I do). This test was timing out waiting to create a gomote to run a windows/amd64 binary. Rewrite the test not t...
[ { "path": "src/cmd/go/testdata/script/tool_build_as_needed.txt", "patch": "@@ -40,13 +40,15 @@ rm $TOOLDIR/test2json$GOEXE\n go tool -n test2json\n ! stdout $NEWTOOLDIR${/}test2json$GOEXE\n # Set GOOS/GOARCH to different values than host GOOS/GOARCH.\n-env GOOS=windows\n-[GOOS:windows] env GOOS=linux\n-env ...
2025-11-05T19:05:45
vercel/next.js
dfc51d0f40c25bd42f1362e6186c706e4bad5603
3a323194341a6554147d832cf6bca26e7140bd49
fix(next/image): handle `?dpl` for src without protocol (#86836) Follow up to previous PR based on this comment: https://github.com/vercel/next.js/pull/86485#discussion_r2589758455 We want to avoid adding `?dpl` when the deployment is an absolute url missing the protocol which is allowed when `unoptimized=true`.
[ { "path": "packages/next/src/shared/lib/get-img-props.ts", "patch": "@@ -232,7 +232,7 @@ function generateImgAttrs({\n }: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n- if (src.startsWith('/') && deploymentId) {\n+ if (src.startsWith('/') &...
2025-12-04T20:51:51