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
vercel/next.js
18430c7f9137c735f9f4f7a03d9bb6b5780cd6c3
8db9a752432a1d7732839363d51e41c83f0ec798
Fix sst inspect tool to respect `CURRENT` and stale sst files (#92414) <!-- 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: ...
[ { "path": "turbopack/crates/turbo-persistence/src/bin/sst_inspect.rs", "patch": "@@ -24,6 +24,7 @@ use turbo_persistence::{\n BLOCK_HEADER_SIZE, checksum_block,\n meta_file::MetaFile,\n mmap_helper::advise_mmap_for_persistence,\n+ sst_filter::SstFilter,\n static_sorted_file::{\n B...
2026-04-07T16:22:35
nodejs/node
db887ea6c12889b8281002fb4b3a9a1fa9b28e00
f3633ef4c8e4e3fcc27b293993d238e9fd3cfc46
test: disable flaky WPT Blob test on AIX The test Blob-array-buffer.any.js can be flaky on AIX due to a recognized race condition in v8. The failed assert is in deps/v8/src/base/platform/platform-aix.cc on line 199, preceeded by the comment: > If this check fails it's most likely due to a racing condition > where an...
[ { "path": "test/wpt/status/FileAPI/blob.cjs", "patch": "@@ -0,0 +1,59 @@\n+'use strict';\n+\n+const os = require('node:os');\n+\n+// On AIX, V8's OS::DecommitPages() has an inherent race condition caused by\n+// AIX's non-POSIX MAP_FIXED behavior. The implementation must munmap() then\n+// mmap(), and anoth...
2026-03-30T04:52:23
facebook/react
014138df87869b174956f90a33fd6cf66e160114
4610359651fa10247159e2050f8ec222cb7faa91
[DevTools] Fix a crash when rendering a new class Component when simulating errored state (#35985)
[ { "path": "packages/react-devtools-shared/src/__tests__/storeForceError-test.js", "patch": "@@ -0,0 +1,106 @@\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 source tree.\n...
2026-03-10T17:05:48
electron/electron
12109371d3aa06bc95bf18893748782839023a8f
69891d04bfd0bc13ef04cf11aac0f6a497af5e72
fix: validate `dock_state_ `against allowlist before JS execution (#50646) fix: validate dock_state_ against allowlist before JS execution The dock_state_ member was concatenated directly into a JavaScript string and executed via ExecuteJavaScript() in the DevTools context. We should validate against the four known ...
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -12,6 +12,7 @@\n #include <utility>\n \n #include \"base/base64.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/containers/span.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/memory/raw_ptr.h\"\n@@ -160,6 ...
2026-04-03T15:39:16
golang/go
33e66cfb0406b27ce11229a4ebd944c4cb20006f
fe5b750ce9e9443b42b20ed242664950499ffafe
cmd/go: invalidate test cache when -coverpkg dependencies change When running tests with -cover and -coverpkg, the resulting coverage profile includes data from all packages specified in -coverpkg, not just the test package. Previously, the test cache key did not account for changes in these out-of-band covered packag...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1415,9 +1415,10 @@ type runTestActor struct {\n type runCache struct {\n \tdisableCache bool // cache should be disabled for this run\n \n-\tbuf *bytes.Buffer\n-\tid1 cache.ActionID\n-\tid2 cache.ActionID\n+\tbuf *bytes.Buffer\n+\tid1 cache...
2026-04-06T16:07:24
facebook/react
4610359651fa10247159e2050f8ec222cb7faa91
93882bd40ee48dc6d072dfc0b6cc7801fac1be31
[DevTools] Fix null ref crash in ContextMenu when items list is empty (#35929) Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com>
[ { "path": "packages/react-devtools-shared/src/devtools/ContextMenu/ContextMenu.js", "patch": "@@ -8,15 +8,14 @@\n */\n \n import * as React from 'react';\n-import {useLayoutEffect, createRef} from 'react';\n+import {useLayoutEffect} from 'react';\n import {createPortal} from 'react-dom';\n \n import Contex...
2026-03-05T15:52:23
vercel/next.js
8db9a752432a1d7732839363d51e41c83f0ec798
985394417f2ef72466238497576a060ca936821c
turbo-tasks: fix hashed cell mode crash on task error (re-land #91576) (#92108) ### What? Re-lands #91576 ("turbo-tasks: add hashed cell mode for hash-based change detection without cell data"), which was reverted in #92103 due to a `FATAL` crash in the `filesystem-cache` test suite. Includes a bug fix on top: in `t...
[ { "path": "Cargo.lock", "patch": "@@ -9717,6 +9717,7 @@ dependencies = [\n \"bincode 2.0.1\",\n \"data-encoding\",\n \"sha2\",\n+ \"smallvec\",\n \"turbo-tasks-macros\",\n \"xxhash-rust\",\n ]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/crates/tur...
2026-04-07T15:59:05
nodejs/node
bdf75a6c4e107595868b798b696a96ffe2c8c0e6
cc967413c9b32e4d34d74a3b758ca71bee7a7746
src: handle null backing store in ArrayBufferViewContents::Read Fixes: https://github.com/nodejs/node/issues/62342 src: handle null backing store in ArrayBufferViewContents::Read PR-URL: https://github.com/nodejs/node/pull/62343 Fixes: https://github.com/nodejs/node/issues/62342 Reviewed-By: René <contact.9a5d6388@re...
[ { "path": "src/util-inl.h", "patch": "@@ -591,7 +591,9 @@ void ArrayBufferViewContents<T, S>::Read(v8::Local<v8::ArrayBufferView> abv) {\n static_assert(sizeof(T) == 1, \"Only supports one-byte data at the moment\");\n length_ = abv->ByteLength();\n if (length_ > sizeof(stack_storage_) || abv->HasBuff...
2026-03-29T11:56:01
electron/electron
188813e206a08cc87a6491ea8c2bb90be1fc1fde
8b768b8211b81245df1c25963acfdd02c4dde71f
ci: fix pulling previous object checksums (#50635) * ci: fix pulling previous object checksums * chore: fix artifact finding * chore: skip unpack * refactor: dawidd6/action-download-artifact can't handle non-archived artifacts Assisted-by: Claude Opus 4.6 * refactor: use Octokit in standalone script Assisted-by:...
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -48,19 +48,15 @@ runs:\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n - name: Download previous object checksums\n- uses: dawidd6/action-download-artifact@09b07ec687d1077...
2026-04-03T04:52:50
golang/go
fe5b750ce9e9443b42b20ed242664950499ffafe
a415314c0bdec971ecd503471c804ec0208c6a2b
cmd/go/internal/modload: minor modernization fixes * Add package comment. * Make octal literal explicit. * Simplify single var declaration. Change-Id: I3841ca538034c75098502b35b1a713a98e936efc Reviewed-on: https://go-review.googlesource.com/c/go/+/763360 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -2,6 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+// Package modload provides module and package loading functionality.\n package modload\n \n import (\n@@ -850,7 +851,7 ...
2026-04-07T13:30:23
facebook/react
93882bd40ee48dc6d072dfc0b6cc7801fac1be31
3bc2d414287e62a7b74731c6c7b837270353a339
[errors] s/form state/action state (#35790) Noticed `useActionState` error still refers to "form state" while writing the docs.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js", "patch": "@@ -1092,7 +1092,7 @@ describe('ReactDOMForm', () => {\n const root = ReactDOMClient.createRoot(container);\n await act(async () => {\n root.render(<App />);\n- await waitForThrow('Cannot update form state while ...
2026-03-04T19:20:03
vercel/next.js
985394417f2ef72466238497576a060ca936821c
98330e3faeff95a51d2c185fc98f1f40bd86726f
Fix styled-jsx race condition: styles lost due to concurrent rendering (#92459) ### What? Fix a race condition in the Pages Router SSR path where styled-jsx styles were dropped from the rendered HTML. ### Why? `styledJsxInsertedHTML()` reads and flushes the styled-jsx style registry. Previously it was called concur...
[ { "path": "packages/next/src/server/render.tsx", "patch": "@@ -1385,29 +1385,22 @@ export async function renderToHTMLImpl(\n | {}\n | Awaited<ReturnType<typeof loadDocumentInitialProps>>\n \n- const [rawStyledJsxInsertedHTML, content] = await Promise.all([\n- renderToString(styledJsxInse...
2026-04-07T15:02:37
electron/electron
230f02faf2af01717898c8960b6658c7f7382499
1362d7b94d65821d6c752eea5e47573d8f455823
fix: don't force kFitToPrintableArea scaling when custom margins are set (#50615) When silent printing with non-default margins (custom, no margins, or printable area margins), the kFitToPrintableArea scaling option causes double-marginalization: the custom margins define the content area, then the scaling additionall...
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -703,7 +703,7 @@ index ac2f719be566020d9f41364560c12e6d6d0fe3d8..16d758a6936f66148a196761cfb875f6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/...
2026-04-02T18:41:21
nodejs/node
cc967413c9b32e4d34d74a3b758ca71bee7a7746
e75ac3c91836a18c0dad826ed4fdca84696161c7
deps: V8: cherry-pick cf1bce40a5ef Original commit message: [wasm] Fix S128Const on big endian Since http://crrev.com/c/2944437 globals are no longer little endian enforced. S128Const handling in the initializer needs to take this into account and byte reverse values which are hard coded in litt...
[ { "path": "deps/v8/src/wasm/constant-expression-interface.cc", "patch": "@@ -40,7 +40,17 @@ void ConstantExpressionInterface::S128Const(FullDecoder* decoder,\n const Simd128Immediate& imm,\n Value* result) {\n if (!gen...
2026-03-28T22:57:44
golang/go
a415314c0bdec971ecd503471c804ec0208c6a2b
e93b26688c0c25efa78b3948a58c5309307025a2
cmd/compile: ensure result selects are in the block of a call Without this CL, when compiling test/range4.go:func9, we get: b1: v1 = StaticLECall <runtime.deferrangefunc> mem = SelectN [1] v1 Defer v1 -> b2 b3 b2: v2 = SelectN [0] v1 That select in b2 should really live in b1. This doesn't cause a bug as far ...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -5162,6 +5162,19 @@ func (s *state) call(n *ir.CallExpr, k callKind, returnResultAddr bool, deferExt\n \t\ts.vars[memVar] = s.newValue1A(ssa.OpVarLive, types.TypeMem, v, s.mem())\n \t}\n \n+\t// Build result value (before we might end the defe...
2026-02-21T18:07:54
facebook/react
3bc2d414287e62a7b74731c6c7b837270353a339
5e4279134dbc29116407a5ec515e74e2c0ae5018
[noop] Fix `createContainer` argument order in the Fiber implementation (#35945)
[ { "path": ".eslintrc.js", "patch": "@@ -626,6 +626,7 @@ module.exports = {\n FinalizationRegistry: 'readonly',\n Exclude: 'readonly',\n Omit: 'readonly',\n+ Pick: 'readonly',\n Keyframe: 'readonly',\n PropertyIndexedKeyframes: 'readonly',\n KeyframeAnimationOptions: 'readonly',", ...
2026-03-04T13:20:43
vercel/next.js
b9a14768a239141fc07801e66c5a31cadee38c70
621c73a24794231ab7b194cbe924c4c909d9c970
docs: clarify that proxy/middleware matches static assets by default (#92441) <!-- CURSOR_AGENT_PR_BODY_BEGIN --> ### What? Adds an explicit note about Proxy's default matching behavior at the top of the **Matcher** section in the Proxy API reference — the first place users look when configuring which paths Proxy run...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx", "patch": "@@ -70,7 +70,11 @@ Optionally, a config object can be exported alongside the Proxy function. This o\n \n ### Matcher\n \n-The `matcher` option allows you to target specific paths for the Proxy to run on. You can specify these ...
2026-04-07T10:07:26
electron/electron
877fe479b599749e6efd2083b19b58cb028e7f4b
f41438ff73360a8ac42b45368d1d623f03fb4359
fix: glitchy rendering and maximize behavior with different GTK themes (#50550) * fix glitchy rendering with different gtk themes especially when maximizing * use actual insets, not restored insets
[ { "path": "shell/browser/ui/views/client_frame_view_linux.cc", "patch": "@@ -163,7 +163,7 @@ int ClientFrameViewLinux::ResizingBorderHitTest(const gfx::Point& point) {\n gfx::Rect ClientFrameViewLinux::GetBoundsForClientView() const {\n gfx::Rect client_bounds = bounds();\n if (!frame_->IsFullscreen()) ...
2026-04-02T14:52:27
nodejs/node
7ed2fdf3faefee63b0ccd5e65a0734e6096093cf
8ea96e653212c87d32665a263aa29744e41e64a2
esm: fix typo in worker loader hook comment PR-URL: https://github.com/nodejs/node/pull/62475 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/modules/esm/worker.js", "patch": "@@ -37,7 +37,7 @@ const { isCascadedLoaderInitialized, getOrInitializeCascadedLoader } = require('\n const { AsyncLoaderHooksOnLoaderHookWorker } = require('internal/modules/esm/hooks');\n \n /**\n- * Register asynchronus module loader customization ...
2026-03-28T16:48:29
golang/go
e93b26688c0c25efa78b3948a58c5309307025a2
f5d460c3ea59ab574d5908f66f604c573891ffe1
runtime: remove gopanicFP field from panic record We can use SP instead of FP for the single thing this was used for (finding the gopanic frame). Change-Id: Iad2b406705abc3cdb0dbcdd069f7f9a330509164 Reviewed-on: https://go-review.googlesource.com/c/go/+/738042 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: ...
[ { "path": "src/runtime/panic.go", "patch": "@@ -847,7 +847,6 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n-\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1146,7 +1145,7 @@ func gorecover() any {\n \t\t\t\tcase abi.FuncIDWrapper:\n \t\t\t\t\tcontinue...
2026-01-22T01:32:37
facebook/react
ee4699f5a1833bd12701d21556f36376d6ebad8b
23b2d8514f13f109b980b0a1f4f3aab906ad51d0
[noop] Fail tests on unasserted recoverable errors (#35948)
[ { "path": "packages/react-noop-renderer/src/createReactNoop.js", "patch": "@@ -1151,9 +1151,9 @@ function createReactNoop(reconciler: Function, useMutation: boolean) {\n }\n }\n \n- function onRecoverableError(error) {\n- // TODO: Turn this on once tests are fixed\n- // console.error(error);\n+...
2026-03-04T12:41:58
vercel/next.js
8aca9e3bd12419063a409183273e718cca853878
d75f07b3518a69691d3190f055ca2d30d700c56c
Include more context in macOS Rosetta 2 warning message (#92436) Addresses this missed review comment: https://github.com/vercel/next.js/pull/92220#discussion_r3024004242 There's only so much context we can provide because there's a ton of different ways users could've installed node incorrectly.
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -96,7 +96,9 @@ class NextRootCommand extends Command {\n os.cpus().some((cpu) => cpu.model.includes('Apple'))\n ) {\n warn(\n- 'You are running Next.js on an Apple Silicon Mac with Rosetta 2 translation, which may cause d...
2026-04-07T06:47:38
electron/electron
f41438ff73360a8ac42b45368d1d623f03fb4359
c6e201c96598e169300c86ad59940abdad91f4ec
fix: prefill native print dialog options on macOS with OOP printing (#50600) Chromium enabled out-of-process (OOP) printing by default on macOS in https://chromium-review.googlesource.com/c/chromium/src/+/6032774. This broke webContents.print() option prefilling (e.g. copies, collate, duplex) in two ways: 1. Scripted...
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2026-04-02T14:06:35
golang/go
f5d460c3ea59ab574d5908f66f604c573891ffe1
3b5954c6349d31465dca409b45ab6597e0942d9f
cmd/compile/testdata/script/issue77033.txt: make test panic The issue77033.txt script is executed by cmd/internal/script/scripttest/run.go program, that uses 60 seconds interrupt timeout. The timeout is implemented by calling os/exec.Cmd.Process.Signal(os.Interrupt) but that call is not implemented on Windows, and...
[ { "path": "src/cmd/compile/testdata/script/issue77033.txt", "patch": "@@ -1,5 +1,5 @@\n-go test -bench=Foo -cpuprofile=default.pgo\n-go test -bench=Foo -pgo=default.pgo\n+go test -bench=Foo -cpuprofile=default.pgo -timeout=30s\n+go test -bench=Foo -pgo=default.pgo -timeout=30s\n ! stdout 'FAIL'\n \n -- main...
2026-04-06T02:38:21
nodejs/node
74509b166ae999bd859c6eb2597ec61f227c5615
e78ccd8017f7c7ab03b34d58b7a224c80e75ce12
crypto: decorate async crypto job errors with OpenSSL error details PR-URL: https://github.com/nodejs/node/pull/62348 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/crypto/crypto_argon2.cc", "patch": "@@ -124,7 +124,8 @@ Maybe<void> Argon2Traits::AdditionalConfig(\n bool Argon2Traits::DeriveBits(Environment* env,\n const Argon2Config& config,\n ByteSource* out,\n- Cr...
2026-03-28T05:24:34
facebook/react
b4a8d298450fd1fd274445fe8554e5fc18c5e12c
6b113b7bd11f7fa432a0a8f9375013d30c884494
fix: remove unused variable to fix linter (#35919)
[ { "path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js", "patch": "@@ -1189,7 +1189,6 @@ describe('ReactFabric', () => {\n \n const ref1 = React.createRef();\n const ref2 = React.createRef();\n- const ref3 = React.createRef();\n \n const explicitTimeStampCamelCas...
2026-02-26T21:48:35
vercel/next.js
d75f07b3518a69691d3190f055ca2d30d700c56c
16dd58fa25abf87ae891628ce018114a4c333db6
turbo-persistence: skip BlockCache for uncompressed (mmap-backed) blocks (#92390) ### What? Skip the `BlockCache` entirely for uncompressed (mmap-backed) SST blocks, and add a per-file CRC verification bitmap so checksums are verified at most once per file open for any block. ### Why? Uncompressed blocks produce an...
[ { "path": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs", "patch": "@@ -1,4 +1,14 @@\n-use std::{cmp::Ordering, fs::File, hash::BuildHasherDefault, path::Path, rc::Rc, sync::Arc};\n+use std::{\n+ cmp::Ordering,\n+ fs::File,\n+ hash::BuildHasherDefault,\n+ path::Path,\n+ rc::Rc...
2026-04-07T05:01:57
electron/electron
156a4e610c7f2171ce2f6b484fd2f78253c17820
81f8fc1880aad73ae404687c5beb8de872067f34
fix: extension service workers not starting beyond first app launch (#50611) * fix: extension service worker not starting beyond first app launch * fix: set preference only for extensions with service workers
[ { "path": "shell/browser/extensions/electron_extension_loader.cc", "patch": "@@ -20,13 +20,15 @@\n #include \"base/time/time.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extensions/browser/extension_pref_names.h\"\n #...
2026-04-02T08:02:06
golang/go
3b5954c6349d31465dca409b45ab6597e0942d9f
a93560b70a65821ba8403b66261a3c23c93176c5
cmd/compile: report error instead of ICE for oversized map element When a map element or key type is 2GB or larger, the compiler crashed with "internal compiler error: map elem too big" in reflectdata.ZeroAddr. Add a size check in types.CalcSize for TMAP, similar to the existing check for channel element types, so th...
[ { "path": "src/cmd/compile/internal/types/size.go", "patch": "@@ -366,6 +366,12 @@ func CalcSize(t *Type) {\n \t\tt.intRegs = 1\n \t\tCheckSize(t.Elem())\n \t\tCheckSize(t.Key())\n+\t\tif t.Elem().width >= 1<<31 {\n+\t\t\tbase.Errorf(\"map element type too large\")\n+\t\t}\n+\t\tif t.Key().width >= 1<<31 {\...
2026-03-27T22:23:58
facebook/react
6b113b7bd11f7fa432a0a8f9375013d30c884494
98ce535fdb6ff559a5dd76b58c1bcaa983804957
[compiler] Deduplicate errors between ValidateExhaustiveDependencies and ValidatePreservedManualMemoization (#35917) With the recent changes to make the compiler fault tolerant and always continue through all passes, we can now sometimes report duplicative errors. Specifically, when `ValidateExhaustiveDependencies` fi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -826,6 +826,7 @@ export type StartMemoize = {\n * emitting diagnostics with a suggested replacement\n */\n depsLoc: SourceLocation | null;\n+ hasInvalidDeps?: true;\n loc: SourceLocation;\n };\n export type Fin...
2026-02-26T20:40:55
vercel/next.js
1fe590fc5e304c59e10cdc999e4da94965029d17
0dc354b8d71c8f8f5c7af09305fb2ced0c60c789
fix(server-hmr): metadata routes overwrite page runtime HMR handler (#92273) ### What? Fix server HMR becoming unresponsive after a metadata route is loaded in the same Node.js process as an app page. ### Why? Turbopack loads separate runtime chunks for app pages and metadata routes (`robots.ts`, `sitemap.ts`, `man...
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -1856,6 +1856,11 @@ export async function createHotReloaderTurbopack(\n __next__clear_chunk_cache__()\n }\n \n+ // Reset the server HMR handler registry. All server runtime chunks are\n+ // clear...
2026-04-07T01:31:59
golang/go
666e8c59c9211eae61e31f39ada1c5eed3ad6e11
e76c910108577c93651dff7481034d2d5b933c14
cmd/compile: improve Mul to Left Shift rules - fix a bug where it wouldn't recognize 1<<63 as a power of two - remove the IsSigned check; there is no such thing as a signed Mul If the rule works for signed numbers it works for unsigned ones too. Even if the intermediary steps makes no sense, it ends up wrapping ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1080,22 +1080,22 @@\n // Excluded from early opt so that prove can recognize mod\n // by the x - (x/d)*d pattern.\n // (Runs during \"middle opt\" and \"late opt\".)\n-(Mul8 <t> x (Const8 [c])) && isPowerOfTwo(c) && v.Block.Func.pa...
2026-03-29T05:31:38
electron/electron
e7080835f14958546a11e0b1aa3dc82f1d2d41af
7c1a6f7e955aa843187800900304a29171ea4da8
docs: add destroy method to native addon tutorials to prevent hang on quit (#50561) Native addons that hold persistent references to callbacks, emitters, and threadsafe functions prevent Electron from quitting cleanly since Electron 40.5.0 due to changes in Node.js shutdown behavior. This adds a `destroy()` method to ...
[ { "path": "docs/tutorial/native-code-and-electron-cpp-linux.md", "patch": "@@ -1097,7 +1097,8 @@ public:\n Napi::Function func = DefineClass(env, \"CppLinuxAddon\", {\n InstanceMethod(\"helloWorld\", &CppAddon::HelloWorld),\n InstanceMethod(\"helloGui\", &CppAddon::HelloGui),\n- Instanc...
2026-04-01T18:13:09
facebook/react
a48e9e3f10fed06c813399ccae8a28db7dd76683
074d96b9dd57ea748f2e869959a436695bbc88bf
[RN] Fix timeStamp property of SyntheticEvent in React Native (#35912) ## Summary This fixes the semantics of the `timeStamp` property of events in React Native. Currently, most events just assign `Date.now()` (at the time of creating the event object in JavaScript) as the `timeStamp` property. This is a divergence ...
[ { "path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js", "patch": "@@ -1153,6 +1153,138 @@ describe('ReactFabric', () => {\n expect.assertions(6);\n });\n \n+ it('propagates timeStamps from native events and sets defaults', async () => {\n+ const View = createReactNat...
2026-02-26T15:51:07
vercel/next.js
cd5d2210dd39ae8ff7d1d083edae486477be24a1
e296bcb812b0c2cc933099c52b483943c3e39f8f
Allow for parsing app route strings with and without slot names. (#92327) The old impl has a boolean arg that was always true. To support some fixes to routing I need to make the parser sometimes allow for slots but still not things like route groups. I am generalizing the function implementation to have a filter type...
[ { "path": "packages/next/errors.json", "patch": "@@ -1148,5 +1148,7 @@\n \"1147\": \"Turbopack database compaction is not supported on this platform\",\n \"1148\": \"webToReadable cannot be used in the edge runtime\",\n \"1149\": \"Node.js Readable cannot be teed in the edge runtime\",\n- \"1150\": \...
2026-04-06T21:51:11
golang/go
0d0799f055dcc9b3b41df74bee3fbe398ae2f0e7
ad7d6071ac1955e76e7407d8345cf18f354a1693
net/mail: fix quadratic complexity in consumeComment consumeComment builds the comment string by repeated string concatenation inside a loop. Each concatenation copies the entire string built so far, making the function O(n^2) in the depth of nested comments. Replace the concatenation with a strings.Builder, which am...
[ { "path": "src/net/mail/message.go", "patch": "@@ -832,7 +832,7 @@ func (p *addrParser) consumeComment() (string, bool) {\n \t// '(' already consumed.\n \tdepth := 1\n \n-\tvar comment string\n+\tvar comment strings.Builder\n \tfor {\n \t\tif p.empty() || depth == 0 {\n \t\t\tbreak\n@@ -846,12 +846,12 @@ fu...
2026-04-04T05:17:25
electron/electron
7c1a6f7e955aa843187800900304a29171ea4da8
22ac2b13fb62aca4134fbe336902009152184d43
docs: recommend subdirectory for userData to avoid Chromium conflicts (#50563) Fixes #45414 Storing files directly in the userData root can cause naming conflicts with Chromium's own subdirectories (Cache, GPUCache, Local Storage, etc.). Added a recommendation to use a subdirectory such as path.join(app.getPath('user...
[ { "path": "docs/api/app.md", "patch": "@@ -615,7 +615,11 @@ Returns `string` - The current application directory.\n by default is the `appData` directory appended with your app's name. By\n convention files storing user data should be written to this directory, and\n it is not recommended to wri...
2026-04-01T14:54:08
nodejs/node
7d1f1b4483cd6199fd08fb751f2607d29017b589
53bcd114b10021c4a883b08df4d3c2ff6946b430
test_runner: add exports option for module mocks Add options.exports support in mock.module() and normalize option shapes through a shared exports path. Keep defaultExport and namedExports as aliases, emit runtime deprecation warnings for legacy options, and update docs and tests, including output fixtures and cov...
[ { "path": "doc/api/test.md", "patch": "@@ -2483,16 +2483,32 @@ changes:\n generates a new mock module. If `true`, subsequent calls will return the same\n module mock, and the mock module is inserted into the CommonJS cache.\n **Default:** false.\n+ * `exports` {Object} Optional mocked exports. ...
2026-03-27T15:52:13
facebook/react
074d96b9dd57ea748f2e869959a436695bbc88bf
e33071c6142ae5212483a63b87d5d962860e535a
[flags] land `enableTrustedTypesIntegration` (#35816) ## Summary This flag enables React's integration with the browser [Trusted Types API](https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API). The Trusted Types API is a browser security feature that helps prevent DOM-based XSS attacks. When a site en...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -208,7 +208,7 @@ export const disableLegacyMode: boolean = true;\n // in open source, but www codebase still relies on it. Need to remove.\n export const disableCommentsAsDOMContainers: boolean = true;\n \n-export const enableTrustedTypesIntegra...
2026-02-25T19:49:30
golang/go
9956aca06ab9d3083fa0afaebb640a1a25dde77f
ba402cd756a02cd80bcd76a2f7afc22ae2041c6c
cmd/go/internal/workcmd: correct go.work file name Fixes #51714 Change-Id: I0619b1ca6715bed85ccc066a83a449f66a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/762660 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1634,10 +1634,10 @@\n // The -toolchain=name flag sets the Go toolchain to use.\n //\n // The -print flag prints the final go.work in its text format instead of\n-// writing it back to go.mod.\n+// writing it back to go.work.\n //\n // The -json flag prints t...
2026-04-03T23:55:05
vercel/next.js
9931cc0c85bdfe6e37490ec2241537657c549ca7
b592e6df87deede681bc0bd375eca06b49fc98eb
Fix fallback route params case in app-page handler (#91737) ## Summary - add production-route-shape fixture coverage for `/[teamSlug]/[project]/settings/domains` - add revalidation helpers (API and server action) and browser controls used by the regression test - reproduce the failing production sequence by priming, r...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -31,6 +31,8 @@ import {\n import { checkIsAppPPREnabled } from '../../server/lib/experimental/ppr' with { 'turbopack-transition': 'next-server-utility' }\n import {\n getFallbackRouteParams,\n+ getPlaceholderFallbackRouteParams,\n+ ...
2026-04-06T16:37:22
electron/electron
22ac2b13fb62aca4134fbe336902009152184d43
a8acb96608ffaa8f9c0ad8f55e6773aebbc2f725
fix: remove menu update debug log (#50608)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -478,7 +478,6 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n \n if (![represented\n isKindOfClass:[WeakPtrToElectronMenuModelAsNSObject class]]) {\n- NSLog(@\"representedObject is not a WeakPtrToElectronMenuMo...
2026-04-01T08:06:26
nodejs/node
53bcd114b10021c4a883b08df4d3c2ff6946b430
dbc74059503b629202823b1bc0010f0d5624dff6
zlib: fix use-after-free when reset() is called during write The Reset() method did not check the write_in_progress_ flag before resetting the compression stream. This allowed reset() to free the compression library's internal state while a worker thread was still using it during an async write, causing a use-after-fr...
[ { "path": "src/node_zlib.cc", "patch": "@@ -644,6 +644,12 @@ class CompressionStream : public AsyncWrap,\n CompressionStream* wrap;\n ASSIGN_OR_RETURN_UNWRAP(&wrap, args.This());\n \n+ if (wrap->write_in_progress_) {\n+ wrap->env()->ThrowError(\n+ \"Cannot reset zlib stream while a ...
2026-03-26T22:18:32
rust-lang/rust
cdde49123f4b070545d1146663421abef8e82999
8717b4b9c85cc2e66273fe623bebdbcba03fe938
Document the `-quick` job suffix
[ { "path": "src/doc/rustc-dev-guide/src/tests/ci.md", "patch": "@@ -150,7 +150,10 @@ Such a try build will not execute any tests, and it will allow compilation warni\n It is useful when you want to\n get an optimized toolchain as fast as possible, for a Crater run or performance benchmarks,\n even if it migh...
2026-04-07T15:23:32
facebook/react
e33071c6142ae5212483a63b87d5d962860e535a
c0060cf2a695d719152c939cfc3cced8f7da3e52
[compiler] Improved ref validation for non-mutating functions (#35893) If a function is known to freeze its inputs, and captures refs, then we can safely assume those refs are not mutated during render. An example is React Native's PanResponder, which is designed for use in interaction handling. Calling `PanResponder...
[ { "path": "compiler/CLAUDE.md", "patch": "@@ -35,6 +35,20 @@ yarn snap -p <file-basename> -d\n yarn snap -u\n ```\n \n+## Linting\n+\n+```bash\n+# Run lint on the compiler source\n+yarn workspace babel-plugin-react-compiler lint\n+```\n+\n+## Formatting\n+\n+```bash\n+# Run prettier on all files (from the r...
2026-02-24T20:36:32
vercel/next.js
b592e6df87deede681bc0bd375eca06b49fc98eb
b6017fac6a98a2337ce8c173ab72ad527e2b556a
fix: add AGENTS.md at package root for agent discovery (#92376) ### What? Add an `AGENTS.md` file at the npm package root (`node_modules/next/AGENTS.md`) so AI agents can discover the bundled documentation. ### Why? AI coding agents naturally check the package root for `AGENTS.md` before searching subdirectories. W...
[ { "path": "packages/next/AGENTS.md", "patch": "@@ -0,0 +1,7 @@\n+<!-- BEGIN:nextjs-agent-rules -->\n+\n+# This is NOT the Next.js you know\n+\n+This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `dist/docs/` before wri...
2026-04-06T15:19:19
golang/go
ba402cd756a02cd80bcd76a2f7afc22ae2041c6c
6110cd6f83caa1f255189c209711c216d649c6d7
runtime: fix timespec definition on 32bits systems The nsec field of timespec is a C long even when using 64bits time on 32bits systems. This is because by timespec API if nsec never holds more than a second worth of nanoseconds. If it would theses would increment the sec field while the nsec field would get the amou...
[ { "path": "src/runtime/defs_linux_386.go", "patch": "@@ -152,13 +152,14 @@ func (ts *timespec32) setNsec(ns int64) {\n \n type timespec struct {\n \ttv_sec int64\n-\ttv_nsec int64\n+\ttv_nsec int32\n+\t_ [4]byte // the C ABI aligns int64 to 8 bytes\n }\n \n //go:nosplit\n func (ts *timespec) setNsec(...
2026-03-04T09:01:11
electron/electron
97773bf50c9c09c791ea407b3757e767921a572c
1e0846749ba6d59ac48802718c48082e8b0bac00
fix: prevent borders and smearing in transparent frameless/client frame windows on Linux (#50541) fix the appearance of transparent frameless and client frame windows
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -239,7 +239,9 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Rect> ...
2026-03-31T16:24:10
nodejs/node
dbc74059503b629202823b1bc0010f0d5624dff6
e0cab9dcf7514cfabcf6e5989e2bf29455bf5f50
esm: fix source phase identity bug in loadCache eviction PR-URL: https://github.com/nodejs/node/pull/62415 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -145,7 +145,9 @@ class ModuleJobBase {\n */\n syncLink(requestType) {\n // Store itself into the cache first before linking in case there are circular\n- // references in the linking.\n+ // references in the linking. Track wheth...
2026-03-23T23:26:13
facebook/react
bd76b456c127222f59888953348d40cf8f03e3a0
b354bbd2d231fdeeec31d438c8e7c54877eee4ac
[DevTools] Fix ReactDevToolsBackend module for AMD (#35891) ## Summary For apps that use AMD, we need to actually `require()` the ReactDevToolsBackend and load it from the AMD module cache. This adds a check for the case where the `ReactDevToolsBackend` isn't defined globally, and so we load it with `require()`. ##...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -361,6 +361,7 @@ function startServer(\n response.end(\n backendFile.toString() +\n '\\n;' +\n+ `var ReactDevToolsBackend = typeof ReactDevToolsBackend !== \"undefined\" ? ReactDevToolsBackend : require(\"React...
2026-02-24T15:27:59
golang/go
6110cd6f83caa1f255189c209711c216d649c6d7
0fa3564a74b802219d3df0852fbe921b3fe9c5be
net/http: fix shadow var frame Change-Id: Ib03f65992b065e169fa6ccd08664336bec559c1d GitHub-Last-Rev: bd597d4325c713c53a9f22cb93892d90f393c6ac GitHub-Pull-Request: golang/go#78527 Reviewed-on: https://go-review.googlesource.com/c/go/+/762700 Reviewed-by: Nicholas Husin <nsh@golang.org> LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "src/net/http/server.go", "patch": "@@ -1160,7 +1160,8 @@ func relevantCaller() runtime.Frame {\n \tframes := runtime.CallersFrames(pc[:n])\n \tvar frame runtime.Frame\n \tfor {\n-\t\tframe, more := frames.Next()\n+\t\tvar more bool\n+\t\tframe, more = frames.Next()\n \t\tif !strings.HasPrefix(fra...
2026-04-04T08:51:23
vercel/next.js
7777dadcff070fcf26993ab9a9a8575c8237232e
81d5e070f4a84b34bb0efe2524c200584fed3215
docs: add deploy tests documentation to contributing guide (#92388) <!-- CURSOR_AGENT_PR_BODY_BEGIN --> ## What? Adds documentation to the contributing guide explaining how deploy tests work and how to run them. ## Why? Deploy tests are an important part of the Next.js CI pipeline that verify the framework works co...
[ { "path": "contributing/core/testing.md", "patch": "@@ -136,6 +136,43 @@ If you want to run a test again both Turbopack and Webpack, use Jest's `--projec\n pnpm test-dev test/e2e/app-dir/app/ --projects jest.config.*\n ```\n \n+### Deploy Tests\n+\n+Deploy tests verify that Next.js works correctly when depl...
2026-04-05T21:58:02
nodejs/node
9137925f60886c17e71f7e2e1bd33aed8eaee034
583c479c9f2ffe1d8ca489282023838ab19e632b
test: avoid flaky run wait in debugger restart test PR-URL: https://github.com/nodejs/node/pull/62112 Refs: https://github.com/nodejs/node/issues/61762 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-debugger-run-after-quit-restart.js", "patch": "@@ -41,7 +41,7 @@ const path = require('path');\n .then(() => {\n assert.match(cli.output, /Use `run` to start the app again/);\n })\n- .then(() => cli.stepCommand('run'))\n+ .then(() => cli.command('run'))\n ...
2026-03-25T21:22:41
electron/electron
1e0846749ba6d59ac48802718c48082e8b0bac00
8cd766ff53cece0d3f5020b94efa9567d4dc6071
fix: invoke print callback directly when no print job exists (#50431) ShowInvalidPrinterSettingsError() called TerminatePrintJob(true), but when no print_job_ had been created yet (e.g. settings validation failed before a job could start), TerminatePrintJob bails out immediately without reaching ReleasePrintJob() wher...
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2026-03-31T16:01:59
facebook/react
b354bbd2d231fdeeec31d438c8e7c54877eee4ac
c92c57971541915a69ad23abe9fdd14ac56b3975
[compiler] Update docs with fault tolerance summary, remove planning doc (#35888) Add concise fault tolerance documentation to CLAUDE.md and the passes README covering error accumulation, tryRecord wrapping, and the distinction between validation vs infrastructure passes. Remove the detailed planning document now that...
[ { "path": "compiler/CLAUDE.md", "patch": "@@ -229,20 +229,19 @@ Would enable the `enableJsxOutlining` feature and disable the `enableNameAnonymo\n 3. Look for `Impure`, `Render`, `Capture` effects on instructions\n 4. Check the pass ordering in Pipeline.ts to understand when effects are populated vs validat...
2026-02-24T00:18:44
vercel/next.js
81d5e070f4a84b34bb0efe2524c200584fed3215
5a922bc9bb9b4435da87f5b6783e3b14e26aadf9
next-core: deduplicate output assets and detect content conflicts on emit (#92292) ### What? Adds deduplication and conflict detection to the asset emission stage in `crates/next-core/src/emit.rs`, and a new `IssueStage::Emit` variant in `turbopack-core`. Before emitting, assets are grouped by their output path. If ...
[ { "path": "crates/next-core/src/emit.rs", "patch": "@@ -1,9 +1,16 @@\n-use anyhow::Result;\n+use anyhow::{Ok, Result};\n+use futures::join;\n+use smallvec::{SmallVec, smallvec};\n use tracing::Instrument;\n-use turbo_tasks::{TryFlatJoinIterExt, ValueToStringRef, Vc};\n-use turbo_tasks_fs::{FileSystemPath, r...
2026-04-05T18:37:58
electron/electron
e0bd4ffc39d6bd563d7094905f579c8d79643b4c
bbbcae1a12c5a827deef8e9c15e3177742d1ee7d
fix: add missing HandleScope in contentTracing.getTraceBufferUsage() (#50556) The `OnTraceBufferUsageAvailable` callback creates V8 handles via `Dictionary::CreateEmpty()` before `promise.Resolve()` enters its `SettleScope` (which provides a `HandleScope`). When the callback fires asynchronously from a Mojo response (...
[ { "path": "shell/browser/api/electron_api_content_tracing.cc", "patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promise.i...
2026-03-31T01:21:43
golang/go
0fa3564a74b802219d3df0852fbe921b3fe9c5be
3e5efa048ac647c7554eea3a4ed230f265841115
math/big: optimize writeMultiple to use StringWriter and ByteWriter This overhauls writeMultiple to reduce allocations: - return early if called with a count of 0 rather than allocating a buffer - if writing one byte, which happens when padding, try io.ByteWriter - try io.StringWriter - fallback to io.Writer as curren...
[ { "path": "src/math/big/intconv.go", "patch": "@@ -42,12 +42,27 @@ func (x *Int) String() string {\n \n // write count copies of text to s.\n func writeMultiple(s fmt.State, text string, count int) {\n-\tif len(text) > 0 {\n-\t\tb := []byte(text)\n-\t\tfor ; count > 0; count-- {\n-\t\t\ts.Write(b)\n+\tif le...
2025-01-29T12:25:37
rust-lang/rust
03b453cda3ec7cd3d656972340df933c7ea67691
906ca7ff5e1f01cdf59388574b4822365bffabea
Fix no results when searching for == in doc
[ { "path": "src/librustdoc/html/static/js/search.js", "patch": "@@ -4749,11 +4749,16 @@ class DocSearch {\n })(),\n \"query\": parsedQuery,\n };\n- } else if (parsedQuery.error !== null) {\n+ } else if (parsedQuery.error !== null || parsedQuery.foundE...
2026-04-07T05:54:30
facebook/react
c92c57971541915a69ad23abe9fdd14ac56b3975
011cede06811927e46147fa77f2581c3119f42b8
[compiler] Fix Pipeline.ts early-exit, formatting, and style issues (#35884) Fix the transformFire early-exit in Pipeline.ts to only trigger on new errors from transformFire itself, not pre-existing errors from earlier passes. The previous `env.hasErrors()` check was too broad — it would early-exit on validation error...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -442,6 +442,7 @@ class Context {\n recordError(error: CompilerErrorDetail): void {\n this.env.recordError(error);\n }\n+\n get nextCacheIndex(): number {\n return this.#nextCac...
2026-02-24T00:16:41
golang/go
3e5efa048ac647c7554eea3a4ed230f265841115
7a1d131afbb1aee15b56d8dd2405f270bbc486c2
time: wrong Sign Cast in Time.UnmarshalBinary (V2 Format) Fixes #78528 Change-Id: I8979a310dbf94b9710d3e8428480cb49a7308294 GitHub-Last-Rev: 3d7f5ef1491f15923add6ef556e387eb8d49bf3b GitHub-Pull-Request: golang/go#78518 Reviewed-on: https://go-review.googlesource.com/c/go/+/762480 Reviewed-by: David Chase <drchase@goo...
[ { "path": "src/time/time.go", "patch": "@@ -1552,7 +1552,7 @@ func (t *Time) UnmarshalBinary(data []byte) error {\n \tbuf = buf[4:]\n \toffset := int(int16(buf[1])|int16(buf[0])<<8) * 60\n \tif version == timeBinaryVersionV2 {\n-\t\toffset += int(buf[2])\n+\t\toffset += int(int8(buf[2]))\n \t}\n \n \t*t = T...
2026-04-04T11:06:26
electron/electron
bbbcae1a12c5a827deef8e9c15e3177742d1ee7d
3e1666be08b4034cfabe801885380adb40069551
fix: re-enable MacWebContentsOcclusion with embedder window fix (#50579) * fix: re-enable MacWebContentsOcclusion with embedder window fix Replace the full revert of Chromium's MacWebContentsOcclusion cleanup with a targeted patch that handles embedder windows shown after WebContentsViewCocoa attachment. This lets us...
[ { "path": "patches/chromium/.patches", "patch": "@@ -119,7 +119,7 @@ build_disable_thin_lto_mac.patch\n feat_corner_smoothing_css_rule_and_blink_painting.patch\n build_add_public_config_simdutf_config.patch\n fix_multiple_scopedpumpmessagesinprivatemodes_instances.patch\n-revert_code_health_clean_up_stale_m...
2026-03-30T21:13:00
rust-lang/rust
eacf5b85561628a24bcda3e8c277c7cfbb686cbe
bcded331651b60a0383b3ff51db4f24c4495ac53
Generate more verbose error delegation
[ { "path": "compiler/rustc_ast_lowering/src/delegation.rs", "patch": "@@ -128,14 +128,12 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n {\n self.get_sig_id(delegation_info.resolution_node, span)\n } else {\n- return self.generate_delegat...
2026-04-07T10:04:59
vercel/next.js
2bf38b01154ab1b3b0de0e4a5094f4cffb6c20d2
3d3405a1be8f7288df58fb2ed72feeb48b14229d
feat: add experimental.swcEnvOptions for SWC preset-env configuration (#92272) ### What? Add `experimental.swcEnvOptions` to expose SWC's preset-env `env` configuration options — including `mode`, `coreJs`, `include`, `exclude`, `skip`, `shippedProposals`, `forceAllTransforms`, `debug`, and `loose`. ### Why? Curren...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -29,6 +29,7 @@ use turbopack_core::{\n use turbopack_css::chunk::CssChunkType;\n use turbopack_ecmascript::{\n AnalyzeMode, TypeofWindow, chunk::EcmascriptChunkType, references::esm::UrlRewriteBehavior,\n+ transform::PresetEnvConfi...
2026-04-04T03:27:04
nodejs/node
0d7e4b1d4b0220b68bc2c5c2b973deff1664824b
82615369d4d9aab2d841d4d790263d2c6336f2e4
build,test: test array index hash collision This enables v8_enable_seeded_array_index_hash and add a test for it. Fixes: https://hackerone.com/reports/3511792 deps: V8: backport 0a8b1cdcc8b2 Original commit message: implement rapidhash secret generation Bug: 409717082 Change-Id: I471f33d66de32002f744a...
[ { "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.13',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2026-01-29T02:30:37
facebook/react
011cede06811927e46147fa77f2581c3119f42b8
2e0927dc70d75563192156aa3d504f5e14d3d0c7
[compiler] Rename mismatched variable names after type changes (#35883) Rename `state: Environment` to `env: Environment` in ValidateMemoizedEffectDependencies visitor methods, and `errorState: Environment` to `env: Environment` in ValidatePreservedManualMemoization's validateInferredDep. --- [//]: # (BEGIN SAPLING F...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -230,7 +230,7 @@ function validateInferredDep(\n temporaries: Map<IdentifierId, ManualMemoDependency>,\n declsWithinMemoBlock: Set<DeclarationId>,\n validDepsInMemoBlock: Array<...
2026-02-24T00:13:46
golang/go
7a1d131afbb1aee15b56d8dd2405f270bbc486c2
47d6423673479edc418e777d221f2527076e9944
os: use t.TempDir in root_test tempDirWithUnixSocket tempDirWithUnixSocket used os.MkdirTemp("", ""), while other paths in root consistency tests use t.TempDir(). If GOTMPDIR and the system temp dir are on different filesystems (such as during abuild), TestRootConsistencyRename and TestRootConsistencyLink may produce...
[ { "path": "src/os/root_test.go", "patch": "@@ -1211,15 +1211,7 @@ var rootConsistencyTestCases = []rootConsistencyTest{{\n }}\n \n func tempDirWithUnixSocket(t *testing.T, name string) string {\n-\tdir, err := os.MkdirTemp(\"\", \"\")\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n-\tt.Cleanup(func() {\n-\t\...
2026-03-11T14:08:09
electron/electron
3e1666be08b4034cfabe801885380adb40069551
a06b49aca19b912b1ccfef0ed5a1d5c97f615b69
chore: remove dead C++ code from shell/ (#50513) Removes unreferenced code found via codebase sweep. Each category below may indicate a missing feature rather than truly-unused code — see PR description. Dead class (1): ElectronNavigationUIData — never instantiated; ElectronBrowserClient uses upstream ExtensionNa...
[ { "path": "filenames.gni", "patch": "@@ -793,8 +793,6 @@ filenames = {\n \"shell/browser/extensions/electron_kiosk_delegate.h\",\n \"shell/browser/extensions/electron_messaging_delegate.cc\",\n \"shell/browser/extensions/electron_messaging_delegate.h\",\n- \"shell/browser/extensions/electron_...
2026-03-30T17:36:00
rust-lang/rust
db373833ce6d49c593507db7cffd170826ed951f
bcded331651b60a0383b3ff51db4f24c4495ac53
Fix pin docs Split a long sentence to improve readability.
[ { "path": "library/core/src/pin.rs", "patch": "@@ -474,9 +474,9 @@\n //!\n //! In an intrusive doubly-linked list, the collection itself does not own the memory in which\n //! each of its elements is stored. Instead, each client is free to allocate space for elements it\n-//! adds to the list in whichever m...
2026-04-07T06:01:23
vercel/next.js
cb0d88f6e3e340216d478e0ba0c201ec23f7c15c
28096d36be801257f83ca91d53835fa08f52b67d
Improve existing dev server error message to suggest using it (#92317) <!-- CURSOR_AGENT_PR_BODY_BEGIN --> ### What? Improves the error message shown when a user tries to start `next dev` while another dev server is already running in the same directory. ### Why? Previously, the error message only suggested killing...
[ { "path": "packages/next/src/build/lockfile.ts", "patch": "@@ -202,12 +202,17 @@ export class Lockfile {\n )\n }\n console.error()\n+ console.error(\n+ `You can access the existing server at ${cyan(serverInfo.appUrl)},`\n+ )\n // Use pla...
2026-04-03T23:33:13
nodejs/node
82615369d4d9aab2d841d4d790263d2c6336f2e4
b36d5a3d94dc3a1ddbcc35d51ce19d1fa61e8e47
src: handle NGHTTP2_ERR_FLOW_CONTROL error code Refs: https://hackerone.com/reports/3531737 PR-URL: https://github.com/nodejs-private/node-private/pull/832 CVE-ID: CVE-2026-21714
[ { "path": "src/node_http2.cc", "patch": "@@ -1154,8 +1154,14 @@ int Http2Session::OnInvalidFrame(nghttp2_session* handle,\n // The GOAWAY frame includes an error code that indicates the type of error\"\n // The GOAWAY frame is already sent by nghttp2. We emit the error\n // to liberate the Http2Sessio...
2026-03-11T14:22:23
facebook/react
2e0927dc70d75563192156aa3d504f5e14d3d0c7
9075330979bb9eeec7c29b80fbab6048154c8f1f
[compiler] Remove local CompilerError accumulators, emit directly to env.recordError() (#35882) Removes unnecessary indirection in 17 compiler passes that previously accumulated errors in a local `CompilerError` instance before flushing them to `env.recordErrors()` at the end of each pass. Errors are now emitted direc...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -11,6 +11,7 @@ import invariant from 'invariant';\n import {\n CompilerDiagnostic,\n CompilerError,\n+ CompilerErrorDetail,\n CompilerSuggestionOperation,\n ErrorCategory,\n } from '../CompilerError';\n@@ -1...
2026-02-24T00:11:50
rust-lang/rust
b400f22c7b5125a3f35c12ecae1d31251e90fdc5
49b6ac01d6f4c3da812039ae846407a20961aa4c
Show the guard exhaustivity note only when it's the guards alone that cause non-exhaustiveness Only show the "match arms with guards don't count towards exhaustivity" note when removing all guards would make the match exhaustive. Previously, this note was shown whenever all arms had guards, even if the patterns themse...
[ { "path": "compiler/rustc_mir_build/src/thir/pattern/check_match.rs", "patch": "@@ -532,6 +532,18 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {\n | hir::MatchSource::AwaitDesugar\n | hir::MatchSource::FormatArgs => None,\n };\n+\n+ // Check...
2026-04-07T09:04:24
golang/go
47d6423673479edc418e777d221f2527076e9944
70dc75b79b7454caf0ed256b51ff716f880b317d
cmd/go/internal/script: add fuzz test for quoteArgs Adds a fuzz test for quoteArgs and fixes the bugs it found: handling of empty strings and strings containing "&" or "$". This is a copy of a similar change submitted to rsc.io/script: https://github.com/rsc/script/pull/10 Change-Id: I76e7fc89475e1c4e415f45f2c7ac4a8...
[ { "path": "src/cmd/internal/script/engine.go", "patch": "@@ -493,15 +493,13 @@ func expandArgs(s *State, rawArgs [][]argFragment, regexpArgs []int) []string {\n }\n \n // quoteArgs returns a string that parse would parse as args when passed to a command.\n-//\n-// TODO(bcmills): This function should have a ...
2024-02-23T05:00:46
vercel/next.js
739299d3efab3f6baace5e0af6b8897358893d1e
d5f479c1289619200de3acdfa0325bae111e1bad
fix: add @deprecated annotation to experimental.useCache (#92316) ### What? Add a `@deprecated` JSDoc annotation to `experimental.useCache` in `config-shared.ts`, pointing to `cacheComponents: true` as the successor. ### Why? `experimental.cacheComponents` already has `@deprecated use top-level cacheComponents inst...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -940,6 +940,7 @@ export interface ExperimentalConfig {\n \n /**\n * Enables the use of the `\"use cache\"` directive.\n+ * @deprecated use top-level `cacheComponents` instead\n */\n useCache?: boolean\n ", "additions": 1, ...
2026-04-03T22:16:23
nodejs/node
ef5929b5aaae7a14e839e2123f54580d18702df0
59c86b1d9377fae95b0523fc16537161dd685f41
http: use null prototype for headersDistinct/trailersDistinct Use { __proto__: null } instead of {} when initializing the headersDistinct and trailersDistinct destination objects. A plain {} inherits from Object.prototype, so when a __proto__ header is received, dest["__proto__"] resolves to Object.prototype (truthy)...
[ { "path": "lib/_http_incoming.js", "patch": "@@ -128,7 +128,7 @@ ObjectDefineProperty(IncomingMessage.prototype, 'headersDistinct', {\n __proto__: null,\n get: function() {\n if (!this[kHeadersDistinct]) {\n- this[kHeadersDistinct] = {};\n+ this[kHeadersDistinct] = { __proto__: null };\n \...
2026-02-19T14:49:43
facebook/react
9075330979bb9eeec7c29b80fbab6048154c8f1f
8a33fb3a1cd6a8230cb9c49f4cda71f8d21c8476
[compiler] Remove tryRecord, add catch-all error handling, fix remaining throws (#35881) Remove `tryRecord()` from the compilation pipeline now that all passes record errors directly via `env.recordError()` / `env.recordErrors()`. A single catch-all try/catch in Program.ts provides the safety net for any pass that inc...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts", "patch": "@@ -252,6 +252,7 @@ export type LoggerEvent =\n | CompileErrorEvent\n | CompileDiagnosticEvent\n | CompileSkipEvent\n+ | CompileUnexpectedThrowEvent\n | PipelineErrorEvent\n | TimingEvent;\n \n@@ -286,6...
2026-02-24T00:10:17
rust-lang/rust
8c490f312c29a056a29d489b47b0a7b20c925783
2ea74a93444b8f53c89d863d2f471abfb439054a
track caller Add `#[track_caller]` to some functions which can panic b/c of the caller's wrong index (this helped me debug some mistakes I did while refactoring `ty::Alias`)
[ { "path": "compiler/rustc_middle/src/ty/generic_args.rs", "patch": "@@ -50,14 +50,17 @@ impl<'tcx> rustc_type_ir::inherent::GenericArgs<TyCtxt<'tcx>> for ty::GenericArg\n self.rebase_onto(tcx, source_ancestor, target_args)\n }\n \n+ #[track_caller]\n fn type_at(self, i: usize) -> Ty<'tcx>...
2026-04-03T13:42:47
golang/go
70dc75b79b7454caf0ed256b51ff716f880b317d
d74de3ce79d4ab3495650bfcc4682cab09514b89
cmd/compile: unify DWARF variable generation and remove encoding Refactor the DWARF variable generation in the compiler: 1. Replace the intermediate []byte location list encoding with a structured LocListEntry type. The old code packed SSA block/value IDs into pointer-sized integers, wrote them alongside DWARF4...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -93,7 +93,7 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t\t\tdefault:\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif !ssa.IsVarWantedForDebug(n) {\n+\t\t\tif !shouldEmitDwarfVar(n) {\n \t\t\t\tcontinue\n...
2026-03-03T00:25:23
facebook/react
8a33fb3a1cd6a8230cb9c49f4cda71f8d21c8476
cebe42e24521ce02bf427fd482009d01e1466277
[compiler] Cleanup: consistent tryRecord() wrapping and error recording (#35880) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35880). * #35888 * #35884 * #35883 * #35882 * #35881 * __->__ #35880
[ { "path": "compiler/fault-tolerance-overview.md", "patch": "@@ -328,4 +328,6 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n * **Partial HIR can trigger downstream invariants.** When lowering skips or partially handles constructs (e.g., unreachable hoisted functions, `v...
2026-02-24T00:08:04
nodejs/node
2e2abc6e895745cc5d04dd203afb8e0083fb6835
dabb2f5f0c0367bf8e0e116b311b9308111ab4c7
tls: wrap SNICallback invocation in try/catch Wrap the owner._SNICallback() invocation in loadSNI() with try/catch to route exceptions through owner.destroy() instead of letting them become uncaught exceptions. This completes the fix from CVE-2026-21637 which added try/catch protection to callALPNCallback, onPskServer...
[ { "path": "lib/internal/tls/wrap.js", "patch": "@@ -210,23 +210,27 @@ function loadSNI(info) {\n return requestOCSP(owner, info);\n \n let once = false;\n- owner._SNICallback(servername, (err, context) => {\n- if (once)\n- return owner.destroy(new ERR_MULTIPLE_CALLBACK());\n- once = true;\...
2026-02-17T13:26:17
electron/electron
a06b49aca19b912b1ccfef0ed5a1d5c97f615b69
d318893aa06231d20d9c8e74ccdbee86c9f7a86e
chore: bump chromium to 148.0.7759.0 (main) (#50515) * chore: bump chromium in DEPS to 148.0.7755.0 * chore: bump chromium in DEPS to 148.0.7756.0 * chore: update patches * 7698536: Wire up experiment arms for Glic summarize pdf button. Refs https://chromium-review.googlesource.com/c/chromium/src/+/7698536 * 7695...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7751.0',\n+ '148.0.7759.0',\n 'node_version':\n 'v24.14.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-03-30T17:32:35
rust-lang/rust
2ea74a93444b8f53c89d863d2f471abfb439054a
5d5cdefd0a2ea19a1052f0414ecb238fe5f4df57
`ty::Alias` refactor: fix clippy
[ { "path": "src/tools/clippy/clippy_lints/src/dereference.rs", "patch": "@@ -885,12 +885,21 @@ impl TyCoercionStability {\n continue;\n },\n ty::Param(_) if for_return => Self::Deref,\n- ty::Alias(ty::Free | ty::Inherent, _) => unreachable!(\...
2026-04-03T13:23:22
golang/go
2a902c8a8a37935abc4adc93605276c9d2103e45
f4b87f314dd7a890e9d3b42d7d6427cc7f51f9a2
cmd/compile: optimize switch statements using lookup tables Switch statement containing integer constant cases and case bodies just returning a constant should be optimizable to a simpler and faster table lookup instead of a jump table. That is, a switch like this: switch x { case 0: return 10 case 1: re...
[ { "path": "src/cmd/compile/internal/test/switch_test.go", "patch": "@@ -294,3 +294,135 @@ func (r rng) next(predictable bool) rng {\n func (r rng) value() uint64 {\n \treturn uint64(r)\n }\n+\n+// Benchmarks for switch-to-lookup-table optimization.\n+// These use functions that return constants, which is th...
2026-03-18T09:34:00
facebook/react
cebe42e24521ce02bf427fd482009d01e1466277
d6558f36e2f1de6d0504de0fc6ed2f4f621aa655
[compiler] Add fault tolerance test fixtures (#35879) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35879). * #35888 * #35884 * #35883 * #35882 * #35881 * #35880 * __->__ #35879
[ { "path": "compiler/fault-tolerance-overview.md", "patch": "@@ -327,4 +327,5 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n * **Phase 3 (BuildHIR) revealed that most error sites already used `builder.errors.push()` for accumulation.** The existing lowering code was des...
2026-02-24T00:06:39
nodejs/node
dabb2f5f0c0367bf8e0e116b311b9308111ab4c7
3a04e0ff25a8c0090b699a606e237e7f52693583
src: handle url crash on different url formats Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs-private/node-private/pull/816 Refs: https://hackerone.com/reports/3546390 CVE-ID: CVE-2026-21712
[ { "path": "src/node_url.cc", "patch": "@@ -344,7 +344,13 @@ void BindingData::Format(const FunctionCallbackInfo<Value>& args) {\n // directly want to manipulate the url components without using the respective\n // setters. therefore we are using ada::url here.\n auto out = ada::parse<ada::url>(href.To...
2026-02-10T13:23:20
vercel/next.js
6160d0db3e698c017a69e44f2f63ecba64fddfd8
392d02ae8bbea6b9a5eb5d664938af2959a17874
Revert "simplify session dependent tasks and add TTL support (#91729)" (#92320) This is causing OOMs in some applications running with a persistent cache See discussion: https://vercel.slack.com/archives/C03EWR7LGEN/p1775159630054759 The issue appears to be invalidating the chunk graph in an odd way that causes us t...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -363,37 +363,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.options.dependency_tracking\n }\n \n- /// Sets the initial aggregation number for a newly created task. Root tasks get `u32::MAX`\n- ...
2026-04-03T21:46:23
golang/go
583ed06a2b82cf7437b37b2fc1fd2c772d7de420
16b01d5362794110376c23e83f386b9e413e2464
crypto/x509/pkix: avoid quadratic string concatenation in RDNSequence.String RDNSequence.String builds its result using repeated s += ... inside nested loops, leading to O(N²) time and memory complexity. A certificate with many Subject or Issuer RDN entries can therefore cause excessive CPU and memory usage when Strin...
[ { "path": "src/crypto/x509/pkix/pkix.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/hex\"\n \t\"fmt\"\n \t\"math/big\"\n+\t\"strings\"\n \t\"time\"\n )\n \n@@ -38,23 +39,25 @@ var attributeTypeNames = map[string]string{\n // String returns a string representation of the sequence r,\n // roughly fo...
2026-03-26T21:05:23
electron/electron
d318893aa06231d20d9c8e74ccdbee86c9f7a86e
f133e2f775f86fcd293647d50d19a56fe5acb4d6
fix: fix devtools patch type error on release builds (#50551) fix: fix devtools types
[ { "path": "patches/devtools_frontend/feat_allow_enabling_extension_panels_on_custom_protocols.patch", "patch": "@@ -7,14 +7,14 @@ This allows us to show Chrome extension panels on pages served over\n custom protocols.\n \n diff --git a/front_end/core/root/Runtime.ts b/front_end/core/root/Runtime.ts\n-index ...
2026-03-27T22:40:51
rust-lang/rust
5d5cdefd0a2ea19a1052f0414ecb238fe5f4df57
0f767084b8c562dea5a95b760cf30fb80eb6454b
`ty::Alias` refactor: fix rustdoc
[ { "path": "src/librustdoc/clean/mod.rs", "patch": "@@ -1699,7 +1699,7 @@ fn clean_qpath<'tcx>(hir_ty: &hir::Ty<'tcx>, cx: &mut DocContext<'tcx>) -> Type\n let self_type = clean_ty(qself, cx);\n \n let (trait_, should_fully_qualify) = match ty.kind() {\n- ty::Alias(ty::...
2026-04-03T13:07:24
facebook/react
59d7c27087fae2b7abbb360187b473068c4bcaaa
9b2d8013eed2b02193aebc37a614b37853ada214
[compiler] Phase 8: Add multi-error test fixture and update plan (#35877) Add test fixture demonstrating fault tolerance: the compiler now reports both a mutation error and a ref access error in the same function, where previously only one would be reported before bailing out. Update plan doc to mark all phases as co...
[ { "path": "compiler/fault-tolerance-overview.md", "patch": "@@ -279,27 +279,27 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n \n ### Phase 8: Testing\n \n-- [ ] **8.1 Update existing `error.todo-*` fixture expectations**\n+- [x] **8.1 Update existing `error.todo-*` fix...
2026-02-24T00:02:32
vercel/next.js
392d02ae8bbea6b9a5eb5d664938af2959a17874
ff7cd1bf2340ea56369c39d1aa74f1e273a7d233
ci: fix stats action (#92325) We recently re-imaged the self-hosted Linux runners and it now hits `ERR_PNPM_EXDEV` when pnpm copies packages between its default store and the temp stats workspace. Keeping both under the same temp root avoids the cross-filesystem copy failure.
[ { "path": ".github/actions/next-stats-action/src/constants.js", "patch": "@@ -3,7 +3,20 @@ const os = require('os')\n const fs = require('fs')\n \n const benchTitle = 'Page Load Tests'\n-const workDir = fs.mkdtempSync(path.join(os.tmpdir(), 'next-stats'))\n+\n+function getTempRoot() {\n+ const tempRoot = p...
2026-04-03T21:25:13
nodejs/node
7be0e28b6800ee0d06a9194e5a81123fdf589375
d88a46aa280c72a00dbee6171abf9469c3694e13
2026-03-24, Version 20.20.2 'Iron' (LTS) This is a security release. Notable changes: crypto: * (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC deps: * update undici to v6.24.1 * (CVE-2026-21717) fix array index hash collision http: * (CVE-2026-21710) use null prototype for headersDistin...
[ { "path": "CHANGELOG.md", "patch": "@@ -115,7 +115,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.1\">20.20.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.2\">20.20...
2026-03-19T12:29:55
golang/go
16b01d5362794110376c23e83f386b9e413e2464
7b5ba1f8ae661d4750a05e3908e0903cf9249a3b
path/filepath: document Dir behavior for Windows volume-only paths Clarify that on Windows, Dir("C:") returns "C:." (the current directory on drive C) rather than a root path. This is because Clean("") returns "." and Dir prepends the volume name. Fixes #77314 Change-Id: Idbc8ef5a4905e8587268428503a98a28c8c2f6e9 Rev...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -463,6 +463,10 @@ func Base(path string) string {\n // If the path is empty, Dir returns \".\".\n // If the path consists entirely of separators, Dir returns a single separator.\n // The returned path does not end in a separator unless it is the root direc...
2026-02-17T01:10:17
electron/electron
b4460a05daf9aacbcab0e20763cfe6e612080efd
0a1ea1f028e0345d4908284c9917f745c0d5b3d4
docs: Document known issue with dock.hide() method (#50476) * Document known issue for dock.hide() method Added a note about a known issue with dock.hide() method. * Adjust workaround time for dock.hide() method Updated workaround time for dock.hide() known issue. * Fix known issue timing for dock.hide() workaroun...
[ { "path": "docs/api/dock.md", "patch": "@@ -56,6 +56,9 @@ Returns `string` - The badge string of the dock.\n \n Hides the dock icon.\n \n+> [!IMPORTANT]\n+> **Known issue:** Calling `dock.hide()` within one second of a previous call will have no effect. As a workaround, ensure at least one second has elapse...
2026-03-27T14:00:04
facebook/react
9b2d8013eed2b02193aebc37a614b37853ada214
e3e5d95cc457eb1ba54431bc95604aa931fc6adf
[compiler] Phase 4 (batch 2), 5, 6: Update remaining passes for fault tolerance (#35876) Update remaining validation passes to record errors on env: - validateMemoizedEffectDependencies - validatePreservedManualMemoization - validateSourceLocations (added env parameter) - validateContextVariableLValues (changed throwT...
[ { "path": "compiler/fault-tolerance-overview.md", "patch": "@@ -174,17 +174,17 @@ These passes already accumulate errors internally and return `Result<void, Compi\n - Record errors on env\n - Update Pipeline.ts call site (line 315): remove `.unwrap()`\n \n-- [ ] **4.10 `validateMemoizedEffectDependencie...
2026-02-24T00:01:02
nodejs/node
d88a46aa280c72a00dbee6171abf9469c3694e13
141d9f15b2ff2860ffb0b10e730a783f587dee7c
2026-03-24, Version 25.8.2 (Current) This is a security release. Notable changes: build,deps,test: * (CVE-2026-21717) test array index hash collision crypto: * (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC and KMAC http: * (CVE-2026-21710) use null prototype for headersDistinct/trailersD...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,6 +41,21 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">25.8.2</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.1\">25.8.1</a><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.0\">25.8.0<...
2026-03-20T17:29:07
vercel/next.js
ff7cd1bf2340ea56369c39d1aa74f1e273a7d233
9cb2048439b8b95b6e6460d17d94d9cb1823fbef
Move streamToUint8Array back to node-web-streams-helper.ts (#92263) ## What? Fixes the case where having React 18 installed fails the build because react-dom gets imported from stream-ops. #90500 moved the `streamToUint8Array` from node-web-streams-helper to stream-ops. This moves the function back to where it was be...
[ { "path": "packages/next/src/server/app-render/stream-ops.node.ts", "patch": "@@ -357,16 +357,6 @@ export async function streamToBuffer(stream: AnyStream): Promise<Buffer> {\n return webStreamToBuffer(nodeReadableToWebReadableStream(stream))\n }\n \n-export async function streamToUint8Array(\n- stream: A...
2026-04-03T18:55:17
golang/go
7b5ba1f8ae661d4750a05e3908e0903cf9249a3b
0a36b58888cc41b276362673f70be87efd7e55ad
cmd/internal/obj/loong64: run go generate "go generate" on this package seems to generate a diff. I have no idea whether this diff is reasonable or not. It looks kinda weird, but maybe? Or perhaps something is wrong with ../mkcnames.go. Change-Id: I3474bab3f6880ffc24c1cf6ec11958a1c9467909 Reviewed-on: https://go-revi...
[ { "path": "src/cmd/internal/obj/loong64/cnames.go", "patch": "@@ -60,8 +60,14 @@ var cnames0 = []string{\n \t\"SAUTO\",\n \t\"LAUTO\",\n \t\"ZOREG\",\n-\t\"SOREG\",\n-\t\"LOREG\",\n+\t\"SOREG_8\",\n+\t\"SOREG_9\",\n+\t\"SOREG_10\",\n+\t\"SOREG_11\",\n+\t\"SOREG_12\",\n+\t\"SOREG_16\",\n+\t\"LOREG_32\",\n+\t...
2026-03-31T21:46:09
electron/electron
b41ec6586a1e1d4c387b0650478d761b286c3b60
4eff8f20f2f64fa7b808bccd5ca0c4bbca8261a4
fix: correct linux zygote process titles (#50509) * fix: correct linux zygote process titles * pass argv on mac as well * lint
[ { "path": "shell/app/electron_library_main.mm", "patch": "@@ -10,6 +10,7 @@\n #include \"base/apple/scoped_nsautorelease_pool.h\"\n #include \"base/at_exit.h\"\n #include \"base/command_line.h\"\n+#include \"base/compiler_specific.h\"\n #include \"base/i18n/icu_util.h\"\n #include \"base/notreached.h\"\n #i...
2026-03-27T12:24:05