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 | 3ebdf12d7c193e6d59a9908745a9664ce7944fd6 | e20a1b603579fc36148530048c76de6938347019 | runtime: zero-extend Windows error code in syscall_syscalln
asmstdcall now returns the 32-bit Windows error code in the return
register. cgocall captures this as a signed int32. On 64-bit systems,
casting this directly to uintptr results in sign extension for error
codes with the high bit set (e.g., 0x80092004 become... | [
{
"path": "src/runtime/syscall_windows.go",
"patch": "@@ -429,5 +429,5 @@ func syscall_syscalln(fn, n uintptr, args ...uintptr) (r1, r2, err uintptr) {\n \t// but it copies the return values into the new M's\n \t// so we can read them from there.\n \tc = &getg().m.winsyscall\n-\treturn c.R1, c.R2, uintptr(e... | 2026-03-24T19:33:15 |
electron/electron | 8bdae630366c41b6034bb8463b074ba04386bcf7 | 2a4909093ec672d8a997337851c6f8b53aeb52b0 | fix: strictly validate sender for internal IPC reply channels (#50118)
The sender-mismatch check in invokeInWebContents and invokeInWebFrameMain
used a negative condition (`type === 'frame' && sender !== expected`),
which only rejected mismatched frame senders and accepted anything else.
Invert to a positive check so... | [
{
"path": "lib/browser/ipc-main-internal-utils.ts",
"patch": "@@ -19,8 +19,8 @@ export function invokeInWebContents<T> (sender: Electron.WebContents, command: s\n const requestId = ++nextId;\n const channel = `${command}_RESPONSE_${requestId}`;\n ipcMainInternal.on(channel, function handler (eve... | 2026-03-08T22:39:04 |
nodejs/node | 9027f29e6d5de49842905d0ed082ad5907e80d78 | 97c131229190b6dc1800366285eade47a7e7717a | build: fix GN for new merve dep
PR-URL: https://github.com/nodejs/node/pull/61984
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "deps/merve/BUILD.gn",
"patch": "@@ -0,0 +1,14 @@\n+##############################################################################\n+# #\n+# DO NOT EDIT THIS FILE! #\n+# ... | 2026-03-02T09:53:18 |
facebook/react | 4a3d993e52fd6bcadd9c3029c75df3c22684f69c | 3e1abcc8d7083a13adf4774feb0d67ecbe4a2bc4 | Add the suffix to cancelled view transition names (#35485)
When a View Transition might not need to update we add it to a queue. If
the parent are able to be reverted, we then cancel the already started
view transitions. We do this by adding an animation that hides the "old"
state and remove the view transition name f... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -711,7 +711,11 @@ function measureViewTransitionHostInstancesRecursive(\n }\n viewTransitionCancelableChildren.push(\n instance,\n- oldName,\n+ viewTransitionHostInstanceIdx... | 2026-01-14T15:00:06 |
golang/go | e20a1b603579fc36148530048c76de6938347019 | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | cmd/compile: handle string literals in FIPS mode consistently
There are different code paths for compiling a composite literal,
e.g. small vs. large, fully static vs. partially static. Following
CL 755600, we need to apply the condition for string literals in
FIPS mode consistently in all places.
Enhance the test to ... | [
{
"path": "src/cmd/compile/internal/walk/complit.go",
"patch": "@@ -85,9 +85,7 @@ const (\n func getdyn(n ir.Node, top bool) initGenType {\n \tswitch n.Op() {\n \tdefault:\n-\t\t// Handle constants in linker, except that linker cannot do\n-\t\t// the relocations necessary for string constants in FIPS packag... | 2026-03-18T01:59:52 |
vercel/next.js | df886d4a2d36b63717f8aa5eae1147811ad025f8 | 8cbc03772bc187e0bb954c68fc9152bcdc1b2f7b | turbo-persistence: remove Unmergeable mmap advice (#91713)
### What?
Remove the `MADV_UNMERGEABLE` (Unmergeable) mmap advice from
`turbo-persistence`'s `advise_mmap_for_persistence` helper in
`mmap_helper.rs`.
### Why?
The WSL (Windows Subsystem for Linux) kernel does not support
`MADV_UNMERGEABLE` and returns an e... | [
{
"path": "turbopack/crates/turbo-persistence/src/mmap_helper.rs",
"patch": "@@ -2,15 +2,11 @@\n ///\n /// - `DontFork`: prevents mmap regions from being copied into child processes on `fork()`, avoiding\n /// unnecessary memory duplication and potential SIGBUS.\n-/// - `Unmergeable`: opts pages out of KS... | 2026-03-20T13:59:04 |
facebook/react | 3e1abcc8d7083a13adf4774feb0d67ecbe4a2bc4 | c18662405cc436646411647f8a8965c1c0594c3c | [tests] Require exact error messages in assertConsole helpers (#35497)
Requires full error message in assert helpers.
Some of the error messages we asset on add a native javascript stack
trace, which would be a pain to add to the messages and maintain. This
PR allows you to just add `\n in <stack>` placeholder to th... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -278,6 +278,7 @@ jobs:\n if: steps.node_modules.outputs.cache-hit != 'true'\n - run: yarn --cwd compiler install --frozen-lockfile\n if: steps.node_modules.outputs.cache-hit != 'true'\n+ - run: node --version\n... | 2026-01-13T20:52:53 |
nodejs/node | 0994958c8d6ea497e726c2896103cbebb2940b5c | 101d58c63f937ab6b6cf18667a2c233c375fa486 | doc: fix small logic error in DETECT_MODULE_SYNTAX
PR-URL: https://github.com/nodejs/node/pull/62025
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luig... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -1274,7 +1274,7 @@ _isImports_, _conditions_)\n > 2. If _source_ contains a top-level lexical declaration (`const`, `let`,\n > or `class`) of any of the CommonJS wrapper variables (`require`,\n > `exports`, `module`, `__filename`, or `__dirname`) then ... | 2026-03-01T14:01:51 |
golang/go | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | 55600733988b0d3bb708be22b5cbecd8edd83380 | internal/abi, cmd/link: centralize type descriptor size calculation
The linker hardcoded the calculation for some types, which caused me
some annoyance in CL 711560 because I didn't know it needed to be
updated (and it took me a long time to find the hardcoded value).
Move this calculation over to the abi package, si... | [
{
"path": "src/cmd/compile/internal/rttype/rttype.go",
"patch": "@@ -88,6 +88,24 @@ func Init() {\n \tif got, want := int64(abi.ITabTypeOff(ptrSize)), ITab.OffsetOf(\"Type\"); got != want {\n \t\tbase.Fatalf(\"abi.ITabTypeOff() == %d, want %d\", got, want)\n \t}\n+\tfor _, test := range []struct {\n+\t\tkin... | 2026-02-27T18:10:14 |
vercel/next.js | 8cbc03772bc187e0bb954c68fc9152bcdc1b2f7b | 6a8a31a7f42bb7d133aed5a6d854d069883aa57b | Fix server actions in standalone mode with `cacheComponents` (#91711)
The `staticPathKey` condition added in #91231 inadvertently applies to
server action requests on dynamic SSG routes when `cacheComponents` is
enabled.
Server action fetch requests from the client do not send the `RSC`
header (`rsc: 1`). They only s... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -621,7 +621,14 @@ export async function handler(\n if (\n !staticPathKey &&\n (routeModule.isDev ||\n- (isSSG && pageIsDynamic && prerenderInfo?.fallbackRouteParams))\n+ (isSSG &&\n+ pageIsDynamic &&\n+ ... | 2026-03-20T13:38:28 |
electron/electron | 9f80b6461775c711135bc2be6cc034db315fca87 | 3e0e1e4e8452be4528310b0717bc26df79c3af45 | chore: bump chromium to 147.0.7719.0 (main) (#50061)
* chore: bump chromium in DEPS to 147.0.7716.0
* chore: bump chromium in DEPS to 147.0.7717.0
* chore: bump chromium in DEPS to 147.0.7719.0
* chore: update patches
Refs https://chromium-review.googlesource.com/c/chromium/src/+/7618634
Refs https://chromium-revi... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '147.0.7714.0',\n+ '147.0.7719.0',\n 'node_version':\n 'v24.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-03-07T21:22:11 |
facebook/react | c18662405cc436646411647f8a8965c1c0594c3c | 583e20033220bc17a590a25624f6251c6b101ff4 | [Fiber] Correctly handle replaying when hydrating (#35494)
When hydrating if something suspends and then resolves in a microtask it
is possible that React will resume the render without fully unwinding
work in progress. This can cause hydration cursors to be offset and lead
to hydration errors. This change adds a rest... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js",
"patch": "@@ -4063,4 +4063,170 @@ describe('ReactDOMServerPartialHydration', () => {\n expect(span.style.display).toBe('');\n expect(ref.current).toBe(span);\n });\n+\n+ // Regression for https://github.... | 2026-01-13T20:48:01 |
vercel/next.js | 6a8a31a7f42bb7d133aed5a6d854d069883aa57b | 883d93c8935afb2b8124ab324a10fa36cbd7a88c | Fix layout segment optimization: move app-page imports to server-utility transition (#91701)
## Summary
- Add `'turbopack-transition': 'next-server-utility'` to all server-side imports in the `app-page.ts` template so they are properly placed in the server utility layer, rather than relying on `SharedMerged` chunk ... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -874,52 +874,55 @@ impl AppProject {\n &self,\n endpoint: Vc<AppEndpoint>,\n rsc_entry: ResolvedVc<Box<dyn Module>>,\n- client_shared_entries: Vc<EvaluatableAssets>,\n- has_layout_segments: bool,\n+ client_shar... | 2026-03-20T12:00:43 |
electron/electron | 3e0e1e4e8452be4528310b0717bc26df79c3af45 | 86f2c7cced3262bde74bf919fdd38b7caef6d28b | test: fix flaky macOS dock tests (#50098)
* test: fix flaky mac dock & autofill tests
* fix: add null checks for the parent widget before calling IsVisible()
* test: remove autofill test change (failing on Linux), keep crash fix
* chore: autofill updates from code review | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -67,9 +67,11 @@ AutofillPopupView::~AutofillPopupView() {\n }\n \n void AutofillPopupView::Show() {\n+ if (!popup_)\n+ return;\n bool visible = parent_widget_->IsVisible();\n visible = visible || view_proxy_;\n- if (!popup_ || ... | 2026-03-06T21:35:16 |
rust-lang/rust | f1a4ae02ed35e9f3c96c8acc9419aeaa8a6747c9 | f908263775fa86408d0d529dec82baa9ae350529 | fix ice generics of crate node | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs",
"patch": "@@ -55,7 +55,7 @@ use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};\n use rustc_errors::{Applicability, Diag, DiagStyledString, IntoDiagArg, StringPart, pluralize};\n use rustc_hir as hir;\n use rustc_hir::def::Def... | 2026-03-09T15:50:42 |
facebook/react | 8a83073753125156d62db14726e8527706411962 | 5aec1b2a8d1bcafb43a7ddb64dc37eacad081bea | [test] Fix DevTools regression tests (#35501) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n+import semver from 'semver';\n+\n import {getVersionedRenderImplementation} from './utils';\n+import {ReactVersion} from '../../../../ReactVersions';\n+\n+const ReactVersionTestingAgainst... | 2026-01-13T15:00:16 |
electron/electron | 73596cff9dc42782d0d836895055e0d8db700b7f | 62c8db561cf1cd3b8a4edadffd394290c6b65fa5 | fix: Revert "updated Alt detection to explicitly exclude AltGraph/AltGr (#49778)" (#50093)
Revert "fix: updated Alt detection to explicitly exclude AltGraph/AltGr (#49778)"
This reverts commit 90c9de70acc4dd36b2e5dc08c3730bbeca36ad45.
Ref: https://github.com/electron/electron/issues/50050 | [
{
"path": "shell/browser/ui/views/root_view.cc",
"patch": "@@ -9,7 +9,6 @@\n #include \"components/input/native_web_keyboard_event.h\"\n #include \"shell/browser/native_window.h\"\n #include \"shell/browser/ui/views/menu_bar.h\"\n-#include \"ui/events/keycodes/dom/keycode_converter.h\"\n #include \"ui/views... | 2026-03-06T20:25:36 |
nodejs/node | 6964b539806e3b2103dd6b65572287b8a615f5d3 | 27261b9391d755de208814dfae3f8f0923dc07b4 | doc: fix module.stripTypeScriptTypes indentation
PR-URL: https://github.com/nodejs/node/pull/61992
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Harshitha K P <harshitha014@gmail.com>
Reviewed-By: Colin ... | [
{
"path": "doc/api/module.md",
"patch": "@@ -259,12 +259,13 @@ changes:\n * `'strip'` Only strip type annotations without performing the transformation of TypeScript features.\n * `sourceUrl` {string} Specifies the source url used in the source map.\n * Returns: {string} The code with type annotation... | 2026-02-25T21:29:41 |
vercel/next.js | 883d93c8935afb2b8124ab324a10fa36cbd7a88c | 542b2b029ca439815299067b47306a451587dff6 | docs: fix broken Activity Patterns demo link in preserving UI state guide (#91698)
## What?
Fixes a broken link in the Preserving UI State guide:
https://nextjs.org/docs/app/guides/preserving-ui-state#examples
The "Activity Patterns demo" link currently points to a non-working URL.
## Why?
The demo link returns a ... | [
{
"path": "docs/01-app/02-guides/preserving-ui-state.mdx",
"patch": "@@ -496,7 +496,7 @@ The ref persists across hide/show cycles (refs aren't cleaned up), so `hasMounte\n \n ## Examples\n \n-The [Activity Patterns Demo](https://react-activity-patterns.vercel.app/) ([source](https://github.com/vercel-labs/r... | 2026-03-20T09:00:54 |
rust-lang/rust | a24ee0329e0e2c810f9468285505809be75d847b | 4fbcb031de05becc6cf2984446d0ce9972376757 | cg_llvm/debuginfo: scalable vectors
Generate debuginfo for scalable vectors, following the structure that
Clang generates for scalable vectors. | [
{
"path": "compiler/rustc_codegen_gcc/src/common.rs",
"patch": "@@ -145,6 +145,10 @@ impl<'gcc, 'tcx> ConstCodegenMethods for CodegenCx<'gcc, 'tcx> {\n self.const_int(self.type_i32(), i as i64)\n }\n \n+ fn const_i64(&self, i: i64) -> RValue<'gcc> {\n+ self.const_int(self.type_i64(), i... | 2026-02-26T15:35:20 |
vercel/next.js | 542b2b029ca439815299067b47306a451587dff6 | 9f181bd11af5f532c529a6f168fe40505f0a4d75 | [test] Fix `edge-async-local-storage` deploy test timeout & race condition (#91643)
The test was calling `createNext` inside each `it.each` test body, which
meant deployment setup time counted against the 60-second per-test
timeout introduced in #89929. In deploy mode, `createNext` deploys to
Vercel which can exceed 6... | [
{
"path": "test/e2e/edge-async-local-storage/index.test.ts",
"patch": "@@ -1,105 +1,51 @@\n-import { createNext } from 'e2e-utils'\n-import { NextInstance } from 'e2e-utils'\n+import { nextTestSetup } from 'e2e-utils'\n import { fetchViaHTTP } from 'next-test-utils'\n \n describe('edge api can use async loc... | 2026-03-20T08:37:42 |
electron/electron | dc4ad2e932def569fc4c69852d31641299bec923 | fbfd0ed3a4b5c68a44fb4153291e0080528b1e3a | fix: `screen.getCursorScreenPoint()` crash on Wayland (#50092)
* docs: document that getCursorScreenPoint() needs a Window on Wayland
* feat: add IsWayland() helper
* fix: Wayland crash in GetCursorScreenPoint()
fix: support Screen::GetCursorScreenPoint() on X11 | [
{
"path": "docs/api/screen.md",
"patch": "@@ -110,6 +110,8 @@ Returns [`Point`](structures/point.md)\n \n The current absolute position of the mouse pointer.\n \n+Not supported on Wayland (Linux).\n+\n > [!NOTE]\n > The return value is a DIP point, not a screen physical point.\n ",
"additions": 2,
"... | 2026-03-06T20:24:33 |
golang/go | 55600733988b0d3bb708be22b5cbecd8edd83380 | 3f057dcdbc86498e07a5744406fe92069221a92d | internal/runtime/maps: add GOEXPERIMENT=mapsplitgroup for KKKKVVVV slot order
Map groups are currently:
type group struct {
ctrl uint64
slots [8]slot
}
type slot struct {
key K
elem E
}
If the element type is struct{}, the slot will be padded so that the
address of the elem is unique rather than p... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/src\"\n \t\"internal/abi\"\n+\t\"internal/buildcfg\"\n )\n \n // MapGroupType makes the map slot group type given the type of the map.\n@@ -26,14 +27,6 @@ func MapGrou... | 2025-09-10T05:22:17 |
nodejs/node | 6a3d358ca4111c8b43070d5e838d599bdff48d55 | c9d0ef8b245257fa0e88419d6d7c2400f9c3cc1c | tls: forward keepAlive, keepAliveInitialDelay, noDelay to socket
`tls.connect()` silently ignores `keepAlive`, `keepAliveInitialDelay`,
and `noDelay` options. The documentation states it accepts any
`socket.connect()` option, and `net.createConnection()` with the same
options works correctly.
Forward the options thro... | [
{
"path": "lib/internal/net.js",
"patch": "@@ -100,6 +100,9 @@ function isLoopback(host) {\n \n module.exports = {\n kReinitializeHandle: Symbol('kReinitializeHandle'),\n+ kSetNoDelay: Symbol('kSetNoDelay'),\n+ kSetKeepAlive: Symbol('kSetKeepAlive'),\n+ kSetKeepAliveInitialDelay: Symbol('kSetKeepAliveI... | 2026-02-28T11:22:35 |
rust-lang/rust | a2f7f3c1ebb7a8e820140fac88bff10c5605e5b2 | 5bbdeaa9a8dc563185f40e99f96704cbcc7a6e6e | ty_utils: lower tuples to `ScalableVector` repr
Instead of just using regular struct lowering for these types, which
results in an incorrect ABI (e.g. returning indirectly), use
`BackendRepr::ScalableVector` which will lower to the correct type and
be passed in registers.
This also enables some simplifications for ge... | [
{
"path": "compiler/rustc_abi/src/layout.rs",
"patch": "@@ -10,8 +10,8 @@ use tracing::{debug, trace};\n \n use crate::{\n AbiAlign, Align, BackendRepr, FieldsShape, HasDataLayout, IndexSlice, IndexVec, Integer,\n- LayoutData, Niche, NonZeroUsize, Primitive, ReprOptions, Scalar, Size, StructKind, Tag... | 2026-02-19T11:03:14 |
vercel/next.js | c894f5dfb5b3373a281b56a177fd9da09d84f21a | 3003e17b102699bffca325257ae7be53fda69052 | Fix missing route in otel spans without base-server (#91665)
When invoking `handler` exports directly without `base-server` we need
to ensure span names are still updated with the route correctly so not
just method name is in span name. | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -713,25 +713,21 @@ export async function handler(\n return\n }\n \n- const route = rootSpanAttributes.get('next.route')\n- if (route) {\n- const name = `${method} ${route}`\n-\n- span.se... | 2026-03-19T21:26:08 |
electron/electron | fbfd0ed3a4b5c68a44fb4153291e0080528b1e3a | ddefb54c8f108411c66c0b85cd077cafc236d6a5 | fix: specs in release build due to electron_common_testing module (#50070)
* fix: specs in release build due to electron_common_testing module
* fix: move binding into respective tests
describe block will run the callback to register which
tests to skip and having the binding hoisted will end
up being invoked. | [
{
"path": "spec/api-net-spec.ts",
"patch": "@@ -10,7 +10,7 @@ import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n \n import { collectStreamBody, collectStreamBodyBuffer, getResponse, kOneKiloByte, kOneMegaByte, randomBuffer, randomString, respondNTimes, respondOnce } fr... | 2026-03-05T23:39:25 |
golang/go | 3f057dcdbc86498e07a5744406fe92069221a92d | fe8947a521ba1a404f01882048340a4a18e7e61a | cmd/go: document that workspace use paths are not resolved through symlinks
The use directive in go.work files compares module directory paths
literally without resolving symbolic links. A use directive that
names a symlink to a directory is not interchangeable with one that
names the symlink's target.
Document this ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1549,7 +1549,9 @@\n //\n // The use directive specifies a module to be included in the workspace's\n // set of main modules. The argument to the use directive is the directory\n-// containing the module's go.mod file.\n+// containing the module's go.mod file.... | 2026-03-23T20:48:42 |
nodejs/node | 35d3bc8fe8e7d05efd90e44b2f942a533c589e40 | cc6c18802dc6dfc041f359bb417187a7466e9e8f | sqlite: add limits property to DatabaseSync
PR-URL: https://github.com/nodejs/node/pull/61298
Fixes: https://github.com/nodejs/node/issues/61268
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -163,6 +163,23 @@ changes:\n language features that allow ordinary SQL to deliberately corrupt the database file are disabled.\n The defensive flag can also be set using `enableDefensive()`.\n **Default:** `true`.\n+ * `limits` {Object} Configuration ... | 2026-02-27T19:00:28 |
facebook/react | f93b9fd44b576c1e0233f854cd986cbf08b7a5c4 | b731fe28cc492cb36c51c89866f5b63a3ffae2aa | Skip hydration errors when a view transition has been applied (#35380)
When the Fizz runtime runs a view-transition we apply
`view-transition-name` and `view-transition-class` to the `style`. These
can be observed by Fiber when hydrating which incorrectly leads to
hydration errors.
More over, even after we remove the... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -235,17 +235,60 @@ function warnForPropDifference(\n }\n }\n \n+function hasViewTransition(htmlElement: HTMLElement): boolean {\n+ return !!(\n+ htmlElement.getAttribute('vt-share') ||\n+ htmlElement.getAttribute(... | 2025-12-17T14:37:43 |
rust-lang/rust | ce7c4925893cd30590db19805a2e2bed60c47728 | 852df886faee761a3b224ae014dd423c065df4c6 | fix rebase | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/lint.rs",
"patch": "@@ -141,7 +141,8 @@ fn validate_lint_attr<T: Lint, S: Stage>(\n };\n let lint_store = lint_store.as_ref();\n let Some(list) = args.list() else {\n- cx.expected_list(cx.inner_span, args);\n+ let span = cx.inne... | 2026-04-03T09:12:15 |
golang/go | fe8947a521ba1a404f01882048340a4a18e7e61a | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | cmd/go/internal/doc: remove flag listing from usage
This makes the help for go doc more consistent with other go
subcommands.
Fixes #74139
Change-Id: Ia01bd85544d5ece84e6316141f29f24c6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758721
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-R... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -179,8 +179,6 @@ func usage(flagSet *flag.FlagSet) {\n \tfmt.Fprintf(os.Stderr, \"\\tgo doc <pkg> <sym>[.<methodOrField>]\\n\")\n \tfmt.Fprintf(os.Stderr, \"For more information run\\n\")\n \tfmt.Fprintf(os.Stderr, \"\\tgo help doc\\n\\n\")\n-\tfmt.Fp... | 2026-03-24T16:46:28 |
vercel/next.js | 3003e17b102699bffca325257ae7be53fda69052 | e9df6ed9dc381cf99e54c91d984799ca51e2940f | [turbopack] Respect `{eval:true}` in worker_threads constructors (#91666)
### What?
Fixed Turbopack incorrectly trying to resolve inline JavaScript code as module references when `new Worker()` is called with `{ eval: true }` option.
Now we skip creating a reference when `eval:true`, and report warnings if we cannot... | [
{
"path": "test/e2e/app-dir/node-worker-threads/app/api/jspdf-test/route.ts",
"patch": "@@ -0,0 +1,20 @@\n+import { NextResponse } from 'next/server'\n+\n+export async function GET() {\n+ try {\n+ const { jsPDF } = await import('jspdf')\n+ const doc = new jsPDF()\n+ doc.text('Hello world!', 10, 10... | 2026-03-19T20:58:13 |
electron/electron | ddefb54c8f108411c66c0b85cd077cafc236d6a5 | d6fc627ba58f8039cf270faf26d5c50352f44b6e | feat: implements cold COM activation (#49919)
* fix: implements cold COM activation
* fix: code review feedack | [
{
"path": "docs/api/notification.md",
"patch": "@@ -36,6 +36,46 @@ The `Notification` class has the following static methods:\n \n Returns `boolean` - Whether or not desktop notifications are supported on the current system\n \n+#### `Notification.handleActivation(callback)` _Windows_\n+\n+* `callback` Func... | 2026-03-05T22:30:04 |
nodejs/node | db278835bc2a3131538fc570241a5adeb536038c | 7cf2dad7152a01854b111e38a6a213cf4ed43ba6 | test: skip strace test with shared openssl
`parallel/test-strace-openat-openssl` was added to check explicitly
for a list of known files that would be opened for a set workload
(`require("crypto")`). This is not reliable when Node.js is linked
to an external/shared OpenSSL library (e.g. it might be configured
to load ... | [
{
"path": "test/parallel/test-strace-openat-openssl.js",
"patch": "@@ -11,6 +11,9 @@ if (!common.isLinux)\n common.skip('linux only');\n if (common.isASan)\n common.skip('strace does not work well with address sanitizer builds');\n+if (process.config.variables.node_shared_openssl) {\n+ common.skip('ext... | 2026-02-27T16:16:21 |
facebook/react | b731fe28cc492cb36c51c89866f5b63a3ffae2aa | 88ee1f595572b1dcf8f45897cb115b4bbd1aefb8 | Improve cyclic thenable detection in ReactFlightReplyServer (#35369)
## Summary
This PR improves cyclic thenable detection in
`ReactFlightReplyServer.js`. Fixes #35368.
The previous fix only detected direct self-references (`inspectedValue
=== chunk`) and relied on the `cycleProtection` counter to eventually
bail out... | [
{
"path": "packages/react-server/src/ReactFlightReplyServer.js",
"patch": "@@ -133,14 +133,20 @@ ReactPromise.prototype.then = function <T>(\n // Recursively check if the value is itself a ReactPromise and if so if it points\n // back to itself. This helps catch recursive thenables early err... | 2025-12-17T11:22:26 |
golang/go | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | net/http/internal/http2: use fake net for TestTransportBlockingRequestWrite
This test has been intermittently flaky. Exact cause isn't clear,
but switch it to use a fake network to eliminate local network
flakiness as a cause.
Fixes #78209
Fixes #78213
Fixes #78263
Change-Id: I481553107e8557fda0707069856bafcc6a6a696... | [
{
"path": "src/net/http/internal/http2/transport_test.go",
"patch": "@@ -4197,140 +4197,93 @@ func TestTransportBlockingRequestWrite(t *testing.T) {\n \tfiller := hex.EncodeToString([]byte(randString(2048)))\n \tfor _, test := range []struct {\n \t\tname string\n-\t\treq func(url string) (*http.Request, er... | 2026-03-13T21:30:17 |
vercel/next.js | e9df6ed9dc381cf99e54c91d984799ca51e2940f | 4693685be18ace1818d9c1ade1dae77902013a6f | Add instant validation tests for parallel slot config attribution (#91656)
Tests that unstable_instant configs placed at different positions across
a parallel route fork correctly attribute errors to the blocking
segment, with the cause pointing to the config that requires instant
behavior. Includes both invalid cases... | [
{
"path": "test/e2e/app-dir/instant-validation/app/suspense-in-root/page.tsx",
"patch": "@@ -144,6 +144,27 @@ export default async function Page() {\n <li>\n <DebugLinks href=\"/suspense-in-root/static/false-below-static\" />\n </li>\n+ <li>\n+ <DebugLinks href=\"/s... | 2026-03-19T20:33:00 |
electron/electron | d6fc627ba58f8039cf270faf26d5c50352f44b6e | 7c0cb61b3cd9e9f58bd2566f8a969adcdd46b932 | feat: replace deprecated NSUserNotifications with User Notifications (#47817)
* refactor: replace deprecated NSUserNotifications with User Notifications
Removes deprecated NSUserNotification API, now using User Notifications
It replaces API calls for generating, scheduling, and receiving native
macOS notifications w... | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -201,11 +201,11 @@ jobs:\n run: |\n cd src/electron\n ./script/codesign/generate-identity.sh\n- # Only sign on x64 — arm64 builds are already ad-hoc signed, and re-signing\n- # with an untrusted cert b... | 2026-03-05T19:57:19 |
nodejs/node | 4f04a36bba7f4970d0c7f1d875896fa480dfed45 | 787aeff419841cdd870c7447dcb6cd754ef079a9 | test: avoid flaky debugger restart waits
PR-URL: https://github.com/nodejs/node/pull/61773
Refs: https://github.com/nodejs/node/issues/61762
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-debugger-restart-message.js",
"patch": "@@ -25,7 +25,11 @@ const startCLI = require('../common/debugger');\n assert.strictEqual(cli.output.match(listeningRegExp).length, 1);\n \n for (let i = 0; i < RESTARTS; i++) {\n- await cli.stepCommand('restart');\n+ ... | 2026-02-27T01:23:58 |
facebook/react | 88ee1f595572b1dcf8f45897cb115b4bbd1aefb8 | bcf97c7564cbe0c903a16a8d6ff52f124f2f06ff | Add reporting modes for react-hooks/exhaustive-effect-dependencies and temporarily enable (#35365)
`react-hooks/exhaustive-effect-dependencies` from
`ValidateExhaustiveDeps` reports errors for both missing and extra
effect deps. We already have `react-hooks/exhaustive-deps` that errors
on missing dependencies. In the ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -225,8 +225,15 @@ export const EnvironmentConfigSchema = z.object({\n \n /**\n * Validate that dependencies supplied to effect hooks are exhaustive.\n+ * Can be:\n+ * - 'off': No validation (default)\n+ ... | 2025-12-15T23:59:27 |
vercel/next.js | 4693685be18ace1818d9c1ade1dae77902013a6f | 78f73b27069ffe2dc1ddfb2b16013220d2a86569 | [test] Fix flaky `url-hash` tests (#91649)
[Flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22Client%20navigation%20with%20URL%20hash%20when%20hash%20changes%20with%20state%20when%20passing%20state%20via%20h... | [
{
"path": "test/development/pages-dir/client-navigation/url-hash.test.ts",
"patch": "@@ -2,6 +2,7 @@\n \n import path from 'path'\n import { nextTestSetup } from 'e2e-utils'\n+import { retry } from 'next-test-utils'\n \n describe('Client navigation with URL hash', () => {\n const { next } = nextTestSetup(... | 2026-03-19T20:08:59 |
golang/go | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | cmd/link: raise minimum windows version to 10
The minimum Windows version has been 10 for a few releases, but the PE
headers weren't updated. Windows sometimes can use these in determining
what kind of subsystem compatibility hacks to apply, which of course we
don't want now, since Go targets Windows 10. This also cau... | [
{
"path": "src/cmd/link/internal/ld/pe.go",
"patch": "@@ -151,9 +151,139 @@ const (\n \tIMAGE_REL_BASED_DIR64 = 10\n )\n \n+// IMAGE_LOAD_CONFIG_DIRECTORY64.GuardFlags and IMAGE_LOAD_CONFIG_DIRECTORY32.GuardFlags\n+// values. These can be combined together.\n const (\n-\tPeMinimumTargetMajorVersion = 6\n-... | 2026-03-18T23:28:04 |
electron/electron | 7c0cb61b3cd9e9f58bd2566f8a969adcdd46b932 | 9b15976136e974739704c515eb74b0483b8bf7ec | fix: prevent use-after-free in PowerMonitor via dangling OS callbacks (#50045)
PowerMonitor registered OS-level callbacks (HWND UserData and
WTS/suspend notifications on Windows, shutdown handler and lock-screen
observer on macOS) but never cleaned them up in its destructor. The JS
layer also only held the native obje... | [
{
"path": "lib/browser/api/power-monitor.ts",
"patch": "@@ -8,13 +8,19 @@ const {\n isOnBatteryPower\n } = process._linkedBinding('electron_browser_power_monitor');\n \n+// Hold the native PowerMonitor at module level so it is never garbage-collected\n+// while this module is alive. The C++ side registers... | 2026-03-05T15:00:37 |
nodejs/node | 76ba280051824dd9b80a4eb0ea38a613282df8e5 | 2ae6d8f2d60884fccfdfcba6b3ff98f5d6fe3190 | inspector: unwrap internal/debugger/inspect imports
PR-URL: https://github.com/nodejs/node/pull/61974
Refs: https://github.com/nodejs/node/pull/38161
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Gürgün Dayı... | [
{
"path": "lib/internal/debugger/inspect.js",
"patch": "@@ -32,11 +32,8 @@ const {\n AbortController,\n } = require('internal/abort_controller');\n \n-const { 0: InspectClient, 1: createRepl } =\n- [\n- require('internal/debugger/inspect_client'),\n- require('internal/debugger/inspect_repl'),... | 2026-02-26T21:52:14 |
facebook/react | bcf97c7564cbe0c903a16a8d6ff52f124f2f06ff | ba5b843692519a226347aecfb789d90fcb24b4bc | Devtools disable log dimming strict mode setting (#35207)
<!--
1. Fork [the repository](https://github.com/facebook/react) and create
your branch from `main`.
2. Run `yarn` in the repository root.
3. If you've fixed a bug or added code that should be tested, add tests!
4. Ensure the test suite passes (`yarn test`).... | [
{
"path": "packages/react-devtools-core/README.md",
"patch": "@@ -32,7 +32,7 @@ if (process.env.NODE_ENV !== 'production') {\n #### `Settings`\n | Spec ... | 2025-12-15T13:41:43 |
golang/go | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | c7e151d8c46dbf45b580a73ccb5ba5dd5b5cddef | net/http: add a test for starting a server with no HTTP/2 and no TLS config
Test for the fix in CL 758560.
Change-Id: I34edf9f14dc5d6a569f20aa3d55d9d136a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758661
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
LUCI-Tr... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -18,7 +18,6 @@ import (\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n-\t\"internal/synctest\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"log\"\n@@ -44,6 +43,7 @@ import (\n \t\"sync/atomic\"\n \t\"syscall\"\n \t\"testing\"\n+\t\"testing/synctest\"\n \... | 2026-03-24T15:18:27 |
vercel/next.js | 15cd02742c4df04641e0daed63781aff7da388df | d57459c31609d1897d811fd821c01b3238561da7 | Add per-slot error attribution for instant validation using slot markers and config depth preference (#91610)
When a validation boundary spans multiple parallel slots, errors were
previously attributed to whichever unstable_instant config was found
first during tree iteration — which varied between turbopack and
webpa... | [
{
"path": "packages/next/src/client/components/instant-validation/boundary.tsx",
"patch": "@@ -13,6 +13,7 @@ const {\n InstantValidationBoundaryContext,\n PlaceValidationBoundaryBelowThisLevel,\n RenderValidationBoundaryAtThisLevel,\n+ SlotMarker,\n } =\n typeof window === 'undefined' && process.en... | 2026-03-19T17:10:13 |
electron/electron | 9b15976136e974739704c515eb74b0483b8bf7ec | 55106192af28258b196e59b1e89bd83bb5f29661 | fix: avoid redundant `page-favicon-updated` events on `setBounds` (#49464)
* fix: avoid duplicate calls in electron_api_web_contents
* Style: fix lint errors
* fix: prevent duplicate page-favicon-updated events and add regression test | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2267,6 +2267,11 @@ void WebContents::DidUpdateFaviconURL(\n iter->icon_url.is_valid())\n unique_urls.insert(iter->icon_url);\n }\n+ // Only emit if favicon URLs actually changed\n+ if (unique_urls == last_favicon_url... | 2026-03-05T10:30:46 |
nodejs/node | 2ae6d8f2d60884fccfdfcba6b3ff98f5d6fe3190 | 38a6da5121e974eaadd4d92b929f147524fbd9a1 | test_runner: run afterEach on runtime skip
Signed-off-by: Igor <igorshevelenkov4@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/61525
Fixes: https://github.com/nodejs/node/issues/61462
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlo... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -1152,13 +1152,15 @@ class Test extends AsyncResource {\n ctx.plan(this.expectedAssertions);\n }\n \n+ const wasSkippedBeforeRun = this.skipped;\n+\n const after = async () => {\n if (this.hooks.after.length > 0) {\n a... | 2026-02-26T21:36:23 |
facebook/react | 38a6f4e4a11f128a2f83047c5e64512f7678d450 | b85cf6af3de99dce3674dadebcc1493b77a64606 | [compiler] Only run validations with env.logErrors on outputMode: 'lint' (#35216)
Summary:
These validations are not essential for compilation, with this we only
run that logic when outputMode is 'lint'
Test Plan:
Update fixtures and run tests | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -279,17 +279,20 @@ function runWithEnvironment(\n validateNoSetStateInRender(hir).unwrap();\n }\n \n- if (env.config.validateNoDerivedComputationsInEffects_exp) {\n+ if (\n+ env.config.val... | 2025-12-12T00:36:36 |
vercel/next.js | 88e21cf818786d0f716011bc19e0d0a6306ba569 | 046e0c4a006c50184c6dff569238bdf1ea1fd55b | [test] Unflake "infinite streaming fetch" test (#91645)
[Flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22server-components-hmr-cache%20should%20support%20reading%20from%20an%20infinite%20streaming%20fetch%... | [
{
"path": "test/development/app-dir/server-components-hmr-cache/server-components-hmr-cache.test.ts",
"patch": "@@ -233,5 +233,5 @@ describe('server-components-hmr-cache', () => {\n expect(next.cliOutput.slice(cliOutputLength)).not.toContain(\n 'Failed to set fetch cache'\n )\n- }, 10_000) //... | 2026-03-19T11:25:18 |
rust-lang/rust | bd864efa70d9622f6b1f1c7ee899485a63405f1f | d884f92b04366b2673a5b5299513da897f5b939c | bless tests and tidy
also removes E0452 and splits
`tests/rustdoc-ui/lints/renamed-lint-still-applies` into 2 tests
this is because of delayed warn lint being lost on compiler aborting on
error | [
{
"path": "compiler/rustc_error_codes/src/error_codes/E0452.md",
"patch": "@@ -1,8 +1,9 @@\n+#### Note: this error code is no longer emitted by the compiler\n An invalid lint attribute has been given.\n \n Erroneous code example:\n \n-```compile_fail,E0452\n+```compile_fail\n #![allow(foo = \"\")] // error:... | 2026-03-10T15:54:27 |
golang/go | 39267791a4fd5f881e3a43b199de4c7bddf3f179 | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | spec: predeclared types are named, not defined types
We want the predeclared types (excluding any) to have unique identity.
Originally (Go 1.0), the only types with unique identity were named
types (and they happened to have names).
When we introduced alias declarations, we changed the terminology and
called named ty... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 20, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -825,8 +825,... | 2026-03-19T22:59:47 |
nodejs/node | 38a6da5121e974eaadd4d92b929f147524fbd9a1 | 2e1265a4443ef00dad08f0da96b9e10874b14d86 | crypto: fix missing nullptr check on RSA_new()
Not checking this can cause a null deref. Since there is already a
null check at the bottom of the function with `NewRSA()`.
PR-URL: https://github.com/nodejs/node/pull/61888
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/crypto/crypto_rsa.cc",
"patch": "@@ -385,6 +385,11 @@ KeyObjectData ImportJWKRsaKey(Environment* env,\n KeyType type = d_value->IsString() ? kKeyTypePrivate : kKeyTypePublic;\n \n RSAPointer rsa(RSA_new());\n+ if (!rsa) {\n+ THROW_ERR_CRYPTO_OPERATION_FAILED(env, \"Unable to create RS... | 2026-02-19T15:46:15 |
rust-lang/rust | 3f34c31af945def1ace8c74216de2f60ae866d8c | 5bbdeaa9a8dc563185f40e99f96704cbcc7a6e6e | add variant `ExpectedNameValueAsLastArgument` to `AttributeParseErrorReason` | [
{
"path": "compiler/rustc_attr_parsing/src/context.rs",
"patch": "@@ -804,6 +804,17 @@ where\n )\n }\n \n+ pub(crate) fn expected_nv_as_last_argument(\n+ &self,\n+ span: Span,\n+ name_value_key: Symbol,\n+ ) -> ErrorGuaranteed {\n+ self.emit_parse_error(\n+ ... | 2026-02-22T14:31:39 |
vercel/next.js | 046e0c4a006c50184c6dff569238bdf1ea1fd55b | 0f089d5f9bcca29e75fb6aecda543d9c52f696a2 | turbopack-css: demote recoverable CSS parse warnings to Warning severity (#91524)
### What?
Extends the CSS parse warning severity improvements in
`turbopack/crates/turbopack-css/src/process.rs`.
Canary (#90025, #91513) already:
- Added a `severity` field to `ParsingIssue` and a `fn severity()`
override
- Demoted `U... | [
{
"path": "turbopack/crates/turbopack-css/src/process.rs",
"patch": "@@ -3,7 +3,6 @@ use std::sync::{Arc, RwLock};\n use anyhow::{Result, bail};\n use lightningcss::{\n css_modules::{CssModuleExport, Pattern, Segment},\n- error::SelectorError,\n stylesheet::{MinifyOptions, ParserOptions, PrinterO... | 2026-03-19T10:43:41 |
golang/go | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | net/http: fix panic in ServeTLS on nil TLSConfig
Change-Id: I9bc588128ec36bb3725d15e52400b76a94e5cb3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/758560
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nichola... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -3539,7 +3539,11 @@ func (s *Server) ServeTLS(l net.Listener, certFile, keyFile string) error {\n \t\treturn err\n \t}\n \n-\tconfig, err := s.setupTLSConfig(certFile, keyFile, adjustNextProtos(s.TLSConfig.NextProtos, s.protocols()))\n+\tvar nextProtos []stri... | 2026-03-24T07:03:10 |
facebook/react | b85cf6af3de99dce3674dadebcc1493b77a64606 | b45bb335db5b3632329d6b41e5a790ff6f1a7ff7 | [compiler] Fix VariableDeclarator source location (#35348)
Putting up https://github.com/facebook/react/pull/35129 again
Reverted in https://github.com/facebook/react/pull/35346 after breaking
main before security patch
This change impacts output formatting in a lot of snaps, so is very
sensitive to additions in main... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -4026,6 +4026,7 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n+ loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ... | 2025-12-11T23:02:05 |
nodejs/node | 2e1265a4443ef00dad08f0da96b9e10874b14d86 | abddfc921bf2af02a04a6a5d2bca8e2d91d80958 | test_runner: expose expectFailure message
This change exposes the expectFailure message in the test runner and
adds edge cases for expectFailure ambiguity.
PR-URL: https://github.com/nodejs/node/pull/61563
Fixes: https://github.com/nodejs/node/issues/61570
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: A... | [
{
"path": "doc/api/test.md",
"patch": "@@ -266,11 +266,12 @@ added:\n - v24.14.0\n -->\n \n-This flips the pass/fail reporting for a specific test or suite: A flagged test/test-case must throw\n-in order to \"pass\"; a test/test-case that does not throw, fails.\n+This flips the pass/fail reporting for a sp... | 2026-02-26T15:37:55 |
vercel/next.js | 0f089d5f9bcca29e75fb6aecda543d9c52f696a2 | bdb2f2ce4dea0c1435af5fa433767d63fca11c0c | turbo-persistence: fix mmap page alignment and improve error context in MetaFile::open_internal (#91640)
### What?
Two changes to `turbopack/crates/turbo-persistence/src/meta_file.rs` and
`mmap_helper.rs`:
1. **Bug fix: mmap page alignment** — `MmapOptions::offset()` requires
the offset to be page-aligned (typically... | [
{
"path": "turbopack/crates/turbo-persistence/src/meta_file.rs",
"patch": "@@ -229,6 +229,8 @@ pub struct MetaFile {\n /// The offset of the end of the \"used keys\" AMQF data in the the meta file relative to the end\n /// of the header.\n end_of_used_keys_amqf_data_offset: u32,\n+ /// Byte o... | 2026-03-19T09:21:46 |
golang/go | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | c861da326e5d6a0350b200f758f6430de48a4ae5 | runtime: return the error code as a return value in syscallN_trampoline
Getting errno from assembly code is cheap. There is no need to
overcomplicate syscall_rawsyscalln to get errno from the cached errno
address pointer stored in the M struct.
This also better aligns syscallN_trampoline with the cgocall convention
o... | [
{
"path": "src/runtime/os_darwin.go",
"patch": "@@ -15,11 +15,6 @@ type mOS struct {\n \tmutex pthreadmutex\n \tcond pthreadcond\n \tcount int\n-\n-\t// address of errno variable for this thread.\n-\t// This is an optimization to avoid calling libc_error\n-\t// on every syscall_rawsyscall... | 2026-03-10T09:48:31 |
facebook/react | 80cb7a99255fb030bf11cb8a8298d94f379563c7 | 894bc73cb493487c48d57f4508e6278db58e673a | Revert "[compiler] Fix VariableDeclarator source location (#35129)" (#35346)
This broke main. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -4026,7 +4026,6 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n- loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ... | 2025-12-11T20:27:07 |
electron/electron | d18b017cb05b1c5aec330603b6fcc9b016fa5cee | f7507447ad5c63e3c22edea5753cc21baf6acf5c | fix: FTBFS when printing is disabled (#50056)
these variables hit with-Werror,-Wunused when printing is disabled | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -429,6 +429,7 @@ namespace {\n // Global toggle for disabling draggable regions checks.\n bool g_disable_draggable_regions = false;\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n // Constants we use for printing.\n constexpr char kFrom[] = \"fr... | 2026-03-04T19:14:02 |
vercel/next.js | 99d64f3ae1dd3112b193674b55fc43aeb0dd8cce | 6836c26b723aa1b66c801039763618fb3cc1e3a7 | [turbopack] Use bail! instead of panic! for duplicate module ident error (#91636)
### What?
In `turbopack/crates/turbopack-core/src/module_graph/mod.rs`, the
`#[cfg(debug_assertions)]` duplicate module ident detection block inside
`SingleModuleGraph::new_inner` called `panic!` when duplicates were
found.
### Why?
`... | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/mod.rs",
"patch": "@@ -406,7 +406,7 @@ impl SingleModuleGraph {\n for (key, debug, parents) in duplicate_modules {\n map.entry(key).or_default().push((debug, parents));\n }\n- ... | 2026-03-19T09:00:26 |
nodejs/node | abddfc921bf2af02a04a6a5d2bca8e2d91d80958 | a8eb690e0a1764ceea9ef5ad190f484ce15dff81 | stream: fix pipeTo to defer writes per WHATWG spec
The WHATWG Streams spec requires that pipeTo's chunk handling must
queue a microtask before calling the write algorithm. This ensures
that enqueue() does not synchronously trigger writes.
Previously, PipeToReadableStreamReadRequest[kChunk] would synchronously
call wr... | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -1662,9 +1662,14 @@ class PipeToReadableStreamReadRequest {\n }\n \n [kChunk](chunk) {\n- this.state.currentWrite = writableStreamDefaultWriterWrite(this.writer, chunk);\n- setPromiseHandled(this.state.currentWrite);\n- this.pr... | 2026-02-26T07:54:39 |
golang/go | 9d5d6af2d5bb4128f7e0759434a44839898c39a2 | f26befb380e7b0a5e8c083cacfcd141b4c2d413a | net/http: make ResponseWriter.ReadFrom respect declared Content-Length
Unlike ResponseWriter.Write, ResponseWriter.ReadFrom does not currently
respect declared Content-Length header. As a result, it is possible for
a server handler to inadvertently write more bytes for their response
body than has been declared via Co... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -1612,6 +1612,65 @@ func testHeadReaderFrom(t *testing.T, mode testMode) {\n \t}\n }\n \n+// Ensure ResponseWriter.ReadFrom respects declared Content-Length header.\n+// https://go.dev/issue/78179.\n+func TestReaderFromTooLong(t *testing.T) { run(t, testR... | 2026-03-17T01:20:11 |
facebook/react | 894bc73cb493487c48d57f4508e6278db58e673a | d3eb566291ee5507b3912fe3c0cd6886167fe398 | [Flight] Patch Promise cycles and toString on Server Functions (#35345)
Server Functions can be stringified (sometimes implicitly) when passed
as data. This adds an override to hide the source code in that case -
just in case someone puts sensitive information in there.
Note that this still preserves the `name` field... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -894,6 +894,7 @@ function resolveModuleChunk<T>(\n const resolvedChunk: ResolvedModuleChunk<T> = (chunk: any);\n resolvedChunk.status = RESOLVED_MODULE;\n resolvedChunk.value = value;\n+ resolvedChunk.reason = null;\n if (__DE... | 2025-12-11T20:24:24 |
electron/electron | f7507447ad5c63e3c22edea5753cc21baf6acf5c | ff623a731c21d097039f4368899883e34ae6bd34 | fix: use proper quoting for exe paths and args on Windows (#50016)
Previously, GetProtocolLaunchPath and FormatCommandLineString in
browser_win.cc used naive quoting which could break when paths or
arguments contained backslashes, spaces, or embedded quotes.
Fix by extracting the CommandLineToArgvW-compatible quoting... | [
{
"path": "filenames.gni",
"patch": "@@ -117,6 +117,8 @@ filenames = {\n \"shell/browser/win/scoped_hstring.h\",\n \"shell/common/api/electron_api_native_image_win.cc\",\n \"shell/common/application_info_win.cc\",\n+ \"shell/common/command_line_util_win.cc\",\n+ \"shell/common/command_line... | 2026-03-04T16:59:49 |
vercel/next.js | 6836c26b723aa1b66c801039763618fb3cc1e3a7 | c13536d012e65396c16c0c33a30a6333ad42d677 | Restructure pr-status-triage skill: merge command into skill files (#91514)
### What?
Migrates the `.claude/commands/pr-status.md` slash command into the
`.agents/skills/pr-status-triage/` skill, restructuring the files so
that `SKILL.md` has a single unified workflow and supporting details
live in the appropriate re... | [
{
"path": ".agents/skills/pr-status-triage/SKILL.md",
"patch": "@@ -14,21 +14,24 @@ Use this skill when the user asks about PR status, CI failures, or review commen\n \n ## Workflow\n \n-1. Run `node scripts/pr-status.js` (or `node scripts/pr-status.js <number>`).\n-2. Read generated files in `scripts/pr-st... | 2026-03-19T09:00:10 |
nodejs/node | 488a854cf5fcc014934361f87f48bf401da5ae4b | e0375be3cfa7a47f6b018df1a8fc1b0f1c60be39 | crypto: fix handling of null BUF_MEM* in ToV8Value()
The assignment to `bptr` calls `BIO_get_mem_ptr` which can fail and
leave the `bptr` as nullptr. This then later causes a null pointer
deref.
This is inconsistent with uses of the similar function
`BIO_get_mem_data` that do check its return value, e.g.
`node::crypto... | [
{
"path": "src/crypto/crypto_keys.cc",
"patch": "@@ -86,8 +86,15 @@ MaybeLocal<Value> ToV8Value(\n Environment* env,\n const BIOPointer& bio,\n const EVPKeyPointer::AsymmetricKeyEncodingConfig& config) {\n- if (!bio) return {};\n+ if (!bio) {\n+ THROW_ERR_CRYPTO_OPERATION_FAILED(env, \"Inva... | 2026-02-25T13:56:28 |
golang/go | f26befb380e7b0a5e8c083cacfcd141b4c2d413a | e1bc5cea825171f68f928686ed02a0d0abddd84c | net: avoid wrapping io.EOF in UnixConn read methods
The io.Reader contract requires that Read methods return io.EOF
directly instead of wrapping it in another error.
Currently UnixConn.ReadFromUnix, ReadFrom, and ReadMsgUnix wrap
io.EOF inside net.OpError, causing callers checking for io.EOF
to fail.
Fix by avoiding... | [
{
"path": "doc/next/78137.md",
"patch": "@@ -0,0 +1,2 @@\n+net: UnixConn read methods now return io.EOF directly instead of\r\n+wrapping it in net.OpError when the underlying read returns EOF.\n\\ No newline at end of file",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
"pa... | 2026-03-13T05:38:32 |
electron/electron | ff623a731c21d097039f4368899883e34ae6bd34 | 442debdcd4885943c8b870e6fd9a803976b306a1 | build: fix code-signing for MacOS x64 tests (#50058)
* fix: code-sign binaries for notification tests
* test: remove redundent feedURL test
* test: move squirrel feed tests to api-autoupdater
* fix: fix SQRLShipItRequest.JSONKeyPathsByPropertyKey mappings
* Revert "fix: fix SQRLShipItRequest.JSONKeyPathsByProperty... | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -196,12 +196,21 @@ jobs:\n run: |\n cd src/out/Default\n unzip -:o dist.zip\n- #- name: Import & Trust Self-Signed Codesigning Cert on MacOS\n- # if: ${{ inputs.target-platform == 'macos' && inputs.ta... | 2026-03-04T16:58:47 |
vercel/next.js | c13536d012e65396c16c0c33a30a6333ad42d677 | 62393b0402885a627e2a42398062df0b1c997ae5 | turbo-tasks-backend: batch find_and_schedule_dirty using for_each_task_meta (#91497)
### What?
Batch-process `find_and_schedule_dirty` in `aggregation_update.rs` by
collecting all queued jobs (up to `FIND_AND_SCHEDULE_BATCH_SIZE` = 10
000) into a `SmallVec` and pre-fetching their task metadata with a
batched `ctx.for... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -43,6 +43,10 @@ type FxRingSet<T> = RingSet<T, FxBuildHasher>;\n \n pub const LEAF_NUMBER: u32 = 16;\n const MAX_COUNT_BEFORE_YIELD: usize = 1000;\n+/// Batch size for find_and_schedule processing. The... | 2026-03-19T08:43:28 |
facebook/react | d3eb566291ee5507b3912fe3c0cd6886167fe398 | 37bcdcde044131d49f11b2f62873a200a94ec756 | [compiler] Fix VariableDeclarator source location (#35129)
### What
Fixes source locations for VariableDeclarator in the generated AST.
Fixes a number of the errors in the snapshot I added yesterday in the
source loc validator PR https://github.com/facebook/react/pull/35109
I'm not entirely sure why, but a side effec... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -4026,6 +4026,7 @@ function lowerAssignment(\n pattern: {\n kind: 'ArrayPattern',\n items,\n+ loc: lvalue.node.loc ?? GeneratedSource,\n },\n },\n ... | 2025-12-11T19:35:03 |
electron/electron | 0d7fc9581791bfe33a0b28abeafe492c9d2ce5b9 | 54ac544f2761ed73385e69ad76129c174faecf0b | chore: remove applescript from trash (#50044)
Previously, when trashItemAtURL: failed (e.g. on network shares or
under app translocation), the code fell back to constructing an
AppleScript that interpolated the bundle path directly into a string
literal via %@ with no escaping. This was fragile and unnecessary —
trash... | [
{
"path": "shell/browser/ui/cocoa/electron_bundle_mover.mm",
"patch": "@@ -270,34 +270,10 @@ void Relaunch(NSString* destinationPath) {\n }\n \n bool Trash(NSString* path) {\n- bool result = false;\n-\n- if (floor(NSAppKitVersionNumber) >= NSAppKitVersionNumber10_8) {\n- result = [[NSFileManager defaul... | 2026-03-04T11:16:33 |
golang/go | e1bc5cea825171f68f928686ed02a0d0abddd84c | 224489f11c2e0b394e93980fc8292c52f60b18a8 | net/http/internal/http2: modernize the package
This CL is mostly generated by running go fix. Manual edits have also been
selectively done to modernize the package where doing so is straightforward; for
example, using slices.Contains in lieu of strSliceContains.
Change-Id: Ie2942481672c56c370e2df0f172cf3e480a12bc5
Re... | [
{
"path": "src/net/http/internal/http2/client_conn_pool.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"context\"\n \t\"errors\"\n \t\"net\"\n+\t\"slices\"\n \t\"sync\"\n )\n \n@@ -211,10 +212,8 @@ func (c *addConnCall) run(t *Transport, key string, nc net.Conn) {\n \n // p.mu must be held\n func (p *client... | 2026-03-13T15:43:05 |
vercel/next.js | d230d5841ca3b5c54fec5282cabe84e74458ba86 | 78937ee52a582b1bebcb3b0b3f130b1472b2cd2d | Update tokio from 1.43.0 to 1.47.3 (#90945)
## Summary
Update the workspace `tokio` dependency from 1.43.0 to ~1.47.3 (pinned to the 1.47.x LTS minor line).
The tokio 1.43.x LTS line expires **March 2026**. This moves to the 1.47.x LTS line (supported until September 2026). The tilde version specifier (`~1.47.3`) en... | [
{
"path": "Cargo.lock",
"patch": "@@ -1309,7 +1309,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\"\n dependencies = [\n \"lazy_static\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.48.0\",\n ]\n \n [... | 2026-03-18T23:14:24 |
facebook/react | 37bcdcde044131d49f11b2f62873a200a94ec756 | 5a970933c0aa5c5cfb9793cce49f3a282b191716 | fix[devtools]: feature-check document with typeof instead of direct reference (#35343)
Follow-up to https://github.com/facebook/react/pull/35296.
We can get `ReferenceError` if this is unavailable. Using `typeof` check
instead for safety. | [
{
"path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js",
"patch": "@@ -96,8 +96,11 @@ export default function setupHighlighter(\n applyingScroll = false;\n }\n \n- // $FlowFixMe[method-unbinding]\n- if (document && typeof document.addEventListener === 'function') {\n+ if (... | 2025-12-11T12:15:00 |
rust-lang/rust | 15c6e6e0925aea95e21adad02a992f070dca0002 | d9137667574db8fd54e0766f492ff5eff236ab44 | Add a `handle_cycle_error` query modifier.
This modifier indicates that a query has a custom handler for cycles.
That custom handler must be found at
`rustc_query_impl::handle_cycle_error::$name`.
This eliminates the need for `specialize_query_vtables`, which is the
current hack to install custom handlers. It's more ... | [
{
"path": "compiler/rustc_macros/src/query.rs",
"patch": "@@ -142,6 +142,7 @@ struct QueryModifiers {\n desc: Desc,\n eval_always: Option<Ident>,\n feedable: Option<Ident>,\n+ handle_cycle_error: Option<Ident>,\n no_force: Option<Ident>,\n no_hash: Option<Ident>,\n separate_provid... | 2026-04-01T11:01:00 |
electron/electron | 5eb1e1bf8952724df334ca94c9bb44722b50c94b | 6418847fd2e06f188b1d2537dc15c4705e2277dc | fix: uaf in non-client hittest during view teardown (#50042)
* fix: uaf in non-client hittest during view teardown
* chore: update crash spec | [
{
"path": "shell/browser/api/electron_api_web_contents_view.cc",
"patch": "@@ -83,13 +83,17 @@ void WebContentsView::ApplyBorderRadius() {\n \n int WebContentsView::NonClientHitTest(const gfx::Point& point) {\n if (api_web_contents_) {\n+ auto* iwc = api_web_contents_->inspectable_web_contents();\n+ ... | 2026-03-03T15:29:49 |
golang/go | 224489f11c2e0b394e93980fc8292c52f60b18a8 | 325eedb2a993aafb7f20738d73a1098036447917 | cmd/go: fix autocgo test fail when set CGO_ENABLED during make.bash
Details see CL 706095
Fixes #75340
Change-Id: Ic7276f2fb3abc5f02f224d82e1f26844888f0a1e
Reviewed-on: https://go-review.googlesource.com/c/go/+/757182
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUC... | [
{
"path": "src/cmd/go/scriptconds_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"cmd/internal/script/scripttest\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/buildcfg\"\n \t\"internal/testenv\"\n \t\"os\"\n \t\"os/exec\"\n@@ -47,6 +48,7 @@ func scriptConditions(t *testing.T) map[string]script.Cond {\n \... | 2026-03-21T01:25:14 |
vercel/next.js | 962e5b166cea3fdb6589837a8fd3ea62031be17d | fb85660ab1f70e294465af0074dc7c941e3540ca | Fix(pages-router): restore Content-Length and ETag for /_next/data/ JSON responses (#90304)
## What
Removes the `Buffer.from()` wrapper when constructing `RenderResult` for
`/_next/data/` JSON responses in the Pages Router handler.
## Why
PR #80189 introduced
`Buffer.from(JSON.stringify(result.value.pageData))`
whe... | [
{
"path": "AGENTS.md",
"patch": "@@ -148,13 +148,13 @@ pnpm test-dev-turbo test/development/\n Generating tests using `pnpm new-test` is mandatory.\n \n ```bash\n-# Use --args for non-interactive mode\n-# Format: pnpm new-test --args <appDir> <name> <type>\n+# Use --args for non-interactive mode (forward ar... | 2026-03-18T22:24:23 |
facebook/react | 5a970933c0aa5c5cfb9793cce49f3a282b191716 | 5d801243459cc18a768c9b291355943366730539 | fix[devtools]: feature-check structure stack trace methods (#35293)
`Error.prepareStackTrace` is non-standard feature and not all JavaScript
runtimes implement the methods that we are using in React DevTools
backend.
This PR adds additional checks for the presence of the methods that we
are using. | [
{
"path": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js",
"patch": "@@ -154,41 +154,73 @@ function collectStackTrace(\n // We mirror how V8 serializes stack frames and how we later parse them.\n for (let i = framesToSkip; i < structuredStackTrace.length; i++) {\n const callSit... | 2025-12-10T19:21:54 |
nodejs/node | 2ebe49600efb1e1073a14207feb9272795fcbd76 | 14aaf4e38bc41600de979619ecf080f72136f6ec | test_runner: expose worker ID for concurrent test execution
This adds support for identifying which worker is running a test file
when tests execute concurrently, similar to JEST_WORKER_ID in Jest,
VITEST_POOL_ID in Vitest, and MOCHA_WORKER_ID in Mocha.
When running with --test-isolation=process (default), each test ... | [
{
"path": "doc/api/test.md",
"patch": "@@ -3807,6 +3807,39 @@ added: v25.0.0\n \n Number of times the test has been attempted.\n \n+### `context.workerId`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Type: {number|undefined}\n+\n+The unique identifier of the worker running the current test file. This valu... | 2026-02-24T23:37:22 |
electron/electron | 2f13d85785237f53e4e3f46966d374684bb3831a | 6d2fc4e5cb36850c18db1fa4c4f410cb21cf5263 | fix: better shortcut registration and app icon matching on Wayland (#49988)
* fix: set default desktop name that matches exec name on linux
* chromium patches for global shortcuts
* use app name for shortcut description | [
{
"path": "default_app/main.ts",
"patch": "@@ -111,7 +111,10 @@ async function loadApplicationPackage (packagePath: string) {\n app.name = packageJson.name;\n }\n \n- app.setDesktopName(packageJson.desktopName || `${app.name}.desktop`);\n+ // Set application's desktop name (Linux). T... | 2026-03-03T14:37:54 |
vercel/next.js | 56d75a0b77f2ceda8ea747810275da8e0a9a3d71 | 0cf61307c63aefc16fac286bdd0c3f9b01cc071f | Fix invalid HTML response for route-level RSC requests in deployment adapter (#91541)
In a deployed environment, `onCacheEntryV2` determines whether a
postponed response is HTML-origin or RSC-origin by checking whether
meta.url ends with `.rsc`.
For some dynamic full-route RSC requests, Next was passing a URL with
qu... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -73,6 +73,7 @@ import {\n getPostponedStateExceededErrorMessage,\n readBodyWithSizeLimit,\n } from '../../server/lib/postponed-request-body'\n+import { parseUrl } from '../../lib/url'\n \n // These are injected by the loader afterwa... | 2026-03-18T19:17:31 |
facebook/react | 5d801243459cc18a768c9b291355943366730539 | eade0d0fb78e327c5624f53753126687f05c0d16 | fix[devtools]: still show overlay, if getClientRects is not implemented (#35294)
Follow-up to https://github.com/facebook/react/pull/34653.
React Native doesn't implement `getClientRect`, since this is applicable
to CSS box, which is not a concept for Native (maybe yet).
I am loosening the condition that gates `show... | [
{
"path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js",
"patch": "@@ -202,13 +202,12 @@ export default function setupHighlighter(\n typeof node.getClientRects === 'function'\n ? node.getClientRects()\n : [];\n- // If this is currently displ... | 2025-12-10T19:21:28 |
golang/go | 325eedb2a993aafb7f20738d73a1098036447917 | 07f0c2074c257e7f89a52152f451c66e7f762481 | runtime/race: apply LLVM zero-initialization fix
Upstream TSAN had bug that could result in use of uninitialized memory
on Go threads that don't have any TSAN events. For example, if the
thread only ever runs the GC.
This bug was fixed upstream in
https://github.com/llvm/llvm-project/commit/cdfdb06c9155080ec97d6e4f4d... | [
{
"path": "src/runtime/race/README",
"patch": "@@ -4,16 +4,16 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04... | 2026-03-18T18:14:20 |
nodejs/node | 84d1e6cb0d43a1f29bea4d28829d77a1de937634 | 4d3ca8b9153aa26157744b01c198a0914b162a9c | crypto: fix potential null pointer dereference when BIO_meth_new() fails
This function can return null, which will make the calls to
BIO_meth_set_* trigger a null deref.
Even after fixing this, there is an issue with the
`BIOPointer::New(GetMethod())` call in `NodeBIO::New` because the
`New` method cannot handle a nul... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -1470,6 +1470,7 @@ BIOPointer BIOPointer::NewSecMem() {\n }\n \n BIOPointer BIOPointer::New(const BIO_METHOD* method) {\n+ if (method == nullptr) return {};\n return BIOPointer(BIO_new(method));\n }\n ",
"additions": 1,
"deletions": 0,
"langua... | 2026-02-24T19:51:58 |
electron/electron | 6d2fc4e5cb36850c18db1fa4c4f410cb21cf5263 | f0376736556200826608dec79918de9fa775aa9d | fix: validate USB device selection against filtered device list (#50002)
* fix: validate USB device selection against filtered device list
Previously, UsbChooserController::OnDeviceChosen looked up the chosen
device_id via chooser_context_->GetDeviceInfo(), which searches all
known USB devices on the system rather th... | [
{
"path": "shell/browser/usb/usb_chooser_controller.cc",
"patch": "@@ -68,6 +68,7 @@ gin::WeakCell<api::Session>* UsbChooserController::GetSession() {\n void UsbChooserController::OnDeviceAdded(\n const device::mojom::UsbDeviceInfo& device_info) {\n if (DisplayDevice(device_info)) {\n+ devices_.pus... | 2026-03-03T09:44:33 |
vercel/next.js | 0cf61307c63aefc16fac286bdd0c3f9b01cc071f | c5c94dffbf084e66b172a9c6ff23d80c24973764 | Update vendored lodash to 4.17.23 to fix CVE-2025-13465 (#91558)
Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com> | [
{
"path": "package.json",
"patch": "@@ -242,7 +242,7 @@\n \"ky-universal\": \"0.6.0\",\n \"lerna\": \"9.0.3\",\n \"lint-staged\": \"15.2.2\",\n- \"lodash\": \"4.17.20\",\n+ \"lodash\": \"4.17.23\",\n \"lost\": \"8.3.1\",\n \"minimatch\": \"3.0.4\",\n \"moment\": \"^2.24.0\",",
... | 2026-03-18T18:49:19 |
golang/go | 5f5f4ccdb385fa73de5729cfe8c0336b44a88f4c | 16018b05ae226e7a99f166bded7f939c5b0c4a98 | Revert "runtime, cmd/compile: use preemptible memclr for large pointer-free clears"
This reverts CL 750480.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
We keep the test added in CL 755942,... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1605,13 +1605,11 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer... | 2026-03-20T21:50:07 |
facebook/react | 61331f3c9e9ea93d866273567d38e23ef4bc4c5b | 55480b4d228986e502f4651f8e53a6f264a1858e | Fix ViewTransition crash in Mobile Safari (#35337)
Speculative fix to https://github.com/facebook/react/issues/35336
written by Claude.
I have verified that applying a similar patch locally to the repro from
#35336 does fix the crash.
I'm not familiar enough with the underlying APIs to tell whether the fix
is correc... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1996,26 +1996,6 @@ export function hasInstanceAffectedParent(\n return oldRect.height !== newRect.height || oldRect.width !== newRect.width;\n }\n \n-function cancelAllViewTransitionAnimations(scope: Element) {\n- //... | 2025-12-09T18:35:15 |
nodejs/node | 001d5d4b771d00b4fb06feac247a6448338c4f4f | 9145cc6483e578a528d149a6515753939b091107 | 2026-02-24, Version 24.14.0 'Krypton' (LTS)
Notable changes:
async_hooks:
* (SEMVER-MINOR) add `trackPromises` option to `createHook()` (Joyee Cheung) https://github.com/nodejs/node/pull/61415
build,deps:
* replace cjs-module-lexer with merve (Yagiz Nizipli) https://github.com/nodejs/node/pull/61456
deps:
* (SE... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -52,7 +52,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V25.md#25.0.0\">25.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.13.1\">24.13.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.14.0\">24.14.0... | 2026-02-22T22:50:16 |
golang/go | 16018b05ae226e7a99f166bded7f939c5b0c4a98 | 2de90fd48f2e4e38c2805e81b37d4116004752e2 | Revert "runtime: fix memclrNoHeapPointersPreemptible"
This reverts CL 756122.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
For #78254.
Change-Id: I8a234d1a6dddf70d9aa5ecda1ac8bb25deb08248
... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -2184,27 +2184,22 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi... | 2026-03-20T21:49:14 |
vercel/next.js | bcd9c19a6174ed36bdcf9cc690570e7bb2d604dd | 3683192a6bea9011222e9b236f8000b5266f3fe6 | docs: Clarify ignoreBuildErrors behavior (#91367)
Just a complementary note to the TS config reference. | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/typescript.mdx",
"patch": "@@ -29,6 +29,8 @@ Next.js fails your **production build** (`next build`) when TypeScript errors ar\n \n If you'd like Next.js to dangerously produce production code even when your application has errors, you can d... | 2026-03-18T15:54:42 |
facebook/react | 55480b4d228986e502f4651f8e53a6f264a1858e | 3640f38a728f3a057649cf7aec65a6ce14c2eac0 | [playground] Downgrade Next.js to a secure version (#35317)
Was bumped to a canary in https://github.com/facebook/react/pull/34499/
which got never released as stable.
Presumeably to use `Activity` which only made it into Activity in later
Next.js releases. However, `Activity` never ended up being used due to
incompa... | [
{
"path": "compiler/apps/playground/.gitignore",
"patch": "@@ -12,6 +12,7 @@\n # next.js\n /.next/\n /out/\n+/next-env.d.ts\n \n # production\n /build",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx",
"... | 2025-12-08T19:06:57 |
electron/electron | 238699221e09d957b6008f894e8325e8bffbbac1 | 0ae46d71d37810e322fa28ae132f22d4cde6d103 | chore: bump chromium to 147.0.7713.0 (main) (#49975)
* chore: bump chromium in DEPS to 147.0.7708.0
* chore: update patches
* chore: bump chromium in DEPS to 147.0.7709.0
* chore: bump chromium in DEPS to 147.0.7710.0
* chore: bump chromium in DEPS to 147.0.7713.0
* 7603876: Remove OriginatingProcess and Renderer... | [
{
"path": ".claude/skills/electron-chromium-upgrade/SKILL.md",
"patch": "@@ -19,6 +19,8 @@ Do not stop until these criteria are met.\n \n **CRITICAL** Do not delete or skip patches unless 100% certain the patch is no longer needed. Complicated conflicts or hard to resolve issues should be presented to the u... | 2026-03-03T04:54:44 |
rust-lang/rust | b0c4b6ef461ea4c7c75ac8f7c259247f24b4b5c7 | e6b64a2f4c696b840f8a384ec28690eed6a5d267 | fix(std): avoid AT_MINSIGSTKSZ on uclibc targets | [
{
"path": "library/std/src/sys/pal/unix/stack_overflow.rs",
"patch": "@@ -305,7 +305,7 @@ mod imp {\n }\n \n /// Modern kernels on modern hardware can have dynamic signal stack sizes.\n- #[cfg(any(target_os = \"linux\", target_os = \"android\"))]\n+ #[cfg(all(any(target_os = \"linux\", target_... | 2026-04-02T21:32:49 |
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.