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 |
|---|---|---|---|---|---|
vercel/next.js | a98213cbfa394b17855010b1a539fd519a404e2f | 69264a763ff642631b01a8ba8881445cd9262f81 | Refactor effects system: dedup/conflict detection, simplified Effect trait (#92300)
### What?
Refactors the turbo-tasks effects system to support duplicate detection,
conflict detection, and state tracking across effect applications. Also
adds a ptr_eq fast path to `ReadRef::PartialEq`.
### Why?
The existing effect... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/invalidation.rs",
"patch": "@@ -144,7 +144,7 @@ impl InvalidationReasonKind for InitializeKind {\n }\n \n /// Invalidation was caused by a write operation on the filesystem\n-#[derive(PartialEq, Eq, Hash)]\n+#[derive(PartialEq, Eq, Hash, Clone)]\n pub(crate) st... | 2026-04-10T11:52:39 |
facebook/react | 705268dcd16779b1f51f234cebaa588d761202ce | 733d3aaf99e30627ec25174da9d39efbaa97dba3 | Fix require('ReactFeatureFlags') in eslint-plugin-react-hooks www build (#36243)
PR #35951 added FB_WWW_DEV builds for eslint-plugin-react-hooks to get
www-specific feature flag values. However, the FB_WWW build uses the
full ReactFeatureFlags.www.js fork, which contains:
const dynamicFeatureFlags = require('ReactF... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.eslint-plugin.www.js",
"patch": "@@ -0,0 +1,24 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * ... | 2026-04-09T16:14:54 |
golang/go | 926a1bef08ae6b93b50a96eedb15210e1d8c4733 | 0e31741044d519065f62a5e96499909d6cd230dc | cmd/asm, cmd/internal/obj/arm64: add GP and SIMD reg support for SVE
The GP registers and SIMD registers are comforming to the existing Go
syntax: they are V or R registers, their widths are specified in the
Opcode, the rules to specify them is:
- if that instruction only contains one GP or SIMD register:
If it's 3... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64sveenc.s",
"patch": "@@ -34,8 +34,8 @@ TEXT asmtest(SB),DUPOK|NOSPLIT,$-8\n \tPPTRUE PN14.S // 1678a025\n \tPPUNPKHI P14.B, P0.H // c0413105\n \tPPUNPKLO P14.B, P0.H ... | 2026-03-25T19:05:16 |
electron/electron | c0f187f90ddfaba6168dd07a1b689797f0078dc4 | 5f820b7f692f7c9a8ab248e5cc1e81353123ffce | feat: capture Node.js trace categories via Perfetto (#50591)
* feat: capture Node.js trace categories via Perfetto
* fix: crash in ELECTRON_RUN_AS_NODE
* chore: cleanup macro usage
* chore: update patches | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -150,3 +150,4 @@ fix_pulseaudio_stream_and_icon_names.patch\n fix_fire_menu_popup_start_for_dynamically_created_aria_menus.patch\n feat_allow_enabling_extensions_on_custom_protocols.patch\n fix_initialize_com_on_desktopmedialistcapturethread_on_windows.pat... | 2026-04-10T12:12:46 |
facebook/react | 733d3aaf99e30627ec25174da9d39efbaa97dba3 | 404b38c764cf86e6f2ec42f873bb33ce114256d3 | Fix FB_WWW eprh bundle dev guard (#36238)
We use FB_WWW bundle to inject internal feature flag values, but need to
use NODE guard type because this is a node script -- __DEV__ is breaking
internal builds
Follow up to https://github.com/facebook/react/pull/35951 | [
{
"path": "scripts/rollup/build.js",
"patch": "@@ -453,7 +453,8 @@ function getPlugins(\n globalName,\n filename,\n moduleType,\n- bundle.wrapWithModuleBoundaries\n+ bundle.wrapWithModuleBoundaries,\n+ bundle.wrapWithNodeDevGuard\n ... | 2026-04-08T20:12:35 |
vercel/next.js | 69264a763ff642631b01a8ba8881445cd9262f81 | 7d09d1e605a879a72234f4dbe92276431e58ac82 | test: reduce writeToDisk memory test iterations to fix CI timeout (#92586)
### What?
Reduces `RUNS` from 10,000 to 1,000 in the `next.rs api writeToDisk
multiple times` test in `test/development/basic/next-rs-api.test.ts`.
### Why?
The test was frequently timing out on CI. It spawns a child `node
--expose-gc` proce... | [
{
"path": "test/development/basic/next-rs-api.test.ts",
"patch": "@@ -239,7 +239,7 @@ async function main() {\n const entrypointsSubscription = project.entrypointsSubscribe();\n const entrypoints = (await entrypointsSubscription.next()).value;\n \n- const RUNS = 10000;\n+ const RUNS = 1000;\n async ... | 2026-04-10T08:52:46 |
golang/go | 0e31741044d519065f62a5e96499909d6cd230dc | 824a8a315668598436072566727cc5b28ac2f8c9 | runtime: fix AIX library initialization
On AIX, libInit passes a function descriptor instead of the function
pointer to pthread_create. This is a regression from CL 706417.
Change-Id: I660175eb992a41ef61b1927c51392887a724cd76
Reviewed-on: https://go-review.googlesource.com/c/go/+/761780
Reviewed-by: Ian Lance Taylor ... | [
{
"path": "src/runtime/libinit.go",
"patch": "@@ -11,6 +11,13 @@ import (\n \t\"unsafe\"\n )\n \n+// rt0LibGoFn holds the function pointer to rt0_lib_go suitable for thread\n+// creation. On most platforms it is zero, meaning the raw code address should\n+// be used. On AIX it is set by libpreinit to a func... | 2026-04-01T14:07:46 |
electron/electron | 8b7e7de20827b4878e1372151d45259ee0808541 | b59f5730973ea210a2f2a5545de3e433c662e8b1 | fix: return numeric blksize and blocks from asar fs.stat (#50825)
fix: return numeric `blksize` and `blocks` from asar `fs.stat`
Previously, `fs.stat` on files inside `.asar` archives returned
`undefined` for `blksize` and `blocks`, violating the Node.js API
contract where these fields must be `number | bigint`.
Use... | [
{
"path": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -135,10 +135,10 @@ const asarStatsToFsStats = function (stats: NodeJS.AsarFileStat) {\n uid,\n gid,\n 0, // rdev\n- undefined, // blksize\n+ 4096, // blksize\n ++nextInode, // ino\n stats.size,\n- undefined, // blocks,\n+ ... | 2026-04-10T08:19:09 |
nodejs/node | 8c3cf47ece42bfa678922d8a3306655f40a7b777 | fff57708b673d9ec69bfd82e49f7f3e29d1deee3 | test: update tls junk data error expectations
PR-URL: https://github.com/nodejs/node/pull/62629
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com> | [
{
"path": "test/parallel/test-tls-alert-handling.js",
"patch": "@@ -6,7 +6,6 @@ if (!common.hasCrypto) {\n }\n \n const {\n- hasOpenSSL,\n hasOpenSSL3,\n } = require('../common/crypto');\n \n@@ -34,18 +33,15 @@ const max_iter = 20;\n let iter = 0;\n \n const errorHandler = common.mustCall((err) => {\n- ... | 2026-04-09T17:31:59 |
facebook/react | 808e7ed8e26c07dc15c088105673b639760477f9 | 0c44b96e97c595198f30bdbe0f637f92ed74ed95 | [compiler] Fix set-state-in-effect false negative with NewExpression default param (#36107)
## Summary
Fixes #36101
When a component function has a destructured prop with a `NewExpression`
default value (e.g. `{ value = new Number() }`), the React Compiler
bails out during HIR construction when trying to lower the d... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -3268,6 +3268,21 @@ function isReorderableExpression(\n )\n );\n }\n+ case 'NewExpression': {\n+ const newExpr = expr as NodePath<t.NewExpression>;\n+ const callee = newExpr.get('call... | 2026-04-08T18:52:49 |
electron/electron | b59f5730973ea210a2f2a5545de3e433c662e8b1 | b417696d6b733291e84a572614a2cf1fbad0677c | fix: pass `root_gen_dir` from GN to `generate_node_headers.py` (#50847)
fix: pass root_gen_dir from GN to generate_node_headers.py
PR #50828 replaced a local get_out_dir() (defaulting to 'Testing') with
the shared one from script/lib/util.py (defaulting to 'Default').
Neither default is correct because the actual out... | [
{
"path": "BUILD.gn",
"patch": "@@ -1644,6 +1644,7 @@ action(\"node_version_header\") {\n action(\"generate_node_headers\") {\n deps = [ \":generate_config_gypi\" ]\n script = \"script/node/generate_node_headers.py\"\n+ args = [ rebase_path(\"$root_gen_dir\") ]\n outputs = [ \"$root_gen_dir/node_head... | 2026-04-10T07:41:45 |
golang/go | 76ddc5b92ba644c91908b5ffc62bfb9e8a822d70 | 2393d14061ea07d26be70091196bbe7c8c12a402 | crypto/internal/fips140/pbkdf2: fix typo in error message
Change-Id: I24a44b0f06b02fe99c8364afa2a9c04ff5435c0e
Reviewed-on: https://go-review.googlesource.com/c/go/+/765001
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Neal Patel <nealpatel@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
LUCI-... | [
{
"path": "src/crypto/internal/fips140/pbkdf2/pbkdf2.go",
"patch": "@@ -24,7 +24,7 @@ func Key[Hash hash.Hash](h func() Hash, password string, salt []byte, iter, keyL\n \tsetServiceIndicator(salt, keyLength)\n \n \tif keyLength <= 0 {\n-\t\treturn nil, errors.New(\"pkbdf2: keyLength must be larger than 0\")... | 2026-04-09T21:22:13 |
vercel/next.js | 7d09d1e605a879a72234f4dbe92276431e58ac82 | 5723c5a8380b0f68f9ca46b2da892f9cddc3e4d9 | Fix NextFontIssue IssueStage: CodeGen → Resolve (#92588)
### What?
Changes `NextFontIssue`'s `IssueStage` from `CodeGen` to `Resolve`.
### Why?
`NextFontIssue` is emitted during font resolution — when validating font
configuration options (`util.rs`) and when fetching/resolving Google
Font metadata (`google/mod.rs`... | [
{
"path": "crates/next-core/src/next_font/issue.rs",
"patch": "@@ -14,7 +14,7 @@ pub(crate) struct NextFontIssue {\n impl Issue for NextFontIssue {\n #[turbo_tasks::function]\n fn stage(&self) -> Vc<IssueStage> {\n- IssueStage::CodeGen.cell()\n+ IssueStage::Resolve.cell()\n }\n \n ... | 2026-04-10T08:47:04 |
nodejs/node | 8db9d43c456bb4ef815b21f9337dcb55d6c91b13 | b52102f11db4bd312cde43387b4860af2b3ae5ef | assert,util: fix stale nested cycle memo entries
Temporary nested cycle-tracking entries could remain in the memory set
after a successful comparison. If a later sibling comparison reused one
of those objects, deepStrictEqual could incorrectly fail for equivalent
structures.
This cleans up the temporary nested entries... | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -529,6 +529,10 @@ function handleCycles(val1, val2, mode, keys1, keys2, memos, iterationType) {\n memos.deep = true;\n const result = objEquiv(val1, val2, mode, keys1, keys2, memos, iterationType);\n memos.deep = false;\n+ if ... | 2026-04-09T16:48:25 |
facebook/react | 1b45e2439289fd8e094c44161c89e06c5488671e | 80b1cab397764f83efb9828563a259c8052ded0c | Add Flight SSR benchmark fixture (#36180)
This PR adds a benchmark fixture for measuring the performance overhead
of the React Server Components (RSC) Flight rendering compared to plain
Fizz server-side rendering.
### Motivation
Performance discussions around RSC (e.g. #36143, #35125) have
highlighted the need for r... | [
{
"path": "fixtures/flight-ssr-bench/README.md",
"patch": "@@ -0,0 +1,62 @@\n+# Flight SSR Benchmark\n+\n+Measures the performance overhead of the React Server Components (RSC) Flight pipeline compared to plain Fizz server-side rendering, across both Node and Edge (web streams) APIs.\n+\n+## Prerequisites\n... | 2026-04-02T17:00:28 |
electron/electron | 4203d7688f604ad7bb86d0d1fdb9f35329ca7947 | 62e637275a338b7bd5e98e1957c2d907cc24edbf | fix: external resize hit targets for frameless windows on Windows (#50706) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -440,13 +440,11 @@ NativeWindowViews::NativeWindowViews(const int32_t base_window_id,\n if (window)\n window->AddPreTargetHandler(this);\n \n-#if BUILDFLAG(IS_LINUX)\n- // We need to set bounds again after widget init for two reasons:\n- ... | 2026-04-09T23:13:13 |
golang/go | 0eb3e5736d2134b1ed2d14b3b25c831bd6adbec6 | be193f3a97dce50bad1cf6100aa662c2f6ba57f7 | spec: fix prose in Instantiatons section
For #77273.
Change-Id: Idf5b81f77115e4e30921476f7424769fdf604ef4
Reviewed-on: https://go-review.googlesource.com/c/go/+/764920
Reviewed-by: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Review... | [
{
"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 (April 7, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (April 9, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4398,8 +4398,... | 2026-04-09T19:34:27 |
vercel/next.js | 3d2bab2936b59f56a976c647f91b8d9e0aefb164 | 535ac3cfa0de3701c0d61d5ffbf5fc52fb5ba569 | [turbopack] fix a debug_assert failure (#92581)
## What?
Fix a `debug_assert` failure in `SnapshotShardIter::next` and simplify the snapshot iterator control flow by removing impossible error cases.
## Why?
**Bug:** When a task was modified before a snapshot started and then modified *again* between `take_snapshot`... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1229,13 +1229,12 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n Some(encoded)\n }\n Err(err) => {\n- eprintln!(\n+ ... | 2026-04-09T20:15:04 |
facebook/react | 80b1cab397764f83efb9828563a259c8052ded0c | 044d56f3906809b749056059362396fb6b2872ec | Fix typos: occured->occurred, teh->the, accomodate->accommodate (#35616)
Fixed spelling errors in comments and error messages:
- Fixed 'occured' -> 'occurred' in ReactAsyncActions-test.js
- Fixed 'teh' -> 'the' in ReactFiberConfigDOM.js
- Fixed 'occured' -> 'occurred' in ErrorBoundary.js
- Fixed 'accomodate' -> 'accom... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js",
"patch": "@@ -156,7 +156,7 @@ export default class ErrorBoundary extends Component<Props, State> {\n <CaughtErrorView\n callStack={callStack}\n componentStack={componentStack}\n- ... | 2026-03-31T23:01:58 |
nodejs/node | 79671cf27906a8fbe3cad137323c2df748af819f | 90e12f247c449aefd12abfde285f8aa98ec1f847 | quic: fixup token verification to handle zero expiration
Signed-off-by: James M Snell <jasnell@gmail.com>
Assisted-by: Opencode:Opus 4.6
PR-URL: https://github.com/nodejs/node/pull/62620
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Tim Perry <pimterry@gmail.com> | [
{
"path": "src/quic/application.cc",
"patch": "@@ -516,13 +516,6 @@ class DefaultApplication final : public Session::Application {\n if (!session().max_data_left()) return 0;\n if (stream_queue_.IsEmpty()) return 0;\n \n- const auto get_length = [](auto vec, size_t count) {\n- CHECK_NOT_NULL... | 2026-04-06T02:30:41 |
vercel/next.js | 1816450605227bc2ef16e191f088c23994303759 | 1df258629663bd1e637ea55f0af94fd25236fbce | CI: Another attempt to fix pnpm versions for next-stats-action on canary (#92550)
It looks like https://github.com/vercel/next.js/pull/92533 didn't fully solve our issue here: https://github.com/vercel/next.js/actions/runs/24162886733/job/70518191406#step:7:163
`corepack use pnpm@10.33.0` runs `pnpm install`, but we ... | [
{
"path": ".github/actions/next-stats-action/src/index.js",
"patch": "@@ -111,28 +111,22 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n if (!actionInfo.skipClone) {\n const usePnpm = existsSync(path.join(dir, 'pnpm-lock.yaml'))\n if (usePnpm) {\n- ... | 2026-04-09T18:26:54 |
golang/go | be193f3a97dce50bad1cf6100aa662c2f6ba57f7 | 28c56bb5fb438d46d921a37f2e172ecf198f75c2 | cmd/go: use fsys.ReadDir for IsStandardPackage
FIPS140 crypto files will be bound into the virtual filesystem using the
fsys package. So IsStandardPackage needs to use fsys.ReadDir to check
that the fips140 packages are standard packages rather than os.ReadDir
because os.ReadDir doesn't know about the overlay.
It wou... | [
{
"path": "src/cmd/go/internal/modindex/read.go",
"patch": "@@ -680,7 +680,7 @@ func (rp *IndexPackage) Import(bctxt build.Context, mode build.ImportMode) (p *b\n // and otherwise falling back to internal/goroot.IsStandardPackage\n func IsStandardPackage(goroot_, compiler, path string) bool {\n \tif !enable... | 2026-04-03T19:03:36 |
electron/electron | 62e637275a338b7bd5e98e1957c2d907cc24edbf | 28c0eb29dfc9ff33beb685fbd96a0198317d548e | fix: move Electron help menu links to default app only (#50629)
* fix: remove Electron links from default help menu
* fix: remove help menu entirely from default menu
* fix: move Electron help menu links to default app
* docs: update default menu items list in menu.md | [
{
"path": "default_app/default_app.ts",
"patch": "@@ -1,5 +1,5 @@\n import { shell } from 'electron/common';\n-import { app, dialog, BrowserWindow, ipcMain } from 'electron/main';\n+import { app, dialog, BrowserWindow, ipcMain, Menu } from 'electron/main';\n \n import * as path from 'node:path';\n import * ... | 2026-04-09T19:14:22 |
facebook/react | 044d56f3906809b749056059362396fb6b2872ec | 2c2fd9d12c7159efef81e7ea6ec899943cf7ca33 | docs: fix typos and improve abbreviation usage in DESIGN_GOALS.md (#36170)
Hi! While reviewing the React Compiler documentation, I noticed a few
minor issues in DESIGN_GOALS.md:
- Fixed a typo: `outweight` → `outweigh` in the Non-Goals section.
- Updated all instances of `ie` to the standard `i.e.` for better
consi... | [
{
"path": "compiler/docs/DESIGN_GOALS.md",
"patch": "@@ -19,7 +19,7 @@ The idea of React Compiler is to allow developers to use React's familiar declar\n The following are explicitly *not* goals for React Compiler:\n \n * Provide perfectly optimal re-rendering with zero unnecessary recomputation. This is a ... | 2026-03-30T23:25:51 |
nodejs/node | e6ef4774c202245e8daaa3cc48a44f3f38b99429 | 1b5dc9bbc5bef5536297a7361e7ebb342a2a29a8 | crypto: align key argument names in docs and error messages
Signed-off-by: Filip Skokan <panva.ip@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62527
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -2743,14 +2743,14 @@ encoding of `'utf8'` is enforced. If `data` is a [`Buffer`][], `TypedArray`, or\n \n This can be called many times with new data as it is streamed.\n \n-### `verify.verify(object, signature[, signatureEncoding])`\n+### `verify.verify(key, sign... | 2026-04-07T11:03:48 |
vercel/next.js | 1df258629663bd1e637ea55f0af94fd25236fbce | c249ea94b0a7bc2e168aada9bafb1f1174382622 | turbopack: fix incremental build when module factories are restored from persistent cache (#92569)
### What?
Fix an incremental build bug in Turbopack where module factories
restored from the persistent cache would skip a necessary code
conversion step, producing incorrect output.
### Why?
`cell_persisted()` previo... | [
{
"path": "turbopack/crates/turbopack-core/src/code_builder.rs",
"patch": "@@ -42,7 +42,7 @@ pub struct PersistedCode(Code);\n #[turbo_tasks::value_impl]\n impl PersistedCode {\n #[turbo_tasks::function]\n- async fn to_code(self: Vc<Self>) -> Result<Vc<Code>> {\n+ pub async fn to_code(self: Vc<Sel... | 2026-04-09T17:52:08 |
golang/go | 28c56bb5fb438d46d921a37f2e172ecf198f75c2 | f6d825cd3a7f98fbb48880b791b4c2be8cecddf3 | cmd/go: build pkgsite doc command in same go command invocation
Instead of running go run. This is enabled by Ian Alexander's work to
remove global state in the loader package.
This also fixes an issue where we can't build and run the pkgsite binary
because, with our GOPROXY setting, if pkgsite module is available in... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -222,16 +222,16 @@ func do(ctx context.Context, writer io.Writer, flagSet *flag.FlagSet, args []str\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-lin... | 2026-04-07T21:15:10 |
electron/electron | 28c0eb29dfc9ff33beb685fbd96a0198317d548e | 8a730e2aec3c82d785ace17c6be60b220bdc804e | fix: `webContents.print()` ignoring mediaSize when silent (#50808)
fix: webContents.print() ignoring mediaSize when silent
PR #49523 moved the default media size fallback into OnGetDeviceNameToUse,
but the new code unconditionally writes kSettingMediaSize — clobbering
any mediaSize the caller had already set in WebCo... | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3153,16 +3153,18 @@ void OnGetDeviceNameToUse(base::WeakPtr<content::WebContents> web_contents,\n .Set(printing::kSettingMediaSizeIsDefault, true);\n };\n \n- const bool use_default_size =\n- print_settings.FindBool(kU... | 2026-04-09T17:16:40 |
facebook/react | 74568e8627aa43469b74f2972f427a209639d0b6 | 9627b5a1caa64c1488643bffdf04495106fa3247 | [Flight] Transport `AggregateErrors.errors` (#36156) | [
{
"path": ".eslintrc.js",
"patch": "@@ -566,6 +566,7 @@ module.exports = {\n CallSite: 'readonly',\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n+ AggregateError: 'readonly',\n AnimationFrameID: 'readonly',\n WeakRef:... | 2026-03-29T01:18:21 |
vercel/next.js | 9cf9a6326423de1c0fb7b8ce8c74a521a2842a87 | 7e741b4207d714a94f0e62905f06c460e6ac867a | test: skip .next and other build artifacts in writeFiles filter (#92578)
### What?
Skip `.next`, `.next-profiles`, and `.DS_Store` directories in the
`writeFiles` filter when copying test fixture directories.
### Why?
`writeInitialFiles` was taking ~500ms because the `fs.cp` filter only
skipped `package.json`. When... | [
{
"path": "test/lib/next-modes/base.ts",
"patch": "@@ -139,6 +139,12 @@ export class NextInstance {\n )\n }\n \n+ const skippedRelativePaths = new Set([\n+ 'package.json',\n+ '.next',\n+ '.next-profiles',\n+ '.DS_Store',\n+ ])\n await fs.cp(files.fsP... | 2026-04-09T15:36:10 |
nodejs/node | ff080948666f28fbd767548d26bea034d30bc277 | 43d5058056668b456754755d3f9c100d5ef1c193 | doc: remove extensionless CJS exception for type:module packages
Remove the documented exception that extensionless files in
type: "module" packages are recognized as CommonJS when included
via require(). This exception conflicted with the ESM resolution
specification which states that extensionless files within a
pac... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -76,10 +76,11 @@ Node.js has two module systems: CommonJS modules and [ECMAScript modules][].\n \n By default, Node.js will treat the following as CommonJS modules:\n \n-* Files with a `.cjs` extension;\n+* Files with a `.cjs` extension.\n \n-* Files with a `.js`... | 2026-04-08T08:50:21 |
golang/go | f6d825cd3a7f98fbb48880b791b4c2be8cecddf3 | b67dcb53be7f779cbea922688bf336fad6adc24d | crypto/internal/fips140/edwards25519/field: fix Invert comment
Pointed out by Alexander Yastrebov in FiloSottile/edwards25519#48.
Change-Id: I8ff0b761ff49ad454159f749e3e07ed86a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/745900
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Juny... | [
{
"path": "src/crypto/internal/fips140/edwards25519/field/fe.go",
"patch": "@@ -116,7 +116,7 @@ func (v *Element) Negate(a *Element) *Element {\n // If z == 0, Invert returns v = 0.\n func (v *Element) Invert(z *Element) *Element {\n \t// Inversion is implemented as exponentiation with exponent p − 2. It us... | 2026-02-15T20:27:08 |
electron/electron | 8a730e2aec3c82d785ace17c6be60b220bdc804e | 044be7ce40205320daf170c1ea012e30dc529dcb | fix: remove dangling raw_ptr `api::WebContents::zoom_controller_` (#50812)
fix: remove dangling raw_ptr api::WebContents::zoom_controller_ | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -972,11 +972,12 @@ WebContents::WebContents(v8::Isolate* isolate,\n \n void WebContents::InitZoomController(content::WebContents* web_contents,\n const gin_helper::Dictionary& options) {\n- WebCont... | 2026-04-09T17:16:17 |
facebook/react | 9627b5a1caa64c1488643bffdf04495106fa3247 | f944b4c5352be02623d2d7415c0806350f875114 | [Fiber] Fix context propagation into Suspense fallbacks (#36160)
## Summary
When a context value changes above a Suspense boundary that is showing
its fallback, context consumers inside the fallback do not re-render —
they display stale values.
`propagateContextChanges`, upon encountering a suspended Suspense
bounda... | [
{
"path": "packages/react-reconciler/src/ReactFiberNewContext.js",
"patch": "@@ -323,12 +323,23 @@ function propagateContextChanges<T>(\n renderLanes,\n workInProgress,\n );\n- if (!forcePropagateEntireTree) {\n- // During lazy propagation, we can defer propagating changes ... | 2026-03-27T22:04:53 |
vercel/next.js | 7e741b4207d714a94f0e62905f06c460e6ac867a | 48889ce4d5d3e1554bf247b9569089cc37a23118 | Handle `target` option in React Compiler for Pages + React 18 (#91500)
### Why?
`test/e2e/app-dir/catch-error/catch-error-react-compiler.test.ts` is
skipped in CI due to incompatibility with React 18 tests.
```
Module not found: Can't resolve 'react/compiler-runtime'
> 1 | import { c as _c } from "react/compiler-run... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -959,6 +959,13 @@ pub enum ReactCompilerPanicThreshold {\n AllErrors,\n }\n \n+#[turbo_tasks::value(shared, operation)]\n+#[derive(Clone, Debug, Serialize, Deserialize)]\n+pub enum ReactCompilerTarget {\n+ #[serde(rename = \"18\")]\n+ R... | 2026-04-09T15:21:29 |
golang/go | b67dcb53be7f779cbea922688bf336fad6adc24d | 86241330242b57fd73f13014556cbd7ba4c1c1bc | crypto/internal/fips140/edwards25519: fix zero coeff. skip optimization
This was reported first by Adrian Grigore in private and then by
github.com/shaharcohen1 in FiloSottile/edwards25519#53.
fips140: off
goos: linux
goarch: amd64
pkg: crypto/internal/fips140/edwards25519
cpu: AMD EPYC 7443P 24-Core Processor
... | [
{
"path": "src/crypto/internal/fips140/edwards25519/scalarmult.go",
"patch": "@@ -167,10 +167,11 @@ func (v *Point) VarTimeDoubleScalarBaseMult(a *Scalar, A *Point, b *Scalar) *Poi\n \n \t// Find the first nonzero coefficient.\n \ti := 255\n-\tfor j := i; j >= 0; j-- {\n-\t\tif aNaf[j] != 0 || bNaf[j] != 0 ... | 2026-02-15T19:52:50 |
nodejs/node | 68e5f873aaf084cd627a9e6bf0fe6e4e76d0208d | 511a57a17960013de48f4c6c3faf9a12e8b09e46 | stream: propagate destruction in duplexPair
Ensure destroying one side of a duplexPair triggers destruction of the
other side via process.nextTick(). Only the destruction signal is sent
to avoid breaking changes.
Fixes: https://github.com/nodejs/node/issues/61015
PR-URL: https://github.com/nodejs/node/pull/61098
Revi... | [
{
"path": "lib/internal/streams/duplexpair.js",
"patch": "@@ -50,13 +50,37 @@ class DuplexSide extends Duplex {\n this.#otherSide.on('end', callback);\n this.#otherSide.push(null);\n }\n+\n+\n+ _destroy(err, callback) {\n+ const otherSide = this.#otherSide;\n+\n+ if (otherSide !== null && !... | 2026-04-07T17:51:49 |
electron/electron | 044be7ce40205320daf170c1ea012e30dc529dcb | 7245c6a3f0bc8d9c0a3ec132eb29c5b5efcea1ba | fix: avoid crash in `window.print()` when prefilling native print dialog (#50843)
fix: avoid crash in window.print() when prefilling native print dialog
When UpdatePrinterSettings() fails (e.g. the printer rejects the
requested resolution), OnError() nullifies print_info_ via
ReleaseContext(). The return value was no... | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -620,7 +620,7 @@ index 2a477e820d9f0126a05f86cd44f02c2189275bad..a2e9442ff9f5acf8e301f457b1806251\n \n #if BUILDFLAG(IS_CHROMEOS)\n diff --git a/chrome/browser/printing/printer_query_oop.cc b/chrome/browser/printing/printer_query_oop.cc\n-index dc2... | 2026-04-09T17:14:36 |
facebook/react | f944b4c5352be02623d2d7415c0806350f875114 | 677818e4a2261e318bb9c0bd0c5c8ba05fcd1880 | Fix typos in comments (#35701)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please make sure the followin... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -4062,7 +4062,7 @@ export function registerSuspenseInstanceRetry(\n instance.data !== SUSPENSE_PENDING_START_DATA ||\n // The boundary is still in pending status but the document has finished loading\n // bef... | 2026-03-27T21:55:10 |
golang/go | 6c087a167e562242d21c702b2b66fc8329a14322 | 15da1c91cd35ccf8129464ee10997622eac7cdc5 | net: remove always-nil newFD error return value
newFD never returns an error on any of the platforms that define it.
Drop the always-nil error to simplify callers.
Change-Id: I727e95a0dac51ef70497ea1295276a8a6dce7f08
Reviewed-on: https://go-review.googlesource.com/c/go/+/764620
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/net/fd_plan9.go",
"patch": "@@ -27,7 +27,7 @@ type netFD struct {\n \n var netdir = \"/net\" // default network\n \n-func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) (*netFD, error) {\n+func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) *net... | 2026-04-09T14:07:19 |
vercel/next.js | 48889ce4d5d3e1554bf247b9569089cc37a23118 | 9aed3b1f0a2ed193d115c05f582c05bf86767466 | fix(hmr): reconnect WebSocket after sleep/wake (#91416)
## Summary
When a computer sleeps and wakes, the `/_next/hmr` WebSocket connection
can silently become stale. The current code relies entirely on
`onclose`/`onerror` events, but:
- `onclose` may fire late or not at all after sleep/wake — the TCP
connection is d... | [
{
"path": "packages/next/src/client/dev/hot-reloader/app/web-socket.ts",
"patch": "@@ -121,7 +121,7 @@ export function createWebSocket(\n newWebSocket.close()\n reconnections++\n \n- // After 25 reconnects we'll want to reload the page as it indicates the dev server is no longer running.\n+... | 2026-04-09T15:05:03 |
nodejs/node | f48ac918942bcf468d9e893af55b78049582cdbd | fffd9c6524d8805e3dba76926127c8cbbfaa8c18 | test: use on-disk fixture for test-npm-install
Instead of writing the fixtures on the fly in the test,
put them in the fixtures directory that can be copied into
a temporary directory to reproduce in a debugger.
Signed-off-by: Joyee Cheung <joyeec9h3@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62584
Refs: ... | [
{
"path": "test/fixtures/npm-install/example/example.js",
"patch": "@@ -0,0 +1 @@\n+exports.value = 42;",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/fixtures/npm-install/example/package.json",
"patch": "@@ -0,0 +1,5 @@\n+{\n+ \"name\": \"example\",\n... | 2026-04-07T01:38:13 |
electron/electron | b484b0bde9614f517fb26ab2317d4ecac0e7790c | 6c8a910232d1c76b668b69dc20afee054d2e1796 | fix: fix inset and stop using `gfx::ToFlooredRectDeprecated()` (#50809)
fix: fix inset and stop using ToFlooredRectDeprecated() | [
{
"path": "shell/browser/ui/views/win_frame_view.cc",
"patch": "@@ -106,29 +106,19 @@ int WinFrameView::NonClientHitTest(const gfx::Point& point) {\n if (SUCCEEDED(DwmGetWindowAttribute(\n views::HWNDForWidget(frame()), DWMWA_CAPTION_BUTTON_BOUNDS,\n &button_bounds, sizeof(button... | 2026-04-09T14:55:11 |
facebook/react | 677818e4a2261e318bb9c0bd0c5c8ba05fcd1880 | 2233b7d7281fea5beec815cf5af9593d2b80f68d | Fix typos in tests and comments (#35627)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please make sure th... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/Logger-test.ts",
"patch": "@@ -10,7 +10,7 @@ import invariant from 'invariant';\n import {runBabelPluginReactCompiler} from '../Babel/RunReactCompilerBabelPlugin';\n import type {Logger, LoggerEvent} from '../Entrypoint';\n \n-it('logs s... | 2026-03-27T21:53:32 |
golang/go | 15da1c91cd35ccf8129464ee10997622eac7cdc5 | e122bcdc9d567c21a72ba5851488edbd073d7bfe | cmd/go/internal/modload: fix logged filename for 'go mod init -modfile'
Fix 'go mod init -modfile=tools.mod module' which prints
'creating new go.mod' instead of 'creating new tools.mod'.
Note that -modfile already works, but isn't yet documented
and this is the subject of proposal #78503, so this patch is the minima... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1203,7 +1203,11 @@ func CreateModFile(ld *Loader, ctx context.Context, modPath string) {\n \t}\n \tcheckModulePath(modPath)\n \n-\tfmt.Fprintf(os.Stderr, \"go: creating new go.mod: module %s\\n\", modPath)\n+\tif cfg.ModFile != \"\" {\n+\t\tfmt.... | 2026-04-02T11:06:28 |
vercel/next.js | 9aed3b1f0a2ed193d115c05f582c05bf86767466 | 87e8b297007543096bb168b4ff8939ea36eec86a | [test] Ensure incomplete minimum release age isn't propagated to fixture installs (#92568) | [
{
"path": "test/lib/create-next-install.js",
"patch": "@@ -27,7 +27,17 @@ async function installDependencies(cwd, tmpDir) {\n await execa('pnpm', args, {\n cwd,\n stdio: ['ignore', 'inherit', 'inherit'],\n- env: process.env,\n+ env: {\n+ ...process.env,\n+ // pnpm reads this despit... | 2026-04-09T14:37:58 |
electron/electron | cc3d4f5f5802a2e077ab53a061cb0064992d5621 | b711ce7b04597cf953884a67a6b2a55336992cd8 | fix: PDF support when site isolation trials disabled (#50689)
* fix: use proper OOPIF PDF check in `StreamsPrivateAPI`
* fix: add `ShouldEnableSubframeZoom` override to `ElectronBrowserClient` for upstream parity
* fix: add `MaybeOverrideLocalURLCrossOriginEmbedderPolicy` override to `ElectronBrowserClient` for upst... | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -63,6 +63,7 @@\n #include \"mojo/public/cpp/bindings/self_owned_associated_receiver.h\"\n #include \"net/ssl/ssl_cert_request_info.h\"\n #include \"net/ssl/ssl_private_key.h\"\n+#include \"pdf/pdf_features.h\"\n #include \"printing/buildflag... | 2026-04-09T13:35:26 |
facebook/react | 2233b7d7281fea5beec815cf5af9593d2b80f68d | ba833da405d44260e94bd47c13eec90816bf44f1 | Fix typos: explicitlyu->explicitly, intialized->initialized (#35621)
Fixed spelling errors:
- Fixed 'explicitlyu' -> 'explicitly' in compiler/CLAUDE.md
- Fixed 'intialized' -> 'initialized' in InferReactiveScopeVariables.ts
(comment)
- Fixed 'intialized' -> 'initialized' in InferMutationAliasingEffects.ts
(error messa... | [
{
"path": "compiler/CLAUDE.md",
"patch": "@@ -76,7 +76,7 @@ yarn snap minimize --update <path>\n \n ## Version Control\n \n-This repository uses Sapling (`sl`) for version control. Sapling is similar to Mercurial: there is not staging area, but new/deleted files must be explicitlyu added/removed.\n+This rep... | 2026-03-27T21:52:23 |
nodejs/node | 89cc85ce9835fad9347dcdd10be5a143597167f1 | d581ead03200fb12acbf90d775f7bc7f77037eea | doc: update bug bounty program
https://nodejs.org/en/blog/announcements/discontinuing-security-bug-bounties
PR-URL: https://github.com/nodejs/node/pull/62590
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Rev... | [
{
"path": "SECURITY.md",
"patch": "@@ -24,9 +24,7 @@ response or engagement within 14 days, escalation is also appropriate.\n \n ### Node.js bug bounty program\n \n-The Node.js project engages in an official bug bounty program for security\n-researchers and responsible public disclosures. The program is ma... | 2026-04-06T18:49:18 |
vercel/next.js | 87e8b297007543096bb168b4ff8939ea36eec86a | ccc8c062661c1baf5bf5e05a1a0852e1c772be67 | Turbopack: Improve unable to resolve next error (#91394)
## What
Improves the error message shown when Turbopack cannot resolve the
`next` package. The issue now includes the filesystem root used for
resolution, making it easier to diagnose misconfigured `turbopack.root`
settings.
## Why
When `next` can't be resolv... | [
{
"path": "crates/next-core/src/next_import_map.rs",
"patch": "@@ -1223,6 +1223,7 @@ pub async fn get_next_package(context_directory: FileSystemPath) -> Result<FileS\n #[turbo_tasks::value(shared)]\n struct MissingNextFolderIssue {\n path: FileSystemPath,\n+ root: FileSystemPath,\n }\n \n #[turbo_tas... | 2026-04-09T13:48:49 |
golang/go | e122bcdc9d567c21a72ba5851488edbd073d7bfe | c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf | cmd/go: respect -short flag when documenting individual symbols
The -short flag was ignored when documenting individual symbols (functions,
types, or variables) with "go doc -short package.symbol". This change adds
short flag checks to symbolDoc, typeDoc, and valueDoc functions.
Fixes #77192
Change-Id: I66935ceb5ffb... | [
{
"path": "src/cmd/go/internal/doc/pkg.go",
"patch": "@@ -808,9 +808,14 @@ func (pkg *Package) symbolDoc(symbol string) bool {\n \tfor _, fun := range pkg.findFuncs(symbol) {\n \t\t// Symbol is a function.\n \t\tdecl := fun.Decl\n+\t\tfound = true\n+\t\tif short {\n+\t\t\tpkg.Printf(\"%s\\n\", pkg.oneLineNo... | 2026-04-08T15:07:16 |
facebook/react | ba833da405d44260e94bd47c13eec90816bf44f1 | 3cb2c42013eda273ac449126ab9fcc115a09d39d | Fix typo: accomodate -> accommodate (#35623)
Fixed spelling error in comment:
- Fixed 'accomodate' -> 'accommodate' in InferMutationAliasingEffects.ts
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts",
"patch": "@@ -1315,7 +1315,7 @@ class InferenceState {\n #values: Map<InstructionValue, AbstractValue>;\n /*\n * The set of values pointed to by each identifier. This is a set\n- * to accomodate... | 2026-03-27T21:51:37 |
nodejs/node | 4f08c6478d6ecd073c03536b8a6c473232e16c37 | d93935bf72a18ead8f35dc32f31746b96c4b970e | inspector: return errors when CDP protocol event emission fails
PR-URL: https://github.com/nodejs/node/pull/62162
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> | [
{
"path": "src/inspector/dom_storage_agent.cc",
"patch": "@@ -17,18 +17,26 @@ using v8::Local;\n using v8::Object;\n using v8::Value;\n \n+static void ThrowEventError(v8::Isolate* isolate, const std::string& message) {\n+ isolate->ThrowException(v8::Exception::TypeError(\n+ v8::String::NewFromUtf8(iso... | 2026-04-06T08:18:14 |
electron/electron | b711ce7b04597cf953884a67a6b2a55336992cd8 | adf9a6e3030a40475125afe395f41ac6113080a7 | chore: remove window enlargement revert patch (#50612)
* chore: remove window enlargement revert patch
Chromium removed the `window_enlargement_` system from
DesktopWindowTreeHostWin (1771dbae), which was a workaround for an AMD
driver bug from 2013 (crbug.com/286609) where translucent HWNDs smaller
than 64x64 caused... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -125,7 +125,6 @@ feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n-reve... | 2026-04-09T13:34:10 |
golang/go | c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf | b3c54d2e597ee67939f9abc2ec8aaca841fb1138 | cmd/internal/tesdir: fix Test/codegen/switch on loong64
loong64 uses ALSLV the compute the lookup index.
Fixes #78575
Change-Id: Ied90a4f811cc19ffec4d304333546d1fa430ccc0
Reviewed-on: https://go-review.googlesource.com/c/go/+/764180
Reviewed-by: abner chenc <chenguoqi@loongson.cn>
Reviewed-by: Keith Randall <khr@gol... | [
{
"path": "test/codegen/switch.go",
"patch": "@@ -134,7 +134,6 @@ func floatLookup(x int) float64 {\n func stringLookup(x int) string {\n \t// amd64:`LEAQ .*\\(SB\\)` -`JMP \\(.*\\)\\(.*\\)$`\n \t// arm64:-`JMP \\(R.*\\)$`\n-\t// loong64:-`ALSLV`\n \tswitch x {\n \tcase 1:\n \t\treturn \"a\"\n@@ -161,7 +160... | 2026-04-08T16:14:28 |
vercel/next.js | ddbd288f5d013ce027b2d0f0d6c5601e2cad1b7f | 151a9bb4cd4139abc849f80c774cbcbe4f5b1e55 | fix: scope "Pages Router only" comment to default export in next/error (#92566)
### What?
Clarifies the misleading `// Pages Router only` comment at the top of
`packages/next/error.d.ts` and `packages/next/src/api/error.ts`.
### Why?
The blanket comment implies the entire `next/error` module is Pages
Router only. H... | [
{
"path": "packages/next/error.d.ts",
"patch": "@@ -1,4 +1,4 @@\n-// Pages Router only\n+// Default export is Pages Router only\n import Error from './dist/api/error'\n export * from './dist/api/error'\n export default Error",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"p... | 2026-04-09T13:04:34 |
facebook/react | c0c29e89066df60c8340d4e853d38b5843c165ab | c0d218f0f3e02ed581f74096e56baa947213135d | Fix typos in the documentation (#35439)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please make sure the... | [
{
"path": "compiler/docs/DESIGN_GOALS.md",
"patch": "@@ -8,7 +8,7 @@ The idea of React Compiler is to allow developers to use React's familiar declar\n \n * Bound the amount of re-rendering that happens on updates to ensure that apps have predictably fast performance by default.\n * Keep startup time neutra... | 2026-03-24T23:09:59 |
electron/electron | adf9a6e3030a40475125afe395f41ac6113080a7 | 6744293e9631f3b32da167cb3d856517190de414 | fix: restore std::deque for dynamic crash key storage (#50795)
#47171 migrated `std::deque` to `base::circular_deque` in
`shell/common/crash_keys.cc`. However, `CrashKeyString` wraps a
`crashpad::Annotation` that holds self-referential pointers and
registers itself in a process-global linked list. `circular_deque`
rel... | [
{
"path": "shell/common/crash_keys.cc",
"patch": "@@ -5,11 +5,11 @@\n #include \"shell/common/crash_keys.h\"\n \n #include <cstdint>\n+#include <deque>\n #include <map>\n #include <string>\n \n #include \"base/command_line.h\"\n-#include \"base/containers/circular_deque.h\"\n #include \"base/environment.h\"... | 2026-04-09T08:50:32 |
nodejs/node | e7759896bc2d4ad5f91d184bf62f30c7302ba910 | 12249ccadc4964c9497a07be94c1764d4717da64 | src: add contextify interceptor debug logs
PR-URL: https://github.com/nodejs/node/pull/62460
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/debug_utils-inl.h",
"patch": "@@ -62,6 +62,25 @@ struct ToStringHelper {\n static std::string Convert(const std::string& value) { return value; }\n static std::string_view Convert(std::string_view value) { return value; }\n static std::string Convert(bool value) { return value ? \"true\... | 2026-04-05T22:31:13 |
facebook/react | c0d218f0f3e02ed581f74096e56baa947213135d | ed69815cebae33b0326cc69faa90f813bb924f3b | Fix useDeferredValue getting stuck (#36134)
Fixes https://github.com/facebook/react/issues/35821
Written/debugged by Claude.
## Test Plan
- Verify undoing the source fix fails the newly added test
- Verify building a bundle with the fix solves
https://github.com/gaearon/react-udv-bug/ repro | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.js",
"patch": "@@ -5040,6 +5040,13 @@ function pingSuspendedRoot(\n // the special internal exception that we use to interrupt the stack for\n // selective hydration. That was temporarily reverted but we once we add\n // it ... | 2026-03-24T00:49:05 |
vercel/next.js | 9784724934424e0b9ac5624e51ed3afec35df7a2 | 5b1c98e5d8c1560feef4618db85e326f8c8b40ec | Request logging: Fix generate-params time being included in next.js time (#91386)
## What?
The time running generateStaticParams / getStaticPaths was incorrectly
included both in `next.js` and `generate-params` labels. This PR fixes
that by subtracting the generate-params time from the next.js time. | [
{
"path": "packages/next/src/server/dev/log-requests.ts",
"patch": "@@ -125,6 +125,9 @@ function logIncomingRequests(\n if (middlewareTime) {\n frameworkTime -= middlewareTime\n }\n+ if (devGenerateStaticParamsDuration) {\n+ frameworkTime -= devGenerateStaticParamsDuration\n+ }\n ... | 2026-04-09T12:18:52 |
rust-lang/rust | d024e5762f188ac90f79c7b8030315c854666cb5 | 118edea86f591becd1a24c16b32feb0d90ddb88c | Fix if branch in op.rs | [
{
"path": "compiler/rustc_hir_typeck/src/op.rs",
"patch": "@@ -294,24 +294,26 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n self.apply_adjustments(lhs_expr, vec![autoref]);\n }\n \n- if let ty::Ref(_, _, mutbl) = method.sig.inputs()[1].kind() {\n- ... | 2026-04-09T14:12:51 |
electron/electron | 6744293e9631f3b32da167cb3d856517190de414 | 0d3342debf2e095cdb8a3bfdc660db8109d0ef7a | fix: account for extraSize in aspect ratio min/max clamping on macOS (#50794)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window_delegate.mm",
"patch": "@@ -158,45 +158,43 @@ - (NSSize)windowWillResize:(NSWindow*)sender toSize:(NSSize)frameSize {\n windowSize.width() - contentSize.width() + extraSize.width();\n double extraHeightPlusFrame = titleBarHeight + extraSize.he... | 2026-04-09T08:50:17 |
golang/go | 455d4f41fb1c2bf48645b4904a8ee293272c90db | 996b985008c7615004c0dbe8b031928faff3c993 | cmd/compile: run CondSelect into math rules on all arches
Fixes #78558
I've also added tests to make sure PPC still generate ISEL when
the constant isn't 1.
This is to make sure we aren't generating a sequence that wouldn't
work right now.
But it does not mean we couldn't try to optimize other constants
on PPC64 if ... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2834,6 +2834,9 @@ func rewriteCondSelectIntoMath(config *Config, op Op, constant int64) bool {\n \t\t\t\treturn true\n \t\t\t}\n \t\t}\n+\tdefault:\n+\t\t// TODO: fine tune for other architectures.\n+\t\treturn constant == 1\n \t}\n \treturn... | 2026-04-07T09:57:56 |
facebook/react | b4546cd0d4db2b913d8e7503bee86e1844073b2e | 3f0b9e61c467cd6e09cac6fb69f6e8f68cd3c5d7 | [enableInfiniteRenderLoopDetection] Warn about potential infinite loop, instead of interrupting (#35999)
The `enableInfiniteRenderLoopDetection` feature flag is currently
disabled everywhere. When attempted to roll out this at Meta, we've
observed multiple false-positives, where counter-based approach would
interrupt ... | [
{
"path": "packages/react-dom/src/__tests__/ReactUpdates-test.js",
"patch": "@@ -1792,8 +1792,8 @@ describe('ReactUpdates', () => {\n expect(subscribers.length).toBe(limit);\n });\n \n- it(\"does not infinite loop if there's a synchronous render phase update on another component\", async () => {\n- ... | 2026-03-18T14:11:30 |
vercel/next.js | 766467e054bcfa213447736d8923792dac01f0b9 | 4e3f35b3f1df428cb59b5ef645033198d91297ee | docs: link updateTag from cacheTag reference (#92379)
### What?
Add [`updateTag`](/docs/app/api-reference/functions/updateTag) to the
`cacheTag` API page: a **Related** link and a **Good to know** bullet
that explains when to use it (read-your-own-writes / immediate expiry)
and points to [Differences from
`revalidateT... | [
{
"path": "docs/01-app/03-api-reference/04-functions/cacheTag.mdx",
"patch": "@@ -8,6 +8,7 @@ related:\n - app/api-reference/config/next-config-js/cacheComponents\n - app/api-reference/directives/use-cache\n - app/api-reference/functions/revalidateTag\n+ - app/api-reference/functions/updateTa... | 2026-04-09T11:33:57 |
nodejs/node | 12249ccadc4964c9497a07be94c1764d4717da64 | 1637db0eb22e8decd0916d299cadd24350df3a7b | deps: libuv: cherry-pick aabb7651de
Original commit message:
win: properly initialize OSVERSIONINFOW (#5107)
Otherwise calling `RtlGetVersion()` might produce UB. Problem was
causing random crashes in the node.js test suite with stack traces
like this one:
```
node.exe!__report_gsfailure(unsigned __int64... | [
{
"path": "deps/uv/src/win/tcp.c",
"patch": "@@ -56,6 +56,8 @@ static int minimal_windows10_version1709(void) {\n OSVERSIONINFOW os_info;\n if (!pRtlGetVersion)\n return 0;\n+ os_info.dwOSVersionInfoSize = sizeof(os_info);\n+ os_info.szCSDVersion[0] = L'\\0';\n pRtlGetVersion(&os_info);\n if (... | 2026-04-02T09:44:25 |
golang/go | 996b985008c7615004c0dbe8b031928faff3c993 | e67d773034fde21e6f726c4add5eeba5882198ae | cmd/compile: improve stp merging for non-sequent cases
Original algorithm merges stores with the first
mergeable store in the chain, but it misses some
cases. Additionally, creating list of STs, which
store data to adjacent memory cells allows merging them
according to the direction of increase of their addresses.
I ... | [
{
"path": "src/cmd/compile/internal/ssa/pair.go",
"patch": "@@ -320,10 +320,70 @@ func memoryBarrierTest(b *Block) bool {\n \treturn false\n }\n \n+// pairStores merges store instructions.\n+// It collects stores into a buffer where they can be freely reordered.\n+// When encountering an instruction that ca... | 2026-03-27T10:15:45 |
electron/electron | 4dfada86ce368583f83d09de2949e77f652f09d0 | df81a1d4acd78062f8afc4621133f8be2847efee | fix: menu items not cleaned up after rebuild (#50806)
Menu was holding a SelfKeepAlive to itself from construction, so any
Menu that was never opened (e.g. an application menu replaced before
being shown) stayed pinned in cppgc forever. Repeated calls to
Menu.setApplicationMenu leaked every prior Menu along with its m... | [
{
"path": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -276,6 +276,7 @@ void Menu::OnMenuWillClose() {\n }\n \n void Menu::OnMenuWillShow() {\n+ keep_alive_ = this;\n Emit(\"menu-will-show\");\n }\n ",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "shell... | 2026-04-09T02:56:39 |
vercel/next.js | 4e3f35b3f1df428cb59b5ef645033198d91297ee | 0895413804ca6fc8b9f215e55b5f8647c2994e82 | docs: update details about `unstable_retry()` behavior (#91827)
## Summary
- Updated the "Built-in error recovery" bullet in `catchError` docs to
say "retries rendering the error boundary's children with fresh data in
Server Components" instead of "re-fetches and re-renders the error
boundary's children, including Ser... | [
{
"path": "docs/01-app/03-api-reference/04-functions/catchError.mdx",
"patch": "@@ -12,7 +12,7 @@ The `unstable_catchError` function creates a component that wraps its children i\n \n Compared to a custom React error boundary, `unstable_catchError` is designed to work with Next.js out of the box:\n \n-- **B... | 2026-04-09T10:59:35 |
facebook/react | c80a07509582daadf275f36ffe7a88c3b12e9db4 | 8f4150605449efe909822d8b20fe529d85851afe | Fix focus set for delegated and already focused elements (#36010)
I found two focus bugs when working on documentation for Fragment Refs.
1) If an element delegates focus handling, it will return false from
setFocusIfFocusable even though a focus event has occured on a different
element. The fix for this is a documen... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -4520,18 +4520,30 @@ export function setFocusIfFocusable(\n //\n // We could compare the node to document.activeElement after focus,\n // but this would not handle the case where application code managed focus to a... | 2026-03-12T21:36:28 |
electron/electron | df81a1d4acd78062f8afc4621133f8be2847efee | c3e3958668cbc580fffed29bee44b74f056947ff | test: add `desktopCapturer` icon validation (#50261)
* chore: testing of desktopCapturer can run on arm
* fix: DesktopMediaListCaptureThread crash
Fixed a crash when Windows calls ::CoCreateInstance() in the
DesktopMediaListCaptureThread before COM is initialized.
* test: added test for desktopCapturer fetchWindowI... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -150,3 +150,4 @@ fix_use_fresh_lazynow_for_onendworkitemimpl_after_didruntask.patch\n fix_pulseaudio_stream_and_icon_names.patch\n fix_fire_menu_popup_start_for_dynamically_created_aria_menus.patch\n feat_allow_enabling_extensions_on_custom_protocols.patch... | 2026-04-08T18:56:27 |
golang/go | 7c5ab4118014acd1e7c0fc67028186a4985c0a28 | 5d6aa23e5b6151d25955a512532383c28c745e18 | net: document LookupSRV cname return value
Document that the first return value of LookupSRV is the canonical
name of the DNS target that was looked up, which may differ from
the input name due to CNAME records.
Fixes #49982
Change-Id: I574e0f5cdc381d3d9b11b5bd7a5acbea2c9e185d
GitHub-Last-Rev: 9c756d48d55587f373c7cf... | [
{
"path": "src/net/lookup.go",
"patch": "@@ -487,6 +487,11 @@ func (r *Resolver) LookupCNAME(ctx context.Context, host string) (string, error)\n // publishing SRV records under non-standard names, if both service\n // and proto are empty strings, LookupSRV looks up name directly.\n //\n+// The returned cnam... | 2026-02-09T02:43:54 |
facebook/react | 8f4150605449efe909822d8b20fe529d85851afe | 5e9eedb57843dc161defdf93ed457ab7d982e324 | [DevTools] fix: don't show empty suspended by section (#36011)
The potential paddings and margins for the empty block are already
handled via CSS selectors. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js",
"patch": "@@ -584,6 +584,9 @@ export default function InspectedElementSuspendedBy({\n break;\n }\n \n+ if (groups.length === 0) {\n+ return null;\n+ }\n return (\n <div>\n <div c... | 2026-03-12T21:19:21 |
nodejs/node | dec597354bd5e6cee40d71bd64e15bdb8de62cf6 | a3108ff65c6f3e658e3dcfc50412b71f10789f7d | crypto: implement randomUUIDv7()
Signed-off-by: nabeel378 <mohammadnabeeljameel@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/62553
Fixes: https://github.com/nodejs/node/issues/62529
Refs: https://datatracker.ietf.org/doc/html/rfc9562#name-uuid-version-7
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -5826,6 +5826,25 @@ added:\n Generates a random [RFC 4122][] version 4 UUID. The UUID is generated using a\n cryptographic pseudorandom number generator.\n \n+### `crypto.randomUUIDv7([options])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `options` {Object}\n+... | 2026-04-05T10:12:21 |
vercel/next.js | 0895413804ca6fc8b9f215e55b5f8647c2994e82 | 2800d2a7af85ba28c75a447d418563e98a885a57 | Add next internal upload-trace (#92191)
### What?
Adds `next internal upload-trace` CLI command for uploading CPU profiles
and Turbopack traces to Vercel Blob storage.
### Why?
When investigating performance issues, the Next.js team often needs CPU
profiles and Turbopack traces from contributors and bug reporters.
... | [
{
"path": "packages/next/package.json",
"patch": "@@ -219,6 +219,7 @@\n \"@types/webpack-sources1\": \"npm:@types/webpack-sources@0.1.5\",\n \"@types/ws\": \"8.2.0\",\n \"@vercel/ncc\": \"0.34.0\",\n+ \"@vercel/blob\": \"2.3.2\",\n \"@vercel/nft\": \"0.27.1\",\n \"@vercel/routing-util... | 2026-04-09T09:14:05 |
rust-lang/rust | dac2e3eedff676e2af79632a730cf4956fffdb49 | 37cfa179be19cec2236736521bed3ea3c4a1ec97 | Fix cycles during delayed lowering | [
{
"path": "compiler/rustc_ast_lowering/src/delegation.rs",
"patch": "@@ -437,6 +437,7 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n // also nested delegations may need to access information about this code (#154332),\n // so it is better to leave thi... | 2026-04-09T12:13:50 |
electron/electron | c3e3958668cbc580fffed29bee44b74f056947ff | afd5fb4a608ce333a9301c5902912434e9509b0d | fix: devtools re-attaches on open when previously detached (#50807)
PR #50646 added a dock state allowlist in SetDockState() that collapsed any
non-matching value to "right". WebContents::OpenDevTools passes an empty
string when no `mode` option is given, which is the sentinel LoadCompleted()
uses to restore `currentD... | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -402,7 +402,7 @@ void InspectableWebContents::SetDockState(const std::string& state) {\n can_dock_ = false;\n } else {\n can_dock_ = true;\n- dock_state_ = IsValidDockState(state) ? state : \"right\";\n+ dock_state_ = (st... | 2026-04-08T17:36:47 |
golang/go | 5d6aa23e5b6151d25955a512532383c28c745e18 | 352d76b2912b20ede8b3238fc2ed7b697bc2695b | cmd/go: use MkdirTemp to create temp directory for "go bug"
Don't use a predictable, potentially attacker-controlled filename in /tmp.
Fixes #78584
Fixes CVE-2026-39819
Change-Id: I72116aa6dd8fa50f65b6dc0292a15a8c6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/763882
Reviewed-by: Nicholas Husin <husi... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -184,14 +184,14 @@ func firstLine(buf []byte) []byte {\n // printGlibcVersion prints information about the glibc version.\n // It ignores failures.\n func printGlibcVersion(w io.Writer) {\n-\ttempdir := os.TempDir()\n-\tif tempdir == \"\" {\n+\ttempdi... | 2026-04-08T16:55:54 |
facebook/react | 5e9eedb57843dc161defdf93ed457ab7d982e324 | 1e3152365df2f7a23a5ad947e83f40914413be16 | [Flight] Clear chunk reason after successful module initialization (#36024)
When `requireModule` triggers a reentrant `readChunk` on the same module
chunk, the reentrant call can fail and set `chunk.reason` to an error.
After the outer `requireModule` succeeds, the chunk transitions to
initialized but retains the stal... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1040,6 +1040,8 @@ function initializeModelChunk<T>(chunk: ResolvedModelChunk<T>): void {\n // Initialize any debug info and block the initializing chunk on any\n // unresolved entries.\n initializeDebugChunk(response, chun... | 2026-03-12T18:17:24 |
nodejs/node | a3108ff65c6f3e658e3dcfc50412b71f10789f7d | 4b3d82c71d2aa75f9c881cb765dded3e0eb7c3f4 | doc: document TransformStream transformer.cancel option
Add documentation for the `cancel` option of the `TransformStream`
transformer, which allows users to specify a callback that will be
called when the stream is canceled.
See: https://streams.spec.whatwg.org/#transformer-api
Fixes: https://github.com/nodejs/node/... | [
{
"path": "doc/api/webstreams.md",
"patch": "@@ -1148,6 +1148,12 @@ await Promise.all([\n \n <!-- YAML\n added: v16.5.0\n+changes:\n+ - version:\n+ - v21.5.0\n+ - v20.14.0\n+ pr-url: https://github.com/nodejs/node/pull/50126\n+ description: Supports the `cancel` transformer callback.\n -->\n \n... | 2026-04-04T20:17:43 |
vercel/next.js | 2800d2a7af85ba28c75a447d418563e98a885a57 | 71228c496310833a770aa063ba792ba107d62bea | turbo-tasks-backend: prevent duplicate task restores with restoring bits (#92389)
### What?
Adds `data_restoring` and `meta_restoring` transient flag bits to
`TaskStorage`, a shared `restored: Event` on `Storage`, and a
synchronous `EventListener::wait()` primitive. These are used to
coordinate concurrent restore att... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1563,10 +1563,11 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // We're creating a new task.\n let task_type = Arc::new(task_type);\n let task_id = self.p... | 2026-04-09T07:31:14 |
golang/go | 1ea7966042731bae941511fb2b261b9536ad268f | 22f65d37c46d8eb087d764a734693d0abe39080f | crypto/tls: prevent deadlock when client sends multiple key update messages
When we made setReadTrafficSecret send an alert when there are pending
handshake messages, we introduced a deadlock when the client sends
multiple key update messages that request a response, as handleKeyUpdate
will lock the mutex, and defer t... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -1362,7 +1362,7 @@ func (c *Conn) handleKeyUpdate(keyUpdate *keyUpdateMsg) error {\n \t}\n \n \tnewSecret := cipherSuite.nextTrafficSecret(c.in.trafficSecret)\n-\tif err := c.setReadTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret); err != nil... | 2026-03-23T18:54:41 |
nodejs/node | bf1aebcc37d97ed7073cf1e4aaf313568128aa0b | 3bb416cfd75cff8a95f4d70cf8a9096e35f41a79 | http: add req.signal to IncomingMessage
PR-URL: https://github.com/nodejs/node/pull/62541
Fixes: https://github.com/nodejs/node/issues/62481
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -2989,6 +2989,51 @@ added: v0.5.9\n \n Calls `message.socket.setTimeout(msecs, callback)`.\n \n+### `message.signal`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Type: {AbortSignal}\n+\n+An {AbortSignal} that is aborted when the underlying socket closes or the\n+r... | 2026-04-04T09:24:22 |
facebook/react | a74302c02d220e3663fcad5836cb90607fc2d006 | bae6dd09fb9b08fc4387a9f649d9d1ef9ad1a9e6 | Bump undici from 6.21.2 to 6.23.0 in /compiler (#35512)
Bumps [undici](https://github.com/nodejs/undici) from 6.21.2 to 6.23.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/nodejs/undici/releases">undici's
releases</a>.</em></p>
<blockquote>
<h2>v6.23.0</h2>
<h2>⚠️ Securit... | [
{
"path": "compiler/yarn.lock",
"patch": "@@ -10525,7 +10525,16 @@ string-length@^4.0.1:\n char-regex \"^1.0.2\"\n strip-ansi \"^6.0.0\"\n \n-\"string-width-cjs@npm:string-width@^4.2.0\", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:\n+\"string-width-cjs@npm:string-width@^4.2.0\":\n... | 2026-03-12T15:40:37 |
vercel/next.js | fd3404504e7bbbb701e03562928c4c1c72439995 | de353278be4a6208e37f4a4c9f6f17980e3346ee | Fix React18 tests for unstable_io (#92543)
The last attempt to skip tests doesn't work because there is a failure
to build. This strategy takes the fixture and only conditionally calls
`use` if it exists | [
{
"path": "test/e2e/app-dir/unstable-io/fixtures/cache-components/pages/pages-use.tsx",
"patch": "@@ -2,7 +2,9 @@ import React from 'react'\n import { unstable_io } from 'next/cache'\n \n export default function PagesUse() {\n- React.use(unstable_io())\n+ if (typeof React.use === 'function') {\n+ React... | 2026-04-08T22:16:03 |
electron/electron | afd5fb4a608ce333a9301c5902912434e9509b0d | 8679522922c338ce99768c9743a64a7bfc9d1a89 | chore: bump chromium to 148.0.7778.0 (main) (#50769)
* chore: bump chromium in DEPS to 148.0.7776.0
* chore: bump chromium in DEPS to 148.0.7778.0
* fix(patch): buffered_data_source_host_impl include added upstream
Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7712714
Co-Authored-By: Claude <svc-d... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7768.0',\n+ '148.0.7778.0',\n 'node_version':\n 'v24.14.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2026-04-08T17:34:24 |
vercel/next.js | 7ac71949ab463a9603f7d1bad7e90c50061c716e | 96f759d89b2d0c009bafa1c972119b4e8eba6004 | Turbopack: switch from immutable token to path prefix (#92164) | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1590,6 +1590,11 @@ impl Project {\n root_path: self.project_root_path().owned().await?,\n client_root: self.client_relative_path().owned().await?,\n client_root_to_root_path: rcstr!(\"/ROOT\"),\n+ client... | 2026-04-08T20:54:08 |
golang/go | 22f65d37c46d8eb087d764a734693d0abe39080f | f5b77a7e2fa0f7ff346c665974a8eded367b1bc2 | cmd/go: disallow cgo trust boundary bypass
The cgo compiler implicitly trusts generated files
with 'cgo' prefixes; thus, SWIG files containing 'cgo'
in their names will cause bypass of the trust boundary,
leading to code smuggling or arbitrary code execution.
The cgo compiler will now produce an error if it
encounter... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -3463,6 +3463,10 @@ func (b *Builder) swigIntSize(objdir string) (intsize string, err error) {\n \n // Run SWIG on one SWIG input file.\n func (b *Builder) swigOne(a *Action, file, objdir string, pcCFLAGS []string, cxx bool, intgosize string) error ... | 2026-02-24T23:05:34 |
facebook/react | bae6dd09fb9b08fc4387a9f649d9d1ef9ad1a9e6 | 96005e445c4c6df5f222cc62d0327d4a389c339f | Bump qs from 6.4.0 to 6.4.1 in /fixtures/packaging/webpack-alias/dev (#35505)
Bumps [qs](https://github.com/ljharb/qs) from 6.4.0 to 6.4.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ljharb/qs/blob/main/CHANGELOG.md">qs's
changelog</a>.</em></p>
<blockquote>
<h2><strong>6.4.... | [
{
"path": "fixtures/packaging/webpack-alias/dev/yarn.lock",
"patch": "@@ -936,8 +936,8 @@ punycode@^1.2.4, punycode@^1.4.1:\n resolved \"https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e\"\n \n qs@~6.4.0:\n- version \"6.4.0\"\n- resolved \"https://regist... | 2026-03-12T15:40:22 |
nodejs/node | e419afd50c6bc8c6d41188f1affda3a3ef662267 | b411f904135bee50ddd1658719ede70db991579f | module,win: fix long subpath import
Fixes: https://github.com/nodejs/node/issues/62043
PR-URL: https://github.com/nodejs/node/pull/62101
Fixes: https://github.com/nodejs/node/issues/62043
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": "src/node_modules.cc",
"patch": "@@ -425,8 +425,16 @@ void BindingData::GetPackageScopeConfig(\n url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std::nullopt);\n return;\n }\n+ BufferValue file_path_buf(realm->isolate(),\n+ String::NewFro... | 2026-04-03T10:25:26 |
electron/electron | 8679522922c338ce99768c9743a64a7bfc9d1a89 | 0828de3ccd92c0d30d2d8c02ef24c56244891e24 | chore: iwyu commonly-included headers in shell/ (#50778)
* chore: iwyu in shell/browser/api/electron_api_web_contents.h
* chore: iwyu in shell/browser/browser.h
* chore: iwyu in shell/browser/javascript_environment.h
* chore: iwyu in shell/common/gin_hhelper/function_template.h
* chore: do not include node_include... | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -77,6 +77,7 @@\n #include \"shell/common/gin_helper/dictionary.h\"\n #include \"shell/common/gin_helper/error_thrower.h\"\n #include \"shell/common/gin_helper/object_template_builder.h\"\n+#include \"shell/common/gin_helper/promise.h\"\n #inclu... | 2026-04-08T14:33:42 |
rust-lang/rust | d383daa8f8bffdf5524775ababba274bf942575b | c254d427345a3a72cef7fa9a18d00e3ce1f62a69 | Disable the fix for missing-fields when the fields are private | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/diagnostics.rs",
"patch": "@@ -282,7 +282,7 @@ pub struct MissingFields {\n pub file: HirFileId,\n pub field_list_parent: AstPtr<Either<ast::RecordExpr, ast::RecordPat>>,\n pub field_list_parent_path: Option<AstPtr<ast::Path>>,\n- pub missed_f... | 2026-04-06T23:43:09 |
golang/go | f5b77a7e2fa0f7ff346c665974a8eded367b1bc2 | 3985ca0b6264835c049e601900a8072b5d1b13b4 | cmd/compile: fix loopbce overflow check logic
addWillOverflow and subWillOverflow has an implicit assumption that y is
positive, using it outside of addU and subU is really incorrect. This CL
fixes those incorrect usage to use the correct logic in place.
Thanks to Jakub Ciolek for reporting this issue.
Fixes #78333
... | [
{
"path": "src/cmd/compile/internal/ssa/loopbce.go",
"patch": "@@ -235,9 +235,11 @@ nextblock:\n \t\t\t\t\t\t\tif init.AuxInt > v {\n \t\t\t\t\t\t\t\treturn false\n \t\t\t\t\t\t\t}\n+\t\t\t\t\t\t\t// TODO(1.27): investigate passing a smaller-magnitude overflow limit to addU\n+\t\t\t\t\t\t\t// for addWillOve... | 2026-03-06T00:03:45 |
facebook/react | 96005e445c4c6df5f222cc62d0327d4a389c339f | b5f01787949b3619ef178a2574b54e2c1043910d | Bump qs from 6.4.0 to 6.4.1 in /fixtures/packaging/webpack/prod (#35432)
Bumps [qs](https://github.com/ljharb/qs) from 6.4.0 to 6.4.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ljharb/qs/blob/main/CHANGELOG.md">qs's
changelog</a>.</em></p>
<blockquote>
<h2><strong>6.4.1</st... | [
{
"path": "fixtures/packaging/webpack/prod/yarn.lock",
"patch": "@@ -936,8 +936,8 @@ punycode@^1.2.4, punycode@^1.4.1:\n resolved \"https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e\"\n \n qs@~6.4.0:\n- version \"6.4.0\"\n- resolved \"https://registry.ya... | 2026-03-12T15:38:41 |
nodejs/node | 8ee5b26f866be79d7c54aced47a0fbd2be524d90 | 5ff1eab951cf9814e1706f2f179fd5a80bed4d0f | deps: V8: backport bef0d9c1bc90
Original commit message:
[api] Add V8::GetWasmMemoryReservationSizeInBytes()
When the system does not have enough virtual memory for the wasm
cage, installing the trap handler would cause any code allocating
wasm memory to throw. Therefore it's useful for the embedder ... | [
{
"path": "deps/v8/include/v8-initialization.h",
"patch": "@@ -253,6 +253,35 @@ class V8_EXPORT V8 {\n static size_t GetSandboxReservationSizeInBytes();\n #endif // V8_ENABLE_SANDBOX\n \n+ enum class WasmMemoryType {\n+ kMemory32,\n+ kMemory64,\n+ };\n+\n+ /**\n+ * Returns the virtual address ... | 2026-03-05T19:22:01 |
vercel/next.js | 96f759d89b2d0c009bafa1c972119b4e8eba6004 | cd01ca9a329f997d9e699770778003a1ddf128c4 | CI: Fix issue with conflicting 'engines.pnpm' field in next-stats-action (#92533)
This job has been failing on canary pushes, but not on PRs. I'm not sure why it's only happening in canary pushes, but hopefully this should fix the specific error we're seeing when it does fail.
Discussion: https://vercel.slack.com/arc... | [
{
"path": ".github/actions/next-stats-action/src/index.js",
"patch": "@@ -115,6 +115,21 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n // 16.3 is released, but we must override it for now because 16.2 uses\n // pnpm 9.6.0, which supports different argumen... | 2026-04-08T20:40:13 |
facebook/react | b5f01787949b3619ef178a2574b54e2c1043910d | 7b5b561bd2dda205ed8f397864379003b707d4ae | Bump jws from 3.2.2 to 3.2.3 (#35373)
Bumps [jws](https://github.com/brianloveswords/node-jws) from 3.2.2 to
3.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/brianloveswords/node-jws/releases">jws's
releases</a>.</em></p>
<blockquote>
<h2>v3.2.3</h2>
<h3>Changed</h3>
<u... | [
{
"path": "yarn.lock",
"patch": "@@ -6015,10 +6015,10 @@ buffer-crc32@^0.2.1, buffer-crc32@^0.2.13, buffer-crc32@~0.2.3:\n resolved \"https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242\"\n integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=\n \n-buffer-e... | 2026-03-12T15:38:01 |
facebook/react | 014138df87869b174956f90a33fd6cf66e160114 | 4610359651fa10247159e2050f8ec222cb7faa91 | [DevTools] Fix a crash when rendering a new class Component when simulating errored state (#35985) | [
{
"path": "packages/react-devtools-shared/src/__tests__/storeForceError-test.js",
"patch": "@@ -0,0 +1,106 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n... | 2026-03-10T17:05:48 |
golang/go | 3985ca0b6264835c049e601900a8072b5d1b13b4 | 4978c2029c3ff66da8f1dfe32ac6770ce1514fe8 | cmd/compile: fix mem access overlap detection
When a no-op interface conversion is wrapped around the rhs of an
assignment, the memory overlap detection logic in the compiler failed to
peel down conversion to see the actual pointer, causing an incorrect
no-overlapping determination.
Thanks to Jakub Ciolek for reporti... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -1654,6 +1654,16 @@ func (s *state) stmtList(l ir.Nodes) {\n \t}\n }\n \n+func peelConvNop(n ir.Node) ir.Node {\n+\tif n == nil {\n+\t\treturn n\n+\t}\n+\tfor n.Op() == ir.OCONVNOP {\n+\t\tn = n.(*ir.ConvExpr).X\n+\t}\n+\treturn n\n+}\n+\n // ... | 2026-03-12T21:36:33 |
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.