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 | a8d460e90e431f0962325d27d82be37bd7668394 | 6df47fc8a31cb665b0b5fed06935d3f094f6ca4e | fix(next/legacy/image): add deployment id (dpl) query string support (#89956)
## What?
Add deployment ID (`?dpl`) query string support to `next/legacy/image`.
## Why?
The shared `image-loader.ts` (used by `next/image`) already extracts and
appends the `?dpl` deployment ID to optimized image URLs. The legacy
image c... | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -24,6 +24,7 @@ import { ImageConfigContext } from '../../shared/lib/image-config-context.shared\n import { warnOnce } from '../../shared/lib/utils/warn-once'\n import { normalizePathTrailingSlash } from '../normalize-trailing-slash'\n impor... | 2026-02-17T02:07:03 |
nodejs/node | 9495906f8b17d6db3b849a6bd8c8f2d2ef9ee09e | c2d14c15149bfed367eeb3857408cc1e7a1e2105 | debugger: fix event listener leak in the run command
It should remove both the error and the ready event listeners
attached when either of them fires, instead of removing only
the one whose corresponding event fires, otherwise the other
event listener will always get leaked.
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "lib/internal/debugger/inspect_client.js",
"patch": "@@ -13,7 +13,7 @@ const {\n const Buffer = require('buffer').Buffer;\n const crypto = require('crypto');\n const { ERR_DEBUGGER_ERROR } = require('internal/errors').codes;\n-const { EventEmitter } = require('events');\n+const { EventEmitter, onc... | 2025-11-07T13:28:03 |
facebook/react | 9baecbf02b2b53746f259b77293288aa9d8968f8 | 0422a00e3e5e6823ae763bef37911ee50709c324 | [Fizz] Avoid hanging when suspending after aborting while rendering (#34192)
This fixes an edge case where you abort the render while rendering a
component that ends up Suspending. It technically only applied if you
were deep enough to be inside `renderNode` and was not susceptible to
hanging if the abort + suspending... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -94,9 +94,7 @@ describe('ReactDOMFizzServer', () => {\n ReactDOM = require('react-dom');\n ReactDOMClient = require('react-dom/client');\n ReactDOMFizzServer = require('react-dom/server');\n- if (__EXPERIMEN... | 2025-08-12T23:46:56 |
electron/electron | 26e886c517bc57747081b6cc26380b03bc61654a | 26a473db981c9593154aaeb0a558565722105c83 | fix: disable NSAutoFillHeuristicController on macOS 26 (#48379)
Co-authored-by: Keeley Hammond <khammond@slack-corp.com> | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -141,3 +141,4 @@ chore_add_electron_objects_to_wrappablepointertag.patch\n chore_expose_isolate_parameter_in_script_lifecycle_observers.patch\n revert_partial_remove_unused_prehandlemouseevent.patch\n allow_electron_to_depend_on_components_os_crypt_sync.pa... | 2025-09-25T23:40:55 |
golang/go | a1150b5017b789c6dc22d2c3939f7df10baf3dff | 6b7206feb2df3116bd5c471813353ffec1ff25fe | cmd/compile/internal/pgo: error parsing profile (for pgo) after scaling
If a valid profile is scaled such that the samples/counts become 0,
an empty graph in which the compiler complain that we never saw a start line
since the graph has no nodes which is a misleading error message.
src/cmd/internal/pgo/pprof.go was m... | [
{
"path": "src/cmd/compile/internal/test/pgo_inl_test.go",
"patch": "@@ -365,3 +365,53 @@ func TestPGOHash(t *testing.T) {\n \t\tt.Errorf(\"output contains unexpected source line, out:\\n%s\", out)\n \t}\n }\n+\n+// TestPGOZeroValues tests that a profile with all sample values scaled to zero\n+// is treated... | 2025-11-28T08:27:09 |
vercel/next.js | e5e0d35672b4663ddf554cf5a1292e3d883d1022 | 960437cfcccdd0b4763ef1c4e2f9ea7697e81ecc | Use StageController for runtime prerendering (#89972)
Stacked on #89971
This controller was introduced to help with dev time validation. It
models stage transitions in a helpful way that will become more useful
soon as we get more advanced with what kinds of sync IO are considered
errors.
To prepare for this we will... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -222,7 +222,6 @@ import {\n } from '../../shared/lib/router/utils/get-dynamic-param'\n import type { ExperimentalConfig } from '../config-shared'\n import type { Params } from '../request/params'\n-import { createPromiseWithResolve... | 2026-02-17T00:13:44 |
facebook/react | 0422a00e3e5e6823ae763bef37911ee50709c324 | 47fd2f5e1487fb48c561a6f8f30c534d8f8c7747 | [DevTools] Fix missing key warning (#34186) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementView.js",
"patch": "@@ -174,9 +174,8 @@ export default function InspectedElementView({\n {showStack ? <StackTraceView stack={stack} /> : null}\n {showOwnersList &&\n owners?.map(owne... | 2025-08-12T17:58:19 |
electron/electron | 26a473db981c9593154aaeb0a558565722105c83 | 6661457cdfdddfc7963aa2450fcec9d4bb9688f6 | refactor: make api::Menu inherit from gin::Wrappable (#48351)
* refactor: make api::Menu inherit from gin::Wrappable*
* refactor: make api::Menu::kWrapperInfo const
* refactor: use three-arg version of GetConstructor in Menu
refactor: undo branch changes to two-arg version of GetConstructor
* fixup! refactor: make... | [
{
"path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch",
"patch": "@@ -8,20 +8,21 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163... | 2025-09-25T00:42:22 |
golang/go | 6edb9f9c51f4f9042563f6fcf68701d1fed33c8f | 819c53c25f2992113c202644045b93bd3a578f54 | go/types, types2: remove support for gotypesalias GODEBUG flag
For #76472.
Change-Id: Ia51b41639637b1de916625e73c26f625382be305
Reviewed-on: https://go-review.googlesource.com/c/go/+/736441
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacc... | [
{
"path": "src/cmd/compile/internal/noder/irgen.go",
"patch": "@@ -56,7 +56,6 @@ func checkFiles(m posMap, noders []*noder) (*types2.Package, *types2.Info, map[*\n \t\tIgnoreBranchErrors: true, // parser already checked via syntax.CheckBranches mode\n \t\tImporter: &importer,\n \t\tSizes: ... | 2026-01-15T00:10:00 |
facebook/react | 47fd2f5e1487fb48c561a6f8f30c534d8f8c7747 | 1dc3bdead16bfb6d481f29b4ec55ffcf63f5bca8 | [DevTools] Fix index (#34187)
I used the wrong indexer and tested with one entry. | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -3247,7 +3247,7 @@ export function attach(\n const debugInfo = thenable._debugInfo;\n if (debugInfo) {\n for (let j = 0; j < debugInfo.length; j++) {\n- const debugEntry = debugInfo[i];\n+ ... | 2025-08-12T17:57:35 |
electron/electron | 6661457cdfdddfc7963aa2450fcec9d4bb9688f6 | b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc | refactor: prefer upstream `gin::Arguments::ThrowTypeError()` over `gin_helper` (#48368)
* refactor: use gin::Arguments::ThrowTypeError() in AutoUpdater::SetFeedURL()
* refactor: use gin::Arguments::ThrowTypeError() in Browser::Focus()
* refactor: use gin::Arguments::ThrowTypeError() in SystemPreferences::SetUserDefa... | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -455,10 +455,10 @@ void GotPrivateKey(std::shared_ptr<content::ClientCertificateDelegate> delegate,\n }\n \n void OnClientCertificateSelected(\n- v8::Isolate* isolate,\n+ v8::Isolate* const isolate,\n std::shared_ptr<content::ClientCe... | 2025-09-25T00:10:05 |
golang/go | 819c53c25f2992113c202644045b93bd3a578f54 | c7258178cda55e3903ad8e4b6cc51861fb689457 | cmd/compile: ensure ops have the expected argument widths
The generic SSA representation uses explicit extension and
truncation operations to change widths of values. The map
intrinsics were playing somewhat fast and loose with this
requirement. Fix that, and add a check to make sure we
don't regress.
I don't think t... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/divmod.rules",
"patch": "@@ -223,7 +223,7 @@\n (Rsh64Ux64 <typ.UInt64>\n (Avg64u\n (Lsh64x64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt64> [32]))\n- (Mul64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt32> [int64(umagic32(c).m)]... | 2025-12-18T20:29:39 |
facebook/react | d587434c350a9ba317285ce7b535add47ab3c205 | ca292f7a57e8c5950cda51f1aa00509dbb07dbf1 | [DevTools] Pick up suspended by info from use() (#34148)
Similar to #34144 but for `use()`.
`use()` dependencies don't get added to the `fiber._debugInfo` set
because that just models the things blocking the children, and not the
Fiber component itself. This picks up any debug info from the thenable
state that we sta... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -791,7 +791,7 @@ describe('InspectedElement', () => {\n \"react_lazy\": {\n \"_payload\": Dehydrated {\n \"preview_short\": {…},\n- \"preview_long\": {_result: () => {}, _... | 2025-08-11T16:10:05 |
electron/electron | b51e82c5fbec9c6d0bbf68bcfd51ec5309596cbc | 235fdc41f6ccea67afa10a423024d337093540fd | test: rerun failed tests individually (#48205)
* test: rerun failed tests individually
* ci: use screencapture-nag-remover
Needed to bypass the popup message "bash" is requesting to bypass the system private window picker and directly access your screen and audio.
* Revert "chore: test with 1st quadrant of the wind... | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -110,11 +110,6 @@ jobs:\n configure_sys_tccdb \"$values\"\n fi\n done\n-\n- # Ref: https://github.com/getsentry/sentry-cocoa/blob/main/scripts/ci-enable-permissions.sh\n- if [ \"$OSTYPE... | 2025-09-24T20:35:14 |
golang/go | a006e17162ddf70b7ee23a8ec2e3e064d0102bd5 | 858d4bf8511a7741cf5c21f1d51b23ed180fd450 | syscall: document Sendfile semantics
syscall.Sendfile behavior differs significantly between operating
systems.
Document the platform-specific behavior for the offset argument and
partial write reporting on Linux versus BSD-derived systems.
Fixes #64044
Change-Id: I93f740c3e2df911a10bf0884ffab218d4bb4e5fc
GitHub-La... | [
{
"path": "src/syscall/syscall_unix.go",
"patch": "@@ -525,6 +525,22 @@ func Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n \treturn\n }\n \n+// Sendfile copies up to count bytes from file descriptor infd to file descriptor outfd.\n+//\n+// It wraps the sendfile system call. The behavior vari... | 2026-01-18T14:11:05 |
nodejs/node | 525c4fb316a8074bea4e4aad358c3b376e99826c | b4b141377938dbc5705a20389e87f337991e3d87 | repl: fix pasting after moving the cursor to the left
Fixes: https://github.com/nodejs/node/issues/60446
PR-URL: https://github.com/nodejs/node/pull/60470
Reviewed-By: Jordan Harband <ljharb@gmail.com> | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -659,7 +659,17 @@ class Interface extends InterfaceConstructor {\n [kInsertString](c) {\n this[kBeforeEdit](this.line, this.cursor);\n if (!this.isCompletionEnabled) {\n- this.line += c;\n+ if (this.cursor < this.line.length) {... | 2025-11-05T20:36:59 |
facebook/react | 62a634b9722aa77d7ddb1fe8017db7d3a0925389 | 53d07944df70781b929f733e2059df43ca82edd3 | [DebugTools] Use thenables from the _debugThenableState if available (#34161)
In the case where a Promise is not cached, then the thenable state might
contain an older version. This version is the one that was actually
observed by the committed render, so that's the version we'll want to
inspect.
We used to not store... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -147,6 +147,8 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n let currentFiber: null | Fiber = null;\n let currentHook: null | Hook = null;\n let currentContextDependency: null | ContextDependency<mixed> = null;\n+... | 2025-08-11T15:46:27 |
nodejs/node | fa9918e4120d126f333bcd796c2b8556811bf7a8 | 8511902b55c131f42ba9f3be135bbc16a75d6edf | test: add more logs to test-esm-loader-hooks-inspect-wait
This provides a bit more information about where & when the child
processes crashes when it crashes / flakes in the CI.
PR-URL: https://github.com/nodejs/node/pull/60466
Refs: https://github.com/nodejs/node/issues/54346
Reviewed-By: Luigi Pinca <luigipinca@gma... | [
{
"path": "test/parallel/test-esm-loader-hooks-inspect-wait.js",
"patch": "@@ -12,6 +12,7 @@ const { NodeInstance } = require('../common/inspector-helper.js');\n \n async function runTest() {\n const main = fixtures.path('es-module-loaders', 'register-loader.mjs');\n+ process.env.NODE_DEBUG = 'esm,async_... | 2025-11-05T13:10:06 |
golang/go | 858d4bf8511a7741cf5c21f1d51b23ed180fd450 | 8e3104dc269b959083f7e7133841e3366a477ef1 | debug/elf: return FormatError when reading short files
NewFile returns the raw error from ReadAt when failing to read the
ELF identifier, typically io.EOF for empty or short files. This breaks
the API contract that all parsing failures should return *FormatError.
Wrap the error in FormatError for consistency with oth... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -290,7 +290,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t// Read and decode ELF identifier\n \tvar ident [16]uint8\n \tif _, err := r.ReadAt(ident[0:], 0); err != nil {\n-\t\treturn nil, err\n+\t\treturn nil, &FormatError{0, \"cannot read ELF identifi... | 2026-01-15T12:19:10 |
vercel/next.js | 6144980ce306a1d962304f1e3881ad2b84f5ff92 | f8e47d49b0b5feb9e0f281cdb79af6d6f7013eb8 | Expand deferred entries test suite and fix turbopack build (#90057)
## Summary
Reworks Turbopack deferred entries in production build so deferred
routes are processed last in the same project lifecycle, with
`onBeforeDeferredEntries` executed between the non-deferred and deferred
phases.
## What changed
- Moved defer... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -806,11 +806,26 @@ impl AppProject {\n \n #[turbo_tasks::function]\n pub async fn routes(self: Vc<Self>) -> Result<Vc<Routes>> {\n+ Ok(self.routes_with_filter(None))\n+ }\n+\n+ #[turbo_tasks::function]\n+ pub async fn routes_with_f... | 2026-02-16T23:54:14 |
electron/electron | 1fda08b8c8ffad2fec485f7c8089b9e0958cc2f5 | 19256a07dde3771b36cdec01ccf4b004a623d79b | chore: bump chromium to 142.0.7417.0 (main) (#48275)
* chore: bump chromium in DEPS to 142.0.7401.0
* 6911185: Reland "Send touch moves async immediately after scroll starts."
https://chromium-review.googlesource.com/c/chromium/src/+/6911185
* 6906887: mac: click through content area in main window
https://chromiu... | [
{
"path": ".github/actions/checkout/action.yml",
"patch": "@@ -172,7 +172,6 @@ runs:\n run: |\n rm -rf src/android_webview\n rm -rf src/ios/chrome\n- rm -rf src/third_party/blink/web_tests\n rm -rf src/third_party/blink/perf_tests\n rm -rf src/chrome/test/data/xr/webvr_info\... | 2025-09-23T03:16:27 |
facebook/react | 53d07944df70781b929f733e2059df43ca82edd3 | 34ce3acafdcfb6830250043b64d8af2450c730bc | [Fiber] Assign implicit debug info to used thenables (#34146)
Similar to #34137 but for Promises.
This lets us pick up the debug info from a raw Promise as a child which
is not covered by `_debugThenables`. Currently ChildFiber doesn't stash
its thenables so we can't pick them up from devtools after the fact
without ... | [
{
"path": "packages/react-reconciler/src/ReactFiberThenable.js",
"patch": "@@ -12,6 +12,7 @@ import type {\n PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n+ ReactIOInfo,\n } from 'shared/ReactTypes';\n \n import type {LazyComponent as LazyComponentType} from 'react/src/ReactLazy';\n@@ -2... | 2025-08-11T15:44:05 |
nodejs/node | 76027d83e975c2d66d15ed2575b3718f45319ab2 | cfa11ba893f5905840049b0bfe33653bbfd718a8 | test: split test-esm-wasm.js
The test has been flaking due to either timeout or calling
uv_async_send on a closing/closed handle. As the test squeezes
too many independent test cases in one file, split it up to
avoid timing out on slower machines and aid debugging.
PR-URL: https://github.com/nodejs/node/pull/60491
Re... | [
{
"path": "test/es-module/test-esm-wasm-escape-import-names.mjs",
"patch": "@@ -0,0 +1,10 @@\n+// Test that import names are properly escaped\n+import '../common/index.mjs';\n+import { spawnSyncAndAssert } from '../common/child_process.js';\n+import * as fixtures from '../common/fixtures.js';\n+\n+spawnSync... | 2025-11-05T10:36:31 |
golang/go | 8e3104dc269b959083f7e7133841e3366a477ef1 | eaf6650c2bff2fe466621f8fa23844dcbbdbcee8 | simd/archsimd/_gen/simdgen: fix typos in error messages
simdgen: fix typos in error messages
Change-Id: I921eea63c4847b2af43a1d5a1ea075e86f58aa77
GitHub-Last-Rev: 8c9dae51fd906aee04f52a5d44c6d4c923fc52d0
GitHub-Pull-Request: golang/go#77012
Reviewed-on: https://go-review.googlesource.com/c/go/+/732880
Reviewed-by: Ke... | [
{
"path": "src/simd/archsimd/_gen/simdgen/gen_utility.go",
"patch": "@@ -157,7 +157,7 @@ func (op *Operation) shape() (shapeIn inShape, shapeOut outShape, maskType maskS\n \t\t\tif shapeOut != OneVregOutAtIn && in.AsmPos == 0 && in.Class == \"vreg\" {\n \t\t\t\tshapeOut = OneVregOutAtIn\n \t\t\t} else {\n-\... | 2025-12-27T14:09:40 |
electron/electron | f62d7254c4c4c865e40da8056aee73644aa37bd7 | c7aa0b537d4be8bf5db281bacdf76a26aae1866d | build: update build tools to get siso for forks fix (#48345) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -44,14 +44,6 @@ runs:\n - name: Add Clang problem matcher\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n- - name: Setup Siso for fork pull requests\n- if: ${{ github.e... | 2025-09-18T04:04:09 |
vercel/next.js | a04d598f3c9070674968e57c610182df65a0755e | ababa1b3d967030ba2aa63a808ef3203f59e9b73 | docs: agent skills, pr-status script, and AGENTS.md updates (1/8) (#89857)
## Summary
- **Agent skills**: 9 new skill files in `.agents/skills/` covering DCE,
flags, react-vendoring, runtime-debug, PR triage, and skill authoring
- **PR status tooling**: `scripts/pr-status.js` script and
`.claude/commands/pr-status.md... | [
{
"path": ".agents/skills/README.md",
"patch": "@@ -0,0 +1,115 @@\n+# Skills Authoring Guide\n+\n+Skills are on-demand context files that Claude loads when relevant. They extend `AGENTS.md` with deep-dive workflows, code templates, and verification steps.\n+\n+## When to Create a Skill\n+\n+Create a skill w... | 2026-02-16T17:32:27 |
facebook/react | 34ce3acafdcfb6830250043b64d8af2450c730bc | 6445b3154ee60c2b2aa15d8be437a3f07feeb8f9 | [DevTools] Pick up suspended by info from React.lazy in type position (#34144)
Normally, we pick up debug info from instrumented Promise or React.Lazy
while we're reconciling in ReactChildFiber when they appear in the child
position. We add those to the `_debugInfo` of the Fiber.
However, we don't do that for for Laz... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -104,6 +104,7 @@ import {\n MEMO_NUMBER,\n MEMO_SYMBOL_STRING,\n SERVER_CONTEXT_SYMBOL_STRING,\n+ LAZY_SYMBOL_STRING,\n } from '../shared/ReactSymbols';\n import {enableStyleXFeatures} from 'react-devtools-feature-... | 2025-08-11T15:42:59 |
rust-lang/rust | 4fd1d9713af32df00514bb57e5e888b84d34291d | 043bd767688281d574ea8cc0c368156021baa61d | Skip ICE message for fatal errors | [
{
"path": "src/tools/miri/src/eval.rs",
"patch": "@@ -10,6 +10,7 @@ use std::{iter, thread};\n \n use rustc_abi::ExternAbi;\n use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n+use rustc_errors::FatalErrorMarker;\n use rustc_hir::def::Namespace;\n use rustc_hir::def_id::DefId;\n use rustc_middle::ty::... | 2026-03-16T21:18:59 |
electron/electron | 048d6207014ac6294ac3f69bbd71182b91593f46 | 15cdae1cf0bed0d759fe1e7b7087e5e3fc32269d | fix: remove unneeded handlescope from JS callbacks (#48318)
fix: remove handlescope from JS callbacks | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -1700,14 +1700,11 @@ Session* Session::CreateFrom(v8::Isolate* isolate,\n return nullptr;\n }\n \n- {\n- v8::HandleScope handle_scope(isolate);\n- v8::Local<v8::Object> wrapper;\n- if (!session->GetWrapper(isolate).ToLocal(&... | 2025-09-15T21:56:38 |
golang/go | eaf6650c2bff2fe466621f8fa23844dcbbdbcee8 | 1b7e5836ad2ae6bc5466e3b1916294d20403386c | test: use lower-case error message in heapsampling.go
According to Go style guidelines, error strings should not be capitalized.
Change-Id: Iacfb3f5192b7be40da99b6b7e4801f1ae1169efc
GitHub-Last-Rev: 440396e0946edb18c422442ea235b5c57c2899af
GitHub-Pull-Request: golang/go#76999
Reviewed-on: https://go-review.googlesour... | [
{
"path": "test/heapsampling.go",
"patch": "@@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram\n // consistently far from the expected value.\n func checkValue(fname string, ln int, testName string, want int64, got []int64) error {\n \tif got == nil {\n-\t\t... | 2025-12-26T14:48:24 |
nodejs/node | f4145f04518f6da697344029a963e24b95ef4276 | 53c4a39fec941e04150554fdd3e654b48f2e1b31 | doc: fix typo in http.md
PR-URL: https://github.com/nodejs/node/pull/59354
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> | [
{
"path": "doc/api/http.md",
"patch": "@@ -639,7 +639,7 @@ added: v0.3.6\n -->\n \n Emitted when the request has been sent. More specifically, this event is emitted\n-when the last segment of the response headers and body have been handed off to\n+when the last segment of the request headers and body have b... | 2025-11-04T22:37:12 |
vercel/next.js | 80e849e152aa244d270cd539766e3bd69a97b6cf | 0382ecc2963f42baa2aa15f378309a40d0f62ed3 | fix(turbopack): --debug-build-paths fails with route groups (#89336)
Confirmed the fix locally on the original app I faced the issue with.
### Why?
When using `--debug-build-paths`, a pattern with a route group on
Turbopack, it fails with an error:
```
Error [PageNotFoundError]: Cannot find module for page: /nested... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -10,6 +10,7 @@ use next_core::{\n instrumentation::instrumentation_files,\n middleware::middleware_files,\n mode::NextMode,\n+ next_app::{AppPage, AppPath},\n next_client::{\n ClientChunkingContextOptions, get_client_chunkin... | 2026-02-16T09:23:00 |
facebook/react | 6445b3154ee60c2b2aa15d8be437a3f07feeb8f9 | ab5238d5a40a4a4a68b351d345ab26f8ec5785e2 | [Fiber] Add additional debugInfo to React.lazy constructors in DEV (#34137)
This creates a debug info object for the React.lazy call when it's
called on the client. We have some additional information we can track
for these since they're created by React earlier.
We can track the stack trace where `React.lazy` was ca... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2822,7 +2822,7 @@ describe('ReactFlight', () => {\n expect(getDebugInfo(promise)).toEqual(\n __DEV__\n ? [\n- {time: 20},\n+ {time: gate(flags => flags.enableAsyncDebugInfo) ?... | 2025-08-11T15:42:23 |
rust-lang/rust | 043bd767688281d574ea8cc0c368156021baa61d | 0312931d8c0ba1a28268a12c06202b68cbc65f76 | Make `layout_of` cycles fatal errors | [
{
"path": "compiler/rustc_codegen_llvm/src/context.rs",
"patch": "@@ -1134,11 +1134,7 @@ impl<'tcx> FnAbiOfHelpers<'tcx> for CodegenCx<'_, 'tcx> {\n fn_abi_request: FnAbiRequest<'tcx>,\n ) -> ! {\n match err {\n- FnAbiError::Layout(\n- LayoutError::SizeOverflow(... | 2026-02-27T05:23:06 |
electron/electron | 54447387218af60f6290170e72fe7c32b4b2a1c8 | a6959ca97b93485f3ccc38e4d357e9b2e9273479 | fix: set ozone platform for wayland (#48301)
* fix: set ozone platform for wayland
* whoops, includes. thx charles | [
{
"path": "BUILD.gn",
"patch": "@@ -655,6 +655,7 @@ source_set(\"electron_lib\") {\n \"//ui/events/devices/x11\",\n \"//ui/events/platform/x11\",\n \"//ui/gtk:gtk_config\",\n+ \"//ui/linux:display_server_utils\",\n \"//ui/linux:linux_ui\",\n \"//ui/linux:linux_ui_factory\"... | 2025-09-12T23:17:06 |
vercel/next.js | 18b18e228aee0d578963bdebf5df805ab426f6e1 | ee76e305cc26fc20035bdaf556273a0246876b14 | fix(agents-md): use `require.resolve()` to get the installed `next` version (#89166)
### Why?
When the package.json has Next.js version with a tag instead of a
specific version, e.g., `"next": "canary"`, it received an error:
```
Failed to pull docs: Could not find documentation for Next.js vcanary. This version may... | [
{
"path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js",
"patch": "@@ -5,6 +5,7 @@ const fs = require('fs')\n const path = require('path')\n const os = require('os')\n const { runAgentsMd } = require('../../bin/agents-md')\n+const { getNextjsVersion } = require('../../lib/agents-md')\n \n /**\... | 2026-02-14T20:36:47 |
golang/go | 1b7e5836ad2ae6bc5466e3b1916294d20403386c | e9e05687dee08ba0f0fb07b076f1c3f47bb57f34 | cmd/compile: speedup large init function compile time
Fixes #77153
Change-Id: Ia3906e4d686281be78b65daf7a7a4fd1b2b2483d
Reviewed-on: https://go-review.googlesource.com/c/go/+/737880
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Re... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -3342,6 +3342,9 @@ func (r *reader) pkgInitOrder(target *ir.Package) {\n \t// Outline (if legal/profitable) global map inits.\n \tstaticinit.OutlineMapInits(fn)\n \n+\t// Split large init function.\n+\tstaticinit.SplitLargeInit(fn)\n+\n \tta... | 2026-01-21T11:11:29 |
nodejs/node | c9578dc557ef767eb8204a9d0d7731a599213028 | be3fc1f7296f831a49b7c538b503684c7c6ca7b8 | crypto: fix argument validation in crypto.timingSafeEqual fast path
A regression introduced by
https://github.com/nodejs/node/commit/0136bb0ee807b9789bf69e8d87e7a98e1b15f217
made it possible for the fast path to be hit with non-array-buffer
arguments despite that the fast paths could only deal with array
buffer argume... | [
{
"path": "src/crypto/crypto_timing.cc",
"patch": "@@ -56,6 +56,20 @@ bool FastTimingSafeEqual(Local<Value> receiver,\n // NOLINTNEXTLINE(runtime/references)\n FastApiCallbackOptions& options) {\n HandleScope scope(options.isolate);\n+ if (!IsAnyBufferSou... | 2025-11-03T22:18:51 |
facebook/react | ab5238d5a40a4a4a68b351d345ab26f8ec5785e2 | 7a934a16b861366282e297ee61611f9bd8c524cb | [DevTools] Show name prop of Suspense / Activity in the Components Tree view (#34135)
The name prop will be used in the Suspense tab to help identity a
boundary. Activity will also allow names. A custom component can be
identified by the name of the component but built-ins doesn't have that.
This PR adds it to the Co... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -2369,13 +2369,23 @@ export function attach(\n const keyString = key === null ? null : String(key);\n const keyStringID = getStringID(keyString);\n \n+ const nameProp =\n+ fiber.tag === SuspenseCom... | 2025-08-11T15:41:46 |
electron/electron | a6959ca97b93485f3ccc38e4d357e9b2e9273479 | 45353ae38c9b3bee1ed888bed5685a64c3e864ab | refactor: allocate api::Debugger on cpp heap (#48266)
* refactor: remove unused isolate arg from Debugger ctor
* refactor: make Debugger ctor, dtor public
needed for cppgc::MakeGarbageCollected()
This is what upstream does, e.g. https://chromium-review.googlesource.com/c/chromium/src/+/6722236
* fixup! refactor: r... | [
{
"path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch",
"patch": "@@ -8,17 +8,18 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 80ec409efe163... | 2025-09-11T20:03:17 |
golang/go | 1996c22f0a58a32f5f415e1a6c84bcb305f04c36 | c61a48619ff2d26543d0f4874ab495bbbfdc701f | syscall: return early on error in Recvmsg
Currently, Recvmsg may access the rsa buffer even if the underlying syscall
returns an error.
Following the same change done for x/sys/unix.Recvmsg in CL 734740.
For golang/go#76848
Change-Id: I2a145d822442a2033a76f4717317a39010b17bd5
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/syscall/syscall_unix.go",
"patch": "@@ -385,6 +385,9 @@ func recvmsgInet6(fd int, p, oob []byte, flags int, from *SockaddrInet6) (n, oob\n func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n \tvar rsa RawSockaddrAny\n \tn, oobn, recvflags,... | 2026-01-10T14:56:01 |
nodejs/node | 4346c0f7a7fe67e4ed2d5c0bf7b5815957a8abf4 | f9a83ffcd904a563bd74e27253fe265d36b1c03a | http: fix handling of HTTP upgrades with bodies
Previously, we ignored all indicators of the body (content-length or
transfer-encoding headers) and treated any information following
the headers as part of the upgraded stream. We now fully process the
requests bodies separately instead, allowing us to automatically han... | [
{
"path": "doc/api/http.md",
"patch": "@@ -745,7 +745,7 @@ added: v0.1.94\n -->\n \n * `response` {http.IncomingMessage}\n-* `socket` {stream.Duplex}\n+* `stream` {stream.Duplex}\n * `head` {Buffer}\n \n Emitted each time a server responds to a request with an upgrade. If this\n@@ -768,13 +768,13 @@ const s... | 2025-11-03T17:19:33 |
vercel/next.js | ee76e305cc26fc20035bdaf556273a0246876b14 | 9662feb629fd9c1d402e558a7783bb12d5300313 | dx: Include path count in export error message (#89333)
Supersedes https://github.com/vercel/next.js/pull/88910
---
<a
href="https://cursor.com/background-agent?bcId=bc-a05c69b9-7049-4095-8985-761868c63e1c"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://cursor.com/assets/images/open-in-cursor-d... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1050,5 +1050,6 @@\n \"1049\": \"Turbopack is not supported on this platform (%s/%s) because native bindings are not available. Only WebAssembly (WASM) bindings were loaded, and Turbopack requires native bindings.\\\\n\\\\nTo use Next.js on this platform... | 2026-02-14T20:28:28 |
facebook/react | 3958d5d84b3d3e6ae5c1caef9c8cf0dc58e862e6 | 738aebdbacff9becd469b888209a08436f87c511 | [Flight] Copy the name field of a serialized function debug value (#34085)
This ensures that if the name is set manually after the declaration,
then we get that name when we log the value. For example Node.js
`Response` is declared as `_Response` and then later assigned a new
name.
We should probably really serialize... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1969,6 +1969,44 @@ function createModel(response: Response, model: any): any {\n return model;\n }\n \n+const mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/;\n+\n+function getInferredFunctionApproximate(code: string): () =... | 2025-08-07T14:55:01 |
golang/go | d2aad0df601df3a48ee4823309872cd224d91aa3 | bfb851c31eaf385649263e42e1a8620e2df01158 | runtime: guard unexpected return pc gp.m dereference
If stack scanning reaches here while scanning a waiting goroutine, gp.m
will be nil. We are going to crash anyway because the stack is corrupt,
but we still want to reach the print below for context rather than dying
with a SIGSEGV here.
For #64030.
Change-Id: I6a... | [
{
"path": "src/runtime/traceback.go",
"patch": "@@ -456,7 +456,7 @@ func (u *unwinder) next() {\n \t\t// get everything, so crash loudly.\n \t\tfail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0\n \t\tdoPrint := u.flags&unwindSilentErrors == 0\n-\t\tif doPrint && gp.m.incgo && f.funcID == abi.FuncI... | 2025-12-03T20:42:03 |
nodejs/node | e40b9b98bb50e40de8996aac46e6c1fa2702df76 | 21b0fe4b28d2972fa96e535106e607666d33bc5b | tls: fix leak on invalid protocol method
PR-URL: https://github.com/nodejs/node/pull/60427
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -1351,7 +1351,6 @@ SecureContext* SecureContext::Create(Environment* env) {\n SecureContext::SecureContext(Environment* env, Local<Object> wrap)\n : BaseObject(env, wrap) {\n MakeWeak();\n- env->external_memory_accounter()->Increase(env->isolate(... | 2025-11-03T16:35:56 |
vercel/next.js | f63be5da4275166c9ee618ffa4010c888c9fa6a9 | 373abe4dd0046ca4810005beff087bc4345eec5d | test: Isolate read-only-source-hmr test (#86721)
This was flakey with Turbopack:
```
Error: TIMED OUT: /New page/
404
This page could not be found.
undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object.<anonymous> (/root/actions-runner/_work/next.js/next.... | [
{
"path": "test/development/read-only-source-hmr/test/index.test.ts",
"patch": "@@ -0,0 +1,156 @@\n+import { nextTestSetup } from 'e2e-utils'\n+import { getBrowserBodyText, retry } from 'next-test-utils'\n+import fs from 'fs-extra'\n+import path from 'path'\n+import { type Playwright } from 'next-webdriver'... | 2026-02-14T10:08:12 |
electron/electron | 793565e4bebec96fa1a471b3a22cb147ae4e747c | 1f322ebce3cccc65b32b653ea15bc1511a0b5993 | chore: bump chromium to 141.0.7390.7 (main) (#48212)
* chore: bump chromium in DEPS to 141.0.7381.3
* chore: update patches
* chore: bump chromium in DEPS to 141.0.7382.0
* chore: update patches
* chore: bump chromium in DEPS to 141.0.7384.0
* chore: bump chromium in DEPS to 141.0.7386.0
* [Extensions] Move devt... | [
{
"path": ".github/actions/fix-sync/action.yml",
"patch": "@@ -109,7 +109,7 @@ runs:\n deps-file: src/DEPS\n installation-dir: src/third_party/siso/cipd\n target-platform: ${{ inputs.target-platform }}\n- package: infra/build/siso/${platform}\n+ package: build/siso/${pl... | 2025-09-08T10:57:15 |
facebook/react | 4c9c109cea9be3622d9d70f81f96e72528bdad16 | 552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1 | [Fiber] Try to give a stack trace to every entry in the Scheduler Performance Track (#34123)
For "render" and "commit" phases we don't give any specific stack atm.
This tries to always provide something useful to say the cause of the
render.
For normal renders this will now show the same thing as the "Event" and
"Upd... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -158,6 +158,7 @@ import {\n DefaultHydrationLane,\n SomeRetryLane,\n includesSomeLane,\n+ includesOnlyRetries,\n laneToLanes,\n removeLanes,\n mergeLanes,\n@@ -269,6 +270,7 @@ import {\n scheduleUpdateOnFiber,\n ... | 2025-08-07T14:26:30 |
vercel/next.js | 373abe4dd0046ca4810005beff087bc4345eec5d | 40b924359474771cd11c25bc14bfa44d2a7024bb | Turbopack: Update trybuild test dependency from 1.0.104 to 1.0.116 (#89986)
This fixes a bug where these tests could fail if your terminal was too wide: https://github.com/dtolnay/trybuild/pull/325 | [
{
"path": "Cargo.lock",
"patch": "@@ -2568,7 +2568,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253\"\n dependencies = [\n \"fallible-iterator\",\n- \"indexmap 2.9.0\",\n+ \"indexmap 2.12.0\",\n \"stable... | 2026-02-14T10:07:46 |
nodejs/node | 0de8425dc9d8926d543fe517843f31567a6b6154 | c586449f0661534c5dbd16dc219f37871d4258cc | doc: instantiate resolver object
PR-URL: https://github.com/nodejs/node/pull/60476
Fixes: https://github.com/nodejs/node/issues/60455
Refs: https://nodejs.org/api/stream.html#readabletoarrayoptions
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/stream.md",
"patch": "@@ -2315,6 +2315,8 @@ import { Resolver } from 'node:dns/promises';\n \n await Readable.from([1, 2, 3, 4]).toArray(); // [1, 2, 3, 4]\n \n+const resolver = new Resolver();\n+\n // Make dns queries concurrently using .map and collect\n // the results into an array usi... | 2025-11-02T19:09:37 |
golang/go | 0152075d5aba0f198ac67fb426a0fc4c16e2b363 | a53589662719d0186e3ce3b965c082b829d0ce4c | encoding/json/v2: remove issue reference in Duration formatting error
The json/v2 working group decided to commit to no default representation
for time.Duration for the foreseeable future.
Thus, we can remove the issue reference in the error message.
If JavaScript (TC39) formally adopts the Temporal.Duration type,
wh... | [
{
"path": "src/encoding/json/v2/arshal_time.go",
"patch": "@@ -54,7 +54,7 @@ func makeTimeArshaler(fncs *arshaler, t reflect.Type) *arshaler {\n \t\t\t\treturn marshalNano(enc, va, mo)\n \t\t\t} else {\n \t\t\t\t// TODO(https://go.dev/issue/71631): Decide on default duration representation.\n-\t\t\t\treturn... | 2026-01-09T01:27:59 |
facebook/react | 552a5dadcfaee529b3ad8c8011c5d8f8f000ebf1 | f468d37739cbce9caff88c3b83aca47b0ea7bdbc | [DevTools] fix: handle store mutations synchronously in TreeContext (#34119)
If there is a commit that removes the currently inspected (selected)
elements in the Components tree, we are going to kick off the transition
to re-render the Tree. The elements will be re-rendered with the
previous inspectedElementID, which ... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/TreeContext.js",
"patch": "@@ -954,7 +954,7 @@ function TreeContextController({\n Array<number>,\n Map<number, number>,\n ]) => {\n- transitionDispatch({\n+ dispatch({\n type: 'HANDLE_STORE_MUTATION',\n... | 2025-08-07T13:05:56 |
electron/electron | 1f322ebce3cccc65b32b653ea15bc1511a0b5993 | f009e077f2ec4d1b224e2c7fbb6eec1ea0709211 | chore: bump node to v22.19.0 (main) (#48222)
* chore: bump node in DEPS to v22.19.0
* chore: fixup patch indices
* crypto: add tls.setDefaultCACertificates()
https://github.com/nodejs/node/pull/58822
* esm: js-string Wasm builtins in ESM Integration
https://github.com/nodejs/node/pull/59179
---------
Co-authore... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '141.0.7361.0',\n 'node_version':\n- 'v22.18.0',\n+ 'v22.19.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-09-05T21:16:45 |
nodejs/node | 8f66bec900e65479b03cb5715f17bcb68ea35a7f | 24bebd01a72a30743a35d7c7c12c559a77464995 | deps: V8: cherry-pick 7ef6a001762
Origin commit message:
[loong64] Fix no pointer compression build
1. Fix a typo that breaks no static root build.
2. Use less scratch regs in some compare and branch functions.
This bug is triggered by Node.js loong64 port.
Change-Id: If251906cc07feca237c75f0b6... | [
{
"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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2025-11-02T13:17:53 |
golang/go | dae71067ce7ee41ebe752a4ee3c544506e74f824 | adb64adfd74470a0653dde9214a1acb0ddf72268 | cmd/compile: fix mis-compilation for static array initialization
The bug was first introduced when the compiler is still written in C,
with CL 2254041. The static array was laid out with the wrong context,
causing a stack pointer will be stored in global object.
Fixes #61730
Fixes #77193
Change-Id: I22c8393314d251be... | [
{
"path": "src/cmd/compile/internal/walk/complit.go",
"patch": "@@ -567,11 +567,7 @@ func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {\n \t\t\t// lay out static data\n \t\t\tvstat := readonlystaticname(t)\n \n-\t\t\tctxt := inInitFunction\n-\t\t\tif n.Op() == ir.OARRAYLIT {\n-\t\t\t\tctxt = inNonInitFu... | 2026-01-21T07:39:20 |
vercel/next.js | 40b924359474771cd11c25bc14bfa44d2a7024bb | bd473d007b461eab4866e38c66590f79e26c370f | docs: fix broken blockquote formatting in API Routes page (#89966)
The second and third bullet points in the 'Good to know' callout were
incorrectly placed outside the blockquote, breaking the visual grouping
on the rendered documentation page.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To m... | [
{
"path": "docs/02-pages/03-building-your-application/01-routing/07-api-routes.mdx",
"patch": "@@ -45,9 +45,8 @@ export default function handler(req, res) {\n > **Good to know**:\n >\n > - API Routes [do not specify CORS headers](https://developer.mozilla.org/docs/Web/HTTP/CORS), meaning they are **same-ori... | 2026-02-14T00:31:20 |
electron/electron | 828fd59a72e673acf03f878b4f488a40fca46dfe | e8928409755245eb706c55cb6180a5bf0d9d4fcd | fix: file-only picker incorrectly allowing some directories (#48198) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -138,3 +138,4 @@ fix_resolve_dynamic_background_material_update_issue_on_windows_11.patch\n feat_add_support_for_embedder_snapshot_validation.patch\n chore_restore_some_deprecated_wrapper_utility_in_gin.patch\n chore_add_electron_objects_to_wrappablepointe... | 2025-08-29T17:14:45 |
facebook/react | b080063331af4d2c359b3cc576813dbca6e7db5c | 66f09bd0540d0a094b80c94d013df885903c97da | [DevTools] Source Map Stack Traces such in await locations (#34094)
Stacked on #34093.
Instead of using the original `ReactStackTrace` that has the call sites
on the server, this parses the `Error` object which has the virtual call
sites on the client. We'll need this technique for things stack traces
suspending on t... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -401,7 +401,7 @@ Object.defineProperty(exports, \"__esModule\", { value: true });\n exports.f = f;\n function f() { }\n //# sourceMappingURL=`;\n- const result = ['', 'http://test/a.mts', 1, 16];\n+ const result = [''... | 2025-08-06T17:45:06 |
rust-lang/rust | cc65ec1892b2aa593bc5421996a655fbfce64050 | cde9cf08d7a79042758db8d5d824d0341da97f7a | trim prefix/suffix for paths | [
{
"path": "library/std/src/path.rs",
"patch": "@@ -2725,6 +2725,41 @@ impl Path {\n self._strip_prefix(base.as_ref())\n }\n \n+ /// Returns a path with the optional prefix removed.\n+ ///\n+ /// If `base` is not a prefix of `self` (i.e., [`starts_with`] returns `false`), returns the ori... | 2026-03-24T16:07:22 |
golang/go | 2d37c2077854e225204a7c4c26c10453a20de6d1 | 455282911aba7512e2ba045ffd9244eb97756247 | go/types, types2: better error when selecting field on type rather than value
Fixes #6814.
Change-Id: I659670998f8e89400d03d40189e8c54f7e705cdc
Reviewed-on: https://go-review.googlesource.com/c/go/+/738040
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
LUCI-TryBot-Resul... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -835,6 +835,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, wantType bool\n \t\tcheck.errorf(e.Sel, MissingFieldOrMethod, \"%s.%s undefined (%s)\", x.expr, sel, why)\n \t\tgoto Error\n \t}\n+\t// obj != nil\n \n \t// m... | 2026-01-21T22:40:04 |
nodejs/node | fa33ba3f76cc0bf3d4ab8eda11b45eb3b08626e2 | e1e0830ae519765d7f0f941feb4f52b44a5adefc | test: fix flaky test-watch-mode-kill-signal-*
After the write triggers a restart of the grandchild, the newly
spawned second grandchild can post another 'script ready' message
before the stdout from the first grandchild is relayed by the
watcher and processed by this parent process to kill
the watcher. If we write aga... | [
{
"path": "test/fixtures/kill-signal-for-watch.js",
"patch": "@@ -1,4 +1,10 @@\n-process.on('SIGTERM', () => { console.log('__SIGTERM received__'); process.exit(); });\n-process.on('SIGINT', () => { console.log('__SIGINT received__'); process.exit(); });\n-process.send('script ready');\n+process.on('SIGTERM... | 2025-11-01T11:15:52 |
electron/electron | e8928409755245eb706c55cb6180a5bf0d9d4fcd | 7373173e44d25c90a5127ad5c7b49295c12117a7 | fix: ensure dragging works again after emitting contextmenu event (#48199) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -324,11 +324,6 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n \n return false;\n }\n- case WM_RBUTTONUP: {\n- if (!has_frame())\n- electron::api::WebContents::SetDisableDraggableRegions(false);\n- retur... | 2025-08-29T14:37:37 |
vercel/next.js | e0668e46689d75d7f2b44b8d634dcaeecfeeb741 | 69d63edcc74d0ca428322406329872887e82aae9 | Run fast immediates during prerender abort to fix flaky I/O stack traces (#89969)
Follow-up for #89834.
In `prerenderAndAbortInSequentialTasks`, React's `finishHalt` (scheduled
via `setImmediate` from `abort()`) could race with the component's
pending `setTimeout` callback. When both ended up in the same timer
phase,... | [
{
"path": "packages/next/src/server/app-render/app-render-prerender-utils.ts",
"patch": "@@ -33,8 +33,15 @@ export function prerenderAndAbortInSequentialTasks<R>(\n })\n scheduleTimeout(() => {\n try {\n- expectNoPendingImmediates()\n+ DANGEROUSLY_runPendingImmediatesAf... | 2026-02-13T22:24:44 |
facebook/react | b211d7023c2f142aa21296bccba1de212d700c09 | ba4bdb2ab5e15398fb2ffaafe944a1de56851734 | [compiler] Add repros for various invariants (#34099)
We received some bug reports about invariants reported by the compiler
in their codebase. Adding them as repros.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/face... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-infer-mutation-aliasing-effects.expect.md",
"patch": "@@ -0,0 +1,46 @@\n+\n+## Input\n+\n+```javascript\n+import {useCallback, useRef} from 'react';\n+\n+export default function useThunkDispatch(state, dispatc... | 2025-08-04T18:36:12 |
golang/go | a8291eb61402d4549b69803fc8f834ded45b1f6c | 4edaaf2b529219ff219798914f730ca5a0ab018b | cmd/compile/internal/staticinit: fix bug in global new(expr)
The StaticInit pass asserts that the operand of &v is a global,
but this is not so for the &autotemp desugaring of new(expr).
(The variable has by that point escaped to the heap, so
the object code calls runtime.newobject. A future optimization
would be to ... | [
{
"path": "src/cmd/compile/internal/staticinit/sched.go",
"patch": "@@ -228,6 +228,9 @@ func (s *Schedule) staticcopy(l *ir.Name, loff int64, rn *ir.Name, typ *types.Ty\n \tcase ir.OADDR:\n \t\tr := r.(*ir.AddrExpr)\n \t\tif a, ok := r.X.(*ir.Name); ok && a.Op() == ir.ONAME {\n+\t\t\tif a.Class != ir.PEXTER... | 2026-01-20T21:18:59 |
nodejs/node | e1e0830ae519765d7f0f941feb4f52b44a5adefc | 3c248c35562389d13057927f11a90b1671cf85ca | tools: fix update-icu script
Closes: https://github.com/nodejs/node/issues/60506
PR-URL: https://github.com/nodejs/node/pull/60521
Fixes: https://github.com/nodejs/node/issues/60506
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "tools/dep_updaters/update-icu.sh",
"patch": "@@ -32,15 +32,11 @@ CURRENT_VERSION=\"$(grep \"#define U_ICU_VERSION \" \"$ICU_VERSION_H\" | cut -d'\"' -f\n # This function exit with 0 if new version and current version are the same\n compare_dependency_version \"icu-small\" \"$NEW_VERSION\" \"$CURR... | 2025-11-01T08:34:43 |
electron/electron | 7373173e44d25c90a5127ad5c7b49295c12117a7 | 5d5e672f17248519b3c7bbdf27cb803c481c4d07 | fix: showMessageDialog should center dialog to parent (#48181) | [
{
"path": "shell/browser/ui/message_box_win.cc",
"patch": "@@ -160,6 +160,7 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n \n if (parent) {\n config.hwndParent = parent;\n+ config.dwFlags |= TDF_POSITION_RELATIVE_TO_WINDOW;\n }\n \n if (default_id > 0)",
"additions": 1,... | 2025-08-29T07:56:51 |
facebook/react | 557745eb0b50c2c7b126813fdae9c1929afc87f9 | d3f800d47a9f98f03e44bf30b0c3ad524110ba6d | [DevTools] Add structure full stack parsing to DevTools (#34093)
We'll need complete parsing of stack traces for both owner stacks and
async debug info so we need to expand the stack parsing capabilities a
bit. This refactors the source location extraction to use some helpers
we can use for other things too.
This is ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -19,8 +19,8 @@ import {\n formatWithStyles,\n gt,\n gte,\n- parseSourceFromComponentStack,\n } from 'react-devtools-shared/src/backend/utils';\n+import {extractLocationFromComponentStack} from 'react-devtools-shared/... | 2025-08-04T13:37:46 |
vercel/next.js | 69d63edcc74d0ca428322406329872887e82aae9 | ad7d27ec50ed44fcd473fd82fc2fe8283e70822d | Fix missing incremental cache in middleware unstable_cache (#89980)
## Summary
- pass `IncrementalCache` into the shared middleware template adapter so
middleware/proxy modules initialize `globalThis.__incrementalCache`
- add regression coverage for `unstable_cache` usage inside both
deprecated `middleware` (edge) and... | [
{
"path": "packages/next/src/build/templates/middleware.ts",
"patch": "@@ -3,6 +3,7 @@ import '../adapter/setup-node-env.external'\n import '../../server/web/globals'\n \n import { adapter } from '../../server/web/adapter'\n+import { IncrementalCache } from '../../server/lib/incremental-cache'\n \n // Impor... | 2026-02-13T22:22:32 |
golang/go | 7251c9e0f00a6d7d37bb441f3e823c160131e9b5 | 532e3203492ebcac67b2f3aa2a52115f49d51997 | doc: fix urlmaxqueryparams typos
Updates #77101.
Change-Id: I6a6a636cd58e1bd01943066368cb1424db6c6a92
Reviewed-on: https://go-review.googlesource.com/c/go/+/737040
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "doc/godebug.md",
"patch": "@@ -167,8 +167,8 @@ Go 1.26 added a new `urlmaxqueryparams` setting that controls the maximum number\n of query parameters that net/url will accept when parsing a URL-encoded query string.\n If the number of parameters exceeds the number set in `urlmaxqueryparams`,\n pa... | 2026-01-16T17:20:39 |
nodejs/node | 3c248c35562389d13057927f11a90b1671cf85ca | 3e31baeda6cf597ab3804dd8ca6f049a1d126940 | tools: fix linter for semver-major release proposals
PR-URL: https://github.com/nodejs/node/pull/60481
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com> | [
{
"path": "tools/actions/lint-release-proposal-commit-list.mjs",
"patch": "@@ -23,8 +23,9 @@ const commitListingStart = changelog.indexOf('\\n### Commits\\n');\n let commitList;\n if (commitListingStart === -1) {\n // We're preparing a semver-major release.\n- commitList = changelog.replace(/(^.+\\n### S... | 2025-11-01T07:11:01 |
vercel/next.js | ad7d27ec50ed44fcd473fd82fc2fe8283e70822d | 6df0b7b905d298c4d47c7be389267cb0893f6343 | Turbopack hmr: preserve group factory consistency for compressed modules (#89976)
## Summary
- update `installCompressedModuleFactories` to reuse an existing factory
in a compressed ID group when filling missing IDs
- keep `newModuleId` notifications aligned with actual IDs installed
(`newModuleId(id)`)
- add an execu... | [
{
"path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime/runtime-utils.ts",
"patch": "@@ -551,7 +551,6 @@ function installCompressedModuleFactories(\n ) {\n let i = offset\n while (i < chunkModules.length) {\n- let moduleId = chunkModules[i] as ModuleId\n let end = i + 1\n ... | 2026-02-13T22:17:25 |
electron/electron | 5d5e672f17248519b3c7bbdf27cb803c481c4d07 | e39943bf4578e91da598923fd60f87a0a562c522 | chore: bump chromium to 141.0.7361.0 (main) (#48054)
* chore: bump chromium in DEPS to 141.0.7352.0
* chore: update patches
* 6830573: Revert 'Migrate WrappableWithNamedPropertyInterceptor to gin::Wrappable' | https://chromium-review.googlesource.com/c/chromium/src/+/6830573
* chore: bump chromium in DEPS to 141.0.... | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -15,7 +15,7 @@ runs:\n git config --global core.preloadindex true\n git config --global core.longpaths true\n fi\n- export BUILD_TOOLS_SHA=8559e5d325d61f195a255f41077ffc9e5b70b0e5\n+ export BUILD_TOOLS_S... | 2025-08-29T03:31:47 |
golang/go | 532e3203492ebcac67b2f3aa2a52115f49d51997 | bb7c0c717c8b3517210dce8f38cb2c91694af4e2 | go/types,cmd/compile/internal/types2: better diagnostic for type shadowing
This change causes the "x is not a type" diagnostic to describe
x's actual kind, helping to reveal when shadowing is at work.
(The kind description could improve other errors too.)
Fixes #76877
Change-Id: Ia3484998bb384ff570c20b6792cf8461c60... | [
{
"path": "src/cmd/compile/internal/types2/object.go",
"patch": "@@ -671,3 +671,52 @@ func writeFuncName(buf *bytes.Buffer, f *Func, qf Qualifier) {\n \t}\n \tbuf.WriteString(f.name)\n }\n+\n+// objectKind returns a description of the object's kind.\n+func objectKind(obj Object) string {\n+\tswitch obj := o... | 2025-12-18T17:27:11 |
facebook/react | 30fca45c1c3aa8c37a9fd63e7d43ab20f229958f | c499adf8c89bbfd884f4d3a58c4e510001383525 | fix: apply initial horizontal offset on tree mount (#34088)
When the element is pre-selected and the Tree component is mounted,
right now we are only applying initial vertical offset, but not the
horizontal one.
Because of this, if the DOM element was selected on Elements panel and
then user opens Components panel fo... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js",
"patch": "@@ -24,7 +24,7 @@ import {TreeDispatcherContext, TreeStateContext} from './TreeContext';\n import Icon from '../Icon';\n import {SettingsContext} from '../Settings/SettingsContext';\n import {BridgeContext, StoreCont... | 2025-08-04T11:12:53 |
nodejs/node | 3e31baeda6cf597ab3804dd8ca6f049a1d126940 | 943b1edb3cc2e4e34979ef27173f59674508d15f | esm: use sync loading/resolving on non-loader-hook thread
ESM resolution and loading is now always synchronous from a
non-loader-hook thread. If no asynchrnous loader hooks are
registered, the resolution/loading is entirely synchronous.
If asynchronous loader hooks are registered, these would be
synchronous on the non... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -703,6 +703,13 @@ by the `node:assert` module.\n An attempt was made to register something that is not a function as an\n `AsyncHooks` callback.\n \n+<a id=\"ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED\"></a>\n+\n+### `ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`\n+\n+An op... | 2025-10-31T20:45:10 |
rust-lang/rust | 36c22f7cf7a7070c9c6b478406f9b2ba831560c6 | bbe853615821442ef11d6cd42a30a73432b38d89 | Add test for dead code warnings in const _
Tests that dead code warnings work correctly inside const _ blocks.
Issue was already fixed, adding regression test as requested. | [
{
"path": "tests/ui/lint/dead-code/const-underscore-issue-101532.rs",
"patch": "@@ -0,0 +1,14 @@\n+//@ check-pass\n+// Test for issue #101532 - dead code warnings should work inside const _\n+\n+#![warn(dead_code)]\n+\n+const _: () = {\n+ let a: ();\n+ struct B {} //~ WARN struct `B` is never construc... | 2026-03-23T12:08:12 |
vercel/next.js | 6df0b7b905d298c4d47c7be389267cb0893f6343 | d45f83fbc5f9a808b28f56e0bf1c3692ef7f1702 | Turbopack: Fix flake in task_statistics unit test (#89981)
If we don't explicitly return a `Vc::cell(())` here, then `<() as dyn
turbo_tasks::vc::default::ValueDefault>::value_default` gets called in a
non-deterministic way.
That's not something we care about testing here, so just add a an
explicit `Vc::cell(())` c... | [
{
"path": "turbopack/crates/turbo-tasks-backend/tests/task_statistics.rs",
"patch": "@@ -362,7 +362,9 @@ fn inline_definitions() -> Result<Vc<()>> {\n #[turbo_tasks::value_trait]\n trait Trait {\n #[turbo_tasks::function]\n- fn trait_fn(&self) {}\n+ fn trait_fn(&self) -> Vc<()>... | 2026-02-13T21:57:18 |
electron/electron | e39943bf4578e91da598923fd60f87a0a562c522 | f331606e0718a291d14d21ec3218b21543b90d8d | fix: BrowserWindow add the same BrowserView (#48053)
fix: BrowserWindow add the same BrowserView (#48057) | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -199,7 +199,14 @@ BrowserWindow.prototype.setBackgroundThrottling = function (allowed: boolean) {\n };\n \n BrowserWindow.prototype.addBrowserView = function (browserView: BrowserView) {\n- if (browserView.ownerWindow) { browserView.ownerWindow.re... | 2025-08-28T08:31:41 |
facebook/react | c499adf8c89bbfd884f4d3a58c4e510001383525 | 1d163962b21f9396d26930e31719bd8b10d9e107 | [Flight] Allow Temporary References to be awaited (#34084)
Fixes #33534.
`.then` method can be tested when you await a value that's not a
Promise. For regular Client References we have a way to mark those as
"async" and yield a reference to the unwrapped value in case it's a
Promise on the Client.
However, the reali... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReply-test.js",
"patch": "@@ -438,6 +438,50 @@ describe('ReactFlightDOMReply', () => {\n expect(response.obj).toBe(obj);\n });\n \n+ it('can return an opaque object through an async function', async () => {\n+ function fn() {... | 2025-08-02T22:44:20 |
golang/go | bb7c0c717c8b3517210dce8f38cb2c91694af4e2 | 2dcaaa751295597e1f603b7488c4624db6a84d2b | archive/zip: reduce CPU usage in index construction
Constructing the zip index (which is done once when first opening
a file in an archive) can consume large amounts of CPU when
processing deeply-nested directory paths.
Switch to a less inefficient algorithm.
Thanks to Jakub Ciolek for reporting this issue.
goos: ... | [
{
"path": "src/archive/zip/reader.go",
"patch": "@@ -834,7 +834,16 @@ func (r *Reader) initFileList() {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor dir := path.Dir(name); dir != \".\"; dir = path.Dir(dir) {\n+\t\t\tdir := name\n+\t\t\tfor {\n+\t\t\t\tif idx := strings.LastIndex(dir, \"/\"); idx < 0 {\n+\t\t... | 2025-11-05T01:00:33 |
nodejs/node | 684c3b31f066cb3506315f721070c11a9a788116 | fbef1cf438ad27ce04d679aa3384e5e291d20474 | test: capture stack trace in debugger timeout errors
Otherwise when the expected prompt does not show up in the
session and the debugger tests time out, there is not enough
information to figure out exactly which line in the test
is causing the timeout.
PR-URL: https://github.com/nodejs/node/pull/60457
Reviewed-By: E... | [
{
"path": "test/common/debugger.js",
"patch": "@@ -88,12 +88,12 @@ function startCLI(args, flags = [], spawnOpts = {}, opts = { randomPort: true })\n reject(new Error(message));\n }\n \n+ // Capture stack trace here to show where waitFor was called from when it times out.\n+ ... | 2025-10-31T13:18:50 |
vercel/next.js | ba08f5fef6c71735a7d4b77d05e00fea9eeae62a | 740d55cdcefe5e62a2e0f6d65cd543d4b24423cc | Fix parallel routes with deferred entries (#89967)
These were being filtered unexpectedly causing build failures with the
deferredEntries flag.
x-ref: [slack
thread](https://vercel.slack.com/archives/C09125LC4AX/p1771010370849309?thread_ts=1770975846.539109&cid=C09125LC4AX) | [
{
"path": "packages/next/src/build/turbopack-build/impl.ts",
"patch": "@@ -26,6 +26,7 @@ import { isCI } from '../../server/ci-info'\n import { backgroundLogCompilationEvents } from '../../shared/lib/turbopack/compilation-events'\n import { getSupportedBrowsers, printBuildErrors } from '../utils'\n import {... | 2026-02-13T19:49:11 |
electron/electron | bf29d2f0bdde2718da082e848ab17bd86de74cad | fea1a2a9876ac9fdfc268ea4fce249935b6ef8b6 | docs: fix some module headings (#48177) | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -1,3 +1,5 @@\n+# MenuItem\n+\n ## Class: MenuItem\n \n > Add items to native application menus and context menus.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
"path": "docs/api/service-worker-main.md",
"patch": "@@ -1,1... | 2025-08-27T21:52:26 |
golang/go | 2dcaaa751295597e1f603b7488c4624db6a84d2b | 5e1ad12db93611b13d2be176fdc276330dc52b98 | net/url: add urlmaxqueryparams GODEBUG to limit the number of query parameters
net/url does not currently limit the number of query parameters parsed by
url.ParseQuery or URL.Query.
When parsing a application/x-www-form-urlencoded form,
net/http.Request.ParseForm will parse up to 10 MB of query parameters.
An input c... | [
{
"path": "doc/godebug.md",
"patch": "@@ -163,6 +163,13 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlmaxqueryparams` settin... | 2025-11-03T22:28:47 |
rust-lang/rust | bf8178627c7140f86387eb94b942d39577642161 | 2db5d1ffdb6d7efdfa722221c0b5dd6093e1881d | fix: keep comments for 'Fill match arms'
Example
---
```rust
enum E { A, B, C }
fn foo(t: E) -> i32 {
match $0t {
// variant a
E::A => 2
// comment on end
}
}
```
**Before this PR**
```rust
enum E { A, B, C }
fn foo(t: E) -> i32 {
match t {
E::A => 2,
E::B => ${1... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs",
"patch": "@@ -6,10 +6,11 @@ use ide_db::RootDatabase;\n use ide_db::syntax_helpers::suggest_name;\n use ide_db::{famous_defs::FamousDefs, helpers::mod_path_to_ast};\n use itertools::Itertools;\n-use syntax::ToSmol... | 2026-03-04T04:02:07 |
nodejs/node | fbef1cf438ad27ce04d679aa3384e5e291d20474 | 0981426d3c37891fcf03a1bba5611bcd2cd5ba22 | util: fix stylize of special properties in inspect
Previously, formatExtraProperties applied ctx.stylize to the entire
'[key]: value' string. This caused the colon and space to be styled,
making the output inconsistent with normal object properties.
Now, only the key itself is stylized, and the colon and space remain... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -2520,7 +2520,8 @@ function formatExtraProperties(ctx, value, recurseTimes, key, typedArray) {\n ctx.indentationLvl -= 2;\n \n // These entries are mainly getters. Should they be formatted like getters?\n- return ctx.stylize(`[${key}]: ${str}`, 'st... | 2025-10-31T08:33:38 |
facebook/react | 1d163962b21f9396d26930e31719bd8b10d9e107 | ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872 | Allow returning a temporary reference inside an async function (#33761)
<!--
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 p... | [
{
"path": "packages/react-server/src/ReactFlightServerTemporaryReferences.js",
"patch": "@@ -70,6 +70,9 @@ const proxyHandlers = {\n `Instead, you can export a Client Component wrapper ` +\n `that itself renders a Client Context Provider.`,\n );\n+ // Allow returning a t... | 2025-08-02T22:11:54 |
vercel/next.js | af4ceab6d4e177a01f3d4de0dbd7dd005712e9b7 | e9b96b4128ef8fa19fc523aa262be5459428c806 | Enable backtraces in turbopack integration tests (#89935)
## Enable Rust backtraces in CI tests
### What?
Added `RUST_BACKTRACE=1` environment variable to all Turbopack-related test workflows.
### Why?
This change enables detailed Rust backtraces when Turbopack encounters errors during CI tests, making it easier to ... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -256,6 +256,7 @@ jobs:\n export NEXT_TEST_MODE=dev\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n export __NEXT_EXPERIMENTAL_STRICT_ROUTE_TYPES=true\n+ export RUST_BACKTRACE=1\n \n node run-test... | 2026-02-13T16:10:20 |
golang/go | 5e1ad12db93611b13d2be176fdc276330dc52b98 | 94a1296a457387d1fd6eca1a9bcd44e89bdd9d55 | cmd/go/internal/work: sanitize flags before invoking 'pkg-config'
The addition of CgoPkgConfig allowed execution with flags not
matching the safelist. In order to prevent potential arbitrary
code execution at build time, ensure that flags are validated
prior to invoking the 'pkg-config' binary.
Thank you to RyotaK (h... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1788,6 +1788,14 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t\treturn nil, nil, fmt.Errorf(\"invalid pkg-config package name: %s\", pkg)\n \t\t\t}\n \t\t}\n+\n+\t\t// Running 'pkg-config' can cause exe... | 2025-12-04T17:30:39 |
electron/electron | 52ed4646d9b33245835517077eba2d8b8ea44237 | 68098c317f772f9d9b8327b7f4be98e66b70f5c9 | chore: remove upstream OSR temp fix (#48162) | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -332,9 +332,7 @@ void OffScreenRenderWidgetHostView::Hide() {\n return;\n \n if (render_widget_host_) {\n- // TODO(codebytere) - remove when CL:6250383 is released.\n- if (render_widget_host_->delegate())\n- render_w... | 2025-08-26T20:22:45 |
nodejs/node | 0981426d3c37891fcf03a1bba5611bcd2cd5ba22 | fdcf4d9454f050d199c49ff25f25d7bad133ff56 | sqlite,doc: fix StatementSync section
PR-URL: https://github.com/nodejs/node/pull/60474
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -647,120 +647,6 @@ times with different bound values. Parameters also offer protection against\n [SQL injection][] attacks. For these reasons, prepared statements are preferred\n over hand-crafted SQL strings when handling user input.\n \n-## Class: `SQLTagStore`\... | 2025-10-31T02:46:05 |
facebook/react | ddf8bc3fbac7aefbf557e2e4a3e14d8de1b80872 | 0860b9cc1f4a7188b41204bddc57a127a8bbf6e9 | [compiler] Improve merging of scopes that invalidate together (#34049)
We try to merge consecutive reactive scopes that will always invalidate
together, but there's one common case that isn't handled.
```js
const y = [[x]];
```
Here we'll create two consecutive scopes for the inner and outer array
expressions. Becau... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/MergeReactiveScopesThatInvalidateTogether.ts",
"patch": "@@ -119,6 +119,7 @@ class FindLastUsageVisitor extends ReactiveFunctionVisitor<void> {\n \n class Transform extends ReactiveFunctionTransform<ReactiveScopeDependencies | null>... | 2025-08-01T20:00:01 |
vercel/next.js | e9b96b4128ef8fa19fc523aa262be5459428c806 | b737b04638b03c202288819c0fabd3dde344fbe4 | Build with dev runtimes when `--debug-prerender` is set (#89834)
When running `next build --debug-prerender`, React owner stacks are now
captured and displayed in prerender error output. This makes it much
easier to diagnose which component triggered uncached I/O or accessed
request data without Suspense. Previously, ... | [
{
"path": "AGENTS.md",
"patch": "@@ -246,6 +246,13 @@ See [Codebase structure](#codebase-structure) above for detailed explanations.\n - Use `DEBUG=next:*` for debug logging\n - Use `NEXT_TELEMETRY_DISABLED=1` when testing locally\n \n+### `NODE_ENV` vs `__NEXT_DEV_SERVER`\n+\n+Both `next dev` and `next bui... | 2026-02-13T15:29:10 |
golang/go | 94a1296a457387d1fd6eca1a9bcd44e89bdd9d55 | bba24719a4cad5cc8d771fc9cfff5a38019d554a | cmd/go: update VCS commands to use safer flag/argument syntax
In various situations, the toolchain invokes VCS commands. Some of these
commands take arbitrary input, either provided by users or fetched from
external sources. To prevent potential command injection vulnerabilities
or misinterpretation of arguments as fl... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -328,7 +328,10 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \n // parsePathVersion parses -flag=arg expecting arg to be path@version.\n func parsePathVersion(flag, arg string) (path, version string) {\n-\tbefore, afte... | 2025-12-10T13:13:07 |
rust-lang/rust | e20616882af110507162e48b113456eaf5aadac1 | 375a2bb7604505bc5e8caf49b90cf3f49301a1ae | fix: upmap macro-expanded usages in destructure struct/tuple binding
when a local binding is used inside a macro call (e.g. write!(s, "{}", x.field)
or write!(s, "{}", t.0)), the usage's name node lives in the macro expansion
tree while the syntax editor is rooted at the source file tree. passing the
expansion node to... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/destructure_struct_binding.rs",
"patch": "@@ -17,7 +17,7 @@ use syntax::{\n \n use crate::{\n assist_context::{AssistContext, Assists, SourceChangeBuilder},\n- utils::ref_field_expr::determine_ref_and_parens,\n+ utils::{cover_edit_... | 2026-03-24T08:58:24 |
electron/electron | 68098c317f772f9d9b8327b7f4be98e66b70f5c9 | 52e0307cc1e969a8d61649ccd870f57ba76388c6 | build: remove no longer needed arg for siso (#48164)
* build: remove no longer needed arg for siso
* chore: test ffmpeg zip
* build: fix ffmpeg build with siso
* Revert "chore: test ffmpeg zip"
This reverts commit 2bbcc86039eca435b4ab9ced6fd59f761fee2fd5. | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -202,7 +202,7 @@ runs:\n if: ${{ inputs.is-release == 'true' }}\n run: |\n cd src\n- gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n+ gn gen... | 2025-08-25T20:46:36 |
nodejs/node | fdcf4d9454f050d199c49ff25f25d7bad133ff56 | bdf03bfcd5420fa9d2ea824d6338080363cdf309 | tools: fix failing release-proposal linter for LTS transitions
PR-URL: https://github.com/nodejs/node/pull/60465
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "tools/actions/lint-release-proposal-commit-list.mjs",
"patch": "@@ -26,9 +26,13 @@ if (commitListingStart === -1) {\n commitList = changelog.replace(/(^.+\\n### Semver-Major|\\n### Semver-(Minor|Patch)) Commits\\n/gs, '')\n .replaceAll('**(SEMVER-MAJOR)** ', '');\n } else {\n- const commit... | 2025-10-30T17:29:10 |
vercel/next.js | b05a35a79fb3bd0b802d3a8d8b1c07d3c7fc7649 | fe39a3c440fa1463935403bdaabeaf9f509ea131 | Turbopack: Move turbopackIgnoreIssue from experimental to turbopack.ignoreIssue (#89817)
## What?
Moves the `turbopackIgnoreIssue` config from `experimental` to the stable `turbopack` config as `turbopack.ignoreIssue`.
## Why?
Reviewers on #89682 agreed the API is stable enough to graduate from experimental. Also a... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1087,7 +1087,7 @@ impl Project {\n }\n \n /// Build the `IssueFilter` for this project, incorporating any\n- /// `experimental.turbopackIgnoreIssue` rules from the Next.js config.\n+ /// `turbopack.ignoreIssue` rules from the Next.js co... | 2026-02-13T13:56:59 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.