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
electron/electron
c7b0bdab7e699aeeb58137a06e16d0432834e21a
686ae476963ed138135bc5f2934addcd1cc1e4ac
fix: explicitly call GetNativeNSView() on macOS (#46733) * fix: explicitly call GetNativeNSView() on macOS * chore: move macOS impl to a .mm file This is needed in order to access gfx::NativeView::GetNativeNSView()
[ { "path": "filenames.gni", "patch": "@@ -125,6 +125,7 @@ filenames = {\n \"shell/browser/animation_util.h\",\n \"shell/browser/animation_util_mac.mm\",\n \"shell/browser/api/electron_api_app_mac.mm\",\n+ \"shell/browser/api/electron_api_base_window_mac.mm\",\n \"shell/browser/api/electron...
2025-04-23T22:55:18
vercel/next.js
bd90b6c581532788f8f1492d03a2587f8e17fa88
54476c9c645a482e6363406cd9c8849bec0805a2
[CC] Fix dev validation error from server action bound args (#88600) In Cache Components, bound args encryption needs to be cached (and tracked with cacheSignal) because it's tasky. We use the serialized bound args themselves as a cache key. However, in dev, the key ends up containing debug info (in particular, timing...
[ { "path": "packages/next/src/server/app-render/encryption.ts", "patch": "@@ -153,11 +153,35 @@ export const encryptActionBoundArgs = React.cache(\n })\n }\n \n+ const prerenderResumeDataCache = workUnitStore\n+ ? getPrerenderResumeDataCache(workUnitStore)\n+ : null\n+ const renderR...
2026-01-15T20:17:52
rust-lang/rust
74776c4008a668e70733e16d8cf8519f3551e388
fd0c901b00ee1e08a250039cdb90258603497e20
Rewrite `query_ensure_result`. It currently uses chaining which is concise but hard to read. There are up to four implicit matches occurring after the call to `execute_query_fn`. - The first `map` on `Option<Erased<Result<T, ErrorGuaranteed>>>`. - The second `map` on `Option<Result<T, ErrorGuaranteed>>`. - The third `...
[ { "path": "compiler/rustc_middle/src/query/inner.rs", "patch": "@@ -77,23 +77,34 @@ where\n C: QueryCache<Value = Erased<Result<T, ErrorGuaranteed>>>,\n Result<T, ErrorGuaranteed>: Erasable,\n {\n+ let convert = |value: Erased<Result<T, ErrorGuaranteed>>| -> Result<(), ErrorGuaranteed> {\n+ ...
2026-03-19T00:06:21
facebook/react
0ca3deebcf20d2514771a568e1be08801da5cf85
99e1024051f2e6b2d2849b966e2f4354aef2a1d0
[rcr] Fix incorrect output platform (#32569) Accidentally copypasted the wrong esbuild config.
[ { "path": "compiler/packages/react-compiler-runtime/scripts/build.js", "patch": "@@ -1,67 +0,0 @@\n-#!/usr/bin/env node\n-\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of this s...
2025-03-11T14:41:48
nodejs/node
9d744b5b63cae4e377041432c2e19ce384703ef2
7a47cbf4c52bec8cedf3933010747136c7468d5e
crypto: use CryptoKey internal slots in Web Cryptography PR-URL: https://github.com/nodejs/node/pull/59538 Fixes: https://github.com/nodejs/node/issues/59535 Fixes: https://github.com/nodejs/node/issues/59534 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafa...
[ { "path": "lib/internal/crypto/aes.js", "patch": "@@ -47,6 +47,7 @@ const {\n InternalCryptoKey,\n SecretKeyObject,\n createSecretKey,\n+ kAlgorithm,\n } = require('internal/crypto/keys');\n \n const {\n@@ -108,7 +109,7 @@ function asyncAesCtrCipher(mode, key, data, algorithm) {\n mode,\n key...
2025-08-19T12:02:15
rust-lang/rust
b2e8177455cad2c001a58d43a4dec6d896cea0ad
fd0c901b00ee1e08a250039cdb90258603497e20
Reorder `define_callbacks`. This is nitpicky, but the lack of a sensible order has been bugging me. - Within `mod $name`, put all the typedefs together. - After that: - First, types definitions and their impls. - Then the `TyCtxt*` impls, in a sensible order. - Likewise, put `TyCtxt::at` before the similar me...
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -201,6 +201,13 @@ pub struct TyCtxtEnsureDone<'tcx> {\n }\n \n impl<'tcx> TyCtxt<'tcx> {\n+ /// Returns a transparent wrapper for `TyCtxt` which uses\n+ /// `span` as the location of queries performed through it.\n+ #[inline(alwa...
2026-03-19T04:59:16
facebook/react
99e1024051f2e6b2d2849b966e2f4354aef2a1d0
696950aa69e3f2ef0d720c82705e02b532904d70
Check if a child is a new child before calling moveBefore (#32567) This fixes a critical issue with moveBefore. I was told that the disconnected -> connected case was going to be relaxed and not be an error but apparently that is not the case. This means that we can't use this for initial insertions. Only moves. Unf...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -808,7 +808,7 @@ export function appendChild(\n parentInstance: Instance,\n child: Instance | TextInstance,\n ): void {\n- if (supportsMoveBefore) {\n+ if (supportsMoveBefore && child.parentNode !== null) {\n /...
2025-03-10T22:12:43
nodejs/node
7a47cbf4c52bec8cedf3933010747136c7468d5e
b6b7f39d3adce215ac47a14c55131850b18eafed
crypto: normalize RsaHashedKeyParams publicExponent Fixes: https://github.com/nodejs/node/issues/59535 PR-URL: https://github.com/nodejs/node/pull/59538 Fixes: https://github.com/nodejs/node/issues/59534 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafael Go...
[ { "path": "lib/internal/crypto/util.js", "patch": "@@ -397,7 +397,9 @@ const kSupportedAlgorithms = createSupportedAlgorithms(kAlgorithmDefinitions);\n \n const simpleAlgorithmDictionaries = {\n AeadParams: { iv: 'BufferSource', additionalData: 'BufferSource' },\n- RsaHashedKeyGenParams: { hash: 'HashAlg...
2025-08-19T11:59:57
electron/electron
dd03cceda0384f62540b0cea650e73b091eab34b
d0e13cc2625012ecbb2dac242c861dee5346d9fc
chore: bump chromium to 137.0.7128.1 (main) (#46482) * chore: bump chromium in DEPS to 137.0.7107.0 * chore: bump chromium in DEPS to 137.0.7109.0 * chore: bump chromium in DEPS to 137.0.7111.0 * chore: bump chromium in DEPS to 137.0.7113.0 * 6384240: Remove double-declaration for accessibility on macOS | https://...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '136.0.7095.0',\n+ '137.0.7128.1',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2025-04-22T19:53:29
golang/go
62cd044a79b9f2ba889bca59b3b12400dc41dd85
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
cmd/compile: add cases for StringLen to prove Tricky index-offset logic had been added for slices, but not for strings. This fixes that, and also adds tests for same behavior in string/slice cases, and adds a new test for code in prove that had been added but not explicitly tested. Fixes #76270. Change-Id: Ibd92b89...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2040,14 +2040,14 @@ func (ft *factsTable) flowLimit(v *Value) {\n //\n // slicecap - index >= slicelen - index >= K\n //\n-// Note that \"index\" is not useed for indexing in this pattern, but\n+// Note that \"index\" is not used for indexing ...
2025-11-24T20:00:11
nodejs/node
499a5c345165f0d4a94b98d08f1ace7268781564
a43f984761103acdfd6c3fd82ec62ce7e60bdbfb
test: fix `test-setproctitle` status when `ps` is not available PR-URL: https://github.com/nodejs/node/pull/59523 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "test/parallel/test-setproctitle.js", "patch": "@@ -4,7 +4,7 @@ const common = require('../common');\n const { isMainThread } = require('worker_threads');\n \n // FIXME add sunos support\n-if (common.isSunOS || common.isIBMi) {\n+if (common.isSunOS || common.isIBMi || common.isWindows) {\n commo...
2025-08-20T18:24:04
rust-lang/rust
a3e469ea1f03936e2156b7d683aa7fc83d56a252
fcdaca4d9b14274ddcfa47eda8183d3db9be4137
fix some outdated comments in tests
[ { "path": "src/tools/miri/tests/fail/stacked_borrows/transmute-is-no-escape.rs", "patch": "@@ -2,7 +2,7 @@\n // (i.e, no EscapeToRaw happened).\n // We could, in principle, do EscapeToRaw lazily to allow this code, but that\n // would no alleviate the need for EscapeToRaw (see `ref_raw_int_raw` in\n-// `run...
2026-03-19T06:48:27
golang/go
f1e376f342af82d6f5bdba23cdc5c35b5bfd9064
7fbd141de506e331ef3f5910b505ece91a012e4a
cmd/go/internal/auth: fix typo Change-Id: Ic113d59144aa2d37c8988559fbc086f5c29c0b69 GitHub-Last-Rev: e2623be0a00464d9be845da53fb1a67520fc1716 GitHub-Pull-Request: golang/go#76397 Reviewed-on: https://go-review.googlesource.com/c/go/+/722861 Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/go/internal/auth/userauth.go", "patch": "@@ -48,7 +48,7 @@ func runAuthCommand(command string, url string, res *http.Response) (map[string]\n // parseUserAuth parses the output from a GOAUTH command and\n // returns a mapping of prefix → http.Header without the leading \"https://\"\n // o...
2025-11-21T15:59:20
electron/electron
d0e13cc2625012ecbb2dac242c861dee5346d9fc
858a93f886f8a09f9d7347e95bf73c4e5441890e
fix: file dialog filters not working correctly (#46660)
[ { "path": "shell/browser/ui/file_dialog_linux.cc", "patch": "@@ -44,14 +44,14 @@ ui::SelectFileDialog::FileTypeInfo GetFilterInfo(const Filters& filters) {\n ui::SelectFileDialog::FileTypeInfo file_type_info;\n \n for (const auto& [name, extension_group] : filters) {\n- file_type_info.extension_descr...
2025-04-22T11:31:04
vercel/next.js
8e5146f7c5387ae49f249e0375415f068ed600a2
5ec2d23633e320c9bce704442129cfe188ca44ee
Fix optional `parent_task_id` compile failure w/`tokio_tracing` enabled (#88598)
[ { "path": "turbopack/crates/turbo-tasks/src/manager.rs", "patch": "@@ -846,8 +846,8 @@ impl<B: Backend + 'static> TurboTasks<B> {\n \n #[cfg(feature = \"tokio_tracing\")]\n let description = format!(\n- \"[local] (parent: {}) {}\",\n- self.backend.get_task_description(p...
2026-01-15T18:04:39
rust-lang/rust
f60b6499d84ccf8bf0c325bf7ff3f736e134b730
fd0c901b00ee1e08a250039cdb90258603497e20
rustc_resolve: improve const generic errors Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_resolve/src/build_reduced_graph.rs", "patch": "@@ -898,7 +898,7 @@ impl<'a, 'ra, 'tcx> BuildReducedGraphVisitor<'a, 'ra, 'tcx> {\n }\n \n // These items live in both the type and value namespaces.\n- ItemKind::Struct(ident, _, ref vdata) => {\n+ ...
2026-02-20T14:41:37
nodejs/node
7535aa1f72ac0e8e8ae94e9c9d873be7ae0bc711
db70ceb49f90a66008026ccec261f088d0576013
esm: link modules synchronously when no async loader hooks are used When no async loader hooks are registered, perform the linking as synchronously as possible to reduce the chance of races from the the shared module loading cache. PR-URL: https://github.com/nodejs/node/pull/59519 Fixes: https://github.com/nodejs/nod...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -65,6 +65,8 @@ let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {\n debug = fn;\n });\n \n+const { isPromise } = require('internal/util/types');\n+\n /**\n * @typedef {import('./hooks.js').HooksProxy} HooksProxy\n * @typed...
2025-08-18T14:08:59
electron/electron
e383eaa465d5f7d3b89db69c0ce23128342536b0
274b1485540919c4f476819fca94656f8138185b
fix: stop menu minimization if set false (#46279)
[ { "path": "lib/browser/api/menu-item-roles.ts", "patch": "@@ -78,7 +78,9 @@ export const roleList: Record<RoleId, Role> = {\n minimize: {\n label: 'Minimize',\n accelerator: 'CommandOrControl+M',\n- windowMethod: w => w.minimize()\n+ windowMethod: w => {\n+ if (w.minimizable) w.minimize...
2025-04-22T08:58:30
golang/go
7fbd141de506e331ef3f5910b505ece91a012e4a
0bc192368ac603614dc3f240e751f539d91a1db2
runtime: use m.profStack in traceStack Turns out we spend a few percent of the trace event writing path in just zero-initializing the stack space for pcBuf. We don't need zero initialization, since we're going to write over whatever we actually use. Use m.profStack instead, which is already sized correctly. A side-ef...
[ { "path": "src/runtime/tracestack.go", "patch": "@@ -30,7 +30,7 @@ const (\n //\n // Avoid calling this function directly. Prefer traceEventWriter.stack.\n func traceStack(skip int, gp *g, tab *traceStackTable) uint64 {\n-\tvar pcBuf [tracev2.MaxFramesPerStack]uintptr\n+\tpcBuf := getg().m.profStack\n \n \t...
2025-11-19T23:42:06
facebook/react
a8c2bbdabf561a53b7908c2b341815e64840e8ca
50ab2dde940bf0027773a944da005277b3d5598a
Cancel finished view transitions Animations manually in fire-and-forget too (#32545) Otherwise these can survive into the next View Transition and cause havoc to that transition. This was appearing as a flash in Safari in the fixture when going from A->B. This triggers a View Transition and at the same time the scrol...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1550,6 +1550,25 @@ export function hasInstanceAffectedParent(\n return oldRect.height !== newRect.height || oldRect.width !== newRect.width;\n }\n \n+function cancelAllViewTransitionAnimations(scope: Element) {\n+ //...
2025-03-10T19:27:37
vercel/next.js
9dbe6ba69866d73f228cb3b779a71208b11a300a
f5c8b6aeb8065e3dd1238744dae4dd3ed6251c12
fix(turbopack): Collect `declare global {}` in `VarDeclWithTsDeclareCollector` (#88568) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": "turbopack/crates/turbopack-ecmascript/src/parse.rs", "patch": "@@ -13,7 +13,10 @@ use swc_core::{\n source_map::{Files, SourceMapGenConfig, build_source_map},\n },\n ecma::{\n- ast::{EsVersion, Id, Ident, IdentName, ObjectPatProp, Pat, Program, VarDecl},\n+ ast::{\n+...
2026-01-15T15:32:01
nodejs/node
db70ceb49f90a66008026ccec261f088d0576013
f8d68d30ae0bc7ba72e65518c511283b3a259afd
esm: show race error message for inner module job race The race can not only happen when the ESM is loaded by the CommonJS loader, but can also happen to inner module jobs in the dependency graph. PR-URL: https://github.com/nodejs/node/pull/59519 Fixes: https://github.com/nodejs/node/issues/59366 Refs: https://github...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -471,6 +471,10 @@ class ModuleLoader {\n const resolvedImportAttributes = resolveResult.importAttributes ?? importAttributes;\n let job = this.loadCache.get(url, resolvedImportAttributes.type);\n if (job !== undefined) {\n+ // TOD...
2025-08-18T14:06:02
electron/electron
ac2c0c76feb931284dae6a7cb5a79fffa1518d91
3ad87787f88992d40abb3fd0f2fe4908683e34c1
fix: osr stutter fix backport for electron. (#46650) * fix: osr stutter fix backport for electron. * nit: chromium upstream patch link
[ { "path": "patches/chromium/.patches", "patch": "@@ -146,3 +146,4 @@ fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n revert_enable_crel_for_arm32_targets.patch\n mac_fix_check_on_ime_reconversion_due_to_invalid_replacement_range.patch\n+fix_osr_stutter_fix_backport_for_electro...
2025-04-22T08:18:21
facebook/react
d331ba041142a801f8e2101408221732b0ee7f88
00aa0043c7e32e1c822402edadde6f05535d2075
[ci] Fix incorrect condition (#32551) Fixes an incorrect condition for running tests in the compiler workspace. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32551). * __->__ #32551 * #32550
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -96,4 +96,4 @@ jobs:\n - run: xvfb-run -a yarn workspace ${{ matrix.workspace_name }} test\n if: runner.os == 'Linux' && matrix.workspace_name == 'react-forgive'\n - run: yarn workspace ${{ matrix.workspace_name }} test\...
2025-03-07T21:43:38
vercel/next.js
f5c8b6aeb8065e3dd1238744dae4dd3ed6251c12
8d7682f1964f5108d4c48424cfbefe3cc9de39ba
[ci] Don't retry/notify for failed deploy tests with custom tarball URLs (#88576) Fixes a regression from #85981 where manual deploy tests with custom tarball URLs incorrectly trigger retries and Slack notifications. Now only release-triggered runs and manually-triggered canary tests are retried/reported.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -18,7 +18,10 @@ jobs:\n # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n- startsWith(github.event.workflow_run.display_title, 'test-e2e-deploy') &&\n+ (\n+ github.event.workflow_run.event...
2026-01-15T10:43:30
rust-lang/rust
ca2139d3262232d6b15471783f503ffe125531f6
53d60bb1c5d325b43419c7618287a1405dec36d0
Point at return type when it is the source of the type expectation When calling an fn that returns a return type as a returned expression, point at the return type to explain that it affects the expected type. ``` error[E0308]: mismatched types --> f56.rs:5:15 | 3 | fn main() { | - the call ...
[ { "path": "compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs", "patch": "@@ -11,7 +11,7 @@ use rustc_hir::attrs::DivergingBlockBehavior;\n use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit::Visitor;\n-use rustc_hir::{Expr, ExprKind, HirId, LangIt...
2026-03-16T22:38:16
nodejs/node
3e5885b3cb55d423ee5d0d47115536fea3454806
bdcab711b8048af2c4dcd4a2c33d506ce1621c6a
doc: clarify maxRSS unit in `process.resourceUsage()` PR-URL: https://github.com/nodejs/node/pull/59511 Fixes: https://github.com/nodejs/node/issues/59508 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3642,7 +3642,7 @@ added: v12.6.0\n * `systemCPUTime` {integer} maps to `ru_stime` computed in microseconds.\n It is the same value as [`process.cpuUsage().system`][process.cpuUsage].\n * `maxRSS` {integer} maps to `ru_maxrss` which is the maximum residen...
2025-08-20T05:36:07
electron/electron
ec8f7f185ed5328d2fd9c936175da181c5036040
f15fa56e38e0189ae1bcc558c2048ce154c2266f
fix: crash on reconversion with google IME and editcontext on macOS (#46688)
[ { "path": "patches/chromium/.patches", "patch": "@@ -145,3 +145,4 @@ fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n revert_enable_crel_for_arm32_targets.patch\n+mac_fix_check_on_ime_reconversion_due_to_invalid_replacement_range.patch",...
2025-04-21T00:49:14
rust-lang/rust
45b22efe06630703e20de19c589299e6a592469e
1e2183119f0ee19cc26df899e26b04ad0de3475d
tests: Activate must_not_suspend test for MutexGuard dropped before await The test pass in `nightly-2023-09-24` but fail in `nightly-2023-09-23`: $ rustc +nightly-2023-09-23 --edition 2018 tests/ui/lint/must_not_suspend/mutex-guard-dropped-before-await.rs error: `MutexGuard` held across a suspend point, but s...
[ { "path": "src/tools/tidy/src/issues.txt", "patch": "@@ -1476,7 +1476,6 @@ ui/lint/issue-97094.rs\n ui/lint/issue-99387.rs\n ui/lint/let_underscore/issue-119696-err-on-fn.rs\n ui/lint/let_underscore/issue-119697-extra-let.rs\n-ui/lint/must_not_suspend/issue-89562.rs\n ui/lint/unused/issue-103320-must-use-op...
2026-03-18T20:29:45
vercel/next.js
8d7682f1964f5108d4c48424cfbefe3cc9de39ba
02f8ba610c52d68144320c5e3b00048b62fc768e
docs: fix Pages Router fonts documentation showing App Router examples (#88326) ## Summary Fixes #88291 The Pages Router fonts documentation was incorrectly showing App Router examples (`app/layout.tsx`) which don't exist in Pages Router. This confused users trying to use fonts with the Pages Router. ## Changes Up...
[ { "path": "docs/01-app/01-getting-started/13-fonts.mdx", "patch": "@@ -12,6 +12,8 @@ The [`next/font`](/docs/app/api-reference/components/font) module automatically\n \n It includes **built-in self-hosting** for any font file. This means you can optimally load web fonts with no layout shift.\n \n+<AppOnly>\...
2026-01-15T09:53:02
facebook/react
00aa0043c7e32e1c822402edadde6f05535d2075
cc680065c33739cc4c8cd2e8a67312b0c16a6ccc
[compiler] Migrate compiler packages to tsup (#32550) Currently in the `compiler` workspace, we invoke esbuild directly to build most packages (with the exception of `snap`). This has been mostly fine, but does not allow us to do things like generate type declaration files. I would like #32416 to be able to consume t...
[ { "path": "compiler/apps/playground/next-env.d.ts", "patch": "@@ -2,4 +2,4 @@\n /// <reference types=\"next/image-types/global\" />\n \n // NOTE: This file should not be edited\n-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.\n+// see https://nextjs.org/docs/app/bui...
2025-03-07T21:41:55
nodejs/node
ef58be6f0cbe3d00273cfbdab8e8555617673f34
3755e8b1446589dae8ad2cdead7806f721b979f9
doc: add missing Zstd strategy constants PR-URL: https://github.com/nodejs/node/pull/59312 Fixes: https://github.com/nodejs/node/issues/59290 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/zlib.md", "patch": "@@ -750,6 +750,34 @@ The most important options are:\n * `ZSTD_c_compressionLevel`\n * Set compression parameters according to pre-defined cLevel table. Default\n level is ZSTD\\_CLEVEL\\_DEFAULT==3.\n+* `ZSTD_c_strategy`\n+ * Select the compression strategy.\n+...
2025-08-19T18:38:44
electron/electron
f15fa56e38e0189ae1bcc558c2048ce154c2266f
297c4297b1e513241f9c1900d8767bb2cf91fd95
refactor: reduce & remove no-op MicrotasksScope calls (#46681) * fix: do not run microtasks in V8Serializer in browser process * Remove no-op MicrotasksScope in `shell/browser/api/electron_api_auto_updater.cc` This call was added in https://github.com/electron/electron/pull/40576 as an expansion of `gin_helper::Emit...
[ { "path": "shell/browser/api/electron_api_auto_updater.cc", "patch": "@@ -46,10 +46,6 @@ void AutoUpdater::OnError(const std::string& message) {\n gin::StringToV8(isolate, message),\n };\n \n- gin_helper::MicrotasksScope microtasks_scope{\n- wrapper->GetCreationContextChecked(), true,\...
2025-04-19T17:18:03
rust-lang/rust
49bb371ca74904400330e065dd847b6b9390b2a0
53d60bb1c5d325b43419c7618287a1405dec36d0
When single impl can satisfy inference error, suggest type When encountering an inference error where a return type must be known, like when calling `Iterator::sum::<T>()` without specifying `T`, look for all `T` that would satisfy `Sum<S>`. If only one, suggest it. ``` error[E0283]: type annotations needed --> $DI...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs", "patch": "@@ -158,6 +158,7 @@ impl UnderspecifiedArgKind {\n \n struct ClosureEraser<'a, 'tcx> {\n infcx: &'a InferCtxt<'tcx>,\n+ depth: usize,\n }\n \n impl<'a, 'tcx> ClosureEraser<'a, 'tcx> {\n@@ -172,7 +173,8 @...
2026-03-11T16:39:03
vercel/next.js
9725c47a49ee90f1994842b444c7675d454e205b
b8161d9e4cb5072f86098218455a197544cbe585
[turbopack] Move some of the logic for issue filtering into the rust layer (#88511) # Optimize issue filtering in Next.js and Turbopack ## What? This PR introduces an `IssueFilter` system to control which issues are reported based on severity and location ## Why? To improve performance, we shouldn't spend time forma...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -50,7 +50,7 @@ use turbopack_core::{\n PROJECT_FILESYSTEM_NAME, SOURCE_URL_PROTOCOL,\n diagnostics::PlainDiagnostic,\n error::PrettyPrintError,\n- issue::PlainIssue,\n+ issue::{IssueFilter, PlainIssue},\n output::{OutputAsse...
2026-01-14T18:00:25
facebook/react
cc680065c33739cc4c8cd2e8a67312b0c16a6ccc
f9d78089c6ec8dce3a11cdf135d6d27b7a8dc1c5
Fix asserts caused by OffscreenComponent rendering in React Native with passChildrenWhenCloningPersistedNodes (#32528) <!-- 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 fiel...
[ { "path": "packages/react-reconciler/src/ReactFiberCompleteWork.js", "patch": "@@ -341,7 +341,12 @@ function appendAllChildrenToContainer(\n workInProgress: Fiber,\n needsVisibilityToggle: boolean,\n isHidden: boolean,\n-) {\n+): boolean {\n+ // Host components that have their visibility toggled by a...
2025-03-07T17:03:59
nodejs/node
7c9fbc15bc13aeec1682e191673843e4c41951b1
897358962024b6cfe820c865696d303b2888df58
assert,util: fail promise comparison in deep equal checks It is impossible to look into the content of a promise and its state. This aligns the comparison with WeakMaps and WeakSets. Only reference equal promises will pass the check in the future. Fixes https://github.com/nodejs/node/issues/55198 PR-URL: https://git...
[ { "path": "doc/api/assert.md", "patch": "@@ -278,6 +278,10 @@ An alias of [`assert.ok()`][].\n <!-- YAML\n added: v0.1.21\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/59448\n+ description: Promises are not considered equal anymore if they are not of\n+ ...
2025-08-19T10:22:35
rust-lang/rust
9d9f68f52769edef5710ded13d80b3e2fe7a0dfe
1cd4c2a0f7efcab799992b46fdff90c5c5c31ae9
fix: .let no complete semicolon before semicolon Make `.let` `.letm` `.return` `.break` not duplicate semicolons Example --- ```rust fn main() { baz.l$0; } ``` **Before this PR** ```rust fn main() { let $0 = baz;; } ``` **After this PR** ```rust fn main() { let $0 = baz; } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -66,6 +66,12 @@ pub(crate) fn complete_postfix(\n Some(it) => it,\n None => return,\n };\n+ let semi =\n+ if expr_ctx.in_block_expr && ctx.token.next_token().is_none_or(|it| it.ki...
2026-03-18T11:33:05
electron/electron
3a982ecad5af4ff4c8badd71a94e85ac407eb082
926a6ee8bdd44b769f09c7b910938d41fbfec6b2
fix: do not run microtasks in V8Serializer in browser process (#46668)
[ { "path": "shell/common/v8_util.cc", "patch": "@@ -36,7 +36,7 @@ class V8Serializer : public v8::ValueSerializer::Delegate {\n \n bool Serialize(v8::Local<v8::Value> value, blink::CloneableMessage* out) {\n gin_helper::MicrotasksScope microtasks_scope{\n- isolate_->GetCurrentContext(), false,\n...
2025-04-19T02:43:02
facebook/react
562f17efab5c39b461ec100898c9a26b54c931e4
9e9b54d7f6c67b452c969abb98f4f7637ed72f56
docs(eslint-plugin-react-hooks): add changelog for 5.1.0 & 5.2.0 (#32536) <!-- 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 ...
[ { "path": "packages/eslint-plugin-react-hooks/CHANGELOG.md", "patch": "@@ -1,3 +1,15 @@\n+## 5.2.0\n+\n+- Support flat config ([@michaelfaith](https://github.com/michaelfaith) in [#30774](https://github.com/facebook/react/pull/30774))\n+- Convert the plugin to TypeScript and provide package type declaration...
2025-03-06T18:58:39
vercel/next.js
b8161d9e4cb5072f86098218455a197544cbe585
c15f024992bf6a8d6c29a47f49134913b5862338
[cna] Avoid error with out-of-box Netlify config (#88546)
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -321,9 +321,9 @@ export const installTemplate = async ({\n \n if (packageManager === \"pnpm\") {\n const pnpmWorkspaceYaml = [\n- // required for v9, v10 doesn't need it anymore\n- \"packages:\",\n- \" - .\",\n+ ...
2026-01-14T17:59:03
nodejs/node
897358962024b6cfe820c865696d303b2888df58
ee9c8cf0cbb77341c56b12efdc871401bd3212d2
util: fix error's namespaced node_modules highlighting using inspect When inspecting errors, node_modules are highlighted with an underscore. So far namespaced modules only highlighted the namespace but not the rest of the module name. This is fixed by matching the full name. As drive-by it improves the performance sl...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -250,7 +250,6 @@ const keyStrRegExp = /^[a-zA-Z_][a-zA-Z_0-9]*$/;\n const numberRegExp = /^(0|[1-9][0-9]*)$/;\n \n const coreModuleRegExp = /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/;\n-const nodeModulesRegExp = /[/\\\\]node_modules[/\\\\](.+...
2025-08-19T10:22:25
electron/electron
437542767a4eabc34fe92cfacd88ad5c8da1b5e2
a29e1170b98028a8db5d23e48bf867eae69610e7
fix: `backgroundMaterial` on initial activate (#46657) * fix: backgroundMaterial on initial activate Closes https://github.com/electron/electron/issues/38466 * Update patches/chromium/fix_activate_background_material_on_windows.patch Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by:...
[ { "path": "patches/chromium/fix_activate_background_material_on_windows.patch", "patch": "@@ -14,7 +14,7 @@ This patch likely can't be upstreamed as-is, as Chromium doesn't have\n this use case in mind currently.\n \n diff --git a/ui/views/win/hwnd_message_handler.cc b/ui/views/win/hwnd_message_handler.cc\n...
2025-04-17T18:34:45
facebook/react
9e9b54d7f6c67b452c969abb98f4f7637ed72f56
029e8bd618af23fbdd9efdac565ad81f7d4640d8
[compiler] Make CompilerError compatible with reflection (#32539)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -188,6 +188,7 @@ export class CompilerError extends Error {\n constructor(...args: Array<any>) {\n super(...args);\n this.name = 'ReactCompilerError';\n+ this.details = [];\n }\n \n override get mes...
2025-03-06T18:06:36
vercel/next.js
dd625fbf6841c3e473bc94ca44faf539d3432dc9
a93c03b1426fed2fca8d87e88e031857221ed1f2
Remove `lerna bootstrap` from the `clean` script in package.json (#88527) In #87188 we upgraded lerna to v9 which no longer supports/requires the `lerna bootstrap` command. This commit removes it from the `clean` script in the root package.json to avoid errors when running `pnpm clean`. [More info](https://lerna.js.o...
[ { "path": "package.json", "patch": "@@ -8,7 +8,7 @@\n \"scripts\": {\n \"new-error\": \"turbo gen error\",\n \"new-test\": \"turbo gen test\",\n- \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n+ \"clean\": \"lerna clean -y...
2026-01-14T10:20:38
golang/go
02d1f3a06bc6900ad5c1b7c11b1fd38cbddef395
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
runtime: respect GOTRACEBACK for user-triggered runtime panics The documentation for GOTRACEBACK says that "single" is the default where the stack trace for only a single routine is printed except that it prints all stack traces if: there is no current goroutine or the failure is internal to the run-time. In the r...
[ { "path": "src/runtime/runtime1.go", "patch": "@@ -39,7 +39,7 @@ func gotraceback() (level int32, all, crash bool) {\n \tgp := getg()\n \tt := atomic.Load(&traceback_cache)\n \tcrash = t&tracebackCrash != 0\n-\tall = gp.m.throwing >= throwTypeUser || t&tracebackAll != 0\n+\tall = gp.m.throwing > throwTypeUs...
2025-02-13T23:59:32
nodejs/node
3f51cb622922e71feafacadad9ea93389c3cfd23
64355ae97e9df16d6f6e70be922752b7e274498a
util: add some additional error classes to `wellKnownPrototypes` PR-URL: https://github.com/nodejs/node/pull/59456 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1,6 +1,8 @@\n 'use strict';\n \n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBuffer,\n ArrayBufferPrototype,\n@@ -74,6 +76,8 @@ const {\n ObjectSetPrototypeOf,\n Promise,\n PromisePrototype,\n+ RangeError,\n+ ...
2025-08-19T09:00:24
facebook/react
e03ac20f942124bb3989b3bb58bb7b9bf91a7860
e9252bcdccf7f8f691081e4d48ca47657bc723f9
Set direction in animate call directly (#32523) Setting the animation's currentTime causes a quirk where the transition can end up off by a bit and the end state can be slightly off the end time. However, I realized that we don't have to because if we just set the direction in the `animate()` call directly the Safari...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1754,7 +1754,7 @@ function animateGesture(\n moveOldFrameIntoViewport(keyframes[0]);\n }\n const reverse = rangeStart > rangeEnd;\n- const anim = targetElement.animate(keyframes, {\n+ targetElement.animate(key...
2025-03-05T14:33:06
electron/electron
352a403efdf5bf32ffcb6ef6162535faa351e287
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
fix: `postMessage` crash with invalid transferrable (#46639)
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -330,6 +330,9 @@ void UtilityProcessWrapper::PostMessage(gin::Arguments* args) {\n return;\n \n blink::TransferableMessage transferable_message;\n+ gin_helper::ErrorThrower thrower(args->isolate());\n+\n+ // |message| is any...
2025-04-17T13:09:48
vercel/next.js
a93c03b1426fed2fca8d87e88e031857221ed1f2
77eced6d80d33cf6132c5ff9867e347c5f8bc648
fix(build): prevent route handler manifests from inheriting unrelated client components (#88419) ## Summary Fixes #88316 Route handlers (API routes) were generating bloated `client-reference-manifest.js` files containing unrelated client components from pages when using Webpack. This was caused by the manifest mergi...
[ { "path": "AGENTS.md", "patch": "@@ -301,6 +301,7 @@ See [Codebase structure](#codebase-structure) above for detailed explanations.\n - Do NOT add \"Generated with Claude Code\" or co-author footers to commits or PRs\n - Keep commit messages concise and descriptive\n - PR descriptions should focus on what c...
2026-01-14T10:19:20
golang/go
a593ca9d657efb1ea021c9fc51cb528c398bbf4e
89552911b383b78cd8807ec747ca5df8ba52e239
runtime/cgo: add support for `any` param and return type When using `any` as param or return type of an exported function, we currently have the error `unrecognized Go type any`. `any` is an alias of `interface{}` which is already supported. This would avoid such change: https://github.com/php/frankenphp/pull/1976 F...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -1121,6 +1121,9 @@ func (p *Package) hasPointer(f *File, t ast.Expr, top bool) bool {\n \t\tif t.Name == \"error\" {\n \t\t\treturn true\n \t\t}\n+\t\tif t.Name == \"any\" {\n+\t\t\treturn true\n+\t\t}\n \t\tif goTypes[t.Name] != nil {\n \t\t\treturn false\n \t\t...
2025-11-24T08:14:18
rust-lang/rust
74909ec285fb12f2a14234009354ad883b7cdabd
fac53a0cf82ed94246b8159a1d40e297e385bef4
fix ICE for arrays in diverging never-pattern closure bodies
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -1660,14 +1660,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n expr: &'tcx hir::Expr<'tcx>,\n ) -> Ty<'tcx> {\n let element_ty = if !args.is_empty() {\n- // This shouldn't happen unless there's another error\n- ...
2026-03-18T03:41:27
nodejs/node
dfee0b1a9e32f4f4f0bf8d5d809954efe0ac3da8
9c508b820fc1e61399cccad4a12be8db3dfa8655
test: make test-debug-process locale-independent The test `test/parallel/test-debug-process.js` fails on non-English Windows systems due to a locale-dependent error message string. The test asserts that a call to `process._debugProcess()` on a terminated process throws an error with the message `'The system cannot fi...
[ { "path": "test/parallel/test-debug-process.js", "patch": "@@ -16,6 +16,6 @@ cp.on('exit', common.mustCall(function() {\n try {\n process._debugProcess(cp.pid);\n } catch (error) {\n- assert.strictEqual(error.message, 'The system cannot find the file specified.');\n+ assert.strictEqual(error.e...
2025-08-19T01:08:01
facebook/react
2980f27779cf37a9656b25418a3c5cfca989e244
eda36a1c75ff8ac09fb127f6e04d4af16e49f50f
Add a shorthand for building the view-transition fixture (#32496) I end up rebuilding for testing the view-transition fixture a lot. It doesn't need everything that flight needs so this just adds a short hand that's a little faster to rebuild. --------- Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de>
[ { "path": "package.json", "patch": "@@ -117,6 +117,7 @@\n \"build-for-devtools-dev\": \"yarn build-for-devtools --type=NODE_DEV\",\n \"build-for-devtools-prod\": \"yarn build-for-devtools --type=NODE_PROD\",\n \"build-for-flight-dev\": \"cross-env RELEASE_CHANNEL=experimental node ./scripts/roll...
2025-03-01T23:26:48
vercel/next.js
dfe3f140d72216daccb330354d57ec6f220c8f1f
e1c95fc2094f276eb881539d45e0f6f8e42a83e9
Turbopack: fix bad performance edge case in production chunking (#88508) ### What? Fixes a edge case in production chunking performance where many dynamic imports (like https://app.unpkg.com/lucide-react@0.562.0/files/dist/esm/dynamicIconImports.js) causes builds to become very slow under specific scenarios.
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunking/production.rs", "patch": "@@ -26,6 +26,7 @@ pub async fn make_production_chunks(\n \"make production chunks\",\n chunk_items = chunk_items.len(),\n chunks_before_limits = Empty,\n+ merge_iterations = Empty,\n ...
2026-01-14T08:01:30
electron/electron
e8117f8e40e488578f8ba5c57ff8e429fc9c3d6c
32fea719b393c2757c4737386564c910d49b529e
build: update build tools (#46656) * build: update build tools * chore: fix core.fscache * chore: fix core.preloadindex --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -10,8 +10,10 @@ runs:\n git config --global core.filemode false\n git config --global core.autocrlf false\n git config --global branch.autosetuprebase always\n+ git config --global core.fscache true\n+ ...
2025-04-17T08:32:17
golang/go
f045ed4110aa430da0ba118d2be46f0d602d6633
220d73cc44a0c580dc8ee10df6395c8e517e118f
[dev.simd] go/doc/comment: don't include experimental packages in std list go/doc/comment/std.go has a list of top-level package prefixes in the standard library. This list can vary depending on goexperiment, but the file is static. E.g. GOEXPERIMENT=arenas go test -run=TestStd go/doc/comment would fail. Don't incl...
[ { "path": "src/go/doc/comment/mkstd.sh", "patch": "@@ -19,6 +19,6 @@ echo \"// Copyright 2022 The Go Authors. All rights reserved.\n package comment\n \n var stdPkgs = []string{\"\n-go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n+GOEXPERIMENT=none go list std | grep -v / | sort | sed 's/.*/\"&\",/'\n ...
2025-11-24T17:03:59
facebook/react
eda36a1c75ff8ac09fb127f6e04d4af16e49f50f
ca12911d1fbe755b9b2b7d1bf548589317311a82
[ci] Don't erroneously mark failures as successes (#32493) Randomly noticed this when I looked at a recent [DevTools regression test run](https://github.com/facebook/react/actions/runs/13578385011). I don't recall why we added `continue-on-error` previously, but I believe it was to keep all jobs in the matrix running...
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -75,8 +75,8 @@ jobs:\n name: Test ${{ matrix.workspace_name }}\n needs: discover_yarn_workspaces\n runs-on: ubuntu-latest\n- continue-on-error: true\n strategy:\n+ fail-fast: false\n matrix:\n workspace...
2025-02-28T18:06:40
nodejs/node
9c508b820fc1e61399cccad4a12be8db3dfa8655
1874cd16b0c73f3146189c1ff3127605247f1427
doc: fix the version tls.DEFAULT_CIPHERS was added 42be7f6a0335c396810be91c3f3724007029f83d (originally included in 19.8.0 and later backported to 18.16.0) added documentation on how to use `tls.DEFAULT_CIPHERS`. However, that commit added the documentation with the version specified as `REAPLCEME`, causing the publis...
[ { "path": "doc/api/tls.md", "patch": "@@ -2427,9 +2427,7 @@ added: v11.4.0\n ## `tls.DEFAULT_CIPHERS`\n \n <!-- YAML\n-added:\n- - v19.8.0\n- - v18.16.0\n+added: v0.11.3\n -->\n \n * Type: {string} The default value of the `ciphers` option of", "additions": 1, "deletions": 3, "language": "Markdo...
2025-08-18T16:56:40
vercel/next.js
a43b362eee9156371ba768bda247f3dd1dff60a7
6ed4453c22e640446885b6d3778c8c4ee9709f0d
Turbopack: parallelize making dependent tasks dirty (#86755) <!-- 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 Con...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -34,10 +34,11 @@ use turbo_tasks::{\n event::{Event, EventListener},\n message_queue::TimingEvent,\n registry::get_value_type,\n+ scope::scope_and_block,\n task_statistics::TaskStatisticsApi,\n trace::Tr...
2026-01-13T20:22:42
electron/electron
14df4aab83bb016e5195d8d2076e9a7ef09b7ccf
24e46849c7d6ef30f99d32b532da67fa34440165
fix: window border on Gnome Wayland (#46624)
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -195,7 +195,7 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Rect> ...
2025-04-15T13:45:33
facebook/react
ca12911d1fbe755b9b2b7d1bf548589317311a82
d55cc79bcf5cd3bd4cb406381b067d72842f368e
feat(eslint-plugin-react-hooks): make flat config the `recommended` config (#32457) This change swaps which config `recommended` is aliasing. In 5.2.0, the new flat config was introduced as `recommended-latest`, while `recommended` still pointed at the legacy rc-based config, with a note that in the next major version...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -1,3 +1,4 @@\n+import type {Linter} from 'eslint';\n import * as reactHooks from 'eslint-plugin-react-hooks';\n \n export default [\n@@ -12,10 +13,10 @@ export default [\n },\n },\n },\n- reactHooks.configs['recommended-latest'],\n+ ...
2025-02-28T16:22:08
nodejs/node
3810024f003f3a3756cbf82393f24f54f447be59
d55643d6fc38cf8ceb3cb7be8478f4b8bc43b9ad
test: mark test-wasi-pthread as flaky It has been flaking the CI for two months with no one working on a fix. Mark it as flaky. PR-URL: https://github.com/nodejs/node/pull/59488 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/wasi/wasi.status", "patch": "@@ -14,3 +14,7 @@ test-wasi-getrusage: SKIP\n [$system==win32 || $system==android]\n # Unsupported on Windows and Android\n test-wasi-readdir: SKIP\n+\n+[$system==linux]\n+# https://github.com/nodejs/node/issues/59146\n+test-wasi-pthread: PASS, FLAKY", "addit...
2025-08-15T21:21:56
vercel/next.js
c1fc988f71f1ef52fa2e9f7512be3c7eeb175622
60b5df66f674713310bc19b758259d89a7ff84ef
Turbopack: remove unused code (#88497) <!-- 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 ### Improvi...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/mod.rs", "patch": "@@ -1,11 +1,10 @@\n use core::panic;\n use std::{\n- collections::{BinaryHeap, VecDeque, hash_map::Entry},\n+ collections::{BinaryHeap, VecDeque},\n future::Future,\n };\n \n use anyhow::{Context, Result, bail};\n-use a...
2026-01-13T19:32:48
electron/electron
e748b521b2c77768bc1c7761299b9607c0076670
51bffb533e01430218f742adcb83560104515eff
test: fix node spec disabled tests (#46627)
[ { "path": "script/node-disabled-tests.json", "patch": "@@ -20,7 +20,6 @@\n \"parallel/test-crypto-key-objects\",\n \"parallel/test-crypto-keygen\",\n \"parallel/test-crypto-keygen-deprecation\",\n- \"parallel/test-crypto-rsa-dsa-revert\",\n \"parallel/test-crypto-rsa-dsa\",\n \"parallel/test-cryp...
2025-04-14T15:38:27
facebook/react
56c7d1070aabe42b955ea0006477ea1ca02dd0c5
7e2ea902f839264fd327b0df5fae4f6ad8359952
[ci] Upload release for easier debugging (#32492) Uploads the releases that were published in case to help with debugging or verifying a dry run. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32492)...
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -117,3 +117,9 @@ jobs:\n --publishVersion=${{ inputs.version_to_publish }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry'}}\n+ ...
2025-02-28T15:58:39
nodejs/node
7c9c981d271be6f9d195178613afc93d260c8956
d36941d65d08a6aa67f93fde41c98981cc653a8b
src: fix order of CHECK_NOT_NULL/dereference `ASYNC_THROW_IF_INSUFFICIENT_PERMISSIONS` may dereference `req_wrap_async`, so `CHECK_NOT_NULL(req_wrap_async)` should be used before and not after. PR-URL: https://github.com/nodejs/node/pull/59487 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <...
[ { "path": "src/node_file.cc", "patch": "@@ -1559,12 +1559,12 @@ static void Unlink(const FunctionCallbackInfo<Value>& args) {\n \n if (argc > 1) { // unlink(path, req)\n FSReqBase* req_wrap_async = GetReqWrap(args, 1);\n+ CHECK_NOT_NULL(req_wrap_async);\n ASYNC_THROW_IF_INSUFFICIENT_PERMISSION...
2025-08-18T12:17:47
vercel/next.js
7b63bd360bfda310e7fcf508bf3c91c91e2cbccb
7fc6b947688aa91896a5017c1c973acf129f146c
Turbopack: add lint rule to not cell in async map (#88474) <!-- 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 Contr...
[ { "path": ".config/ast-grep/rule-tests/__snapshots__/no-map-async-cell-snapshot.yml", "patch": "@@ -0,0 +1,282 @@\n+id: no-map-async-cell\n+snapshots:\n+ ? |\n+ items.into_iter()\n+ .map(async |item| Ok(item.process().await?.cell()))\n+ .try_join()\n+ .await\n+ : labels:\n+ - ...
2026-01-13T18:45:14
electron/electron
51bffb533e01430218f742adcb83560104515eff
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
fix: paint and flash issues on macOS (#46615) * fix: paint and flash issues on macOS * Adhere to paintWhenInitiallyHidden
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,7 +131,7 @@ osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_platforms.patch\n chore_partial_revert_of.patch\n fix_software_compositing_infinite_loop.patch\n-fix_add_method_which_disable...
2025-04-14T14:29:07
rust-lang/rust
eda328c6cfce47bb99d2daba946bf938dad8f78e
62b9fa15e72e613c1e318e895b84bf593768f9db
delete incorrect test
[ { "path": "tests/ui/borrowck/kindck-implicit-close-over-mut-var.rs", "patch": "@@ -1,49 +0,0 @@\n-//@ run-pass\n-\n-#![allow(unused_must_use)]\n-#![allow(dead_code)]\n-use std::thread;\n-\n-fn user(_i: isize) {}\n-\n-fn foo() {\n- // Here, i is *copied* into the proc (heap closure).\n- // Requires all...
2026-03-17T22:08:51
facebook/react
7e2ea902f839264fd327b0df5fae4f6ad8359952
3607f4838a8f4a87160da36aa26bb1432d7a5f11
[ci] Fix discord notification title (#32491) fun times --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32491). * #32492 * __->__ #32491
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-28T15:58:28
golang/go
0c69e7734308f36de7acbeda4cabced8018c04e3
da92168ec8cedf08603fd77929a4b9d7e3183275
Revert "[dev.simd] internal/runtime/gc: add simd package based greentea kernels" This reverts CL 719520. Reason for revert: Naming is confusing. Also, this has a semantic merge conflict with CL 722040. Let's revert, fix the naming and conflict, and do it again. Change-Id: I0dc0c7c58470d63d48a4f69adb38c18f95db0beb Re...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -140,7 +140,7 @@ func TestStmtLines(t *testing.T) {\n \tvar m float64\n \tswitch runtime.GOARCH {\n \tcase \"amd64\":\n-\t\tm = 0.0112 // > 98.88% obtained on amd64, no backsliding\n+\t\tm = 0.0111 // > 98.89% obtained on amd64, no bac...
2025-11-22T02:17:10
nodejs/node
786431f6ca565bc3a3fcd487187c736e0febd6ac
663554abdfabef2bda83bb3369c95494fbd21b52
tools: update coverage GitHub Actions to fixed version Refs: https://github.com/codecov/codecov-action/pull/1859 Refs: https://github.com/codecov/codecov-action/issues/1858 PR-URL: https://github.com/nodejs/node/pull/59512 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com...
[ { "path": ".github/workflows/coverage-linux-without-intl.yml", "patch": "@@ -84,6 +84,6 @@ jobs:\n - name: Clean tmp\n run: rm -rf coverage/tmp && rm -rf out\n - name: Upload\n- uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3\n+ uses: codecov...
2025-08-18T08:30:57
rust-lang/rust
7d82c5dab3760142380ef4477e9885673a45f7b0
eaf4e7489b6ae3d4ba9a71b720b03b6d58e4f102
Fix invalid add of duplicated call locations for the rustdoc scraped examples feature
[ { "path": "src/librustdoc/scrape_examples.rs", "patch": "@@ -3,7 +3,7 @@\n use std::fs;\n use std::path::PathBuf;\n \n-use rustc_data_structures::fx::FxIndexMap;\n+use rustc_data_structures::fx::{FxHashSet, FxIndexMap};\n use rustc_errors::DiagCtxtHandle;\n use rustc_hir as hir;\n use rustc_hir::intravisit:...
2026-03-17T21:53:30
vercel/next.js
fe6a3385e6bfd2a8c5c1280dea532a2f0d6a6c55
6339e63839f0f322087d0049fec9e2a324d27501
Turbopack: use mimalloc on Linux musl (#88426) Closes #88174 With musl (i.e. Alpine), the system memory allocator can cause catastrophic slowdowns - https://medium.com/p/stop-using-alpine-images-b51d12b0fde2 - https://nickb.dev/blog/default-musl-allocator-considered-harmful-to-performance/ We were seeing it ca...
[ { "path": "turbopack/crates/turbo-tasks-malloc/Cargo.toml", "patch": "@@ -12,13 +12,13 @@ bench = false\n [dependencies]\n \n \n-[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\", target_env = \"musl\")))'.dependencies]\n+[target.'cfg(not(any(target_os = \"linux\", target_family = \"wasm\...
2026-01-13T14:11:01
electron/electron
62b5b5f99dad509b9e7bea9ada2e5731d8b04371
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
fix: handle potential missing close event property (#46605) fix: handle missing close event property
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -54,7 +54,7 @@ BrowserWindow.prototype._init = function (this: BWT) {\n });\n this.on('close', (event) => {\n queueMicrotask(() => {\n- if (!unresponsiveEvent && !event.defaultPrevented) {\n+ if (!unresponsiveEvent && !event?.defa...
2025-04-11T17:07:26
golang/go
e88be8a128d167c5ab91eabc998ab364370c702e
a318843a2ad17d853b13599a73b2912a13474490
runtime: fix stale comment for mheap/malloc mheap use pageAlloc to manage free/scav address space instead of using free/scav treap. The comment on mheap states mheap uses treaps. Update the comment to reflect the use of pageAlloc. In the fallback code when sizeSpecializedMalloc is enabled, heapBitsInSpan is false. Up...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1169,7 +1169,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tvar x unsafe.Pointer\n \tvar elemsize uintptr\n \tif sizeSpecializedMallocEnabled {\n-\t\t// we know that heapBitsInSpan is true.\n+\t\t// we know that heapBitsInSpa...
2025-11-21T03:14:46
nodejs/node
663554abdfabef2bda83bb3369c95494fbd21b52
f5e6ba3d7cd1694f124aae5a4d8ae8fa84ccbdc2
lib: expose global ErrorEvent PR-URL: https://github.com/nodejs/node/pull/58920 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Filip Sk...
[ { "path": "doc/api/globals.md", "patch": "@@ -454,6 +454,14 @@ changes:\n \n A browser-compatible implementation of [`DecompressionStream`][].\n \n+## `ErrorEvent`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+A browser-compatible implementation of {ErrorEvent}.\n+\n ## Class: `Event`\n \n <!-- YAML", "a...
2025-08-18T08:14:54
rust-lang/rust
4845f7842228c03910b3bf5d1a4221eea4e14f5d
384f363b7023244df33bef7eb8070a334eae9b48
Reword the incremental finalize diagnostic Remove the confusing word "error". The diagnostic is already prefixed with a level when it is displayed, so this is redundant and possibly confusing ("warning: error ..."). Add some help text summarizing the impact of what happened: the next build won't be able to reuse wor...
[ { "path": "compiler/rustc_incremental/src/errors.rs", "patch": "@@ -192,7 +192,8 @@ pub(crate) struct DeleteFull<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"error finalizing incremental compilation session directory `{$path}`: {$err}\")]\n+#[diag(\"did not finalize incremental compilation session direct...
2026-03-17T19:59:08
vercel/next.js
2af84065cbbbe7bfd9c132f022c3989ab24a26f3
9a55a09627ba682b50e4e90fa9dc040bbb5bf00b
[test] Always run all tests without aborting on failure (#88435) It's more useful and efficient to run all tests and report all failures instead of aborting on the first failure. This way, developers get a complete picture of what needs to be fixed in a single run, and don't have to go through multiple iterations of f...
[ { "path": ".github/workflows/integration_tests_reusable.yml", "patch": "@@ -91,7 +91,6 @@ jobs:\n afterBuild: |\n # e2e and ${{ inputs.test_type }} tests with `node run-tests.js`\n \n- export NEXT_TEST_CONTINUE_ON_ERROR=true\n export NEXT_TEST_MODE=${{\n inputs.test_ty...
2026-01-13T11:37:29
electron/electron
a9b2ec514b9d2d8e8992514b1a42486ef17446cd
3064b24c9df15dbc7bcb55e78a12a92fd761daf6
fix: fallback to old MacOS context menu behavior if no frame is present (#46595) * fix: fallback to old MacOS context menu behavior if no frame is present Co-authored-by: georgexu99 <georgexu99@electronjs.org> Co-authored-by: erickzhao <erickzhao@electronjs.org> Co-authored-by: clavin <calvin@electronjs.org> * docs:...
[ { "path": "docs/api/menu.md", "patch": "@@ -74,7 +74,7 @@ The `menu` object has the following instance methods:\n * `options` Object (optional)\n * `window` [BaseWindow](base-window.md) (optional) - Default is the focused window.\n * `frame` [WebFrameMain](web-frame-main.md) (optional) - Provide the rel...
2025-04-11T14:15:35
facebook/react
3607f4838a8f4a87160da36aa26bb1432d7a5f11
5eb20b3007a8fafaf032c2e028c335ab09217d9f
Add Commit Scaffolding for Gestures (#32451) This adds a `ReactFiberApplyGesture` which is basically intended to be a fork of the phases in `ReactFiberCommitWork` except for the fake commit that `useSwipeTransition` does. So far none of the phases are actually implemented yet. This is just the scaffolding around them ...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -33,11 +33,6 @@ export default function SwipeRecognizer({\n });\n }\n function onScrollEnd() {\n- if (activeGesture.current !== null) {\n- const cancelGesture = activeGesture.current;\n- activeGesture.c...
2025-02-27T21:45:18
golang/go
437323ef7b933255c5c7fbb0775019e95f19b05e
1993dca4002267b772566d6c8055c6ace46dfd4f
slices: fix incorrect comment in slices.Insert function documentation The comment previously stated that r[i+len(v)] would equal the value originally at r[i], but it should be the value originally at s[i]. Change-Id: I635ddbdd5dc4da9c06ed426d5542bf969b7fe6dd Reviewed-on: https://go-review.googlesource.com/c/go/+/7226...
[ { "path": "src/slices/slices.go", "patch": "@@ -128,7 +128,7 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n // returning the modified slice.\n // The elements at s[i:] are shifted up to make room.\n // In the returned slice r, r[i] == v[0],\n-// and, if i < len(s), r[i+len(v)] == value or...
2025-11-21T02:47:06
rust-lang/rust
36381555bb78f41f178032dbabbf9ebd602c3530
f3654324e6da3fd388035418c9db1912a0d8c4cf
Put statics in .data section in raw-dylib for ELF This fixes issues with statics when using static relocation model and linking with GNU ld. Other linkers don't work yet.
[ { "path": "compiler/rustc_codegen_ssa/src/back/link/raw_dylib.rs", "patch": "@@ -296,6 +296,8 @@ fn create_elf_raw_dylib_stub(sess: &Session, soname: &str, symbols: &[DllImport]\n stub.reserve_shstrtab_section_index();\n let text_section_name = stub.add_section_name(\".text\".as_bytes());\n let ...
2026-03-13T17:54:40
nodejs/node
b1b0713b2fab536cbfe43dc538ada7a484f69512
eda6d337d317767984e34360500e2f12433d107a
test: deflake connection refused proxy tests Previously the tests tries to use UDP ports to fabricate ECONNREFUSED which is incorrect - UDP ports use different namespaces, so the port can have valid TCP listeners. This patch updates the test to fabricate the ECONNREFUSED error by using the port of a recently closed H...
[ { "path": "test/client-proxy/test-http-proxy-request-connection-refused.mjs", "patch": "@@ -2,11 +2,10 @@\n // handle it correctly.\n \n import * as common from '../common/index.mjs';\n-import assert from 'node:assert';\n import http from 'node:http';\n+import assert from 'node:assert';\n import { once } fr...
2025-08-14T22:24:14
facebook/react
5eb20b3007a8fafaf032c2e028c335ab09217d9f
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
[ci] Fix --dry not being passed correctly (#32489) Boolean params for dry runs are true if the param exists at all, so only add it if we're in dry run mode.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-27T21:01:31
electron/electron
c6e6a03a2421dc3da6a67d3976cb6fbcce342592
c1c74b0a6c734773f224422b83879703a4e7f271
fix: `NativeWindow.window_id()` returns same value for all windows (#46562) fix: NativeWindow.window_id() returns same value for all windows
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -94,8 +94,6 @@ gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n NativeWindow* parent)\n : widget_(std::make_unique<views:...
2025-04-09T15:45:06
vercel/next.js
de3e9d4f36e865c7ace2dda209cf89df25883647
2b314e744a0d8035a2234f3359976689352d850e
Turbopack: Update reqwest, remove experimental system TLS feature (#88290) I added this as an option in https://github.com/vercel/next.js/pull/81818 as a solution for users with corporate firewalls that MITM TLS traffic. Reqwest 0.13.x now uses `rustls-platform-verifier` by default, which doesn't have the tradeoffs t...
[ { "path": "Cargo.lock", "patch": "@@ -443,6 +443,29 @@ dependencies = [\n \"arrayvec 0.7.6\",\n ]\n \n+[[package]]\n+name = \"aws-lc-rs\"\n+version = \"1.13.3\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17...
2026-01-12T22:45:46
golang/go
337f7b1f5d18e8b2469a37174c24baced4c23801
3c26aef8fba0ef1f4d26d802ba037b43671924e9
cmd/go: update default go directive in mod or work init This commit updates the default go directive when initializing a new module. The current logic is to use the latest version supported by the toolchain. This behavior is simple, predictable, and importantly, it can work while completely offline (i.e., no interne...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,6 +29,7 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n+\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -826,7 +827,7 @@ func...
2025-11-13T21:38:20
rust-lang/rust
c679e3daf2166e2bcd56e8acc2cacfe6dc9757a8
ec03f4ef294d3a75ed12b36662d1a40441b0a726
Simplify tests and fix test tidy issue
[ { "path": "tests/assembly-llvm/sanitizer/hwasan-vs-khwasan.rs", "patch": "@@ -4,7 +4,9 @@\n //@ assembly-output: emit-asm\n //@ revisions: hwasan khwasan\n //@[hwasan] compile-flags: --target aarch64-unknown-linux-gnu -Zsanitizer=hwaddress\n+//@[hwasan] needs-llvm-components: aarch64\n //@[khwasan] compile-...
2026-03-17T07:49:28
nodejs/node
eda6d337d317767984e34360500e2f12433d107a
2565e1c44e07c60fa46f04599ecfd1ca5b8d29fa
deps: V8: cherry-pick 7b91e3e2cbaf Original commit message: s390: use %r15 instead of %sp Some compilers do not recognize %sp and output: ``` error: invalid register ``` Change-Id: I2e1b64dd0e799a03afccbd12f5b2db17b3130e07 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.19',\n+ 'v8_embedder_string': '-node.20',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-29T17:57:10
facebook/react
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
227e8414cc5af227b5de339cace2447d4a81c995
[ci] Prepare publish workflow (#32488) Fixes up a few things in the script and workflow to make it possible to run in CI without interactive prompts.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -12,22 +12,22 @@ on:\n description: Version to publish for the specified packages\n type: string\n only_packages:\n- description: Space separated list of packages to publish on NPM. Use this OR skip...
2025-02-27T20:24:57
electron/electron
c1c74b0a6c734773f224422b83879703a4e7f271
45a049428795402cefa4799bb04567db65da4429
fix: re-enable OOP printing on Linux (#46529)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -932,3 +932,19 @@ index 63f170c95050416c595e62f4c460c4cd6b7dbd1c..157e3d046889f9c63fdf0fd5d503890f\n // Does bookkeeping when an error occurs.\n virtual mojom::ResultCode OnError();\n \n+diff --git a/printing/printing_context_linux.cc b/printi...
2025-04-09T13:42:16
vercel/next.js
0daf2b58b4a75c908775a7df0b5a473e646531f8
0fd7d90d6385fbf0822db50c919272fe72b86997
[prebuilt-skew-protection] feat: adding in automatic deploymentId (#88012) <!-- 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 makin...
[ { "path": "errors/deploymentid-not-a-string.mdx", "patch": "@@ -0,0 +1,34 @@\n+---\n+title: '`deploymentId` function must return a string'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` option in your `next.config.js` is defined as a function, but it did not return a string value.\n+\n+## Pos...
2026-01-12T21:27:26
golang/go
31aa9f800bc8d4089e05b8726b599abe04a486a3
d68aec8db1bc3c167d2f0e5fdee8c1346ee35418
crypto/tls: use inner hello for earlyData when using QUIC and ECH I don't think we have good QUIC ECH tests. BoGo has some for this, but I'm not sure how easy it would be to enable those for QUIC. Fixes #76283 Change-Id: I0ffa535fd89a624b7f9bfd73441ce2a1683e0549 Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/crypto/tls/handshake_client.go", "patch": "@@ -308,7 +308,11 @@ func (c *Conn) clientHandshake(ctx context.Context) (err error) {\n \tif hello.earlyData {\n \t\tsuite := cipherSuiteTLS13ByID(session.cipherSuite)\n \t\ttranscript := suite.hash.New()\n-\t\tif err := transcriptMsg(hello, transcr...
2025-11-17T00:09:16
facebook/react
22e39ea72e9d10f6634ea580aaba49c2e759ef0e
25677265038b89c1ee3000e0669339ed160d9d75
Include component name in "async/await is not supported" error message if available (#32435)
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -475,10 +475,13 @@ function warnIfAsyncClientComponent(Component: Function) {\n if (!didWarnAboutAsyncClientComponent.has(componentName)) {\n didWarnAboutAsyncClientComponent.add(componentName);\n console.error(...
2025-02-25T09:48:44
nodejs/node
2565e1c44e07c60fa46f04599ecfd1ca5b8d29fa
3fc70198e0ab7c34eee8887a7cc0d429a9fdebc7
deps: V8: cherry-pick 59d52e311bb1 Original commit message: [liftoff] Fix parameter passing during CallC Values smaller than 8 bytes need to be sign/zero extended to 8 bytes then pushed on to the stack. Change-Id: I5c9a2179ef2b65cf08b7e773180d78b252c2253f Reviewed-on: https://chromium-review.goo...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.18',\n+ 'v8_embedder_string': '-node.19',\n \n ##### V8 defaults for Node.js #####\n...
2025-05-28T22:26:26
electron/electron
45a049428795402cefa4799bb04567db65da4429
521108e2a52a9449323e7493355ae9b32523f105
fix: remove obsoleted `--inspect-brk` logic (#46560) fix: remove obsoleted --inspect-brk logic
[ { "path": "lib/browser/init.ts", "patch": "@@ -218,7 +218,6 @@ if (packagePath) {\n } else {\n // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchronous\n appCodeLoaded!();\n- process._firstFileName = Module._resolveFilename(path.join(packagePath, mainStartupS...
2025-04-09T13:35:40
vercel/next.js
818be9ae62a850dc60faf8f8dcb55c922f0a83ac
7a2f4ad140b6e00d1d240ce84c6c9c7ca7550ba4
Warn when overriding Cache-Control header on `/_next/` routes (#88353) Custom `Cache-Control` headers on `/_next/` routes can cause hard-to-debug development behaviors. Normally the dev server sends no-cache values to ensure that assets are always fresh. If a developer sets the max-age or immutable flag,, the browser ...
[ { "path": "packages/next/src/lib/load-custom-routes.ts", "patch": "@@ -725,6 +725,27 @@ export default async function loadCustomRoutes(\n )\n }\n \n+ const cacheControlSources: string[] = []\n+ for (const headerRoute of headers) {\n+ if (!headerRoute.source.startsWith('/_next/')) {\n+ contin...
2026-01-12T19:02:07
golang/go
6aeacdff3889bc743f2baf8e8239b8cb83afd807
9570036ca5a95bff4c6768288a7c1db68277b9c0
cmd/go: support sha1 repos when git default is sha256 When git is recent enough (beyond 2.29), always set the --object-format flag. This fixes repo cloning when users have set the git configuration init.defaultObjectFormat to sha256. Git is planning[1] to switch the default hash function to sha256 with the 3.0 relea...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git.go", "patch": "@@ -17,6 +17,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"slices\"\n \t\"sort\"\n@@ -91,9 +92,21 @@ func newGitRepo(ctx context.Context, remote string, local bool) (Repo, error) {\n \t\...
2025-11-14T02:16:43