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 | 8c323899ffd289465d838138c41be3e5d8e572e4 | bd8fe4fa711c9c8ea5797783d182f0a143acc981 | dns: fix Windows SRV ECONNREFUSED by adjusting c-ares fallback detection
Newer c-ares versions set tcp_port/udp_port to 53 instead of 0,
which caused the loopback detection to fail. This fix:
- Removes the port check from loopback detection
- Adds IPv6 loopback (::1) support
- Calls EnsureServers() before each DNS qu... | [
{
"path": "src/cares_wrap.cc",
"patch": "@@ -983,19 +983,31 @@ void ChannelWrap::EnsureServers() {\n \n ares_get_servers_ports(channel_, &servers);\n \n- /* if no server or multi-servers, ignore */\n+ /* if no server, ignore */\n if (servers == nullptr) return;\n+\n+ /* if multi-servers, mark as non-... | 2026-02-03T16:51:35 |
rust-lang/rust | 98688ef1f93ede0a6f0b71287f6c16e1b114a61e | 2bd7a97871a74d4333bd3edb6564136167ac604b | Simplify feature gating checks & macros
* utilize Kleene `?` two avoid having two macro matchers with almost
identical body
* inline `gate_legacy` since it only has one use and since it shouldn't
be used anywhere else anyway
* remove unnecessary explicit borrows of the visitor
* replace `if let Some(spans) = spans... | [
{
"path": "compiler/rustc_ast_passes/src/feature_gate.rs",
"patch": "@@ -14,31 +14,22 @@ use crate::errors;\n \n /// The common case.\n macro_rules! gate {\n- ($visitor:expr, $feature:ident, $span:expr, $explain:expr) => {{\n+ ($visitor:expr, $feature:ident, $span:expr, $explain:expr $(, $help:expr)?)... | 2026-04-01T15:01:56 |
golang/go | 45c6fb4b9bff9eaaaae000ff223452403b9def4e | 59b188cee2cdf522b621d1ee72c811fcd46e22b2 | cmd/compile: unwrap OCONVIFACE in staticinit for OAS2
Static initialization only expected OCONVNOP wrappings.
Unwrap OCONVIFACE too, since it occurs when multiple return values
of an OAS2FUNC are implicitly converted to an interface.
Fixes #78016
Change-Id: Ic3fd6151403aabfc087d3240c1fcfabe7108cc0e
GitHub-Last-Rev: ... | [
{
"path": "src/cmd/compile/internal/staticinit/sched.go",
"patch": "@@ -114,7 +114,7 @@ func (s *Schedule) tryStaticInit(n ir.Node) bool {\n \t\t// \"var a, b = f()\" that needs type conversion, which is not static.\n \t\tn := n.(*ir.AssignListStmt)\n \t\tfor _, rhs := range n.Rhs {\n-\t\t\tfor rhs.Op() == ... | 2026-03-08T11:12:17 |
electron/electron | b508510cab6d19b06c50b6fe16644cfc054c4ce2 | 469b2af0c05012f08a096a39e6531c8d0b90f0a8 | fix: update DBus signal signature for XDG GlobalShortcuts portal (#49842) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -144,3 +144,4 @@ fix_linux_tray_id.patch\n expose_gtk_ui_platform_field.patch\n patch_osr_control_screen_info.patch\n refactor_allow_customizing_config_in_freedesktopsecretkeyprovider.patch\n+fix_update_dbus_signal_signature_for_xdg_globalshortcuts_portal.... | 2026-02-19T14:22:27 |
facebook/react | 257b033fc7b0518e7b1db32ca24e2354933b9d0e | de97ef9ad510352ba37434085098bf026dd46b9b | [Compiler] Avoid capturing global setStates for no-derived-computations lint (#35135)
Summary:
This only matters when enableTreatSetIdentifiersAsStateSetters=true
This pattern is still bad. But Right now the validation can only
recommend to move stuff to "calculate in render"
A global setState should not be moved to... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -690,6 +690,18 @@ function validateEffect(\n instr.value.args.length === 1 &&\n instr.value.args[0].kind === 'Identifier'\n ) {\n+ const calleeMet... | 2025-11-14T06:56:06 |
vercel/next.js | 855f0a3f5251fc46796bbeeb7dd30b6f264d1f6b | baad064fd1c509fa0c7ff2dfdaec5412ded20766 | Turbopack: `require(/* turbopackChunkingType: parallel */` (#91278)
1. Add the CJS version of `import ... with {"turbopack-chunking-type: "parallel"`
2. Allow `shared` as a chunking type
3. Improve error message for invalid values:
<img width="718" height="455" alt="Bildschirmfoto 2026-03-13 um 15 07 06" src="htt... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs",
"patch": "@@ -5,12 +5,7 @@ use rustc_hash::{FxHashMap, FxHashSet};\n use smallvec::SmallVec;\n use swc_core::{\n atoms::Wtf8Atom,\n- common::{\n- BytePos, Span, Spanned, SyntaxContext,\n- comments::Comments,\n- ... | 2026-03-14T12:05:21 |
nodejs/node | 232dffef01f370b4d404c9a22e182af76174bcca | 1818bb7e81811bf204270b892172cf12cfb17c09 | test: fix race condition in watch mode tests
The watch mode tests using runInBackground() had a race condition where
stdout "Failed running" message could arrive before stderr was fully
collected, causing assertions on stderr content to fail with empty
strings.
Fix by waiting for stderr 'data' event if stderr is empt... | [
{
"path": "test/sequential/test-watch-mode-restart-esm-loading-error.mjs",
"patch": "@@ -11,6 +11,9 @@ import { createInterface } from 'node:readline';\n if (common.isIBMi)\n common.skip('IBMi does not support `fs.watch()`');\n \n+if (common.isAIX)\n+ common.skip('AIX does not reliably capture syntax err... | 2026-02-03T15:46:31 |
golang/go | 59b188cee2cdf522b621d1ee72c811fcd46e22b2 | 23fde5c48c9bacb0ec8f5e21cc72191c64364ce1 | cmd/internal/obj/arm: set spadj in arm32 tailcall
In the normal case spadj is not needed because ARET handles the frame pop
and return in a single instruction. However, if the ARET is a tailcall then
there will be a second instruction where the pcsp stack depth is
incorrect.
Fixes #78021
Change-Id: I20db57eee03945a3... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -387,12 +387,18 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\t// If there are instructions following\n \t\t\t// this ARET, they come from a branch\n-\t\t\t// with the same stackframe, so no spadj.\n+\t\t\t/... | 2026-03-09T22:04:38 |
electron/electron | 61b3d5d63c322a726bdcafd7491d5b3ba7ef73f2 | 1e437c9a18f4b4170c110179673355d9a732b8ba | refactor: initialize libgdk stubs before use in `platform_util:Beep` (#49680)
* refactor: initialize libgdk stubs before use in `platform_util:Beep`
* feat: add upstream function to get libgdk handle
* fix: add missing include for libgdk support
* style: adjust comment wording and make linter happy
* style: make l... | [
{
"path": "patches/chromium/make_gtk_getlibgtk_public.patch",
"patch": "@@ -1,13 +1,13 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: deepak1556 <hop2deep@gmail.com>\n Date: Thu, 7 Apr 2022 20:30:16 +0900\n-Subject: Make gtk::GetLibGdkPixbuf public\n+Subject: Make gtk::G... | 2026-02-19T08:59:10 |
facebook/react | de97ef9ad510352ba37434085098bf026dd46b9b | 93fc57400b0cf9a2bfdc2765d94ee9984f2fd97f | [Compiler] Don't count a setState in the dependency array of the effect it is called on as a usage (#35134)
Summary:
The validation only allows setState declaration as a usage outside of
the effect.
Another edge case is that if you add the setState being validated in the
dependency array you also make the validation ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -22,6 +22,7 @@ import {\n BasicBlock,\n isUseRefType,\n SourceLocation,\n+ ArrayExpression,\n } from '../HIR';\n import {eachInstructionLValue, eachInstructionOperand} ... | 2025-11-14T06:52:23 |
vercel/next.js | 914df17a13ca78b4b538bec11f28be34e4545537 | cf4d3ae89c1f49ac1a7d9c4d7c5bd557995dd02e | docs: remove incorrect _document.tsx font example (#91346)
saw the issue about the _document.tsx example not working. next/font
cant be used in _document.tsx, it throws an error. removed that section
from the docs since _app.tsx already has the correct example.
fixes #88832
Co-authored-by: Kahfi Elhady <kahfie@gmail... | [
{
"path": "docs/01-app/01-getting-started/13-fonts.mdx",
"patch": "@@ -89,50 +89,6 @@ export default function MyApp({ Component, pageProps }) {\n }\n ```\n \n-If you want to apply the font to the `<html>` element, you can use a [Custom Document](/docs/pages/building-your-application/routing/custom-document)... | 2026-03-14T00:39:40 |
rust-lang/rust | 20ce0f0488a57fe748c4c4187c11deb431eb86a1 | c29def2a1e83cd32f5582b12eeb58482fd89ac25 | Fix rustc-pull CI workflow | [
{
"path": "src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml",
"patch": "@@ -12,6 +12,7 @@ jobs:\n uses: rust-lang/josh-sync/.github/workflows/rustc-pull.yml@main\n with:\n github-app-id: ${{ vars.APP_CLIENT_ID }}\n+ pr-author: \"workflows-rustc-dev-guide[bot]\"\n zulip-strea... | 2026-04-01T11:53:40 |
nodejs/node | f4646a7f4be0c9f650ad50ea02c705387300b912 | 61a4a30e0e157ad46d48b56f39c6bf42a062d534 | module: do not invoke resolve hooks twice for imported cjs
Previously the resolve hook can be invoked twice from the
synthetic module evaluation step of imported CJS in the extra
module._load() call that's invoked on the resolved full path.
Add an option to avoid it, since the resolution and loading
has already been d... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -235,7 +235,7 @@ let statCache = null;\n * See more {@link Module._load}\n * @returns {object}\n */\n-function wrapModuleLoad(request, parent, isMain) {\n+function wrapModuleLoad(request, parent, isMain, options) {\n const logLabel = `[${pare... | 2026-02-02T23:04:23 |
golang/go | 23fde5c48c9bacb0ec8f5e21cc72191c64364ce1 | 2433a3f2d6463541269fcc65597f20f2d7613434 | cmd/link: add -macos and -macsdk flags to set LC_BUILD_VERSION
These are for debugging problems with the build versions
in the load commands. We still want to set them correctly by
default for most users, provided we can determine what that means.
Fixes #58722.
Change-Id: Iccab7044ac7b0c58e7e01258a5e374c4155528fc
Re... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -878,7 +878,7 @@ func addbuildinfo(ctxt *Link) {\n \t\t}\n \n \t\tif ctxt.IsDarwin() {\n-\t\t\tbuildinfo = uuidFromGoBuildId(buildID)\n+\t\t\tbuildinfo = uuidFromHash(hash.Sum32([]byte(buildID)))\n \t\t\treturn\n \t\t}\n ",
"additions": 1,
"d... | 2026-03-03T22:06:03 |
electron/electron | be45b5f8e76363d7217ce85f61fff900abff1070 | 87597a99dea91db10c3623e180da7129b213489c | ci: fixup build stats upload on Windows (#49845) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -98,7 +98,7 @@ runs:\n # Upload build stats to Datadog\n if ($env:DD_API_KEY) {\n try {\n- npx node electron\\script\\build-stats.mjs out\\Default\\siso.exe.INFO --upload-stats\n+ npx node ele... | 2026-02-18T20:00:30 |
facebook/react | 93fc57400b0cf9a2bfdc2765d94ee9984f2fd97f | 093b3246e162c2a6fd1a376506ed1144ed140226 | [Flight] Fix broken byte stream parsing caused by buffer detachment (#35127)
This PR fixes a critical bug where `ReadableStream({type: 'bytes'})`
instances passed through React Server Components (RSC) would stall after
reading only the first chunk or the first few chunks in the client. This
issue was masked by using `... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -4857,6 +4857,7 @@ export function processBinaryChunk(\n resolvedRowTag === 65 /* \"A\" */ ||\n resolvedRowTag === 79 /* \"O\" */ ||\n resolvedRowTag === 111 /* \"o\" */ ||\n+ resolvedRowTag === 9... | 2025-11-13T20:23:02 |
vercel/next.js | 69e2b9df2681da84a824930bd11105e993e67122 | 202db657d8392cbd2dd5f8f48cf39074e20b4136 | [test] Current behavior for request APIs in `generateStaticParams` (#91188)
Adds a dedicated test suite that asserts on the errors thrown when `cookies`, `headers`, `connection`, `draftMode`, and `next/root-params` are called inside `generateStaticParams`. Currently, these all fail because `generateStaticParams` runs ... | [
{
"path": "test/production/app-dir/generate-static-params-errors/app/[lang]/connection/[slug]/page.tsx",
"patch": "@@ -0,0 +1,10 @@\n+import { connection } from 'next/server'\n+\n+export default function Page() {\n+ return <p>connection</p>\n+}\n+\n+export async function generateStaticParams() {\n+ await ... | 2026-03-13T21:37:40 |
rust-lang/rust | 94ee70ed59f72c70150eb93f436094f6f15668c4 | 7a092c466a4d5b4e1a57c0086e565dcec8ce51ba | borrowck: Don't mention unused vars in outlive errors
When there is a lifetime error, the code does its best to find variables
that correspond to the lifetimes involved. This commit stops mentioning
arguments that are unused in closures, since they are not relevant.
See the diff of the blessed test to get a good clue... | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/var_name.rs",
"patch": "@@ -1,12 +1,15 @@\n use rustc_index::IndexSlice;\n-use rustc_middle::mir::{Body, Local};\n+use rustc_middle::mir::visit::{PlaceContext, VisitPlacesWith, Visitor};\n+use rustc_middle::mir::{Body, Local, Place};\n use rustc_middle::ty:... | 2026-04-01T09:25:51 |
nodejs/node | 61a4a30e0e157ad46d48b56f39c6bf42a062d534 | 8e41b8d0c2d4e6312a6b8d2ebe17b7f211020532 | test_runner: fix test enqueue when test file has syntax error
PR-URL: https://github.com/nodejs/node/pull/61573
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> | [
{
"path": "lib/internal/test_runner/runner.js",
"patch": "@@ -874,7 +874,10 @@ function run(options = kEmptyObject) {\n );\n if (topLevelTestCount === root.subtests.length) {\n // This file had no tests in it. Add the placeholder test.\n- const subtest = ro... | 2026-02-02T16:57:37 |
electron/electron | dfdf04976e3b0b2177fbac391fca9232c8d0d33d | f4ba25a3daa41d6a9246e1c1c15fa55b595d50a9 | fix: draggable region position with docked DevTools (#49822) | [
{
"path": "shell/browser/api/electron_api_web_contents_view.cc",
"patch": "@@ -83,8 +83,16 @@ void WebContentsView::ApplyBorderRadius() {\n \n int WebContentsView::NonClientHitTest(const gfx::Point& point) {\n if (api_web_contents_) {\n+ // Convert the point to the contents view's coordinate space rath... | 2026-02-18T16:49:18 |
golang/go | 2433a3f2d6463541269fcc65597f20f2d7613434 | bd5dc3a2fbde68835326d3b1d9fc480bcf6da086 | net: actually re-check resolv.conf when no explicit nameservers detected
Follow-up of CL 739620. I think it is wrong, since there is no
way dc.servers == 0, since we always set it to defaultNS.
Change-Id: Ibb76bfeb2b7974301d3515d90517d7766a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/741140
Reviewed-... | [
{
"path": "src/net/dnsclient_unix.go",
"patch": "@@ -366,7 +366,11 @@ type resolverConfig struct {\n var resolvConf resolverConfig\n \n func getSystemDNSConfig() *dnsConfig {\n-\tresolvConf.tryUpdate(\"/etc/resolv.conf\")\n+\treturn getSystemDNSConfigNamed(\"/etc/resolv.conf\")\n+}\n+\n+func getSystemDNSCon... | 2026-02-02T18:31:31 |
facebook/react | 3a495ae72264c46b4a4355904c6b4958b0a2f9b2 | bbe3f4d322846083c57009dbd6121900f120b389 | [compiler] source location validator (#35109)
@josephsavona this was briefly discussed in an old thread, lmk your
thoughts on the approach. I have some fixes ready as well but wanted to
get this test case in first... there's some things I don't _love_ about
this approach, but end of the day it's just a tool for the te... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -105,6 +105,7 @@ import {inferMutationAliasingRanges} from '../Inference/InferMutationAliasingRan\n import {validateNoDerivedComputationsInEffects} from '../Validation/ValidateNoDerivedComputationsInEffects';\... | 2025-11-13T03:02:46 |
rust-lang/rust | 7a092c466a4d5b4e1a57c0086e565dcec8ce51ba | a40ea0af41c3462cc29f49158900915032ce4453 | tests: Add borrowck/var-matching-lifetime-but-unused-not-mentioned.rs
So that the impact of the commit that fixes the test can be seen
clearly. | [
{
"path": "tests/ui/borrowck/var-matching-lifetime-but-unused-not-mentioned.rs",
"patch": "@@ -0,0 +1,17 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/113121>.\n+\n+#![allow(unused_variables)]\n+\n+fn consume<T: 'static>(_: T) {}\n+\n+fn foo<'a>(\n+ used_arg: &'a u8,\n+ unused... | 2026-04-01T04:29:14 |
nodejs/node | 8e41b8d0c2d4e6312a6b8d2ebe17b7f211020532 | baba7483fc6e0f53c83febc23798f92d8034696f | sea: print error information when fs operations fail
PR-URL: https://github.com/nodejs/node/pull/61581
Refs: https://github.com/nodejs/node/issues/61579
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises G... | [
{
"path": "src/node_sea_bin.cc",
"patch": "@@ -395,8 +395,10 @@ ExitCode BuildSingleExecutable(const std::string& sea_config_path,\n uv_fs_t req;\n int r = uv_fs_stat(nullptr, &req, config.executable_path.c_str(), nullptr);\n if (r != 0) {\n- FPrintF(\n- stderr, \"Error: Couldn't stat execut... | 2026-01-29T22:06:43 |
electron/electron | f4ba25a3daa41d6a9246e1c1c15fa55b595d50a9 | 05061544ab7bada371d96f82674f0769af4b1fc3 | fix: frameless window resize in MAS builds (#49780) | [
{
"path": "patches/chromium/fix_adjust_headless_mode_handling_in_native_widget.patch",
"patch": "@@ -23,26 +23,26 @@ additional headless changes from breaking macOS window behavior.\n https://chromium-review.googlesource.com/c/chromium/src/+/7487666\n \n diff --git a/components/remote_cocoa/app_shim/native_... | 2026-02-18T15:35:10 |
rust-lang/rust | 253c03aa9d1e810cc4226fce7ccb1431dd4108d0 | 3ebe60c8c30d1175019dcbdb957441cd84aa1220 | Add a test for a past ICE when calling a const fn with the wrong number of arguments | [
{
"path": "tests/ui/consts/ice-extra-args-fn-abi-issue-127423.rs",
"patch": "@@ -0,0 +1,18 @@\n+// #127423: ICE: assertion failed: sig.c_variadic || extra_args.is_empty()\n+// Calling a const fn with the wrong number of arguments where the function has\n+// an unresolved type should not trigger an ICE.\n+//... | 2026-03-31T16:57:34 |
facebook/react | bbe3f4d322846083c57009dbd6121900f120b389 | 1ea46df8ba9d7d90a13c8668c2642cb21a259aa5 | [flags] disableLegacyMode in native-fb (#35120)
this is failing test too because we need the legacy mode in the react
package until we fix the tests | [
{
"path": "packages/react-native-renderer/src/__tests__/ReactFabricAndNative-test.internal.js",
"patch": "@@ -40,7 +40,6 @@ describe('created with ReactFabric called with ReactNative', () => {\n require('react-native/Libraries/ReactPrivate/ReactNativePrivateInterface').getNativeTagFromPublicInstance;\... | 2025-11-12T20:38:58 |
golang/go | e22dc6c86685aef76a9bb22ff186d4cd5a822027 | a95f60871f52f3701e596c07b0e7bf8a3b1619ed | context: modernize AfterFunc example using WaitGroup.Go
The context.AfterFunc example currently uses the traditional
sync.WaitGroup pattern with Add and Done.
Update the example to use sync.WaitGroup.Go instead.
Fixes #78018
Change-Id: I079a773a6ec1c65f26af2bd8092067843adb1cd1
GitHub-Last-Rev: 9e648ae4241ca0647d3a5... | [
{
"path": "src/context/example_test.go",
"patch": "@@ -161,11 +161,8 @@ func ExampleAfterFunc_cond() {\n \tcond := sync.NewCond(new(sync.Mutex))\n \n \tvar wg sync.WaitGroup\n-\tfor i := 0; i < 4; i++ {\n-\t\twg.Add(1)\n-\t\tgo func() {\n-\t\t\tdefer wg.Done()\n-\n+\tfor range 4 {\n+\t\twg.Go(func() {\n \t\... | 2026-03-09T01:31:02 |
vercel/next.js | e22988e5ee494a248e878cf15d8c14afedcc8bab | fb0686d866613f0fb1c88121a80f36b491e88f37 | Turbopack: switch chunk/asset hashes from hex to base40 encoding (#91137)
### What?
Switch Turbopack's hash encoding for chunk and asset output filenames
from hexadecimal (base16) to base40, using the alphabet \`0-9 a-z _ - ~
.\`. Version hashes (used for HMR update comparison, not filenames) use
base64 instead.
###... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -11,13 +11,13 @@ use turbopack::module_options::{\n side_effect_free_packages_glob,\n };\n use turbopack_browser::{\n- BrowserChunkingContext, ContentHashing, CurrentChunkMethod,\n- react_refresh::assert_can_resolve_react_refres... | 2026-03-13T20:38:02 |
nodejs/node | 5212c07147ed98bb5eae94211b8c7fab3be9964a | c9673b839392b444718e58be9b46cf2e446305b7 | net: add `setTOS` and `getTOS` to `Socket`
PR-URL: https://github.com/nodejs/node/pull/61503
Fixes: https://github.com/nodejs/node/issues/61489
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/net.md",
"patch": "@@ -747,6 +747,9 @@ it to interact with the client.\n <!-- YAML\n added: v0.3.4\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61503\n+ description: Added `typeOfService` option.\n - version: v15.14.0\n pr-url: https://git... | 2026-02-02T11:23:31 |
electron/electron | 05061544ab7bada371d96f82674f0769af4b1fc3 | 10566c2d5f41e2fc8b77de591f2bd3e0406c0042 | feat: enable WASM trap handlers in all Node.js processes (#48983)
fix: enable WASM trap handlers in all Node.js processes
```
Original reason for revert:
Some apps started throwing exception on startup
https://github.com/electron/electron/issues/48956
```
We now move the trap handler registeration before
any user s... | [
{
"path": "build/fuses/fuses.json5",
"patch": "@@ -9,5 +9,6 @@\n \"embedded_asar_integrity_validation\": \"0\",\n \"only_load_app_from_asar\": \"0\",\n \"load_browser_process_specific_v8_snapshot\": \"0\",\n- \"grant_file_protocol_extra_privileges\": \"1\"\n+ \"grant_file_protocol_extra_privileges\"... | 2026-02-18T03:08:03 |
facebook/react | db8273c12f363f350330c4712aeaf969a3eee820 | 04ee54cd128a48cb3fdac7256e1a45d6d9743d8c | [compiler] Update test snap to include fixture comment (#35100)
Summary:
I missed this test case failing and now having @loggerTestOnly after
landing some other PRs good to know they're not land blocking
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [Revi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/effect-derived-computations/usestate-derived-from-prop-no-show-in-data-flow-tree.expect.md",
"patch": "@@ -2,30 +2,36 @@\n ## Input\n \n ```javascript\n-// @validateNoDerivedComputationsInEffects_exp\n+// @validateNoDer... | 2025-11-11T18:16:04 |
golang/go | a95f60871f52f3701e596c07b0e7bf8a3b1619ed | 3694f3369276d072d3eccd03b1855b18d3ecee18 | cmd/compile: fix mips64 CALLtailinter argument count
It should be 2, not 1.
Fixes #78013
Change-Id: If1c48c84c324a3fd50e9f4b43cca2ea62a995dc5
Reviewed-on: https://go-review.googlesource.com/c/go/+/752740
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Keith... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go",
"patch": "@@ -275,7 +275,7 @@ func init() {\n \t\t// function calls\n \t\t{name: \"CALLstatic\", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: \"CallOff\", clobberFlags: true, call: true}, // c... | 2026-03-08T04:17:39 |
vercel/next.js | 236a76dd0fb61196dfb4da1568c0eb42c5d17283 | 00067f40bdcf642ce69b8110819bf114d256c228 | [turbopack] Remove `turbo_tasks::function` from ModuleReference getters (#91229)
### What?
Refactors the `ModuleReference` trait to make `chunking_type()` and `binding_usage()` methods return direct values instead of `Vc<T>` wrapped values, removing the need for async task functions.
Also removes the `get_referenced... | [
{
"path": "crates/next-api/src/nft_json.rs",
"patch": "@@ -7,7 +7,7 @@ use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, ValueToString, Vc,\n graph::{AdjacencyMap, GraphTraversal, Visit},\n- turbobail, turbofmt,\n+ turb... | 2026-03-13T18:54:56 |
nodejs/node | 6c44d31e2522021b724096939bc44defa42ec6a5 | 356e4aef59c5cf09dd8a0f09d896e4d71c7e2a67 | doc: fix node-config-schema
PR-URL: https://github.com/nodejs/node/pull/61596
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Colin Ihrig <cji... | [
{
"path": "doc/node-config-schema.json",
"patch": "@@ -1,12 +1,14 @@\n {\n \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n \"additionalProperties\": false,\n+ \"required\": [],\n \"properties\": {\n \"$schema\": {\n \"type\": \"string\"\n },\n \"nodeOptions\": {\n ... | 2026-02-01T21:50:55 |
electron/electron | 931c257de7f077f104362122f2202810612dd347 | 459a88f78810e58ebe8ec2a3801f8cd984383304 | fix: accurate window sizing and support for content sizing on Linux/Wayland with CSD (#49209)
* fix window sizing and content sizing on Linux when CSD is in use
* fixed size constraints
* simplify min/max size calculation
* use base window size for min/max
* moved windows min/max size overrides
* remove unnecessa... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -29,6 +29,7 @@\n #include \"shell/browser/api/electron_api_system_preferences.h\"\n #include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/ui/inspectable_web_contents_view.h\"\n+#include \"shell/browser/ui/views/fr... | 2026-02-17T20:23:54 |
facebook/react | 92ac4e8b80cb51a1be7071e8338176680ce8f619 | f76c3617e0f00c98656a36d1b4083b397c7638f2 | [compiler] Don't validate when effect cleanup function depends on effect localized setState state derived values (#35020)
Summary:
If we are using a clean up function in an effect and that clean up
function depends on a value that is used to set the state we are
validating for we shouldn't throw an error since it is a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -568,6 +568,26 @@ function renderTree(\n return result;\n }\n \n+function getFnLocalDeps(\n+ fn: FunctionExpression | undefined,\n+): Set<IdentifierId> | undefined {\n+ if... | 2025-11-10T20:28:19 |
rust-lang/rust | 339fb64d1c751de5d781f4c8d51ae37b613ba644 | e18dd4a9925015045bbb54e0291d0bf060cdcf43 | skip early return for region-only errors in projection types | [
{
"path": "compiler/rustc_trait_selection/src/traits/project.rs",
"patch": "@@ -659,7 +659,9 @@ fn project<'cx, 'tcx>(\n )));\n }\n \n- if let Err(guar) = obligation.predicate.error_reported() {\n+ // We can still compute a projection type when there are only region errors,\n+ // but ty... | 2026-03-16T14:08:32 |
golang/go | 3694f3369276d072d3eccd03b1855b18d3ecee18 | 38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79 | runtime: GODEBUG=tracebacklabels=1 for 1.27+
https://go.dev/cl/742580 updated the goroutine label format in
tracebacks to only quote the values under some circumstances, and use a
more broadly acceptable format. Flip the GODEBUG=tracebacklabels default
for go 1.27+ modules.
Notably, tracebacklabels is marked as Opaqu... | [
{
"path": "doc/godebug.md",
"patch": "@@ -167,6 +167,11 @@ escaped. Setting `htmlmetacontentescape=0` disables this behavior. To avoid\n content injection attacks, this setting and default was backported to Go 1.25.8\n and Go 1.26.1.\n \n+Go 1.27 changes the default for `tracebacklabels` (added in [Go 1.26]... | 2026-03-04T21:34:24 |
nodejs/node | 27a7bbc624e4751ca53cd8736336f1ed78cbd1ca | f6464c57f6d36894506ac92ef3e6951c999b5ed2 | assert: fix loose deepEqual arrays with undefined and null failing
The comparison has to accept these as identical.
Fixes: https://github.com/nodejs/node/issues/61583
PR-URL: https://github.com/nodejs/node/pull/61587
Reviewed-By: Jithil P Ponnan <jithil@outlook.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Review... | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -998,9 +998,10 @@ function objEquiv(a, b, mode, keys1, keys2, memos, iterationType) {\n if (b[i] === undefined) {\n if (!hasOwn(b, i))\n return sparseArrayEquiv(a, b, mode, memos, i);\n- if (a[i] !== undefined || !hasO... | 2026-02-01T13:00:17 |
vercel/next.js | a6b36200ff911771e9b8ff5582b780ea625c1690 | 112666134c49a95d1056409a3cd185e54cff9584 | Wire cache handlers in edge paths and add e2e regression coverage (#91236)
### What?
This PR wires custom `cacheHandler` / `cacheHandlers` through the
remaining edge entrypoints so edge app pages, edge app routes, edge
pages SSR, middleware, and edge API routes can all see the configured
handlers.
It also adds an e2... | [
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -90,6 +90,7 @@ impl MiddlewareEndpoint {\n self.project.project_path().owned().await?,\n userland_module,\n is_proxy,\n+ self.project.next_config(),\n );\n \n if matches!(self.runtime, ... | 2026-03-13T17:25:59 |
electron/electron | 459a88f78810e58ebe8ec2a3801f8cd984383304 | c98cf69f402d1af0afbd8286331dbf75a9ec58b5 | docs: fix typos across tutorial documentation (#49736) | [
{
"path": "docs/tutorial/asar-archives.md",
"patch": "@@ -6,7 +6,7 @@ hide_title: false\n ---\n \n After creating an [application distribution](application-distribution.md), the\n-app's source code are usually bundled into an [ASAR archive](https://github.com/electron/asar),\n+app's source code is usually b... | 2026-02-17T19:47:45 |
rust-lang/rust | e18dd4a9925015045bbb54e0291d0bf060cdcf43 | 12ab1cf1fd3dc925a846b0eb8a4b39393140fdd3 | add `TypeFlags::HAS_NON_REGION_ERROR` and `TypeFlags::HAS_RE_ERROR` | [
{
"path": "compiler/rustc_middle/src/ty/region.rs",
"patch": "@@ -291,7 +291,7 @@ impl<'tcx> Region<'tcx> {\n }\n ty::ReError(_) => {\n flags = flags | TypeFlags::HAS_FREE_REGIONS;\n- flags = flags | TypeFlags::HAS_ERROR;\n+ flags = flags... | 2026-03-16T14:07:03 |
facebook/react | 72961203966a2f1d34dfca089e0a94a94ead7658 | 6347c6d37336c7791098d2d817b22f02ea41a5d3 | [compiler] Update ValidateNoDerivedComputationsInEffects_exp to log the error instead of throwing (#34972)
Summary:
TSIA
Simple change to log errors in Pipeline.ts instead of throwing in the
validation
Test Plan:
updated snap tests
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -277,7 +277,7 @@ function runWithEnvironment(\n }\n \n if (env.config.validateNoDerivedComputationsInEffects_exp) {\n- validateNoDerivedComputationsInEffects_exp(hir);\n+ env.logErrors(valida... | 2025-11-10T20:16:13 |
golang/go | 38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79 | bcc369284d5ed042e1155ac11ccf15ea2990a64e | cmd/compile: forward small Load through Move to avoid redundant copies
Fixes #77720
Add a generic SSA rewrite that forwards `Load` from a `Move` destination
back to the `Move` source when it is provably safe, so field reads like
`s.h.Value().typ` don’t force a full struct copy.
- Add `Load <- Move` rewrite in `gener... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -797,6 +797,12 @@\n \t&& disjoint(p5, t5.Size(), p4, t4.Size())\n \t=> x\n \n+// Load from a region just copied by Move can read directly from the source.\n+(Load <t1> op:(OffPtr [o1] p1) move:(Move [n] p2 src mem))\n+\t&& o1 >= 0 && ... | 2026-02-23T20:20:20 |
nodejs/node | f6464c57f6d36894506ac92ef3e6951c999b5ed2 | f200685d9930404d610a52d9e06513bf0a821ed4 | sqlite: change approach to fix segfault SQLTagStore
PR-URL: https://github.com/nodejs/node/pull/60462
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Zeyu "Ale... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -2819,6 +2819,7 @@ BaseObjectPtr<SQLTagStore> SQLTagStore::Create(\n .ToLocal(&obj)) {\n return nullptr;\n }\n+ obj->SetInternalField(kDatabaseObject, database->object());\n return MakeBaseObject<SQLTagStore>(env, obj, std::move(database), cap... | 2026-01-31T06:35:30 |
rust-lang/rust | 8a5993639b491b69cd5fa6479a058d3f8e162ed8 | b1bbd8db82a5008172c7899f8afe78fa9dde9213 | PTHREAD_*_INITIALIZER: only compare a prefix on android | [
{
"path": "src/tools/miri/src/shims/unix/sync.rs",
"patch": "@@ -6,16 +6,20 @@ use crate::*;\n \n /// Do a bytewise comparison of the two places. This is used to check if\n /// a synchronization primitive matches its static initializer value.\n+///\n+/// `prefix`, if set, indicates that only the first N byt... | 2026-04-01T08:23:07 |
vercel/next.js | 0e6ab3f5487a49ec0ff4d7ab39dd1a6afec73cde | 834c41ef20861dffcd3511cdfabd9fd2dfa25343 | [Prefetch Inlining] Generate size-based hints on server (#90891)
Part 1 of 2. This commit adds the server-side infrastructure for
size-based segment bundling but does not change any observable behavior.
The client-side changes that actually consume bundled responses are in
the next commit.
At build time, a measuremen... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -7,6 +7,7 @@ import type {\n import type { MiddlewareManifest } from './webpack/plugins/middleware-plugin'\n import type { ActionManifest } from './webpack/plugins/flight-client-entry-plugin'\n import type { CacheControl, Revalidate } from '../serve... | 2026-03-13T16:09:25 |
facebook/react | 6347c6d37336c7791098d2d817b22f02ea41a5d3 | 01fb3286321b6190b06b1cc86c7c1cd9e2d884d9 | [compiler] Fix false negatives and add data flow tree to compiler error for `no-deriving-state-in-effects` (#34995)
Summary:
Revamped the derivationCache graph.
This fixes a bunch of bugs where sometimes we fail to track from which
props/state we derived values from.
Also, it is more intuitive and allows us to easil... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -33,6 +33,7 @@ type DerivationMetadata = {\n typeOfValue: TypeOfValue;\n place: Place;\n sourcesIds: Set<IdentifierId>;\n+ isStateSource: boolean;\n };\n \n type Valida... | 2025-11-10T20:09:13 |
golang/go | 703cc8abeca5ff4f3da1df6766c6abf43462257b | 8da2be3cd01a27830f7b2209f30850b1e1c83f00 | io/fs: document when ErrClosed should be returned
Pull ErrClosed out of the grouped var declaration so it can have its
own doc comment explaining that file system implementations should
return it when operations are attempted on a closed file.
Fixes #63918
Change-Id: I1fe2041c594ad6fd37e240e21fe9b3d4104daa46
Reviewe... | [
{
"path": "src/io/fs/fs.go",
"patch": "@@ -155,9 +155,12 @@ var (\n \tErrPermission = errPermission() // \"permission denied\"\n \tErrExist = errExist() // \"file already exists\"\n \tErrNotExist = errNotExist() // \"file does not exist\"\n-\tErrClosed = errClosed() // \"file already c... | 2026-02-17T01:26:33 |
electron/electron | c98cf69f402d1af0afbd8286331dbf75a9ec58b5 | 0da0c3a47e950df206960bd33c424b109a166e2b | chore: bump chromium to 147.0.7687.0 (main) (#49782)
* chore: bump chromium in DEPS to 147.0.7683.0
* fix(patch): constant moved to header
Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7536483
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix(patch): occlusion simplification upstream
... | [
{
"path": ".claude/skills/electron-chromium-upgrade/SKILL.md",
"patch": "@@ -7,14 +7,13 @@ description: Guide for performing Chromium version upgrades in the Electron proj\n \n ## Summary\n \n-Run `e sync --3` repeatedly, fixing patch conflicts as they arise, until it succeeds. Then run `e patches all` and ... | 2026-02-17T19:25:21 |
nodejs/node | ea83d326f7bc568a421b7f108f07e935c786d0f7 | 3fbb8b7efc910684a52cc0355d196e666fd29fb3 | test_runner: fix passing `expectFailure`
PR-URL: https://github.com/nodejs/node/pull/61568
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Chemi... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -82,6 +82,7 @@ const kParentAlreadyFinished = 'parentAlreadyFinished';\n const kSubtestsFailed = 'subtestsFailed';\n const kTestCodeFailure = 'testCodeFailure';\n const kTestTimeoutFailure = 'testTimeoutFailure';\n+const kExpectedFailure = 'expected... | 2026-01-30T17:41:45 |
vercel/next.js | 834c41ef20861dffcd3511cdfabd9fd2dfa25343 | c1f13e48b0ddd9887a99d486f2c9b190584d4a0e | Respect `generateStaticParams` in instant navigation shell (#91316)
When the instant navigation testing cookie is set, the debug static
shell path previously called `getFallbackRouteParams()` which treats all
dynamic segments as fallback params regardless of
`generateStaticParams`. This caused two issues:
- Root para... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -938,19 +938,29 @@ export async function handler(\n : normalizedSrcPage\n \n const fallbackRouteParams =\n- // If we're in production and we have fallback route params, always\n- // use them... | 2026-03-13T16:03:59 |
facebook/react | 01fb3286321b6190b06b1cc86c7c1cd9e2d884d9 | ce4054ebdd550237cf20a509f8503d4624cbaffa | [compiler] Prevent overriding a derivationEntry on effect mutation and instead update typeOfValue and fix infinite loops (#34967)
Summary:
With this we are now comparing a snapshot of the derivationCache with
the new changes every time we are done recording the derivations
happening in the HIR.
We have to do this aft... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -47,6 +47,43 @@ type ValidationContext = {\n class DerivationCache {\n hasChanges: boolean = false;\n cache: Map<IdentifierId, DerivationMetadata> = new Map();\n+ private... | 2025-11-10T20:08:05 |
golang/go | 28b1d8886b3bd5645f8bfebb7713358a1551d435 | b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb | cmd/compile: fix ICE when checking slice cap
CL 226737 optimized len check when make slice in common case when len is
within range of cap. However, the generated code does not walk the AST
for the if condition, causing un-walked nodes passed to the backend.
Fixes #78028
Change-Id: I492fb230c10e585dc09391728ef4df2c00... | [
{
"path": "src/cmd/compile/internal/walk/builtin.go",
"patch": "@@ -455,7 +455,7 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tniflen := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OLT, len, ir.NewInt(base.Pos, 0)), nil, nil)\n \t\t\tniflen.Body = []ir.Node{mkcall(\"panicm... | 2026-03-09T11:51:53 |
nodejs/node | 938f175dbeffe85ca9e96b88f9ee599fe80ea42d | ec15c3b7b14a09b64c8bf0a3f117fbf16302a9b3 | stream: add bytes() method to stream/consumers
- Add bytes() method to get Uint8Array from streams
- Add tests for bytes() method in PassThrough and ObjectMode scenarios
- Update documentation
Fixes: https://github.com/nodejs/node/issues/59542
PR-URL: https://github.com/nodejs/node/pull/60426
Reviewed-By: Ethan Arrow... | [
{
"path": "doc/api/webstreams.md",
"patch": "@@ -1694,6 +1694,43 @@ buffer(readable).then((data) => {\n });\n ```\n \n+#### `streamConsumers.bytes(stream)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `stream` {ReadableStream|stream.Readable|AsyncIterator}\n+* Returns: {Promise} Fulfills with a {Uint8Arra... | 2026-01-29T13:24:39 |
electron/electron | a056c63fd81eb3c199972a9313f3d1615e2d31d9 | bf3eb098bda229c139aaae4f50c2304dc8306ecb | fix: excise `abort_report_np` usage in MAS (#49726)
* fix: excise abort_report_np usage in MAS
* chore: fix it harder | [
{
"path": "patches/chromium/mas_avoid_private_macos_api_usage.patch.patch",
"patch": "@@ -61,6 +61,127 @@ index 01b3ae3c904b76a0421f0562cfcd887980087d80..b712db260fb9b941da82b6a4d1849db1\n ]\n \n # Used by metrics/crc32\n+diff --git a/base/allocator/BUILD.gn b/base/allocator/BUILD.gn\n+index 2cc49d83... | 2026-02-16T11:23:53 |
vercel/next.js | 254478317305c17871db277808eecd81ea6dd634 | 5903c030dc41b506ed344aff1c3f35315af085a4 | Skip dimming when `--inspect` is used (#91271)
When the Node.js inspector is active (e.g. via `next dev --inspect`),
dimming wraps console arguments in a format string which defeats
inspector affordances such as collapsible objects and
clickable/linkified stack traces.
This adds an early return in `convertToDimmedArg... | [
{
"path": "packages/next/src/server/node-environment-extensions/console-dim.external.test.ts",
"patch": "@@ -357,4 +357,61 @@ describe('console-exit patches', () => {\n ])\n })\n })\n+\n+ describe('inspector-aware dimming', () => {\n+ it('should skip dimming when inspector is open', async ()... | 2026-03-13T15:17:43 |
facebook/react | 52684925368a41a0c9fbfca9016cdcbb72fc9d1e | c83be7da9f0861770d7df52842d1c3dfe60f0927 | Fix: Activity should hide portal contents (#35091)
This PR updates the behavior of Activity so that when it is hidden, it
hides the contents of any portals contained within it.
Previously we had intentionally chosen not to implement this behavior,
because it was thought that this concern should be left to the userspa... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMActivity-test.js",
"patch": "@@ -0,0 +1,134 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @e... | 2025-11-10T15:42:26 |
nodejs/node | ec15c3b7b14a09b64c8bf0a3f117fbf16302a9b3 | 68d7b6f87098416dc30fbb711fdff64fc2102809 | test_runner: add env option to run function
Support an `env` option that is passed to the underlying child_process.
Fixes: https://github.com/nodejs/node/issues/60709
PR-URL: https://github.com/nodejs/node/pull/61367
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1435,6 +1435,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61367\n+ description: Add the `env` option.\n - version: v24.7.0\n pr-url: https://github.com/nodejs/node/pull/59443... | 2026-01-29T08:18:11 |
golang/go | b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb | 43f8fb27ae5aed5a65b50c8dc49ef1557c1b293b | test/fixedbugs: increase issue46234 test timeout
issue46234 is flaky on slow machines, so increase the timeout to 90s.
Note that that test timeout already got increased from 30s to 45s in
CL 382774, but it was still not enough.
Fixes #50973
Fixes #67558
Fixes #74277
Updates #65040
Cq-Include-Trybots: luci.golang.tr... | [
{
"path": "test/fixedbugs/issue46234.go",
"patch": "@@ -1,4 +1,4 @@\n-// buildrun -t 45\n+// buildrun\n \n //go:build !js && !wasip1\n ",
"additions": 1,
"deletions": 1,
"language": "Go"
}
] | 2026-02-20T16:34:51 |
electron/electron | bf3eb098bda229c139aaae4f50c2304dc8306ecb | 67cced1270074a91075265fa1d7f6763988dc842 | fix: missing shared texture docs (#49797) | [
{
"path": "shell/common/api/shared_texture/README.md",
"patch": "@@ -0,0 +1,47 @@\n+# Importing Shared Texture\n+\n+This document describes the design of the `sharedTexture` API that imports external shared textures into Electron as a `VideoFrame`. Written based on Electron 37 and Chromium 137. Note that Ch... | 2026-02-16T09:51:31 |
vercel/next.js | a65c3c86e762623278d1d9aca317c0afbc90bce0 | 0b5f67d7b98bef023bf34257b05fa0ae810ac660 | Hydrate page loads during instant navigation testing (#91207)
Previously, MPA page loads (reload, anchor navigation) while the instant
navigation lock was held would skip hydration entirely and hard-reload
when the lock released. This meant the page was non-interactive during
the locked period and tests couldn't asser... | [
{
"path": "package.json",
"patch": "@@ -146,6 +146,7 @@\n \"@next/polyfill-module\": \"workspace:*\",\n \"@next/polyfill-nomodule\": \"workspace:*\",\n \"@next/swc\": \"workspace:*\",\n+ \"@next/playwright\": \"workspace:*\",\n \"@next/third-parties\": \"workspace:*\",\n \"@openteleme... | 2026-03-12T23:03:05 |
facebook/react | 717e70843e68db648d2fc75c57d1a61465a9f7f9 | a10ff9c8577004fa054be4f83906a29289bbffb9 | Fix: Errors should not escape a hidden Activity (#35074)
If an error is thrown inside a hidden Activity, it should not escape
into the visible part of the UI. Conceptually, a hidden Activity
boundary is not part of the current UI; it's the same as an unmounted
tree, except for the fact that the state will be restored ... | [
{
"path": "packages/react-reconciler/src/ReactFiberThrow.js",
"patch": "@@ -12,7 +12,10 @@ import type {Lane, Lanes} from './ReactFiberLane';\n import type {CapturedValue} from './ReactCapturedValue';\n import type {Update} from './ReactFiberClassUpdateQueue';\n import type {Wakeable} from 'shared/ReactType... | 2025-11-07T23:18:24 |
golang/go | 2a5890cd46e5658b5ceab6cfd7a06b3bfe947fb9 | e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966 | cmd/go/internal/cache: update trim timestamp before trimming
This reduces the chance that multiple go commands running in CI will
try to trim at the same time, causing contention and slowing things
down.
Fixes #76314
Change-Id: I3edf818fc9583795f3f51b715fdbe75b6a6a6964
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/go/internal/cache/cache.go",
"patch": "@@ -385,13 +385,42 @@ func (c *DiskCache) Trim() error {\n \t// trim time is too far in the future, attempt the trim anyway. It's possible that\n \t// the cache was full when the corruption happened. Attempting a trim on\n \t// an empty cache is chea... | 2026-03-09T17:51:56 |
nodejs/node | 6cc2ed56dae896078eff38083d9bd2ba42ffac38 | 859332bf76a0f56953105b0e3822663b39b41132 | buffer: disallow ArrayBuffer transfer on pooled buffer
PR-URL: https://github.com/nodejs/node/pull/61372
Fixes: https://github.com/nodejs/node/issues/61362
Refs: https://github.com/v8/v8/commit/c5ff7c4d6cdea06d0319609875c41eaa77b70db0
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: René <contact.9a5d6388... | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -256,6 +256,8 @@ In particular, this makes sense for objects that can be cloned, rather than\n transferred, and which are used by other objects on the sending side.\n For example, Node.js marks the `ArrayBuffer`s it uses for its\n [`Buffer` pool][`Buffer.a... | 2026-01-13T15:04:58 |
electron/electron | 3a5f9e0a337a5d7b7dcb9984dde9876be725ddf7 | f90e35cb4566b410a543a38f57452ca84bb69923 | chore: bump node to v24.13.1 (main) (#49744)
* chore: bump node in DEPS to v24.13.1
* chore: fixup patches
refs:
* https://github.com/nodejs/node/pull/60425
* https://github.com/nodejs/node/pull/61270
* https://github.com/nodejs/node/pull/61044
* fix: generate_config_gypi needs to generate valid JSON
https://githu... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '146.0.7666.0',\n 'node_version':\n- 'v24.13.0',\n+ 'v24.13.1',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2026-02-13T08:48:05 |
vercel/next.js | 0b5f67d7b98bef023bf34257b05fa0ae810ac660 | 5809756f5599f9cd5fd8396b44eb7a4d9668479e | docs(turbopack): Migrate docs about traits from mdbook to rustdocs (#91170)
Migrates the content from https://turbopack-rust-docs.vercel.sh/turbo-engine/traits.html over to rustdocs, and tries to update/fix some minor mistakes our outdated docs.
![Screenshot 2026-03-10 at 14-38-39 value_trait in turbo_tasks - Rust.pn... | [
{
"path": "turbopack/crates/turbo-tasks/src/lib.rs",
"patch": "@@ -71,7 +71,7 @@ pub use anyhow::{Error, Result};\n use auto_hash_map::AutoSet;\n use rustc_hash::FxHasher;\n pub use shrink_to_fit::ShrinkToFit;\n-pub use turbo_tasks_macros::{turbobail, turbofmt, value_impl};\n+pub use turbo_tasks_macros::{tu... | 2026-03-12T22:47:38 |
nodejs/node | 859332bf76a0f56953105b0e3822663b39b41132 | a9dd48f64b5189c1870885adf5285a8b20486a38 | deps: V8: cherry-pick c5ff7c4d6cde
Original commit message:
[builtins] disallow ArrayBuffer transfer with a detach key
This allows embedder to disallow `ArrayBuffer.prototype.transfer()` on
an arraybuffer that is not detachable. This also fix the check on
`ArrayBufferCopyAndDetach` step 8 of `ArrayBu... | [
{
"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... | 2026-01-14T19:55:26 |
golang/go | e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966 | e84da0405bcf64c7dbaafb0afc14388049a9b6fc | internal/poll: move rsan to heap on windows
According to https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsarecvfrom,
the memory pointed to by lpFromlen must remain available during the
overlapped I/O, and therefore cannot be allocated on the stack.
CL 685417 moved the rsan field out of the o... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -157,7 +157,7 @@ var wsaMsgPool = sync.Pool{\n \n // newWSAMsg creates a new WSAMsg with the provided parameters.\n // Use [freeWSAMsg] to free it.\n-func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMsg {\n+func newWSAMsg... | 2026-03-09T08:25:16 |
vercel/next.js | 5809756f5599f9cd5fd8396b44eb7a4d9668479e | b7438b4e98138c1dac1a310ace132fe0b91410d0 | bundle-analyzer: merge _app route modules into current route visualization (#90841)
This:
- Fetches `data/_app/analyze.data` alongside the current route's data
- Merges `_app` modules into the current route's `AnalyzeData` before
visualization using a `mergeAnalyzeData()`, which merges the two
datasets, reindexing th... | [
{
"path": "apps/bundle-analyzer/lib/analyze-data.ts",
"patch": "@@ -477,9 +477,4 @@ export class AnalyzeData {\n 'node_modules/next/dist/build/polyfills/polyfill-nomodule.js'\n )\n }\n-\n- // Get the raw header for debugging\n- getRawAnalyzeHeader(): AnalyzeDataHeader {\n- return this.analy... | 2026-03-12T21:52:36 |
electron/electron | 74fd10450f3fd85821ec158a4b87924526a6ae9d | a65cfed500c2bfac87307d4646eb481ae0637974 | feat: improve Windows Toast actions support (#48132)
* feat: improve Windows Toast actions support
* fix: ensure MSIX compatibility
* test: add bad clsid format test | [
{
"path": "docs/api/app.md",
"patch": "@@ -1122,6 +1122,19 @@ Updates the current activity if its type matches `type`, merging the entries fro\n \n Changes the [Application User Model ID][app-user-model-id] to `id`.\n \n+### `app.setToastActivatorCLSID(id)` _Windows_\n+\n+* `id` string\n+\n+Changes the [Toa... | 2026-02-12T22:25:20 |
golang/go | d82eb907f3ef66e99d1ef08c0b34ffffbd49de5e | f5d830d57ae0e490d73442d2e04f73322266dbc6 | testing: annotate output text type
Provides a way to disambiguate output produced by (*testing.T).Error{,f}
and (*testing.T).Fatal{,f} from other test logging. This allows test
tooling such as CI systems to identify which part of the output is most
pertinent for constructing summaries of test failures.
This is achiev... | [
{
"path": "src/cmd/go/testdata/script/test_json_ascii.txt",
"patch": "@@ -1,11 +1,11 @@\n ! go test -json\n \n-stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test\\\\n\"'\n+stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test... | 2024-11-16T15:42:53 |
vercel/next.js | b7438b4e98138c1dac1a310ace132fe0b91410d0 | 90861b0f3436544a0daf7cb4b475650d30f2079f | [Instant] Show owner stack for validation-blocking errors (#91277)
Adds extra context to errors that we think may have prevented
validation:
<img width="816" height="765" alt="Screenshot 2026-03-12 at 22 07 40"
src="https://github.com/user-attachments/assets/35ce60d0-4840-496e-b91e-62ada4096f64"
/>
This is particula... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1115,5 +1115,6 @@\n \"1114\": \"Route \\\"%s\\\" accessed root param \\\"%s\\\" which is not defined in the \\\\`samples\\\\` of \\\\`unstable_instant\\\\`. Add it to the sample's \\\\`params\\\\` object.\",\n \"1115\": \"Route \\\"%s\\\" accessed coo... | 2026-03-12T21:48:22 |
facebook/react | 37b089a59cc14b6442b27303942d62425f9cea35 | 1a31a814f16838e2c9edfce0d244264c43184f86 | Don't skip content in visible offscreen trees for View Transitions (#35063)
Also, don't not skip hidden trees.
Memoized state is null when an Offscreen boundary (Suspense or Activity)
is visible.
This logic was inversed in a couple of View Transition checks which
caused pairs to be discovered or not discovered incor... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -233,7 +233,7 @@ function commitAppearingPairViewTransitions(placement: Fiber): void {\n }\n let child = placement.child;\n while (child !== null) {\n- if (child.tag === OffscreenComponent && child.memoizedSt... | 2025-11-06T21:03:02 |
golang/go | f5d830d57ae0e490d73442d2e04f73322266dbc6 | 16cebc1165d0613051bb5ae97e1af856f8bc55f2 | cmd/go/internal/testdata: change list_std_vendor to use local modproxy
Also update get_panic_issue75251 to reflect that "golang.org/x/net" now
exists in the proxy. The new message is closer to the real world
behavior of the go command.
Change-Id: Icb916f7eb7628bf5340c15275f4d08086a6a6964
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/go/testdata/mod/golang.org_x_net_v0.1.0.txt",
"patch": "@@ -0,0 +1,10 @@\n+written by hand - just enough for list_std_vendor.txt\n+\n+-- .mod --\n+module golang.org/x/net\n+-- .info --\n+{\"Version\":\"v0.1.0\",\"Name\":\"\",\"Short\":\"\",\"Time\":\"2026-03-08T00:00:00Z\"}\n+-- go.mod --... | 2026-03-08T19:46:36 |
electron/electron | a65cfed500c2bfac87307d4646eb481ae0637974 | e9faa14cc0c57aad3e446cf32a6ae3599f94b9df | chore: bump chromium to 146.0.7666.0 (main) (#49528)
* chore: bump chromium in DEPS to 146.0.7652.0
* fix(patch-conflict): update mas_avoid_private_macos_api_usage context for constrainFrameRect method
The upstream CL added a new constrainFrameRect:toScreen: method override to
NativeWidgetMacNSWindow as part of head... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '146.0.7650.0',\n+ '146.0.7666.0',\n 'node_version':\n 'v24.13.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-02-12T17:37:56 |
vercel/next.js | 5752c80526a6763570f97f74cceb08cf863cc94c | fc6bd9ea8d1a764a0a7c01c0dc2a4cd2aab059ed | chore(deps): Bump tar from 7.5.7 to 7.5.11 in /packages/next (#91233)
Bumps [tar](https://github.com/isaacs/node-tar) from 7.5.7 to 7.5.11.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/isaacs/node-tar/commit/bf776f673164215074b62749e0fe80e5834588f4"><code>bf776f6</code></a>
7.5.11</li>
<li... | [
{
"path": "packages/next/package.json",
"patch": "@@ -331,7 +331,7 @@\n \"strip-ansi\": \"6.0.0\",\n \"style-loader\": \"4.0.0\",\n \"superstruct\": \"1.0.3\",\n- \"tar\": \"7.5.7\",\n+ \"tar\": \"7.5.11\",\n \"taskr\": \"1.1.0\",\n \"terser\": \"5.27.0\",\n \"terser-webpack-pl... | 2026-03-12T18:52:36 |
facebook/react | 5a2205ba28a02596461187eecdffd066075d8685 | fa767dade6a22be994b5bf348fdabfc5301f72b4 | Update bug report template for eslint plugin label (#34959)
## Summary
When creating https://github.com/facebook/react/issues/34957, I noticed
a reference to `eslint-plugin-react-compiler` instead of
`eslint-plugin-react-hooks`. Since the former is merged into the latter
(https://github.com/facebook/react/pull/32416,... | [
{
"path": ".github/ISSUE_TEMPLATE/compiler_bug_report.yml",
"patch": "@@ -11,7 +11,7 @@ body:\n options:\n - label: React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)\n - label: babel-plugin-react-compiler (build issue installing or using the B... | 2025-11-05T21:57:26 |
golang/go | e715e208f22df43c67707ea1f2047d157b0a7390 | 827564191b9796a764e970175cecd51c2030530e | cmd/go/testdata/script: rewrite mod_invalid_version to not use network
Use vcstest to deflake the test.
Fixes #68420
Change-Id: I0c54a0e9cbab160636e3be53e615b7816a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/751600
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Ian Alexander <jitsu... | [
{
"path": "src/cmd/go/testdata/script/mod_invalid_version.txt",
"patch": "@@ -1,244 +1,239 @@\n-[!net:golang.org] skip\n+[short] skip\n [!git] skip\n \n-env GO111MODULE=on\n env GOPROXY=direct\n env GOSUMDB=off\n env GOFLAGS=-mod=mod\n \n # Regression test for golang.org/issue/27173: if the user (or go.mod ... | 2026-03-04T22:04:16 |
nodejs/node | 5a8864de93211434c8cdbdf3d2426bfa8a9b3e81 | 8033ab23e582cd53731ac9064c6cac7dc598fa79 | build,win: fix vs2022 compilation
PR-URL: https://github.com/nodejs/node/pull/61530
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@ibm.com> | [
{
"path": "vcbuild.bat",
"patch": "@@ -270,7 +270,7 @@ if %target_arch%==%msvs_host_arch% set vcvarsall_arg=%target_arch%\n \n @rem Look for Visual Studio 2026\n :vs-set-2026\n-if defined target_env if \"%target_env%\" NEQ \"vs2026\" goto msbuild-not-found\n+if defined target_env if \"%target_env%\" NEQ \"v... | 2026-01-28T14:52:43 |
vercel/next.js | 14118707b5446aa97fa42dd0b5fa9a069f740ebe | 7bbea9d4b1e086841f455db2feb73db96efc2e55 | [Instant] fix instant config suggested by editor plugin (#91262)
We forgot to update the autocomplete hint when we changed it from `mode`
to `prefetch`. | [
{
"path": "packages/next/src/server/typescript/rules/config.ts",
"patch": "@@ -154,7 +154,7 @@ const API_DOCS: Record<\n // with the way this plugin is currently structured.\n // For now, since we don't provide an `options` here, we won't do any validation in\n // `getSemanticDiagnosticsForExpor... | 2026-03-12T14:15:35 |
golang/go | 9e0b5684e1f7166d6427635673001c80218ac9f4 | b7d1c5887561ee5502b6c04baaa27ead13b63971 | net: correctly handle non-nil empty cmsg buffer on windows
Fixes #77875.
Change-Id: I0ed91be7ed10c04ddea3af55548a8dbf0be5f3a8
Reviewed-on: https://go-review.googlesource.com/c/go/+/750420
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: David Chase <drchase@goog... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -167,9 +167,11 @@ func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMs\n \tmsg := wsaMsgPool.Get().(*windows.WSAMsg)\n \tmsg.Buffers.Len = uint32(len(p))\n \tmsg.Buffers.Buf = unsafe.SliceData(p)\n-\tmsg.Control = syscall.... | 2026-03-01T16:43:57 |
facebook/react | c308cb590598b61a7fc1766e15edf454d758d226 | 986323f8c65927490036183357d644974a14b8a3 | Disable enablePostpone flag in experimental (#31042)
I don't think we're ready to land this yet since we're using it to run
other experiments and our tests. I'm opening this PR to indicate intent
to disable and to ensure tests in other combinations still work. Such as
enableHalt without enablePostpone. I think we'll a... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzStatic-test.js",
"patch": "@@ -400,72 +400,6 @@ describe('ReactDOMFizzStatic', () => {\n );\n });\n \n- // @gate enablePostpone\n- it('does not fatally error when aborting with a postpone during a prerender', async () => {\n- let postponedVa... | 2025-11-05T04:23:25 |
rust-lang/rust | 50c6679c0b60cac63fd02806e776cd27de928b6c | 95d5ecf3ab075e82503f4fb40893ac5899442653 | fix unit test naming style | [
{
"path": "tests/ui/trait-bounds/deep-level-send-bound-check-issue-40827.stderr",
"patch": "@@ -1,5 +1,5 @@\n error[E0277]: `Rc<Foo>` cannot be shared between threads safely\n- --> $DIR/deep-level-Send-bound-check-issue-40827.rs:14:7\n+ --> $DIR/deep-level-send-bound-check-issue-40827.rs:14:7\n |\n LL ... | 2026-04-01T01:22:17 |
electron/electron | ce47542ccd1608db6b857eb989acf7c57d2bc482 | ff2df2c98ab2b5e528f1eec716dc740c7f28837a | feat: add support for `long-animation-frame` script attribution (#49706)
* feat: add support for `long-animation-frame` script attribution
* docs: document `AlwaysLogLOAFURL`
* chore: add test
* docs: adjust docs as per PR comment
* fix: test failures
* chore: simplify test
* fix: tests on Windows and Linux | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -370,6 +370,13 @@ Keep in mind that standalone switches can sometimes be split into individual fea\n \n Finally, you'll need to ensure that the version of Chromium in Electron matches the version of the browser you're using to cross-reference the s... | 2026-02-11T17:34:22 |
nodejs/node | 8c380ded4606a0c719a7f8bb7914b7a8f5041d31 | 37e40040a7ff391120c1664b9145e7ccf6486a77 | async_hooks: add trackPromises option to createHook()
This adds a trackPromises option that allows users to completely opt
out of the promise hooks that are installed whenever an async hook is
added. For those who do not need to track promises, this avoids
the excessive hook invocation and the heavy overhead from it.
... | [
{
"path": "doc/api/async_hooks.md",
"patch": "@@ -144,18 +144,20 @@ function destroy(asyncId) { }\n function promiseResolve(asyncId) { }\n ```\n \n-## `async_hooks.createHook(callbacks)`\n+## `async_hooks.createHook(options)`\n \n <!-- YAML\n added: v8.1.0\n -->\n \n-* `callbacks` {Object} The [Hook Callbac... | 2026-01-28T11:25:24 |
golang/go | b7d1c5887561ee5502b6c04baaa27ead13b63971 | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | cmd/go: disallow go env -w GOROOT=...
The go command determines GOROOT from where the binary is.
It is an error to try to run a go command with a mismatched Go tree.
The only possible use for 'go env -w GOROOT=...' would be if you
copied the go executable to a new place (say, $HOME/bin) and needed
to set the default G... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -604,7 +604,17 @@ func getOrigEnv(key string) string {\n \n func checkEnvWrite(key, val string) error {\n \tswitch key {\n-\tcase \"GOEXE\", \"GOGCCFLAGS\", \"GOHOSTARCH\", \"GOHOSTOS\", \"GOMOD\", \"GOWORK\", \"GOTOOLDIR\", \"GOVERSION\", \"GOTELE... | 2026-02-26T17:39:48 |
rust-lang/rust | b994a05bc3868a929795c9eab4abcb5d63c5a438 | e4fdb554ad2c0270473181438e338c42b5b30b0c | Fix pattern assignment suggestions for uninitialized bindings | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs",
"patch": "@@ -914,32 +914,36 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if show_assign_sugg {\n struct LetVisitor {\n decl_span: Span,\n- sugg_span: Option<Span>,\n+ ... | 2026-04-01T02:06:20 |
facebook/react | 986323f8c65927490036183357d644974a14b8a3 | 8f8b336734d7c807f5aa11b0f31540e63302d789 | [Fiber] SuspenseList with "hidden" tail row should "catch" suspense (#35042)
Normally if you suspend in a SuspenseList row above a Suspense boundary
in that row, it'll suspend the parent. Which can itself delay the commit
or resuspend a parent boundary. That's because SuspenseList mostly just
coordinates the state of ... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -3397,6 +3397,13 @@ function updateSuspenseListComponent(\n \n let suspenseContext: SuspenseContext = suspenseStackCursor.current;\n \n+ if (workInProgress.flags & DidCapture) {\n+ // This is the second pass after having su... | 2025-11-05T03:11:33 |
nodejs/node | 74c36584653346fa4940194380b2ab5201942dd0 | 150d154bf1ba6cc28ca6276b94117b5a2813e6c8 | build: enable -DV8_ENABLE_CHECKS flag
Fixes: https://github.com/nodejs/node/issues/61301
PR-URL: https://github.com/nodejs/node/pull/61327
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "configure.py",
"patch": "@@ -1969,7 +1969,7 @@ def configure_library(lib, output, pkgname=None):\n \n \n def configure_v8(o, configs):\n- set_configuration_variable(configs, 'v8_enable_v8_checks', release=1, debug=0)\n+ set_configuration_variable(configs, 'v8_enable_v8_checks', release=0, debug... | 2026-01-28T04:17:08 |
vercel/next.js | 7bbea9d4b1e086841f455db2feb73db96efc2e55 | 87b7ca09d5fdb4ae4207802080b8e629b0e5ebab | [Instant] Build-time validation (#90964)
Initial version of build-time instant validation.
During prerendering, if we have `unstable_instant` configs, we perform a
complete staged render of the page (including dynamic data). This render
mocks request data (`params`/`searchParams`/`cookies`/`headers`) using
the `sampl... | [
{
"path": "crates/next-error-code-swc-plugin/src/lib.rs",
"patch": "@@ -57,6 +57,7 @@ fn is_error_class_name(name: &str) -> bool {\n || name == \"ExportError\"\n || name == \"FatalError\"\n || name == \"ImageError\"\n+ || name == \"InstantValidationError\"\n || name ==... | 2026-03-12T13:57:38 |
rust-lang/rust | 95d5ecf3ab075e82503f4fb40893ac5899442653 | e4fdb554ad2c0270473181438e338c42b5b30b0c | Fix associated bound suggestion span issue | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/note_and_explain.rs",
"patch": "@@ -105,7 +105,13 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {\n if !sp.contains(p_span) {\n diag.span_label(p_span, format!(\"{expected}this type parameter\"));\n... | 2026-04-01T01:21:45 |
golang/go | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | b9545da71c2f5e93355d82a1f9b5ead02f2bc617 | cmd/internal/obj: fix indirect tail call code
The assembler isn't handling this correctly for most architectures.
Of course, the two I tried first, arm64 and amd64, worked, so I assumed
other archs could handle it also. Apparently not.
Should fix dashboard failures introduced by CL 751465.
Change-Id: I9fc4f123d11acf... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -352,16 +352,25 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\tcase obj.ARET:\n \t\t\tnocache(p)\n+\n+\t\t\tretSym, retReg := p.To.Sym, p.To.Reg\n+\t\t\tif retReg == obj.REG_NONE {\n+\t\t\t\tretReg = REGLINK\n... | 2026-03-06T23:44:41 |
facebook/react | 8f8b336734d7c807f5aa11b0f31540e63302d789 | d000261eef6109c332a1880e92836856473f6a39 | [eslint] Fix useEffectEvent checks in component syntax (#35041)
We were not recording uEE calls in component/hook syntax. Easy fix.
Added tests matching function component syntax for component syntax +
added one for hooks | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js",
"patch": "@@ -585,6 +585,29 @@ const allTests = {\n code: normalizeIndent`\n // Valid: useEffectEvent can be called in custom effect hooks configured via ESLint settings\n function MyComponent({ theme ... | 2025-11-04T19:59:29 |
nodejs/node | 8fd5f6be79aa992c4b5130f403d2ba7a69f87d8d | e15541524280039c6f325093630d75baeb55e3d3 | test: ensure removeListener event fires for once() listeners
Adds test coverage for the removeListener event being emitted
when a once() listener is automatically removed after execution.
This verifies that streams and other EventEmitters correctly
emit removeListener events when once() wrappers clean up.
PR-URL: htt... | [
{
"path": "lib/events.js",
"patch": "@@ -687,9 +687,10 @@ EventEmitter.prototype.removeListener =\n this._events = { __proto__: null };\n } else {\n delete events[type];\n- if (events.removeListener)\n- this.emit('removeListener', type, list.listener || listen... | 2026-01-27T19:37:53 |
golang/go | 90b428ebf565f61a8ef13d2b6a59c55704923c74 | ec3373e379696c5d9ba6874caed34a309a76181b | net: skip TestListenIPv6WildcardAddr on platforms w/o IPv4-mapped IPv6
On these platforms, Listen and friends default to IPv4 for wildcard
addresses (unless network is "tcp6" or "udp6") due to lack of support
for dual-stack IPv6 sockets (IPV6_V6ONLY=0).
Fixes #77945.
Change-Id: I50c4be1d4fd620dd997d4d0f02bd74e8e41e4... | [
{
"path": "src/net/ipsock_test.go",
"patch": "@@ -283,19 +283,15 @@ func TestAddrListPartition(t *testing.T) {\n }\n \n func TestListenIPv6WildcardAddr(t *testing.T) {\n-\tswitch runtime.GOOS {\n-\tcase \"js\", \"wasip1\":\n+\tif runtime.GOOS == \"js\" || runtime.GOOS == \"wasip1\" {\n \t\tt.Skip(\"fake net... | 2026-03-04T18:11:01 |
vercel/next.js | 41ed440b50dafe6bb1f76bd6774e7284288e0b16 | b4efbdbd1bcccfdd4b9659407fc10cec28c94d24 | TURBOPACK: typescript transform support verbatimModuleSyntax (#90907)
In utoo case, we need to support react classic jsx transform(To
compitable with react 16 or above project).
We have a case like:
```ts
// index.ts
import React from 'react';
export const App = () => <div></div>;
```
Under the classic jsx transfo... | [
{
"path": "crates/next-core/src/transform_options.rs",
"patch": "@@ -54,9 +54,23 @@ pub async fn get_typescript_transform_options(\n ) -> Result<Vc<TypescriptTransformOptions>> {\n let tsconfig = get_typescript_options(project_path, tsconfig_path).await?;\n \n- let use_define_for_class_fields = if le... | 2026-03-12T04:30:11 |
facebook/react | f646e8ffd85ddf5bd8be23327ac887196355bf9b | edd05f181b72272fb87b77bd84d2c048a4613955 | [Flight] Fix `hasReadable` flag in Node.js clients' debug channel (#35039)
For Edge Flight servers, that use Web Streams, we're defining the
`debugChannel` option as:
```
debugChannel?: {readable?: ReadableStream, writable?: WritableStream, ...}
```
Whereas for Node.js Flight servers, that use Node.js Streams, we're... | [
{
"path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js",
"patch": "@@ -93,10 +93,7 @@ function createFromNodeStream<T>(\n ): Thenable<T> {\n const debugChannel: void | DebugChannel =\n __DEV__ && options && options.debugChannel !== undefined\n- ? {\n- hasReadable... | 2025-11-04T15:30:08 |
electron/electron | 0284b9afcc1dbb7c01aac962ea585d80ac68cdd5 | 52061b4c28e0a7f208be5dbad6e4ea2e5663ffb5 | build: fixup attestation for release assets (#49732)
* build: fixup attestation for release assets
* Generate artifact attestation for generated artifacts
* set id-token for attestation
* Add artifact-metadata permission for attestation
* add permissions for testing attestations
* Revert "add permissions for test... | [
{
"path": ".github/workflows/linux-publish.yml",
"patch": "@@ -46,6 +46,7 @@ jobs:\n publish-x64:\n uses: ./.github/workflows/pipeline-segment-electron-publish.yml\n permissions:\n+ artifact-metadata: write\n attestations: write\n contents: read\n id-token: write\n@@ -65,6 +... | 2026-02-11T12:17:59 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.