repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | f25cce2805028db0529bf2894a96aa4f952ca5af | 3437e1c4bd529e51d96ea581b6435bbeb77ef524 | test: fix status when compiled without inspector
PR-URL: https://github.com/nodejs/node/pull/60289
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo ... | [
{
"path": "test/common/index.js",
"patch": "@@ -54,6 +54,7 @@ const noop = () => {};\n const hasCrypto = Boolean(process.versions.openssl) &&\n !process.env.NODE_SKIP_CRYPTO;\n \n+const hasInspector = Boolean(process.features.inspector);\n const hasSQLite = Boolean(process.versions.sqlite)... | 2025-10-19T17:39:54 |
vercel/next.js | ae64f6cff035f22868af9f442bc855dc7dd791de | be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569 | Turbopack: make routes hashes mainfest more incremental (#87107)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For... | [
{
"path": "crates/next-api/src/routes_hashes_manifest.rs",
"patch": "@@ -6,7 +6,7 @@ use turbo_tasks_fs::{FileContent, FileSystemPath};\n use turbo_tasks_hash::{DeterministicHash, Xxh3Hash64Hasher};\n use turbopack_core::{\n asset::{Asset, AssetContent},\n- module::Module,\n+ module::{Module, Modu... | 2026-02-11T10:58:11 |
facebook/react | 72848027a5525d7beebeccb0a485f4f211a1a101 | 707e321f8f1ba3f69d27df861caf630fe48aade6 | [compiler] Improve more error messages (#33758)
This PR uses the new diagnostic type for most of the error messages
produced in our explicit validation passes (`Validation/` directory).
One of the validations produced multiple errors as a hack to showing
multiple related locations, which we can now consolidate into a ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -59,7 +59,7 @@ export type CompilerDiagnosticDetail =\n */\n {\n kind: 'error';\n- loc: SourceLocation;\n+ loc: SourceLocation | null;\n message: string;\n };\n \n@@ -100,6 +100,12 @@ export cla... | 2025-07-24T22:39:42 |
electron/electron | f49a645c06da37490f6f2c0a4eea32b867dc05d5 | 8ab5ac9069322fc6c5a454cd69dc4815426e7276 | fix: compilation error when disabling extensions and pdf_viewer (#47964) | [
{
"path": "shell/browser/plugins/plugin_utils.cc",
"patch": "@@ -33,6 +33,7 @@ std::string PluginUtils::GetExtensionIdForMimeType(\n base::flat_map<std::string, std::string>\n PluginUtils::GetMimeTypeToExtensionIdMap(\n content::BrowserContext* browser_context) {\n+ base::flat_map<std::string, std::str... | 2025-08-07T15:18:32 |
golang/go | fed3b0a298464457c58d1150bdb3942f22bd6220 | 55ab5bba17a5221a51df244c8a3aeb1898cbdf1a | cmd/dist: fix goroot typo in panic message
Change-Id: I636a029eedaab0967b774648670710d1303a1f7c
GitHub-Last-Rev: 519faedc5b8327696efeeb431ef66e9fd29f0db7
GitHub-Pull-Request: golang/go#77081
Reviewed-on: https://go-review.googlesource.com/c/go/+/734080
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result... | [
{
"path": "src/cmd/dist/imports.go",
"patch": "@@ -259,6 +259,6 @@ func resolveVendor(imp, srcDir string) string {\n \t} else if strings.HasPrefix(srcDir, filepath.Join(goroot, \"src\")) {\n \t\treturn path.Join(\"vendor\", imp)\n \t} else {\n-\t\tpanic(fmt.Sprintf(\"srcDir %q not in GOOROT/src\", srcDir))\... | 2026-01-05T22:59:29 |
nodejs/node | 481b9b11b3a96dfe9923baf6e4ef77895be951e4 | 70e7c1511ffd6dfbba2033028447eaf82b9ff23a | tools: fix inspector_protocol updater
`.github/workflows/tools.yml` creates a temp file `temp-output` in the
workspace, which fails `git status` clean repo check. Also, the GHA
checks out a new branch after the update script.
Removes these checks in the `roll.py` to fix its run on the GHA.
PR-URL: https://github.co... | [
{
"path": "tools/inspector_protocol/roll.py",
"patch": "@@ -47,13 +47,6 @@ def CheckRepoIsClean(path):\n raise Exception('%s is not a clean git repo (run git status)' % path)\n \n \n-def CheckRepoIsNotAtMainBranch(path):\n- os.chdir(path)\n- stdout = RunCmd(['git', 'rev-parse', '--abbrev-ref', 'HEAD']... | 2025-10-18T22:44:44 |
vercel/next.js | be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569 | 0b32ddc6ab10f593b12342e657a755468a351130 | docs: correct use term (#89438)
### What?
`use` is not a hook. It's highlighted in the doc
> Unlike React Hooks, use can be called within loops and conditional
statements like if. Like React Hooks, the function that calls use must
be a Component or Hook.
### Why?
It confuses consumers of Next.js and adds field pr... | [
{
"path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx",
"patch": "@@ -284,7 +284,7 @@ export default function LikeButton({ likes }) {\n }\n ```\n \n-Alternatively, you can stream data from a Server Component to a Client Component with the [`use` Hook](https://react.dev/reference/reac... | 2026-02-11T10:51:57 |
electron/electron | 8ab5ac9069322fc6c5a454cd69dc4815426e7276 | 27a8cc531bbf1c707f87f3265ce4a88f6c93b35a | ci: fixup mac runner hang (#47982) | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru... | 2025-08-07T08:52:26 |
facebook/react | 707e321f8f1ba3f69d27df861caf630fe48aade6 | 0d39496eab710b5a3efc07d34c0db3f2475c04f8 | [compiler][wip] Improve diagnostic infra (#33751)
Work in progress, i'm experimenting with revamping our diagnostic infra.
Starting with a better format for representing errors, with an ability
to point ot multiple locations, along with better printing of errors. Of
course, Babel still controls the printing in the maj... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedReferences';\n+import {Compile... | 2025-07-24T22:37:06 |
golang/go | 108b333d510c1f60877ac917375d7931791acfe6 | 2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c | cmd/go: only use check cache action's dependencies to build vet config
We manipulate the dependencies of the build action when adding the
non-test variant of the package being tested as a dependency for the
test, so the set of deps of the build package doesn't correctly
represent the dependencies of the package that h... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -627,7 +627,7 @@ func (b *Builder) checkCacheForBuild(a, buildAction *Action, covMetaFileName str\n \t// If we are going to do a full build anyway,\n \t// we're going to regenerate the files in the build action anyway.\n \tif need == needVet {\n-\t\... | 2026-01-08T17:45:34 |
vercel/next.js | d95b7bffba51f93bd2166b11a7e7b30d5057ec74 | c28948e0b3c199bff9123f91970906e80e4b1f08 | docs: improve Graphite workflow documentation (#89488)
### What?
Improves the Graphite workflow documentation in
`.cursor/commands/gt-workflow.md`.
### Why?
The previous documentation was unclear about when to use `gt` vs `git`
commands, leading to potential workflow issues.
### How?
- Clarifies that `gt` should ... | [
{
"path": ".cursor/commands/gt-workflow.md",
"patch": "@@ -4,24 +4,54 @@\n \n Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n \n-## Forbidden Git Commands\n+## Use `gt` Instead of `git`\n \n-NEVER use these git commands directly:\n+All git commands work with `gt... | 2026-02-11T09:56:39 |
nodejs/node | 649d73a043f9da35c6d110d4d338b6883e42a080 | 38bf955937b5a30f5bd59360c2b153647d4737e2 | test: fix incorrect calculation in test-perf-hooks.js
After https://redirect.github.com/nodejs/node/pull/46588,
Date.now() - performance.timeOrigin and process.uptime()
are no longer similar - the former measures uptime from
process initilaization, while the latter measures uptime from
the main context initialization.... | [
{
"path": "test/sequential/test-perf-hooks.js",
"patch": "@@ -28,15 +28,10 @@ const epsilon = 50;\n {\n const uptime1 = Date.now() - performance.timeOrigin;\n const uptime2 = performance.now();\n- const uptime3 = process.uptime() * 1000;\n assert(Math.abs(uptime1 - uptime2) < epsilon,\n `Dat... | 2025-10-18T12:21:44 |
facebook/react | 448f781a52d62042341d2411d1352d705ce2cbfe | 5020d48d2809c33db980f20726d1d0a7b2c8e31a | [compiler] Fix for false positive mutation of destructured spread object (#33786)
When destructuring, spread creates a new mutable object that _captures_
part of the original rvalue. This new value is safe to modify.
When making this change I realized that we weren't inferring array
pattern spread as creating an arra... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts",
"patch": "@@ -345,6 +345,51 @@ export function* eachPatternOperand(pattern: Pattern): Iterable<Place> {\n }\n }\n \n+export function* eachPatternItem(\n+ pattern: Pattern,\n+): Iterable<Place | SpreadPattern> {\n+ switch (pat... | 2025-07-24T22:16:28 |
electron/electron | 26ffc8505c011eda0658052d7c5ed5c9dbcc6905 | 3b0f35a7e846c64549400764e471941f81c05978 | fix: allow importing from electron/utility at runtime (#47968) | [
{
"path": "lib/common/init.ts",
"patch": "@@ -93,20 +93,23 @@ makeElectronModule('electron');\n makeElectronModule('electron/common');\n if (process.type === 'browser') {\n makeElectronModule('electron/main');\n-}\n-if (process.type === 'renderer') {\n+} else if (process.type === 'renderer') {\n makeEle... | 2025-08-07T07:53:42 |
nodejs/node | 38bf955937b5a30f5bd59360c2b153647d4737e2 | 8b52c89b00642d624a5472a0df139593ef82a239 | vm: make vm.Module.evaluate() conditionally synchronous
- Make sure that the vm.Module.evaluate() method is conditionally
synchronous based on the specification. Previously, the returned
promise is unconditionally pending (even for synthetic modules and
source text modules without top-level await) instead of imm... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -618,19 +618,47 @@ in the ECMAScript specification.\n work after that. **Default:** `false`.\n * Returns: {Promise} Fulfills with `undefined` upon success.\n \n-Evaluate the module.\n+Evaluate the module and its depenendencies. Corresponds to the [Evaluate() concr... | 2025-10-10T18:20:09 |
vercel/next.js | b067991e591f4965b873d4eef9a18ea1f321ca9b | adcac5dff1967a1cf9798bac54828e46a25bcb7e | Add support for with `type: "text"` under a new experimental flag, following what webpack did (#89560)
## Summary
Adds support for the TC39 `import ... with { type: "text" }` proposal to Turbopack, allowing files to be imported as strings.
This is gated behind a new experimental flag `turbopackImportTypeText`.
```j... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -341,6 +341,7 @@ pub async fn get_client_module_options_context(\n esm_url_rewrite_behavior: Some(UrlRewriteBehavior::Relative),\n enable_typeof_window_inlining: Some(TypeofWindow::Object),\n enable_imp... | 2026-02-11T07:33:54 |
golang/go | 2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c | 6b2505c79cb3838c6e27cf47ac09980fe51c83c2 | runtime/trace: fix documentation comment
Correct documentation comment for mul function
Change-Id: I8b90f02bf0aaba9bb5813833d1b9dd1ebb7d71f4
GitHub-Last-Rev: e91af64af9bad9cd2574dc3dd7ed88123a288be8
GitHub-Pull-Request: golang/go#77082
Reviewed-on: https://go-review.googlesource.com/c/go/+/734100
Reviewed-by: Michael... | [
{
"path": "src/runtime/trace/recorder.go",
"patch": "@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64\n // frequency is nanoseconds per timestamp unit.\n type frequency float64\n \n-// mul multiplies an unprocessed to produce a time in nanoseconds.\n+// mul multiplies an unprocessed timestamp to prod... | 2026-01-05T23:08:44 |
facebook/react | 4f34cc4a2e1198493375867d1876509ae9771aee | 3d14fcf03f4e296d21b52b362f5adefd9e366375 | [Fiber] Don't throw away the Error object retaining the owner stack (#33976)
We currently throw away the Error once we've used to the owner stack of
a Fiber once. This maybe helps a bit with memory and redoing it but we
really don't expect most Fibers to hit this at all. It's not very hot.
If we throw away the Error,... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/DevToolsFiberComponentStack.js",
"patch": "@@ -199,7 +199,7 @@ export function getOwnerStackByFiberInDev(\n if (typeof owner.tag === 'number') {\n const fiber: Fiber = (owner: any);\n owner = fiber._debugOwner;\n- let d... | 2025-07-24T17:33:03 |
nodejs/node | c2d44174b2f38f15214c5e395b7a59b66824252c | 86560880905cf11ea49a5dfb72505fe1ef856eaf | test: ignore EPIPE errors in https proxy invalid URL test
There can be a race from eagerly shutting down the servers and
severing two pipes at the same time but for the purpose of this test,
we only care about whether the requests are initiated from the client
as expected, not how the upstream/proxy servers behave. Ig... | [
{
"path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs",
"patch": "@@ -82,7 +82,19 @@ for (const testCase of testCases) {\n proxy.close();\n server.close();\n assert.deepStrictEqual(requests, expectedUrls);\n- assert.deepStrictEqual(new Set(logs)... | 2025-10-18T05:43:08 |
electron/electron | 3b0f35a7e846c64549400764e471941f81c05978 | 8769d5ba9e4cf14b5ab7c559eef97396601bb3c0 | chore: bump chromium to 140.0.7339.2 (main) (#47929)
* chore: bump chromium in DEPS to 140.0.7330.0
* chore: bump chromium in DEPS to 140.0.7331.0
* chore: update patches
* fix: gn check failing on crashpad.h
Not yet sure what caused this
* fix: predictors::PreconnectManager -> content::PreconnectManager
CL: https... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7327.0',\n+ '140.0.7339.2',\n 'node_version':\n 'v22.18.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2025-08-07T00:14:23 |
vercel/next.js | adcac5dff1967a1cf9798bac54828e46a25bcb7e | 384cb2dadfa12bca55a883c7f1c7e37f22bb5a5a | Add turbopackIgnoreIssue config to suppress Turbopack warnings (#89682)
## What?
Adds the `experimental.turbopackIgnoreIssue` configuration option, which allows developers to suppress specific Turbopack warnings and errors based on file path, issue title, and/or description patterns. Filtered issues are hidden from b... | [
{
"path": "Cargo.lock",
"patch": "@@ -9823,6 +9823,7 @@ dependencies = [\n \"tokio\",\n \"tracing\",\n \"turbo-bincode\",\n+ \"turbo-esregex\",\n \"turbo-frozenmap\",\n \"turbo-prehash\",\n \"turbo-rcstr\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crate... | 2026-02-11T07:26:58 |
facebook/react | edac0dded99d56e7d66a88da83e874761e3e937a | 3586a7f9e8ffb80ff98f41daca0e8a4070878718 | [DevTools] Add a Code Editor Sidebar Pane in the Chrome Sources Tab (#33968)
This adds a "Code Editor" pane for the Chrome extension in the bottom
right corner of the "Sources" panel. If you end up getting linked to the
"Sources" panel from stack traces in console, performance tab, stacks in
React Component tab like t... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -1,5 +1,7 @@\n /* global chrome */\n \n+import type {SourceSelection} from 'react-devtools-shared/src/devtools/views/Editor/EditorPane';\n+\n import {createElement} from 'react';\n import {flushSync} from 'react-dom';\n import {c... | 2025-07-23T14:28:11 |
golang/go | 6b2505c79cb3838c6e27cf47ac09980fe51c83c2 | 4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0 | cmd/go: remove user-content from doc strings in cgo ASTs.
Thank you to RyotaK (https://ryotak.net) of GMO Flatt Security Inc. for reporting this issue.
Updates golang/go#76697
Fixes CVE-2025-61732
Change-Id: I1121502f1bf1e91309eb4bd41cc3a09c39366d36
Reviewed-on: https://go-review.googlesource.com/c/go/+/734220
Revie... | [
{
"path": "src/cmd/cgo/ast.go",
"patch": "@@ -301,17 +301,12 @@ func (f *File) saveExport(x any, context astContext) {\n \t\t\terror_(c.Pos(), \"export comment has wrong name %q, want %q\", name, n.Name.Name)\n \t\t}\n \n-\t\tdoc := \"\"\n-\t\tfor _, c1 := range n.Doc.List {\n-\t\t\tif c1 != c {\n-\t\t\t\td... | 2026-01-06T21:09:19 |
electron/electron | 7a13c6f175c71afc1329a923896c3e7cc28d7905 | 678fb400fdb465fbfccd77681f32728a5f86e9bd | refactor: avoid deprecated `v8::Context::GetIsolate()` pt 4 (#47961)
* refactor: remove GetIsolate() calls from SetPrivate()
* refactor: remove excess GetIsolate() calls in PassValueToOtherContextInner()
* refactor: remove GetIsolate() calls from GetPrivate()
* refactor: add a v8::Isolate* local to ProxyFunctionWra... | [
{
"path": "shell/renderer/api/electron_api_context_bridge.cc",
"patch": "@@ -112,26 +112,24 @@ bool IsPlainArray(const v8::Local<v8::Value>& arr) {\n return !arr->IsTypedArray();\n }\n \n-void SetPrivate(v8::Local<v8::Context> context,\n+void SetPrivate(v8::Isolate* const isolate,\n+ v8::Lo... | 2025-08-06T01:08:04 |
nodejs/node | 70c04c7fd8630397a4062de1ca2e834fa2a5fad0 | 8429d9a40b665e2a192d00b73a6a21d687f9b870 | test: parallelize test-without-async-context-frame correctly
It previously re-einvented the pattern matching that's already
supported by test.py, and was running the tests one by one,
which can lead to time out on slower machines.
This move it to sequential and use wildcard
support in test.py to correctly parallelize ... | [
{
"path": "test/parallel/test-without-async-context-frame.mjs",
"patch": "@@ -1,64 +0,0 @@\n-import { isWindows } from '../common/index.mjs';\n-import { spawn } from 'node:child_process';\n-import { once } from 'node:events';\n-import { opendir } from 'node:fs/promises';\n-import { fileURLToPath } from 'nod... | 2025-10-17T22:40:34 |
vercel/next.js | 5101d0499e11325cf28b60cb2933ad802ad943f5 | b6311869b3cd11c0bf18f1e6a1df74eb8c860a77 | Fix devlow job timeouts (#89804)
Attempting to fix the devlow job timeouts that have been happening on
canary for a bit
x-ref:
https://github.com/vercel/next.js/actions/runs/21889767463/job/63192963474 | [
{
"path": "scripts/devlow-bench.mjs",
"patch": "@@ -10,6 +10,7 @@ import { waitForFile } from '@vercel/devlow-bench/file'\n const REPO_ROOT = fileURLToPath(new URL('..', import.meta.url))\n const START_SERVER_REGEXP = /Ready in \\d+/\n const URL_REGEXP = /Local:\\s+(?<url>.+)\\n/\n+const STARTUP_WAIT_TIMEOU... | 2026-02-11T06:15:44 |
golang/go | 4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0 | 8ac4477d83672af8c3d39399685731ee6b81ce2f | lib/fips140: freeze v1.26.0 FIPS 140-3 module
Fixes #76770
Change-Id: Ia617f01ea9be0d1759147b6cca0403c56a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/731840
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -10,4 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n-v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e\n+v1.26.0.zip 9b28f847fdf... | 2025-12-19T22:14:36 |
facebook/react | 7513996f20e34070141aa605fe282ca6986915a0 | bb4418d6470b95c7d487f3b73a9dc980edff6f06 | [DevTools] Unify by using ReactFunctionLocation type instead of Source (#33955)
In RSC and other stacks now we use a lot of `ReactFunctionLocation` type
to represent the location of a function. I.e. the location of the
beginning of the function (the enclosing line/col) that is represented
by the "Source" of the functi... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -26,7 +26,7 @@ import {\n import {localStorageSetItem} from 'react-devtools-shared/src/storage';\n \n import type {FrontendBridge} from 'react-devtools-shared/src/bridge';\n-import type {Source} from 'react-devtools-shared/src/shared/t... | 2025-07-22T14:53:08 |
electron/electron | 678fb400fdb465fbfccd77681f32728a5f86e9bd | 88064999048f8e7b049e1ade642f795e66977228 | fix: video scrubbing on playback (#47703)
* fix: fix video scrubbing on playback
* chore: address review feedback
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "patches/chromium/feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch",
"patch": "@@ -12,8 +12,12 @@ This patch adds a list of \"streaming protocols\" to the MultibufferDataSource in\n other protocols to register their streaming behavior. MultibufferDataSource::AssumeFullyBuffere... | 2025-08-05T16:48:52 |
vercel/next.js | 50d61f93d855a9cd1504d3d5b5081ab160df8d8f | a040e38f368f09a368f78347fcf474cb3c41164a | Turbopack: Fix slow filesystem benchmark warning for `next dev` (#89798)
Apparently we broke this about 6 months ago and didn't notice:
- We briefly had both a `println` (legacy) and a compilation event, leading to duplicate logging.
- First: https://github.com/vercel/next.js/pull/80631 - I added a filter to `backgro... | [
{
"path": "crates/next-napi-bindings/src/next_api/project.rs",
"patch": "@@ -82,7 +82,7 @@ use crate::{\n \n /// Used by [`benchmark_file_io`]. This is a noisy benchmark, so set the\n /// threshold high.\n-const SLOW_FILESYSTEM_THRESHOLD: Duration = Duration::from_millis(100);\n+const SLOW_FILESYSTEM_THRESH... | 2026-02-11T05:02:44 |
golang/go | 874d8b98eba8129559b97d2fdfa02ddeb88b95f9 | d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c | cmd/go/internal/work: decrement concurrentProcesses when action finishes
This fixes a bug where we only incremented concurrentProcesses but never
decremented it, causing us to run out of tokens and give all compiles
-c=1 after a point.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-l... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -248,6 +248,11 @@ func (b *Builder) Do(ctx context.Context, root *Action) {\n \n \twg.Wait()\n \n+\tif tokens != totalTokens || concurrentProcesses != 0 {\n+\t\tbase.Fatalf(\"internal error: tokens not restored at end of build: tokens: %d, totalToke... | 2026-01-06T22:18:48 |
electron/electron | 88064999048f8e7b049e1ade642f795e66977228 | 637a504e28ce205050b3ae089e7492d3bf25b6dc | fix: offscreen mode under `window.open` creation (#47868)
fix: offscreen mode under new window creation | [
{
"path": "patches/chromium/can_create_window.patch",
"patch": "@@ -21,10 +21,21 @@ index 378e3eb2f8b9d4daaf39ef213dec88d86cf90a5c..0ace2e0c7073ee97ebb274db4b184a07\n &no_javascript_access);\n \n diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_co... | 2025-08-05T12:56:33 |
facebook/react | b9af1404eac698c943b52c466b9c2e4aff85cf70 | e9638c33d7e79162516b89da31549af4090997a5 | [Flight] Use the JSX as the await stack if an await is not available (#33947)
If you pass a promise to a client component to be rendered `<Client
promise={promise} />` then there's an internal await inside Flight.
There might also be user space awaits but those awaits may already have
happened before we render this co... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -1717,6 +1717,16 @@ function renderFunctionComponent<Props>(\n // Apply special cases.\n result = processServerComponentReturnValue(request, task, Component, result);\n \n+ if (__DEV__) {\n+ // From this point on, the parent is... | 2025-07-21T17:21:17 |
golang/go | d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c | f6ebd91129e13ef7f495550a4fc8fa74769f6a2d | internal/trace: fix recorder.Write return value for header-only buffers
Fix issue #77083
Change-Id: I9189d1e3a6efea8478224164e820f50c818abcd5
GitHub-Last-Rev: bb24cbda95f0b5b10aeae9a5ee8cbe215ba6d4eb
GitHub-Pull-Request: golang/go#77092
Reviewed-on: https://go-review.googlesource.com/c/go/+/734300
Reviewed-by: Michae... | [
{
"path": "src/runtime/trace/recorder.go",
"patch": "@@ -39,7 +39,7 @@ func (w *recorder) Write(b []byte) (n int, err error) {\n \t\tw.headerReceived = true\n \t}\n \tif len(b) == n {\n-\t\treturn 0, nil\n+\t\treturn n, nil\n \t}\n \tba, nb, err := readBatch(b[n:]) // Every write from the runtime is guarant... | 2026-01-06T22:47:07 |
facebook/react | 28d4bc496b9c0dd2178caf894054ffce600311d3 | dffacc7b8094576c19790fe8341996f743ba4a89 | [Flight] Make debug info and console log resolve in predictable order (#33665)
This resolves an outstanding issue where it was possible for debug info
and console logs to become out of order if they up blocked. E.g. by a
future reference or a client reference that hasn't loaded yet. Such as
if you console.log a client... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -10,11 +10,10 @@\n import type {\n Thenable,\n ReactDebugInfo,\n+ ReactDebugInfoEntry,\n ReactComponentInfo,\n- ReactEnvironmentInfo,\n ReactAsyncInfo,\n ReactIOInfo,\n- ReactTimeInfo,\n ReactStackTrace,\n ReactFunctio... | 2025-07-20T00:13:26 |
golang/go | d1d0fc7a97539206e33f04bac935f6450597137c | 9b2e3b9a02bd8872bdbf5c6086674fa6b4bc8ef9 | os/exec: avoid atomic.Bool for Cmd.startCalled
An atomic.Bool isn't necessary here since, unless otherwise
specified, the methods of an object are not concurrency-safe
w.r.t. each other. Using an atomic causes the copylocks vet
check to warn about copying of Cmd, which is not wrong, because
one shouldn't be copying op... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -357,7 +357,9 @@ type Cmd struct {\n \tcachedLookExtensions struct{ in, out string }\n \n \t// startCalled records that Start was attempted, regardless of outcome.\n-\tstartCalled atomic.Bool\n+\t// (Until go.dev/issue/77075 is resolved, we use atomic.SwapInt32,... | 2026-01-06T19:48:31 |
nodejs/node | d3f79aa65d828e7cd81e95381d1893117824fbd6 | 8096aeab81a801d9a1bcda10fe354235ee556932 | assert: allow printf-style messages as assertion error
Also add functions as allowed message input.
This allows to have leavy message computation to become cheaper.
PR-URL: https://github.com/nodejs/node/pull/58849
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.c... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -39,6 +39,27 @@ strict methods. For example, [`assert.deepEqual()`][] will behave like\n In strict assertion mode, error messages for objects display a diff. In legacy\n assertion mode, error messages for objects display the objects, often truncated.\n \n+### Mess... | 2025-10-17T20:15:17 |
electron/electron | 40cdfdb1d1c4994fce665b03c2a53fe7f67e47d6 | 4ca10a1056afdfffa794ef3ead1452c643f54fd4 | chore: bump node to v22.18.0 (main) (#47937)
* chore: bump node in DEPS to v22.18.0
* crypto: fix inclusion of OPENSSL_IS_BORINGSSL define
https://github.com/nodejs/node/pull/58845
* crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4
https://github.com/nodejs/node/pull/58960
* permission: propag... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '140.0.7327.0',\n 'node_version':\n- 'v22.17.1',\n+ 'v22.18.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-08-04T18:40:36 |
facebook/react | 9fec565a9b9f78558323adff1013291cf46f7de7 | 996d0eb05596ac40209a0a82810741a01442e97e | fix: log renders from passive effects for only newly finished work (#33797)
This fixes displaying incorrect component render entries on a timeline,
when we are reconnecting passive effects.
### Before
<img width="2318" height="1127" alt="1"
src="https://github.com/user-attachments/assets/9b6b2824-d2de-43a3-8615-2c45d... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -4155,6 +4155,7 @@ export function reconnectPassiveEffects(\n if (\n enableProfilerTimer &&\n enableComponentPerformanceTrack &&\n+ includeWorkInProgressEffects &&\n (finishedWork.mode & ProfileMode) !== NoMode ... | 2025-07-16T17:09:35 |
golang/go | f8ee0f84753b22254d217bf28ce8ecca7db7025c | b094749bad125db5b89e48248bbb9c7dc1292a95 | cmd/go/testdata/vcstest/git: use git commands that work on older git versions
On older versions of git (such as 2.25.1), `git branch -M master`
fails after `git init` - use `git checkout -b master` instead, which
works across multiple versions.
Fixes tests on the rather outdated linux/mips* builders.
Change-Id: Id86... | [
{
"path": "src/cmd/go/testdata/vcstest/git/legacytest.txt",
"patch": "@@ -6,7 +6,7 @@ env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME\n env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL\n \n git init\n-git branch -M master\n+git checkout -b master\n \n at 2018-07-17T12:41:39-04:00\n cp x_cf92c7b.go x.go",
"additions": ... | 2025-12-12T08:03:05 |
nodejs/node | 9e8c7535f2331f767dd4ddc15abd99bf72a61cc5 | 64bbb979decdbfffc3d88b26c1e2045a8e2ed6d8 | test: skip sea tests on x64 macOS
It's unlikely that anyone would invest in fixing them on x64 macOS
in the near future, now that x64 macOS is being phased out.
Simply skip them for now.
PR-URL: https://github.com/nodejs/node/pull/60250
Refs: https://github.com/nodejs/node/issues/59553
Reviewed-By: Richard Lau <richa... | [
{
"path": "test/sea/sea.status",
"patch": "@@ -8,25 +8,7 @@ prefix sea\n \n [$system==macos && $arch==x64]\n # https://github.com/nodejs/node/issues/59553\n-test-single-executable-application: PASS, FLAKY\n-test-single-executable-application-assets: PASS, FLAKY\n-test-single-executable-application-assets-ra... | 2025-10-13T20:57:48 |
facebook/react | fe813143e23675963f92d25fa1fb35b39db40272 | 2f0e7e570d3a99adc2a18e7575d1d2bb69660e1f | [compiler] Check TSAsExpression and TSNonNullExpression reorderability (#33788)
## Summary
The `TSAsExpression` and `TSNonNullExpression` nodes are supported by
`lowerExpression()` but `isReorderableExpression()` does not check if
they can be reordered. This PR updates `isReorderableExpression()` to
handle these two ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -3001,6 +3001,8 @@ function isReorderableExpression(\n }\n }\n }\n+ case 'TSAsExpression':\n+ case 'TSNonNullExpression':\n case 'TypeCastExpression': {\n return isReorderableExpress... | 2025-07-15T18:50:20 |
vercel/next.js | f7dd09fd5fe57c5d853f2f09157b43cdafbe00af | 4385ed36f66dfe0d9ae6a955135be7c1461fd35f | [Instant] Validation on client navs (#89777)
This PR makes instant validation work for client navigations, albeit in
a pretty inefficent way. If we're navigating and have an `instant`
config somewhere in the tree, we won't skip shared layouts like a client
navigation usually would. Instead, we render all the shared se... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -92,7 +92,10 @@ import { createServerInsertedHTML } from './server-inserted-html'\n import { getRequiredScripts } from './required-scripts'\n import { addPathPrefix } from '../../shared/lib/router/utils/add-path-prefix'\n import { ... | 2026-02-10T21:03:16 |
electron/electron | 4ca10a1056afdfffa794ef3ead1452c643f54fd4 | 9d05454dc7fced8eac0c282eb3906c4f5f884836 | chore: move gin::Handle to gin_helper (#47959)
* chore: move gin::Handle to gin_helper
* chore: fix lint | [
{
"path": "filenames.gni",
"patch": "@@ -653,6 +653,7 @@ filenames = {\n \"shell/common/gin_helper/function_template.cc\",\n \"shell/common/gin_helper/function_template.h\",\n \"shell/common/gin_helper/function_template_extensions.h\",\n+ \"shell/common/gin_helper/handle.h\",\n \"shell/co... | 2025-08-04T17:03:06 |
golang/go | b28808d838682b2911698fcb934813b02f39fa69 | d64add4d60b69973e5cae62f07983f91435de58b | cmd/go/internal/modindex: fix obvious bug using failed type assertion
adonovan pointed out this bug in the review of CL 733320 and this seems
to be the cause of all those list_empty_importpath flakes. It makes
sense that something nondeterministic would be tied up with the module
index because the state of the cache c... | [
{
"path": "src/cmd/go/internal/modindex/scan.go",
"patch": "@@ -112,10 +112,10 @@ func parseErrorToString(err error) string {\n \t\treturn \"\"\n \t}\n \tvar p parseError\n-\tif e, ok := err.(scanner.ErrorList); ok {\n-\t\tp.ErrorList = &e\n+\tif errlist, ok := err.(scanner.ErrorList); ok {\n+\t\tp.ErrorLis... | 2025-12-30T20:41:41 |
nodejs/node | 71f5b1cbf0540d1309d58ac181326e5b65f680c7 | e8fd0ee74ded1e2badd25401785b9d0ec0a660c9 | doc: fix `blob.bytes()` heading level
PR-URL: https://github.com/nodejs/node/pull/60252
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -513,7 +513,7 @@ added:\n Returns a promise that fulfills with an {ArrayBuffer} containing a copy of\n the `Blob` data.\n \n-#### `blob.bytes()`\n+### `blob.bytes()`\n \n <!-- YAML\n added:",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2025-10-16T08:17:53 |
facebook/react | 2f0e7e570d3a99adc2a18e7575d1d2bb69660e1f | 56d0ddae18993eb696ab41d0fc5041948b88024a | [Flight] Don't block on debug channel if it's not wired up (#33757)
React Elements reference debug data (their stack and owner) in the debug
channel. If the debug channel isn't wired up this can block the client
from resolving.
We can infer that if there's no debug channel wired up and the reference
wasn't emitted be... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1353,6 +1353,26 @@ function waitForReference<T>(\n map: (response: Response, model: any, parentObject: Object, key: string) => T,\n path: Array<string>,\n ): T {\n+ if (\n+ __DEV__ &&\n+ // TODO: This should check for the e... | 2025-07-15T15:45:34 |
vercel/next.js | e83729677999c2f7073cd5a743a5c530ad8e1544 | 53481e3f74d271608689ae2f0306fa33c05e4ffe | Improve not-found-with-pages test (#89538)
The fixture contains both App and Pages router
But the assertions only ever tested the App endpoints
Fixed by https://github.com/vercel/vercel/pull/14878
There is still a bug in the builder:
```
FAIL webpack test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.te... | [
{
"path": "test/e2e/app-dir/not-found-with-pages-i18n/not-found-with-pages.test.ts",
"patch": "@@ -1,7 +1,9 @@\n import { nextTestSetup } from 'e2e-utils'\n \n-describe('not-found-with-pages', () => {\n- const { next, isNextStart } = nextTestSetup({\n+const isAdapterTest = Boolean(process.env.NEXT_ENABLE_A... | 2026-02-10T17:24:21 |
golang/go | fd45d70799853ef5980a559e206353574108d8da | df4e08ac65e94041367785783ec1482e8bed2397 | all: fix some minor grammatical issues in the comments
Change-Id: I0459f05e7f6abd9738813c65d993114e931720d5
Reviewed-on: https://go-review.googlesource.com/c/go/+/731000
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Ch... | [
{
"path": "src/archive/tar/reader_test.go",
"patch": "@@ -787,7 +787,7 @@ type readBadSeeker struct{ io.ReadSeeker }\n \n func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf(\"illegal seek\") }\n \n-// TestReadTruncation test the ending condition on various truncated files and\n... | 2025-12-18T02:36:50 |
nodejs/node | a520a39adfc5b8e9cdc1725d96516d16412a34a3 | 1d2b89a2a063a2d5124816ea4adf8a2e298b20d1 | 2025-10-15, Version 25.0.0 (Current)
assert:
* (SEMVER-MAJOR) move assert.fail with multiple arguments to eol (James M Snell) https://github.com/nodejs/node/pull/58532
* (SEMVER-MAJOR) move CallTracker to EOL (James M Snell) https://github.com/nodejs/node/pull/58006
assert,util:
* (SEMVER-MAJOR) fail promise com... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 25](doc/changelogs/CHANGELOG_V25.md) **Current**\n * [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**\n * [Node.js 23](doc/changelogs/CHANGELOG_V23.md) End-of-Life\... | 2025-09-15T20:59:44 |
facebook/react | eb7f8b42c92ed804bbf7f700d2bdda276d591007 | eed25607629f5e67f13f53e91edec12b3388559f | [Flight] Add Separate Outgoing Debug Channel (#33754)
This lets us pass a writable on the server side and readable on the
client side to send debug info through a separate channel so that it
doesn't interfere with the main payload as much. The main payload refers
to chunks defined in the debug info which means it's st... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -342,11 +342,6 @@ type Response = {\n _chunks: Map<number, SomeChunk<any>>,\n _fromJSON: (key: string, value: JSONValue) => any,\n _stringDecoder: StringDecoder,\n- _rowState: RowParserState,\n- _rowID: number, // parts of a ro... | 2025-07-10T20:22:44 |
electron/electron | 9d05454dc7fced8eac0c282eb3906c4f5f884836 | 0e862bba61e71706e48904b0c3acba41eee26a0f | chore: move gin::DeprecatedWrappable to gin_helper (#47958)
* chore: move gin::DeprecatedWrappable to gin_helper
This is in preparation for migrating to gin::Wrappable
based on cppgc #47922
The upstream class will be deleted soon via roller PR but
the cppgc migration should happen outside the roll, this
change retain... | [
{
"path": "patches/chromium/feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch",
"patch": "@@ -10,19 +10,10 @@ shutdown leading to UAF in the second pass.\n \n Details at https://github.com/microsoft/vscode/issues/192119#issuecomment-2375851531\n \n-The signals exposed in this patch does the fo... | 2025-08-04T14:28:01 |
vercel/next.js | 53481e3f74d271608689ae2f0306fa33c05e4ffe | a24095495f02c7b8cc0b4e2fcae7c5ca6c7343e3 | Add 2nd cloned body to FinalizationRegistry. Only used RuntimeStyles component for webpack (#88577)
### What?
Reduces memory retention in two areas: response stream cleanup in
`cloneResponse` and unnecessary runtime style initialization in
Turbopack mode. Also adds a test fixture for standalone mode fetch
memory leak... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -523,7 +523,7 @@ function Router({\n return (\n <>\n <HistoryUpdater appRouterState={state} />\n- <RuntimeStyles />\n+ {process.env.TURBOPACK ? null : <RuntimeStylesForWebpack />}\n <NavigationPromisesCo... | 2026-02-10T15:48:01 |
rust-lang/rust | 304a197ba5d18bf837f822f8f9d7a7a3f3e3c897 | e613b82e4eaed11edddfc90024a5e51c807ece42 | Revert "fixup span in obligation cause"
This reverts commit 2d411a0faad447b5bfc968b954fd3e9c10596325. | [
{
"path": "compiler/rustc_trait_selection/src/solve.rs",
"patch": "@@ -57,7 +57,7 @@ fn try_eagerly_normalize_alias<'a, 'tcx>(\n let obligation = Obligation::new(\n tcx,\n // we ignore the error anyway\n- ObligationCause::dummy_with_span(span),\n+ ObligationCause::dummy(),\... | 2026-03-23T11:09:34 |
golang/go | df4e08ac65e94041367785783ec1482e8bed2397 | cd668d744f77da06ca9565f41c63c3a5251469ee | test/codegen: fix a tab in comparisons.go to ensure pattern works
Fix a pattern in test/codegen/comparisons.go to use whitespace instead
of a tab. The test needs a whitespace to properly fail if the regalloc
change from CL686655 would be missing (in that case we would have a
spill immediately after call to memequal, w... | [
{
"path": "test/codegen/comparisons.go",
"patch": "@@ -660,13 +660,13 @@ func equalVarString8(a string) bool {\n \treturn a[:8] == b\n }\n \n-func equalVarStringNoSpill(a,b string) bool {\n+func equalVarStringNoSpill(a, b string) bool {\n \ts := string(\"ZZZZZZZZZ\")\n \t// arm64:\".*memequal\"\n \tmemeq1 :... | 2025-12-06T13:43:55 |
facebook/react | eed25607629f5e67f13f53e91edec12b3388559f | 463b808176ad7c9429a4981bb45a1da225fd4b85 | [Flight] Treat empty message as a close signal (#33756)
We typically treat an empty message as closing the debug channel stream
but for the Noop renderer we don't use an intermediate stream but just
pass the message through.
https://github.com/facebook/react/blob/bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36/packages/rea... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -5808,6 +5808,10 @@ export function resolveDebugMessage(request: Request, message: string): void {\n \"resolveDebugMessage/closeDebugChannel should not be called for a Request that wasn't kept alive. This is a bug in React.\",\n ... | 2025-07-10T20:16:57 |
vercel/next.js | a7a017455b76593b3025c30f9851d65e9050d25b | c76b0fe2a0bcf971ccc7008ee201244df872f52d | clarify unstable_cache replacement with use cache (#89435)
There’s an inconsistency in the docs:
[unstable_cache](https://nextjs.org/docs/app/api-reference/functions/unstable_cache)
has already been replaced by use cache, so I think the documentation
should be updated accordingly.
I’d appreciate it if you could look i... | [
{
"path": "docs/01-app/03-api-reference/04-functions/unstable_cache.mdx",
"patch": "@@ -3,7 +3,9 @@ title: unstable_cache\n description: API Reference for the unstable_cache function.\n ---\n \n-> **Warning:** This API will be replaced by [`use cache`](/docs/app/api-reference/directives/use-cache) when it r... | 2026-02-10T13:27:12 |
electron/electron | 4232ed2814e92275b4b80658f5070eb477167989 | e7683bdd25c904b2ae408949029f881ccb65d6b9 | fix: crash on `window.close()` with `webContents` on blur (#47933)
fix: crash on window.close with WebContentsView on blur | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2747,35 +2747,42 @@ void WebContents::CloseDevTools() {\n if (type_ == Type::kRemote)\n return;\n \n- DCHECK(inspectable_web_contents_);\n- inspectable_web_contents_->CloseDevTools();\n+ if (inspectable_web_contents_)\n+ i... | 2025-08-04T08:35:29 |
nodejs/node | 7c7f30ed17654f29293f586ad009f0f8340213d4 | daf0a44669992ea2dff7f4a5b14e6f9088ce4399 | deps: V8: cherry-pick 3d0f462a17ff
Original commit message:
[api] Add index-based module resolution in InstantiateModule()
Add new InstantiateModule() overload that allows embedders to identify
modules requests by index in the module requests array rather than
using specifier and import attributes. W... | [
{
"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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-09-16T16:28:29 |
rust-lang/rust | 5f2790c3412994b7aaef5ccf350030cd6c4a6ede | bbe853615821442ef11d6cd42a30a73432b38d89 | using rustc in the middle of an attrpath errors | [
{
"path": "tests/ui/attributes/rustc-in-attr-path.rs",
"patch": "@@ -0,0 +1,9 @@\n+mod rustc {\n+ pub use std::prelude::v1::test;\n+}\n+\n+#[crate::rustc::test]\n+//~^ ERROR: attributes starting with `rustc` are reserved for use by the `rustc` compiler\n+fn foo() {}\n+\n+fn main() {}",
"additions": 9... | 2026-03-07T09:16:12 |
golang/go | cd668d744f77da06ca9565f41c63c3a5251469ee | 06eff0f7c3027a78088d45efdaec8ac3ed636481 | cmd/compile: disable inlining for functions using runtime.deferrangefunc
The rangefunc rewrite pass implements defer using deferrangefunc and
deferproccat. The loop body is rewritten into a closure, it cannot be
inlined due to defer call. But the outer function may still be inlined
in certain scenarios (e.g., with PGO... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -516,6 +516,9 @@ opSwitch:\n \t\t\t\t\t\tbreak opSwitch\n \t\t\t\t\tcase \"panicrangestate\":\n \t\t\t\t\t\tcheap = true\n+\t\t\t\t\tcase \"deferrangefunc\":\n+\t\t\t\t\t\tv.reason = \"defer call in range func\"\n+\t\t\t\t\t\treturn true\n \t\... | 2025-12-23T08:12:04 |
facebook/react | 96c61b7f1f145b9fe5103051b636959cdeb20cc8 | 0bfa404bacbad78af5b39c080ba67535f2e53044 | [compiler] Add CompilerError.UnsupportedJS variant (#33750)
We use this variant for syntax we intentionally don't support: with
statements, eval, and inline class declarations.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstac... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -15,6 +15,11 @@ export enum ErrorSeverity {\n * misunderstanding on the user’s part.\n */\n InvalidJS = 'InvalidJS',\n+ /**\n+ * JS syntax that is not supported and which we do not plan to support. Develo... | 2025-07-10T05:24:20 |
vercel/next.js | 839fe54b77d15a802269dea2133501c16aac08be | cc68574b8dcc22680ff2e218df90e811a552e937 | Avoid using unclosing prefetch streams in the browser (#89610)
Previously, `createPrefetchResponseStream` intentionally never called
`controller.close()` on the wrapper stream, to prevent React Flight from
erroring on unresolved references (dynamic holes). However, Chrome and
Firefox keep unclosed ReadableStreams with... | [
{
"path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts",
"patch": "@@ -232,13 +232,11 @@ export async function fetchServerResponse(\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once ... | 2026-02-09T22:30:18 |
nodejs/node | 170848bc1831ea9be665b527e2131c81263dfd2c | 0c35aaf55f489abb55c9990d0bbeacdf4b2b0e62 | module: handle null source from async loader hooks in sync hooks
This relaxes the validation in sync hooks so that it accepts
the quirky nullish source returned by the default step of the
async loader when the module being loaded is CommonJS.
When there are no customization hooks registered, a saner
synchronous defaul... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -177,6 +177,7 @@ const {\n registerHooks,\n resolveHooks,\n resolveWithHooks,\n+ validateLoadStrict,\n } = require('internal/modules/customization_hooks');\n const { stripTypeScriptModuleTypes } = require('internal/modules/typescript');\n c... | 2025-10-14T16:28:22 |
electron/electron | e7683bdd25c904b2ae408949029f881ccb65d6b9 | bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772 | feat: Use DIR_ASSETS path to locate resource bundles (#47439)
* feat: Use DIR_ASSETS path to locate resource bundles
* Use DIR_ASSETS for calculating ASAR relative paths
* Add test to verify 'assets' matches parent dir of 'exe'
* Add Mac-specific test for assets path (but it is failing)
* test: Update app.getPath(... | [
{
"path": "docs/api/app.md",
"patch": "@@ -602,6 +602,7 @@ Returns `string` - The current application directory.\n * `%APPDATA%` on Windows\n * `$XDG_CONFIG_HOME` or `~/.config` on Linux\n * `~/Library/Application Support` on macOS\n+ * `assets` The directory where app assets such as `resources... | 2025-08-04T03:34:08 |
golang/go | 76dddce29302681bdddafd4cbc27db66802414dd | 6ecdd2fc6e58c0cd2b788032a85f7845af10c922 | simd/archsimd: remove redundant suffix of ExtendLo operations
For methods like ExtendLo2ToInt64x2, the last "x2" is redundant, as
it is already mentioned in "Lo2". Remove it, so it is just
ExtendLo2ToInt64.
Change-Id: I490afd818c40bb7a4ef15c249723895735bd6488
Reviewed-on: https://go-review.googlesource.com/c/go/+/733... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -376,26 +376,26 @@\n (ExpandUint64x2 x mask) => (VPEXPANDQMasked128 x (VPMOVVec64x2ToM <types.TypeMask> mask))\n (ExpandUint64x4 x mask) => (VPEXPANDQMasked256 x (VPMOVVec64x4ToM <types.TypeMask> mask))\n (ExpandUint64x8 x mask) => ... | 2025-12-29T16:30:33 |
facebook/react | 0bfa404bacbad78af5b39c080ba67535f2e53044 | 81e1ee7476a68fdf13c63d3002e5ef1b699b6842 | [compiler] More precise errors for invalid import/export/namespace statements (#33748)
import, export, and TS namespace statements can only be used at the
top-level of a module, which is enforced by parsers already. Here we add
a backup validation of that. As of this PR, we now have only major
statement type (class de... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -1397,6 +1397,41 @@ function lowerStatement(\n });\n return;\n }\n+ case 'ExportAllDeclaration':\n+ case 'ExportDefaultDeclaration':\n+ case 'ExportNamedDeclaration':\n+ case 'ImportDeclar... | 2025-07-10T05:24:07 |
vercel/next.js | 208c4f44b1db7d97dcad84a12bf9ee4ba4810757 | 35a46b157834b5620a509712a5431d5be32cb46f | fix(image): findClosestQuality returns 0 for low quality values (#89621)
Fixes #89620
Fix `findClosestQuality` returning `0` when the `quality` prop on
`<Image>` is set to a low value (e.g. `quality={1}`), which causes the
image optimization server to reject the request with a 400 error.
### Cause
The `reduce` call... | [
{
"path": "packages/next/src/shared/lib/find-closest-quality.ts",
"patch": "@@ -16,6 +16,6 @@ export function findClosestQuality(\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n- 0\n+ config.qualities[0]\n )\n }",
"additions... | 2026-02-09T15:11:38 |
nodejs/node | e6aaa98eb059a9bd0d7432bbebb1c3753ed89379 | e3a3733e1f177005684f3ae52d1d576d22af9633 | doc: fix not working code example in vm docs
PR-URL: https://github.com/nodejs/node/pull/60224
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "doc/api/vm.md",
"patch": "@@ -485,8 +485,8 @@ function resolveAndLinkDependencies(module) {\n // The \"secret\" variable refers to the global variable we added to\n // \"contextifiedObject\" when creating the context.\n export default secret;\n- `, { context: referenc... | 2025-10-14T06:46:29 |
electron/electron | bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772 | 5c98e3609f4b62490fd44541f28f1086b604e4e9 | refactor: replace webFrame.routingId with sync IPC (#47717)
* refactor: replace webFrame.routingId with sync IPC
* fix: GetConstructor missing isolate
* fix: missing isolate | [
{
"path": "docs/api/web-frame.md",
"patch": "@@ -253,15 +253,15 @@ and intend to stay there).\n \n * `selector` string - CSS selector for a frame element.\n \n-Returns `WebFrame` - The frame element in `webFrame's` document selected by\n+Returns `WebFrame | null` - The frame element in `webFrame's` document... | 2025-08-02T15:00:42 |
golang/go | 08369369e5a4b27d8f6d21ea571ea5027b9a2b46 | ca8effbde150257847f90de220686786aa091f90 | reflect: document Call/CallSlice panic when v is unexported field
Fixes #74377
Change-Id: I250d67ef2a4bf4dac939be669eeaf1091523ac06
Reviewed-on: https://go-review.googlesource.com/c/go/+/690617
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Roland Shoemaker <rol... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -362,6 +362,7 @@ func (v Value) CanSet() bool {\n // type of the function's corresponding input parameter.\n // If v is a variadic function, Call creates the variadic slice parameter\n // itself, copying in the corresponding values.\n+// It panics if the Value ... | 2025-07-26T05:44:12 |
facebook/react | 4a3ff8eed65f96cda7617150f92de3544d5ddf6a | ec4374c3872b320af60f322289c30cd3d7066bdf | [compiler] Errors for eval(), with statments, class declarations (#33746)
* Error for `eval()`
* More specific error message for `with (expr) { ... }` syntax
* More specific error message for class declarations
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
wit... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -1355,13 +1355,45 @@ function lowerStatement(\n \n return;\n }\n+ case 'WithStatement': {\n+ builder.errors.push({\n+ reason: `JavaScript 'with' syntax is not supported`,\n+ descriptio... | 2025-07-10T05:18:30 |
vercel/next.js | a0b5d9ad8b314bc9c34b138a3935d571561bb6b6 | 3f80419318a7553794bc63b9618664a89f10164d | Fix reset-project script for E2E deploy tests (#89693)
Our reset script was failing from invalid body shape:
```sh
Error: Create project failed. Got status: 400, {"error":{"code":"bad_request","message":"Invalid request: should NOT have additional property `env`."}}
```
x-ref:
https://github.com/vercel/next.js/acti... | [
{
"path": "scripts/reset-project.mjs",
"patch": "@@ -97,10 +97,11 @@ export async function resetProject({\n resourceConfig: {\n buildMachineType: 'enhanced',\n },\n- env: [\n+ environmentVariables: [\n {\n key: 'VERCEL_FORCE_NO_BUILD_CACHE_UPLOAD... | 2026-02-09T08:28:05 |
nodejs/node | 59b70e5fe397db2457e10469985cb47fd7af0687 | 8bc7dfd16fb95d5585eaaf0cea678ba1f9f4a755 | http: fix http client leaky with double response
PR-URL: https://github.com/nodejs/node/pull/60062
Fixes: https://github.com/nodejs/node/issues/60025
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/_http_client.js",
"patch": "@@ -47,6 +47,7 @@ const {\n HTTPParser,\n isLenient,\n prepareError,\n+ kSkipPendingData,\n } = require('_http_common');\n const {\n kUniqueHeaders,\n@@ -692,7 +693,14 @@ function parserOnIncomingClient(res, shouldKeepAlive) {\n // We already have a re... | 2025-10-13T15:58:26 |
electron/electron | 5c98e3609f4b62490fd44541f28f1086b604e4e9 | 2cfccac0747d5142230ab187ce8d004bce7ca702 | feat: add `{get|set}AccentColor` on Windows (#47741)
* feat: add setAccentColor on Windows
* refactor: unify GetSystemAccentColor
* refactor: remove redundant parsing
* chore: fixup documentation
* Update docs/api/browser-window.md
Co-authored-by: Will Anderson <andersonw@dropbox.com>
* Update docs/api/base-wind... | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -1260,6 +1260,43 @@ Sets the properties for the window's taskbar button.\n > `relaunchCommand` and `relaunchDisplayName` must always be set\n > together. If one of those properties is not set, then neither will be used.\n \n+#### `win.setAccentColor(accentCo... | 2025-08-01T20:29:02 |
facebook/react | ec4374c3872b320af60f322289c30cd3d7066bdf | 60b5271a9ad0e9eec2489b999ce774d39d09285b | [compiler] Show logged errors in playground (#33740)
In playground it's helpful to show all errors, even those that don't
completely abort compilation. For example, to help demonstrate that the
compiler catches things like setState in effects. This detects these
errors and ensures we show them. | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -44,6 +44,7 @@ import {\n PrintedCompilerPipelineValue,\n } from './Output';\n import {transformFromAstSync} from '@babel/core';\n+import {LoggerEvent} from 'babel-plugin-react-compiler/dist/Entrypoint';\n \n function pars... | 2025-07-09T16:22:49 |
vercel/next.js | a4f8b179e125265af9b79e28c8bf5e7322e66fdd | 1c73ca5a58e3ec8ab6f1b908f2819245a6147469 | Include `AggregateError.errors` in terminal output (#88999)
Co-authored-by: bencmbrook <7354176+bencmbrook@users.noreply.github.com>
Co-authored-by: Cursor Agent <cursoragent@cursor.com> | [
{
"path": "packages/next/src/server/patch-error-inspect.ts",
"patch": "@@ -451,13 +451,16 @@ function sourceMapError(\n error: Error,\n inspectOptions: util.InspectOptions\n ): Error {\n+ // Setting an undefined `cause` would print `[cause]: undefined`\n+ const options = error.cause !== undefined ? { ... | 2026-02-08T23:18:03 |
nodejs/node | 4bfa387f6dc8976833f45dd8e41b130b508ad88a | 5cf3c3e24c7257a0c6192ed8ef71efec8ddac22b | lib: fix constructor in _errnoException stack tree
Fixes the constructor name in the stack tree for _errnoException.
PR-URL: https://github.com/nodejs/node/pull/60156
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "lib/util.js",
"patch": "@@ -339,7 +339,7 @@ function _errnoException(...args) {\n Error.stackTraceLimit = 0;\n const e = new ErrnoException(...args);\n Error.stackTraceLimit = limit;\n- ErrorCaptureStackTrace(e, _exceptionWithHostPort);\n+ ErrorCaptureStackTrace(e, _errnoExcepti... | 2025-10-13T14:25:09 |
electron/electron | 03aad284126a1ae5714c7802a0d307baa8dc8414 | 25e2459f315510f84932726fba38499f0967e7de | chore: bump chromium to 140.0.7327.0 (main) (#47902)
* chore: bump chromium in DEPS to 140.0.7324.0
* chore: bump chromium in DEPS to 140.0.7325.0
* chore: remove @dsanders11's unused include patch
CL: https://chromium-review.googlesource.com/c/chromium/src/+/6782507
* fix: apply keychain patch to new apple subdir
... | [
{
"path": "BUILD.gn",
"patch": "@@ -452,7 +452,7 @@ source_set(\"electron_lib\") {\n \"//components/certificate_transparency\",\n \"//components/compose:buildflags\",\n \"//components/embedder_support:user_agent\",\n- \"//components/input:input\",\n+ \"//components/input\",\n \"//compo... | 2025-07-31T22:11:00 |
facebook/react | 60b5271a9ad0e9eec2489b999ce774d39d09285b | 033edca72199f5b0dac87e4662b6a4d32a9610ce | [Flight] Call finishHaltedTask on sync aborted tasks in stream abort listeners (#33743)
This is the same as we do for currently rendering tasks. They get
effectively sync aborted when the listener is invoked.
We potentially miss out on some debug info in that case but that would
only apply to any entries inside the s... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -1079,8 +1079,9 @@ function serializeReadableStream(\n signal.removeEventListener('abort', abortStream);\n const reason = signal.reason;\n if (enableHalt && request.type === PRERENDER) {\n- haltTask(streamTask, request... | 2025-07-09T14:43:56 |
vercel/next.js | 7c9be45a48ea58a2ddbe37c2840142dd79cc7b3a | 9ce7250725df2344f59d391b70f9110f7329f9d8 | [Turbopack] Include CSS URL attributes, including Layer, Media and Supports (#89300)
Note that this is my first contribution in Rust, so let me know if I
missed anything idiomatic or if there is a particularly better way to do
something.
Also, I did not use AI to create this at all, although I did chat a bit
to try t... | [
{
"path": "test/e2e/app-dir/app-css/app/externalLayer/external-layer.css",
"patch": "@@ -0,0 +1,11 @@\n+@import url('https://cdn.jsdelivr.net/npm/modern-css-reset/dist/reset.min.css')\n+layer(default);\n+/* Any external stylesheet should work. Using this css-reset because it is very small and backed by CDN ... | 2026-02-08T17:55:32 |
nodejs/node | 822a8c3244ecabbb2065869214b6ec2c12a70a69 | 985e2fb3834d39db167592bbcefac994abee87af | perf_hooks: fix stack overflow error
PR-URL: https://github.com/nodejs/node/pull/60084
Fixes: https://github.com/nodejs/node/issues/54768
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/internal/per_context/primordials.js",
"patch": "@@ -270,6 +270,8 @@ const {\n Array: ArrayConstructor,\n ArrayPrototypeForEach,\n ArrayPrototypeMap,\n+ ArrayPrototypePushApply,\n+ ArrayPrototypeSlice,\n FinalizationRegistry,\n FunctionPrototypeCall,\n Map,\n@@ -720,5 +722,26 @@ ... | 2025-10-13T08:05:45 |
golang/go | ca8effbde150257847f90de220686786aa091f90 | 0b06b68e21a3fbc75b3dd87c644da94828483a36 | internal/coverage/decodemeta: correct wording in unknown version error
Correct the wording in the error message returned by readFileHeader when
encountering a meta-data file with an unsupported version.
Change-Id: I49be1bb1509ccc64e8384103bd7f19382b536c26
GitHub-Last-Rev: 2ab8e05a21443c45635e42d788946bec2478ca99
GitH... | [
{
"path": "src/internal/coverage/decodemeta/decodefile.go",
"patch": "@@ -75,7 +75,7 @@ func (r *CoverageMetaFileReader) readFileHeader() error {\n \t// Vet the version. If this is a meta-data file from the future,\n \t// we won't be able to read it.\n \tif r.hdr.Version > coverage.MetaFileVersion {\n-\t\tr... | 2025-12-24T17:39:35 |
electron/electron | 9f43503b3e0a405d071f2a3d297fd5327bda77b1 | ecb1eb0b5d7044cc9f0636c9586faa327a45cd09 | chore: revert "ci: fixup mac runners" (#47917)
This reverts commit 06d7a51a586fda203db91e21963c8fe15fb368d3. | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -6,8 +6,6 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n- echo \"Disk usage before cleanup:\"\n- df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -75,5 +73,4 @@ ru... | 2025-07-31T15:08:43 |
facebook/react | e6dc25daea3d949fa5eae3bdffb8b6b79e30fc82 | 150f022444466266bc09302b8fd47c3e4ce4d791 | [Flight] Always defer Promise values if they're not already resolved (#33742)
If we have the ability to lazy load Promise values, i.e. if we have a
debug channel, then we should always use it for Promises that aren't
already resolved and instrumented.
There's little downside to this since they're async anyway.
This ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -2048,6 +2048,18 @@ function parseModelString(\n if (value.length > 2) {\n const debugChannel = response._debugChannel;\n if (debugChannel) {\n+ if (value[2] === '@') {\n+ /... | 2025-07-09T13:08:27 |
nodejs/node | 2216a3b1d58953e564817b88eb2fbff506c5a192 | 3ac88a7a66e64a1696fbeb5d7af97a7a61ab1868 | deps: V8: cherry-pick 1e190bbb0396
Original commit message:
[segmented-table] Disable segments pool if pages can be too large
The segments pool can only be used if we have 16Kb allocation
granularity. On OSs where the page size can be configured larger we have
to disable it, since it is currently not... | [
{
"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-10-12T18:39:19 |
vercel/next.js | e20f127a1f30d7fb7caadad9101074a355a44fea | 355d4484e5d7d923c8508695d9d14d11e812ebaf | Fix missing non-deferred turbopack build items (#89616)
This expands test suite for deferred entries experimental handling and
fixes missing handling for metadata routes and route handlers when
building the non-deferred entries. | [
{
"path": "packages/next/src/build/turbopack-build/impl.ts",
"patch": "@@ -2,6 +2,11 @@\n import { saveCpuProfile } from '../../server/lib/cpu-profile'\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib/turbopack-warning'\n+import { isMetadataRouteFile } from '../../lib/metadata/... | 2026-02-07T05:24:51 |
facebook/react | 3a43e72d665af98b62d9c3c54bd288597dd27e6e | 8ba3501cd9c982676fab35f1c8092302060d728c | [Flight] Create a fast path parseStackTrace which skips generating a string stack (#33735)
When we know that the object that we pass in is immediately parsed, then
we know it couldn't have been reified into a unstructured stack yet. In
this path we assume that we'll trigger `Error.prepareStackTrace`.
Since we know th... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -94,6 +94,7 @@ import {\n getCurrentAsyncSequence,\n getAsyncSequenceFromPromise,\n parseStackTrace,\n+ parseStackTracePrivate,\n supportsComponentStorage,\n componentStorage,\n unbadgeConsole,\n@@ -316,7 +317,7 @@ functio... | 2025-07-09T13:06:55 |
golang/go | 9cb3edbfe9eb68113453cdaa436db31d28577ab8 | b3ed0627ce2476d438711e8fceafb39f3bd14b4e | regexp: standardize error message format in find_test.go
This change updates the test error messages in find_test.go to follow
the Go standard 'got, want' format.
It also replaces 'expected/should be' terminology with the project's
preferred style and improves the clarity of failure logs by using %q
to quote string v... | [
{
"path": "src/regexp/find_test.go",
"patch": "@@ -159,23 +159,23 @@ func TestFind(t *testing.T) {\n \tfor _, test := range findTests {\n \t\tre := MustCompile(test.pat)\n \t\tif re.String() != test.pat {\n-\t\t\tt.Errorf(\"String() = `%s`; should be `%s`\", re.String(), test.pat)\n+\t\t\tt.Errorf(\"re.Stri... | 2025-12-26T17:13:09 |
electron/electron | 4c9ab8765b14b76b0d7dab7ec9d936c06f538f88 | 051f78dd1dbe5f54bc933e3e0119fbb6bdafa8b5 | fix: dark mode on Linux default themeing (#47869) | [
{
"path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc",
"patch": "@@ -26,6 +26,7 @@\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n #include \"ui/platform_window/platform_window.h\"\n+#include \"ui/platform_window/platform_window_init_properties.h\"\n #i... | 2025-07-31T08:54:55 |
nodejs/node | 1986ee4b659d08c6c05aaea612da23257954bbd5 | d54e6aec9ee4a45aab148bbb6ba825f67c38ec6f | vm: hint module identifier in instantiate errors
PR-URL: https://github.com/nodejs/node/pull/60199
Fixes: https://github.com/nodejs/node/issues/60157
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Ann... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -144,12 +144,12 @@ ModuleWrap::ModuleWrap(Realm* realm,\n Local<Object> context_object,\n Local<Value> synthetic_evaluation_step)\n : BaseObject(realm, object),\n+ url_(Utf8Value(realm->isolate(), url).ToStri... | 2025-10-12T14:28:56 |
vercel/next.js | 355d4484e5d7d923c8508695d9d14d11e812ebaf | 7cd9c7071ea92d599b7415d0d1c195a17a2407f0 | fix: deprecated util._extend (#89614)
### What?
Fix deprecated warning: "Use Object.assign instead of deprecated
util._extend" from http-proxy (which hasn't been updated for 5 years)
### Why?
### How?
Fixes #74460
In favour of https://github.com/vercel/next.js/pull/81544 (which didn't
use a patch, but manually upd... | [
{
"path": "package.json",
"patch": "@@ -158,7 +158,7 @@\n \"@types/fs-extra\": \"8.1.0\",\n \"@types/glob\": \"7.1.1\",\n \"@types/html-validator\": \"5.0.3\",\n- \"@types/http-proxy\": \"1.17.3\",\n+ \"@types/http-proxy\": \"1.17.17\",\n \"@types/jest\": \"29.5.5\",\n \"@types/nod... | 2026-02-06T23:45:46 |
golang/go | b3ed0627ce2476d438711e8fceafb39f3bd14b4e | 3dcb48d2982e064ac8b5be01fe6847133fe56b88 | tests: improve consistency and clarity of test diagnostics
Minor updates to test diagnostics for consistency and readability:
- Corrected an incorrect identifier
- Standardized float formatting
No behavior changes.
Change-Id: I3d3633a7cc487209341ea92101f8c67848212080
GitHub-Last-Rev: b2822e846a91ce2563445f90f8d57686... | [
{
"path": "test/cmplxdivide.go",
"patch": "@@ -35,7 +35,7 @@ func main() {\n \t\t\t\tfmt.Printf(\"BUG\\n\")\n \t\t\t\tbad = true\n \t\t\t}\n-\t\t\tfmt.Printf(\"%v/%v: expected %v error; got %v\\n\", t.f, t.g, t.out, x)\n+\t\t\tfmt.Printf(\"%v/%v: got %v, want %v\\n\", t.f, t.g, x, t.out)\n \t\t}\n \t}\n \ti... | 2025-12-29T19:39:04 |
facebook/react | d35fef9e21100463b0bfecb975e9d9eca45c963f | a7a116577daf3b135c226ed9db8a8c2f9166c023 | [compiler] Fix for consecutive DCE'd branches with phis (#33725)
This is an optimized version of @asmjmp0's fix in
https://github.com/facebook/react/pull/31940. When we merge consecutive
blocks we need to take care to rewrite later phis whose operands will
now be different blocks due to merging. Rather than iterate al... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/MergeConsecutiveBlocks.ts",
"patch": "@@ -107,6 +107,17 @@ export function mergeConsecutiveBlocks(fn: HIRFunction): void {\n merged.merge(block.id, predecessorId);\n fn.body.blocks.delete(block.id);\n }\n+ for (const [, block] of fn... | 2025-07-08T23:36:47 |
electron/electron | 06d7a51a586fda203db91e21963c8fe15fb368d3 | 2255bb620ae037f3eb641d79a7436d4e6facf435 | ci: fixup mac runners (#47877)
ci: make sure camera and bluetooth are available on macos
ci: turn off spotlight indexing | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru... | 2025-07-28T17:37:05 |
nodejs/node | a1b73fe430d1110ecdf31eaf3fecc1bf9e58ddb8 | a2f088d516efc7811e83e526f528c519fc634118 | deps: V8: cherry-pick 2abc61361dd4
Original commit message:
Fix scratch registers passed to mtvsrdd
`ra` cannot be r0 as it will be interpreted as Operand(0)
Change-Id: Idce58191f9d3578dc91dc4aa3872a0bf2939d8b3
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6936113
Commit-Queue:... | [
{
"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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2025-10-11T14:16:36 |
vercel/next.js | 522de8c34fbf8070ab4c0deb90b716f0ceb6f8e4 | 5ea38767d231c741f83cdadfbe317b9d84d9209b | Fix deployment id header when proxying (#89593)
When proxying through multiple projects, this header would get overwritten by the proxy project:
- the header would be the proxy's deployment id
- `process.env.NEXT_DEPLOYMENT_ID` would be the origin's deployment id
Needs https://github.com/vercel/vercel/pull/14903 | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -30,6 +30,7 @@ import type {\n ManifestRewriteRoute,\n FunctionsConfigManifest,\n DynamicPrerenderManifestRoute,\n+ ManifestHeaderRoute,\n } from '..'\n \n import {\n@@ -1977,6 +1978,19 @@ export async function handleBuildCom... | 2026-02-06T19:34:25 |
facebook/react | 777264b4ef52797f63d0ed3e9e21b66b7ae6780e | befc1246b07a04b401bc6e914b7f336a442dca1a | [Flight] Fix stack getting object limited (#33733)
Because the object limit is unfortunately depth first due to limitations
of JSON stringify, we need to ensure that things we really don't want
outlined are first in the enumeration order.
We add the stack length to the object limit to ensure that the stack
frames are... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -4072,10 +4072,6 @@ function emitIOInfoChunk(\n start: relativeStartTimestamp,\n end: relativeEndTimestamp,\n };\n- if (value !== undefined) {\n- // $FlowFixMe[cannot-write]\n- debugIOInfo.value = value;\n- }\n if (... | 2025-07-08T16:54:29 |
golang/go | f7b7e94b0a2798bab26e9906df823a0fe5bcddfd | e790d5967424b4230978f63d16ecc5033269dd02 | test: clarify log message for surrogate UTF-8 check
The current log message "does not error" is slightly ambiguous.
This change clarifies the output.
Change-Id: I5c2327b9fa3d3e28ce43ce1189f8b1b7663fe0d3
GitHub-Last-Rev: bb2b03fc909f0bae29ab540776ae1d28165a603a
GitHub-Pull-Request: golang/go#76998
Reviewed-on: https:/... | [
{
"path": "test/stringrange.go",
"patch": "@@ -59,7 +59,7 @@ func main() {\n \n \tfor _, c := range \"a\\xed\\xa0\\x80a\" {\n \t\tif c != 'a' && c != utf8.RuneError {\n-\t\t\tfmt.Printf(\"surrogate UTF-8 does not error: %U\\n\", c)\n+\t\t\tfmt.Printf(\"surrogate UTF-8 does not produce an error: %U\\n\", c)\... | 2025-12-26T14:39:48 |
electron/electron | 084c6ef549742e15375c711a9aabc20a59d970e2 | 01faaa30eaef04d1da951a29e9f86fdfbed036b1 | refactor: prefer `GetCreationContextChecked(v8::Isolate*)` over `GetCreationContextChecked()` (#47878)
* refactor: pass an isolate when calling GetCreationContextChecked() in V8FunctionInvoker
* refactor: pass an isolate when calling GetCreationContextChecked() in RendererClientBase
* refactor: pass an isolate when ... | [
{
"path": "shell/common/gin_helper/callback.h",
"patch": "@@ -49,7 +49,7 @@ struct V8FunctionInvoker<v8::Local<v8::Value>(ArgTypes...)> {\n if (!function.IsAlive())\n return v8::Null(isolate);\n v8::Local<v8::Function> holder = function.NewHandle(isolate);\n- v8::Local<v8::Context> context ... | 2025-07-25T14:06:57 |
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.