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
nodejs/node
aa98dd0b94d7a3f9baa11a883368773c1dd6fd99
e3071d52b6e8190d2158d7604161503a8b626b37
tools: fix vcbuild lint-js-build PR-URL: https://github.com/nodejs/node/pull/61318 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed...
[ { "path": "vcbuild.bat", "patch": "@@ -749,15 +749,15 @@ if errorlevel 1 goto exit\n goto lint-cpp\n \n :lint-cpp\n-if not defined lint_cpp goto lint-js\n+if not defined lint_cpp goto lint-js-build\n if defined NODEJS_MAKE goto run-make-lint\n where make > NUL 2>&1 && make -v | findstr /C:\"GNU Make\" 1> NU...
2026-01-16T22:00:45
electron/electron
e3142865b2e3c8ae3e1c842135eb1a304e0419bf
1f8e4079cda5d62003ee68fa7d39683a074dc1a6
fix: offscreen rendering with correct screen info. (#48730) fix: osr use correct screen info.
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -94,6 +94,7 @@\n The actual output pixel format and color space of the texture should refer to [`OffscreenSharedTexture`](../structures/offscreen-shared-texture.md) object in the `paint` event.\n * `argb` - The requested output texture...
2026-01-22T19:58:54
vercel/next.js
dfbc3dc6b7b395956bf47e92e04aa957cbfcc9a2
2c52ea2e7b3f9404282104f4e44d12b3d0360932
Loading layout docs update (#90787) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving ...
[ { "path": "docs/01-app/01-getting-started/06-fetching-data.mdx", "patch": "@@ -152,7 +152,7 @@ On navigation, the user will immediately see the layout and a [loading state](#c\n height=\"691\"\n />\n \n-Behind-the-scenes, `loading.js` will be nested inside `layout.js`, and will automatically wrap the `pag...
2026-03-05T09:46:26
golang/go
d51d4d75a67a5c0228ed55107a809f8f377c5949
425a88193ca39e82dc3dbcae22b98dbdfd98a04c
cmd/compile: (wasm) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: Ia5233c2b6c5f4439e269950efdd851e72e8e7ff6 Reviewed-on: https://go-review.googlesource.com/c/go/+/730160 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -349,6 +349,9 @@\n (Abs ...) => (F64Abs ...)\n (Copysign ...) => (F64Copysign ...)\n \n+(F32DemoteF64 (F64(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) (F64PromoteF32 x))) => (F32(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) x)\n+(F32DemoteF64 (F64Copysign ...
2025-12-11T19:27:10
facebook/react
91e5c3daf11408262e1345cbbbbadd943859b748
4b3e662e4ce54eb54a8701c48a967cc84a389501
fix(devtools): remove duplicated "Display density" field in General settings (#34792) <!-- 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 s...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Settings/GeneralSettings.js", "patch": "@@ -104,18 +104,6 @@ export default function GeneralSettings(_: {}): React.Node {\n ) : null}\n </div>\n \n- <div className={styles.SettingWrapper}>\n- <div className={styles.RadioL...
2025-10-09T17:38:23
nodejs/node
e3071d52b6e8190d2158d7604161503a8b626b37
53b3c83ed4c9ac7eb351606d1a1fd2707308dccd
test_runner: nix dead reporter code reporter/utils.js formatTestReport: 1. hasChildren and showErrorDetails are never both true in existing calls. 2. Thus if hasChildren is true, showErrorDetails is false. 3. So `|| data.details?.error?.failureType === 'subtestsFailed'` is irrelevant. 4. And `\n${error}` never o...
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -53,7 +53,7 @@ class SpecReporter extends Transform {\n }\n \n this.#failedTests = []; // Clean up the failed tests\n- return ArrayPrototypeJoin(results, '\\n'); ;\n+ return ArrayPrototypeJoin(results, '\\n');\n }\n #handl...
2026-01-16T17:48:44
electron/electron
1f8e4079cda5d62003ee68fa7d39683a074dc1a6
bad88c6ed450dd87ce160bfaa54091db9f075714
test: fix version color output when running prebuilt Electron (#49491)
[ { "path": "script/spec-runner.js", "patch": "@@ -88,7 +88,7 @@ async function main () {\n }\n \n const versionString = `v${args.electronVersion}`;\n- console.log(`Running against Electron ${versionString.green}`);\n+ console.log(`Running against Electron ${chalk.green(versionString)}`);\n }\...
2026-01-22T15:17:56
facebook/react
4b3e662e4ce54eb54a8701c48a967cc84a389501
3e1b34dc51dfc3cbada2cdd0ead5acee6998f444
[compiler] Add VoidUseMemo rule to RecommendedLatest (#34783) Adds a new error category VoidUseMemo which is only enabled in the RecommendedLatest preset for now.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -536,7 +536,8 @@ function printErrorSummary(category: ErrorCategory, message: string): string {\n case ErrorCategory.StaticComponents:\n case ErrorCategory.Suppression:\n case ErrorCategory.Syntax:\n- ...
2025-10-08T19:55:13
golang/go
425a88193ca39e82dc3dbcae22b98dbdfd98a04c
7336381cd16f81b7e34a8e8592a200b916989988
cmd/compile: (arm64) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: Ifca03975023e4e5d0ffa98d1f877314a1a291be0 Reviewed-on: https://go-review.googlesource.com/c/go/+/729161 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keit...
[ { "path": "src/cmd/compile/internal/arm64/ssa.go", "patch": "@@ -963,6 +963,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tcase ssa.OpARM64MVN,\n \t\tssa.OpARM64NEG,\n \t\tssa.OpARM64FABSD,\n+\t\tssa.OpARM64FABSS,\n \t\tssa.OpARM64FMOVDfpgp,\n \t\tssa.OpARM64FMOVDgpfp,\n \t\tssa.OpARM64FMOVSfpgp...
2025-12-10T21:50:21
vercel/next.js
ad030d782e2aba6272685d309c53650fbb06a6a6
286a73f84a516b06df59c2e5524150c4ad5d47d6
Turbopack: Tree shaking fixes and code organization (#89295) ## Summary A series of bug fixes, refactors, and code organization improvements to Turbopack's tree shaking and side effect optimization: - **Fix `ModulePart` handling for `FreeVarReference::EcmaScriptModule`** — pass `ModulePart` correctly so free variabl...
[ { "path": "crates/next-api/src/server_actions.rs", "patch": "@@ -42,7 +42,7 @@ use turbopack_core::{\n };\n use turbopack_ecmascript::{\n EcmascriptParsable, chunk::EcmascriptChunkPlaceable, parse::ParseResult,\n- tree_shake::asset::EcmascriptModulePartAsset,\n+ tree_shake::part::module::Ecmascrip...
2026-03-05T06:49:19
nodejs/node
3da4dce29658f1371fc943bc6141159260582a28
ae001bb4b74007f66f60c7e051d1d285e7595355
test: split test-esm-loader-hooks Previously whenever one of the test case fails in the CI, it barely logged anything useful in the CI and it was difficult to nail down the specific failing case with a local reproduction, especially when the test fixutre is inline JavaScript. This patch: - Puts all the inline JavaScr...
[ { "path": "test/es-module/test-esm-loader-hooks.mjs", "patch": "@@ -1,860 +0,0 @@\n-import { spawnPromisified } from '../common/index.mjs';\n-import * as fixtures from '../common/fixtures.mjs';\n-import assert from 'node:assert';\n-import { execPath } from 'node:process';\n-import { describe, it } from 'nod...
2026-01-16T14:30:12
electron/electron
bad88c6ed450dd87ce160bfaa54091db9f075714
534cb33465a54b454c2934147e79fdefc94cac6b
fix: potential devtools crash on empty (#49468)
[ { "path": "lib/renderer/inspector.ts", "patch": "@@ -11,12 +11,14 @@ const { contextIsolationEnabled } = internalContextBridge;\n * 1) Use menu API to show context menu.\n */\n window.onload = function () {\n- if (contextIsolationEnabled) {\n- internalContextBridge.overrideGlobalValueFromIsolatedWorld([...
2026-01-22T01:05:26
facebook/react
848e0e3a4f12022d396ddbc2b52fd8fa7ac31fa9
5c15c1cd3442f28044217703b5625f98c40042ee
[eprh] Update plugin config to be compatible with flat and legacy (#34762) This has been incredibly frustrating as [ESLint's own docs](https://eslint.org/docs/latest/extend/plugins#backwards-compatibility-for-legacy-configs) are clearly wrong (see #34679). This PR uses [eslint-plugin-react's setup](https://github.com...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -2,6 +2,7 @@ import {defineConfig} from 'eslint/config';\n import reactHooks from 'eslint-plugin-react-hooks';\n \n export default defineConfig([\n+ reactHooks.configs.flat['recommended-latest'],\n {\n languageOptions: {\n ecmaVersio...
2025-10-07T20:23:56
golang/go
7336381cd16f81b7e34a8e8592a200b916989988
831c489f9cb9afa560ac3c5b79acc8ea5a62e414
cmd/compile: (amd64) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: I3d7754ce4a26af0f5c4ef0be1254d164e68f8442 Reviewed-on: https://go-review.googlesource.com/c/go/+/729160 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1491,7 +1491,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpAMD64LoweredRound32F, ssa.OpAMD64LoweredRound64F:\n \t\t// input is already rounded\n-\tcase ssa.OpAMD64ROUNDSD:\n+\tcase ssa.OpAMD64ROUNDSD, ssa.OpAMD6...
2025-12-10T21:05:55
vercel/next.js
c83f475c1c76c2a23dd5cadd4f92809c979d688a
63292fc22ed2438b99dfb352fba09a8e7d5adb10
Address review feedback: extract modules, clean up imports (#90813) ## Summary Follow-up to #90514 addressing review feedback from @lukesandberg: - **Extract webpack layer helpers to `webpack-layer.ts`**: Moves `shouldUseReactServerCondition` and `isWebpackAppPagesLayer` out of the large `utils.ts` into their own mo...
[ { "path": "packages/next/src/build/create-compiler-aliases.ts", "patch": "@@ -17,7 +17,7 @@ import type { NextConfigComplete } from '../server/config-shared'\n import { defaultOverrides } from '../server/require-hook'\n import { hasExternalOtelApiPackage } from './webpack-config'\n import { NEXT_PROJECT_ROO...
2026-03-04T21:55:22
electron/electron
534cb33465a54b454c2934147e79fdefc94cac6b
51e7753ae95cce2f669831854967e5f692d57c13
fix: return early from platform_util::Beep() on Linux if there is no default GDK display (#49442) fix: return early from beep on linux if there is no default gdk display
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -406,6 +406,8 @@ bool PlatformTrashItem(const base::FilePath& full_path, std::string* error) {\n \n void Beep() {\n auto* display = gdk_display_get_default();\n+ if (!display)\n+ return;\n gdk_display_beep(display);\n }\n ", "addition...
2026-01-21T20:55:24
facebook/react
5c15c1cd3442f28044217703b5625f98c40042ee
69b4cb8df4d3c612f927942098475c7907c70808
[ci] Dry run with debug mode (#34767) Adds `--debug` to our dry run command so we can see the npm dry run output
[ { "path": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -62,7 +62,7 @@ jobs:\n name: Publish packages to npm (dry run)\n run: |\n cp ./scripts/release/ci-npmrc ~/.npmrc\n- scripts/release/publish.js --ci --versionName=${{ inputs.version_name }} --tag=${{ input...
2025-10-07T19:16:18
nodejs/node
e74b42842e768489423b7bde0767109327dc4f54
8af64193958e41c24f1bfb3d58f2e35fc8aadf06
src: fix pointer alignment The NgLibMemoryManager::ReallocImpl method prefixes the allocated memory with its size, and returns a pointer to the region after it. This pointer can however no longer be suitably aligned. On Arm 32bits this resulted in unaligned accesses, since the NEON vst1.64 instruction was used with a...
[ { "path": "src/node_mem-inl.h", "patch": "@@ -8,6 +8,8 @@\n \n namespace node {\n namespace mem {\n+static constexpr size_t kReserveSizeAndAlign =\n+ std::max(sizeof(size_t), alignof(max_align_t));\n \n template <typename Class, typename AllocatorStruct>\n AllocatorStruct NgLibMemoryManager<Class, Alloca...
2026-01-16T11:45:08
golang/go
011e98af3b254cb78f7765aff5410fd085cf3e81
ad168c5131c83981daefdb0db8a45d1d3315c388
test: skip TestScanAllocIssue77573 with asan mode In ASAN mode, extra memory allocations alter the object size and impact the scansize computation. Skip this test when ASAN is enabled. Fixes #77857. Fixes #77858. Fixes #77859. Change-Id: I21027ff20c411a0fda7a50446b2202871baa2262 Reviewed-on: https://go-review.google...
[ { "path": "src/runtime/malloc_test.go", "patch": "@@ -854,6 +854,9 @@ func TestMkmalloc(t *testing.T) {\n }\n \n func TestScanAllocIssue77573(t *testing.T) {\n+\tif asan.Enabled {\n+\t\tt.Skip(\"extra allocations with -asan causes this to fail\")\n+\t}\n \tverifyScanAlloc := func(t *testing.T, f func(), exp...
2026-02-28T02:28:16
vercel/next.js
9ff3b7c4248bc79c3c2f97645036506610750a93
8bd3a2abb1c468ebd1798c8cca9e7417246914bc
[ci]: continue-on-error for more gh auth status checks (#90890) This seems to be failing for our deploy test workflow ([x-ref](https://github.com/vercel/next.js/actions/runs/22685809647/job/65778800145)). Updating to `continue-on-error` similar to https://github.com/vercel/next.js/pull/89098 because this check doesn'...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -261,6 +261,9 @@ jobs:\n steps:\n - name: Check token\n run: gh auth status\n+ # This sometimes fails for unknown reasons.\n+ # Ignoring failures for now to check if a failure actually blocks subsequent s...
2026-03-04T21:17:19
facebook/react
a664f5f2ee225eab810fb1a1cc36de3a68bbf47c
1384ea8230641e3fc569a510b5f1c73f3f28302d
[compiler] Fix incorrect version name (#34764) Script was using the wrong version name. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34764). * #34765 * __->__ #34764
[ { "path": "compiler/scripts/release/publish.js", "patch": "@@ -145,10 +145,15 @@ async function main() {\n files: {exclude: ['.DS_Store']},\n });\n const truncatedHash = hash.slice(0, 7);\n- let newVersion =\n- argv.tagVersion == null || argv.tagVersion === ''\n- ? `${argv.versi...
2025-10-07T18:32:51
nodejs/node
9b2ee5f197adca32b41182b0944236fba36c17ac
d73c49e8492d650266121e26c0adaef3cf4b9074
doc: added 'secure' event to tls.TLSSocket Fixes #61060 PR-URL: https://github.com/nodejs/node/pull/61066 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/tls.md", "patch": "@@ -952,6 +952,18 @@ The listener callback is passed a single argument when called:\n Typically, the `response` is a digitally signed object from the server's CA that\n contains information about server's certificate revocation status.\n \n+### Event: `'secure'`\n+\n+<!...
2026-01-16T01:13:29
electron/electron
22e8cf9416c2644891d506ebceacd5d75af2bedb
5856b2e01c85ed3133cf5cb596f1347cc5a0cff5
docs: add a few API history fragments (#49340) * docs: add a few API history fragments * manual fixes
[ { "path": "docs/api/auto-updater.md", "patch": "@@ -100,6 +100,13 @@ On Windows only `releaseName` is available.\n \n ### Event: 'before-quit-for-update'\n \n+<!--\n+```YAML history\n+added:\n+ - pr-url: https://github.com/electron/electron/pull/12619\n+```\n+-->\n+\n This event is emitted after a user cal...
2026-01-21T17:57:02
golang/go
244b156e67635f83a13b113c61f7729a79e06056
a48829de1e7d51e31bb9e28c1b386ba5b796b76f
cmd/compile: fix internal compiler error: bad write barrier type This change fixes an issue where the compiler panics with 'bad write barrier type' for zero-sized arrays. The loops in storeTypeScalars and storeTypePtrs erroneously processed zero-sized arrays causing invalid operations. This ignores them. Fixes #77815...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -5671,7 +5671,7 @@ func (s *state) storeTypeScalars(t *types.Type, left, right *ssa.Value, skip ski\n \t\t\tval := s.newValue1I(ssa.OpStructSelect, ft, int64(i), right)\n \t\t\ts.storeTypeScalars(ft, addr, val, 0)\n \t\t}\n-\tcase t.IsArray() ...
2026-02-26T11:01:01
facebook/react
3025aa39649ef5106c34cc7896a63d63b2edee91
a4eb2dfa6fec3da5a947eb84c99b059890bb5241
[Flight] Don't serialize toJSON in Debug path and omit wide arrays (#34759) There's a couple of issues with serializing Buffer in the debug renders. For one, the Node.js Buffer has a `toJSON` on it which turns the binary data into a JSON array which is very inefficient to serialize compared to the real buffer. For de...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -849,6 +849,49 @@ export function resolveRequest(): null | Request {\n return null;\n }\n \n+function isTypedArray(value: any): boolean {\n+ if (value instanceof ArrayBuffer) {\n+ return true;\n+ }\n+ if (value instanceof Int8A...
2025-10-07T13:59:34
nodejs/node
d73c49e8492d650266121e26c0adaef3cf4b9074
cab20f2396ed2c38b0001642c49d998354d70eb2
build: drop support for Python 3.9 PR-URL: https://github.com/nodejs/node/pull/61177 Fixes: https://github.com/nodejs/node/issues/60919 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <...
[ { "path": "android-configure", "patch": "@@ -9,7 +9,6 @@ command -v python3.13 >/dev/null && exec python3.13 \"$0\" \"$@\"\n command -v python3.12 >/dev/null && exec python3.12 \"$0\" \"$@\"\n command -v python3.11 >/dev/null && exec python3.11 \"$0\" \"$@\"\n command -v python3.10 >/dev/null && exec python...
2026-01-15T22:14:19
electron/electron
486a9a61d2723755adc4be5e407888d755ee3b9c
7851a34c2d0b74c654ff09b0e1556c457214fb15
chore: bump chromium to 146.0.7635.0 (main) (#49408) * chore: bump chromium in DEPS to 146.0.7635.0 * chore: update patch hunk headers * 7078551: [wasm] Refactor caching API https://chromium-review.googlesource.com/c/v8/v8/+/7078551 * 7141498: [api] Remove unused context parameter from FixedArray::Get https://chr...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '146.0.7633.0',\n+ '146.0.7635.0',\n 'node_version':\n 'v24.13.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-01-19T14:37:02
golang/go
93b78326c30afe7a49b50c3c1614799ee5b41b97
c4de16a714d67c31c80285a4cb82069a6fa8718c
cmd/compile: use OpMove instead of memmove more on loong64 OpMove is faster for small moves of fixed size. goos: linux goarch: loong64 pkg: runtime cpu: Loongson-3A6000 @ 2500.00MHz | old.txt | new.txt | | sec/op | ...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -1484,11 +1484,13 @@ func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {\n \t\treturn sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))\n \tcase \"arm64\":\n \t\treturn sz <= 64 || (sz <= 1024 && disjoint(dst, sz, src, sz...
2026-02-12T06:09:27
nodejs/node
1654684633aff288d9214352fbd94de4d4cca58b
9575913f99b60e9f8cdad5d9dc7cc258b1494495
esm: ensure watch mode restarts after syntax errors Move watch dependency reporting earlier in module resolution to ensure file dependencies are tracked even when parsing fails. Fixes: https://github.com/nodejs/node/issues/61153 PR-URL: https://github.com/nodejs/node/pull/61232 Reviewed-By: Aviv Keller <me@aviv.sh> R...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -542,6 +542,12 @@ class ModuleLoader {\n */\n #getOrCreateModuleJobAfterResolve(parentURL, resolveResult, request, requestType) {\n const { url, format } = resolveResult;\n+\n+ if (process.env.WATCH_REPORT_DEPENDENCIES && process.send)...
2026-01-15T16:33:26
electron/electron
7851a34c2d0b74c654ff09b0e1556c457214fb15
faa21a748f0e7b8168a159e5848cf1f87198d73e
docs: fix `webContents.hostWebContents` types (#49424)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -2364,7 +2364,8 @@ A [`NavigationHistory`](navigation-history.md) used by this webContents.\n \n #### `contents.hostWebContents` _Readonly_\n \n-A [`WebContents`](web-contents.md) instance that might own this `WebContents`.\n+A `WebContents | null` property...
2026-01-19T09:45:23
facebook/react
a4eb2dfa6fec3da5a947eb84c99b059890bb5241
6a8c7fb6f1108577c97eeb5703018ece915dcdeb
Release Fragment refs to Canary (#34720) ## Overview This PR adds the `ref` prop to `<Fragment>` in `react@canary`. This means this API is ready for final feedback and prepared for a semver stable release. ## What this means Shipping Fragment refs to canary means they have gone through extensive testing in product...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/ScrollIntoViewCase.js", "patch": "@@ -55,11 +55,11 @@ export default function ScrollIntoViewCase() {\n const scrollContainerRef = useRef(null);\n \n const scrollVertical = () => {\n- fragmentRef.current.experimental_scrollIntoView(alignToT...
2025-10-07T04:24:24
nodejs/node
2679b62e9155ea7d0849cd9ca5b380675aa29234
1409ac4ffbc168359656dfbf23b923379976e59c
zlib: validate write_result array length Fixes: https://github.com/nodejs/node/issues/61286 PR-URL: https://github.com/nodejs/node/pull/61342 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gürgün Dayıo...
[ { "path": "src/node_zlib.cc", "patch": "@@ -736,6 +736,7 @@ class ZlibStream final : public CompressionStream<ZlibContext> {\n \n CHECK(args[4]->IsUint32Array());\n Local<Uint32Array> array = args[4].As<Uint32Array>();\n+ CHECK_GE(array->Length(), 2);\n Local<ArrayBuffer> ab = array->Buffer()...
2026-01-15T00:38:09
vercel/next.js
d52d9336d5b8d6623156ea426a9246557455b1c7
c37ef4844d2137716a897eb5a52394e383ec6910
Clean up legacy PPR references in test fixtures (#90725) Stacked on https://github.com/vercel/next.js/pull/90726 Migrate legacy PPR tests to Cache Components
[ { "path": "test/e2e/app-dir/static-shell-debugging/static-shell-debugging.test.ts", "patch": "@@ -19,7 +19,7 @@ describe.skip('static-shell-debugging', () => {\n : undefined,\n },\n nextConfig: {\n- experimental: { ppr: context.ppr },\n+ cacheComponents: context.ppr,\n },\n }...
2026-03-04T17:28:15
golang/go
83b4c5d233b1df459fbbd12bfda1194f567a422f
f5479628d36e6cdd63c39784b58fa7241abd3295
runtime/cgo: avoid unused parameter warning Annotate the unused parameter with `__attribute__((unused))` to avoid build failures in environments that treat unused parameters as errors. We see this when using `rules_go`: ``` @@rules_go+//:stdlib builder failed: error executing GoStdlib command (from stdlib rule target...
[ { "path": "src/runtime/cgo/gcc_clearenv.c", "patch": "@@ -10,7 +10,7 @@\n \n /* Stub for calling clearenv */\n void\n-x_cgo_clearenv(void **_unused)\n+x_cgo_clearenv(void **env __attribute__((unused)))\n {\n \t_cgo_tsan_acquire();\n \tclearenv();", "additions": 1, "deletions": 1, "language": "C"...
2026-02-27T15:14:25
electron/electron
faa21a748f0e7b8168a159e5848cf1f87198d73e
5bd2938f6af2ef9060772796f02c3ac9c80d5cdb
fix: MAS rejection for private APIs (#49391)
[ { "path": "patches/chromium/mas_avoid_private_macos_api_usage.patch.patch", "patch": "@@ -16,6 +16,18 @@ Subject: mas: avoid private macOS API usage\n * NSNextStepFrame\n * NSThemeFrame\n * NSTextInputReplacementRangeAttributeName\n+ * _toolbarView\n+ * _menuImpl\n+ * _removeFromGroups:\n+ * _isCo...
2026-01-18T09:34:16
facebook/react
6a8c7fb6f1108577c97eeb5703018ece915dcdeb
b65e6fc58b8c9a35e2c2ea7d1952fc1499cef09b
Release `<ViewTransition />` to Canary (#34712) ## Overview This PR ships the View Transition APIs to `react@canary`: - [`<ViewTransition />`](https://react.dev/reference/react/ViewTransition) - [`addTransitionType`](https://react.dev/reference/react/addTransitionType) This means these APIs are ready for final feedb...
[ { "path": "fixtures/view-transition/src/components/App.js", "patch": "@@ -3,7 +3,7 @@ import React, {\n useLayoutEffect,\n useEffect,\n useState,\n- unstable_addTransitionType as addTransitionType,\n+ addTransitionType,\n } from 'react';\n \n import Chrome from './Chrome.js';", "additions": 1, ...
2025-10-07T04:23:34
rust-lang/rust
dae0c011084c7877b47dda1e7514fa7685c94e9a
fda6d37bb88ee12fd50fa54d15859f1f91b74f55
Tweak wording of E0275 WF errors Modify the main error message to read better: ``` error[E0275]: overflow evaluating whether `&'a mut Bar` is well-formed ```
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/overflow.rs", "patch": "@@ -99,6 +99,15 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \"overflow assigning `{a}` to `{b}`\",\n )\n }\n+ ty::PredicateK...
2026-03-29T18:25:55
vercel/next.js
1bc8f559932c83ff8d863a35c4a1b2f9ebafd900
8dd8a958e8847954b61bc27a00fad7e96a071a57
Add Err(anyhow(... ast-grep rule (#90869) # What Add an ast-grep rule to use `bail!` rather than `Err(anyhow!(` in a return position. # Why This is slightly more compact, and allows us to port more code over to turbofmt/turbobail. Note: _this PR was previously merged into another branch due to a GH bug_
[ { "path": ".config/ast-grep/rule-tests/__snapshots__/no-context-snapshot.yml", "patch": "@@ -2,41 +2,41 @@ id: no-context\n snapshots:\n 'fn foo(context: ChunkingContext) -> u32 { 5 };':\n labels:\n- - source: context\n- style: primary\n- start: 7\n- end: 14\n- - source:...
2026-03-04T16:08:55
nodejs/node
1409ac4ffbc168359656dfbf23b923379976e59c
b1ac7e49a464ecc3391f0d9286d69c3a61149a1d
doc: restore @watilde to collaborators Fixes: https://github.com/nodejs/TSC/issues/1813 PR-URL: https://github.com/nodejs/node/pull/61350 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <richard.lau...
[ { "path": "README.md", "patch": "@@ -453,6 +453,8 @@ For information about the governance of the Node.js project, see\n **Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)\n * [VoltrexKeyva](https://github.com/VoltrexKeyva) -\n **Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)\n+...
2026-01-14T11:07:37
golang/go
5055a181560b09170a23be81612ee849e47b0a30
76222756d9674a41b01a11d123ce39a7b26eb7fc
cmd/go/internal/doc: support @version suffix on first argument This change allows `go doc` to display documentation for packages outside the workspace by explicitly providing a version (e.g., `go doc pkg@version`) or by inferring it from an installed command. Therefore, all of the following are now valid: ``` go doc...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -151,7 +151,7 @@ func runDoc(ctx context.Context, cmd *base.Command, args []string) {\n \tlog.SetPrefix(\"doc: \")\n \tdirsInit()\n \tvar flagSet flag.FlagSet\n-\terr := do(os.Stdout, &flagSet, args)\n+\terr := do(ctx, os.Stdout, &flagSet, args)\n \ti...
2026-02-20T05:24:55
facebook/react
c78625842239f29ff130136fff2729fd4c7c2e91
1be3ce9996f05ceb74fd8c11f08a84a5e57098f3
[eprh] Fix config type not being exported correctly (#34746) Another attempt to fix #34745. I updated our fixture for eslint-v9 to include running tsc. I believe there were 2 issues: 1. `export * from './cjs/eslint-plugin-react-hooks'` in npm/index.d.ts was no longer correct as we updated index.ts to export default i...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -12,10 +12,7 @@ export default defineConfig([\n },\n },\n },\n- plugins: {\n- 'react-hooks': reactHooks,\n- },\n- extends: ['react-hooks/recommended-latest'],\n+ extends: [reactHooks.configs['recommended-latest'...
2025-10-06T04:53:21
electron/electron
5bd2938f6af2ef9060772796f02c3ac9c80d5cdb
f149efe32e852e6e23153c11dfea9834d6d3f247
fix: try clearing `InspectableWebContents` delegate earlier (#49406) fix: try clearing InspectableWebContents delegate earlier
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1051,6 +1051,9 @@ void WebContents::InitWithWebContents(\n }\n \n WebContents::~WebContents() {\n+ if (inspectable_web_contents_)\n+ inspectable_web_contents_->GetView()->SetDelegate(nullptr);\n+\n if (owner_window_) {\n own...
2026-01-16T20:36:34
rust-lang/rust
3ce8cfbc58a7cbd0cc01e4c4cc63d269fe8e59d4
584d32e3ee7a2051c9ec1338d259ed8ef16380ca
emit error on `#[track_caller]` with `extern fn` such a function implicitly uses `extern "C"
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -1679,19 +1679,28 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n self.check_item_safety(span, safety);\n }\n \n- if let FnKind::Fn(ctxt, _, fun) = fk\n- && let Extern::Explicit(str_lit, extern_a...
2026-03-29T16:14:53
nodejs/node
b1ac7e49a464ecc3391f0d9286d69c3a61149a1d
d4cc54b8c8efad7c329ad56f75dc190279bccf5d
doc: fix v25 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V25.md", "patch": "@@ -52,18 +52,12 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/750>\n- permission:\n * (CVE-2026-21636) add...
2026-01-13T14:55:04
vercel/next.js
e4cae3708480366826d8a6f42865f73072f9f760
70a2e8d934887ca1ca6e4bf3d1aeae205476b5fd
Turbopack: turbofmt/turbobail macros (#90092) # What Add turbofmt! and turbobail! proc macros for async string formatting with Vc<T> and ResolvedVc<T> values. A new, agent-friendly `FORMATTING.md` file is added to help agents figure out how these macros work. # Why Formatting strings that include turbo-tasks values...
[ { "path": "crates/next-api/src/font.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use next_core::next_manifests::NextFontManifest;\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{ResolvedVc, Vc};\n+use turbo_tasks::{ResolvedVc, Vc, turbofmt};\n use turbo_tasks_fs::{File, FileContent, FileSystemPath};...
2026-03-04T15:11:04
golang/go
76222756d9674a41b01a11d123ce39a7b26eb7fc
f2633386e0d2f692b4363134626f472fc95b9858
cmd/compile: gate instrumentEnterExit on NoRaceFunc check The NoRaceFunc flag is meant to suppress racefuncenter/racefuncexit instrumentation for packages like internal/runtime/atomic. However, instrumentEnterExit was set unconditionally when -race was enabled, outside the NoRaceFunc guard. This caused generic functio...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -341,9 +341,9 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \tif base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {\n \t\tif !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg...
2026-02-23T19:53:35
facebook/react
bc2356176bca3e42e84ce8d196fdc525677cc36b
4fdf7cf249ecb205d20b65b5208d113ea664cb9a
[ci] Fix incorrect filtering logic for prereleases (#34725) The workflow was correctly publishing the package(s) specified in `only`, but due to incorrect logic it would also run the 'Publish all packages' step.
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -93,7 +93,7 @@ jobs:\n --tags=${{ inputs.dist_tag }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry' || '' }}\n- - if: '${{ !(inputs.skip_...
2025-10-03T20:37:55
electron/electron
f149efe32e852e6e23153c11dfea9834d6d3f247
5dd509d2f4ec6a6e862d8f845a3ab95578a5631b
chore: bump node to v24.13.0 (main) (#49189) * chore: bump node in DEPS to v24.12.0 * src: use CP_UTF8 for wide file names on win32 https://github.com/nodejs/node/pull/60575 * test,crypto: handle a few more BoringSSL tests https://github.com/nodejs/node/pull/59030 * chore: fixup patch indices * chore: re-add acc...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '146.0.7633.0',\n 'node_version':\n- 'v24.11.1',\n+ 'v24.13.0',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2026-01-16T16:08:38
golang/go
f71432d223eeb2139b460957817400750fd13655
40a10063e89d4f0ae55631d1e50c31e3314fb812
cmd/compile: fix bloop test Not 100% sure this is right, but it seems to fix the issue. Fixes #77832 Change-Id: Ifa6eae61a5444f4fd88b310536b1caf7144e7797 Reviewed-on: https://go-review.googlesource.com/c/go/+/749660 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -86,7 +86,7 @@ func getKeepAliveNodes(pos src.XPos, n ir.Node) ir.Nodes {\n \tif name != nil {\n \t\tdebugName(name, pos)\n \t\treturn ir.Nodes{name}\n-\t} else if deref := n.(*ir.StarExpr); deref != nil {\n+\t} else if deref, ok := n.(*ir.St...
2026-02-27T03:48:46
nodejs/node
d4cc54b8c8efad7c329ad56f75dc190279bccf5d
659fd01b3ebb101a692c8e9a795c9d46397e4ea0
doc: fix v24 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V24.md", "patch": "@@ -68,17 +68,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797>\n * (CVE-2025-55132) disable futimes whe...
2026-01-13T14:54:43
facebook/react
4fdf7cf249ecb205d20b65b5208d113ea664cb9a
614a945d9d1031fadcf211a632cb2d7fda495a4f
[ci] Fix runtime_prereleases (#34722) When using the "only" or "skip" option in the workflow, we were adding the `--skipTests` param, but that isn't an actual option: https://github.com/facebook/react/blob/1de32a5e75fe96ac3c1b728a117010e11673f6ed/scripts/release/publish-commands/parse-params.js
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -82,7 +82,6 @@ jobs:\n run: |\n scripts/release/publish.js \\\n --ci \\\n- --skipTests \\\n --tags=${{ inputs.dist_tag }} \\\n --onlyPackages=${{ inputs.only_packages }} ${{ (...
2025-10-03T18:41:34
vercel/next.js
5719439f24c81e62b90b7b53b332b6e615d9565b
4c379cad09b681e6720568b66d8e8ccb3ae12d6d
[turbotask] Make turbotask function registration const (#90797) # What Make turbotask function registration const -- all function registration blocks are true &'static items, compiled directly into the binary. Removes a few thousand allocations of type names and boxed impls of TaskFn. # Why We have approx 2k funct...
[ { "path": "turbopack/crates/turbo-tasks-macros-tests/tests/function/fail_operation_method_self_type.stderr", "patch": "@@ -13,20 +13,19 @@ error[E0307]: invalid `self` parameter type: `OperationVc<Foobar>`\n = note: type of `self` must be `Self` or some type implementing `Receiver`\n = help: consider ...
2026-03-04T14:17:27
electron/electron
5dd509d2f4ec6a6e862d8f845a3ab95578a5631b
bdd7730a244dbff6b892e1d59359b8e9ad25ae0a
fix: restore AXDocument accessibility attribute for representedFilename on macOS (#49346) Starting from Chromium 134.0.6989.0 (Electron 35.0.0-beta.5), the NativeWidgetMacNSWindow class overrides accessibilityDocument to return the web content URL from the accessibility tree, but doesn't fall back to NSWindow's defaul...
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -285,6 +285,19 @@ - (NSString*)accessibilityTitle {\n return base::SysUTF8ToNSString(shell_ ? shell_->GetTitle() : \"\");\n }\n \n+- (NSString*)accessibilityDocument {\n+ // Prefer representedFilename set via Electron's setRepresented...
2026-01-16T09:27:29
nodejs/node
659fd01b3ebb101a692c8e9a795c9d46397e4ea0
6c96a63891044e7b23421d675d79cb1e1be647d8
doc: fix v22 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V22.md", "patch": "@@ -79,17 +79,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler\n * (CVE-2025-55132) disable futimes when permission model is enabled\n- lib,permission:\n * (CVE-2025-55130)...
2026-01-13T14:54:21
golang/go
40a10063e89d4f0ae55631d1e50c31e3314fb812
657ed934e85dc575aad51356c4b437961e7c1313
runtime: fix scan size calculation for small arrays of only pointers When allocating arrays, scan size should be the position of the last pointer in the last object. Small array allocations containing only pointers (for example, the backing store for a []*int) have a fast path in the allocator for unrolling their bits...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2083,3 +2083,8 @@ func DumpPrintQuoted(s string) string {\n \n \treturn string(buf)\n }\n+\n+func GetScanAlloc() uintptr {\n+\tc := getMCache(getg().m)\n+\treturn c.scanAlloc\n+}", "additions": 5, "deletions": 0, "language": "Go" }, { ...
2026-02-12T09:00:24
vercel/next.js
ad3296b9d418bf6d4a7a373f4a4e53a704257120
11c906a75c778e50dfe83c0131c745f6130cb39f
Update default error pages (#90469) Redesign the https://github.com/vercel/next.js/pull/87988 error pages to be more aligned with Next.js aesthetic, along with copy to be sharper. | Client | Server | |--------|--------| | <img width="4992" height="2830" alt="CleanShot 2026-03-03 at 17 26 07@2x" src="https://github.co...
[ { "path": "packages/next/src/client/components/builtin/app-error.tsx", "patch": "@@ -1,29 +1,26 @@\n import React from 'react'\n-import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n+import { errorStyles, errorThemeCss, WarningIcon } from './error-styles'\n \n // This is the static 500.ht...
2026-03-04T11:49:57
facebook/react
85c427d822baad6e654256b707b7d8755da7db26
02bd4458f77e60b5631ff2f0e30b05b8b3a56d6d
[compiler] Remove @babel/plugin-proposal-private-methods (#34715) redo of #34458 but fixing up prettier Co-authored-by: Arnaud Barré <arnaud.barre@carbometrix.com>
[ { "path": "compiler/packages/eslint-plugin-react-compiler/babel.config.js", "patch": "@@ -10,6 +10,5 @@ module.exports = {\n plugins: [\n ['@babel/plugin-transform-private-property-in-object', {loose: true}],\n ['@babel/plugin-transform-class-properties', {loose: true}],\n- ['@babel/plugin-tran...
2025-10-03T16:13:55
electron/electron
bdd7730a244dbff6b892e1d59359b8e9ad25ae0a
060e76f1b64a5106f1e82c6decc22f0811bfaa6f
fix: make toplevel icon Wayland protocol work (#49290)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n+#include \"ui/platform_window/extensions/wayland_extension.h\"\n #includ...
2026-01-16T08:55:52
nodejs/node
6c96a63891044e7b23421d675d79cb1e1be647d8
903f64796e65324db71ddedee5216a0704f42c1a
doc: fix v20 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V20.md", "patch": "@@ -89,17 +89,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/802>\n * (CVE-2025-59465) add TL...
2026-01-13T14:54:02
golang/go
657ed934e85dc575aad51356c4b437961e7c1313
753022f82fc54dab5e348fac3706a9df8afc5cb5
os: avoid escape from Root via ReadDir or Readdir When reading the contents of a directory using File.ReadDir or File.Readdir, the os.FileInfo was populated on Unix platforms using lstat. This lstat call is vulnerable to a TOCTOU race and could escape the root. For example: - Open the directory "dir" within a Root....
[ { "path": "src/internal/poll/fstatat_unix.go", "patch": "@@ -0,0 +1,22 @@\n+// Copyright 2026 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 unix || wasip1\n+\n+package poll\n+\n+import (\n+\t\"...
2026-02-26T17:54:33
vercel/next.js
34fdcbb422af467be0701f8cf8c03564bf373988
1f45f98a269258c4ff4cb94abe9440bc92798820
Avoid using TaskTypes as keys in storage instead use hashes (#88904) Save space in the persisent store by only recording TaskType one time instead of twice. ## What? Instead of using an encoded TaskType struct as a key in persistent storage just use a 64 bit hash. Now when looking up we actually need to do a cascad...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -284,21 +284,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n ExecuteContextImpl::new(self, turbo_tasks)\n }\n \n- /// # Safety\n- ///\n- /// `tx` must be a transaction from this TurboTasksBacken...
2026-03-03T21:39:40
facebook/react
0eebd37041a5712f841edd5fad558e0516e5af61
74dee8ef641c7a0a67db192f83c11ac0d9f279ff
[playground] Config panel quality fixes (#34611) Fixed two small issues with the config panel in the compiler playground: 1. Object descriptions were being confined in the config box and most of it would not be visible upon hover 2. Changed it so that "Applied Configs" would only display a valid set of configs, rather...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,7 +6,6 @@\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 monaco...
2025-10-03T14:52:36
electron/electron
2fbf1f5c72ef6d5e7765c0160817015a3800101d
c769361af2ec2097a2b2d460a2543c330e684cfe
ci: detect patch needs update error with problem matcher (#49405)
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -143,11 +143,12 @@ runs:\n echo \"No changes to patches detected\"\n fi\n fi\n- - name: Remove patch conflict problem matcher\n+ - name: Remove patch conflict problem matchers\n shell: bash\n run: |\n echo ...
2026-01-16T03:18:50
vercel/next.js
d7b331f3bffe59fd5f421252b45bea0f69fe8dee
296e180036c5f564d28f71492daba29a0cd573ba
[otel] fix missing http.route attribute (#90832)
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -549,6 +549,7 @@ export async function handler(\n interceptionRoutePatterns\n )\n res.setHeader('Vary', varyHeader)\n+ let parentSpan: Span | undefined\n const invokeRouteModule = async (\n span: Span | undefi...
2026-03-03T19:16:02
nodejs/node
903f64796e65324db71ddedee5216a0704f42c1a
abfad122f808073fa325bcd61796b62bd0693c5a
cluster: fix port reuse between cluster Fixes: https://github.com/nodejs/node/issues/60086 PR-URL: https://github.com/nodejs/node/pull/60141 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/internal/cluster/primary.js", "patch": "@@ -271,8 +271,12 @@ function queryServer(worker, message) {\n return;\n \n const key = `${message.address}:${message.port}:${message.addressType}:` +\n- `${message.fd}:${message.index}`;\n- let handle = handles.get(key);\n+ ...
2026-01-14T10:39:15
rust-lang/rust
de6826beff7cbfc52be0f1efecea6449e2df295d
a1c519d03735b701be54d0f20813162481a9e392
fix: Fix block lowering in ast id map
[ { "path": "src/tools/rust-analyzer/crates/span/src/ast_id.rs", "patch": "@@ -678,9 +678,10 @@ impl AstIdMap {\n }\n }\n syntax::WalkEvent::Leave(node) => {\n- if cfg!(debug_assertions) && ast::BlockExpr::c...
2026-03-29T09:12:27
golang/go
89d92fc21166c27db7d4203d93019e33f8cb9695
b4ef60b9cb74c24108ad02cc11531c0f144bb77d
cmd/compile: ternary rewrite of rewrite should skip, not panic The panic was unnecessary, if there's nothing to rewrite, just do nothing. Added a debug message for this to help with testing; it seems (from accidentally perturbing the test away from failure) to be somewhat rare, so likely okay to mingle with the other...
[ { "path": "src/cmd/compile/internal/ssa/rewritetern.go", "patch": "@@ -5,7 +5,6 @@\n package ssa\n \n import (\n-\t\"fmt\"\n \t\"internal/goarch\"\n \t\"slices\"\n )\n@@ -175,7 +174,10 @@ func rewriteTern(f *Func) {\n \t\timm := computeTT(a0, vars0)\n \t\top := ternOpForLogical(a0.Op)\n \t\tif op == a0.Op {...
2026-02-25T20:56:36
facebook/react
19f65ff179d377ff0c9284704dff2fce370745be
26b177bc5e1d287c60c50fc1e185b2fb398488a0
[eprh] Remove NoUnusedOptOutDirectives (#34703) This rule was a leftover from a while ago and doesn't actually lint anything useful. Specifically, you get a lint error if you try to opt out a component that isn't already bailing out. If there's a bailout the compiler already safely skips over it, so adding `'use no me...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/__tests__/NoUnusedDirectivesRule-test.ts", "patch": "@@ -1,58 +0,0 @@\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of t...
2025-10-02T23:19:01
nodejs/node
daeafc06f96a640d675bf10dee96e152803ecb88
3cdb1cd437f63dd256ae2ab3b7e9016257326cb4
src: use node- prefix on thread names PR-URL: https://github.com/nodejs/node/pull/61307 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: C...
[ { "path": "src/node.cc", "patch": "@@ -1234,7 +1234,7 @@ InitializeOncePerProcessInternal(const std::vector<std::string>& args,\n }\n \n if (!(flags & ProcessInitializationFlags::kNoInitializeNodeV8Platform)) {\n- uv_thread_setname(\"MainThread\");\n+ uv_thread_setname(\"node-MainThread\");\n ...
2026-01-06T15:49:25
vercel/next.js
6f763ecfd48acc3593f8a10328aef9358fdb7c75
c2b4c0815c62cc62d75c779a88ed8b42fd85d674
Turbopack: add anyhow::Context to turbo-persistence mmap, file open, and decompress operations (#90769) ### What? Adds `anyhow::Context` (`.context()` / `.with_context()`) to error-prone operations in the `turbo-persistence` crate: file opens, memory mapping (`mmap`), and LZ4 decompression. ### Why? `get` / `batch_...
[ { "path": "turbopack/crates/turbo-persistence/src/compression.rs", "patch": "@@ -21,7 +21,13 @@ pub fn decompress_into_arc(uncompressed_length: u32, block: &[u8]) -> Result<Arc\n let mut buffer = unsafe { buffer.assume_init() };\n // We just created this Arc so refcount is 1; get_mut always succeeds...
2026-03-03T15:10:21
electron/electron
c769361af2ec2097a2b2d460a2543c330e684cfe
6ea7d6d5a45801f9b2d82c279dd8e889c6fc7cc6
fix: warning: default arguments on virtual or override methods (#49398) fix: warning: default arguments on virtual or override methods are prohibited [google-default-arguments] we never override these, so just make them nonvirtual
[ { "path": "shell/browser/native_window.h", "patch": "@@ -106,9 +106,9 @@ class NativeWindow : public base::SupportsUserData,\n void SetPosition(const gfx::Point& position, bool animate = false);\n [[nodiscard]] gfx::Point GetPosition() const;\n \n- virtual void SetContentSize(const gfx::Size& size, boo...
2026-01-16T00:09:43
rust-lang/rust
69b6d26d05006dca7556abc555fb0e029ecf1f4e
c4db0e127c6e96d1798423bf9f205fd06f5481a6
fix invalid type suggestion for item nested in function
[ { "path": "compiler/rustc_hir_analysis/src/collect/type_of.rs", "patch": "@@ -4,7 +4,7 @@ use rustc_errors::{Applicability, StashKey, Suggestions};\n use rustc_hir::def_id::{DefId, LocalDefId};\n use rustc_hir::intravisit::VisitorExt;\n use rustc_hir::{self as hir, AmbigArg, HirId};\n-use rustc_middle::ty::...
2026-03-29T08:23:14
golang/go
20d78eca0a5cb8bb18a870e1c9dc6810c5e1ef6d
5c7d8a3e4896df7d2d0f9d9ec72248eb39e71f96
cmd/go: fix ignored error check when sanitizing SwigCXXFiles Change-Id: Icc78a16c1fd128b14e9113016abdfcd6e91f1c1c Reviewed-on: https://go-review.googlesource.com/c/go/+/746320 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -3331,7 +3331,7 @@ func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) error {\n \t\t}\n \t}\n \tfor _, f := range p.SwigCXXFiles {\n-\t\tif b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize); err != nil {\n+\t\tif err := b.swigOne(a...
2026-02-17T18:07:38
facebook/react
26b177bc5e1d287c60c50fc1e185b2fb398488a0
056a586928fe1b6186d3693743ac7019ce39cb7b
[eprh] Fix `recommended` config for flat config compatibility (#34700) Previously, the `recommended` config used the legacy ESLint format (plugins as an array of strings). This causes errors when used with ESLint v9's `defineConfig()` helper. This was following [eslint's own docs](https://eslint.org/docs/latest/extend...
[ { "path": "fixtures/eslint-v6/.eslintrc.json", "patch": "@@ -1,14 +1,11 @@\n {\n \"root\": true,\n- \"extends\": [\"plugin:react-hooks/recommended-legacy\"],\n+ \"extends\": [\"plugin:react-hooks/recommended-latest-legacy\"],\n \"parserOptions\": {\n \"ecmaVersion\": 2020,\n \"sourceType\": \"...
2025-10-02T22:52:52
nodejs/node
97595f768e94d3d2da685dc0e5366016b146d2b7
1d2686d15e788218be35e1cb26dfbb551d8366e3
tls: route callback exceptions through error handlers Wrap pskCallback and ALPNCallback invocations in try-catch blocks to route exceptions through owner.destroy() instead of letting them become uncaught exceptions. This prevents remote attackers from crashing TLS servers or causing resource exhaustion. Fixes: https:...
[ { "path": "lib/internal/tls/wrap.js", "patch": "@@ -234,39 +234,44 @@ function callALPNCallback(protocolsBuffer) {\n const handle = this;\n const socket = handle[owner_symbol];\n \n- const servername = handle.getServername();\n+ try {\n+ const servername = handle.getServername();\n \n- // Collect ...
2025-12-22T17:25:33
golang/go
0886e65b119e5be88846b1580451dc2b0d6f6fd0
b48b2002febf107a04350c43d99e86cba60eba43
cmd/compile: treat all zero-sized values as SSA-able Might as well, we don't need any registers for such values. Fixes #77635 Change-Id: Iedc1bc3f13662b043b183228bcc1dc4e6c91da81 Reviewed-on: https://go-review.googlesource.com/c/go/+/747780 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LU...
[ { "path": "src/cmd/compile/internal/ssa/value.go", "patch": "@@ -616,6 +616,9 @@ func CanSSA(t *types.Type) bool {\n \tif t.IsSIMD() {\n \t\treturn true\n \t}\n+\tif t.Size() == 0 {\n+\t\treturn true\n+\t}\n \tsizeLimit := int64(MaxStruct * types.PtrSize)\n \tif t.Size() > sizeLimit {\n \t\t// 4*Widthptr is...
2026-02-20T20:04:35
vercel/next.js
c2b4c0815c62cc62d75c779a88ed8b42fd85d674
ce14ca88a4e04e1b72021f9b10425ba497acc1b4
Unify caching story across the docs (#90149) This PRs unifies the caching story across the docs, making Cache Components the happy path, while still providing guidance to users in the old model. However, instead of explaining the old model and its caching layers, we've created a new guide focusing on what APIs to use ...
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -269,11 +269,11 @@ export default async function Page({ searchParams }) {\n }\n ```\n \n-Using `searchParams` opts your page into [**dynamic rendering**](/docs/app/guides/caching#dynamic-rendering) because it requires an incom...
2026-03-03T13:14:24
nodejs/node
73747597e0e2c4ddf2d437b0aee7f2cc1f0cdfef
3296b2e734cc1b329f3c32aee2c7bdeb4ade7cf4
src: rethrow stack overflow exceptions in async_hooks When a stack overflow exception occurs during async_hooks callbacks (which use TryCatchScope::kFatal), detect the specific "Maximum call stack size exceeded" RangeError and re-throw it instead of immediately calling FatalException. This allows user code to catch th...
[ { "path": "src/async_wrap.cc", "patch": "@@ -68,7 +68,8 @@ static const char* const provider_names[] = {\n void AsyncWrap::DestroyAsyncIdsCallback(Environment* env) {\n Local<Function> fn = env->async_hooks_destroy_function();\n \n- TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal);\n+ TryC...
2025-12-09T22:50:18
electron/electron
6ea7d6d5a45801f9b2d82c279dd8e889c6fc7cc6
27b3a323074fcee55ea2baa361c66a65d2245a9e
chore: bump chromium to 146.0.7633.0 (main) (#49390) * chore: bump chromium in DEPS to 146.0.7633.0 * chore: fixup patch indices * chore: fix unsafe buffer usage in browser_linux.cc --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7628.0',\n+ '146.0.7633.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-01-15T15:52:42
golang/go
0ac9d84e3dd7eacc66b0bcc6bef86a90f4ec7714
ed0367718f3b17677c9112f259d27892b2b53424
reflect: fix support for iter with named boolean in Seq/Seq2 Fixes #77542 Change-Id: Ic2f33f5aabbdf064cbf5aa850f6c08f01352db80 Reviewed-on: https://go-review.googlesource.com/c/go/+/745580 Auto-Submit: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco...
[ { "path": "src/reflect/iter.go", "patch": "@@ -36,7 +36,7 @@ func rangeNum[T int8 | int16 | int32 | int64 | int |\n // Uint, Uint8, Uint16, Uint32, Uint64, Uintptr,\n // Array, Chan, Map, Slice, or String.\n func (v Value) Seq() iter.Seq[Value] {\n-\tif canRangeFunc(v.abiType()) {\n+\tif canRangeFunc(v.abiT...
2026-02-14T10:47:17
facebook/react
056a586928fe1b6186d3693743ac7019ce39cb7b
5cc3d49f72a9e78cce61f7fbfc1b7455f313cebe
[fixtures] Update eslint fixture lockfiles (#34699) Updates the eslint fixture lockfiles. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34699). * #34703 * #34700 * __->__ #34699 * #34675
[ { "path": "fixtures/eslint-v6/yarn.lock", "patch": "@@ -2,15 +2,7 @@\n # yarn lockfile v1\n \n \n-\"@ampproject/remapping@^2.2.0\":\n- version \"2.3.0\"\n- resolved \"https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4\"\n- integrity sha512-30...
2025-10-02T22:42:43
electron/electron
ddeb970f18e6d228937ce1014e4b66624e2d447b
5d802649440ea1813c0d5844506551a82bfe2535
refactor: make `ReplyChannel` inherit from `gin::Wrappable` (#49339) * refactor: make ReplyChannel inherit from gin::Wrappable * chore: add kElectronReplyChannel to chore_add_electron_objects_to_wrappablepointertag.patch * fix: use gin::PerIsolateData::DisposeObserver * fix: lifetime issues * chore: rm perisolated...
[ { "path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch", "patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 573bcb2e56068...
2026-01-15T00:35:01
nodejs/node
7d421c8f29a48a5fe601329ccaf5c16239b3a2bb
fb4389332dc4d6e48faa5ff17e662a5455ba68ab
lib: add TLSSocket default error handler This prevents the server from crashing due to an unhandled rejection when a TLSSocket connection is abruptly destroyed during initialization and the user has not attached an error handler to the socket. e.g: ```js const server = http2.createSecureServer({ ... }) server.on('sec...
[ { "path": "lib/internal/tls/wrap.js", "patch": "@@ -1252,6 +1252,7 @@ function tlsConnectionListener(rawSocket) {\n socket[kErrorEmitted] = false;\n socket.on('close', onSocketClose);\n socket.on('_tlsError', onSocketTLSError);\n+ socket.on('error', onSocketTLSError);\n }\n \n // AUTHENTICATION MODES...
2025-10-31T19:27:48
rust-lang/rust
cbc94349d0ba20d6781cd3892794db55e630922a
148adf223edb0444eb1f99753919dd2080c2a534
core: Destabilize beta-stable `RangeInclusiveIter::remainder` As discussed, make this portion of the range API unstable again. This will now be tracked under `new_range_remainder`. Discussion: https://rust-lang.zulipchat.com/#narrow/channel/327149-t-libs-api.2Fapi-changes/topic/.60RangeFrom.3A.3Aremainder.60.20possib...
[ { "path": "library/core/src/range/iter.rs", "patch": "@@ -175,7 +175,10 @@ impl<A: Step> RangeInclusiveIter<A> {\n /// If the iterator is exhausted or empty, returns `None`.\n ///\n /// # Examples\n+ ///\n /// ```\n+ /// #![feature(new_range_remainder)]\n+ ///\n /// let range = ...
2026-03-27T09:31:38
facebook/react
df3562dc7f4ac7a5e60e76e8fec285890ef60639
b56907db515ea518b7c30015d2c5d5641df35942
Fix DevTools regression tests (#34696)
[ { "path": "packages/react-devtools-shared/src/__tests__/preprocessData-test.js", "patch": "@@ -850,6 +850,7 @@ describe('Timeline profiler', () => {\n `);\n });\n \n+ // @reactVersion >= 19.1\n // @reactVersion < 19.2\n it('should process a sample createRoot render sequence', ...
2025-10-02T19:52:50
golang/go
ed0367718f3b17677c9112f259d27892b2b53424
8411ab9d3d947fc842dd99eadf0ee01e3f6b9477
Revert "cmd/compile: avoid panic in ternary rewrite on checked instructions" This reverts CL 745460. Reason for revert: This just disables the optimization, instead of fixing it. Change-Id: I26350d08c847f666d12450d484312d0baf5f1112 Reviewed-on: https://go-review.googlesource.com/c/go/+/749161 LUCI-TryBot-Result: Go ...
[ { "path": "src/cmd/compile/internal/ssa/issue77582_test.go", "patch": "@@ -1,29 +0,0 @@\n-// Copyright 2026 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build goexperiment.simd && amd64\n-\n-package...
2026-02-25T19:33:49
vercel/next.js
ce14ca88a4e04e1b72021f9b10425ba497acc1b4
ac86a613cf288015c8ae97e170d080c35da1d899
Reimplement code frame rendering in native code (#85592) ## What Replaces the `@babel/code-frame` dependency with a new Rust-based implementation (`next-code-[frame](https://github.com/arthurprs/qfilter/pull/20#issuecomment-3986882055)` crate) for rendering code frames in error messages. ### Why - **Crash fix**: `@...
[ { "path": "Cargo.lock", "patch": "@@ -3448,16 +3448,16 @@ dependencies = [\n \n [[package]]\n name = \"insta\"\n-version = \"1.41.1\"\n+version = \"1.46.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8\"\...
2026-03-03T12:59:11
golang/go
8411ab9d3d947fc842dd99eadf0ee01e3f6b9477
1aa534dbb8970b86b0f4059b7665e3505d145e25
Revert "test/simd: add test for issue 77582" This reverts CL 748760. Reason for revert: 1. the fix in CL 745460 is not really correct. 2. this test doesn't actually reproduce the failure. (It needs to actually use the result, instead of assigning to _.) Change-Id: Ifb3da8954c5e8774ac000ee3bbf92e5813705dd6 Reviewe...
[ { "path": "src/cmd/compile/internal/ssa/issue77582_test.go", "patch": "@@ -1,25 +1,29 @@\n-// compile\n-\n-//go:build goexperiment.simd && amd64\n-\n // Copyright 2026 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 f...
2026-02-25T21:49:08
nodejs/node
6ea77ad552f9f9d8a61c44a82f158213c94b5daf
64022d9fccc9624813a311444e87f2b2985acb22
2026-01-13, Version 25.3.0 (Current) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) https://github.com/nodejs-private/node-private/pull/750 permission: * (CVE-2026-21636) add network check on pipe_wrap connect (RafaelGSS) https://github.com/no...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,7 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.2.1\">25.2.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.3.0\">25.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.2.1\">2...
2026-01-05T18:07:21
vercel/next.js
ac86a613cf288015c8ae97e170d080c35da1d899
01d75f69b5c9ee1019736a8c14ba715bfab2895f
Refactor extractExportedConstValue to return { value } | null instead of throwing (#90510) ## Summary Refactors `extractExportedConstValue` and the internal `extractValue` function to use return values instead of exception-based control flow, improving performance during build analysis. ### Commit 1: Refactor `extra...
[ { "path": "packages/next/src/build/analysis/extract-const-value.ts", "patch": "@@ -16,8 +16,6 @@ import type {\n VariableDeclaration,\n } from '@swc/core'\n \n-export class NoSuchDeclarationError extends Error {}\n-\n function isExportDeclaration(node: Node): node is ExportDeclaration {\n return node.ty...
2026-03-03T12:06:25
facebook/react
70b52beca64aeac447a6cf57cfe1fda0691435c1
4a28227960202539f329338f62d33973e76b32d8
[compiler] `@enablePreserveExistingMemoizationGuarantees` on by default (#34689) This enables `@enablePreserveExistingMemoizationGuarantees` by default. As of the previous PR (#34503), this mode now enables the following behaviors: - Treating variables referenced within a `useMemo()` or `useCallback()` as "frozen" (i...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -210,7 +210,7 @@ export const EnvironmentConfigSchema = z.object({\n * that if a useEffect or useCallback references a function value, that function value will be\n * considered frozen, and in turn all of it...
2025-10-02T17:25:00
electron/electron
5d802649440ea1813c0d5844506551a82bfe2535
dae76c2885fed5130670dc0f13c9083db5d0fa60
chore: bump chromium to 145.0.7628.0 (main) (#49331) * chore: bump chromium in DEPS to 145.0.7620.0 * chore: bump chromium in DEPS to 145.0.7622.0 * chore: bump chromium in DEPS to 145.0.7624.0 * chore: bump chromium in DEPS to 145.0.7626.0 * chore: bump chromium in DEPS to 145.0.7628.0 * 7362759: Migrate various...
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -37,6 +37,22 @@ runs:\n installation-dir: third_party/esbuild\n target-platform: ${{ inputs.target-platform }}\n package: infra/3pp/tools/esbuild/${platform}\n+ - name: Fix rollup\n+ if: ${{ inputs.target-platform ...
2026-01-14T14:34:24
rust-lang/rust
74b3d554b364a0304c80b73cf856736b67f26c69
66067c67a961733a033bbfe5a891bb061bb840b3
Fix rustc_hir::Crate links
[ { "path": "src/doc/rustc-dev-guide/src/hir.md", "patch": "@@ -35,7 +35,7 @@ data structure basically just contains the root module, the HIR\n `Crate` structure contains a number of maps and other things that\n serve to organize the content of the crate for easier access.\n \n-[`Crate`]: https://doc.rust-lan...
2026-03-29T04:52:40
nodejs/node
64022d9fccc9624813a311444e87f2b2985acb22
1f49cd1d86977deca14aae108d8a98e470019baa
2026-01-13, Version 24.13.0 'Krypton' (LTS) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797> * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://githu...
[ { "path": "CHANGELOG.md", "patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V25.md#25.0.0\">25.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.12.0\">24.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.13.0\">24.13.0...
2026-01-07T08:01:45
golang/go
abf84a51fcec1156712be90f8aa2ae58b461aa65
45138d477d5a7547086357218061429d3c80a6be
cmd/go: use 'gcloud storage cp' instead of 'gsutil cp' In some misguided attempt at "cleanup", Google Cloud has decided to retire 'gsutil' in favor of 'gcloud storage' instead of leaving an entirely backwards-compatible wrapper so that client scripts and muscle memory keep working. In addition to breaking customers t...
[ { "path": "src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt", "patch": "@@ -64,4 +64,4 @@ git checkout master\n git merge b -m merge\n \n zip -r ../tagtests.zip .\n-gsutil cp ../tagtests.zip gs://vcs-test/git/tagtests.zip\n+gcloud storage cp ../tagtests.zip gs://vcs-test/git/tagtests.zip", "ad...
2026-02-25T12:59:00
vercel/next.js
01d75f69b5c9ee1019736a8c14ba715bfab2895f
de1add253901ab3a7bbcfe09bfeac2a79f4d39c7
Fix missing const generic parameter in turbo-persistence lookup call (#90817) ### What? Fix a compilation error in `turbo-persistence` test code where the `StaticSortedFile::lookup` call was missing the required `FIND_ALL` const generic parameter. ### Why? After the `FIND_ALL: bool` const generic was added to `Stat...
[ { "path": "turbopack/crates/turbo-persistence/src/static_sorted_file_builder.rs", "patch": "@@ -1658,7 +1658,7 @@ mod tests {\n let sst = open_sst(dir, seq, meta).unwrap();\n let kc = make_cache();\n let vc = make_cache();\n- match sst.lookup(entries[0].hash, &entries[0].key, ...
2026-03-03T11:49:59
facebook/react
a757cb76671863071cf3672401ce1cbdcf040a85
d74f061b6908e4841b2eb09c296ca4658dbdd38e
Fix DevTools fixture crash due to usage of renamed APIs (#34682)
[ { "path": "packages/react-devtools-shell/src/app/InspectableElements/UseEffectEvent.js", "patch": "@@ -1,6 +1,8 @@\n import * as React from 'react';\n \n-const {experimental_useEffectEvent, useState, useEffect} = React;\n+const {useState, useEffect} = React;\n+const useEffectEvent =\n+ React.useEffectEvent...
2025-10-02T12:43:02
rust-lang/rust
369c801eafe69b13c1464f00b0cbf829ff99e721
6e6701e2bd3b2116c9996c7cb1be7381f030ba0d
Clean up enum `LoadResult` - Make the enum non-public - Replace the generic `<T>` with concrete fields - Rename variant `LoadDepGraph` to `IoError`
[ { "path": "compiler/rustc_incremental/src/lib.rs", "patch": "@@ -10,9 +10,8 @@ mod errors;\n mod persist;\n \n pub use persist::{\n- LoadResult, copy_cgu_workproduct_to_incr_comp_cache_dir, finalize_session_directory,\n- in_incr_comp_dir, in_incr_comp_dir_sess, load_query_result_cache, save_work_produ...
2026-03-26T03:41:34
nodejs/node
1f49cd1d86977deca14aae108d8a98e470019baa
4443a11bef5688f0696adec08daf842a7069c5d1
2026-01-13, Version 22.22.0 'Jod' (LTS) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler * (CVE-2025-55132) disable futimes when permission model is enabled lib,permission: * (CVE-2025-55130) require full read and write to symlink APIs src: * (CVE-2025-...
[ { "path": "CHANGELOG.md", "patch": "@@ -66,7 +66,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.21.1\">22.21.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.0\">22.22.0...
2026-01-07T15:40:53
golang/go
a78df5aa0afcd64935f89577c0da0ed2315014ea
60dc96479a85db0e245a5c14d964628169abedf4
cmd/compile: rewriteFixedLoad: ensure AuxInt is sign-extended CL 701297 accidentailly broke the type casting behavior for Hash. Previously, the generated rules for Hash shared a common pattern: v.AuxInt = int32ToAuxInt(fixed32(config, sym, off)) which inherently equaled to a signed-extend: v.AuxInt = int64...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2171,11 +2171,11 @@ func rewriteFixedLoad(v *Value, sym Sym, sb *Value, off int64) *Value {\n \t\t\t\t\treturn v\n \t\t\t\tcase \"Hash\":\n \t\t\t\t\tv.reset(OpConst32)\n-\t\t\t\t\tv.AuxInt = int64(types.TypeHash(t))\n+\t\t\t\t\tv.AuxInt = i...
2026-02-12T06:56:43