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 |
|---|---|---|---|---|---|
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 |
nodejs/node | d8c00ad316e2ae25322b2f1c405a902384d2867d | 413dffc691eae3b63983415671cc236eb1705622 | net: defer synchronous destroy calls in internalConnect
Defer socket.destroy() calls in internalConnect and
internalConnectMultiple to the next tick. This ensures that error
handlers have a chance to be set up before errors are emitted,
particularly important when using http.request with a custom
lookup function that ... | [
{
"path": "lib/net.js",
"patch": "@@ -1125,7 +1125,7 @@ function internalConnect(\n err = checkBindError(err, localPort, self._handle);\n if (err) {\n const ex = new ExceptionWithHostPort(err, 'bind', localAddress, localPort);\n- self.destroy(ex);\n+ process.nextTick(emitErrorAndDest... | 2026-02-06T14:30:07 |
golang/go | 3fc4af70d04682ab42744e4ce78f95025688996d | c43088c7a6b58861078eb96617c7fc12764dbf76 | net/http: document which headers Request.Write handles specially
Document that Header values for Host, Content-Length,
Transfer-Encoding, and Trailer are not used by Write, as these
are derived from other Request fields. Also document that
User-Agent defaults to "Go-http-client/1.1" if not set in Header.
Fixes #68635... | [
{
"path": "src/net/http/request.go",
"patch": "@@ -558,6 +558,11 @@ const defaultUserAgent = \"Go-http-client/1.1\"\n // If Body is present, Content-Length is <= 0 and [Request.TransferEncoding]\n // hasn't been set to \"identity\", Write adds \"Transfer-Encoding:\n // chunked\" to the header. Body is close... | 2026-02-27T22:13:56 |
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 |
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 |
nodejs/node | ae2ffce5f3d5ac5ad153d98839d5a19a70e073b2 | c74c73dd186e4ac078418d69424604c47129a8ce | repl: fix flaky test-repl-programmatic-history
The test was flaky because the FileHandle for the history file could
be garbage collected before being explicitly closed, causing
ERR_INVALID_STATE errors when the handle was already closed by the
GC finalizer.
This fix adds an explicit closeHandle() method to ReplHistor... | [
{
"path": "lib/internal/repl/history.js",
"patch": "@@ -58,6 +58,7 @@ const kResolveHistoryPath = Symbol('_kResolveHistoryPath');\n const kReplHistoryMessage = Symbol('_kReplHistoryMessage');\n const kFlushHistory = Symbol('_kFlushHistory');\n const kGetHistoryPath = Symbol('_kGetHistoryPath');\n+const kClo... | 2026-02-05T15:09:00 |
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 |
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 |
golang/go | 3d7681ebab6fca8f859d8fc7d6c02c90ef379c05 | a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4 | cmd/link: fix macOS 13 build
Write our own load command for macOS builds,
to make sure we can put the versions in.
Builds on older macOS were seeing an LC_VERSION_MIN instead
and scribbling over fields that didn't exist.
Fixes #78070.
Change-Id: If338d0506b1156b133253e496f29818a29a22a91
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/link/internal/ld/macho.go",
"patch": "@@ -461,14 +461,9 @@ func (ctxt *Link) domacho() {\n \t\tif err != nil {\n \t\t\tExitf(\"%v\", err)\n \t\t}\n-\t\tif load != nil {\n-\t\t\tmachoPlatform = load.platform\n+\t\tif load != nil && load.platform != PLATFORM_MACOS {\n \t\t\tml := newMachoLo... | 2026-03-11T16:52:44 |
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 |
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 |
nodejs/node | c6a89f953dc06f4638965581eb740292423d8c1e | 36ca6275c7a170b66baa00099fd88ecc6b48a724 | doc: fix grammatical error in README.md
Corrected wording for clarity in README.
PR-URL: https://github.com/nodejs/node/pull/61653
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -105,7 +105,7 @@ curl -fsLo \"/path/to/nodejs-keyring.kbx\" \"https://github.com/nodejs/release-keys\n ```\n \n Alternatively, you can import the releaser keys in your default keyring, see\n-[Release keys](#release-keys) for commands to how to do that.\n+[Release keys](#r... | 2026-02-05T13:11:25 |
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 |
golang/go | a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4 | 96d6d38872a56eba26cd2e3dbd65bab138f9c599 | go/printer: use architecture-independent math for alignment decisions
The `exprList` function uses a geometric mean of expression sizes to
decide whether to break column alignment in composite literals.
Previously, this was computed using `math.Exp` and `math.Log`,
which are not guaranteed to produce bit-for-bit ident... | [
{
"path": "src/go/printer/math.go",
"patch": "@@ -0,0 +1,28 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package printer\n+\n+import \"math\"\n+\n+// log2ish returns a crude approx... | 2026-03-09T10:08:36 |
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 |
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 |
nodejs/node | 87e8e8bbdec5f668f1499f92327caafd20e82187 | 8c323899ffd289465d838138c41be3e5d8e572e4 | test: fix flaky test-performance-eventloopdelay
The test was flaky because the histogram sampling might not have
completed before the assertions ran. By using setImmediate before
disabling the histogram and checking values, we give the event loop
a chance to record final samples on slower systems.
Also added an expli... | [
{
"path": "test/sequential/test-performance-eventloopdelay.js",
"patch": "@@ -64,42 +64,47 @@ const { sleep } = require('internal/util');\n if (--m > 0) {\n setTimeout(spinAWhile, common.platformTimeout(500));\n } else {\n- histogram.disable();\n- // The values are non-deterministic,... | 2026-02-05T08:28:56 |
golang/go | d3651c588846e1147e5a72f71c133dc8288e1e13 | 97d643045888d1af2004410365a00bafe1713f47 | runtime/poll: fix race condition in Window's SendFile
The destination of SendFile is a socket, which doesn't support file
offsets. There is no need to keep track of the file offset, and doing
so causes a race between SendFile and Read.
While here, make sure that SendFile tests do call poll.SendFile.
Fixes #78015
Cq... | [
{
"path": "src/internal/poll/sendfile_windows.go",
"patch": "@@ -68,8 +68,8 @@ func SendFile(fd *FD, src uintptr, size int64) (written int64, err error, handle\n \t\t\tchunkSize = size\n \t\t}\n \n-\t\tfd.setOffset(startpos + written)\n \t\tn, err := fd.execIO('w', func(o *operation) (uint32, error) {\n+\t\... | 2026-03-08T13:18:04 |
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 |
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 |
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 |
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 |
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 |
golang/go | 97d643045888d1af2004410365a00bafe1713f47 | 45c6fb4b9bff9eaaaae000ff223452403b9def4e | cmd/compile: fix arm direct tail call
CL 752560 accidentally niled out the target symbol.
Re-initialize the target symbol field when doing a direct tail call.
Fixes #78053
Change-Id: I007471587a38077b52daa134640d09c7b8b6becb
Reviewed-on: https://go-review.googlesource.com/c/go/+/753840
Reviewed-by: Keith Randall <kh... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -367,6 +367,8 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\t\tp.From = obj.Addr{}\n \t\t\t\t\tif retSym != nil { // retjmp\n \t\t\t\t\t\tp.To.Type = obj.TYPE_BRANCH\n+\t\t\t\t\t\tp.To.Name = obj.NAME_EXTERN\... | 2026-03-10T21:02:13 |
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 | 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 |
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 |
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 |
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 |
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 | 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 | 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 |
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 |
rust-lang/rust | 1d0dcfab18b1f80e86d691e7082e297f7ce940c1 | ba11b1e3f09829428844b74829146fcf7c38d3d0 | c-variadic: error when we can't guarantee that the backend does the right thing
specifically this emits an error when
- a custom target is used
- `RiscV32 if self.llvm_abiname == "ilp32e"` this abi is used for 32-bit
embedded targets, and clang/llvm document that the ABI may change in
the future. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -760,7 +760,7 @@ impl<'a> AstValidator<'a> {\n match fn_ctxt {\n FnCtxt::Foreign => return,\n FnCtxt::Free | FnCtxt::Assoc(_) => {\n- if !self.sess.target.arch.supports_c_variadic_definit... | 2026-02-21T12:36:05 |
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 |
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 | 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 |
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 |
rust-lang/rust | 8c043676a112155d824c9748534639704c145652 | 70dd3bceca234ba2957f14d4083ea29ce29f1872 | Refactor `get_standard_error_message` | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -196,6 +196,13 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n } = self.on_unimplemented_note(main_trait_predicate, main_obligation, &mut long_ty_file);\n \n ... | 2026-03-31T21:21:46 |
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 |
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 |
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 | 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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 | 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 |
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 |
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 |
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 |
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 |
rust-lang/rust | 64cf1ec68503f10cda5dcc88df2209d22ec3dd08 | 0f159dc1acb2ad04e0eb88b83943a9ef4520fee3 | Update `Erasable` impls for lists.
- Merge the `List` and `ListWithCachedTypeInfo` impls by referring to
the shared underlying type, `RawList`. This required increasing the
visibility of `RawList`.
- Explain why a separate impl is needed for `RawList`.
- Remove an incorrect FIXME comment. Fat reference types wil... | [
{
"path": "compiler/rustc_middle/src/query/erase.rs",
"patch": "@@ -109,8 +109,6 @@ pub fn restore_val<T: Erasable>(erased_value: Erased<T>) -> T {\n unsafe { transmute_unchecked::<MaybeUninit<T::Storage>, T>(data) }\n }\n \n-// FIXME(#151565): Using `T: ?Sized` here should let us remove the separate\n-... | 2026-03-31T01:23:22 |
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 |
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 |
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 |
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 |
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 | 147d11099f47c4013cff1d8d67d5d8da722b7fe9 | c0e8750beac073b8d377db2d608fba45ff1e1cba | fixing tidy issues | [
{
"path": "tests/ui/enum/enum_u8_variant.rs",
"patch": "@@ -1,5 +1,6 @@\n //@ run-pass\n-//Test that checks pattern matching works correctly on a repr(u8) enum whose only variant contains an inner 'u8' field\n+//Test that checks pattern matching works correctly on a repr(u8) enum\n+// whose only variant con... | 2026-03-31T19:36:37 |
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 |
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 |
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 |
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 |
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 |
facebook/react | 67f7d47a9b8f450c93ee69edd16aed68e910ff1e | 561ee24d4a7c805e9837ee4cfbb5671a35e41b5a | [Flight] Fix debug info filtering to include later resolved I/O (#35036)
In #35019, we excluded debug I/O info from being considered for
enhancing the owner stack if it resolved after the defined `endTime`
option that can be passed to the Flight client. However, we should
include any I/O that was awaited before that e... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -510,7 +510,9 @@ function filterDebugInfo(\n return;\n }\n \n- // Remove any debug info entries that arrived after the defined end time.\n+ // Remove any debug info entries after the defined end time. For async info\n+ // that... | 2025-11-03T21:59:40 |
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 |
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 |
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 |
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 |
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 |
facebook/react | 4f93170066c5ee7519749b45c5962a6b970cf977 | 0fa32506dab4293dfffae662e181d2f970aa95ba | [Flight] Cache the value if we visit the same I/O or Promise multiple times along different paths (#35005)
We avoid visiting the same async node twice but if we see it again we
returned "null" indicating that there's no I/O there.
This means that if you have two different Promises both resolving from
the same I/O nod... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2316,15 +2316,37 @@ function visitAsyncNode(\n request: Request,\n task: Task,\n node: AsyncSequence,\n- visited: Set<AsyncSequence | ReactDebugInfo>,\n+ visited: Map<\n+ AsyncSequence | ReactDebugInfo,\n+ void | null | ... | 2025-10-29T14:55:43 |
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 |
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 |
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 | 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 |
facebook/react | 0fa32506dab4293dfffae662e181d2f970aa95ba | fb0d96073c588ca2f652f9c97849234576db534f | [Flight] Clone subsequent I/O nodes if it's resolved more than once (#35003)
IO tasks can execute more than once. E.g. a connection may fire each
time a new message or chunk comes in or a setInterval every time it
executes.
We used to treat these all as one I/O node and just updated the end time
as we go. Most of the... | [
{
"path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js",
"patch": "@@ -208,10 +208,29 @@ export function initAsyncDebugInfo(): void {\n switch (node.tag) {\n case IO_NODE: {\n lastRanAwait = null;\n- // Log the end time when we resolved the ... | 2025-10-28T17:27:35 |
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 |
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 | 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 |
facebook/react | fb0d96073c588ca2f652f9c97849234576db534f | b4455a6ee6450fae830ae0b6e53e77f7a147bc27 | [tests] disableLegacyMode in test-renderer (#35002)
500 tests failed from not using async act. Will fix the tests and then
re-land this. | [
{
"path": "packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js",
"patch": "@@ -16,7 +16,7 @@ export const disableCommentsAsDOMContainers = true;\n export const disableInputAttributeSyncing = false;\n export const disableLegacyContext = false;\n export const disableLegacyContextForFunctionComp... | 2025-10-28T16:53:30 |
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 | 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 |
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 |
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 |
facebook/react | d3d0ce329e81c7081feda5d37130d01e0607b8a4 | ba0590f3068829327cb25689b46926d6509893ea | [script] Add yarn generate-changelog (#34962)
(disclaimer: I used codex to write this script)
Adds a new `yarn generate-changelog` script to simplify the process of
writing changelogs. You can use it as follows:
```
$ yarn generate-changelog --help
Usage: yarn generate-changelog [--codex|--claude] [--debug] [<pkg@v... | [
{
"path": "package.json",
"patch": "@@ -152,6 +152,7 @@\n \"download-build-in-codesandbox-ci\": \"yarn build --type=node react/index react.react-server react-dom/index react-dom/client react-dom/src/server react-dom/test-utils react-dom.react-server scheduler/index react/jsx-runtime react/jsx-dev-runtim... | 2025-10-27T19:48:36 |
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 |
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 | 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 | 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 | 408b38ef7304faf022d2a37110c57efce12c6bad | 09056abde76c464f4632f322a0ac30cd3984cee6 | [compiler] Improve display of errors on multi-line expressions (#34963)
When a longer function or expression is identified as the source of an
error, we currently print the entire expression in our error message.
This is because we delegate to a Babel helper to print codeframes. Here,
we add some checking and abbrevia... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -12,6 +12,28 @@ import {Err, Ok, Result} from './Utils/Result';\n import {assertExhaustive} from './Utils/utils';\n import invariant from 'invariant';\n \n+// Number of context lines to display above the source of a... | 2025-10-23T18:30:28 |
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 |
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 | 09056abde76c464f4632f322a0ac30cd3984cee6 | c91783c1f2231ca5d99f5700f4c7fda4006a217e | [Compiler] Improve error for calculate in render useEffect validation (#34580)
Summary:
Change error and update snapshots
The error now mentions what values are causing the issue which should
provide better context on how to fix the issue
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://saplin... | [
{
"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-10-23T18:05:55 |
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 |
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.