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 |
|---|---|---|---|---|---|
golang/go | 666e8c59c9211eae61e31f39ada1c5eed3ad6e11 | e76c910108577c93651dff7481034d2d5b933c14 | cmd/compile: improve Mul to Left Shift rules
- fix a bug where it wouldn't recognize 1<<63 as a power of two
- remove the IsSigned check; there is no such thing as a signed Mul
If the rule works for signed numbers it works for unsigned ones too.
Even if the intermediary steps makes no sense, it ends up wrapping
... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1080,22 +1080,22 @@\n // Excluded from early opt so that prove can recognize mod\n // by the x - (x/d)*d pattern.\n // (Runs during \"middle opt\" and \"late opt\".)\n-(Mul8 <t> x (Const8 [c])) && isPowerOfTwo(c) && v.Block.Func.pa... | 2026-03-29T05:31:38 |
rust-lang/rust | c1ac7693f6d1637fbc512dc025f69ba2e1389e01 | c771f6ee804969b5c046393c4110c22720e56114 | Fix feature name for unstable `integer_extend_truncate` functions
The feature name for the const unstable attribute was
accidentally transposed when const traits were added. | [
{
"path": "library/core/src/num/int_macros.rs",
"patch": "@@ -3958,7 +3958,7 @@ macro_rules! int_impl {\n /// ```\n #[must_use = \"this returns the truncated value and does not modify the original\"]\n #[unstable(feature = \"integer_extend_truncate\", issue = \"154330\")]\n- #... | 2026-04-08T19:55:00 |
electron/electron | 230f02faf2af01717898c8960b6658c7f7382499 | 1362d7b94d65821d6c752eea5e47573d8f455823 | fix: don't force kFitToPrintableArea scaling when custom margins are set (#50615)
When silent printing with non-default margins (custom, no margins, or
printable area margins), the kFitToPrintableArea scaling option causes
double-marginalization: the custom margins define the content area, then
the scaling additionall... | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -703,7 +703,7 @@ index ac2f719be566020d9f41364560c12e6d6d0fe3d8..16d758a6936f66148a196761cfb875f6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/... | 2026-04-02T18:41:21 |
vercel/next.js | d75f07b3518a69691d3190f055ca2d30d700c56c | 16dd58fa25abf87ae891628ce018114a4c333db6 | turbo-persistence: skip BlockCache for uncompressed (mmap-backed) blocks (#92390)
### What?
Skip the `BlockCache` entirely for uncompressed (mmap-backed) SST
blocks, and add a per-file CRC verification bitmap so checksums are
verified at most once per file open for any block.
### Why?
Uncompressed blocks produce an... | [
{
"path": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs",
"patch": "@@ -1,4 +1,14 @@\n-use std::{cmp::Ordering, fs::File, hash::BuildHasherDefault, path::Path, rc::Rc, sync::Arc};\n+use std::{\n+ cmp::Ordering,\n+ fs::File,\n+ hash::BuildHasherDefault,\n+ path::Path,\n+ rc::Rc... | 2026-04-07T05:01:57 |
facebook/react | 2ba3065527cbabc9778363e78a411653cd4cd215 | 38cd020c1fb8a1e88b7852160796f411926a6fac | [Flight] Add support for transporting `Error.cause` (#35810) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -8,6 +8,7 @@\n */\n \n import type {\n+ JSONValue,\n Thenable,\n ReactDebugInfo,\n ReactDebugInfoEntry,\n@@ -132,14 +133,6 @@ interface FlightStreamController {\n \n type UninitializedModel = string;\n \n-export type JSONValue ... | 2026-02-19T23:50:34 |
nodejs/node | 82615369d4d9aab2d841d4d790263d2c6336f2e4 | b36d5a3d94dc3a1ddbcc35d51ce19d1fa61e8e47 | src: handle NGHTTP2_ERR_FLOW_CONTROL error code
Refs: https://hackerone.com/reports/3531737
PR-URL: https://github.com/nodejs-private/node-private/pull/832
CVE-ID: CVE-2026-21714 | [
{
"path": "src/node_http2.cc",
"patch": "@@ -1154,8 +1154,14 @@ int Http2Session::OnInvalidFrame(nghttp2_session* handle,\n // The GOAWAY frame includes an error code that indicates the type of error\"\n // The GOAWAY frame is already sent by nghttp2. We emit the error\n // to liberate the Http2Sessio... | 2026-03-11T14:22:23 |
golang/go | 0d0799f055dcc9b3b41df74bee3fbe398ae2f0e7 | ad7d6071ac1955e76e7407d8345cf18f354a1693 | net/mail: fix quadratic complexity in consumeComment
consumeComment builds the comment string by repeated string
concatenation inside a loop. Each concatenation copies the
entire string built so far, making the function O(n^2) in the
depth of nested comments.
Replace the concatenation with a strings.Builder, which
am... | [
{
"path": "src/net/mail/message.go",
"patch": "@@ -832,7 +832,7 @@ func (p *addrParser) consumeComment() (string, bool) {\n \t// '(' already consumed.\n \tdepth := 1\n \n-\tvar comment string\n+\tvar comment strings.Builder\n \tfor {\n \t\tif p.empty() || depth == 0 {\n \t\t\tbreak\n@@ -846,12 +846,12 @@ fu... | 2026-04-04T05:17:25 |
electron/electron | 877fe479b599749e6efd2083b19b58cb028e7f4b | f41438ff73360a8ac42b45368d1d623f03fb4359 | fix: glitchy rendering and maximize behavior with different GTK themes (#50550)
* fix glitchy rendering with different gtk themes especially when maximizing
* use actual insets, not restored insets | [
{
"path": "shell/browser/ui/views/client_frame_view_linux.cc",
"patch": "@@ -163,7 +163,7 @@ int ClientFrameViewLinux::ResizingBorderHitTest(const gfx::Point& point) {\n gfx::Rect ClientFrameViewLinux::GetBoundsForClientView() const {\n gfx::Rect client_bounds = bounds();\n if (!frame_->IsFullscreen()) ... | 2026-04-02T14:52:27 |
facebook/react | 3a2bee26d23a21cfb04313372a0c0ca46101b785 | 4842fbea02c48fa5cfcb28eb6ceaec12f6f41a45 | [DevTools] Fix alignment of breadcrumbs separator (#35817) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/OwnersStack.css",
"patch": "@@ -34,6 +34,7 @@\n \n .OwnerStackFlatListContainer {\n display: inline-flex;\n+ align-items: baseline;\n }\n \n .OwnerStackFlatListSeparator {",
"additions": 1,
"deletions": 0,
"language": "CS... | 2026-02-18T18:53:49 |
golang/go | 9956aca06ab9d3083fa0afaebb640a1a25dde77f | ba402cd756a02cd80bcd76a2f7afc22ae2041c6c | cmd/go/internal/workcmd: correct go.work file name
Fixes #51714
Change-Id: I0619b1ca6715bed85ccc066a83a449f66a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/762660
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1634,10 +1634,10 @@\n // The -toolchain=name flag sets the Go toolchain to use.\n //\n // The -print flag prints the final go.work in its text format instead of\n-// writing it back to go.mod.\n+// writing it back to go.work.\n //\n // The -json flag prints t... | 2026-04-03T23:55:05 |
vercel/next.js | 1fe590fc5e304c59e10cdc999e4da94965029d17 | 0dc354b8d71c8f8f5c7af09305fb2ced0c60c789 | fix(server-hmr): metadata routes overwrite page runtime HMR handler (#92273)
### What?
Fix server HMR becoming unresponsive after a metadata route is loaded in
the same Node.js process as an app page.
### Why?
Turbopack loads separate runtime chunks for app pages and metadata
routes (`robots.ts`, `sitemap.ts`, `man... | [
{
"path": "packages/next/src/server/dev/hot-reloader-turbopack.ts",
"patch": "@@ -1856,6 +1856,11 @@ export async function createHotReloaderTurbopack(\n __next__clear_chunk_cache__()\n }\n \n+ // Reset the server HMR handler registry. All server runtime chunks are\n+ // clear... | 2026-04-07T01:31:59 |
nodejs/node | ef5929b5aaae7a14e839e2123f54580d18702df0 | 59c86b1d9377fae95b0523fc16537161dd685f41 | http: use null prototype for headersDistinct/trailersDistinct
Use { __proto__: null } instead of {} when initializing the
headersDistinct and trailersDistinct destination objects.
A plain {} inherits from Object.prototype, so when a __proto__
header is received, dest["__proto__"] resolves to Object.prototype
(truthy)... | [
{
"path": "lib/_http_incoming.js",
"patch": "@@ -128,7 +128,7 @@ ObjectDefineProperty(IncomingMessage.prototype, 'headersDistinct', {\n __proto__: null,\n get: function() {\n if (!this[kHeadersDistinct]) {\n- this[kHeadersDistinct] = {};\n+ this[kHeadersDistinct] = { __proto__: null };\n \... | 2026-02-19T14:49:43 |
electron/electron | f41438ff73360a8ac42b45368d1d623f03fb4359 | c6e201c96598e169300c86ad59940abdad91f4ec | fix: prefill native print dialog options on macOS with OOP printing (#50600)
Chromium enabled out-of-process (OOP) printing by default on macOS in
https://chromium-review.googlesource.com/c/chromium/src/+/6032774. This
broke webContents.print() option prefilling (e.g. copies, collate,
duplex) in two ways:
1. Scripted... | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2026-04-02T14:06:35 |
facebook/react | 4842fbea02c48fa5cfcb28eb6ceaec12f6f41a45 | 61db53c179a80a40beec3cc220da05bfdbb02efd | [react-dom] Add support for `onFullscreenChange` and `onFullscreenError` events (#34621) | [
{
"path": "packages/react-dom-bindings/src/events/DOMEventNames.js",
"patch": "@@ -51,6 +51,7 @@ export type DOMEventName =\n | 'focusin'\n | 'focusout'\n | 'fullscreenchange'\n+ | 'fullscreenerror'\n | 'gotpointercapture'\n | 'hashchange'\n | 'input'",
"additions": 1,
"deletions": 0,
... | 2026-02-18T01:34:16 |
vercel/next.js | cd5d2210dd39ae8ff7d1d083edae486477be24a1 | e296bcb812b0c2cc933099c52b483943c3e39f8f | Allow for parsing app route strings with and without slot names. (#92327)
The old impl has a boolean arg that was always true. To support some
fixes to routing I need to make the parser sometimes allow for slots but
still not things like route groups. I am generalizing the function
implementation to have a filter type... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1148,5 +1148,7 @@\n \"1147\": \"Turbopack database compaction is not supported on this platform\",\n \"1148\": \"webToReadable cannot be used in the edge runtime\",\n \"1149\": \"Node.js Readable cannot be teed in the edge runtime\",\n- \"1150\": \... | 2026-04-06T21:51:11 |
nodejs/node | 2e2abc6e895745cc5d04dd203afb8e0083fb6835 | dabb2f5f0c0367bf8e0e116b311b9308111ab4c7 | tls: wrap SNICallback invocation in try/catch
Wrap the owner._SNICallback() invocation in loadSNI() with try/catch
to route exceptions through owner.destroy() instead of letting them
become uncaught exceptions. This completes the fix from CVE-2026-21637
which added try/catch protection to callALPNCallback,
onPskServer... | [
{
"path": "lib/internal/tls/wrap.js",
"patch": "@@ -210,23 +210,27 @@ function loadSNI(info) {\n return requestOCSP(owner, info);\n \n let once = false;\n- owner._SNICallback(servername, (err, context) => {\n- if (once)\n- return owner.destroy(new ERR_MULTIPLE_CALLBACK());\n- once = true;\... | 2026-02-17T13:26:17 |
electron/electron | 156a4e610c7f2171ce2f6b484fd2f78253c17820 | 81f8fc1880aad73ae404687c5beb8de872067f34 | fix: extension service workers not starting beyond first app launch (#50611)
* fix: extension service worker not starting beyond first app launch
* fix: set preference only for extensions with service workers | [
{
"path": "shell/browser/extensions/electron_extension_loader.cc",
"patch": "@@ -20,13 +20,15 @@\n #include \"base/time/time.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extensions/browser/extension_pref_names.h\"\n #... | 2026-04-02T08:02:06 |
rust-lang/rust | 56f43b5142ff41a450e85ff241778fe45eb988e2 | 574d8774b9e34c7d9fb07e81caaa67ccc382a0a0 | Parenthesize block-like expressions in call callee of pretty printer
When a macro expands to a call whose callee is a block (or other
"complete" expression like `match`, `if`, `loop`), the AST pretty
printer emits the callee without parentheses. In statement position
the closing brace ends the expression and the argum... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs",
"patch": "@@ -235,7 +235,15 @@ impl<'a> State<'a> {\n // In order to call a named field, needs parens: `(self.fun)()`\n // But not for an unnamed field: `self.0()`\n ast::ExprKind::Field(_, name) => !name.is_... | 2026-04-08T13:52:01 |
facebook/react | 4ac47537dda5f370dffa185a2e26f8301bf73d45 | 47d1ad1454759859c5a2b29616658e10a1ce049f | [compiler] Track locations for dependencies (#35794)
Tracks locations for reactive scope dependencies, both on the deps and
portions of the path. The immediate need for this is a non-public
experiment where we're exploring type-directed compilation, and
sometimes look up the types of expressions by location. We need t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts",
"patch": "@@ -31,6 +31,7 @@ import {\n PropertyLiteral,\n ReactiveScopeDependency,\n ScopeId,\n+ SourceLocation,\n TInstruction,\n } from './HIR';\n \n@@ -244,6 +245,7 @@ class PropertyPathRegistry {... | 2026-02-17T22:06:21 |
golang/go | ba402cd756a02cd80bcd76a2f7afc22ae2041c6c | 6110cd6f83caa1f255189c209711c216d649c6d7 | runtime: fix timespec definition on 32bits systems
The nsec field of timespec is a C long even when using
64bits time on 32bits systems.
This is because by timespec API if nsec never holds more than a
second worth of nanoseconds.
If it would theses would increment the sec field while the nsec
field would get the amou... | [
{
"path": "src/runtime/defs_linux_386.go",
"patch": "@@ -152,13 +152,14 @@ func (ts *timespec32) setNsec(ns int64) {\n \n type timespec struct {\n \ttv_sec int64\n-\ttv_nsec int64\n+\ttv_nsec int32\n+\t_ [4]byte // the C ABI aligns int64 to 8 bytes\n }\n \n //go:nosplit\n func (ts *timespec) setNsec(... | 2026-03-04T09:01:11 |
facebook/react | 47d1ad1454759859c5a2b29616658e10a1ce049f | e8c6362678c8bc86a02b8444d2c3f597b3dc4e22 | [Flight] Skip `transferReferencedDebugInfo` during debug info resolution (#35795)
When the Flight Client resolves chunk references during model parsing,
it calls `transferReferencedDebugInfo` to propagate debug info entries
from referenced chunks to the parent chunk. Debug info on chunks is
later moved to their resolv... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -943,6 +943,7 @@ type InitializationHandler = {\n };\n let initializingHandler: null | InitializationHandler = null;\n let initializingChunk: null | BlockedChunk<any> = null;\n+let isInitializingDebugInfo: boolean = false;\n \n functio... | 2026-02-16T17:22:32 |
nodejs/node | dabb2f5f0c0367bf8e0e116b311b9308111ab4c7 | 3a04e0ff25a8c0090b699a606e237e7f52693583 | src: handle url crash on different url formats
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
PR-URL: https://github.com/nodejs-private/node-private/pull/816
Refs: https://hackerone.com/reports/3546390
CVE-ID: CVE-2026-21712 | [
{
"path": "src/node_url.cc",
"patch": "@@ -344,7 +344,13 @@ void BindingData::Format(const FunctionCallbackInfo<Value>& args) {\n // directly want to manipulate the url components without using the respective\n // setters. therefore we are using ada::url here.\n auto out = ada::parse<ada::url>(href.To... | 2026-02-10T13:23:20 |
facebook/react | e8c6362678c8bc86a02b8444d2c3f597b3dc4e22 | 03ca38e6e7b84cf20438c1d333636b3d662ca726 | [eslint-plugin-react-hooks] Add ESLint v10 support (#35720)
## Summary
ESLint v10.0.0 was released on February 7, 2026. The current
`peerDependencies` for `eslint-plugin-react-hooks` only allows up to
`^9.0.0`, which causes peer dependency warnings when installing with
ESLint v10.
This PR:
- Adds `^10.0.0` to the e... | [
{
"path": ".github/workflows/runtime_eslint_plugin_e2e.yml",
"patch": "@@ -29,6 +29,7 @@ jobs:\n - \"7\"\n - \"8\"\n - \"9\"\n+ - \"10\"\n steps:\n - uses: actions/checkout@v4\n with:",
"additions": 1,
"deletions": 0,
"language": "YAML"
... | 2026-02-13T18:26:01 |
nodejs/node | 7be0e28b6800ee0d06a9194e5a81123fdf589375 | d88a46aa280c72a00dbee6171abf9469c3694e13 | 2026-03-24, Version 20.20.2 'Iron' (LTS)
This is a security release.
Notable changes:
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC
deps:
* update undici to v6.24.1
* (CVE-2026-21717) fix array index hash collision
http:
* (CVE-2026-21710) use null prototype for headersDistin... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -115,7 +115,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V22.md#22.0.0\">22.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.1\">20.20.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.20.2\">20.20... | 2026-03-19T12:29:55 |
golang/go | 6110cd6f83caa1f255189c209711c216d649c6d7 | 0fa3564a74b802219d3df0852fbe921b3fe9c5be | net/http: fix shadow var frame
Change-Id: Ib03f65992b065e169fa6ccd08664336bec559c1d
GitHub-Last-Rev: bd597d4325c713c53a9f22cb93892d90f393c6ac
GitHub-Pull-Request: golang/go#78527
Reviewed-on: https://go-review.googlesource.com/c/go/+/762700
Reviewed-by: Nicholas Husin <nsh@golang.org>
LUCI-TryBot-Result: Go LUCI <gola... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -1160,7 +1160,8 @@ func relevantCaller() runtime.Frame {\n \tframes := runtime.CallersFrames(pc[:n])\n \tvar frame runtime.Frame\n \tfor {\n-\t\tframe, more := frames.Next()\n+\t\tvar more bool\n+\t\tframe, more = frames.Next()\n \t\tif !strings.HasPrefix(fra... | 2026-04-04T08:51:23 |
electron/electron | e7080835f14958546a11e0b1aa3dc82f1d2d41af | 7c1a6f7e955aa843187800900304a29171ea4da8 | docs: add destroy method to native addon tutorials to prevent hang on quit (#50561)
Native addons that hold persistent references to callbacks, emitters,
and threadsafe functions prevent Electron from quitting cleanly since
Electron 40.5.0 due to changes in Node.js shutdown behavior. This adds
a `destroy()` method to ... | [
{
"path": "docs/tutorial/native-code-and-electron-cpp-linux.md",
"patch": "@@ -1097,7 +1097,8 @@ public:\n Napi::Function func = DefineClass(env, \"CppLinuxAddon\", {\n InstanceMethod(\"helloWorld\", &CppAddon::HelloWorld),\n InstanceMethod(\"helloGui\", &CppAddon::HelloGui),\n- Instanc... | 2026-04-01T18:13:09 |
vercel/next.js | 9931cc0c85bdfe6e37490ec2241537657c549ca7 | b592e6df87deede681bc0bd375eca06b49fc98eb | Fix fallback route params case in app-page handler (#91737)
## Summary
- add production-route-shape fixture coverage for
`/[teamSlug]/[project]/settings/domains`
- add revalidation helpers (API and server action) and browser controls
used by the regression test
- reproduce the failing production sequence by priming, r... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -31,6 +31,8 @@ import {\n import { checkIsAppPPREnabled } from '../../server/lib/experimental/ppr' with { 'turbopack-transition': 'next-server-utility' }\n import {\n getFallbackRouteParams,\n+ getPlaceholderFallbackRouteParams,\n+ ... | 2026-04-06T16:37:22 |
facebook/react | 892c68605c46af0558cdd546782f23ad120ad0d4 | cd515d7e22636238adef912356f522168946313d | [fiber] bugfix - don't show <Offscreen> in error message. (#35763)
## Overview
While building the RSC sandboxes I notice error messages like:
> An error occurred in the `<Offscreen>` component
This is an internal component so it should show either:
> An error occurred in the `<Suspense>` component.
> An error ... | [
{
"path": "packages/react-reconciler/src/__tests__/ReactIncrementalErrorLogging-test.js",
"patch": "@@ -213,6 +213,67 @@ describe('ReactIncrementalErrorLogging', () => {\n }).toThrow('logCapturedError error');\n });\n \n+ it('does not report internal Offscreen component for errors thrown during recon... | 2026-02-11T16:20:51 |
nodejs/node | d88a46aa280c72a00dbee6171abf9469c3694e13 | 141d9f15b2ff2860ffb0b10e730a783f587dee7c | 2026-03-24, Version 25.8.2 (Current)
This is a security release.
Notable changes:
build,deps,test:
* (CVE-2026-21717) test array index hash collision
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC and KMAC
http:
* (CVE-2026-21710) use null prototype for headersDistinct/trailersD... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,6 +41,21 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">25.8.2</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.1\">25.8.1</a><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.0\">25.8.0<... | 2026-03-20T17:29:07 |
electron/electron | 7c1a6f7e955aa843187800900304a29171ea4da8 | 22ac2b13fb62aca4134fbe336902009152184d43 | docs: recommend subdirectory for userData to avoid Chromium conflicts (#50563)
Fixes #45414
Storing files directly in the userData root can cause naming conflicts
with Chromium's own subdirectories (Cache, GPUCache, Local Storage, etc.).
Added a recommendation to use a subdirectory such as
path.join(app.getPath('user... | [
{
"path": "docs/api/app.md",
"patch": "@@ -615,7 +615,11 @@ Returns `string` - The current application directory.\n by default is the `appData` directory appended with your app's name. By\n convention files storing user data should be written to this directory, and\n it is not recommended to wri... | 2026-04-01T14:54:08 |
vercel/next.js | b592e6df87deede681bc0bd375eca06b49fc98eb | b6017fac6a98a2337ce8c173ab72ad527e2b556a | fix: add AGENTS.md at package root for agent discovery (#92376)
### What?
Add an `AGENTS.md` file at the npm package root
(`node_modules/next/AGENTS.md`) so AI agents can discover the bundled
documentation.
### Why?
AI coding agents naturally check the package root for `AGENTS.md` before
searching subdirectories. W... | [
{
"path": "packages/next/AGENTS.md",
"patch": "@@ -0,0 +1,7 @@\n+<!-- BEGIN:nextjs-agent-rules -->\n+\n+# This is NOT the Next.js you know\n+\n+This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `dist/docs/` before wri... | 2026-04-06T15:19:19 |
golang/go | 0fa3564a74b802219d3df0852fbe921b3fe9c5be | 3e5efa048ac647c7554eea3a4ed230f265841115 | math/big: optimize writeMultiple to use StringWriter and ByteWriter
This overhauls writeMultiple to reduce allocations:
- return early if called with a count of 0 rather than allocating a buffer
- if writing one byte, which happens when padding, try io.ByteWriter
- try io.StringWriter
- fallback to io.Writer as curren... | [
{
"path": "src/math/big/intconv.go",
"patch": "@@ -42,12 +42,27 @@ func (x *Int) String() string {\n \n // write count copies of text to s.\n func writeMultiple(s fmt.State, text string, count int) {\n-\tif len(text) > 0 {\n-\t\tb := []byte(text)\n-\t\tfor ; count > 0; count-- {\n-\t\t\ts.Write(b)\n+\tif le... | 2025-01-29T12:25:37 |
nodejs/node | 141d9f15b2ff2860ffb0b10e730a783f587dee7c | d2be89c08158a01eb220f657952fbeb6b86fde06 | 2026-03-24, Version 24.14.1 'Krypton' (LTS)
This is a security release.
Notable changes:
build,deps,test:
* (CVE-2026-21717) test array index hash collision
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC and KMAC
http:
* (CVE-2026-21710) use null prototype for headersDistinct/tr... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,19 +41,45 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.2\">22.22.2</a></b><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.1\">22.22.1</a><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V22.md#22.22.0\">2... | 2026-03-16T17:02:03 |
facebook/react | f23aa1d9f5034e7cfbd3e6015ce102bb72a005a0 | 49c3b270f9991fbecbe2b9c29c27e19a54fb4466 | [DevTools] Fix memory leak when unmounting hoistables (#35741) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3616,4 +3616,59 @@ describe('Store', () => {\n <div>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('cleans up host hoistables', async () => {\n+ function Left() {\n+ return (\n+ <style... | 2026-02-10T12:09:23 |
electron/electron | 22ac2b13fb62aca4134fbe336902009152184d43 | a8acb96608ffaa8f9c0ad8f55e6773aebbc2f725 | fix: remove menu update debug log (#50608) | [
{
"path": "shell/browser/ui/cocoa/electron_menu_controller.mm",
"patch": "@@ -478,7 +478,6 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n \n if (![represented\n isKindOfClass:[WeakPtrToElectronMenuModelAsNSObject class]]) {\n- NSLog(@\"representedObject is not a WeakPtrToElectronMenuMo... | 2026-04-01T08:06:26 |
vercel/next.js | 7777dadcff070fcf26993ab9a9a8575c8237232e | 81d5e070f4a84b34bb0efe2524c200584fed3215 | docs: add deploy tests documentation to contributing guide (#92388)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
## What?
Adds documentation to the contributing guide explaining how deploy tests
work and how to run them.
## Why?
Deploy tests are an important part of the Next.js CI pipeline that
verify the framework works co... | [
{
"path": "contributing/core/testing.md",
"patch": "@@ -136,6 +136,43 @@ If you want to run a test again both Turbopack and Webpack, use Jest's `--projec\n pnpm test-dev test/e2e/app-dir/app/ --projects jest.config.*\n ```\n \n+### Deploy Tests\n+\n+Deploy tests verify that Next.js works correctly when depl... | 2026-04-05T21:58:02 |
golang/go | 3e5efa048ac647c7554eea3a4ed230f265841115 | 7a1d131afbb1aee15b56d8dd2405f270bbc486c2 | time: wrong Sign Cast in Time.UnmarshalBinary (V2 Format)
Fixes #78528
Change-Id: I8979a310dbf94b9710d3e8428480cb49a7308294
GitHub-Last-Rev: 3d7f5ef1491f15923add6ef556e387eb8d49bf3b
GitHub-Pull-Request: golang/go#78518
Reviewed-on: https://go-review.googlesource.com/c/go/+/762480
Reviewed-by: David Chase <drchase@goo... | [
{
"path": "src/time/time.go",
"patch": "@@ -1552,7 +1552,7 @@ func (t *Time) UnmarshalBinary(data []byte) error {\n \tbuf = buf[4:]\n \toffset := int(int16(buf[1])|int16(buf[0])<<8) * 60\n \tif version == timeBinaryVersionV2 {\n-\t\toffset += int(buf[2])\n+\t\toffset += int(int8(buf[2]))\n \t}\n \n \t*t = T... | 2026-04-04T11:06:26 |
facebook/react | c6bb26bf833c5d91760daf28fa2750b81067ac30 | 6a939d0b54a0e1aded58652a307cfc083b691d67 | [DevTools] Don't capture durations for disconnected subtrees when profiling (#35718)
After https://github.com/facebook/react/pull/34089, when updating
(possibly, mounting) inside disconnected subtree, we don't record this
as an operation. This only happens during reconnect. The issue is that
`recordProfilingDurations(... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js",
"patch": "@@ -191,4 +191,73 @@ describe('commit tree', () => {\n expect(commitTrees[1].nodes.size).toBe(2); // <Root> + <App>\n });\n });\n+\n+ describe('Suspense', () => {\n+ it('should handle trans... | 2026-02-09T22:18:17 |
nodejs/node | d2be89c08158a01eb220f657952fbeb6b86fde06 | 8e8b98d3aafa018f7b30cf7878bef057acf2d235 | 2026-03-24, Version 22.22.2 'Jod' (LTS)
This is a security release.
Notable changes:
build,test,deps:
* (CVE-2026-21717) test array index hash collision
crypto:
* (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC
http:
* (CVE-2026-21710) use null prototype for headersDistinct/trailersDistinc... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -41,43 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.1\">25.8.1</a></b><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.0\">25.8.0</a><br/>\n-<a href=\"doc/changelogs/CHANGELOG_V25.md#25.7.0\">25.7.0<... | 2026-03-22T16:06:18 |
vercel/next.js | 81d5e070f4a84b34bb0efe2524c200584fed3215 | 5a922bc9bb9b4435da87f5b6783e3b14e26aadf9 | next-core: deduplicate output assets and detect content conflicts on emit (#92292)
### What?
Adds deduplication and conflict detection to the asset emission stage in
`crates/next-core/src/emit.rs`, and a new `IssueStage::Emit` variant in
`turbopack-core`.
Before emitting, assets are grouped by their output path. If ... | [
{
"path": "crates/next-core/src/emit.rs",
"patch": "@@ -1,9 +1,16 @@\n-use anyhow::Result;\n+use anyhow::{Ok, Result};\n+use futures::join;\n+use smallvec::{SmallVec, smallvec};\n use tracing::Instrument;\n-use turbo_tasks::{TryFlatJoinIterExt, ValueToStringRef, Vc};\n-use turbo_tasks_fs::{FileSystemPath, r... | 2026-04-05T18:37:58 |
electron/electron | 97773bf50c9c09c791ea407b3757e767921a572c | 1e0846749ba6d59ac48802718c48082e8b0bac00 | fix: prevent borders and smearing in transparent frameless/client frame windows on Linux (#50541)
fix the appearance of transparent frameless and client frame windows | [
{
"path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc",
"patch": "@@ -239,7 +239,9 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Rect> ... | 2026-03-31T16:24:10 |
golang/go | 7a1d131afbb1aee15b56d8dd2405f270bbc486c2 | 47d6423673479edc418e777d221f2527076e9944 | os: use t.TempDir in root_test tempDirWithUnixSocket
tempDirWithUnixSocket used os.MkdirTemp("", ""), while other paths in
root consistency tests use t.TempDir().
If GOTMPDIR and the system temp dir are on different filesystems (such
as during abuild), TestRootConsistencyRename and TestRootConsistencyLink
may produce... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -1211,15 +1211,7 @@ var rootConsistencyTestCases = []rootConsistencyTest{{\n }}\n \n func tempDirWithUnixSocket(t *testing.T, name string) string {\n-\tdir, err := os.MkdirTemp(\"\", \"\")\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n-\tt.Cleanup(func() {\n-\t\... | 2026-03-11T14:08:09 |
nodejs/node | 02104c08bbf5bcb3bbd94541bb62fe2dc0e97cb7 | a98d9f6ad79661c4c33d4274346716dc7d95c6e7 | doc: fix overstated Date header requirement in response.sendDate
The docs stated "HTTP requires the Date header in responses" which
oversimplifies the actual requirement. Per RFC 9110 Section 6.6.1,
the Date header is required only in most responses (2xx/3xx/4xx from
servers with a clock), not all. Reference the speci... | [
{
"path": "doc/api/http.md",
"patch": "@@ -2319,8 +2319,8 @@ added: v0.7.5\n When true, the Date header will be automatically generated and sent in\n the response if it is not already present in the headers. Defaults to true.\n \n-This should only be disabled for testing; HTTP requires the Date header\n-in ... | 2026-03-24T10:49:30 |
facebook/react | 4c9d62d2b47be424ad9050725d8bdd8df12fe2a3 | 24f215ce8b0e17a230fbb7317919a6ae0c324f35 | [DevTools] Fix crash when revealing stable, filtered `<Activity>` children (#35734) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3572,4 +3572,48 @@ describe('Store', () => {\n <Suspense name=\"inner\" rects={[{x:1,y:2,width:14,height:1}]}>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('can reconcile newly visible Activity with fil... | 2026-02-09T21:52:24 |
electron/electron | 1e0846749ba6d59ac48802718c48082e8b0bac00 | 8cd766ff53cece0d3f5020b94efa9567d4dc6071 | fix: invoke print callback directly when no print job exists (#50431)
ShowInvalidPrinterSettingsError() called TerminatePrintJob(true),
but when no print_job_ had been created yet (e.g. settings validation
failed before a job could start), TerminatePrintJob bails out
immediately without reaching ReleasePrintJob() wher... | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2026-03-31T16:01:59 |
golang/go | 47d6423673479edc418e777d221f2527076e9944 | 70dc75b79b7454caf0ed256b51ff716f880b317d | cmd/go/internal/script: add fuzz test for quoteArgs
Adds a fuzz test for quoteArgs and fixes the bugs it found:
handling of empty strings and strings containing "&" or "$".
This is a copy of a similar change submitted to rsc.io/script:
https://github.com/rsc/script/pull/10
Change-Id: I76e7fc89475e1c4e415f45f2c7ac4a8... | [
{
"path": "src/cmd/internal/script/engine.go",
"patch": "@@ -493,15 +493,13 @@ func expandArgs(s *State, rawArgs [][]argFragment, regexpArgs []int) []string {\n }\n \n // quoteArgs returns a string that parse would parse as args when passed to a command.\n-//\n-// TODO(bcmills): This function should have a ... | 2024-02-23T05:00:46 |
nodejs/node | 7f8019e3233f61efde5b76a5423475ef2f6e3a90 | 2263b4d6f1dbb8c9355184899e4970359aa8ab13 | doc: fix guaranteed typo
PR-URL: https://github.com/nodejs/node/pull/62374
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -4074,7 +4074,7 @@ that run in libuv's threadpool will experience degraded performance. In order to\n mitigate this issue, one potential solution is to increase the size of libuv's\n threadpool by setting the `'UV_THREADPOOL_SIZE'` environment variable to a value\n g... | 2026-03-23T19:39:10 |
facebook/react | 24f215ce8b0e17a230fbb7317919a6ae0c324f35 | eab523e2a99583703b13536670dfdd8a3b1e26e0 | [DevTools] Fix false-positive re-render reports for filtered nodes (#35723)
Fixes https://github.com/facebook/react/issues/33423,
https://github.com/facebook/react/issues/35245,
https://github.com/facebook/react/issues/19732.
As demoed
[here](https://github.com/facebook/react/issues/33423#issuecomment-2970750588),
Re... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js",
"patch": "@@ -298,4 +298,164 @@ describe('profiling charts', () => {\n `);\n });\n });\n+\n+ describe('components behind filtered fibers should not report false re-renders', () => {\n+ it('should not report a c... | 2026-02-09T20:39:33 |
electron/electron | e0bd4ffc39d6bd563d7094905f579c8d79643b4c | bbbcae1a12c5a827deef8e9c15e3177742d1ee7d | fix: add missing HandleScope in contentTracing.getTraceBufferUsage() (#50556)
The `OnTraceBufferUsageAvailable` callback creates V8 handles via
`Dictionary::CreateEmpty()` before `promise.Resolve()` enters its
`SettleScope` (which provides a `HandleScope`). When the callback
fires asynchronously from a Mojo response (... | [
{
"path": "shell/browser/api/electron_api_content_tracing.cc",
"patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promise.i... | 2026-03-31T01:21:43 |
golang/go | 70dc75b79b7454caf0ed256b51ff716f880b317d | d74de3ce79d4ab3495650bfcc4682cab09514b89 | cmd/compile: unify DWARF variable generation and remove encoding
Refactor the DWARF variable generation in the compiler:
1. Replace the intermediate []byte location list encoding with a
structured LocListEntry type. The old code packed SSA block/value
IDs into pointer-sized integers, wrote them alongside DWARF4... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -93,7 +93,7 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t\t\tdefault:\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif !ssa.IsVarWantedForDebug(n) {\n+\t\t\tif !shouldEmitDwarfVar(n) {\n \t\t\t\tcontinue\n... | 2026-03-03T00:25:23 |
facebook/react | eab523e2a99583703b13536670dfdd8a3b1e26e0 | 272441a9ade6bf84de11ba73039eb4c80668fa6a | [Fiber] Avoid duplicate debug info for array children (#35733) | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2820,7 +2820,8 @@ describe('ReactFlight', () => {\n ]\n : undefined,\n );\n- expect(getDebugInfo(thirdPartyChildren[2])).toEqual(\n+ const fragment = thirdPartyChildren[2];\n+ expect... | 2026-02-09T19:36:56 |
vercel/next.js | 2bf38b01154ab1b3b0de0e4a5094f4cffb6c20d2 | 3d3405a1be8f7288df58fb2ed72feeb48b14229d | feat: add experimental.swcEnvOptions for SWC preset-env configuration (#92272)
### What?
Add `experimental.swcEnvOptions` to expose SWC's preset-env `env`
configuration options — including `mode`, `coreJs`, `include`,
`exclude`, `skip`, `shippedProposals`, `forceAllTransforms`, `debug`,
and `loose`.
### Why?
Curren... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -29,6 +29,7 @@ use turbopack_core::{\n use turbopack_css::chunk::CssChunkType;\n use turbopack_ecmascript::{\n AnalyzeMode, TypeofWindow, chunk::EcmascriptChunkType, references::esm::UrlRewriteBehavior,\n+ transform::PresetEnvConfi... | 2026-04-04T03:27:04 |
electron/electron | bbbcae1a12c5a827deef8e9c15e3177742d1ee7d | 3e1666be08b4034cfabe801885380adb40069551 | fix: re-enable MacWebContentsOcclusion with embedder window fix (#50579)
* fix: re-enable MacWebContentsOcclusion with embedder window fix
Replace the full revert of Chromium's MacWebContentsOcclusion cleanup
with a targeted patch that handles embedder windows shown after
WebContentsViewCocoa attachment. This lets us... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -119,7 +119,7 @@ build_disable_thin_lto_mac.patch\n feat_corner_smoothing_css_rule_and_blink_painting.patch\n build_add_public_config_simdutf_config.patch\n fix_multiple_scopedpumpmessagesinprivatemodes_instances.patch\n-revert_code_health_clean_up_stale_m... | 2026-03-30T21:13:00 |
nodejs/node | 22fc52bda16b8cb08d4e7fdf1bb4a693bb5de2db | 61102cdbb3d59155ad5bb4fc9419627a31e63f7a | doc: remove spawn with shell example from bat/cmd section
Remove the suggestion to use child_process.spawn() with the shell
option set for running .bat and .cmd files on Windows. Passing
arguments through spawn with shell: true is deprecated (DEP0190)
due to shell injection risks. Keep the exec() and direct cmd.exe
sp... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -120,23 +120,19 @@ however, `.bat` and `.cmd` files are not executable on their own without a\n terminal, and therefore cannot be launched using [`child_process.execFile()`][].\n When running on Windows, `.bat` and `.cmd` files can be invoked by:\n \n-* usi... | 2026-03-23T09:49:36 |
vercel/next.js | cb0d88f6e3e340216d478e0ba0c201ec23f7c15c | 28096d36be801257f83ca91d53835fa08f52b67d | Improve existing dev server error message to suggest using it (#92317)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
### What?
Improves the error message shown when a user tries to start `next dev`
while another dev server is already running in the same directory.
### Why?
Previously, the error message only suggested killing... | [
{
"path": "packages/next/src/build/lockfile.ts",
"patch": "@@ -202,12 +202,17 @@ export class Lockfile {\n )\n }\n console.error()\n+ console.error(\n+ `You can access the existing server at ${cyan(serverInfo.appUrl)},`\n+ )\n // Use pla... | 2026-04-03T23:33:13 |
golang/go | 2a902c8a8a37935abc4adc93605276c9d2103e45 | f4b87f314dd7a890e9d3b42d7d6427cc7f51f9a2 | cmd/compile: optimize switch statements using lookup tables
Switch statement containing integer constant cases and case bodies just
returning a constant should be optimizable to a simpler and faster table
lookup instead of a jump table.
That is, a switch like this:
switch x {
case 0: return 10
case 1: re... | [
{
"path": "src/cmd/compile/internal/test/switch_test.go",
"patch": "@@ -294,3 +294,135 @@ func (r rng) next(predictable bool) rng {\n func (r rng) value() uint64 {\n \treturn uint64(r)\n }\n+\n+// Benchmarks for switch-to-lookup-table optimization.\n+// These use functions that return constants, which is th... | 2026-03-18T09:34:00 |
electron/electron | 3e1666be08b4034cfabe801885380adb40069551 | a06b49aca19b912b1ccfef0ed5a1d5c97f615b69 | chore: remove dead C++ code from shell/ (#50513)
Removes unreferenced code found via codebase sweep. Each category below may
indicate a missing feature rather than truly-unused code — see PR description.
Dead class (1):
ElectronNavigationUIData — never instantiated; ElectronBrowserClient uses
upstream ExtensionNa... | [
{
"path": "filenames.gni",
"patch": "@@ -793,8 +793,6 @@ filenames = {\n \"shell/browser/extensions/electron_kiosk_delegate.h\",\n \"shell/browser/extensions/electron_messaging_delegate.cc\",\n \"shell/browser/extensions/electron_messaging_delegate.h\",\n- \"shell/browser/extensions/electron_... | 2026-03-30T17:36:00 |
vercel/next.js | 739299d3efab3f6baace5e0af6b8897358893d1e | d5f479c1289619200de3acdfa0325bae111e1bad | fix: add @deprecated annotation to experimental.useCache (#92316)
### What?
Add a `@deprecated` JSDoc annotation to `experimental.useCache` in
`config-shared.ts`, pointing to `cacheComponents: true` as the
successor.
### Why?
`experimental.cacheComponents` already has `@deprecated use top-level
cacheComponents inst... | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -940,6 +940,7 @@ export interface ExperimentalConfig {\n \n /**\n * Enables the use of the `\"use cache\"` directive.\n+ * @deprecated use top-level `cacheComponents` instead\n */\n useCache?: boolean\n ",
"additions": 1,
... | 2026-04-03T22:16:23 |
nodejs/node | 61102cdbb3d59155ad5bb4fc9419627a31e63f7a | 5d900bed775e29d94336206eee1139e6f2de55c3 | doc: minor typo fix
PR-URL: https://github.com/nodejs/node/pull/62358
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongon... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -1835,10 +1835,10 @@ It does several things at once:\n \n 1. Creates a new context.\n 2. If `contextObject` is an object, [contextifies][contextified] it with the new context.\n- If `contextObject` is undefined, creates a new object and [contextifies][contextified]... | 2026-03-22T21:48:57 |
golang/go | 583ed06a2b82cf7437b37b2fc1fd2c772d7de420 | 16b01d5362794110376c23e83f386b9e413e2464 | crypto/x509/pkix: avoid quadratic string concatenation in RDNSequence.String
RDNSequence.String builds its result using repeated s += ... inside
nested loops, leading to O(N²) time and memory complexity.
A certificate with many Subject or Issuer RDN entries can therefore
cause excessive CPU and memory usage when Strin... | [
{
"path": "src/crypto/x509/pkix/pkix.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/hex\"\n \t\"fmt\"\n \t\"math/big\"\n+\t\"strings\"\n \t\"time\"\n )\n \n@@ -38,23 +39,25 @@ var attributeTypeNames = map[string]string{\n // String returns a string representation of the sequence r,\n // roughly fo... | 2026-03-26T21:05:23 |
electron/electron | a06b49aca19b912b1ccfef0ed5a1d5c97f615b69 | d318893aa06231d20d9c8e74ccdbee86c9f7a86e | chore: bump chromium to 148.0.7759.0 (main) (#50515)
* chore: bump chromium in DEPS to 148.0.7755.0
* chore: bump chromium in DEPS to 148.0.7756.0
* chore: update patches
* 7698536: Wire up experiment arms for Glic summarize pdf button.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/7698536
* 7695... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7751.0',\n+ '148.0.7759.0',\n 'node_version':\n 'v24.14.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-03-30T17:32:35 |
nodejs/node | b2c52352541b6aa32ed86acadb15ee43fb18a150 | 052aec7127f40f8b70fc185bf6091f10a259d376 | doc: fix stray carriage return in packages.md
PR-URL: https://github.com/nodejs/node/pull/62350
Refs: https://openjs-foundation.slack.com/archives/C019Y2T6STH/p1774015976262609
Refs: https://github.com/nodejs/node/pull/62302
Refs: https://github.com/nodejs/node/actions/runs/23347139396/job/67915524762?pr=61767
Reviewe... | [
{
"path": "doc/api/packages.md",
"patch": "@@ -1012,7 +1012,7 @@ added: v0.4.0\n The `\"main\"` field defines the entry point of a package when imported by name\n via a `node_modules` lookup. Its value is a path.\n \n-The [`\"exports\"`][] field, if it exists, takes precedence over the\r\n+The [`\"exports\... | 2026-03-20T16:17:41 |
vercel/next.js | 6160d0db3e698c017a69e44f2f63ecba64fddfd8 | 392d02ae8bbea6b9a5eb5d664938af2959a17874 | Revert "simplify session dependent tasks and add TTL support (#91729)" (#92320)
This is causing OOMs in some applications running with a persistent cache
See discussion: https://vercel.slack.com/archives/C03EWR7LGEN/p1775159630054759
The issue appears to be invalidating the chunk graph in an odd way that causes us t... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -363,37 +363,6 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.options.dependency_tracking\n }\n \n- /// Sets the initial aggregation number for a newly created task. Root tasks get `u32::MAX`\n- ... | 2026-04-03T21:46:23 |
golang/go | 16b01d5362794110376c23e83f386b9e413e2464 | 7b5ba1f8ae661d4750a05e3908e0903cf9249a3b | path/filepath: document Dir behavior for Windows volume-only paths
Clarify that on Windows, Dir("C:") returns "C:." (the current directory
on drive C) rather than a root path. This is because Clean("") returns
"." and Dir prepends the volume name.
Fixes #77314
Change-Id: Idbc8ef5a4905e8587268428503a98a28c8c2f6e9
Rev... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -463,6 +463,10 @@ func Base(path string) string {\n // If the path is empty, Dir returns \".\".\n // If the path consists entirely of separators, Dir returns a single separator.\n // The returned path does not end in a separator unless it is the root direc... | 2026-02-17T01:10:17 |
rust-lang/rust | 574d8774b9e34c7d9fb07e81caaa67ccc382a0a0 | c753cef0df1af7b72ce375fb7c9fd4fc31bfb9ec | Parenthesize block-like expressions in index base of pretty printer
The AST pretty printer produces invalid Rust when a block expression is
the base of an index operation inside a macro expansion. This is a gap
in the existing `FixupContext` parenthesization machinery — the approach
handles statement position but not ... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs",
"patch": "@@ -677,7 +677,8 @@ impl<'a> State<'a> {\n let expr_fixup = fixup.leftmost_subexpression_with_operator(true);\n self.print_expr_cond_paren(\n expr,\n- expr_fixup.p... | 2026-03-18T20:23:30 |
facebook/react | 272441a9ade6bf84de11ba73039eb4c80668fa6a | b07aa7d643ec9028e452612c3ff2c17a6cee6bb7 | [Flight] Add `unstable_allowPartialStream` option to Flight Client (#35731)
When using a partial prerender stream, i.e. a prerender that is
intentionally aborted before all I/O has resolved, consumers of
`createFromReadableStream` would need to keep the stream unclosed to
prevent React Flight from erroring on unresolv... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -359,6 +359,7 @@ type Response = {\n _stringDecoder: StringDecoder,\n _closed: boolean,\n _closedReason: mixed,\n+ _allowPartialStream: boolean,\n _tempRefs: void | TemporaryReferenceSet, // the set temporary references can be... | 2026-02-09T18:19:32 |
electron/electron | d318893aa06231d20d9c8e74ccdbee86c9f7a86e | f133e2f775f86fcd293647d50d19a56fe5acb4d6 | fix: fix devtools patch type error on release builds (#50551)
fix: fix devtools types | [
{
"path": "patches/devtools_frontend/feat_allow_enabling_extension_panels_on_custom_protocols.patch",
"patch": "@@ -7,14 +7,14 @@ This allows us to show Chrome extension panels on pages served over\n custom protocols.\n \n diff --git a/front_end/core/root/Runtime.ts b/front_end/core/root/Runtime.ts\n-index ... | 2026-03-27T22:40:51 |
vercel/next.js | 392d02ae8bbea6b9a5eb5d664938af2959a17874 | ff7cd1bf2340ea56369c39d1aa74f1e273a7d233 | ci: fix stats action (#92325)
We recently re-imaged the self-hosted Linux runners and it now hits
`ERR_PNPM_EXDEV` when pnpm copies packages between its default store and
the temp stats workspace. Keeping both under the same temp root avoids
the cross-filesystem copy failure. | [
{
"path": ".github/actions/next-stats-action/src/constants.js",
"patch": "@@ -3,7 +3,20 @@ const os = require('os')\n const fs = require('fs')\n \n const benchTitle = 'Page Load Tests'\n-const workDir = fs.mkdtempSync(path.join(os.tmpdir(), 'next-stats'))\n+\n+function getTempRoot() {\n+ const tempRoot = p... | 2026-04-03T21:25:13 |
nodejs/node | b328bf74bd4fba4dc13b948505a4b309c87d2258 | 4ee467f91254fdd5d9a1c328edd2e3fc5b541943 | lib,src: implement QuotaExceededError as DOMException-derived interface
Implement QuotaExceededError as a DOMException-derived interface per the
WebIDL specification update.
QuotaExceededError is now a proper constructor exposed as a global
[Exposed=*] interface that extends DOMException with optional `quota`
and `re... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -976,6 +976,14 @@ DataHandler.prototype.load = async function load(key) {\n };\n ```\n \n+## Class: `QuotaExceededError`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+The WHATWG {QuotaExceededError} class. Extends {DOMException}.\n+\n ## Class: `ReadableByteStream... | 2026-03-17T12:48:16 |
golang/go | 7b5ba1f8ae661d4750a05e3908e0903cf9249a3b | 0a36b58888cc41b276362673f70be87efd7e55ad | cmd/internal/obj/loong64: run go generate
"go generate" on this package seems to generate a diff.
I have no idea whether this diff is reasonable or not.
It looks kinda weird, but maybe? Or perhaps something is wrong with
../mkcnames.go.
Change-Id: I3474bab3f6880ffc24c1cf6ec11958a1c9467909
Reviewed-on: https://go-revi... | [
{
"path": "src/cmd/internal/obj/loong64/cnames.go",
"patch": "@@ -60,8 +60,14 @@ var cnames0 = []string{\n \t\"SAUTO\",\n \t\"LAUTO\",\n \t\"ZOREG\",\n-\t\"SOREG\",\n-\t\"LOREG\",\n+\t\"SOREG_8\",\n+\t\"SOREG_9\",\n+\t\"SOREG_10\",\n+\t\"SOREG_11\",\n+\t\"SOREG_12\",\n+\t\"SOREG_16\",\n+\t\"LOREG_32\",\n+\t... | 2026-03-31T21:46:09 |
facebook/react | b07aa7d643ec9028e452612c3ff2c17a6cee6bb7 | 2dd9b7cf76c31df5d7e26e5199e3c362c3e94f95 | [Flight] Fix `encodeReply` for JSX with temporary references (#35730)
`encodeReply` throws "React Element cannot be passed to Server Functions
from the Client without a temporary reference set" when a React element
is the root value of a `serializeModel` call (either passed directly or
resolved from a promise), even w... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -552,14 +552,19 @@ function moveDebugInfoFromChunkToInnerValue<T>(\n resolvedValue._debugInfo,\n debugInfo,\n );\n- } else {\n+ } else if (!Object.isFrozen(resolvedValue)) {\n Object.defineProperty((re... | 2026-02-09T15:17:53 |
vercel/next.js | ff7cd1bf2340ea56369c39d1aa74f1e273a7d233 | 9cb2048439b8b95b6e6460d17d94d9cb1823fbef | Move streamToUint8Array back to node-web-streams-helper.ts (#92263)
## What?
Fixes the case where having React 18 installed fails the build because
react-dom gets imported from stream-ops. #90500 moved the
`streamToUint8Array` from node-web-streams-helper to stream-ops. This
moves the function back to where it was be... | [
{
"path": "packages/next/src/server/app-render/stream-ops.node.ts",
"patch": "@@ -357,16 +357,6 @@ export async function streamToBuffer(stream: AnyStream): Promise<Buffer> {\n return webStreamToBuffer(nodeReadableToWebReadableStream(stream))\n }\n \n-export async function streamToUint8Array(\n- stream: A... | 2026-04-03T18:55:17 |
electron/electron | b4460a05daf9aacbcab0e20763cfe6e612080efd | 0a1ea1f028e0345d4908284c9917f745c0d5b3d4 | docs: Document known issue with dock.hide() method (#50476)
* Document known issue for dock.hide() method
Added a note about a known issue with dock.hide() method.
* Adjust workaround time for dock.hide() method
Updated workaround time for dock.hide() known issue.
* Fix known issue timing for dock.hide() workaroun... | [
{
"path": "docs/api/dock.md",
"patch": "@@ -56,6 +56,9 @@ Returns `string` - The badge string of the dock.\n \n Hides the dock icon.\n \n+> [!IMPORTANT]\n+> **Known issue:** Calling `dock.hide()` within one second of a previous call will have no effect. As a workaround, ensure at least one second has elapse... | 2026-03-27T14:00:04 |
nodejs/node | 4ee467f91254fdd5d9a1c328edd2e3fc5b541943 | 56aba88702b3a7da4a44688664ff22d8afebb267 | tools: do not swallow error in `lint-nix` workflow
PR-URL: https://github.com/nodejs/node/pull/62292
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im> | [
{
"path": ".github/workflows/linters.yml",
"patch": "@@ -154,7 +154,12 @@ jobs:\n run: |\n nix-shell -I nixpkgs=./tools/nix/pkgs.nix -p 'nixfmt-tree' --run '\n treefmt --quiet --ci\n- ' || git --no-pager diff --exit-code\n+ ' && EXIT_CODE=\"$?\" || EXIT_CODE=\... | 2026-03-19T11:06:03 |
facebook/react | 2dd9b7cf76c31df5d7e26e5199e3c362c3e94f95 | 65db1000b944c8a07b5947c06b38eb8364dce4f2 | [Flight] Fix debug channel flag in Node.js server renderToPipeableStream (#35724)
## Summary
- Fixes the `createRequest` call in `renderToPipeableStream` to pass
`debugChannelReadable !== undefined` instead of `debugChannel !==
undefined` in the turbopack, esm, and parcel Node.js server
implementations
- The webpack ... | [
{
"path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js",
"patch": "@@ -187,7 +187,7 @@ function renderToPipeableStream(\n options ? options.startTime : undefined,\n __DEV__ && options ? options.environmentName : undefined,\n __DEV__ && options ? options.filterStackFrame ... | 2026-02-08T19:14:15 |
rust-lang/rust | f573369d78d47bc2ad7d0a2e343377a7e08d3377 | 6cff92d2381966f6748bfa510cf00d9a881fee40 | Fix [env] in .cargo/config.toml overriding process environment variables
cargo_config_env() only checked extra_env (rust-analyzer.cargo.extraEnv)
when deciding whether to skip an existing variable, but never checked the
actual process environment via std::env::var. This caused config.toml
values to unconditionally ove... | [
{
"path": "src/tools/rust-analyzer/crates/project-model/src/env.rs",
"patch": "@@ -79,18 +79,31 @@ pub(crate) fn cargo_config_env(\n for (key, entry) in env_toml {\n let key = key.as_ref().as_ref();\n let value = match entry.as_ref() {\n- DeValue::String(s) => String::from(s.c... | 2026-04-08T08:34:22 |
golang/go | 330aec810997f89262fa04939a00425194e94216 | 40ec033c33802cf6e1236ea8030d882338a457d5 | hash/maphash: add Hasher interface and ComparableHasher impl
Hasher is the standard interface for expressing custom hash
functions and equivalence relations for arbitrary data types.
This allows them to be used in hash-based collection types
such as a hash table (CL 612217) or a Bloom filter (CL 740440).
The Comparab... | [
{
"path": "api/next/70471.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg hash/maphash, method (ComparableHasher[$0]) Equal($0, $0) bool #70471\n+pkg hash/maphash, method (ComparableHasher[$0]) Hash(*Hash, $0) #70471\n+pkg hash/maphash, type ComparableHasher[$0 comparable] struct #70471\n+pkg hash/maphash, type Hashe... | 2025-03-12T21:12:41 |
vercel/next.js | 9cb2048439b8b95b6e6460d17d94d9cb1823fbef | 678a4aa9dd5a7b53c8f212011ea8107576bb400c | Ensure app-page reports stale ISR revalidation errors via onRequestError (#92282)
Note: the change is mostly whitespace. Recommend reviewing w/o
whitespace
[here](https://github.com/vercel/next.js/pull/92282/changes?w=1).
For App Router pages using time-based ISR, a stale cached response can
be returned before backgr... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -995,214 +995,317 @@ export async function handler(\n const isProduction = routeModule.isDev === false\n const didRespond = hasResolved || res.writableEnded\n \n- // skip on-demand revalidate if cache is not present and... | 2026-04-03T16:04:29 |
electron/electron | b41ec6586a1e1d4c387b0650478d761b286c3b60 | 4eff8f20f2f64fa7b808bccd5ca0c4bbca8261a4 | fix: correct linux zygote process titles (#50509)
* fix: correct linux zygote process titles
* pass argv on mac as well
* lint | [
{
"path": "shell/app/electron_library_main.mm",
"patch": "@@ -10,6 +10,7 @@\n #include \"base/apple/scoped_nsautorelease_pool.h\"\n #include \"base/at_exit.h\"\n #include \"base/command_line.h\"\n+#include \"base/compiler_specific.h\"\n #include \"base/i18n/icu_util.h\"\n #include \"base/notreached.h\"\n #i... | 2026-03-27T12:24:05 |
facebook/react | 2a879cdc95228b1b3b4cdc81cfc04599716b5562 | 9a5996a6c144b4d6950b840f2098eff0117b5ac2 | [DevTools] Fix broken commit tree builder for initial operations (#35710) | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -1138,7 +1138,7 @@ export function attach(\n // if any passive effects called console.warn / console.error.\n let needsToFlushComponentLogs = false;\n \n- function bruteForceFlushErrorsAndWarnings() {\n+ function br... | 2026-02-06T14:16:23 |
nodejs/node | f68824a6805a82bd017004443430cf40c3efaf19 | 40c625b0fd38c85081303c62cbb99a8a22ed633f | test_runner: set non-zero exit code when suite errors occur
PR-URL: https://github.com/nodejs/node/pull/62282
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -384,6 +384,9 @@ function countCompletedTest(test, harness = test.root.harness) {\n }\n if (test.reportedType === 'suite') {\n harness.counters.suites++;\n+ if (!test.passed) {\n+ harness.success = false;\n+ }\n return;\n }... | 2026-03-18T17:09:42 |
rust-lang/rust | 6cff92d2381966f6748bfa510cf00d9a881fee40 | 7fc9fb99655e40a8b0525f4339ac82779651c789 | Use RA_TEST_ prefix in env test to avoid collisions with process env | [
{
"path": "src/tools/rust-analyzer/crates/project-model/src/env.rs",
"patch": "@@ -124,38 +124,38 @@ fn parse_output_cargo_config_env_works() {\n .unwrap();\n let config_path = cwd.join(\".cargo\").join(\"config.toml\");\n let raw = r#\"\n-env.CARGO_WORKSPACE_DIR.relative = true\n-env.CARGO_WORK... | 2026-04-08T08:33:48 |
golang/go | 40ec033c33802cf6e1236ea8030d882338a457d5 | 4ce2612f21d2c32fc8a6f7bbd2c6c6c5b807f4fe | runtime: add sysUnreserve to undo sysReserve
This is inspired by CL 724560 by Bobby Powers, particularly their great
commit message.
When using address sanitizer with leak detection, sysReserve registers
memory regions with LSAN via lsanregisterrootregion. However, several
code paths release this memory using sysFree... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -550,7 +550,7 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \tif !ok {\n \t\t// We were unable to get the requested reservation.\n \t\t// Release what we did get and fail.\n-\t\tsysFreeOS(got, physPageSize)\n+\t\tsysUnreserve(got, physPageS... | 2026-04-02T17:17:23 |
vercel/next.js | 678a4aa9dd5a7b53c8f212011ea8107576bb400c | fb3ebba63d0bfb1c1e2d676ebe389d6c4535de6a | [turbopack] optimize RcStr parsing (#91773)
`RcStr` has 3 internal forms
* `INLINE` meaning it is small enough that the bytes are stored inline (7 bytes)
* `STATIC` meaning it was allocated by `rcstr!` and is stored in a `static` item somewhere
* `DYNAMIC` meaning it is stored in an `Arc`
The nice thing is that `I... | [
{
"path": "Cargo.lock",
"patch": "@@ -3638,9 +3638,9 @@ dependencies = [\n \n [[package]]\n name = \"js-sys\"\n-version = \"0.3.77\"\n+version = \"0.3.91\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f\"\n... | 2026-04-03T15:42:13 |
electron/electron | ae6b2195450b9d940a8616426ca4a2a033452bcc | c44d60cfe420dfacc311f1c1333ab4d589fc1722 | fix: outdated execution path for COM activation (#50471)
* fix: outdated execution path
* fix: use stub exe when detected | [
{
"path": "shell/browser/notifications/win/windows_toast_activator.cc",
"patch": "@@ -133,6 +133,21 @@ std::wstring GetExecutablePath() {\n return std::wstring(path, len);\n }\n \n+// Installers sometimes put the running app in a versioned subfolder and ship a\n+// stub with the same filename one director... | 2026-03-26T18:21:58 |
golang/go | 78d5260426899e934a4d680910b1484953e78087 | ef90a565b50af191c4f20b62770b084d6978a88d | runtime: use asmcgocall_no_g in libInit
libInit runs before rt0_go, which is where TLS setup occurs. Thus the
contents of the TLS may not be defined, so the g lookup in asmcgocall is
not safe.
Concretely, android-386 c-shared builds crash without this change
because asmcgocall reads an invalid non-zero g from the TLS... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -568,6 +568,15 @@ nosave:\n \tMOVW\tR4, ret+16(FP)\n \tRET\n \n+// func asmcgocall_no_g(fn, arg unsafe.Pointer)\n+// Call fn(arg) aligned appropriately for the gcc ABI.\n+// Called on a system stack, and there may be no g yet.\n+TEXT ·asmcgocall_no_g(SB),N... | 2026-03-31T20:34:59 |
nodejs/node | 40c625b0fd38c85081303c62cbb99a8a22ed633f | 27501b48923036c1d0415122f7d1278817834478 | src,sqlite: fix filterFunc dangling reference
PR-URL: https://github.com/nodejs/node/pull/62281
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -2157,7 +2157,8 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo<Value>& args) {\n \n Local<Function> filterFunc = filterValue.As<Function>();\n \n- context.filterCallback = [&](std::string_view item) -> bool {\n+ context.filterCall... | 2026-03-18T16:15:32 |
facebook/react | b9323509be66759201c6a752233370970c2a613f | bb53387716e96912cbfb48d92655bc23882798ff | [DevTools] Throw an error when attempting to clone non-existent node (#35702)
There is an existing issue with serialisation logic for the traces from
Profiler panel.
I've discovered that `TREE_OPERATION_UPDATE_TREE_BASE_DURATION`
operation for some reason appears earlier in a sequence of operations,
before the `TREE_... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Profiler/CommitTreeBuilder.js",
"patch": "@@ -160,11 +160,14 @@ function updateTree(\n \n // Clone nodes before mutating them so edits don't affect them.\n const getClonedNode = (id: number): CommitTreeNode => {\n- // $FlowFixMe[prop-missin... | 2026-02-05T17:49:18 |
vercel/next.js | 41839289de02d7f426fff0d0b9922b646c7afe31 | be3ee02b83756b9b24c07464b94e5fb687e8b1c8 | Add MCP `get_compilation_issues` tool and NAPI method (#92062)
### What?
Adds a new \`get_compilation_issues\` MCP tool (and the underlying
\`projectGetAllCompilationIssues\` NAPI method) that returns all
compilation issues from all routes in a single call.
**New files:**
- \`crates/next-napi-bindings/src/next_api/p... | [
{
"path": ".config/eslintignore.mjs",
"patch": "@@ -47,6 +47,7 @@ export default globalIgnores([\n 'examples/with-typescript-graphql/lib/gql/',\n 'test/development/basic/hmr/components/parse-error.js',\n 'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',\n+ 'test/develo... | 2026-04-03T12:38:44 |
facebook/react | 3aaab92a265ebeb43b15e7c30c2f1dfb9fcd5961 | 087a34696f1eb484157b19aee1648bcbce51de64 | [flags] add enableEffectEventMutationPhase (#35548)
Small optimization for useEffectEvent. Not sure we even need a flag for
it, but it will be a nice killswitch.
As an added benefit, it fixes a bug when `enableViewTransition` is on,
where we were not updating the useEffectEvent callback when a tree went
from hidden t... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -47,6 +47,7 @@ import type {ViewTransitionState} from './ReactFiberViewTransitionComponent';\n import {\n alwaysThrottleRetries,\n enableCreateEventHandleAPI,\n+ enableEffectEventMutationPhase,\n enableHiddenSubtreeInsert... | 2026-02-04T20:04:57 |
nodejs/node | 27501b48923036c1d0415122f7d1278817834478 | 7ca5de7eda3cac94c0f39bdf1b3fabe291441352 | build: fix timezone-update path references
PR-URL: https://github.com/nodejs/node/pull/62280
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": ".github/workflows/timezone-update.yml",
"patch": "@@ -57,7 +57,7 @@ jobs:\n with:\n author: Node.js GitHub Bot <github-bot@iojs.org>\n body: |\n- This PR was generated by tools/timezone-update.yml.\n+ This PR was generated by `.github/workflows/ti... | 2026-03-18T15:48:29 |
facebook/react | 087a34696f1eb484157b19aee1648bcbce51de64 | 6913ea4d28229d066603bff9fc1170334e151a4a | [test] add activity test with gSBU and enableViewTransition bugfix (#35555)
Related to https://github.com/facebook/react/pull/35548,
`enableViewTransition` fixes a bug where `getSnapshotBeforeUpdate` was
running in hidden trees when it shouldn't (`componentWillUpdate` won't
run for hidden updates, and when it becomes ... | [
{
"path": "packages/react-reconciler/src/__tests__/Activity-test.js",
"patch": "@@ -1527,6 +1527,87 @@ describe('Activity', () => {\n expect(root).toMatchRenderedOutput(<span prop={2} />);\n });\n \n+ // @gate enableActivity\n+ it('getSnapshotBeforeUpdate does not run in hidden trees', async () => {... | 2026-02-04T19:37:45 |
vercel/next.js | be3ee02b83756b9b24c07464b94e5fb687e8b1c8 | cc79ef8cda9725008aacc9071aed423a584253d4 | turbo-tasks-backend: stability fixes for task cancellation and error handling (#92254)
### What?
Bug fixes and a refactoring in `turbo-tasks-backend` targeting stability
issues that surface when filesystem caching is enabled:
1. **Preserve `cell_type_max_index` on task error** — when a task fails
partway through exe... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -55,10 +55,10 @@ use crate::{\n backend::{\n operation::{\n AggregationUpdateJob, AggregationUpdateQueue, ChildExecuteContext,\n- CleanupOldEdgesOperation, ComputeDirtyAndCleanUpdate, Connect... | 2026-04-03T08:05:17 |
nodejs/node | 7ca5de7eda3cac94c0f39bdf1b3fabe291441352 | bd8522a2c9b35ec9d6ab585781be3d1a1a9c0aaa | doc: fix small environment_variables typo
PR-URL: https://github.com/nodejs/node/pull/62279
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": "doc/api/environment_variables.md",
"patch": "@@ -145,7 +145,7 @@ There following two functions allow you to directly interact with `.env` files:\n \n * [`process.loadEnvFile`][] loads an `.env` file and populates `process.env` with its variables\n \n-* [`util.parseEnv`][] parses the row content o... | 2026-03-18T15:48:15 |
electron/electron | 9928c7d8285acdddd76f1a5ad86ef9ef5ea42be0 | f5bc6f7949d601e25d5470037797fbaf2fe716d0 | chore: harden GitHub Actions against script injection patterns (#50512)
* fix: harden GitHub Actions against script injection vulnerabilities
Replace direct ${{ }} expression interpolation in run: blocks with
environment variables to prevent script injection attacks. Changes:
- archaeologist-dig.yml: move clone_url,... | [
{
"path": ".github/actions/cipd-install/action.yml",
"patch": "@@ -22,30 +22,50 @@ runs:\n steps:\n - name: Delete wrong ${{ inputs.dependency }}\n shell: bash\n+ env:\n+ CIPD_ROOT_PREFIX: ${{ inputs.cipd-root-prefix-path }}\n+ INSTALLATION_DIR: ${{ inputs.installation-dir }}\... | 2026-03-26T14:02:50 |
facebook/react | cf993fb457417e0f20535b1fd42c3f45df966583 | c137dd6f5484f1bb68a64f07dd0e40d474a29759 | [Flight] Fix stack overflow in `visitAsyncNode` with deep async chains (#35612)
Database libraries like Gel/EdgeDB can create very long linear chains of
async sequences through temporal async sequencing in connection pools.
The recursive traversal of `node.previous` chains in `visitAsyncNode`
causes stack overflow on ... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2345,19 +2345,53 @@ function visitAsyncNode(\n >,\n cutOff: number,\n ): void | null | PromiseNode | IONode {\n- if (visited.has(node)) {\n- // It's possible to visit them same node twice when it's part of both an \"awaited\" ... | 2026-02-04T18:43:23 |
vercel/next.js | c06658e9199bccc10de1daf24cf7fe542c5ee13a | e464ca398c5992c4ec9fb23192fc60ef7b1b5f94 | fix: preserve HTTP access fallbacks during prerender recovery (#92231)
When a `notFound()`, `forbidden()`, or `unauthorized()` error escapes
into the outer prerender recovery path, we were falling back to the
generic error shell flow.
In the `cacheComponents` case, that could leave us with:
- error HTML rendered from... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -113,7 +113,11 @@ import {\n walkTreeWithFlightRouterState,\n createFullTreeFlightDataForNavigation,\n } from './walk-tree-with-flight-router-state'\n-import { createComponentTree, getRootParams } from './create-component-tree'... | 2026-04-02T14:54:11 |
golang/go | 7bbb5a8ec139cce0d126d00de16b167c2512ca1b | affadc7997466dfacad5b9a3dc90ee5e7a7b6085 | io/fs: fix godoc to refer to the 'fsys' arg
Fix godoc for package io/fs functions where 'fs' is mentioned instead of
the 'fsys' argument. This allows to more clearly distinguish references
to the methods of that argument from functions of the io/fs package.
Change-Id: I18674940e59dcf4501f46ee48f94fc58948df28c
Reviewe... | [
{
"path": "src/io/fs/glob.go",
"patch": "@@ -27,7 +27,7 @@ type GlobFS interface {\n // The only possible returned error is [path.ErrBadPattern], reporting that\n // the pattern is malformed.\n //\n-// If fs implements [GlobFS], Glob calls fs.Glob.\n+// If fsys implements [GlobFS], Glob calls fsys.Glob.\n /... | 2026-03-16T09:15:53 |
nodejs/node | 4d2d6de1b6b9a50c19bee51715e4ee242d80ffd7 | 9fc6b64c12eaf4569446f1cec9a119c16fc6ab39 | stream: preserve error over AbortError in pipeline
Signed-off-by: marcopiraccini <marco.piraccini@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62113
Fixes: https://github.com/nodejs/node/issues/62089
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-... | [
{
"path": "lib/internal/streams/pipeline.js",
"patch": "@@ -227,7 +227,7 @@ function pipelineImpl(streams, callback, opts) {\n }\n \n function finishImpl(err, final) {\n- if (err && (!error || error.code === 'ERR_STREAM_PREMATURE_CLOSE')) {\n+ if (err && (!error || error.code === 'ERR_STREAM_PREMA... | 2026-03-18T06:04:26 |
electron/electron | f5bc6f7949d601e25d5470037797fbaf2fe716d0 | a839fb94aa9f56e865857e3b853d4a62f4d93144 | ci: fix variable name when downloading previous object checkusms (#50510) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -52,7 +52,7 @@ runs:\n if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') && inputs.is-asan != 'true' }}\n with:\n name: object_checksums_${{ inputs.artifact-platform }}_${{ inputs.target-arch }... | 2026-03-26T13:31:30 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
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.