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 | 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 | 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 | 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 |
facebook/react | 09f05694a25578c46e846e4ff9495f7c1352c29c | 0af4fd80ed0ceb85b472b079c94a96b8526fcd06 | [compiler] Extend setState in effect validation to useEffectEvent (#35214)
ValidateNoSetStateInEffects already supports transitive setter
functions. This PR marks any synchonous state setter useEffectEvent
function so we can validate that uEE isn't being used only as
misdirection to avoid the validation within an effe... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -2023,6 +2023,11 @@ export function isUseInsertionEffectHookType(id: Identifier): boolean {\n id.type.shapeId === 'BuiltInUseInsertionEffectHook'\n );\n }\n+export function isUseEffectEventType(id: Identifier): bool... | 2025-12-01T19:55:42 |
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 | 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 |
facebook/react | 1721e73e149d482a4421d4ea9f76d36a2c79ad02 | 6875c3eab48179f3c74a8a9f825c09554f683d7d | [test] Fix Error Proxy in Node.js 21+ (#35227) | [
{
"path": "scripts/jest/setupTests.js",
"patch": "@@ -136,6 +136,13 @@ if (process.env.REACT_CLASS_EQUIVALENCE_TEST) {\n }\n return Reflect.set(target, key, value, receiver);\n },\n+ get(target, key, receiver) {\n+ if (key === 'stack') {\n+ // https://g... | 2025-11-29T15:52:39 |
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 |
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 |
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 |
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 |
facebook/react | 6875c3eab48179f3c74a8a9f825c09554f683d7d | 74fa1667a7355fd55591d82b0e1e992909b1dca0 | [test] Only run tests overriding fallback and error states in supported versions (#35234) | [
{
"path": "packages/react-devtools-shared/src/__tests__/storeComponentFilters-test.js",
"patch": "@@ -753,7 +753,7 @@ describe('Store component filters', () => {\n });\n });\n \n- // @reactVersion >= 16.6\n+ // @reactVersion >= 18.0\n it('resets forced error and fallback states when filters are ch... | 2025-11-27T15:15:14 |
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 |
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 |
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 |
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 |
facebook/react | 627b583650078514eff22498514682a8522282b1 | fb18ad3fd372623190a8f74387b79e28151cefc4 | [compiler][snap] Fix for filter mode with nested files, 'error.' prefix (#35215)
Fixes some issues i ran into w my recent snap changes:
* Correctly match against patterns that contain subdirectories, eg
`fbt/fbt-call`
* When checking if the input pattern has an extension, only prune known
supported extensions. Our con... | [
{
"path": "compiler/packages/snap/src/fixture-utils.ts",
"patch": "@@ -44,21 +44,6 @@ function stripExtension(filename: string, extensions: Array<string>): string {\n return filename;\n }\n \n-/**\n- * Strip all extensions from a filename\n- * e.g., \"foo.expect.md\" -> \"foo\"\n- */\n-function stripAllEx... | 2025-11-25T23:39:07 |
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 |
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 | 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 | fb18ad3fd372623190a8f74387b79e28151cefc4 | ddff35441a63d573ef41fcedabc32105e0ac3122 | [compiler] Exhaustive deps: extra tests, improve diagnostic (#35213)
First, this adds some more tests and organizes them into an
`exhaustive-deps/` subdirectory.
Second, the diagnostics are overhauled. For each memo block we now
report a single diagnostic which summarizes the issue, plus individual
errors for each mi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -807,6 +807,7 @@ export type ManualMemoDependency = {\n }\n | {kind: 'Global'; identifierName: string};\n path: DependencyPath;\n+ loc: SourceLocation;\n };\n \n export type StartMemoize = {",
"additions"... | 2025-11-25T20:09:09 |
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 |
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 |
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 |
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 |
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 |
facebook/react | ddff35441a63d573ef41fcedabc32105e0ac3122 | d39a1d6b638de6b990ea783544df775b8be59f1a | [compiler] Enable validateExhaustiveMemoizationDependencies by default (#35201)
Enables `@validateExhaustiveMemoizationDependencies` feature flag by
default, and disables it in select tests that failed due to the change.
Some of our tests intentionally use incorrect memo dependencies in order
to test edge cases.
---
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -221,7 +221,7 @@ export const EnvironmentConfigSchema = z.object({\n /**\n * Validate that dependencies supplied to manual memoization calls are exhaustive.\n */\n- validateExhaustiveMemoizationDependenci... | 2025-11-25T20:07:55 |
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 |
rust-lang/rust | f170efdfb673a56ef28ffee1a9e70d23bc0da05b | 70bf845cb2b07be5111d7992223ce98aaa1fd6cb | fix: load rust-analyzer.toml for virtual workspaces | [
{
"path": "src/tools/rust-analyzer/crates/load-cargo/src/lib.rs",
"patch": "@@ -282,6 +282,19 @@ impl ProjectFolders {\n }\n }\n \n+ // Collect workspace roots not already covered by a local PackageRoot\n+ // (e.g. virtual workspaces where no package lives at the workspace ... | 2026-04-06T05:08:42 |
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 |
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 |
facebook/react | d39a1d6b638de6b990ea783544df775b8be59f1a | 16e16ec6ffe159ba831203eeeb7efe72df82c4be | [compiler] Distingush optional/extraneous deps (#35204)
In ValidateExhaustiveDependencies, I previously changed to allow
extraneous dependencies as long as they were non-reactive. Here we make
that more precise, and distinguish between values that are definitely
referenced in the memo function but optional as dependen... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -803,6 +803,7 @@ export type ManualMemoDependency = {\n | {\n kind: 'NamedLocal';\n value: Place;\n+ constant: boolean;\n }\n | {kind: 'Global'; identifierName: string};\n path: Depe... | 2025-11-25T20:06:25 |
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 |
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 | 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 |
facebook/react | 9599e7a787cce2a41c35d783d45a160dfebab277 | 67c1487ffd872c95a3bb7d8104eac6eca79fe8cb | [compiler] Adjustments to exhaustive deps messages, disable the lint rule (#35192)
Similar to ValidateHookUsage, we implement this check in the compiler
for safety but (for now) continue to rely on the existing rule for
actually reporting errors to users.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -1067,7 +1067,15 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n name: 'memo-dependencies',\n description:\n 'Validates that useMemo() and useCallback() specify co... | 2025-11-24T20:20:12 |
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 |
rust-lang/rust | 8f0bd63075723eb534d36b67c06c47eec6a5bcdf | e73c56abd0baf3dbaafbdc3ce6072a416aade867 | Fix private fields diagnostics and improve error messages | [
{
"path": "compiler/rustc_hir_typeck/src/expr.rs",
"patch": "@@ -2439,25 +2439,28 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n })\n .partition(|field| field.2);\n err.span_labels(used_private_fields.iter().map(|(_, span, _)| *span), \"private field\");\n- if !remaining_priva... | 2026-04-06T04:33:42 |
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 |
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 |
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 |
facebook/react | fca172e3f3b29aee12e4e99b8f151e7fd138a8db | fd524fe02a86c3e92a207d90da970941320f337f | [compiler] Ignore ESLint suppressions when ValidateMemoDeps enabled (#35184)
With `ValidateExhaustiveMemoDependencies` we can now check exhaustive
dependencies for useMemo and useCallback within the compiler, without
relying on the separate exhaustive-deps rule. Until now we've bailed out
of any component/hook that su... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -400,7 +400,15 @@ export function compileProgram(\n */\n const suppressions = findProgramSuppressions(\n pass.comments,\n- pass.opts.eslintSuppressionRules ?? DEFAULT_ESLINT_SUPPRESSIONS,\n+ /*\n... | 2025-11-24T20:12:49 |
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 | 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 |
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 | 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 |
facebook/react | df75af4edca7f316e6bfcfcde67197e8a57d1101 | bcc3fd8b05acc6cb4947b15938dc55b4b72fe31f | [compiler] Auto-fix for non-exhaustive deps (#34471)
Records more information in DropManualMemoization so that we know the
full span of the manual dependencies array (if present). This allows
ValidateExhaustiveDeps to include a suggestion with the correct deps.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [S... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts",
"patch": "@@ -817,6 +817,11 @@ export type StartMemoize = {\n * (e.g. useMemo without a second arg)\n */\n deps: Array<ManualMemoDependency> | null;\n+ /**\n+ * The source location of the dependencies argument. Used for\n+ ... | 2025-11-21T03:28:08 |
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 |
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 | 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 |
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 | bcc3fd8b05acc6cb4947b15938dc55b4b72fe31f | 50e7ec8a694072fd6fcd52182df8a75211bf084d | [compiler] Implement exhaustive dependency checking for manual memoization (#34394)
The compiler currently drops manual memoization and rewrites it using
its own inference. If the existing manual memo dependencies has missing
or extra dependencies, compilation can change behavior by running the
computation more often ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -304,6 +304,30 @@ export class CompilerError extends Error {\n disabledDetails: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n printedMessage: string | null = null;\n \n+ static simpleInvariant(\n+ ... | 2025-11-21T03:26:26 |
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 |
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 |
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 | 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 |
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 |
golang/go | 2de90fd48f2e4e38c2805e81b37d4116004752e2 | bfa3dc402859a92f00b88ebab500d44c64e28185 | cmd/compile/internal/noder: don't shoot oneself (fix silly mistake)
When reading multiple promoted fields in a struct literal from UIR,
don't overwrite the (top-level) struct literal type needed for the
next field.
Fixes #78262.
For #9859.
Change-Id: Ifac64537bebcb7dbb79a6173d0cd032cbf0b8ed8
Reviewed-on: https://go-... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -3117,6 +3117,7 @@ func (r *reader) structElems(typ *types.Type, valuesOnly bool, elems []ir.Node)\n \t\tvar fld *types.Field\n \t\tif n := r.Int(); n < 0 {\n \t\t\t// embedded field\n+\t\t\ttyp := typ // don't modify the original typ\n \t\t... | 2026-03-21T00:14:59 |
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 | 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 |
rust-lang/rust | fc2f17781e0b9ddf122ccaed23c9a2372fb86c25 | 32330276cd13e55f7fedda5cbc795454dc2c2b59 | Fix SyntaxEditor upmapping of nodes with mapped ancestor that aren't mapped themselves
There is no point to expect a connection between the mapped ancestor and the unmapped child. | [
{
"path": "src/tools/rust-analyzer/crates/syntax/src/syntax_editor/mapping.rs",
"patch": "@@ -161,7 +161,7 @@ impl SyntaxMapping {\n // Try to follow the mapping tree, if it exists\n let input_mapping = self.upmap_node_single(input);\n let input_ancestor =\n- input.ancesto... | 2026-04-06T00:16:08 |
facebook/react | 4cf770d7e1a52c66401b42c7d135f40b7dc23981 | 7d67591041e3ac47eac3bab6cff209071d4c0c6c | [compiler][poc] Quick experiment with SSR-optimization pass (#35102)
Just a quick poc:
* Inline useState when the initializer is known to not be a function.
The heuristic could be improved but will handle a large number of cases
already.
* Prune effects
* Prune useRef if the ref is unused, by pruning 'ref' props on pr... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -105,6 +105,7 @@ import {inferMutationAliasingRanges} from '../Inference/InferMutationAliasingRan\n import {validateNoDerivedComputationsInEffects} from '../Validation/ValidateNoDerivedComputationsInEffects';\... | 2025-11-20T23:02:38 |
golang/go | 0a750df0b23cefd951f2c9c8154acce66c05b739 | f2dae4c19d20070eeb2cef6baa5c20e0081f53f9 | Revert "cmd/compile: don't call memclrNoHeapPointersPreemptible from nosplit functions"
This reverts CL 756123.
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: Ic5e6eee... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -723,8 +723,6 @@ func extendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \tif hasPointers {\n \t\tclrname = \"memclrHasPointers\"\n \t\tir.CurFunc.SetWBPos(n.Pos())\n-\t} else if ir.CurFunc.Pragma&ir.Nosplit != 0 {\n-\t\tclrname = \"memc... | 2026-03-20T21:45:30 |
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 |
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 |
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 |
facebook/react | 7d67591041e3ac47eac3bab6cff209071d4c0c6c | 7ee974de927e9bbe10a44441ab49bafd9f5467a2 | [compiler] Remove useState argument constraint. no-derived-computations-in-effects (#35174)
Summary:
I missed this conditional messing things up for undefined useState()
calls. We should be tracking them.
I also missed a test that expect an error was not throwing.
Test Plan:
Update broken test
---
[//]: # (BEGIN SA... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -388,7 +388,7 @@ function recordInstructionDerivations(\n dependencies: deps,\n });\n }\n- } else if (isUseStateType(lvalue.identifier) && value.arg... | 2025-11-20T18:45:17 |
golang/go | a45c8032bbfdfb4c43cb56536f987501e6709a70 | 79a8ccab29c435966dd41fc8dda144de5dca073e | cmd/go: include test deps in buildinfo
Fixes #76926
Change-Id: I822dd6363dea1c4ad73df5958964c1bfe2c46d19
Reviewed-on: https://go-review.googlesource.com/c/go/+/756240
Reviewed-by: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUCI... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,15 +294,6 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\t... | 2026-03-18T00:09:35 |
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 |
facebook/react | 7ee974de927e9bbe10a44441ab49bafd9f5467a2 | 8ac5f4eb3601f7381462f8b74ecf24d47259cc20 | [compiler] Prevent innaccurate derivation recording on FunctionExpressions on no-derived-computation-in-effects (#35173)
Summary:
The operands of a function expression are the elements passed as
context. This means that it doesn't make sense to record mutations for
them.
The relevant mutations will happen in the func... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoDerivedComputationsInEffects_exp.ts",
"patch": "@@ -52,6 +52,8 @@ type ValidationContext = {\n readonly setStateUsages: Map<IdentifierId, Set<SourceLocation>>;\n };\n \n+const MAX_FIXPOINT_ITERATIONS = 100;\n+\n class Deriva... | 2025-11-20T18:44:45 |
nodejs/node | d10104bd944d256318bdd89ffeaf7b60afff6376 | ca92ea03da578e40846c497fa241c6da20be3255 | stream: fix decoded fromList chunk boundary check
Correct `fromList()` in decoded string mode to compare `n` against the
current chunk length, not the buffer array length.
This prevents over-consuming chunks, which can corrupt readable state
and crash with `TypeError` when mixing `setEncoding()` and `read(n)`.
PR-UR... | [
{
"path": "lib/internal/streams/readable.js",
"patch": "@@ -1669,7 +1669,7 @@ function fromList(n, state) {\n n -= str.length;\n buf[idx++] = null;\n } else {\n- if (n === buf.length) {\n+ if (n === str.length) {\n ret += str;\n buf[idx++] = null;\n ... | 2026-02-22T00:19:40 |
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 |
golang/go | 686b127fe865e25c1d92a78ba0b56224f3fc0acf | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | doc: fix 2 links in godebug.md
For #76349.
Change-Id: I27dd7658e6cbcf6afd1287a7ec5a39c576ceee67
Reviewed-on: https://go-review.googlesource.com/c/go/+/756580
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Mateusz Poliwczak <mpoliwczak34@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "doc/godebug.md",
"patch": "@@ -156,7 +156,7 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n ### Go 1.27\n \n-Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n+Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.... | 2026-03-18T20:53:54 |
facebook/react | 8ac5f4eb3601f7381462f8b74ecf24d47259cc20 | eb89912ee5ace8bf8e616cca5a6aeebcd274b521 | Fix form status reset when component state is updated (#34075)
Co-authored-by: Vordgi <sasha2822222@gmail.com> | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -2281,4 +2281,64 @@ describe('ReactDOMForm', () => {\n await submit(formRef.current);\n assertLog(['stringified action']);\n });\n+\n+ it('form actions should retain status when nested state changes', async () => {\n+... | 2025-11-19T17:22:07 |
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 |
nodejs/node | a193dadf37ef5af0024796eceb4096b0ea315d30 | 0fccfa421ba25754f109ef58f7d64eca89c93180 | test: fix typos in test files
PR-URL: https://github.com/nodejs/node/pull/61408
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongo... | [
{
"path": "test/fixtures/test-runner/global-setup-teardown/another-test-file.js",
"patch": "@@ -4,7 +4,7 @@ const test = require('node:test');\n const assert = require('node:assert');\n const fs = require('node:fs');\n \n-test('Another test that verifies setup flag existance', (t) => {\n+test('Another test ... | 2026-01-17T13:49:22 |
golang/go | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | 89ba6eec5c6950d6c24523f81469139a5d88a024 | doc: remove template use in godebug.md
This file used to be implicitly a template prior to CL 733500, but now
it's no longer a template. The only template use here can be trivially
expressed with pure Markdown syntax, so do that. (The alternative path
would be to set 'template: true' explicitly.)
Fixes #78211.
Chang... | [
{
"path": "doc/godebug.md",
"patch": "@@ -136,9 +136,7 @@ are also treated as invalid.\n The defaults that will be compiled into a main package\n are reported by the command:\n \n-{{raw `\n \tgo list -f '{{.DefaultGODEBUG}}' my/main/package\n-`}}\n \n Only differences from the base Go toolchain defaults are... | 2026-03-18T20:00:48 |
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 | 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 |
nodejs/node | 94df36a12199de8bb06a02e5840e0e32415851c4 | bdc8131fa78089b81b74dbff467365afb6536e6a | tools: fix auto-start-ci
PR-URL: https://github.com/nodejs/node/pull/61900
Refs: https://github.com/nodejs/node/pull/61874
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> | [
{
"path": ".github/workflows/auto-start-ci.yml",
"patch": "@@ -71,3 +71,4 @@ jobs:\n | sh -s -- ${{ needs.get-prs-for-ci.outputs.numbers }}\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n+ GH_REPO: ${{ github.repository }}",
"additions": 1,
"deletions": 0,
... | 2026-02-20T13:34:42 |
golang/go | fdd38337f0802ada78e70c4f3db1f440ba08ba2f | 0520d3f35287d5363941b466df6dd2e134620d09 | cmd/link: propagate Mach-O section alignment to symbol in loadmacho
The Mach-O object file loader reads the section alignment from the
section header into ldMachoSect.align, but never calls SetAlign on
the symbol builder when converting sections to linker symbols. This
causes all Mach-O .syso sections to fall back to ... | [
{
"path": "src/cmd/link/internal/loadmacho/ldmacho.go",
"patch": "@@ -570,6 +570,9 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\tbld.SetData(dat[sect.addr-c.seg.vmaddr:][:sect.size])\n \t\t}\n \t\tbld.SetSize(int64(len(bld.Data())))\n+\t\tif sect.align != 0 {\n+\... | 2026-03-17T14:33:28 |
facebook/react | eb89912ee5ace8bf8e616cca5a6aeebcd274b521 | 0972e23908b573faa5beebc0eb1154f792c53b62 | Add expertimental `optimisticKey` behind a flag (#35162)
When dealing with optimistic state, a common problem is not knowing the
id of the thing we're waiting on. Items in lists need keys (and single
items should often have keys too to reset their state). As a result you
have to generate fake keys. It's a pain to mana... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -3884,4 +3884,19 @@ describe('ReactFlight', () => {\n </main>,\n );\n });\n+\n+ // @gate enableOptimisticKey\n+ it('collapses optimistic keys to an optimistic key', async () => {\n+ function Bar({text}) {\n+ ... | 2025-11-18T21:29:18 |
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 | 642f34880532ff758be2fab9cae7dd6d0681ef2a | 9602bda1dd0c1bbf5787e398385bbac81fd532f8 | Fix linking two dylibs together when both depend on profiler_builtins
See the comment inside this commit for why. | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link.rs",
"patch": "@@ -2972,9 +2972,11 @@ fn add_upstream_rust_crates(\n // We must always link crates `compiler_builtins` and `profiler_builtins` statically.\n // Even if they were already included into a dylib\n // (e.g. `libstd` when... | 2026-04-05T18:07:50 |
vercel/next.js | b61823d7b9dd26370fb1167b31098c24b1fcd199 | 0ca967b8637ca0b23a98f3d5fa6cb6675b89afb1 | SRI turbopack documentation (#90477)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
Updates the Subresource Integrity (SRI) documentation to reflect that
the feature is now supported on both Webpack and Turbopack bundlers.
Previously, the documentation stated that SRI was "only available with
webpack bundler". This has been upd... | [
{
"path": "docs/01-app/02-guides/content-security-policy.mdx",
"patch": "@@ -457,7 +457,7 @@ module.exports = {\n \n As an alternative to nonces, Next.js offers experimental support for hash-based CSP using Subresource Integrity (SRI). This approach allows you to maintain static generation while still havin... | 2026-03-18T08:59:35 |
golang/go | 0520d3f35287d5363941b466df6dd2e134620d09 | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | cmd/link: skip special symbols for label symbol generation
Some special symbols, e.g. funcdata symbols, don't have a section
set, because they are laid out as part of the top-level
go:func.* symbol. Similarly, other non-top-level symbols are part
of some top-level symbols. There is no relocation directly
targetting th... | [
{
"path": "src/cmd/link/internal/arm64/asm.go",
"patch": "@@ -1284,6 +1284,9 @@ func gensymlate(ctxt *ld.Link, ldr *loader.Loader) {\n \n \t// addLabelSyms adds \"label\" symbols at s+limit, s+2*limit, etc.\n \taddLabelSyms := func(s loader.Sym, limit, sz int64) {\n+\t\tif ldr.SymSect(s) == nil {\n+\t\t\tlo... | 2026-03-17T15:18:36 |
nodejs/node | 94f779f0444e84036fbe545fc7ecdad375f2d3f7 | d7a755153a1f3dd071d2ae8af8f577edbd717ad8 | tools: automate updates for test/fixtures/test426
PR-URL: https://github.com/nodejs/node/pull/60978
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -38,6 +38,7 @@ on:\n - root-certificates\n - simdjson\n - sqlite\n+ - test426-fixtures\n - undici\n - uvwasi\n - zlib\n@@ -255,6 +256,14 @@ jobs:\n cat temp-output\n ... | 2026-02-18T16:14:47 |
facebook/react | ea4899e13f9e29815321e3cac70fa08bb8ed790a | b946a249b560a2d3afe1a1c8553d5491b1767cb3 | [compiler][snap] Support pattern of files to test as CLI argument (#35148)
I've been trying out LLM agents for compiler development, and one thing
i found is that the agent naturally wants to run `yarn snap <pattern>`
to test a specific fixture, and I want to be able to tell it (directly
or in rules/skills) to do this... | [
{
"path": "compiler/packages/snap/src/fixture-utils.ts",
"patch": "@@ -44,6 +44,21 @@ function stripExtension(filename: string, extensions: Array<string>): string {\n return filename;\n }\n \n+/**\n+ * Strip all extensions from a filename\n+ * e.g., \"foo.expect.md\" -> \"foo\"\n+ */\n+function stripAllEx... | 2025-11-17T20:09:09 |
electron/electron | 0ae46d71d37810e322fa28ae132f22d4cde6d103 | 9f9a5b8b9b702767f07cda5f1c1f6c0d51dde0a6 | fix: add explicit JSON property mappings for `SQRLShipItRequest` model (#49980)
* fix: add explicit JSON property mappings for SQRLShipItRequest model
* style: add patch body to mantle v2 fix patch | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -10,3 +10,4 @@ chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_uttypeconformsto.patch\n fix_clean_up_old_staged_updates... | 2026-03-03T04:48:41 |
rust-lang/rust | c3709eee095c22f873cec3fd5d893da035ba5d69 | 9602bda1dd0c1bbf5787e398385bbac81fd532f8 | ast_validation: scalable vectors okay for rustdoc
Scalable vector types in `core_arch` are cfg'd for aarch64 and for
rustdoc, which can successfully document these types given any `--target`
(`core_arch` CI uses `i686-unknown-linux-gnu`) - this shouldn't trigger
the "scalable vectors not supported on arch" error. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1379,7 +1379,9 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n this.dcx()\n .emit_err(errors::ScalableVectorNotTupleStruct { span: item.span });\n }... | 2026-04-03T09:14:07 |
golang/go | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | cmd/compile: enable promoted field selectors as keys in struct literals
Switch the generated UIR version from V2 to V3.
Adjust cmd/compile/internal/types to accept promoted field selectors
in composite literals.
Fixes #9859.
Change-Id: Ie314e28567cfa6cf4c9e962a07b32dd05b06bf5e
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/cmd/compile/internal/noder/unified.go",
"patch": "@@ -25,8 +25,8 @@ import (\n )\n \n // uirVersion is the unified IR version to use for encoding/decoding.\n-// Use V2 as the encoded version for aliastypeparams.\n-const uirVersion = pkgbits.V2\n+// Use V3 for promoted struct field support in ... | 2026-03-16T21:01:37 |
facebook/react | b946a249b560a2d3afe1a1c8553d5491b1767cb3 | d6b1a0573b4c43e5222aee1de5b11a8e4b575c8e | [compiler] Improve setState-in-effects rule to account for ref-gated conditionals (#35147)
Conditionally calling setState in an effect is sometimes necessary, but
should generally follow the pattern of using a "previous vaue" ref to
manually compare and ensure that the setState is idempotent. See fixture
for an exampl... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -672,9 +672,14 @@ export const EnvironmentConfigSchema = z.object({\n validateNoDynamicallyCreatedComponentsOrHooks: z.boolean().default(false),\n \n /**\n- * When enabled, allows setState calls in effects w... | 2025-11-17T20:07:43 |
vercel/next.js | 0ca967b8637ca0b23a98f3d5fa6cb6675b89afb1 | a41bef94c5ec99cf71e286b8be02dca850b80062 | Add group depth tracking to instant validation boundary discovery (#91208)
The depth-based instant validation previously only iterated
URL-consuming segments as potential shared/new boundaries. Route groups
between URL segments were invisible — when a route group layout with
Suspense was shared in a client navigation,... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1264,7 +1264,7 @@ async fn directory_tree_to_loader_tree_internal(\n let current_level_is_parallel_route = is_parallel_route(&directory_name);\n \n if current_level_is_parallel_route {\n- tree.segment = rcstr!(\"(slot)\");\n+ ... | 2026-03-18T05:14:19 |
nodejs/node | d7a755153a1f3dd071d2ae8af8f577edbd717ad8 | ca90ab1f024ab1ea14d1c3cfd25f460e0caa3d1b | doc: remove incorrect mention of `module` in `typescript.md`
Node.js/Armaro has never supported `module`-keyword namespaces. Even
with `transform-types` on.
This removes the incorrect mention.
PR-URL: https://github.com/nodejs/node/pull/61839
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Marco ... | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -146,11 +146,10 @@ The most prominent features that require transformation are:\n \n * `Enum` declarations\n * `namespace` with runtime code\n-* legacy `module` with runtime code\n * parameter properties\n * import aliases\n \n-`namespaces` and `module` that d... | 2026-02-18T14:04:23 |
electron/electron | 9f9a5b8b9b702767f07cda5f1c1f6c0d51dde0a6 | 21a2bfca161e51e03a3d665ea49b74b2f0cdc9dd | fix: prevent use-after-free in permission request callbacks (#50032)
EnterFullscreenModeForTab, RequestPointerLock, and RequestKeyboardLock
bind callbacks with base::Unretained(this); fullscreen also captures a
raw RenderFrameHost*. These callbacks may be invoked by the app's JS
permission handler after the WebContent... | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -98,6 +98,7 @@\n #include \"shell/browser/electron_browser_context.h\"\n #include \"shell/browser/electron_browser_main_parts.h\"\n #include \"shell/browser/electron_navigation_throttle.h\"\n+#include \"shell/browser/electron_permissio... | 2026-03-03T00:01:24 |
facebook/react | b315a0f7133a3251f72970d56c2ad454bdd47003 | 7df96b0c1a1a65c46130628899a2e2098e30cbfd | [compiler] Fix for destructuring with mixed declaration/reassignment (#35144)
Destructing statements that start off as declarations can end up
becoming reassignments if the variable is a scope declaration, so we
have existing logic to handle cases where some parts of a destructure
need to be converted into new locals,... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts",
"patch": "@@ -11,6 +11,7 @@ import {\n BasicBlock,\n BlockId,\n Instruction,\n+ InstructionKind,\n InstructionValue,\n makeInstructionId,\n Pattern,\n@@ -32,6 +33,32 @@ export function* eachInstructionLValue(\n yie... | 2025-11-17T19:34:49 |
golang/go | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | d9a600a73bed7b907f7321200650fe5103f47fc9 | cmd/compile: skip race detector test failure for unsupported VMA
Fixes #78219
Updates #77597
Change-Id: I021df668bfc18081e71faaab2e4bad607873bf4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/756780
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Meidan ... | [
{
"path": "src/cmd/compile/internal/test/fixedbugs_test.go",
"patch": "@@ -5,6 +5,7 @@\n package test\n \n import (\n+\t\"bytes\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n \t\"os\"\n@@ -110,7 +111,13 @@ func TestIssue77597(t *testing.T) {\n \tcmd := testenv.Command(t, testenv.GoToolPath(t), \"run... | 2026-03-19T02:48:47 |
vercel/next.js | a41bef94c5ec99cf71e286b8be02dca850b80062 | 75c51c65410bc0d4a852b28bab42943dbf765135 | improve allowedDevOrigins error (#91521)
This improves the blocked-request warning so it names the actual dev
resource being requested and gives clearer guidance on how to allow it.
When the source host is known, the message includes an inline
`allowedDevOrigins` config snippet; when the source is missing or
opaque, i... | [
{
"path": "packages/next/src/server/lib/router-utils/block-cross-site-dev.ts",
"patch": "@@ -4,14 +4,72 @@ import { parseUrl } from '../../../lib/url'\n import { warnOnce } from '../../../build/output/log'\n import { isCsrfOriginAllowed } from '../../app-render/csrf-protection'\n \n+const allowedDevOriginsD... | 2026-03-18T00:35:29 |
nodejs/node | b4d877405585709caac89a7376f6a8e6565346bc | 4d1557a744873d8152cfa94a26ba9a0782614630 | doc: fix typo in --disable-wasm-trap-handler description
PR-URL: https://github.com/nodejs/node/pull/61820
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -758,7 +758,7 @@ added:\n \n By default, Node.js enables trap-handler-based WebAssembly bound\n checks. As a result, V8 does not need to insert inline bound checks\n-int the code compiled from WebAssembly which may speedup WebAssembly\n+in the code compiled from WebA... | 2026-02-17T20:59:22 |
rust-lang/rust | c9e3d313b01f97f385fe4b751b4a3d6b2d62a9e9 | 56c30e9b397ccba64c719f5b05b33da6047d8e1c | add debugee dependency location to `PATH` | [
{
"path": "src/tools/compiletest/src/runtest/debuginfo.rs",
"patch": "@@ -455,14 +455,17 @@ impl TestCx<'_> {\n // Path containing `lldb_batchmode.py`, so that the `script` command can import it.\n let rust_pp_module_abs_path = self.config.src_root.join(\"src/etc\");\n let pythonpath... | 2026-04-05T09:13:59 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.