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
1409ac4ffbc168359656dfbf23b923379976e59c
b1ac7e49a464ecc3391f0d9286d69c3a61149a1d
doc: restore @watilde to collaborators Fixes: https://github.com/nodejs/TSC/issues/1813 PR-URL: https://github.com/nodejs/node/pull/61350 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <richard.lau...
[ { "path": "README.md", "patch": "@@ -453,6 +453,8 @@ For information about the governance of the Node.js project, see\n **Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)\n * [VoltrexKeyva](https://github.com/VoltrexKeyva) -\n **Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)\n+...
2026-01-14T11:07:37
electron/electron
ae94cefdba1cac0e311c7ced8f71fcc1d4b74a8c
409c29b12b1ce4d4f9a3ce86327ff378f737ff4f
refactor: add static `ReplyChannel::SendError()` helper (#49338) * refactor: add static void ReplyChannel::SendError() * refactor: use static SendError() instead of instantiating a temporary * refactor: remove non-static version of SendError() * refactor: remove redundant callback-is-non-null checks
[ { "path": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -140,31 +140,25 @@ gin_helper::internal::Event* ElectronApiIPCHandlerImpl::MakeIPCEvent(\n bool internal,\n electron::mojom::ElectronApiIPC::InvokeCallback callback) {\n if (!session) {\n- if (callback) {\n- // We mus...
2026-01-12T23:02:58
facebook/react
e2ba45bb39bd744454ee599bdc2df497c79d9707
886b3d36d7994259df2c3ab1983f425a4b718615
[DevTools] fix: keep search query in a local sync state (#34423) When the search query changes, we kick off a transition that updates the search query in a reducer for TreeContext. The search input is also using this value for an `input` HTML element. For a larger applications, sometimes there is a noticeable delay i...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/ComponentSearchInput.js", "patch": "@@ -8,22 +8,34 @@\n */\n \n import * as React from 'react';\n-import {useContext} from 'react';\n-import {TreeDispatcherContext, TreeStateContext} from './TreeContext';\n+import {useState, useContext...
2025-09-10T17:38:47
rust-lang/rust
76e7fb9dd51392c9edfa6fc9e5dc76a2d85cf488
c9878352c8b6b8bd284d798efbfc07ab0b12fcf9
fix: Support filesystems that don't send Create events On some filesystems, particularly FUSE on Linux, we don't get Create(...) events. We do get Access(Open(Any)) events, so handle those consistently with create/modify/remove events. This fixes missed file notifications when using Sapling SCM with EdenFS, although ...
[ { "path": "src/tools/rust-analyzer/crates/vfs-notify/src/lib.rs", "patch": "@@ -14,7 +14,7 @@ use std::{\n };\n \n use crossbeam_channel::{Receiver, Sender, select, unbounded};\n-use notify::{Config, EventKind, RecommendedWatcher, RecursiveMode, Watcher};\n+use notify::{Config, EventKind, RecommendedWatcher...
2026-03-19T13:27:25
golang/go
4e693d1ec52c86b262ac23f0d6cee6b60fef4fb0
9697bd96bcc98cbe201d0f57033d9f2dab66b9f6
go/token: add File.String method It returns a brief, unspecified, human-readable description of the File. + test, doc, relnote Fixes #76285 Change-Id: I8b0705cf20eaac095bc9dfba7f1181774544f02c Reviewed-on: https://go-review.googlesource.com/c/go/+/743280 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/76285.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) String() string #76285", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/76285.md", "patch": "@@ -0,0 +1 @@\n+[File] now has a String meth...
2026-02-09T15:33:22
nodejs/node
b1ac7e49a464ecc3391f0d9286d69c3a61149a1d
d4cc54b8c8efad7c329ad56f75dc190279bccf5d
doc: fix v25 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V25.md", "patch": "@@ -52,18 +52,12 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/750>\n- permission:\n * (CVE-2026-21636) add...
2026-01-13T14:55:04
facebook/react
a34c5dff159a5b546a5b24a93e11102713a7d0ec
3bf8ab430eb2182e787e0f1c74c0d9ccab89e4ac
Ignore generic InvalidStateError in View Transitions (#34450) Fixes #34098. There's an issue in Chrome where the `InvalidStateError` always has the same error message. The spec doesn't specify the error message to use but it's more useful to have a specific one for each case like Safari does. One reason it's better ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2046,24 +2046,17 @@ function customizeViewTransitionError(\n error.message ===\n 'Skipping view transition because document visibility state has become hidden.' ||\n error.message ===\n- ...
2025-09-10T13:07:11
rust-lang/rust
f28056fd009f3566af8d71aeb5973e5c22c129da
96f289b6a619c8c3d32b239d9374af12a75b6ec2
fix: Use the correct project root when there are multiple workspaces Previously, Config::root_path() would always return the LSP rootUri of the first workspace folder. This can cause issues when the user has multiple workspaces open in their editor, especially if the first one in the list isn't a Rust project. This w...
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/config.rs", "patch": "@@ -1070,6 +1070,7 @@ struct ClientInfo {\n version: Option<Version>,\n }\n \n+/// The configuration of this rust-analyzer instance.\n #[derive(Clone)]\n pub struct Config {\n /// Projects that have a Cargo.toml or a r...
2026-02-19T14:17:31
electron/electron
cf2e283332657ee4ec103263deb92f67108882e1
d6a6312fc8f31901e4a93cc0934ac65880db1b52
fix: clang-tidy warnings, pt. 1 (#49083) * fix: google-readability-casting warning about the uint32_t cast * fix: modernize-use-equals-default warnings * fix: readability-redundant-member-init warning * fix: modernize-make-unique warnings * fix: modernize-use-emplace warning: use emplace_back instead of push_back...
[ { "path": "shell/browser/api/electron_api_global_shortcut.cc", "patch": "@@ -52,7 +52,7 @@ namespace electron::api {\n gin::DeprecatedWrapperInfo GlobalShortcut::kWrapperInfo = {\n gin::kEmbedderNativeGin};\n \n-GlobalShortcut::GlobalShortcut() {}\n+GlobalShortcut::GlobalShortcut() = default;\n \n Globa...
2026-01-10T06:57:38
golang/go
6435bf46c17dccb2eb5f7bab7dd8aa4972252b21
439a82ad25e9549d0cc330075ae160f7a9ba69f8
cmd/compile: pointer-shaped types are SSAable even if lots of 0-sized fields Normally we don't SSA-ify variables with types that have more than 4 fields. But we really do want to SSA-ify them if they are pointer shaped. An odd case, but the compiler shouldn't barf on them. Failure probably started with CL 714421. F...
[ { "path": "src/cmd/compile/internal/ssa/decompose.go", "patch": "@@ -363,20 +363,20 @@ func decomposeUserPhi(v *Value) {\n func decomposeStructPhi(v *Value) {\n \tt := v.Type\n \tn := t.NumFields()\n-\tvar fields [MaxStruct]*Value\n+\tfields := make([]*Value, 0, MaxStruct)\n \tfor i := 0; i < n; i++ {\n-\t\...
2026-02-11T01:44:08
nodejs/node
d4cc54b8c8efad7c329ad56f75dc190279bccf5d
659fd01b3ebb101a692c8e9a795c9d46397e4ea0
doc: fix v24 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V24.md", "patch": "@@ -68,17 +68,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797>\n * (CVE-2025-55132) disable futimes whe...
2026-01-13T14:54:43
facebook/react
3bf8ab430eb2182e787e0f1c74c0d9ccab89e4ac
acada3035fe2a0dacfafc0ad78914e77d11fb823
Add missing Activity export to development mode (#34439) This is exported in the prod version of ReactServer experimental but not the development version so we can't use it in fixtures from Server Components.
[ { "path": "packages/react/src/ReactServer.experimental.development.js", "patch": "@@ -17,6 +17,7 @@ import {\n REACT_SUSPENSE_TYPE,\n REACT_SUSPENSE_LIST_TYPE,\n REACT_VIEW_TRANSITION_TYPE,\n+ REACT_ACTIVITY_TYPE,\n } from 'shared/ReactSymbols';\n import {\n cloneElement,\n@@ -82,5 +83,6 @@ export ...
2025-09-10T01:30:37
rust-lang/rust
2dea90f91ee265ed0d923cdb834fa9abb09bc3e4
96f289b6a619c8c3d32b239d9374af12a75b6ec2
fix: Set VS Code extension kind explicitly The VS Code extension needs to be a `workspace` extension, because it relies on access to the workspace. The rust-analyzer binary needs to run on the same machine as the checkout of the code it's working on. https://code.visualstudio.com/api/advanced-topics/remote-extensions...
[ { "path": "src/tools/rust-analyzer/editors/code/package.json", "patch": "@@ -31,6 +31,9 @@\n \"vscode\": \"^1.93.0\"\n },\n \"enabledApiProposals\": [],\n+ \"extensionKind\": [\n+ \"workspace\"\n+ ],\n \"scripts\": {\n \"vscode:prepublish\": \"npm run build-base -- -...
2026-03-31T17:19:26
electron/electron
95f097a392dbdfd7c0e38a7d55bf14dad92de1fd
b38075551489bfb496f2a0df90154240399219d7
fix: provide explicit cookie encryption provider for cookie encryption (#49348) fix: provide explicit cookie encryption provider Fixes 6996667: Reland "Port net::CookieCryptoDelegate to os_crypt async" | https://chromium-review.googlesource.com/c/chromium/src/+/6996667
[ { "path": "shell/browser/net/network_context_service.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"net/http/http_util.h\"\n #include \"net/net_buildflags.h\"\n #include \"services/network/network_service.h\"\n+#include \"services/network/public/cpp/cookie_encryption_provider_impl.h\"\n #include \"services/n...
2026-01-09T19:53:58
nodejs/node
659fd01b3ebb101a692c8e9a795c9d46397e4ea0
6c96a63891044e7b23421d675d79cb1e1be647d8
doc: fix v22 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V22.md", "patch": "@@ -79,17 +79,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-59465) add TLSSocket default error handler\n * (CVE-2025-55132) disable futimes when permission model is enabled\n- lib,permission:\n * (CVE-2025-55130)...
2026-01-13T14:54:21
electron/electron
3985daa81c4da5b29c8a7fb8cc52144afc7f999d
5901d8a6d8bf019bf8b535cb8ffe18860bdf3ad3
chore: improvements to script/run-clang-tidy.ts (#49335) * chore: disable color output for clang-tidy in CI * chore: small QoL improvements to run-clang-tidy.ts * chore: add --fix option to script/run-clang-tidy.ts
[ { "path": "script/run-clang-tidy.ts", "patch": "@@ -114,11 +114,14 @@ async function runClangTidy (\n outDir: string,\n filenames: string[],\n checks: string = '',\n- jobs: number = 1\n+ jobs: number = 1,\n+ fix: boolean = false\n ): Promise<boolean> {\n const cmd = path.resolve(LLVM_BIN, 'clang-...
2026-01-09T06:05:44
facebook/react
acada3035fe2a0dacfafc0ad78914e77d11fb823
969a9790ad58cc27eea63df9e5cf992b66bf1fd5
[compiler] Fix false positive hook return mutation error (#34424) This was fun. We previously added the MaybeAlias effect in #33984 in order to describe the semantic that an unknown function call _may_ alias its return value in its result, but that we don't know this for sure. We record mutations through MaybeAlias ed...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -748,10 +748,14 @@ function applyEffect(\n case 'Alias':\n case 'Capture': {\n CompilerError.invariant(\n- effect.kind === 'Capture' || initialized.has(effect.into.ident...
2025-09-09T21:07:47
vercel/next.js
ea56922a398e4dc682c0a3aeddaeefa42c747f12
82db94494ad41bec61b97ff7a95a6707745a3434
turbo-persistence: add CRC32 block checksums (#90754) ### What? Add a 4-byte CRC32 checksum to every block in turbo-persistence SST files. ### Why? Detect on-disk cache corruption early with a clear error message, rather than silently returning wrong data or hitting confusing LZ4 decompression failures. ### How? ...
[ { "path": "Cargo.lock", "patch": "@@ -9431,6 +9431,7 @@ dependencies = [\n \"bitfield\",\n \"byteorder\",\n \"codspeed-criterion-compat\",\n+ \"crc32fast\",\n \"dashmap 6.1.0\",\n \"either\",\n \"jiff\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.to...
2026-03-03T11:00:56
rust-lang/rust
9626ca2e3ad8abf52a2d20f876bd6e9ee376666c
e4fdb554ad2c0270473181438e338c42b5b30b0c
fix pin docs
[ { "path": "library/core/src/pin.rs", "patch": "@@ -740,7 +740,7 @@\n //!\n //! While counter-intuitive, it's often the easier choice: if you do not expose a\n //! <code>[Pin]<[&mut] Field></code>, you do not need to be careful about other code\n-//! moving out of that field, you just have to ensure is that ...
2026-03-31T16:37:33
vercel/next.js
5fa40c806cad62d55da0aa24f9e548eb0392d836
cfd5d5db0f3fc79b17da5b2fedbc732bd3a1ca1f
exempt data URL CSS from Pages Router global CSS restriction (#89901) ### What? Skip the Pages Router global CSS restriction for `data:` URL imports (similar to app router and mixed app/pages router) ### Why? `data:text/css` should work the same no matter if pages router, app router or mixed router usage ### How? ...
[ { "path": "crates/next-api/src/module_graph.rs", "patch": "@@ -846,9 +846,12 @@ async fn validate_pages_css_imports_individual(\n candidates\n .into_iter()\n .map(async |issue| {\n+ let path = issue.module.ident().path().await?;\n // We allow imports of global CSS ...
2026-03-03T10:17:30
rust-lang/rust
f0c7cd28b8d8eb7f9a1bb48df1a0f9c049af5677
13e2abaac846b2680ae93e1b3bd9fe7fe1b9a7fe
build_helper: fix yarn locking, add check, and bump lockfile
[ { "path": "src/build_helper/src/npm.rs", "patch": "@@ -1,7 +1,7 @@\n use std::error::Error;\n use std::path::{Path, PathBuf};\n use std::process::Command;\n-use std::{fs, io};\n+use std::{env, fs, io};\n \n /// Install all the npm deps, and return the path of `node_modules`.\n pub fn install(src_root_path: ...
2026-03-31T14:37:01
electron/electron
a1f0ef80d419e57a7f00defaa43e42a60b95024b
c1a031be83a61d7de116fe4a8d326bd16cb1afc6
chore: bump chromium to 145.0.7616.0 (main) (#49279) * chore: bump chromium in DEPS to 145.0.7605.0 * chore: bump chromium in DEPS to 145.0.7606.0 * chore: bump chromium in DEPS to 145.0.7608.0 * chore: update patches * chore: bump chromium in DEPS to 145.0.7610.0 * chore: update patches * [InputVizard] Fix miss...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7604.0',\n+ '145.0.7616.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2026-01-05T18:34:36
rust-lang/rust
ebf22f83f10e17ec3840b23c799b68ce674d995f
86796ddaa05195537762258dc5b41dbb4f78d604
fix unit test
[ { "path": "tests/ui/asm/x86_64/goto.stderr", "patch": "@@ -22,9 +22,11 @@ warning: value assigned to `value` is never read\n --> $DIR/goto.rs:71:25\n |\n LL | let mut value = false;\n- | ^^^^^\n+ | ^^^^^ this value is reassigned later and neve...
2026-03-31T11:54:28
facebook/react
969a9790ad58cc27eea63df9e5cf992b66bf1fd5
665de2ed283205fccecda649ae2d66f62983f15f
[Flight] Track I/O Entry for the RSC Stream itself (#34425) One thing that can suspend is the downloading of the RSC stream itself. This tracks an I/O entry for each Promise (`SomeChunk<T>`) that represents the request to the RSC stream. As the value we use the `Response` for `createFromFetch` (or the `ReadableStream`...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -21,6 +21,8 @@ import {Note} from './cjs/Note.js';\n \n import {GenerateImage} from './GenerateImage.js';\n \n+import LargeContent from './LargeContent.js';\n+\n import {like, greet, increment} from './actions.js';\n \n import {getServerState} from './Ser...
2025-09-09T20:46:11
nodejs/node
6c96a63891044e7b23421d675d79cb1e1be647d8
903f64796e65324db71ddedee5216a0704f42c1a
doc: fix v20 changelog after security release PR-URL: https://github.com/nodejs/node/pull/61371 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: B...
[ { "path": "doc/changelogs/CHANGELOG_V20.md", "patch": "@@ -89,17 +89,11 @@ This is a security release.\n \n ### Notable Changes\n \n-lib:\n-\n * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/802>\n * (CVE-2025-59465) add TL...
2026-01-13T14:54:02
golang/go
439a82ad25e9549d0cc330075ae160f7a9ba69f8
841fafcd583b37ba316a66fc388f966a5be8de80
cmd/compile: add flag for emitting diagnostics unsorted The prove pass uses warnings with locations that are sorted before they are emitted. When debugging on level 3, this sorting can obscure which log lines happened before each other, obscuring the flow of control. This gets doubly confusing when debugging issues th...
[ { "path": "src/cmd/compile/internal/base/flag.go", "patch": "@@ -78,6 +78,7 @@ type CmdFlags struct {\n \tLowerR CountFlag \"help:\\\"debug generated wrappers\\\"\"\n \tLowerT bool \"help:\\\"enable tracing for debugging the compiler\\\"\"\n \tLowerW CountFlag \"help:\\\"debug type checking\\\"\"\n+...
2026-02-05T13:42:00
vercel/next.js
11823f8471cec98a093fd3af6d4193838da0b667
872c01b5e6f42b725e5626ab5bd5ff42608c2ad8
Add support for multi-valued tables (#89728) ## What Add support for multi-valued tables in `turbo-persistence`. A multi-valued table allows multiple distinct values to be associated with a single key. Each family is independently configured as `SingleValue` (existing behavior) or `MultiValue` via the new `FamilyKin...
[ { "path": "turbopack/crates/turbo-persistence-tools/src/main.rs", "patch": "@@ -3,7 +3,7 @@\n use std::path::PathBuf;\n \n use anyhow::{Context, Result, bail};\n-use turbo_persistence::{MetaFileEntryInfo, SerialScheduler, TurboPersistence};\n+use turbo_persistence::{DbConfig, MetaFileEntryInfo, SerialSchedu...
2026-03-03T09:18:07
electron/electron
c8bb70050987d1b3d1c8b5b4243f237153851932
46922de638b3b964687ea4b22a5fc7a36b659af6
build: fixup release notes generation (#49302)
[ { "path": "script/release/notes/notes.ts", "patch": "@@ -109,7 +109,8 @@ const runGit = async (dir: string, args: string[]) => {\n const response = spawnSync('git', args, {\n cwd: dir,\n encoding: 'utf8',\n- stdio: ['inherit', 'pipe', 'pipe']\n+ stdio: ['inherit', 'pipe', 'pipe'],\n+ maxB...
2026-01-05T16:11:40
golang/go
841fafcd583b37ba316a66fc388f966a5be8de80
34b9742c817d1c689f09af71364f52711524cc09
runtime/secret: run crash tests under memory validating modes The crashing test for runtime/secret does not run afoul of the memory validators like the standard tests does. Pass through to the crashing binary to shake out as many problems as possible. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-asan-clang15...
[ { "path": "src/runtime/secret/crash_test.go", "patch": "@@ -10,6 +10,9 @@ import (\n \t\"bytes\"\n \t\"debug/elf\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n@@ -120,7 +123,18 @@ func TestCore(t *testing.T) {\n \t\tt.Fatalf(\...
2025-12-01T15:13:08
vercel/next.js
872c01b5e6f42b725e5626ab5bd5ff42608c2ad8
420b72b697ca22bc5d2b81e45bc616393571d1b7
Create next app CLI docs (#90788) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Do...
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -39,7 +39,7 @@ cd my-app\n bun dev\n ```\n \n-- `--yes` skips prompts using saved preferences or defaults. The default setup enables TypeScript, Tailwind, ESLint, App Router, and Turbopack, with import alias `@/*`.\n+- `--yes` skip...
2026-03-03T08:54:10
facebook/react
665de2ed283205fccecda649ae2d66f62983f15f
eda778b8ae1698fec5fc84ca2530727df8b557b5
[compiler] Improve name hints for outlined functions (#34434) The previous PR added name hints for anonymous functions, but didn't handle the case of outlined functions. Here we do some cleanup around function `id` and name hints: * Make `HIRFunction.id` a ValidatedIdentifierName, which involved some cleanup of the va...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -325,6 +325,15 @@ function runWithEnvironment(\n outlineJSX(hir);\n }\n \n+ if (env.config.enableNameAnonymousFunctions) {\n+ nameAnonymousFunctions(hir);\n+ log({\n+ kind: 'hir',\n+ nam...
2025-09-09T19:14:09
nodejs/node
903f64796e65324db71ddedee5216a0704f42c1a
abfad122f808073fa325bcd61796b62bd0693c5a
cluster: fix port reuse between cluster Fixes: https://github.com/nodejs/node/issues/60086 PR-URL: https://github.com/nodejs/node/pull/60141 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/internal/cluster/primary.js", "patch": "@@ -271,8 +271,12 @@ function queryServer(worker, message) {\n return;\n \n const key = `${message.address}:${message.port}:${message.addressType}:` +\n- `${message.fd}:${message.index}`;\n- let handle = handles.get(key);\n+ ...
2026-01-14T10:39:15
electron/electron
46922de638b3b964687ea4b22a5fc7a36b659af6
75ea93a2796a6502669f77ab0f5f0efd11733f7b
fix: drag regions in child windows (#49231) * fix: drag regions in child windows * Update comments
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -760,6 +760,10 @@ WebContents::WebContents(v8::Isolate* isolate,\n script_executor_ = std::make_unique<extensions::ScriptExecutor>(web_contents);\n #endif\n \n+ // TODO: This works for main frames, but does not work for child frames...
2026-01-05T15:34:01
golang/go
34b9742c817d1c689f09af71364f52711524cc09
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
net: convert wildcard address to local on freebsd Starting in FreeBSD 15, connecting to INADDR_ANY no longer works as an alias for localhost. From the release notes [1]: "Making a connection to INADDR_ANY, i.e., using it as an alias for localhost, is now disabled by default. This functionality can be re-enabled by se...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -158,7 +158,7 @@ func favoriteAddrFamily(network string, laddr, raddr sockaddr, mode string) (fam\n \n func internetSocket(ctx context.Context, net string, laddr, raddr sockaddr, sotype, proto int, mode string, ctrlCtxFn func(context.Context, string, string,...
2026-02-19T15:43:45
facebook/react
eda778b8ae1698fec5fc84ca2530727df8b557b5
1836b46fffa9a67be3840ff385f6fd1a1f8db045
[compiler] Fix false positive memo validation (alternative) (#34319) Alternative to #34276 --- (Summary taken from @josephsavona 's #34276) Partial fix for #34262. Consider this example: ```js function useInputValue(input) { const object = React.useMemo(() => { const {value} = transform(input); return {val...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -18,7 +18,6 @@ import {\n IdentifierId,\n InstructionValue,\n ManualMemoDependency,\n- Place,\n PrunedReactiveScopeBlock,\n ReactiveFunction,\n ReactiveInstruction,\n@@ -...
2025-09-09T18:26:52
vercel/next.js
420b72b697ca22bc5d2b81e45bc616393571d1b7
c3165ca583c4c0b3c964ff03d7e70f8b76417898
Update Rust dependencies for turbo-persistence and turbo-tasks-backend (#90774) ### What? Updates outdated Rust dependencies used by `turbo-persistence` and `turbo-tasks-backend` crates. ### Why? Keep dependencies current to benefit from bug fixes, performance improvements, and security patches. ### How? Each dep...
[ { "path": "Cargo.lock", "patch": "@@ -268,9 +268,12 @@ dependencies = [\n \n [[package]]\n name = \"arc-swap\"\n-version = \"1.7.1\"\n+version = \"1.8.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457\"\n+...
2026-03-03T08:49:20
nodejs/node
daeafc06f96a640d675bf10dee96e152803ecb88
3cdb1cd437f63dd256ae2ab3b7e9016257326cb4
src: use node- prefix on thread names PR-URL: https://github.com/nodejs/node/pull/61307 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: C...
[ { "path": "src/node.cc", "patch": "@@ -1234,7 +1234,7 @@ InitializeOncePerProcessInternal(const std::vector<std::string>& args,\n }\n \n if (!(flags & ProcessInitializationFlags::kNoInitializeNodeV8Platform)) {\n- uv_thread_setname(\"MainThread\");\n+ uv_thread_setname(\"node-MainThread\");\n ...
2026-01-06T15:49:25
facebook/react
1836b46fffa9a67be3840ff385f6fd1a1f8db045
eec50b17b38ac7c051804acfe46afabef9933ff4
[compiler] Have react-compiler eslint plugin return a RuleModule (#34421) Eslint is expecting a map of [string] => RuleModule. Before we were passing {rule: RuleModule, severity: ErrorSeverity} which was breaking legacy Eslint configurations
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/index.ts", "patch": "@@ -34,4 +34,8 @@ const configs = {\n },\n };\n \n-export {configs, allRules as rules, meta};\n+const rules = Object.fromEntries(\n+ Object.entries(allRules).map(([name, {rule}]) => [name, rule]),\n+);\n+\n+export {configs...
2025-09-09T18:18:37
vercel/next.js
bbb72bf2584cebe5c38f5494b0ecd3a56b0b0a44
410c65808aca79def4cd087b765e30b2e1aa1220
enable server action RDC deploy test (#90796) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### ...
[ { "path": "test/e2e/app-dir/resume-data-cache/resume-data-cache.test.ts", "patch": "@@ -3,7 +3,7 @@ import { retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/utils/cache-busting-search-param'\n \n describe('resume-data-cache', () => {\n- const { n...
2026-03-03T02:28:43
nodejs/node
97595f768e94d3d2da685dc0e5366016b146d2b7
1d2686d15e788218be35e1cb26dfbb551d8366e3
tls: route callback exceptions through error handlers Wrap pskCallback and ALPNCallback invocations in try-catch blocks to route exceptions through owner.destroy() instead of letting them become uncaught exceptions. This prevents remote attackers from crashing TLS servers or causing resource exhaustion. Fixes: https:...
[ { "path": "lib/internal/tls/wrap.js", "patch": "@@ -234,39 +234,44 @@ function callALPNCallback(protocolsBuffer) {\n const handle = this;\n const socket = handle[owner_symbol];\n \n- const servername = handle.getServername();\n+ try {\n+ const servername = handle.getServername();\n \n- // Collect ...
2025-12-22T17:25:33
golang/go
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
f3755d9eba1147eb2cc3257689764f0cd8aac77b
mime: make TypeByExtension follow Chrome+Firefox's precedence for webm->video and weba->audio This CL updates TypeByExtension to correctly follow the precedence rules that Chrome and Firefox use, whereby "webm" maps to "video/webm" and "weba" maps to "audio/webm" per: https://chromium.googlesource.com/chromium/src.gi...
[ { "path": "src/mime/type.go", "patch": "@@ -115,7 +115,8 @@ var builtinTypesLower = map[string]string{\n \t\".vtt\": \"text/vtt; charset=utf-8\",\n \t\".wasm\": \"application/wasm\",\n \t\".wav\": \"audio/wav\",\n-\t\".webm\": \"audio/webm\",\n+\t\".weba\": \"audio/webm\",\n+\t\".webm\": \"video/web...
2026-02-19T22:41:07
electron/electron
809ab09b6f5ede0a9f9b0fcc0e9c33ff971277f2
3df3a6a736b93e0d69fa3b0c403b33f201287780
chore: bump chromium to 145.0.7596.0 (main) (#49224) * chore: bump chromium in DEPS to 145.0.7588.0 * fix(patch-conflict): update scroll_bounce_flag for split overscroll methods Chromium split IsElasticOverscrollEnabled() into two methods: IsElasticOverscrollEnabledOnRoot() and IsElasticOverscrollSupported(). Update...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7577.0',\n+ '145.0.7596.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2025-12-25T23:15:53
facebook/react
eec50b17b38ac7c051804acfe46afabef9933ff4
a9410fb487776339ec68e57a57a570be952ccad0
[Flight] Only use debug component info for parent stacks (#34431)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1794,13 +1794,21 @@ function transferReferencedDebugInfo(\n existingDebugInfo.push.apply(existingDebugInfo, referencedDebugInfo);\n }\n }\n- // We also add it to the initializing chunk since the resolution of that...
2025-09-09T17:58:02
golang/go
839cd82fa53ec481ffcd02e139b3d77c2724892e
06dc5db75d4c2548c0187f34ce79389678be7ca0
cmd/cgo/internal/test: add a test for C calling into Go before init done Test that C code can call back into Go (on a separate thread) before init is done. The callback should wait for the init done. And this should not cause a false race. This corresponds to the runtime fix in CL 746581. Change-Id: I10e6a9d5fe056be...
[ { "path": "src/cmd/cgo/internal/test/cgo_test.go", "patch": "@@ -78,6 +78,7 @@ func TestBoolAlign(t *testing.T) { testBoolAlign(t) }\n func TestCallGoWithString(t *testing.T) { testCallGoWithString(t) }\n func TestCallback(t *testing.T) { testCallback(t) }\n func TestC...
2026-02-18T20:25:22
vercel/next.js
410c65808aca79def4cd087b765e30b2e1aa1220
dd4a97e1f45161f0f8297c681bb53b184b6829df
Add static error when `unstable_instant` is used without `cacheComponents` (#90793) `unstable_instant` requires `cacheComponents` to function — without it, validation is entirely skipped and the config silently does nothing. This adds a compile-time error in the SWC transform that catches the misconfiguration early, m...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -99,6 +99,7 @@ enum RSCErrorKind {\n NextRscErrDeprecatedApi((String, String, Span)),\n NextSsrDynamicFalseNotAllowed(Span),\n NextRscErrIncompatibleRouteSegmentConfig(Span, String, NextConfigProper...
2026-03-03T00:35:56
nodejs/node
73747597e0e2c4ddf2d437b0aee7f2cc1f0cdfef
3296b2e734cc1b329f3c32aee2c7bdeb4ade7cf4
src: rethrow stack overflow exceptions in async_hooks When a stack overflow exception occurs during async_hooks callbacks (which use TryCatchScope::kFatal), detect the specific "Maximum call stack size exceeded" RangeError and re-throw it instead of immediately calling FatalException. This allows user code to catch th...
[ { "path": "src/async_wrap.cc", "patch": "@@ -68,7 +68,8 @@ static const char* const provider_names[] = {\n void AsyncWrap::DestroyAsyncIdsCallback(Environment* env) {\n Local<Function> fn = env->async_hooks_destroy_function();\n \n- TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal);\n+ TryC...
2025-12-09T22:50:18
facebook/react
a9410fb487776339ec68e57a57a570be952ccad0
6b70072c4f21d6762d914adb42007db68f1e00a9
[compiler] Option to infer names for anonymous functions (#34410) Adds a `@enableNameAnonymousFunctions` feature to infer helpful names for anonymous functions within components and hooks. The logic is inspired by a custom Next.js transform, flagged to us by @eps1lon, that does something similar. Implementing this tra...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -103,6 +103,7 @@ import {validateNoFreezingKnownMutableFunctions} from '../Validation/ValidateNoF\n import {inferMutationAliasingEffects} from '../Inference/InferMutationAliasingEffects';\n import {inferMutati...
2025-09-09T17:22:19
electron/electron
3df3a6a736b93e0d69fa3b0c403b33f201287780
7433c14af57fd3a8e00c7cfd7323266d6923962d
fix: `webRequest.onBeforeSendHeaders` not being able to modify reserved headers (#49226) * fix: `webRequest.onBeforeSendHeaders` not being able to modify reserved headers * chore: add unit test for reserved header
[ { "path": "shell/browser/net/proxying_url_loader_factory.cc", "patch": "@@ -55,9 +55,9 @@ ProxyingURLLoaderFactory::InProgressRequest::InProgressRequest(\n proxied_loader_receiver_(this, std::move(loader_receiver)),\n target_client_(std::move(client)),\n current_response_(network::mojom::U...
2025-12-19T10:08:40
golang/go
06dc5db75d4c2548c0187f34ce79389678be7ca0
a8032d4c781f14fa0bd561d96e719492aee08c23
cmd/compile, go/*: move method type parameter checks from parsers to type checkers The parsers (cmd/compile/internal/syntax and go/parser) always accepted type parameters on methods for parser robustness but reported an error. With this change, the parsers accept the type parameters on methods, and then the type chec...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -797,9 +797,9 @@ func (p *parser) funcDeclOrNil() *FuncDecl {\n \tf.pos = p.pos()\n \tf.Pragma = p.takePragma()\n \n-\tvar context string\n+\thasRecv := false\n \tif p.got(_Lparen) {\n-\t\tcontext = \"method\"\n+\t\thasRecv = true\n \t\trcv...
2026-01-23T00:16:17
vercel/next.js
cbb2f90e97f5e3150124a8788a2d877754be07c3
9c17e9e7a822b70fff8ec27a08e48a47ffa17d1f
docs: error component `unstable_retry()` (#89732) Adding docs for https://github.com/vercel/next.js/pull/89685
[ { "path": "docs/01-app/01-getting-started/10-error-handling.mdx", "patch": "@@ -208,10 +208,10 @@ import { useEffect } from 'react'\n \n export default function ErrorPage({\n error,\n- reset,\n+ unstable_retry,\n }: {\n error: Error & { digest?: string }\n- reset: () => void\n+ unstable_retry: () =>...
2026-03-02T16:43:56
nodejs/node
7d421c8f29a48a5fe601329ccaf5c16239b3a2bb
fb4389332dc4d6e48faa5ff17e662a5455ba68ab
lib: add TLSSocket default error handler This prevents the server from crashing due to an unhandled rejection when a TLSSocket connection is abruptly destroyed during initialization and the user has not attached an error handler to the socket. e.g: ```js const server = http2.createSecureServer({ ... }) server.on('sec...
[ { "path": "lib/internal/tls/wrap.js", "patch": "@@ -1252,6 +1252,7 @@ function tlsConnectionListener(rawSocket) {\n socket[kErrorEmitted] = false;\n socket.on('close', onSocketClose);\n socket.on('_tlsError', onSocketTLSError);\n+ socket.on('error', onSocketTLSError);\n }\n \n // AUTHENTICATION MODES...
2025-10-31T19:27:48
facebook/react
8943025358da2e4e615629077b78ce5bd1b1fbb5
3d9d22cbdbfc1df2ec1d2ca00cb824e36af46ab8
[DevTools] Fix handling of host roots on mount (#34400)
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js", "patch": "@@ -228,7 +228,7 @@ describe('commit tree', () => {\n [root]\n ▾ <App>\n <Suspense>\n- [shell]\n+ [suspense-root] rects={null}\n <Suspense name=\"Ap...
2025-09-08T20:53:02
electron/electron
a90ccc753b4d38266323dd054db2b98a45917117
e181fd040f72becd135db1fa977622b81da21643
chore: bump chromium to 145.0.7577.0 (main) (#49175) * chore: bump chromium in DEPS to 145.0.7572.0 * chore: update patches (trivial only) * chore(patch-conflict): feat_filter_out_non-shareable_windows_in_the_current_application_in.patch Polished the edits and formatted the result. No real changes. Ref: https://ch...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '145.0.7568.0',\n+ '145.0.7577.0',\n 'node_version':\n 'v24.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/b...
2025-12-16T17:32:38
golang/go
a8032d4c781f14fa0bd561d96e719492aee08c23
87a956bf8cdf9004108942247af8ae0243c5609a
cmd/link: use bfd ld 2.36+ on linux/arm64 instead of gold The bfd linker has been fixed for a while. In the mean time gold got deprecated and has stopped receiving new features. Add runtime version checking and only use gold, if bfd ld 2.35 and lower is detected. This enables using `-buildmode=shared` on arm64 withou...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -1700,22 +1700,48 @@ func (ctxt *Link) hostlink() {\n \t\t}\n \n \t\tif ctxt.Arch.InFamily(sys.ARM64) && buildcfg.GOOS == \"linux\" {\n-\t\t\t// On ARM64, the GNU linker will fail with\n-\t\t\t// -znocopyreloc if it thinks a COPY relocation is\n-\t\t...
2026-01-29T04:30:42
vercel/next.js
a0d293fc0853204fe0201e02de3b7932aa5d3f00
93d56b5daa071e14376415e2a88231f219f70154
with-docker: add new config file formats (#90731) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ...
[ { "path": "examples/with-docker/.dockerignore", "patch": "@@ -31,15 +31,12 @@ cypress/videos/\n playwright-report/\n test-results/\n .vitest/\n-*.test.ts\n-*.test.tsx\n-*.test.js\n-*.test.jsx\n-*.spec.ts\n-*.spec.tsx\n-*.spec.js\n-*.spec.jsx\n-\n+vitest.config.*\n+jest.config.*\n+cypress.config.*\n+playwrig...
2026-03-02T10:39:03
nodejs/node
6ea77ad552f9f9d8a61c44a82f158213c94b5daf
64022d9fccc9624813a311444e87f2b2985acb22
2026-01-13, Version 25.3.0 (Current) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) https://github.com/nodejs-private/node-private/pull/750 permission: * (CVE-2026-21636) add network check on pipe_wrap connect (RafaelGSS) https://github.com/no...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,7 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.2.1\">25.2.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.3.0\">25.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.2.1\">2...
2026-01-05T18:07:21
facebook/react
3d9d22cbdbfc1df2ec1d2ca00cb824e36af46ab8
d4374b3ae37eb972af6fc492de294a06edd6d325
[playground] Fix CompilerError mismatch (#34420) The compiler playground was crashing at any small syntax errors in the `Input` panel due to updating the `CompilerErrorDetailOptions` type in #34401. Updated the option to take in a `ErrorCategory` instead. --------- Co-authored-by: lauren <poteto@users.noreply.github...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -13,7 +13,7 @@ import BabelPluginReactCompiler, {\n CompilerErrorDetail,\n CompilerDiagnostic,\n Effect,\n- ErrorSeverity,\n+ ErrorCategory,\n parseConfigPragmaForTests,\n ValueKind,\n type Hook,\n@@ -258,7 +25...
2025-09-08T19:06:54
electron/electron
fe477ce3aa65316f4e63b0907d117723a1d4c8bc
bab6bd3dae351d8f49203a26468d58482f754c84
chore: bump chromium to 145.0.7568.0 (main) (#49145) * chore: bump chromium in DEPS to 145.0.7562.0 * fix(patch-conflict): update code cache patch for PersistentCache refactor Upstream refactored code cache to use PersistentCache with new class-based implementation (NoopCodeCacheHost, LocalCodeCacheHost, CodeCacheWi...
[ { "path": "BUILD.gn", "patch": "@@ -446,6 +446,7 @@ source_set(\"electron_lib\") {\n \"shell/services/node/public/mojom\",\n \"//base:base_static\",\n \"//base/allocator:buildflags\",\n+ \"//build/util:chromium_git_revision\",\n \"//chrome:strings\",\n \"//chrome/app:command_ids\",\n ...
2025-12-10T15:28:31
golang/go
a01a4f98026f834311f9029573030c3e1799646b
fb0c8e16c329da6f0caafa2d5ae48e625a00b652
runtime/cgo: rename and update ppc64x and s390x croscall1 functions crosscall1 has the same signature and behavior on all platforms except for ppc64x and s390x, fix that. Cq-Include-Trybots: luci.golang.try:gotip-linux-ppc64le_power9,gotip-linux-ppc64_power8,gotip-linux-s390x Change-Id: Iead8b578a45787bb1fb2dd2dcfcb1...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -197,9 +197,9 @@ TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0\n TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0\n \tRET\n \n-// Any changes must be reflected to runtime/cgo/gcc_aix_ppc64.S:.crosscall_ppc64\n+// Any changes must be reflected to runtime/cgo...
2025-10-01T08:33:17
vercel/next.js
b645f4ce7d56fbe23eb9e703289d1bfdd6bd37ed
207538313b1515346111f6ab685e68dbabcefe5d
fix(turbopack): use posix.join for client URL manifest paths on Windows (#90700) Co-authored-by: Dmitrii Troitskii <jsleitor@gmail.com>
[ { "path": "packages/next/src/shared/lib/turbopack/manifest-loader.ts", "patch": "@@ -637,12 +637,12 @@ export class TurbopackManifestLoader {\n \n const sortedPageKeys = getSortedRoutes(pagesKeys)\n \n- let buildManifestPath = join(\n+ let buildManifestPath = posix.join(\n CLIENT_STATIC_FILE...
2026-03-02T09:25:03
nodejs/node
64022d9fccc9624813a311444e87f2b2985acb22
1f49cd1d86977deca14aae108d8a98e470019baa
2026-01-13, Version 24.13.0 'Krypton' (LTS) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) <https://github.com/nodejs-private/node-private/pull/797> * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) <https://githu...
[ { "path": "CHANGELOG.md", "patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V25.md#25.0.0\">25.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.12.0\">24.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.13.0\">24.13.0...
2026-01-07T08:01:45
facebook/react
d4374b3ae37eb972af6fc492de294a06edd6d325
3f2a42a5decc88551d34c96f3d031c316ac34f6a
[compiler] [playground] Show internals toggle (#34399) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, pleas...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -64,12 +64,16 @@ type Props = {\n async function tabify(\n source: string,\n compilerOutput: CompilerOutput,\n+ showInternals: boolean,\n ): Promise<Map<string, ReactNode>> {\n const tabs = new Map<string, React.ReactNode...
2025-09-08T18:21:03
golang/go
50b63f6cb90a1437ca6756ede016f1918e721da6
45929774c3d5c084cc478afba63c77cf67a68bd7
cmd/link: don't pass -Wl,-S on illumos The change in CL 707096 to exclude GOOS=solaris needs to also be applied for GOOS=illumos, which shares the same linker lineage. Fixes #77530 Change-Id: Ifc2047595af2db52870f9fb0a9faf646666d9e61 Reviewed-on: https://go-review.googlesource.com/c/go/+/746560 LUCI-TryBot-Result: G...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -426,7 +426,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linker doesn't support the -S f...
2026-02-18T14:24:18
facebook/react
294c33f34da0b5f908946c9add86f58426e7da5f
3fb190f729ddcf32e7a76961082929683a3395a7
[Flight] Always initialize a debug info array for each Chunk (#34419) I'm about to add info for pretty much all of these anyway since they all depend on the data stream itself.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -169,7 +169,7 @@ type PendingChunk<T> = {\n reason: null | Array<InitializationReference | (mixed => mixed)>,\n _children: Array<SomeChunk<any>> | ProfilingResult, // Profiling-only\n _debugChunk: null | SomeChunk<ReactDebugInfoE...
2025-09-08T16:28:14
vercel/next.js
207538313b1515346111f6ab685e68dbabcefe5d
5e3af2ceab93d2acdf888586fe07e3aa1bad4887
Fix ENOBUFS errors in pr-status.js when fetching large CI logs (#90654) ## Summary Fixes `spawnSync /bin/sh ENOBUFS` errors in `scripts/pr-status.js` when fetching large CI job logs. The script uses `execSync` (which internally uses `spawnSync`) to fetch CI job logs via `gh api .../jobs/{id}/logs`. `execSync` has a ...
[ { "path": "scripts/pr-status.js", "patch": "@@ -1,4 +1,4 @@\n-const { execSync } = require('child_process')\n+const { execSync, spawn } = require('child_process')\n const fs = require('fs/promises')\n const path = require('path')\n \n@@ -21,6 +21,30 @@ function exec(cmd) {\n }\n }\n \n+function execAsync(...
2026-03-02T07:56:51
nodejs/node
1f49cd1d86977deca14aae108d8a98e470019baa
4443a11bef5688f0696adec08daf842a7069c5d1
2026-01-13, Version 22.22.0 'Jod' (LTS) This is a security release. Notable changes: lib: * (CVE-2025-59465) add TLSSocket default error handler * (CVE-2025-55132) disable futimes when permission model is enabled lib,permission: * (CVE-2025-55130) require full read and write to symlink APIs src: * (CVE-2025-...
[ { "path": "CHANGELOG.md", "patch": "@@ -66,7 +66,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.21.1\">22.21.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.0\">22.22.0...
2026-01-07T15:40:53
electron/electron
95e87e46ab57fa44bc5583a1edfc1c017c830cca
90e338df507f7dc7ef0cac1a09b62d2c97c95f72
chore: bump chromium to 144.0.7547.0 (main) (#49058) * chore: bump chromium in DEPS to 144.0.7543.0 * Pass PipScreenCaptureCoordinatorProxy to ScreenCaptureKitDeviceMac https://chromium-review.googlesource.com/c/chromium/src/+/7157590 * chore: update patches * chore: update filenames.libcxx.gni * 7142359: Spanifi...
[ { "path": "BUILD.gn", "patch": "@@ -528,6 +528,7 @@ source_set(\"electron_lib\") {\n \"//base\",\n \"//base:i18n\",\n \"//content/public/app\",\n+ \"//ui/base/unowned_user_data\",\n ]\n \n include_dirs = [", "additions": 1, "deletions": 0, "language": "Unknown" }, { "p...
2025-12-05T00:40:04
golang/go
45929774c3d5c084cc478afba63c77cf67a68bd7
93b6475e1de0f055139bd0926048ee8e36aa7c42
internal/runtime/gc/scan: require popcnt for x86 The GOAMD64=v1 test disables popcnt instructions, which is a feature this package's amd64 assembly uses. Fixes #77674 Change-Id: I7be9bb665838f5da50275f96ef3df398412bb44a Reviewed-on: https://go-review.googlesource.com/c/go/+/746640 LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/internal/runtime/gc/scan/scan_amd64.go", "patch": "@@ -38,4 +38,5 @@ var avx512ScanPackedReqsMet = cpu.X86.HasAVX512VL &&\n \tcpu.X86.HasAVX512BW &&\n \tcpu.X86.HasGFNI &&\n \tcpu.X86.HasAVX512BITALG &&\n-\tcpu.X86.HasAVX512VBMI\n+\tcpu.X86.HasAVX512VBMI &&\n+\tcpu.X86.HasPOPCNT", "additi...
2026-02-18T17:09:57
facebook/react
78992521a83325edec17a0dc0bb47092cc5accaa
80d7aa17ad42efccc0ff95d2a9147ac6efe74dd5
[compiler] Filter out disabled errors from being reported (#34409) This PR stops error details of severity `ErrorSeverity.Off` from being reported. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/344...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -279,6 +279,7 @@ export class CompilerErrorDetail {\n */\n export class CompilerError extends Error {\n details: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n+ disabledDetails: Array<CompilerErrorDetai...
2025-09-06T17:07:23
nodejs/node
4443a11bef5688f0696adec08daf842a7069c5d1
eac00fabde8aaca1224e2070121b028628321d23
2026-01-13, Version 20.20.0 'Iron' (LTS) This is a security release. Notable changes: lib: * (CVE-2025-55132) disable futimes when permission model is enabled (RafaelGSS) https://github.com/nodejs-private/node-private/pull/802 * (CVE-2025-59465) add TLSSocket default error handler (RafaelGSS) https://github.com/...
[ { "path": "CHANGELOG.md", "patch": "@@ -96,7 +96,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.6\">20.19.6</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.0\">20.20.0...
2026-01-07T16:31:59
electron/electron
90e338df507f7dc7ef0cac1a09b62d2c97c95f72
1b3fc9c174998292a3156be792e5008a12a403ea
fix: run toast creation on background thread (#49106) * fix: run toast creation on background thread notes: attempts to fix app freeze when triggering notifications and the COM server in WindowsShellExperienceHost hangs * fix: comments
[ { "path": "shell/browser/notifications/notification.cc", "patch": "@@ -14,6 +14,12 @@ const bool debug_notifications =\n base::Environment::Create()->HasVar(\"ELECTRON_DEBUG_NOTIFICATIONS\");\n \n NotificationOptions::NotificationOptions() = default;\n+NotificationOptions::NotificationOptions(const Noti...
2025-12-02T23:27:22
nodejs/node
608ff5c25ca52338e3cfd81685a08a3f0e912a8d
1bd7f62d139ceb5c60ba9b198c25434deb7106e7
build: fix misplaced comma in ldflags PR-URL: https://github.com/nodejs/node/pull/61294 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@g...
[ { "path": "node.gypi", "patch": "@@ -412,7 +412,7 @@\n 'conditions': [\n ['OS in \"linux freebsd openharmony\" and node_shared==\"false\"', {\n 'ldflags': [\n- '-Wl,--whole-archive,'\n+ '-Wl,--whole-archive',\n ...
2026-01-11T18:15:00
golang/go
a09c908cc6e63a89a6206eadb12f8e2800326465
6fd52a57f8f88e18247b9741278a126ab65cdb47
internal/syscall/windows: correct some enums and syscall signatures This CL corrects code submitted in CL 741040. Fixes #77402 Change-Id: I1c22c1a9f77028f3c2a8e3905f2ec5b071b5445e GitHub-Last-Rev: 2bfb07310b4707484b5bdce96ad367db567741c4 GitHub-Pull-Request: golang/go#77525 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/internal/syscall/windows/at_windows_test.go", "patch": "@@ -131,7 +131,7 @@ func makeFileNotReadable(t *testing.T, name string) {\n \t\t\tInheritance: windows.SUB_CONTAINERS_AND_OBJECTS_INHERIT,\n \t\t\tTrustee: windows.TRUSTEE{\n \t\t\t\tTrusteeForm: windows.TRUSTEE_IS_SID,\n-\t\t\t\tN...
2026-02-13T18:19:04
facebook/react
80d7aa17ad42efccc0ff95d2a9147ac6efe74dd5
474f25842a90f67a7aa8c6329afb5faec52181b6
[compiler] Fix error description inconsistency (#34404) Small fix to make all descriptions consistently printed with a single period at the end. Ran `grep -rn "description:" packages/babel-plugin-react-compiler/src --include="*.ts" --exclude-dir="__tests__" | grep '\.\s*["\`]'` to find all descriptions ending in a pe...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -141,11 +141,10 @@ export class CompilerDiagnostic {\n }\n \n printErrorMessage(source: string, options: PrintErrorMessageOptions): string {\n- const buffer = [\n- printErrorSummary(this.category, this.r...
2025-09-06T17:07:02
electron/electron
8ce97df569f313d5a28ad702ead71bd2be648873
7aafe66717b7a926379291d254483ec3b3d8198c
build: gate brew commands in free-space-macos action (#49123) fix: gate brew commands in free-space-macos action The brew uninstall and autoremove commands now only run if brew is available on the machine. This prevents failures on runners where Homebrew is not installed. Co-authored-by: Claude <noreply@anthropic.co...
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -80,8 +80,10 @@ runs:\n sudo rm -rf /Users/runner/.rustup\n \n # remove homebrew packages we don't need\n- brew uninstall -f --zap aws-sam-cli session-manager-plugin gcc gcc@13 gcc@14 llvm@18 gradle maven ant azure-...
2025-12-02T01:32:46
nodejs/node
6b8da344c454c7911a235e1eae49a05c79c072ba
4ddde922751fbcc5f66ad30df380defe314c72ae
build: fix crate vendor file checksums on windows PR-URL: https://github.com/nodejs/node/pull/61329 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail...
[ { "path": ".gitattributes", "patch": "@@ -1,5 +1,7 @@\n test/fixtures/* -text\n vcbuild.bat text eol=crlf\n+# disable eol conversion in vendored files.\n+deps/crates/vendor/**/* -text\n deps/npm/bin/npm text eol=lf\n deps/npm/bin/npx text eol=lf\n deps/corepack/shims/corepack text eol=lf", "additions": ...
2026-01-11T17:39:07
vercel/next.js
a362fd27aad385e40f3eed283816e3578de40f74
9ce8d136f8d2a3c66954fcc3d9593ebd4e3321b0
instant(): fix cookie handling for fresh page loads (#90613) Previously, instant() used page.evaluate() to set the cookie via document.cookie, which required a page to already be loaded. This meant the cookie wasn't present on the very first navigation. Switch to Playwright's browser context cookie API so the cookie ...
[ { "path": "packages/next-playwright/src/index.ts", "patch": "@@ -1,10 +1,25 @@\n /**\n- * Minimal interface for Playwright's Page. We use a structural type rather than\n- * importing from a specific Playwright package so this works with any version\n- * of playwright, playwright-core, or @playwright/test.\n...
2026-03-01T23:23:07
golang/go
6fd52a57f8f88e18247b9741278a126ab65cdb47
a00f0ed521f32c704b9a5bf8886848829dd13415
crypto: don't overwrite existing GODEBUG settings Some tests set GODEBUG by calling t.Setenv("GODEBUG", "foo=bar"). This overwrites any existing GODEBUG settings, which is undesirable. Instead, append the new setting to any existing GODEBUG settings. As this operation is quite common, add a helper function testenv.Se...
[ { "path": "src/crypto/fips140/fips140_test.go", "patch": "@@ -6,46 +6,30 @@ package fips140\n \n import (\n \t\"internal/godebug\"\n-\t\"os\"\n+\t\"internal/testenv\"\n \t\"testing\"\n )\n \n func TestImmutableGODEBUG(t *testing.T) {\n-\tdefer func(v string) { os.Setenv(\"GODEBUG\", v) }(os.Getenv(\"GODEBUG...
2026-01-07T09:14:43
electron/electron
ba5f7d272f776a541bb6b8fcee292e0503c87684
6b50b5e81648814367ffa4583bbaff2b6c7c25fa
fix: rename RUNNER_NAME to MATRIX_RUNNER in disk cleanup workflow (#49120) RUNNER_NAME is a reserved environment variable in GitHub Actions. Renamed to MATRIX_RUNNER to avoid conflicts. Co-authored-by: Claude <noreply@anthropic.com>
[ { "path": ".github/workflows/macos-disk-cleanup.yml", "patch": "@@ -59,7 +59,7 @@ jobs:\n DD_API_KEY: ${{ secrets.DD_API_KEY }}\n FREE_BEFORE: ${{ steps.disk-before.outputs.free_kb }}\n FREE_AFTER: ${{ steps.disk-after.outputs.free_kb }}\n- RUNNER_NAME: ${{ matrix.runn...
2025-12-01T21:33:45
facebook/react
474f25842a90f67a7aa8c6329afb5faec52181b6
1fef581e1abcdcbc4aa50a048f9473f85dcb4692
[compiler] Migrate CompilerError.invariant to new CompilerDiagnostic infra (#34403) Mechanical PR to migrate existing invariants to use the new CompilerDiagnostic infra @josephsavona added. Will tackle the others at a later time. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com)...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -37,7 +37,7 @@ export enum ErrorSeverity {\n export type CompilerDiagnosticOptions = {\n category: ErrorCategory;\n reason: string;\n- description: string;\n+ description: string | null;\n details: Array<Com...
2025-09-06T16:58:08
golang/go
a00f0ed521f32c704b9a5bf8886848829dd13415
eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286
runtime/cgo: remove clang mmap bug workaround Clang 3.8 was released in 2016, that is 10 years ago. The issue that the workaround was addressing (a bug in the memory sanitizer) is no longer relevant. Change-Id: I277ea94cf1bfbc6a9da63841be8ac990c839d7b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/745662 LUC...
[ { "path": "src/runtime/cgo/gcc_unix.c", "patch": "@@ -4,9 +4,6 @@\n \n //go:build unix && !solaris\n \n-#include <signal.h>\n-#include <string.h>\n-#include <errno.h>\n #include \"libcgo.h\"\n #include \"libcgo_unix.h\"\n \n@@ -37,37 +34,9 @@ _cgo_set_stacklo(G *g)\n \t}\n }\n \n-static void\n-clang_init()\...
2026-02-15T07:43:56
nodejs/node
45e37d95eb5dde1fd9d54dc9488c9e9626c76632
0f159235839a9db6587252414688870ef61e4b0d
build,tools: fix addon build deadlock on errors PR-URL: https://github.com/nodejs/node/pull/61321 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "tools/build_addons.py", "patch": "@@ -58,8 +58,8 @@ def node_gyp_rebuild(test_dir):\n \n # We buffer the output and print it out once the process is done in order\n # to avoid interleaved output from multiple builds running at once.\n- return_code = process.wait()\n stdout,...
2026-01-11T01:15:05
facebook/react
1fef581e1abcdcbc4aa50a048f9473f85dcb4692
60d9b9740d77bd2715f5f725245093a23f95e347
[compiler] Deprecate CompilerErrorDetail (#34402) Now that we have a new CompilerDiagnostic type (which the CompilerError aggregate can hold), the old CompilerErrorDetail type can be marked as deprecated. Eventually we should migrate everything to the new CompilerDiagnostic type. --- [//]: # (BEGIN SAPLING FOOTER) St...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -78,6 +78,9 @@ export type CompilerSuggestion =\n description: string;\n };\n \n+/**\n+ * @deprecated use {@link CompilerDiagnosticOptions} instead\n+ */\n export type CompilerErrorDetailOptions = {\n ca...
2025-09-06T16:41:54
vercel/next.js
4d2ac245965095ae2f67aeab224bd3dc29573524
9c31bbdaa9cf0e7674c79fe953ede9d590b5f6d7
feat: provide nextVersion to modifyConfig adapter hook (#90735) For providers that either don't manage or allow for custom build commands, checking Next.js version in their builders is not reliable. Especially for providers that already have existing support there needs to be very reliable way to only apply certain co...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -335,6 +335,10 @@ export interface NextAdapter {\n config: NextConfigComplete,\n ctx: {\n phase: PHASE_TYPE\n+ /**\n+ * nextVersion is the current version of Next.js being used\n+ */\n+ nextVersio...
2026-03-01T22:05:46
electron/electron
06044b50f4e4abedbf7092d48bf6a0b2186b7d98
4adfc212b31d09df83416d8a8b9bfef30e002862
chore: mention quiet period in PR template (#49117) * chore: mention quiet period in PR template * fix: remove trailing spaces
[ { "path": ".github/PULL_REQUEST_TEMPLATE.md", "patch": "@@ -1,3 +1,6 @@\n+> [!IMPORTANT]\n+> Please note that code reviews and merges will be delayed during our [quiet period in December](https://www.electronjs.org/blog/dec-quiet-period-25) and might not happen until January.\n+\n #### Description of Change...
2025-12-01T16:55:13
golang/go
eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286
2eb890bde31495cdd90423fcfbc789351ca56ec6
internal/poll: readWriteLock should destroy the fd when there are no more references to it The read lock in readWriteLock might be holding the last reference to the fd. If the fd is closed while the read lock is still held, then the fd will not be destroyed until the read lock is released and fd.destroy is called. Th...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -269,7 +269,9 @@ func (fd *FD) readWriteLock() error {\n \t\treturn errClosing(fd.isFile)\n \t}\n \tif !fd.fdmu.rwlock(writeLock, waitLock) {\n-\t\tfd.fdmu.rwunlock(readlock) // unlock read lock acquired above\n+\t\tif fd.fdmu.rwunlock(readlock) {\n+\t...
2026-02-17T12:59:51
facebook/react
60d9b9740d77bd2715f5f725245093a23f95e347
c4e2508dad24f2cd61b5f1f862b081f54ee71896
[compiler] Derive ErrorSeverity from ErrorCategory (#34401) With #34176 we now have granular lint rules created for each compiler ErrorCategory. However, we had remnants of our old error severities still in use which makes reporting errors quite clunky. Previously you would need to specify both a category and severity...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -14,50 +14,28 @@ import invariant from 'invariant';\n \n export enum ErrorSeverity {\n /**\n- * Invalid JS syntax, or valid syntax that is semantically invalid which may indicate some\n- * misunderstanding on ...
2025-09-06T16:41:29
nodejs/node
a327288cc6747cf5e07656a1c45fe2f19e0926ae
3bb0135783bbbb9b25ac44be8dc24c36ca254a09
doc: correct description of `error.stack` accessor behavior PR-URL: https://github.com/nodejs/node/pull/61090 Refs: https://github.com/nodejs/node/issues/60862 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -379,13 +379,17 @@ The location information will be one of:\n represents a call in a user program (using ES module system), or\n its dependencies.\n \n-The string representing the stack trace is lazily generated when the\n-`error.stack` property is **accessed*...
2026-01-09T04:12:19
electron/electron
4adfc212b31d09df83416d8a8b9bfef30e002862
640c7bb90841b8669896712104c64d3bab09bcf7
fix: crash when attempting to resolve modules during process exit (#49090) * fix: crash when attempting to resolve modules during process exit * chore: fix build
[ { "path": "patches/node/api_remove_deprecated_getisolate.patch", "patch": "@@ -586,10 +586,10 @@ index 57e068ae249d618c2658638f9f3b03e1fedb6524..8c51ae4e0a435971c6d0288af8781087\n data_.Reset();\n return ret;\n diff --git a/src/node_modules.cc b/src/node_modules.cc\n-index eea4ba313d8dbcf7b88b79f5a3e9...
2025-11-27T09:30:09
vercel/next.js
1cc745782db7119f92f90daf2c79c470f2f561e8
fb694e9d7a8d22060f5a94fb6fee01bc58c302b1
[devtools] Stop blocking overlay on error details copy (#90698)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/copy-button/index.tsx", "patch": "@@ -1,77 +1,7 @@\n import * as React from 'react'\n import { cx } from '../../utils/cx'\n \n-function useCopyLegacy(content: string) {\n- type CopyState =\n- | {\n- state: 'initial'\n- }\n- ...
2026-03-01T09:17:32
facebook/react
c4e2508dad24f2cd61b5f1f862b081f54ee71896
de5a1b203e342e7f5d64216d68d8d49e709660e3
[react-devtools-shared] Fix URL construction when base URL is invalid (#34407) ### Problem - Users encounter “Failed to construct 'URL': Invalid base URL” when clicking the “View source” action in DevTools if the underlying base URL is invalid. - This exception originates from `new URL(relative, base)` and bubbles up,...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -421,6 +421,26 @@ function f() { }\n await expect(run('http://test/c.mjs')).resolves.toStrictEqual(result);\n await expect(run('http://test/d.mjs')).resolves.toStrictEqual(result);\n });\n+\n+ it('should ...
2025-09-06T13:00:45
golang/go
f75c7ccaefe16a13be7ccc08731478976a6cc645
845b7b0e493c86dc2c97d157c931f8b6254e24b0
cmd/covdata: update test expectations after coverage position change CL 726800 changed cmd/cover to exclude brace tokens from coverage ranges, shifting where coverage spans start (from the opening brace to the first executable token inside the block). Update the hardcoded position expectations in TestCovTool subtests...
[ { "path": "src/cmd/covdata/tool_test.go", "patch": "@@ -414,7 +414,7 @@ func testTextfmt(t *testing.T, s state) {\n \t\tdumplines(lines[0:10])\n \t\tt.Errorf(\"textfmt: want %s got %s\", want0, lines[0])\n \t}\n-\twant1 := mainPkgPath + \"/prog1.go:13.14,15.2 1 1\"\n+\twant1 := mainPkgPath + \"/prog1.go:14....
2026-02-16T08:16:46
electron/electron
0767b42cb85c64b827cf32ab612bd20437653eec
555f507c177b03a3e95286e48d4accbc13d82674
ci: fix import in issue opened workflow (#49095)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -56,6 +56,7 @@ jobs:\n const { chdir } = require('node:process');\n chdir('${{ github.workspace }}/.github/workflows');\n \n+ const { ElectronVersions } = require('@electron/fiddle-core');\n const { f...
2025-11-26T18:33:45
vercel/next.js
c2a27526f821f72a263dc41cab0a34605d271229
c5b2cf1e32ff2668e77f02e739b612f142772ce5
Turbopack: Revert default loader runtime backend to child processes (#90675) We're getting crashes in node: https://github.com/vercel/workflow/actions/runs/22500511618/job/65186125774#step:10:224 It looks like this should be fixed in newer versions of node: - https://github.com/napi-rs/napi-rs/issues/2555#issuecomme...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -2059,10 +2059,10 @@ impl NextConfig {\n \n #[turbo_tasks::function]\n pub fn turbopack_plugin_runtime_strategy(&self) -> Vc<TurbopackPluginRuntimeStrategy> {\n- #[cfg(feature = \"worker_pool\")]\n- let default = TurbopackPl...
2026-02-28T07:39:20
nodejs/node
61d0a9580d3a53f6e7ae2b7acc0f3041007fa45c
a18f8c169352dd8a452df9fd4de9319cc2bd329a
doc: fix filename typo PR-URL: https://github.com/nodejs/node/pull/61297 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gireesh Punathil <gpunath...
[ { "path": "doc/contributing/managing-social-media-accounts.md", "patch": "@@ -41,7 +41,7 @@ delegated to the Foundation Staff.\n \n No project members have access to the Facebook account.\n \n-## Linkedin\n+## LinkedIn\n \n Day to day management of the LinkedIn account has been\n delegated to the Foundation...
2026-01-08T17:55:01
facebook/react
de5a1b203e342e7f5d64216d68d8d49e709660e3
b9a045368bc1186fcaff6e8b027cfca28c857f04
[compiler][playground] (3/N) Config override panel (#34371) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -8,94 +8,176 @@\n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n import type {editor} from 'monaco-editor';\n import * as monaco from 'monaco-editor';\n-import {useState} from 'react';\n+import R...
2025-09-05T14:12:01
rust-lang/rust
eca09dedef8d8d94a099f800045b013570d7569a
b17670d3de2f62acba94abf3560cd002a75db42f
fix tests
[ { "path": "src/etc/lldb_lookup.py", "patch": "@@ -91,7 +91,18 @@ def classify_rust_type(type: lldb.SBType, is_msvc: bool) -> RustType:\n \n def synthetic_lookup(valobj: lldb.SBValue, _dict: LLDBOpaque) -> object:\n \"\"\"Returns the synthetic provider for the given value\"\"\"\n- is_msvc = valobj.Get...
2025-11-15T10:28:56
electron/electron
555f507c177b03a3e95286e48d4accbc13d82674
1ff8e8014ab4a6e152e357b62665a7f917a6c541
fix: ensure `menu-did-close` is emitted for application menus (#49075) fix: ensure menu-did-close is emitted for application menus
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -157,7 +157,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ set...
2025-11-26T15:44:20
golang/go
845b7b0e493c86dc2c97d157c931f8b6254e24b0
f827b854254bec05b3a11d30886c1331a68efd7b
cmd/internal/obj: remove ARM64 prefix from encoding helpers Remove the ARM64 prefix from encoding helper functions that were moved to cmd/internal/obj to be used by both cmd/asm and cmd/compile. These functions now use the package prefix and look like: arm64.EncodeRegisterExtension and arm64.RegisterListOffset. Chang...
[ { "path": "src/cmd/asm/internal/asm/parse.go", "patch": "@@ -775,7 +775,7 @@ func (p *Parser) registerExtension(a *obj.Addr, name string, prefix rune) {\n \n \tswitch p.arch.Family {\n \tcase sys.ARM64:\n-\t\terr := arm64.ARM64RegisterExtension(a, ext, reg, num, isAmount, isIndex)\n+\t\terr := arm64.EncodeR...
2025-10-23T16:23:43
nodejs/node
2030fd345bc43748f0986ab8c72bc03d043c60b5
d050aa87e81973f2422eeb55d4926cf01def8020
doc: fix typos and grammar in `BUILDING.md` & `onboarding.md` PR-URL: https://github.com/nodejs/node/pull/61267 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> R...
[ { "path": "BUILDING.md", "patch": "@@ -635,7 +635,7 @@ on Linux, you can try [Docker](https://www.docker.com/products/docker-desktop/)\n (using an image like `gengjiawen/node-build:2020-02-14`).\n \n The `--debug` is not necessary and will slow down build and testing, but it can\n-show clear stacktrace if A...
2026-01-06T08:52:15