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
e2332183591ff3a5657c3322a21bcdcccae32088
05b61f812a2070276c5db0d2107808a6161632fc
Track "Animating" Entry for Gestures while the Gesture is Still On-going (#34548) Stacked on #34546. Same as #34538 but for gestures. Includes various fixes. This shows how it ends with a Transition when you release in the committed state. Note how the Animation of the Gesture continues until the Transition is done...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2320,6 +2320,9 @@ export function startViewTransition(\n mutationCallback();\n layoutCallback();\n // Skip afterMutationCallback(). We don't need it since we're not animating.\n+ if (enableProfilerTimer) ...
2025-09-24T15:26:03
electron/electron
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
vercel/next.js
75af3bbd28bb3368a41323ce864c93e6575dd816
dfbc3dc6b7b395956bf47e92e04aa957cbfcc9a2
Uncached data suspense issue (#90450) <!-- 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 ### Improvin...
[ { "path": "docs/01-app/01-getting-started/08-caching.mdx", "patch": "@@ -284,6 +284,30 @@ Next.js requires you to explicitly handle components that can't complete during\n \n > **🎥 Watch:** Why Partial Prerendering and how it works → [YouTube (10 minutes)](https://www.youtube.com/watch?v=MTcPrTIBkpA).\n \n...
2026-03-05T13:58:15
rust-lang/rust
339fb64d1c751de5d781f4c8d51ae37b613ba644
e18dd4a9925015045bbb54e0291d0bf060cdcf43
skip early return for region-only errors in projection types
[ { "path": "compiler/rustc_trait_selection/src/traits/project.rs", "patch": "@@ -659,7 +659,9 @@ fn project<'cx, 'tcx>(\n )));\n }\n \n- if let Err(guar) = obligation.predicate.error_reported() {\n+ // We can still compute a projection type when there are only region errors,\n+ // but ty...
2026-03-16T14:08:32
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
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
e0c421ab71e26c05afe506662a4574070c13d131
2ee61475100e3d729816467c857366b37a231494
Include SyncLane in includesBlockingLane helper (#34543) This helper weirdly doesn't include the sync lane. Everywhere we use it we have to check the sync lane separately. We can simplify things by simply including the sync lane. This fixes a lack of optimization because we should not check the store consistency for...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -611,10 +611,6 @@ export function includesSyncLane(lanes: Lanes): boolean {\n return (lanes & (SyncLane | SyncHydrationLane)) !== NoLanes;\n }\n \n-export function isSyncLane(lanes: Lanes): boolean {\n- return (lanes & (SyncLane | ...
2025-09-24T13:34:35
rust-lang/rust
e18dd4a9925015045bbb54e0291d0bf060cdcf43
12ab1cf1fd3dc925a846b0eb8a4b39393140fdd3
add `TypeFlags::HAS_NON_REGION_ERROR` and `TypeFlags::HAS_RE_ERROR`
[ { "path": "compiler/rustc_middle/src/ty/region.rs", "patch": "@@ -291,7 +291,7 @@ impl<'tcx> Region<'tcx> {\n }\n ty::ReError(_) => {\n flags = flags | TypeFlags::HAS_FREE_REGIONS;\n- flags = flags | TypeFlags::HAS_ERROR;\n+ flags = flags...
2026-03-16T14:07:03
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
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
facebook/react
24a2ba03fb2e1b59844d98a1ce68dce1e502d8ad
012b371cde3157a8dd46535839fbcda6c2bed1a0
[DevTools] fix: dedupe file fetch requests and define a timeout (#34566) If there is a large owner stack, we could potentially spam multiple fetch requests for the same source map. This adds a simple deduplication logic, based on URL. Also, this adds a timeout of 60 seconds to all fetch requests initiated by fileFetc...
[ { "path": "packages/react-devtools-extensions/src/contentScripts/fileFetcher.js", "patch": "@@ -23,7 +23,7 @@ function fetchResource(url) {\n });\n };\n \n- fetch(url, {cache: 'force-cache'}).then(\n+ fetch(url, {cache: 'force-cache', signal: AbortSignal.timeout(60000)}).then(\n response => {\n ...
2025-09-23T18:38:07
rust-lang/rust
8a5993639b491b69cd5fa6479a058d3f8e162ed8
b1bbd8db82a5008172c7899f8afe78fa9dde9213
PTHREAD_*_INITIALIZER: only compare a prefix on android
[ { "path": "src/tools/miri/src/shims/unix/sync.rs", "patch": "@@ -6,16 +6,20 @@ use crate::*;\n \n /// Do a bytewise comparison of the two places. This is used to check if\n /// a synchronization primitive matches its static initializer value.\n+///\n+/// `prefix`, if set, indicates that only the first N byt...
2026-04-01T08:23:07
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
facebook/react
cad813ac1ed5c04c6ccb390a3bdf5fedbbacaa45
720bb130694169f8d1bf1e8001a2177dd18cdf92
Fix CI from stale merge (#34555)
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt", "patch": "@@ -2,4 +2,4 @@ import type { PluginOptions } from \n 'babel-plugin-react-compiler/dist';\n ({\n   //compilationMode: \"all\"\n-} satisfies Partial<PluginOptions>);\n\\ No newline at end of file\n+} s...
2025-09-23T06:49:16
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
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
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
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
facebook/react
1eca9a2747bfbe9832c3ef1665642e12d7d87d1e
cd85bb561612f9da467a0cb1978afbf843d25757
[playground] Add compiler playground tests (#34528) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please m...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt", "patch": "@@ -0,0 +1,5 @@\n+import type { PluginOptions } from \n+'babel-plugin-react-compiler/dist';\n+({\n+  //compilationMode: \"all\"\n+} satisfies Partial<PluginOptions>);\n\\ No newline at end of file", ...
2025-09-22T16:11:45
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
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
d415fd3ed716f02f463232341ab21e909e0058ca
5e3cd53f20189001711f90d4db671f36d49a91f5
[Flight] Handle Lazy in `renderDebugModel` (#34536) If we don't handle Lazy types specifically in `renderDebugModel`, all of their properties will be emitted using `renderDebugModel` as well. This also includes its `_debugInfo` property, if the Lazy comes from the Flight client. That array might contain objects that a...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -4702,6 +4702,70 @@ function renderDebugModel(\n element._store.validated,\n ];\n }\n+ case REACT_LAZY_TYPE: {\n+ // To avoid actually initializing a lazy causing a side-effect, we make\n+ // ...
2025-09-19T21:38:11
nodejs/node
79ddd1ba10322269777b9de0b9271794eade16cc
24b16509d414cb2f48bb933109c4ac9c7303e0a9
test_runner: fix memory leaks in runner - Close readline interface after child process exits Prevents accumulation of event listeners on stderr stream - Extract watch mode event handler to named function Allows proper cleanup when watch mode is aborted These changes prevent unbounded memory growth in long-runnin...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -460,6 +460,9 @@ function runTestFile(path, filesWatcher, opts) {\n finished(child.stdout, { __proto__: null, signal: t.signal }),\n ]);\n \n+ // Close readline interface to prevent memory leak\n+ rl.close();\n+\n if (watchMode...
2025-11-27T09:30:51
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
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
24b16509d414cb2f48bb933109c4ac9c7303e0a9
a00f5fea7029d3f0791ff6dddabc34b5a0ccf9b4
fs: fix errorOnExist behavior for directory copy in fs.cp PR-URL: https://github.com/nodejs/node/pull/60946 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.c...
[ { "path": "lib/internal/fs/cp/cp.js", "patch": "@@ -300,8 +300,17 @@ async function setDestTimestamps(src, dest) {\n return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime);\n }\n \n-function onDir(srcStat, destStat, src, dest, opts) {\n+async function onDir(srcStat, destStat, src, dest, opts) {\n...
2026-01-17T17:52:38
rust-lang/rust
76d4fb28aef6d0a2bd09087ae380bbfd8a1d44f5
96f289b6a619c8c3d32b239d9374af12a75b6ec2
fix: Not suggest name in nested type in variant Example --- ```rust struct Other; struct Vec<T>(T); enum Foo { Vec(Vec<$0>) } ``` **Before this PR** ```text st Vec<…> Vec<{unknown}> [name] en Foo Foo [] st Other Other [] sp Self Foo [] ``` **After this PR** ```text en Foo Foo [] st Other Other [] sp Self Foo [...
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs", "patch": "@@ -828,10 +828,15 @@ fn expected_type_and_name<'db>(\n .unwrap_or((None, None))\n },\n ast::Variant(it) => {\n+ let is_simple_field = |fiel...
2026-04-01T06:36:34
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
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
facebook/react
6eda534718d09a26d58d65c0a376e05d7e2a3358
c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0
[playground] bug fixes & UX improvements (#34499) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please mak...
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -136,7 +136,7 @@ test('editor should compile from hash successfully', async ({page}) => {\n path: 'test-results/01-compiles-from-hash.png',\n });\n const text =\n- (await page.locator('.monaco-editor').nth(1).allInnerTe...
2025-09-18T19:44:25
nodejs/node
a00f5fea7029d3f0791ff6dddabc34b5a0ccf9b4
a3ddfbe19189efd1aa1b37edf3edae00c2eeab86
test_runner: fix coverage report when a directory is named file The coverage tree traversal checked `tree[key].file` to detect file entries. When a directory named "file" contained a file also named "file", this check incorrectly matched the child entry instead of file metadata, causing a TypeError when accessing `.pa...
[ { "path": "lib/internal/test_runner/utils.js", "patch": "@@ -551,7 +551,7 @@ function getCoverageReport(pad, summary, symbol, color, table) {\n \n function printCoverageBodyTree(tree, depth = 0) {\n for (const key in tree) {\n- if (tree[key].file) {\n+ if (tree[key].file?.path) {\n c...
2026-01-17T17:34:06
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
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
facebook/react
c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0
ad578aa01fcd08488b8378c7538d802e7a1e8b26
Move `getDebugInfo` test util function to `internal-test-utils` (#34523) In an upstack PR, I need `getDebugInfo` in another test file, so I'm moving it to `internal-test-utils` so it can be shared.
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -16,6 +16,7 @@ import {\n clearErrors,\n createLogAssertion,\n } from './consoleMock';\n+export {getDebugInfo} from './debugInfo';\n export {act, serverAct} from './internalAct';\n const {assertConsoleLogsCleared} = require...
2025-09-18T19:32:36
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
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
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
nodejs/node
a3ddfbe19189efd1aa1b37edf3edae00c2eeab86
8365edcbd0d98fdd79993a61302e35d299c3d557
test_runner: print info when test restarts When using spec reporter and running test in watch mode, print an info message containing the current datetime when tests restart. Fixes: https://github.com/nodejs/node/issues/57206 PR-URL: https://github.com/nodejs/node/pull/61160 Reviewed-By: Colin Ihrig <cjihrig@gmail.com...
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -5,6 +5,8 @@ const {\n ArrayPrototypePush,\n ArrayPrototypeShift,\n ArrayPrototypeUnshift,\n+ Date,\n+ DatePrototypeToLocaleString,\n } = primordials;\n const assert = require('assert');\n const Transform = require('internal/streams...
2026-01-17T17:33:57
facebook/react
581321160fe0d9d9ef461174c7e14cbbed341d28
1bcdd224b10999138ef5aa1c1917b28d918e5421
[Compiler Bug] Complier mark ts instantiation expression as reorderable in build hir (#34488) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -3081,6 +3081,12 @@ function isReorderableExpression(\n return true;\n }\n }\n+ case 'TSInstantiationExpression': {\n+ const innerExpr = (expr as NodePath<t.TSInstantiationExpression>).get(\...
2025-09-18T16:34:47
golang/go
60dc96479a85db0e245a5c14d964628169abedf4
fa8595702eba16f757860705157f17f8054a92df
reflect: use &zeroVal[0] instead of nil for data field for zero-sized payloads Because our wrapper functions barf if the pointer is nil, even if we don't actually dereference the pointer. Fixes #77779 Change-Id: Ib1b93d9f0fdc771cd884137007508ba2b1da4b7a Reviewed-on: https://go-review.googlesource.com/c/go/+/748660 R...
[ { "path": "src/reflect/value.go", "patch": "@@ -1288,9 +1288,10 @@ func (v Value) Field(i int) Value {\n \t\t// bunch of zero-sized fields. We must return the zero-sized\n \t\t// fields indirectly, as only ptr-shaped things can be direct.\n \t\t// See issue 74935.\n-\t\t// We use nil instead of v.ptr as it ...
2026-02-24T23:31:08
nodejs/node
8365edcbd0d98fdd79993a61302e35d299c3d557
13a662f55986717313bc5d66e9476e138b681cc8
test_runner: fix rerun ambiguous test failures PR-URL: https://github.com/nodejs/node/pull/61392 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
[ { "path": "lib/internal/test_runner/reporter/rerun.js", "patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ ArrayPrototypeMap,\n ArrayPrototypePush,\n JSONStringify,\n } = primordials;\n@@ -11,19 +12,55 @@ function reportReruns(previousRuns, globalOptions) {\n return async function reporter(sou...
2026-01-17T14:02:35
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
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
golang/go
fa8595702eba16f757860705157f17f8054a92df
e237976802f31e13e98cbde121fa0348f77d8df4
internal/runtime/sys: only use speculation barrier for DIT on Apple Silicon The Apple documentation [0] indicates that when enabling DIT (via MSR), a speculation barrier should be used. The rationale for this is not explained, but one could assume that they perhaps do not treat MSR of a PSTATE bit as a context synchro...
[ { "path": "src/internal/runtime/sys/dit_arm64.s", "patch": "@@ -11,9 +11,17 @@ TEXT ·EnableDIT(SB),$0-1\n MOVB R1, ret+0(FP)\n TBNZ $0, R1, ret\n MSR $1, DIT\n+#ifdef GOOS_darwin\n+ // Arm documents that barriers are not necessary when writing to, or reading\n+ // from, PSTATE fields. Howe...
2026-02-24T16:58:39
facebook/react
1bcdd224b10999138ef5aa1c1917b28d918e5421
84af9085c11411e44cc5e5aee6cf00c02a78986e
[compiler] Don't show hint about ref-like naming if we infer another type (#34521) Some components accept a union of a ref callback function or ref object. In this case we may infer the type as a function due to the presence of invoking the ref callback function. In that case, we currently report a "Hint: name `fooRef...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -1816,8 +1816,16 @@ function computeSignatureForInstruction(\n }\n case 'PropertyStore':\n case 'ComputedStore': {\n+ /**\n+ * Add a hint about naming as \"ref\"/\"-Re...
2025-09-18T16:26:10
golang/go
874c3ceb3fcca850ccf9443974dce72abe112521
8d5e57474c4fe6d653327a49d460d4010c1d1d9b
cmd/compile: add loclist for removed DCL nodes Certain return parameters which live in registers and end up pruned by earlier SSA passes will end up with a DWARF entry but no location list. This patch fixes this by ensuring those params have proper location lists generated for them. Change-Id: I4fff074e62c3010abdee85...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -236,6 +236,8 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t// reliably report its contents.\"\n \t// For non-SSA-able arguments, however, the correct information\n \t// is known -- they have a sin...
2025-08-14T21:48:46
nodejs/node
13a662f55986717313bc5d66e9476e138b681cc8
70ec5c009d87c93e4f9f8fb03b40897b4515f327
fs: fix ENOTDIR in globSync when file is treated as dir `fs.globSync` failed with `ENOTDIR` when a path component in a glob pattern was a file but used as a directory (e.g., 'foo{,/bar}' when 'foo' is a file). This change aligns `getDirentSync` with the asynchronous `getDirent` by wrapping the `lstatSync` call in a `...
[ { "path": "lib/internal/fs/glob.js", "patch": "@@ -65,8 +65,10 @@ async function getDirent(path) {\n * @returns {DirentFromStats|null}\n */\n function getDirentSync(path) {\n- const stat = lstatSync(path, { throwIfNoEntry: false });\n- if (stat === undefined) {\n+ let stat;\n+ try {\n+ stat = lstat...
2026-01-17T13:33:55
facebook/react
e3c9656d20618ed321aea85cb3d844cbd1dce078
27b4076ab051b4d0e1ae6cec3266367294df024c
Ensure Performance Track are Clamped and Don't overlap (#34509) This simplifies the logic for clamping the start times of various phases. Instead of checking in multiple places I ensure we compute a value for each phase that is then clamped to the next phase so they don't overlap. If they're zero they're not printed. ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -636,38 +636,52 @@ export function logBlockingStart(\n ): void {\n if (supportsUserTiming) {\n currentTrack = 'Blocking';\n+ // Clamp start times\n+ if (updateTime > 0) {\n+ if (updateTime > renderStartTim...
2025-09-17T14:52:02
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
8d5e57474c4fe6d653327a49d460d4010c1d1d9b
4afaf67ab44508258995371b09d16efd3c29edb0
builtin: update new function comment The function comment for new does not reflect the recent change in behaviour since Go 1.26. Fixes #77584 Change-Id: I501d701adb5a1c2ff4b559c243ba07bbef4940d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/746561 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit:...
[ { "path": "src/builtin/builtin.go", "patch": "@@ -122,6 +122,10 @@ type Type int\n // invocation.\n type Type1 int\n \n+// TypeOrExpr is here for the purposes of documentation only. It is a stand-in\n+// for either a Go type or an expression.\n+type TypeOrExpr int\n+\n // IntegerType is here for the purpose...
2026-02-18T16:12:31
facebook/react
78997291302c42b788dafa4c12da246e44be2dda
a51f925217e7c2a92fe4df707487acb29cb12b1e
[compiler] Option to treat "set-" prefixed callees as setState functions (#34505) Calling setState functions during render can lead to extraneous renders or even infinite loops. We also have runtime detection for loops, but static detection is obviously even better. This PR adds an option to infer identifers as setSt...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -621,6 +621,13 @@ export const EnvironmentConfigSchema = z.object({\n */\n enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(true),\n \n+ /**\n+ * Treat identifiers as SetState type if both\n+ * -...
2025-09-16T22:48:27
nodejs/node
70ec5c009d87c93e4f9f8fb03b40897b4515f327
4f6759b738efe2ee16c210d7376e126c4f5dd27a
meta: fix typos in issue template config PR-URL: https://github.com/nodejs/node/pull/61399 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: R...
[ { "path": ".github/ISSUE_TEMPLATE/config.yml", "patch": "@@ -5,10 +5,10 @@ contact_links:\n about: Please file an issue in our help repo.\n - name: 📦 Have an issue with npm?\n url: https://github.com/npm/cli/issues\n- about: npm has a seperate issue tracker.\n+ about: npm has a separate iss...
2026-01-17T10:14:31
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
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
facebook/react
5e0c951b58a98feed034e2bb92f25ae6d0616855
348a4e2d44fed940313d0657ee180083d12ffc04
Add forwards fill mode to animations in view transition fixture (#34502) It turns out that View Transitions can sometimes overshoot and then we need to ensure it fills. It can otherwise sometimes flash in Chrome. This is something users might hit as well.
[ { "path": "fixtures/view-transition/src/components/Transitions.module.css", "patch": "@@ -56,10 +56,10 @@\n }\n \n ::view-transition-new(.enter-slide-right):only-child {\n- animation: enter-slide-right ease-in 0.25s;\n+ animation: enter-slide-right ease-in 0.25s forwards;\n }\n ::view-transition-old(.exit...
2025-09-16T14:20:40
golang/go
8438ace20738cbb1faab5708837e57a50aa774d3
c2fabf1a268f0480d78bede82fc6a9d3a63fcace
cmd/compile: avoid panic in ternary rewrite on checked instructions The replace function in rewritetern.go was panicing when encountering instructions that had already been processed. This adds a check to ensure we don't trigger a panic on these instructions. Fixes #77582 Change-Id: I0b38312109b9cedaa1cb1320015097d6...
[ { "path": "src/cmd/compile/internal/ssa/issue77582_test.go", "patch": "@@ -0,0 +1,29 @@\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-13T19:44:32
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
955d34788415738a0bdc7c91e61384bbf30fa5ac
aa98dd0b94d7a3f9baa11a883368773c1dd6fd99
assert,util: fix deep comparison for sets and maps with mixed types When comparing a Set or a Map and they contain primitives as keys as well as objects, the primitives would always be skipped. That is not correct, since that may only be skipped in case all keys are objects. Fixes: https://github.com/nodejs/node/issu...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -669,8 +669,10 @@ function setObjectEquiv(array, a, b, mode, memo) {\n if (b.has(val1)) {\n continue;\n }\n- } else if (mode !== kLoose || b.has(val1)) {\n+ } else if (b.has(val1)) {\n continue;\n+ } ...
2026-01-17T01:12:45
facebook/react
92d7ad5dd976f4b7bc22abc507569b30609b1579
67a44bcd1b09ab809cf503b39c2568212e13e1a5
[DevTools] fix: validate url in file fetcher bridging calls (#34498) This was prone to races and sometimes messed up symbolication when multiple source maps were fetched simultaneously.
[ { "path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js", "patch": "@@ -82,7 +82,7 @@ const fetchFromPage = async (url, resolve, reject) => {\n debugLog('[main] fetchFromPage()', url);\n \n function onPortMessage({payload, source}) {\n- if (source === 'react-devtools-background...
2025-09-15T17:14:09
golang/go
01b795bc4c6ea54648c60ade6691ad306c0405d3
370513491ab89fe25afb8a4864c409a3dff836b1
log/syslog: document that this package no longer works after macOS 12.0 Per https://developer.apple.com/documentation/os/logging, Apple's syslog no longer uses the legacy syslog and Apple System Logger (ASL) APIs as of macOS 12.X (Monterey), 13.X (Ventura) and thus this package no longer works and no longer listens on...
[ { "path": "src/log/syslog/doc.go", "patch": "@@ -22,3 +22,8 @@ package syslog\n // see https://golang.org/issue/1108.\n \n // BUG(akumar): This package is not implemented on Plan 9.\n+\n+// BUG(odeke-em): As of Darwin's macOS 12.X (Monterey), Apple's syslog daemon no\n+// longer listens on a UNIX domain soc...
2025-12-25T07:35:27
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
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
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
rust-lang/rust
50c6679c0b60cac63fd02806e776cd27de928b6c
95d5ecf3ab075e82503f4fb40893ac5899442653
fix unit test naming style
[ { "path": "tests/ui/trait-bounds/deep-level-send-bound-check-issue-40827.stderr", "patch": "@@ -1,5 +1,5 @@\n error[E0277]: `Rc<Foo>` cannot be shared between threads safely\n- --> $DIR/deep-level-Send-bound-check-issue-40827.rs:14:7\n+ --> $DIR/deep-level-send-bound-check-issue-40827.rs:14:7\n |\n LL ...
2026-04-01T01:22:17
facebook/react
67a44bcd1b09ab809cf503b39c2568212e13e1a5
3fa927b6746a8666309ba1dc945f022b55b94b27
Playground applied configs (#34474) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure the fol...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,37 +6,41 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n+import {PluginOptions} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n import * as mona...
2025-09-15T16:13:28
golang/go
370513491ab89fe25afb8a4864c409a3dff836b1
0bd25dc875a3157974c06ba8d4fb33f95ac2dfdd
internal/profile: fix error message casing for function ID not found Go convention: error messages should not be capitalized Change-Id: I021f54791b7c12ffffa7106532a33cd0ee2e9377 GitHub-Last-Rev: dfa6e0ff5212deb105c747ed80041eff5efc4447 GitHub-Pull-Request: golang/go#77013 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/internal/profile/encode.go", "patch": "@@ -232,7 +232,7 @@ func (p *Profile) postDecode() error {\n \t\t\tif id := ln.functionIDX; id != 0 {\n \t\t\t\tl.Line[i].Function = functions[id]\n \t\t\t\tif l.Line[i].Function == nil {\n-\t\t\t\t\treturn fmt.Errorf(\"Function ID %d not found\", id)\n+...
2025-12-27T14:26:09
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
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
rust-lang/rust
b994a05bc3868a929795c9eab4abcb5d63c5a438
e4fdb554ad2c0270473181438e338c42b5b30b0c
Fix pattern assignment suggestions for uninitialized bindings
[ { "path": "compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs", "patch": "@@ -914,32 +914,36 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if show_assign_sugg {\n struct LetVisitor {\n decl_span: Span,\n- sugg_span: Option<Span>,\n+ ...
2026-04-01T02:06:20
facebook/react
3fa927b6746a8666309ba1dc945f022b55b94b27
47664deb8e981ec0425731495be1c5826ce90956
Fix some DevTools regression test actions and assertions (#34459)
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -93,7 +93,9 @@ test.describe('Components', () => {\n \n const name = isEditable.name\n ? existingNameElements[0].value\n- : existingNameElements[0].innerText;\n+ : existingNameEl...
2025-09-15T13:31:58
golang/go
bdd4c38ce3c568efaf274281c40ecc6288c655a6
5e6a6840ae64c60a14d4c027720af5d82710e39f
runtime/cgo: fix setg_gcc call on aix/ppc64 aix/ppc64 uses function descriptors instead of function pointers. CL 708235 assumed the latter, which caused a crash when calling setg_gcc. Fix the call by dereferencing the function descriptor to get the entry point and TOC. Tested using gomote, as LUCI builders still don...
[ { "path": "src/runtime/cgo/gcc_aix_ppc64.S", "patch": "@@ -40,8 +40,11 @@ crosscall1:\n \tmr\t30, 5\n \n \t// Call setg_gcc(g)\n+\t// Function pointers are function descriptors.\n+\t// Dereference setg_gcc to get the entry point and TOC.\n \tmr\t3, 5 // arg g\n-\tmr\t12, 4 // setg_gcc\n+\tld\t12, 0...
2026-02-23T09:56:29
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
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
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
facebook/react
68f00c901c05e3a91f6cc77b660bc2334700f163
93d7aa69b29c20529c40cf64b0afdb5d51c9ddd1
Release Activity in Canary (#34374) ## Overview This PR ships `<Activity />` to the `react@canary` release channel for final feedback and prepare for semver stable release. ## What this means Shipping `<Activity />` to canary means it has gone through extensive testing in production, we are confident in the stabili...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -1,7 +1,7 @@\n import React, {\n unstable_addTransitionType as addTransitionType,\n unstable_ViewTransition as ViewTransition,\n- unstable_Activity as Activity,\n+ Activity,\n useLayoutEffect,\n useEffect,\n useState,", ...
2025-09-12T16:47:40
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
facebook/react
20e5431747347796b3be8312e56cef655b26ef4d
1a27af36073d7dffcc7a4284ed569af6f804747a
[Flight][Fiber] Encode owner in the error payload in dev and use it as the Error's Task (#34460) When we report an error we typically log the owner stack of the thing that caught the error. Similarly we restore the `console.createTask` scope of the catching component when we call `reportError` or `console.error`. We ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -3181,11 +3181,27 @@ function resolveErrorDev(\n 'An error occurred in the Server Components render but no message was provided',\n ),\n );\n- const rootTask = getRootTask(response, env);\n- if (rootTask != null) {\n- ...
2025-09-12T15:55:07
rust-lang/rust
95d5ecf3ab075e82503f4fb40893ac5899442653
e4fdb554ad2c0270473181438e338c42b5b30b0c
Fix associated bound suggestion span issue
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/note_and_explain.rs", "patch": "@@ -105,7 +105,13 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {\n if !sp.contains(p_span) {\n diag.span_label(p_span, format!(\"{expected}this type parameter\"));\n...
2026-04-01T01:21:45
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
e1e73b316c6b67ebbd55542b01f5581db62046d5
ca94cf12479f2a2c065215218f6a3f5fc7bfe1f4
runtime: printquoted: fix decoderune call go.dev/cl/742305 had a stale signature for decoderune, which was updated in go.dev/cl/725101 (converting an argument and return value from int to uint). Add appropriate conversions. Change-Id: Ia4e5bcbab4275d5a988c9dce552cd7590474b995 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/runtime/print.go", "patch": "@@ -217,7 +217,7 @@ func printquoted(s string) {\n \t\t\tcontinue\n \t\tcase runeError:\n \t\t\t// Distinguish errors from a valid encoding of U+FFFD.\n-\t\t\tif _, j := decoderune(s, i); j == i+1 {\n+\t\t\tif _, j := decoderune(s, uint(i)); j == uint(i+1) {\n \t\...
2026-02-24T00:42:32
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
facebook/react
1a27af36073d7dffcc7a4284ed569af6f804747a
0e10ee906e3ea55e4d717d4db498e1159235b06b
[playground] Update the playground UI (#34468) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make s...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt", "patch": "@@ -1,5 +1,4 @@\n-import { c as _c } from \"react/compiler-runtime\"; // \n-@compilationMode:\"all\"\n+import { c as _c } from \"react/compiler-runtime\"; // @compilationMode:\"all\"\n fun...
2025-09-12T15:43:04
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
rust-lang/rust
1d0dcfab18b1f80e86d691e7082e297f7ce940c1
ba11b1e3f09829428844b74829146fcf7c38d3d0
c-variadic: error when we can't guarantee that the backend does the right thing specifically this emits an error when - a custom target is used - `RiscV32 if self.llvm_abiname == "ilp32e"` this abi is used for 32-bit embedded targets, and clang/llvm document that the ABI may change in the future.
[ { "path": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -760,7 +760,7 @@ impl<'a> AstValidator<'a> {\n match fn_ctxt {\n FnCtxt::Foreign => return,\n FnCtxt::Free | FnCtxt::Assoc(_) => {\n- if !self.sess.target.arch.supports_c_variadic_definit...
2026-02-21T12:36:05
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
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
facebook/react
f3a803617ec4ba9d14bf5205ffece28ed1496a1d
fe84397e81c94a7bccdf0479994a7d0363a12115
[Flight] Ensure async info owners are outlined properly (#34465) When we emit objects of type `ReactAsyncInfo`, we need to make sure that their owners are outlined, using `outlineComponentInfo`. Otherwise we would end up accidentally emitting stashed fields that are not part of the transport protocol, specifically `de...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2384,6 +2384,11 @@ function visitAsyncNode(\n // Promise that was ultimately awaited by the user space await.\n serializeIONode(request, ioNode, awaited.promise);\n \n+ // Ensure the owner is a...
2025-09-11T16:10:25
golang/go
215a070a049ce449480ca6948e7fafdeb7b16920
54ebdf61517436a15f3119d1c117cf367a483ad2
net/smtp: prevent test failures due to expired test certificate The current localhostCert used for testing seems to have its expiry date mistakenly set to Mar 18 19:27:54 2026 GMT. To prevent test failures, use fixed time in tests. Also, regenerate the certificate so we can fix the time to UNIX epoch (the current cer...
[ { "path": "src/net/smtp/smtp_test.go", "patch": "@@ -1125,6 +1125,7 @@ func init() {\n \ttestRootCAs.AppendCertsFromPEM(localhostCert)\n \ttestHookStartTLS = func(config *tls.Config) {\n \t\tconfig.RootCAs = testRootCAs\n+\t\tconfig.Time = func() time.Time { return time.Unix(0, 0) }\n \t}\n }\n \n@@ -1138,5...
2026-02-10T22:17:19
rust-lang/rust
8c043676a112155d824c9748534639704c145652
70dd3bceca234ba2957f14d4083ea29ce29f1872
Refactor `get_standard_error_message`
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs", "patch": "@@ -196,6 +196,13 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n } = self.on_unimplemented_note(main_trait_predicate, main_obligation, &mut long_ty_file);\n \n ...
2026-03-31T21:21:46
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
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
golang/go
54ebdf61517436a15f3119d1c117cf367a483ad2
04772f022a1cb19f2596fa241ecc24bcb7f4dce5
cmd/compile: fix a typo in startRegs drop condition Fix startRegs drop condition: it used `== 1` instead of `!= 0`, causing the startRegs optimization to only work for register R0. This left unnecessary register bits in startRegs, resulting in extra shuffle-generated OpLoadReg operations on merge edges. The practical...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -507,7 +507,7 @@ func (s *regAllocState) allocReg(mask regMask, v *Value) register {\n \t// and now then there is no reason to even request it on entry. We can\n \t// drop from startRegs in that case.\n \tif s.usedSinceBlockStart&(regMask(1)...
2026-02-14T07:38:17
facebook/react
fe84397e81c94a7bccdf0479994a7d0363a12115
b1c519f3d40932c126523dcad745ed9e06ddd636
[compiler][playground] (4/N) Config override panel (#34436) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -10,14 +10,8 @@ import type {editor} from 'monaco-editor';\n import * as monaco from 'monaco-editor';\n import React, {useState, useCallback} from 'react';\n import {Resizable} from 're-resizable';\n-import {useSnackbar} f...
2025-09-11T15:51:32
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
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
1b2679b3150478054280fa1afb3a9223fd8dae87
15acf7076015cf226d60f5584cc234dad36b541d
fix: revert os_crypt async cookie provider implementation (#49382) * Revert "fix: provide explicit cookie encryption provider for cookie encryption (#49348)" This reverts commit 95f097a392dbdfd7c0e38a7d55bf14dad92de1fd. * Revert "fix: fix cookie encryption provider loading on Windows and Linux (#49371)" This revert...
[ { "path": "BUILD.gn", "patch": "@@ -465,8 +465,6 @@ source_set(\"electron_lib\") {\n \"//components/os_crypt/async/browser\",\n \"//components/os_crypt/async/browser:key_provider_interface\",\n \"//components/os_crypt/sync\",\n- \"//components/password_manager/core/browser:password_switches\"...
2026-01-14T08:34:00
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
rust-lang/rust
64cf1ec68503f10cda5dcc88df2209d22ec3dd08
0f159dc1acb2ad04e0eb88b83943a9ef4520fee3
Update `Erasable` impls for lists. - Merge the `List` and `ListWithCachedTypeInfo` impls by referring to the shared underlying type, `RawList`. This required increasing the visibility of `RawList`. - Explain why a separate impl is needed for `RawList`. - Remove an incorrect FIXME comment. Fat reference types wil...
[ { "path": "compiler/rustc_middle/src/query/erase.rs", "patch": "@@ -109,8 +109,6 @@ pub fn restore_val<T: Erasable>(erased_value: Erased<T>) -> T {\n unsafe { transmute_unchecked::<MaybeUninit<T::Storage>, T>(data) }\n }\n \n-// FIXME(#151565): Using `T: ?Sized` here should let us remove the separate\n-...
2026-03-31T01:23:22
electron/electron
0e4ee9f03a301557b500bd6d7b33321b89b6f3c9
ae94cefdba1cac0e311c7ced8f71fcc1d4b74a8c
fix: fix cookie encryption provider loading on Windows and Linux (#49371) * fix: support cookie encryption provider cross-platform * fix: add async macos key provider
[ { "path": "BUILD.gn", "patch": "@@ -465,6 +465,8 @@ source_set(\"electron_lib\") {\n \"//components/os_crypt/async/browser\",\n \"//components/os_crypt/async/browser:key_provider_interface\",\n \"//components/os_crypt/sync\",\n+ \"//components/password_manager/core/browser:password_switches\"...
2026-01-13T03:39:29
rust-lang/rust
147d11099f47c4013cff1d8d67d5d8da722b7fe9
c0e8750beac073b8d377db2d608fba45ff1e1cba
fixing tidy issues
[ { "path": "tests/ui/enum/enum_u8_variant.rs", "patch": "@@ -1,5 +1,6 @@\n //@ run-pass\n-//Test that checks pattern matching works correctly on a repr(u8) enum whose only variant contains an inner 'u8' field\n+//Test that checks pattern matching works correctly on a repr(u8) enum\n+// whose only variant con...
2026-03-31T19:36:37