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 |
|---|---|---|---|---|---|
rust-lang/rust | 461038f0c9fd7a403b29d3ac0e384d410ab16f07 | 798a011ace1c2b5be80767ba1d97a4dff0546f93 | improve `#[track_caller]` invalid ABI error | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1487,6 +1487,15 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ident,\n sig,\n );\n+\n+ if let Some(attr) = attr::find_by_name(fi.attrs(), sym::track_caller)\n+... | 2026-03-15T16:04:38 |
facebook/react | 6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf | efb22d8850382c3b53c1b2b8d22036d7e6cc9488 | [Bugfix] Infinite uDV loop in popstate event (#32821)
Found a bug that occurs during a specific combination of very subtle
implementation details.
It occurs sometimes (not always) when 1) a transition is scheduled
during a popstate event, and 2) as a result, a new value is passed to an
already-mounted useDeferredValu... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js",
"patch": "@@ -776,6 +776,74 @@ describe('ReactDOMFiberAsync', () => {\n });\n });\n \n+ it('regression: useDeferredValue in popState leads to infinite deferral loop', async () => {\n+ // At the time this test was written, it ... | 2025-04-05T04:49:28 |
nodejs/node | 9bc923ac6386a122c1142480cd5115f42aa0bb8f | 55b7d2890dc32a445808ff695addb50e1029fd0a | doc: clarify the need of compiler compatible with c++20
Very often someone appear in the #node-core slack
channel asking for guidance on this compilation error
PR-URL: https://github.com/nodejs/node/pull/59297
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -272,6 +272,11 @@ export CXX=g++-12\n make -j4\n ```\n \n+> \\[!IMPORTANT]\n+> If you face a compilation error during this process such as\n+> `error: no matching conversion for functional-style cast from 'unsigned int' to 'TypeIndex'`\n+> Make sure to use a `g++` or `c... | 2025-08-02T18:23:28 |
electron/electron | f48680a98392dc0aeae305c9ebf89c8a36b18468 | 682ea345ace76d41996165c7efa55852da9546ab | fix: zlib pointer alignment (#46435)
fix: fix zlib pointer alignment | [
{
"path": "patches/node/.patches",
"patch": "@@ -48,3 +48,4 @@ feat_add_oom_error_callback_in_node_isolatesettings.patch\n fix_-wnonnull_warning.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n+zlib_fix_pointer_alignment.patch",
... | 2025-04-03T13:35:38 |
vercel/next.js | 77c69a7115cf0befcb0b3ad0e97419ff9e8989fe | 6caeccb1fea08e14bfd07456c18abb2cf90519ea | Turbopack: improve error message for incompatible swc plugins (#86346)
Before:
```
Module not found: Can't resolve 'next/dist/esm/build/templates/helpers'
failed to analyze ecmascript module '[project]/node_modules/.pnpm/next@file+..+next-repo-2bf56e024dbccc85257a8c308492f2375d690b206153b02d3bea2029707d4c38+packa_t... | [
{
"path": "Cargo.lock",
"patch": "@@ -9903,6 +9903,7 @@ dependencies = [\n \"anyhow\",\n \"async-trait\",\n \"bincode 2.0.1\",\n+ \"either\",\n \"indexmap 2.9.0\",\n \"rustc-hash 2.1.1\",\n \"serde\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next... | 2026-01-09T19:57:40 |
nodejs/node | 4a06d470ef71637d31a296ea0bdaa1f78ae197ea | 8a87ba031b56bb115043240a740246a88c881195 | test: add known issue test for fs.cpSync dereference bug
Refs: https://github.com/nodejs/node/issues/58939
PR-URL: https://github.com/nodejs/node/pull/58941
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/known_issues/test-fs-cp-sync-dereference.js",
"patch": "@@ -0,0 +1,39 @@\n+'use strict';\n+\n+// Refs: https://github.com/nodejs/node/issues/58939\n+//\n+// The cpSync function is not correctly handling the `dereference` option.\n+// In this test, both the cp and cpSync functions are attempt... | 2025-08-02T14:23:15 |
golang/go | d474f1fd21fde4a508235c48caf0acca6ce73642 | d0d0a7298036793e0648bfd6d296a1cdac372a97 | cmd/compile: make dse track multiple shadowed ranges
Track multiple shadowed ranges when doing DSE.
Elides zeroing for:
func nozero() (b [5]int64) {
b[0] = 1
b[1] = 7
b[3] = 1
b[4] = 1
b[2] = 0
return b
}
goes from:
v28 00003 (7) LEAQ main.b(SP), AX
v5 00004 (7) MOVUPS X15, (AX)
v5 00005 (7) MO... | [
{
"path": "src/cmd/compile/internal/ssa/deadstore.go",
"patch": "@@ -10,6 +10,10 @@ import (\n \t\"cmd/internal/obj\"\n )\n \n+// maxShadowRanges bounds the number of disjoint byte intervals\n+// we track per pointer to avoid quadratic behaviour.\n+const maxShadowRanges = 64\n+\n // dse does dead-store elim... | 2025-05-21T07:34:48 |
vercel/next.js | 6caeccb1fea08e14bfd07456c18abb2cf90519ea | 2b04d2eecd5ac482157e8f69e781424d9d00b8e0 | Time logs: Show full millisecond instead of 1 decimal (#88313)
## Fix: Remove unnecessary decimal place in millisecond duration
formatting
### What
Fixed `durationToString` to display whole milliseconds (e.g., "193ms")
instead of showing a redundant decimal place (e.g., "193.0ms").
### Why
The "Ready in X" message... | [
{
"path": "packages/next/src/build/duration-to-string.ts",
"patch": "@@ -21,7 +21,7 @@ const MILLISECONDS_THRESHOLD_NANOSECONDS = 2_000_000 // 2 milliseconds in nanose\n * - >= 2 minutes: show in minutes with 1 decimal place (e.g., \"2.5min\")\n * - >= 40 seconds: show in whole seconds (e.g., \"45s\")\n ... | 2026-01-09T17:57:28 |
facebook/react | efb22d8850382c3b53c1b2b8d22036d7e6cc9488 | 540cd65252ced9f970fb97d5f5b7f029bd7cac83 | Add Suspensey Images behind a Flag (#32819)
We've known we've wanted this for many years and most of the
implementation was already done for Suspensey CSS. This waits to commit
until images have decoded by default or up to 500ms timeout (same as
suspensey fonts).
It only applies to Transitions, Retries (Suspense), Ge... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -41,6 +41,12 @@ function Component() {\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p className=\"roboto-font\">Slide In from Left, Slide Out to Right</p>\n+ <p>\n+ ... | 2025-04-04T18:54:05 |
golang/go | d0d0a7298036793e0648bfd6d296a1cdac372a97 | a9704f89ea6bc02815557db8d89c1fa22a779b7e | cmd/compile/internal/ssa: correct type of ARM64 conditional instructions
The CCMP, CCMN, CCMPconst, and related instructions in ARM64Ops.go
were incorrectly set to type "Flag". This non-existent type caused
compilation failures during the "lower" and "late lower" passes.
Change them to the correct type, "Flags".
Cha... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go",
"patch": "@@ -517,15 +517,15 @@ func init() {\n \t\t// If the condition 'Cond' evaluates to true against current flags,\n \t\t// flags are set to the result of the comparison operation.\n \t\t// Otherwise, flags are set to the fallback value '... | 2025-11-21T09:58:40 |
nodejs/node | fa458d2feec2e3510f10b77b936ac0acd7ab1672 | e4b748a9cc0f7ceeb3a4299da68e42c8c83d2743 | test: deflake stream-readable-to-web test
Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58948
Fixes: https://github.com/nodejs/node/issues/58949
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Juan J... | [
{
"path": "test/parallel/test-stream-readable-to-web.js",
"patch": "@@ -1,62 +0,0 @@\n-'use strict';\n-const common = require('../common');\n-if (!common.hasCrypto) { common.skip('missing crypto'); }\n-\n-const { Readable } = require('stream');\n-const process = require('process');\n-const { randomBytes } =... | 2025-08-02T04:25:35 |
vercel/next.js | 2b04d2eecd5ac482157e8f69e781424d9d00b8e0 | 77071f90f61d7680f286dfe8e970f5f63cd2417e | Turbopack: make GraphTraversal deterministically calling all nodes before erroring (#88119)
### What?
The graph traversal used to early exit when there are errors. This leads to cycles to continuously executing the graph traversal to discover more task one by one. This leads to bad incremental performance. | [
{
"path": "turbopack/crates/turbo-tasks/src/graph/control_flow.rs",
"patch": "@@ -8,6 +8,4 @@ pub enum VisitControlFlow {\n /// The edge is excluded, and the traversal should not continue on the outgoing edges of the\n /// given node.\n Exclude,\n- /// The traversal should abort and return im... | 2026-01-09T16:37:36 |
facebook/react | c0f08ae74a46686f5718e9e6c511d27419fd632c | b10cb4c01ec1ae41b67422239d919f261fefa7d1 | Fix Bugs Measuring Performance Track for Effects (#32815)
This fixes two bugs with commit phase effect tracking.
I missed, or messed up the rebase for, deletion effects when a subtree
was deleted and for passive disconnects when a subtree was hidden.
The other bug is that when I started using self time
(componentEff... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -119,6 +119,8 @@ import {\n resetComponentEffectTimers,\n pushComponentEffectStart,\n popComponentEffectStart,\n+ pushComponentEffectDuration,\n+ popComponentEffectDuration,\n pushComponentEffectErrors,\n popComponen... | 2025-04-04T03:33:14 |
nodejs/node | 7f37d39a876d39a8bf7aea17e3bcec8c21e4df04 | c7d7ec7cda56b7776797cbdef3d4497fc98e8440 | node-api: reword "implementation in an alternative VM" as implementable
PR-URL: https://github.com/nodejs/node/pull/59036
Fixes: https://github.com/nodejs/node/issues/58852
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
Reviewed-By: Michael Dawson <midawson@redhat.com> | [
{
"path": "doc/contributing/adding-new-napi-api.md",
"patch": "@@ -37,7 +37,7 @@ please follow these principles and guidelines:\n \n 2. **Review and approval**\n * A new API addition **must** be signed off by at least two Node-API team members.\n- * **Should** be implemented in at least one other VM im... | 2025-08-01T16:58:49 |
golang/go | d3a0321dbad4c2f60bede3bd033b26a5a4839c53 | 74ebdd28d10f93fbcb58708c76b5805bc6c114a3 | [dev.simd] cmd/compile: fix incorrect mapping of SHA256MSG2128
Change-Id: Iff00fdb5cfc83c546ad564fa7618ec34d0352fdc
Reviewed-on: https://go-review.googlesource.com/c/go/+/722640
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -2291,7 +2291,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \tcase ssa.OpAMD64SHA1MSG1128,\n \t\tssa.OpAMD64SHA1MSG2128,\n \t\tssa.OpAMD64SHA1NEXTE128,\n-\t\tssa.OpAMD64SHA256MSG1128:\n+\t\tssa.OpAMD64SHA256MSG1128,\n+\t... | 2025-11-20T22:28:41 |
vercel/next.js | a5f8baf4ddd7dffd00355696631fbed1dea6961a | a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50 | Turbopack: fix task category on reading cells (#88309)
### What?
fix the task category | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -835,10 +835,10 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Having a task_pair here is not optimal, but otherwise this would lead to a race\n // condition. See below.\n // TO... | 2026-01-09T10:05:06 |
facebook/react | 040f8286e97eab7aac23a89d5f59967be3bf8f3e | 450f8df8865303f14be7ddd7c951f020115aa27c | Follow through all the phases when an error happens during snapshotting (#32803)
This can happen for example if you have duplicate names in the "old"
state. This errors the transition before the updateCallback is invoked
so we haven't yet applied mutations etc.
This runs through those phases after the error to get us... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1802,6 +1802,12 @@ export function startViewTransition(\n }\n } finally {\n // Continue the reset of the work.\n+ // If the error happened in the snapshot phase before the update callback\n+... | 2025-04-02T14:49:44 |
electron/electron | 36e233797c3e2216576c4891328a1354452bb67f | c02e5bc72c9beb79bcd5a8c9c30c739d2e6405a8 | perf: cache the return value of `IsX11()` (#46391)
* perf: cache the return value of IsX11()
* fix: mark as nodiscard for those who call, but mark as maybe_unused for Windows | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -163,10 +163,11 @@ gfx::Size WindowSizeToContentSizeBuggy(HWND hwnd, const gfx::Size& size) {\n \n #endif\n \n-[[maybe_unused]] bool IsX11() {\n- return ui::OzonePlatform::GetInstance()\n- ->GetPlatformProperties()\n- .electron_can_ca... | 2025-04-01T20:28:01 |
golang/go | f87aaec53d943eb2b5a6b9be9e4af284543c4004 | dbd2ab999262e1c9304d0591d6883f83b09c8570 | cmd/compile: fix integer overflow in prove pass
The detectSliceLenRelation function incorrectly deduced lower bounds
for "len(s) - i" without checking if the subtraction could overflow
(e.g. when i is negative). This led to incorrect elimination of
bounds checks.
Fixes: #76355
Change-Id: I30ada0e5f1425929ddd8ae1b66e5... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2051,8 +2051,11 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\treturn\n \t}\n \n-\tslice := v.Args[0].Args[0]\n \tindex := v.Args[1]\n+\tif !ft.isNonNegative(index) {\n+\t\treturn\n+\t}\n+\tslice := v.Args[0].Args[0]\n \n \t... | 2025-11-19T10:17:47 |
nodejs/node | 5794e644b724c6c6cac02d306d87a4d6b78251e5 | 5f5f9cb0150ce74a5f03be044e0019f3a3c27bba | fs: fix glob TypeError on restricted dirs
When a directory cannot be read due to permission issues, the async
version of fs.glob() returns null from readdir(), while the sync
version returns an empty array. This causes a TypeError when trying
to access the 'length' property of null.
PR-URL: https://github.com/nodejs/... | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -143,7 +143,7 @@ class Cache {\n if (cached) {\n return cached;\n }\n- const promise = PromisePrototypeThen(readdir(path, { __proto__: null, withFileTypes: true }), null, () => null);\n+ const promise = PromisePrototypeThen(readdir(path, ... | 2025-08-01T00:06:56 |
vercel/next.js | a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50 | 10213b360b665a0a5ea034d6340c3db7aee7f095 | Turbopack: use correct flags in tests (#88307)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
###... | [
{
"path": "turbopack/crates/turbopack-tests/tests/execution.rs",
"patch": "@@ -521,7 +521,7 @@ async fn run_test_operation(prepared_test: ResolvedVc<PreparedTest>) -> Result<V\n )\n .unused_references(\n options\n- .remove_unused_exports\n+ .remove_unused_imports\n ... | 2026-01-09T09:05:22 |
facebook/react | deca96520f1e9e804b0e5b0d81563327d9c55521 | 0b1a9e90c5d5b6a4633c225c9100af69f53752c8 | Warn if addTransitionType is called when there are no pending Actions (#32793)
Stacked on #32792.
It's tricky to associate a specific `addTransitionType` call to a
specific `startTransition` call because we don't have `AsyncContext` in
browsers yet. However, we can keep track if there are any async
transitions runnin... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -2219,6 +2219,11 @@ function handleActionReturnValue<S, P>(\n typeof returnValue.then === 'function'\n ) {\n const thenable = ((returnValue: any): Thenable<Awaited<S>>);\n+ if (__DEV__) {\n+ // Keep track of the num... | 2025-04-01T16:10:10 |
electron/electron | 0492f0f7455ba10775b278be15c3f7221ac46ea8 | ac1ffb1bff429a510a321c2b56dfd55c1128bdae | perf: have `ErrorThrower` lazily lookup the current isolate (#46388)
perf: have ErrorThrower lazy-lookup the current isolate
ErrorThrower's default constructor is marked as "should rarely if ever
be used" because it's expensive to call.
Unfortunately, nearly every instance of ErrorThrower comes as an argument
in gin... | [
{
"path": "shell/common/gin_helper/error_thrower.cc",
"patch": "@@ -10,12 +10,11 @@\n \n namespace gin_helper {\n \n-ErrorThrower::ErrorThrower(v8::Isolate* isolate) : isolate_(isolate) {}\n-\n-// This constructor should be rarely if ever used, since\n-// v8::Isolate::GetCurrent() uses atomic loads and is t... | 2025-04-01T17:25:27 |
golang/go | dbd2ab999262e1c9304d0591d6883f83b09c8570 | b9d86baae34197004a175c5c02b901240056a250 | cmd/compile/internal: fix typos
Change-Id: I5974f5b460f827877f49f69aff01ce5042f511c0
GitHub-Last-Rev: 552d12c0e609a65481381191be6bbd9f353120f5
GitHub-Pull-Request: golang/go#76398
Reviewed-on: https://go-review.googlesource.com/c/go/+/722900
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice... | [
{
"path": "src/cmd/compile/internal/ir/expr.go",
"patch": "@@ -681,7 +681,7 @@ type TypeAssertExpr struct {\n \n \t// When set to true, if this assert would panic, then use a nil pointer panic\n \t// instead of an interface conversion panic.\n-\t// It must not be set for type asserts using the commaok form.... | 2025-11-21T16:08:00 |
vercel/next.js | 10213b360b665a0a5ea034d6340c3db7aee7f095 | a3b07ce559b092ce72a2579d9671351e904c01af | Fix pack-next script for next-swc (#88126) | [
{
"path": "scripts/pack-util.ts",
"patch": "@@ -168,11 +168,11 @@ export async function packageFiles(path: string): Promise<string[]> {\n // We add the full path, but check for parent directories too.\n // This catches the case where the whole directory is added and then a single file from the direc... | 2026-01-09T08:43:53 |
facebook/react | b286430c8a585dc2e2e3cc023e7c455ec2b34ab7 | d3b8ff6e589bcacfd1c9b0aa48c42fd1c93001c1 | Add startGestureTransition API (#32785)
Stacked on #32783. This will replace [the `useSwipeTransition`
API](https://github.com/facebook/react/pull/32373).
Instead, of a special Hook, you can make updates to `useOptimistic`
Hooks within the `startGestureTransition` scope.
```
import {unstable_startGestureTransition a... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -1,13 +1,14 @@\n import React, {\n unstable_ViewTransition as ViewTransition,\n unstable_Activity as Activity,\n- unstable_useSwipeTransition as useSwipeTransition,\n useLayoutEffect,\n useEffect,\n useState,\n useId,\n+ ... | 2025-04-01T00:05:50 |
nodejs/node | d9fe28bd6b7836accff5a174ef76f7340bf5e600 | 9dbbf58cf193314c97b81714c725b6267694087c | doc: fix `CHANGELOG.md` version listing
PR-URL: https://github.com/nodejs/node/pull/59299
Reviewed-By: Ruy Adorno <ruy@vlt.sh>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,6 +39,41 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.1\">24.4.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.0\">24.4.0</a><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0<... | 2025-07-31T15:24:02 |
rust-lang/rust | 5030e8119f40ea31e1f2c78719baf39b02d3dd76 | f441cc675bfa7bc98630a21f8f9b3a63d2e19c20 | rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering | [
{
"path": "src/intrinsics/mod.rs",
"patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args => (a, b); intrinsic);\n ... | 2026-03-03T11:35:41 |
electron/electron | ac1ffb1bff429a510a321c2b56dfd55c1128bdae | 5a6f1ede6aa56da2e5d819c41de5c3717db62b61 | fix: leaked `gfx::Canvas` in `AutofillPopupView::OnPaint()` (#46384)
* perf: avoid redundant call to popup_bounds_in_view()
* refactor: use a std::optional<> for paint_canvas local
* fix: fix leaked gfx::Canvas in AutofillPopupView::OnPaint()
* refactor: remove redundant get() call when testing smart pointer for no... | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"shell/browser/ui/views/autofill_popup_view.h\"\n \n #include <memory>\n+#include <optional>\n #include <utility>\n \n #include \"base/functional/bind.h\"\n@@ -237,30 +238,33 @@ void AutofillPopupView::DoUpdateB... | 2025-04-01T16:22:26 |
golang/go | b9d86baae34197004a175c5c02b901240056a250 | 4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc | cmd/compile/internal/devirtualize: fix typos
Change-Id: I4f5a89f452a252018072d067da4cdb9a6cb0f4fe
GitHub-Last-Rev: 7eb108d3878109ccb9846d97b2adc7ea3003772a
GitHub-Pull-Request: golang/go#76396
Reviewed-on: https://go-review.googlesource.com/c/go/+/722860
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Robert ... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -131,7 +131,7 @@ func StaticCall(s *State, call *ir.CallExpr) {\n \t\t// type assertion that we make here would also have failed, but with a different\n \t\t// panic \"pkg.Iface is nil, not *pkg.Impl\", where previously we would... | 2025-11-21T15:51:03 |
facebook/react | d3b8ff6e589bcacfd1c9b0aa48c42fd1c93001c1 | a7fa8702ee0fc4c04f2d2ff9404e4f626877c113 | Unify BatchConfigTransition and Transition types (#32783)
This is some overdue refactoring. The two types never made sense. It
also should be defined by isomorphic since it defines how it should be
used by renderers rather than isomorphic depending on Fiber.
Clean up hidden classes to be consistent.
Fix missing nam... | [
{
"path": "packages/react-reconciler/src/ReactFiberActivityComponent.js",
"patch": "@@ -10,10 +10,8 @@\n import type {ReactNodeList, OffscreenMode, Wakeable} from 'shared/ReactTypes';\n import type {Lanes} from './ReactFiberLane';\n import type {SpawnedCachePool} from './ReactFiberCacheComponent';\n-import ... | 2025-03-31T23:59:07 |
nodejs/node | 5d3efaa3c8e22c5d9d233801eeb42d997fedc0b2 | e6652316a8f6b3b85cd53f9b5c7b5a51e00ce243 | src: added CHECK_NOT_NULL check for multiple eq_wrap_async
PR-URL: https://github.com/nodejs/node/pull/59267
Fixes: https://github.com/nodejs/node/issues/59266
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: theanarkh <theratliter@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1143,6 +1143,7 @@ static void LStat(const FunctionCallbackInfo<Value>& args) {\n bool use_bigint = args[1]->IsTrue();\n if (!args[2]->IsUndefined()) { // lstat(path, use_bigint, req)\n FSReqBase* req_wrap_async = GetReqWrap(args, 2, use_bigint);\n+ CHE... | 2025-07-31T01:55:11 |
vercel/next.js | b9edb9175e15b433122afb114cbec6a2951d7d02 | 3dc0366cc691dbd9cf05ff43bbd238b38578e4f6 | feat: add Claude Code plugin marketplace with Cache Components skill (#87993)
### What?
Adds a Claude Code plugin marketplace to the Next.js repository with an
initial `cache-components` plugin that provides expert guidance for
Cache Components and Partial Prerendering (PPR).
### Why?
Cache Components introduces a ... | [
{
"path": ".claude-plugin/marketplace.json",
"patch": "@@ -0,0 +1,18 @@\n+{\n+ \"name\": \"nextjs\",\n+ \"owner\": {\n+ \"name\": \"Vercel\",\n+ \"url\": \"https://vercel.com\"\n+ },\n+ \"plugins\": [\n+ {\n+ \"name\": \"cache-components\",\n+ \"source\": \"./plugins/cache-components\... | 2026-01-08T22:37:28 |
rust-lang/rust | c7220f423b335974509b603b8e1dcbb08a92184d | 79d2026ae87386ccbe8fc729d130e5e298959a48 | rename min/maxnum intrinsics to min/maximum_number and fix their LLVM lowering | [
{
"path": "compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs",
"patch": "@@ -1266,7 +1266,7 @@ fn codegen_regular_intrinsic_call<'tcx>(\n ret.write_cvalue(fx, val);\n }\n \n- sym::minnumf16 => {\n+ sym::minimum_number_nsz_f16 => {\n intrinsic_args!(fx, args... | 2026-03-03T11:35:41 |
electron/electron | 0e687d308293d4e881a12f4c35dcc4a5849a414e | 08da2b0b07b1095de2fae5eafa8d3f18ef904d9e | fix: rounded corners disappear momentarily on window close (#46382)
fix: Explicitly set rounded corners in borderless mode on Windows 11
Signed-off-by: zoy <zoy-l@outlook.com> | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -381,8 +381,7 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n \n bool rounded_corner = true;\n options.Get(options::kRoundedCorners, &rounded_corner);\n- if (!rounded_corner)\n- SetRoundedCorners(... | 2025-04-01T13:43:54 |
golang/go | 4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc | cdba82c7d6fce54b212872ae45d04c3911b11014 | cmd/link: support loading R_LARCH_PCREL20_S2 and R_LARCH_CALL36 relocs
Host libgcc.a (among other libraries) on loong64 systems may contain
such relocs if built with the "medium" code model and/or linker
relaxation, which is increasingly the case. Make the internal linker
aware of these for cgo interopability going fo... | [
{
"path": "src/cmd/internal/obj/fips140.go",
"patch": "@@ -354,8 +354,10 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_CALLLOONG64,\n \t\tobjabi.R_CALLPOWER,\n \t\tobjabi.R_GOTPCREL,\n-\t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n-\t\tobjabi.R_LOONG64_ADDR_HI, // u... | 2025-10-06T10:09:14 |
facebook/react | a7fa8702ee0fc4c04f2d2ff9404e4f626877c113 | 95671b4eb3ceb51278a2ba959667da04f0b09809 | Remove v19 beta specific issue template (#32795)
This was a template for the 19 beta. Since 19 has been stable for a
while now, we can clean this up. Any bug report for React 19 should use
the standard bug report template. | [
{
"path": ".github/ISSUE_TEMPLATE/19.md",
"patch": "@@ -1,18 +0,0 @@\n----\n-name: \"⚛React 19 beta issue\"\n-about: Report a issue with React 19 beta.\n-title: '[React 19]'\n-labels: 'React 19'\n-\n----\n-\n-\n-## Summary\n-\n-<!--\n- Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to ... | 2025-03-31T19:53:17 |
nodejs/node | a93da0a3294605f201d886c6715b80e35e50e2a3 | 698cbd0f8be1c8ffa55376a11b66324355a74f88 | fs: correct error message when FileHandle is transferred
PR-URL: https://github.com/nodejs/node/pull/59156
Fixes: https://github.com/nodejs/node/issues/59155
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-... | [
{
"path": "lib/internal/fs/promises.js",
"patch": "@@ -111,6 +111,7 @@ const kHandle = Symbol('kHandle');\n const kFd = Symbol('kFd');\n const kRefs = Symbol('kRefs');\n const kClosePromise = Symbol('kClosePromise');\n+const kCloseReason = Symbol('kCloseReason');\n const kCloseResolve = Symbol('kCloseResolv... | 2025-07-29T19:28:35 |
electron/electron | 9c4720766df74a91366efa6266b2e046684aa8cd | 5da75c4a97f91fa99faf24eea58c6dee2a8c94a1 | fix: `UtilityProcess.fork` crash before app ready (#46380)
fix: UtilityProcess.fork crash before app ready | [
{
"path": "docs/api/utility-process.md",
"patch": "@@ -44,6 +44,8 @@ Process: [Main](../glossary.md#main-process)<br />\n \n Returns [`UtilityProcess`](utility-process.md#class-utilityprocess)\n \n+**Note:** `utilityProcess.fork` can only be called after the `ready` event has been emitted on `App`.\n+\n ## ... | 2025-04-01T11:42:03 |
vercel/next.js | 2aca54fe5d5d14f126f3e305e5b1dff37060bc76 | a6b2d2e81ba4815533f958da53ee2812e72d28a7 | Turbopack: scope hoisting bug with reexport-self-star (#86131)
Closes PACK-5850
Closes https://github.com/vercel/next.js/issues/86132
Closes #86714
The problem was that you get this with scope hoisting:
```js
"index.js": () => {
// foo.js
// exports object read here
const self_import = turbopack_import... | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/binding_usage_info.rs",
"patch": "@@ -197,15 +197,22 @@ pub async fn compute_binding_usage_info(\n )?;\n \n // Compute cycles and select modules to be 'circuit breakers'\n+ //\n+ // To break cycles we need to ensure th... | 2026-01-08T20:50:11 |
rust-lang/rust | ed15a20647524f82c0f75a4666af002dfcc146d2 | 687b82e1e13eb8d1d592b86f10d9306e2b9999ab | fix: fill match arms on last comma and empty expr
Example
---
```rust
fn foo() {
match Some(2) {
Some(_) => ()$0,
}
}
```
**Before this PR**
Assist not applicable
**After this PR**
```rust
fn foo() {
match Some(2) {
Some(_) => (),
None => ${1:todo!()},$0
}
}
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_missing_match_arms.rs",
"patch": "@@ -245,14 +245,7 @@ pub(crate) fn add_missing_match_arms(acc: &mut Assists, ctx: &AssistContext<'_>)\n .arms()\n .filter(|arm| {\n if matches!(arm.pat... | 2026-03-15T11:45:38 |
golang/go | 74ebdd28d10f93fbcb58708c76b5805bc6c114a3 | 4d26d66a49c51b5a7c610c4815322809b31962d9 | [dev.simd] simd, cmd/compile: add more element types for Select128FromPair
Also includes a comment cleanup pass.
Fixed NAME processing for additional documentation.
Change-Id: Ide5b60c17ddbf3c6eafd20147981c59493fc8133
Reviewed-on: https://go-review.googlesource.com/c/go/+/722180
Reviewed-by: Junyang Shao <shaojunyang... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -941,8 +941,12 @@\n (ScaleFloat64x8 ...) => (VSCALEFPD512 ...)\n (Select128FromPairFloat32x8 ...) => (VPERM2F128256 ...)\n (Select128FromPairFloat64x4 ...) => (VPERM2F128256 ...)\n+(Select128FromPairInt8x32 ...) => (VPERM2I128256 ..... | 2025-11-19T22:17:54 |
facebook/react | 095ce8a31100e7b0021470c3e0d790da6c8dbeee | 18a11339c3db7bdaecaa2d963ab066dc8c84f70c | Fix changelog Owner Stack spelling consistency | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,9 +2,9 @@\n \n ### Owner Stack\n \n-An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. By combining owner stacks with component stacks, you can better understand the relationships between compon... | 2025-03-28T21:30:13 |
nodejs/node | e55e0a7a98f9f7bd0af976139e508c5835e10a9b | f904fa77f872b08fcd0b7adc5c06ada61153bf27 | src: clear all linked module caches once instantiated
There are two phases in module linking: link, and instantiate. These
two operations are required to be separated to allow cyclic
dependencies.
`v8::Module::InstantiateModule` is only required to be invoked on the
root module. The global references created by `Modu... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -133,12 +133,23 @@ ModuleWrap::ModuleWrap(Realm* realm,\n object->SetInternalField(kSyntheticEvaluationStepsSlot,\n synthetic_evaluation_step);\n object->SetInternalField(kContextObjectSlot, context_object);\n+ object->SetInternalF... | 2025-07-29T12:17:52 |
rust-lang/rust | 7ec77fd4d5cb035b81a8477c50763c727ceb09c1 | e0a8361373c88bd791b5b1335c6cbf83cd68e4d5 | Fix invalid suggestion on `for-loops-over-fallibles` | [
{
"path": "compiler/rustc_lint/src/for_loops_over_fallibles.rs",
"patch": "@@ -77,6 +77,8 @@ impl<'tcx> LateLintPass<'tcx> for ForLoopsOverFallibles {\n };\n \n let sub = if let Some(recv) = extract_iterator_next_call(cx, arg)\n+ && recv.span.can_be_used_for_suggestions()\n+ ... | 2026-03-15T11:29:39 |
electron/electron | 1730062c8f48834312f5766f16d63045a3506182 | 09135443a04c2155198adc29515c1f9b247ff52e | fix: flicker and ghosting in transparent windows on macOS (#46353)
* fix: transparent flicker on MAS
* Gate condition on `IsTranslucent` instead | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -196,6 +196,9 @@ static bool FromV8(v8::Isolate* isolate,\n params.type = views::Widget::InitParams::TYPE_WINDOW;\n // Allow painting before shown, to be later disabled in ElectronNSWindow.\n params.headless_mode = true;\n+ if (IsTranslucen... | 2025-03-31T23:12:35 |
vercel/next.js | 586c1ed7f88045415691b26f9fb549d47c4062d8 | 1ea5b07850ff93c3aa094df742700491408e8300 | Update deploy adapters outputs and handler interfaces for node and edge (#88247)
This updates to expand our normalized interface of handler(req, ctx) to
edge runtime as well and middleware. This also applies some fixes for
outputs and routes for app router. Validated against our test suite here
https://github.com/verc... | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -38,6 +38,7 @@ import {\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n } from '../../lib/constants'\n+\n import { normalizeLocalePath } from '../../shared/lib/i18n/normalize-locale-path'\n import { addPathPrefix } from '../... | 2026-01-08T17:40:55 |
facebook/react | deb7859bb01831b68615c5e5416174eb4b4e0d58 | 1825990c5608f0ab0c1475b4292218a508a171c9 | [compiler][snap] Fix test filter + watch mode (#32780)
Accidentally broke this when migrating our test runner to use the
bundled build https://github.com/facebook/react/pull/32758
The fix is pretty simple. File watcher should listen for changes in
`packages/babel-plugin-react-compiler` instead of `cwd`, which is now
... | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -146,7 +146,7 @@ function subscribeFilterFile(\n state: RunnerState,\n onChange: (state: RunnerState) => void,\n ) {\n- watcher.subscribe(process.cwd(), async (err, events) => {\n+ watcher.subscribe(PROJECT_ROOT, async (err, events) ... | 2025-03-28T20:03:08 |
nodejs/node | 34cfc5a44afc99880da9d8f56d68f1893d5768db | 0eeccd281c9336381849dcdc299c02baf1f8b7af | src: add nullptr checks in `StreamPipe::New`
Fixes: https://github.com/nodejs/node/issues/57612
PR-URL: https://github.com/nodejs/node/pull/57613
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com> | [
{
"path": "src/stream_pipe.cc",
"patch": "@@ -278,6 +278,8 @@ void StreamPipe::New(const FunctionCallbackInfo<Value>& args) {\n CHECK(args[1]->IsObject());\n StreamBase* source = StreamBase::FromObject(args[0].As<Object>());\n StreamBase* sink = StreamBase::FromObject(args[1].As<Object>());\n+ CHECK_... | 2025-07-28T23:46:40 |
vercel/next.js | b5c662b30ba76e264fabf9411d6c8a5c47f0e032 | f7ea163a1c1b3e06a679f038d3a44e3e38bd99b1 | Turbopack: flatten trace when it reaches cut off depth (#88118)
### What?
Previously when the trace depth reaches 150 it ignored the spans and therefore lost time.
This fixes it by flattening spans instead of dropping them. This keeps the time, but still restricts the depth.
Also limits depth to 80 instead of 150 w... | [
{
"path": "turbopack/crates/turbopack-trace-server/src/store.rs",
"patch": "@@ -16,7 +16,11 @@ use crate::{\n \n pub type SpanId = NonZeroUsize;\n \n-const CUT_OFF_DEPTH: u32 = 150;\n+/// This max depth is used to avoid deep recursion in the span tree,\n+/// which can lead to stack overflows and performance... | 2026-01-08T10:06:38 |
golang/go | 4d26d66a49c51b5a7c610c4815322809b31962d9 | e3d4645693bc030b9ff9b867f1d374a1d72ef2fe | [dev.simd] simd: fix signatures for PermuteConstant* methods
This moves the packed-immediate methods to package-private,
and adds exported versions with four parameters.
Rename PermuteConstant to PermuteScalars
Rename VPSHUFB Permute to PermuteOrZero
Rename Permute2 to ConcatPermute
Comments were repaired/enhanced.
... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -396,7 +396,7 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPOR256,\n \t\tssa.OpAMD64VPORD512,\n \t\tssa.OpAMD64VPORQ512,\n-\t\tssa.OpAMD64VPSHUFB128,\n+\t\tssa.OpAMD64VPERMB128,\n \t\tssa.OpAMD64VPERMB256,... | 2025-11-17T20:31:36 |
electron/electron | 09135443a04c2155198adc29515c1f9b247ff52e | fcd836e34f0382e9fa09541a4c2780169ec99efe | feat: Corner Smoothing CSS rule (Reland) (#46278)
* feat: Corner Smoothing CSS rule (Reland)
Reland of #45185
* Fix patch conflicts
* fixup! Fix patch conflicts
* Update expected image
The dashed border is subtly different. The new version is correct and the old one was incorrect. | [
{
"path": "docs/README.md",
"patch": "@@ -96,8 +96,9 @@ These individual tutorials expand on topics discussed in the guide above.\n * [Chrome Extensions Support](api/extensions.md)\n * [Breaking API Changes](breaking-changes.md)\n \n-### Custom DOM Elements:\n+### Custom Web Features:\n \n+* [`-electron-cor... | 2025-03-31T16:22:23 |
facebook/react | 8039f1b2a05d00437cd29707761aeae098c80adc | 4280563b04898baad423dc7d0f8b0dfea3b1797a | [compiler] Fix inferEffectDependencies lint false positives (#32769)
Currently, inferred effect dependencies are considered a
"compiler-required" feature. This means that untransformed callsites
should escalate to a build error.
`ValidateNoUntransformedReferences` iterates 'special effect' callsites
and checks that t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -73,7 +73,7 @@ export default function BabelPluginReactCompiler(\n pass.filename ?? null,\n opts.logger,\n opts.environment,\n- result?.retryErrors ?? [],\n+ ... | 2025-03-27T16:18:50 |
rust-lang/rust | c455f7ce52f4faf522fc6b73e714bd180fc93691 | 7849496c17c9ef086ee23c5d7a56c5bde9cbfe8b | Refactors to `unnecessary_{option,result}_map_or_else`:
- When checking if a function is an identity function, try to use existing functionalities.
- Some cases are no longer supported, but they were buggy | [
{
"path": "clippy_lints/src/methods/mod.rs",
"patch": "@@ -134,9 +134,8 @@ mod unnecessary_join;\n mod unnecessary_lazy_eval;\n mod unnecessary_literal_unwrap;\n mod unnecessary_map_or;\n+mod unnecessary_map_or_else;\n mod unnecessary_min_or_max;\n-mod unnecessary_option_map_or_else;\n-mod unnecessary_resul... | 2026-03-15T09:07:25 |
nodejs/node | 0eeccd281c9336381849dcdc299c02baf1f8b7af | fb9e9f1e31262afdc40a9296551d946c17022c6b | doc: fix typo in `test/common/README.md`
Corrects the misspelling of "unmask" to "umask"
PR-URL: https://github.com/nodejs/node/pull/59180
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/common/README.md",
"patch": "@@ -14,7 +14,7 @@ several other tasks:\n don't accidentally pollute the global namespace.\n \n * Some tests assume a default umask of `0o022`. To enforce this assumption,\n- the common module sets the unmask at startup. Tests that require a\n+ the common modu... | 2025-07-28T21:58:59 |
golang/go | bd2b117c2c778343106f5823e4ae99da2160d095 | 3ad2e113fc3dd202bfb2ef87d376b6ef54337f0b | crypto/tls: add QUICErrorEvent
Add a new QUICEvent type for reporting errors.
This provides a way to report errors that don't occur as a result of
QUICConn.Start, QUICConn.HandleData, or QUICConn.SendSessionTicket.
Fixes #75108
Change-Id: I941371a21f26b940e75287a66d7e0211fc0baab1
Reviewed-on: https://go-review.googl... | [
{
"path": "api/next/75108.txt",
"patch": "@@ -0,0 +1,3 @@\n+pkg crypto/tls, const QUICErrorEvent = 10 #75108\n+pkg crypto/tls, const QUICErrorEvent QUICEventKind #75108\n+pkg crypto/tls, type QUICEvent struct, Err error #75108",
"additions": 3,
"deletions": 0,
"language": "Plain Text"
},
{
... | 2025-11-08T19:22:59 |
vercel/next.js | f24e66adac4972a9b985ce57a6dbc821343ae518 | 507194aa64c6f0ef21a07f40e1f2a4f862154bd9 | Turbopack: include children count in "task execution completed" span (#87318)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're ma... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1773,7 +1773,11 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // at the start of every step.\n \n #[cfg(not(feature = \"trace_task_details\"))]\n- let _span = tracing::trace_span!(\"task exec... | 2026-01-08T09:09:57 |
facebook/react | e0c99c4ea1cae566ad8040180cf180ae058cb8bf | a5297ece6217f5495cbe38ba58f928b2697b0f99 | Rename <ViewTransition className="..."> to <ViewTransition default="..."> (#32734)
It was always confusing that this is not a CSS class but a
view-transition-class.
The `className` sticks out a bit among its siblings `enter`, `exit`,
`update` and `share`. The idea is that the most specific definition
override is the ... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -33,7 +33,7 @@ const b = (\n function Component() {\n return (\n <ViewTransition\n- className={\n+ default={\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p class... | 2025-03-26T19:02:05 |
electron/electron | 49aba471dc80258c4f004772619e0e6dc80fcef6 | 46b108e9a4bd61dafd1d4138b1b942754f745efa | feat: add support for associating a Menu with a WebFrameMain (#45138)
* feat: add support for associating a Menu with a WebFrameMain
This allows certain OS level features to activate such as Writing Tools, Autofill.. and Services.
There appears to be a bug in macOS where the responder chain isn't traversed if the me... | [
{
"path": "docs/api/menu.md",
"patch": "@@ -73,6 +73,8 @@ The `menu` object has the following instance methods:\n \n * `options` Object (optional)\n * `window` [BaseWindow](base-window.md) (optional) - Default is the focused window.\n+ * `frame` [WebFrameMain](web-frame-main.md) (optional) - Provide the ... | 2025-03-28T18:50:07 |
nodejs/node | 0bbe7c36c9b637a070ac8c0dfdf5e6130ffff756 | 9a3e755bdb172e88315a2dec2eb884cda132c5fa | src: add percentage support to --max-old-space-size
This commit adds support for specifying --max-old-space-size as a
percentage of system memory, in addition to the existing MB format.
A new HandleMaxOldSpaceSizePercentage method parses percentage values,
validates that they are within the 0-100% range, and provides ... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1719,6 +1719,22 @@ changes:\n \n Specify the maximum size, in bytes, of HTTP headers. Defaults to 16 KiB.\n \n+### `--max-old-space-size-percentage=PERCENTAGE`\n+\n+Sets the max memory size of V8's old memory section as a percentage of available system memory.\n+Thi... | 2025-07-28T05:06:16 |
vercel/next.js | 0f9b732852f49820aac65e6231ef79c0668cdbdf | b933d3dc3ada4e4eb1bfec1f561394738a6d8f8a | Fix relative same host redirects in node middleware (#88253)
This ensures we properly relativize URLs in node middleware when
deployed and local. Tests weren't catching this previously as none were
asserting the raw Location header value due to node-fetch auto-resolving
the value.
Fixes: https://github.com/vercel/nex... | [
{
"path": "packages/next/src/server/web/adapter.ts",
"patch": "@@ -455,7 +455,10 @@ export async function adapter(\n if (!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE) {\n if (redirectURL.host === requestURL.host) {\n redirectURL.buildId = buildId || redirectURL.buildId\n- respons... | 2026-01-08T02:28:28 |
golang/go | d58b733646d2d52638b08d5c44afbc7292aeca4d | 1bc54868d4fd03e3716e7ad9669d87c34c8aaa2d | runtime: track goroutine location until actual STW
TestTraceSTW / TestTraceGCSTW currently tracks the location (M/P) of the
target goroutines until it reaches the "start" log message, assuming the
actual STW comes immediately afterwards.
On 386 with TestTraceGCSTW, it actually tends to take >10ms after the
start log ... | [
{
"path": "src/runtime/proc_test.go",
"patch": "@@ -1321,11 +1321,13 @@ func runTestTracesSTW(t *testing.T, run int, name, stwType string) (err error) {\n \t//\n \t// 2. Once found, track which M and P the target goroutines run on until...\n \t//\n-\t// 3. Look for the \"TraceSTW\" \"start\" log message, wh... | 2025-11-20T21:21:09 |
electron/electron | ac616ef41d9379ead79130d6da071cad220b21d2 | e09712f0e1287270d3c10b726beb773438d450d4 | fix: allow NSMenuItems to be disabled (#46307)
* fix: disable NSMenu autoenable feature to allow disabling of NSMenuItems
* style: fix linter issues and update comments
* chore: remove unneeded comment | [
{
"path": "shell/browser/ui/cocoa/electron_menu_controller.mm",
"patch": "@@ -320,6 +320,10 @@ - (NSMenuItem*)makeMenuItemForIndex:(NSInteger)index\n NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:label\n action:@selector(itemSelected:)\n ... | 2025-03-28T00:43:46 |
facebook/react | 33999c43177e13580730c2fad94a77f4b0e08ef2 | 5f232d72d4cb15470c77e91c30e9cf61e090508c | [compiler][be] Test runner (snap) now uses tsup bundled plugin (#32758)
Currently, `babel-plugin-react-compiler` is bundled with (almost) all
external dependencies. This is because babel traversal and ast logic is
not forward-compatible. Since `babel-plugin-react-compiler` needs to be
compatible with babel pipelines a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/package.json",
"patch": "@@ -12,7 +12,7 @@\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"./scripts/link-react-compiler-runtime.sh && yarn snap:ci\",\n \"jest\": \"yarn build && ts-node node_modules/.bin/jest\",\n- \"snap\": \"node... | 2025-03-26T18:27:42 |
golang/go | ff654ea1000af81bd08f24faf06c2113e8df001a | a662badab918d7708bbc750f24b9c7313520e2b0 | net/url: permit colons in the host of postgresql:// URLs
PostgreSQL's postgresql:// URL scheme permits a comma-separated list of
host:ports to appear in the host subcomponent:
https://www.postgresql.org/docs/11/libpq-connect.html#LIBPQ-MULTIPLE-HOSTS
While this is not compliant with RFC 3986, it's something we've acc... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -489,7 +489,7 @@ func parse(rawURL string, viaRequest bool) (*URL, error) {\n \t\tif i := strings.Index(authority, \"/\"); i >= 0 {\n \t\t\tauthority, rest = authority[:i], authority[i:]\n \t\t}\n-\t\turl.User, url.Host, err = parseAuthority(authority)\n+\t\turl.... | 2025-11-19T23:32:04 |
vercel/next.js | d044c5542ee9e62781cd14b68f4b77627ecb5412 | d99021e9a2494eb3269a4ca6cb456b23d2879f3a | ci: fix javascript-urls test to account for React 18 (#88249)
This was caught by our React 18 tests which only run on `canary`. There
was a console error about breaking `javascript:` urls in an upcoming
React release but it didn't actually block them. | [
{
"path": "test/e2e/app-dir/javascript-urls/javascript-urls.test.ts",
"patch": "@@ -7,6 +7,8 @@ import {\n } from 'next-test-utils'\n import type { Page, Request } from 'playwright'\n \n+const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+\n describe('javascript-urls', () => {\n const... | 2026-01-08T00:27:04 |
nodejs/node | 405ad4e8fb188ef7a6c925629046e1cb79e8212d | cd1a90d1ee6f615963180b9a2df3987f98d6123f | doc: update the instruction on how to verify releases
PR-URL: https://github.com/nodejs/node/pull/59113
Fixes: https://github.com/nodejs/node/issues/58904
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Ruy Adorno <ruy@vlt.sh>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Marco Ippolito <marc... | [
{
"path": "README.md",
"patch": "@@ -95,37 +95,27 @@ _docs_ subdirectory. Version-specific documentation is also at\n \n ### Verifying binaries\n \n-Download directories contain a `SHASUMS256.txt` file with SHA checksums for the\n-files.\n+Download directories contain a `SHASUMS256.txt.asc` file with SHA ch... | 2025-07-27T21:48:24 |
facebook/react | f99c9feaf786fbdad0ad8d2d81196a247302dd3c | 8ac25e5201579c65d115d91c211ac719a235d982 | Fix ownerStackLimit feature gating for tests (#32726)
https://github.com/facebook/react/pull/32529 added a dynamic flag for
this, but that breaks tests since the flags are not defined everywhere.
However, this is a static value and the flag is only for supporting
existing tests. So we can override it in the test conf... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js",
"patch": "@@ -29,7 +29,3 @@ export const enableUseEffectCRUDOverload = __VARIANT__;\n export const enableFastAddPropertiesInDiffing = __VARIANT__;\n export const enableLazyPublicInstanceInFabric = __VARIANT__;\n export const renameEle... | 2025-03-26T16:01:05 |
golang/go | c1b7112af8331d37e33be521d2d8baa552945971 | ca37d24e0b9369b8086959df5bc230b38bf98636 | os/signal: make NotifyContext cancel the context with a cause
This is especially useful when combined with the nesting semantics of
context.Cause, and with errgroup's use of CancelCauseFunc.
For example, with the following code
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt)
defer stop()
ser... | [
{
"path": "doc/next/6-stdlib/99-minor/os/signal/notifycontext.md",
"patch": "@@ -0,0 +1,2 @@\n+[NotifyContext] now cancels the returned context with [context.CancelCauseFunc]\n+and an error indicating which signal was received.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
... | 2025-11-18T16:19:04 |
electron/electron | dc61a6ab8042ec9379ecb2a1e4ac8a207cec15f0 | a0c859fc4fd4e6fa2e10d943604998a3298cd458 | fix: possible crash in `shell.readShortcutLink` (#46294)
fix: possible crash in shell.readShortcutLink | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -136,7 +136,7 @@ refactor_unfilter_unresponsive_events.patch\n build_disable_thin_lto_mac.patch\n build_add_public_config_simdutf_config.patch\n revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n-ignore_parse_errors_for_pkey_appusermodel_toa... | 2025-03-27T19:27:32 |
vercel/next.js | 69d9d2909c6ed4e3860c7f58bebdad381f2fb1e1 | 64c08f42a732268b279ab41440018a9ea04bfe85 | Disallow javascript urls in router methods and redirects (#88185)
React already disallows javascript URLs. This change extends this
prohibition to Next.js specific APIs that don't serialize to an href on
an anchor tag. There are workarounds if need be but this is considered a
bugfix because these URLs are non-routable... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -975,5 +975,6 @@\n \"974\": \"Failed to find Server Action%s. This request might be from an older or newer deployment.\\\\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action\",\n \"975\": \"Failed to find Server Action. This reque... | 2026-01-07T19:49:34 |
nodejs/node | 3b574436edec81b30a034708482af4243a5274d7 | 7232f09995b537a0fff8769ab3947e294084bec1 | test: use mustSucceed in test-fs-read
This commit refactors the callback in test/parallel/test-fs-read.js
to use common.mustSucceed() instead of common.mustCall().
common.mustSucceed() is the preferred helper for standard error-first
callbacks that are expected to succeed, as it provides an explicit
check that the `e... | [
{
"path": "test/parallel/test-fs-read-zero-length.js",
"patch": "@@ -8,7 +8,7 @@ const fd = fs.openSync(filepath, 'r');\n const bufferAsync = Buffer.alloc(0);\n const bufferSync = Buffer.alloc(0);\n \n-fs.read(fd, bufferAsync, 0, 0, 0, common.mustCall((err, bytesRead) => {\n+fs.read(fd, bufferAsync, 0, 0, 0... | 2025-07-27T04:54:22 |
rust-lang/rust | 77eea39d459ef5a7dd91584f8560984e3b8dd960 | 03749d625404994801804ab9f2a539936c50bfea | rustdoc: error out on `--test` with `--emit`
These options don't behave reasonably when combined right now, and there
are no tests and no docs for how they should.
For the short term, make this a fatal error. If we decide to assign this
some semantics, then we can do that at any time. | [
{
"path": "src/librustdoc/config.rs",
"patch": "@@ -462,8 +462,13 @@ impl Options {\n return None;\n }\n \n+ let should_test = matches.opt_present(\"test\");\n+\n let mut emit = FxIndexMap::<_, EmitType>::default();\n for list in matches.opt_strs(\"emit\") {\n+ ... | 2026-03-15T01:58:58 |
facebook/react | 8ac25e5201579c65d115d91c211ac719a235d982 | f9e1b16098f2ff4ed483285219b07066525796b6 | Warn for duplicate ViewTransition names (#32752)
This adds early logging when two ViewTransitions with the same name are
mounted at the same time. Whether they're part of a View Transition or
not.
This lets us include the owner stack of each one. I do two logs so that
you can get the stack trace of each one of the du... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -109,6 +109,7 @@ import {\n ForceClientRender,\n DidCapture,\n AffectedParentLayout,\n+ ViewTransitionNamedStatic,\n } from './ReactFiberFlags';\n import {\n commitStartTime,\n@@ -254,6 +255,10 @@ import {\n pushMutat... | 2025-03-26T02:03:05 |
electron/electron | 17e38230d521ae75f4a77c35399f2f65f9d59e4e | 3ae285b614e7fd24b5a68ac922321e41d53388e4 | fix: crash when drag-dropping some files (#46253)
* fix: crash when drag-dropping some files
* fix: extra destination context scope | [
{
"path": "shell/renderer/api/electron_api_context_bridge.cc",
"patch": "@@ -687,17 +687,26 @@ v8::MaybeLocal<v8::Object> CreateProxyForAPI(\n continue;\n }\n }\n- v8::Local<v8::Value> value;\n- if (!api.Get(key, &value))\n- continue;\n-\n- auto passed_value = P... | 2025-03-26T22:17:23 |
rust-lang/rust | 39631fdac191893a6eb4d000d5b258e92cae2304 | 35f1109ece895199e4b8d755b101e9a481d18243 | Point at unit structs on foreign crates in type errors when they are the pattern of a let binding
Consts and unit structs in patterns can be confusing if they are mistaken for new bindings. We already provide some context for unit structs and consts that come from the current crate, we now also point at those from for... | [
{
"path": "compiler/rustc_hir_typeck/src/pat.rs",
"patch": "@@ -1636,69 +1636,75 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n span_bug!(pat_span, \"unexpected resolution for path pattern: {resolved_pat:?}\");\n };\n \n- if let Some(span) = self.tcx.hir_res_span(pat_res) {\n+ let ... | 2026-03-15T01:50:36 |
nodejs/node | 0259df9faf9ff782c417552f4ce3ed96dc9f3254 | 5e1a4fa3e4fdbd936e939ba9672e1fc9bcb8b4e9 | cli: add --use-env-proxy
This does the same as NODE_USE_ENV_PROXY. When both are set,
like other options that can be configured from both sides,
the CLI flag takes precedence.
PR-URL: https://github.com/nodejs/node/pull/59151
Fixes: https://github.com/nodejs/node/issues/59100
Reviewed-By: Ilyas Shabi <ilyasshabi94@gm... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -2999,6 +2999,21 @@ environment variables.\n \n See `SSL_CERT_DIR` and `SSL_CERT_FILE`.\n \n+### `--use-env-proxy`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1.1 - Active Development\n+\n+When enabled, Node.js parses the `HTTP_PROXY`, `HTTPS_PROXY` and... | 2025-07-26T20:43:10 |
facebook/react | f9e1b16098f2ff4ed483285219b07066525796b6 | 4845e16c22caf27334a1eab712ed258a9ae09752 | Avoid double logging component render time (#32749)
This got moved into the functional component and class component case
statements here:
https://github.com/facebook/react/commit/0de1233fd180969f7ffdfc98151922f2466ceb1f.
So that we could separate the error case for class components.
However, due to a faulty rebase t... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -3095,25 +3095,6 @@ function commitPassiveMountOnFiber(\n const prevEffectStart = pushComponentEffectStart();\n const prevEffectErrors = pushComponentEffectErrors();\n \n- // If this component rendered in Profiling mode (DE... | 2025-03-26T00:57:20 |
vercel/next.js | 3b5a210f3df0e48b6893a415a3e5076e033c6d53 | bda89d1d3aeb714acaec30977045550ab7ffaf26 | fix(next/image): bump sharp@0.34.5 (#88238)
Release notes: https://github.com/lovell/sharp/releases/tag/v0.34.5
- Upgrade to libvips v8.17.3 for upstream bug fixes.
- Add experimental support for prebuilt Linux RISC-V 64-bit binaries.
- Support building from source with npm v12+
- Add support for BigTIFF output.
- Im... | [
{
"path": "packages/next/package.json",
"patch": "@@ -127,7 +127,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.4\"\n+ \"sharp\": \"^0.34.5\"\n },\n \"devDependencies\": {\n \"@babel/code-frame\": \"7.26.2\",",
"additions": 1,
"deletions": 1,
"language": ... | 2026-01-07T17:38:38 |
electron/electron | 3212f60d690dc143037dd4a76a618b605f7c2d3d | a5076a663b1ef71d9265da99cedeb596f8a790c1 | fix: set `userAgent` on `navigationHistory.restore()` (#46260)
fix: set userAgent on navigationHistory restore | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2533,6 +2533,9 @@ void WebContents::RestoreHistory(\n auto navigation_entries = std::make_unique<\n std::vector<std::unique_ptr<content::NavigationEntry>>>();\n \n+ blink::UserAgentOverride ua_override;\n+ ua_override.ua_str... | 2025-03-26T15:59:19 |
rust-lang/rust | 249f52c1e0189479db18c61eff75b0b5926aa525 | bfca1f1187bdcf653f744e382a129889dc743204 | Fix 32bit test | [
{
"path": "tests/ui/const-generics/min_const_generics/invalid-patterns.32bit.stderr",
"patch": "@@ -3,24 +3,48 @@ error[E0308]: mismatched types\n |\n LL | get_flag::<false, 0xFF>();\n | ^^^^ expected `char`, found `u8`\n+ |\n+note: expected because of the type of the const par... | 2026-03-14T23:24:23 |
facebook/react | 4845e16c22caf27334a1eab712ed258a9ae09752 | 553a175c90fd5c89a3c7398aec6edc226a370a95 | [ci] Fix param casing (#32748)
Casing was incorrect.
Tested by running locally with a PAT.
```
$ scripts/release/download-experimental-build.js --commit=2d40460cf768071d3a70b4cdc16075d23ca1ff25
Command failed: gh attestation verify artifacts_combined.zip --repo=facebook/react
Error: failed to fetch attestations fro... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_reques... | 2025-03-25T20:05:41 |
vercel/next.js | bda89d1d3aeb714acaec30977045550ab7ffaf26 | 117c33b2eab8626960dcd20fffe7e3b4098d99e6 | Only log `pending revalidates...` debug log if applicable (#88221)
When [verbose cache
logging](https://nextjs.org/docs/app/guides/incremental-static-regeneration#verifying-correct-production-behavior)
is enabled, we were always adding a debug log as follows after rendering
a page (during prerendering or at request ti... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -1086,18 +1086,23 @@ export async function handleAction({\n \n // For form actions, we need to continue rendering the page.\n if (isFetchAction) {\n+ // If we skip page rendering, we need to ensure pendi... | 2026-01-07T15:39:35 |
nodejs/node | 6ea421a3d349693c7bcb4f2245ef7b1d613f23fd | a7999c602cf7d70095dab3e5201d8c2f4b6a1867 | module: fix conditions override in synchronous resolve hooks
1. Make sure that the conditions are converted into arrays when
being passed into user hooks.
2. Pass the conditions from user hooks into the ESM resolution
so that it takes effect.
PR-URL: https://github.com/nodejs/node/pull/59011
Fixes: https://github... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -51,6 +51,7 @@ const {\n ReflectSet,\n RegExpPrototypeExec,\n SafeMap,\n+ SafeSet,\n String,\n StringPrototypeCharAt,\n StringPrototypeCharCodeAt,\n@@ -154,6 +155,7 @@ const internalFsBinding = internalBinding('fs');\n const { safeGet... | 2025-07-26T09:13:11 |
rust-lang/rust | 75511819a482f25f5cd221f68b60f80b866c0644 | 35f1109ece895199e4b8d755b101e9a481d18243 | Turn label into structured suggestion for `.as_ref()` and `.as_mut()`
```
error[E0382]: use of moved value: `foo`
--> $DIR/as-ref-2.rs:10:14
|
LL | let foo = Some(Struct);
| --- move occurs because `foo` has type `Option<Struct>`, which does not implement the `Copy` trait
LL | let _x: Option<St... | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/mod.rs",
"patch": "@@ -1377,7 +1377,9 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n matches!(tcx.get_diagnostic_name(def_id), Some(sym::Option | sym::Result))\n });\n if is_option... | 2026-03-14T22:40:28 |
electron/electron | d2c2261c58023a8319c8fd9c0facb06e0da47217 | 8412d783104e7dacc9448c4ada34899bce739272 | fix: hard crash on invalid command line switches (#46004)
* fix: hard crash on invalid command line switch
* Update docs/api/command-line.md
Co-authored-by: Niklas Wenzel <dev@nikwen.de>
* chore: feedback from review
* docs: Add breaking change note
---------
Co-authored-by: Niklas Wenzel <dev@nikwen.de> | [
{
"path": "docs/api/command-line.md",
"patch": "@@ -20,45 +20,87 @@ document.\n \n #### `commandLine.appendSwitch(switch[, value])`\n \n-* `switch` string - A command-line switch, without the leading `--`\n-* `value` string (optional) - A value for the given switch\n+* `switch` string - A command-line switc... | 2025-03-26T13:14:03 |
facebook/react | 553a175c90fd5c89a3c7398aec6edc226a370a95 | 740a4f7a02aee67495d086a46f92e72e2318cc45 | [ci] Fix incorrect condition (#32746)
Oops, missed this when I switched it from checking if its a fork to
checking if its from this repo. | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_reques... | 2025-03-25T18:37:51 |
vercel/next.js | f59cf2e4199272de4bb31aff6420a984dadb63b9 | 6805af48baf1128e6b2a9e8f1752ee5982f02c60 | Add test creation instructions to agents.md (#88215)
## Enhance test documentation with best practices and non-interactive
test generation
### What?
Expanded the AGENTS.md documentation with detailed guidance on writing
tests, including:
- Added non-interactive test generation instructions for AI agents
- Documented ... | [
{
"path": "AGENTS.md",
"patch": "@@ -110,7 +110,68 @@ pnpm test-dev-turbo test/development/\n \n - `pnpm test-unit` - Run unit tests only (fast, no browser)\n - `pnpm testonly <path>` - Run tests without rebuilding (faster iteration)\n-- `pnpm new-test` - Generate a new test file from template\n+- `pnpm new... | 2026-01-07T14:50:43 |
golang/go | 790384c6c23f7ce44199ea3cd61c856d632b08aa | a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0 | spec: adjust rule for type parameter on RHS of alias declaration
Per discussion on issue #75885, a type parameter on the RHS of an alias
declaration must not be declared in the same declaration (but it may be
declared by an enclosing function). This relaxes the spec slightly and
allows for (pre-existing) test cases.
... | [
{
"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.26 (Nov 12, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2487,11 +2487,1... | 2025-11-18T23:47:44 |
electron/electron | 48a38c0289925c5b245078e822d232f451d92633 | 6e44662f15ae753d9649db71937b62a8d587a1f7 | fix: build failure when printing is disabled (#46283)
fix: ftbfs when printing is disabled | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1988,6 +1988,7 @@ void WebContents::DraggableRegionsChanged(\n draggable_region_ = DraggableRegionsToSkRegion(regions);\n }\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n void WebContents::PrintCrossProcessSubframe(\n content::WebContent... | 2025-03-26T09:04:39 |
facebook/react | dc9b74647e093b531dc876a2438f12dac776e480 | b59f18601179bb06a2c32a76547fd4929aa1ce9c | [DevTools] Add fb local build command (#32644)
<!--
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 s... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -8,6 +8,7 @@\n \"build:chrome\": \"cross-env NODE_ENV=production node ./chrome/build\",\n \"build:chrome:fb\": \"cross-env NODE_ENV=production FEATURE_FLAG_TARGET=extension-fb node ./chrome/build --crx\",\n \"build:chrome:... | 2025-03-25T13:45:48 |
golang/go | a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0 | 32f5aadd2ffc60421c62b185fa7668012fb5e73e | net/http: correctly close fake net.Conns
Fix an inverted test in fakeNetConn.Close that caused closing
a connection to not break the other half of the connection.
Change-Id: I4e53f78402f8e503c749d57f294a4524abdccfb5
Reviewed-on: https://go-review.googlesource.com/c/go/+/722220
Reviewed-by: Nicholas Husin <nsh@golang.... | [
{
"path": "src/net/http/netconn_test.go",
"patch": "@@ -180,9 +180,10 @@ func (c *fakeNetConn) Close() error {\n \tc.loc.unlock()\n \t// Remote half of the connection reads EOF after reading any remaining data.\n \tc.rem.lock()\n-\tif c.rem.readErr != nil {\n+\tif c.rem.readErr == nil {\n \t\tc.rem.readErr ... | 2025-11-19T19:25:49 |
rust-lang/rust | e389568d920963504c49edc1cc277643471a0907 | 1d0d647b4c6d11ac42a9d1c00c141db7278ad8bd | fix clippy test | [
{
"path": "tests/ui/track-diagnostics.stderr",
"patch": "@@ -2,7 +2,9 @@ error[E0308]: mismatched types\n --> tests/ui/track-diagnostics.rs:LL:CC\n |\n LL | const S: A = B;\n- | ^ expected `A`, found `B`\n+ | - ^ expected `A`, found `B`\n+ | |\n+ | expe... | 2026-03-14T20:43:57 |
nodejs/node | 5e86ad9c6c64deb0c813f3c9c85f8e9654f8a76f | ad81548bf5e6e243940d468a61acc794a124c891 | test: fix flaky test-worker-message-port-transfer-filehandle test
PR-URL: https://github.com/nodejs/node/pull/59158
Fixes: https://github.com/nodejs/node/issues/59145
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeas... | [
{
"path": "test/parallel/test-worker-message-port-transfer-filehandle.js",
"patch": "@@ -86,6 +86,7 @@ const { once } = require('events');\n });\n \n assert.deepStrictEqual(await readPromise, await fs.readFile(__filename));\n+ await fh.close();\n })().then(common.mustCall());\n \n (async function() {",... | 2025-07-26T07:44:26 |
facebook/react | ee0855f427832e899767f7659c5289364218ab9e | 7e4c258e160d3a2ca690b44a5938271873919ee1 | [ci] Fix missing permissions for prereleases (#32729)
Missed these earlier.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32729).
* __->__ #32729
* #32728 | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -29,6 +29,9 @@ jobs:\n publish_prerelease:\n name: Publish prelease (${{ inputs.release_channel }}) ${{ inputs.commit_sha }} @${{ inputs.dist_tag }}\n runs-on: ubuntu-latest\n+ permissions:\n+ # We use github.token to down... | 2025-03-24T22:24:45 |
electron/electron | 4eda76de3685318c3f342760b0d35ea77068236a | ced8fdbce820a1d85c0db6ff299559b21d209ec8 | build: fixup windows source cache for release (#46236)
* build: fixup windows source cache for release
* build: fixup ffmpeg gn gen
* build: add build-tools depot_tools to PATH
There are some cases where it is still expected that depot_tools be in the path
* put back regular gn gen for ffmpeg
* build: add retry t... | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -185,7 +185,7 @@ runs:\n if: ${{ inputs.is-release == 'true' }}\n run: |\n cd src\n- e d gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n+ gn... | 2025-03-25T18:24:58 |
rust-lang/rust | bfca1f1187bdcf653f744e382a129889dc743204 | ff0ce4f5fa83a03082ed6efb3f0088dcd935be92 | fix clippy test | [
{
"path": "src/tools/clippy/tests/ui/track-diagnostics.stderr",
"patch": "@@ -2,7 +2,9 @@ error[E0308]: mismatched types\n --> tests/ui/track-diagnostics.rs:LL:CC\n |\n LL | const S: A = B;\n- | ^ expected `A`, found `B`\n+ | - ^ expected `A`, found `B`\n+ | |\n+ ... | 2026-03-14T20:43:57 |
nodejs/node | a480d998d99b23ec37624845197c53cc4f3020be | daa9e4bb8e3005af00417f8c4a14c4303771bcc1 | process: make execve's args argument optional
Align the code with the documentation and similar methods used to
execute os commands - the `args` argument should be optional, and if
omitted, treated as an empty array (`[]`).
Fixes: https://github.com/nodejs/node/issues/58411
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "lib/internal/process/per_thread.js",
"patch": "@@ -279,7 +279,7 @@ function wrapProcessMethods(binding) {\n return true;\n }\n \n- function execve(execPath, args, env) {\n+ function execve(execPath, args = [], env) {\n emitExperimentalWarning('process.execve');\n \n const { isMain... | 2025-07-26T02:35:57 |
vercel/next.js | 6805af48baf1128e6b2a9e8f1752ee5982f02c60 | bf30cd547a7c9c9260b15bb23d096a1c303b5f31 | Add more debug logs to `'use cache'` wrapper (#88219)
The cache handlers are generally responsible for adding debug logs to
their methods, see
`packages/next/src/server/lib/cache-handlers/default.ts` for reference.
However, the `'use cache'` wrapper in
`packages/next/src/server/use-cache/use-cache-wrapper.ts` also add... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -1256,6 +1256,20 @@ export async function cache(\n // generating static pages for such data. It's better to leave\n // a dynamic hole that can be filled in during the resume with\n // ... | 2026-01-07T14:04:31 |
golang/go | 32f5aadd2ffc60421c62b185fa7668012fb5e73e | a18aff805706bfdaeb9aca042111fae32f9f8b61 | cmd/compile: stack allocate backing stores during append
We can already stack allocate the backing store during append if the
resulting backing store doesn't escape. See CL 664299.
This CL enables us to often stack allocate the backing store during
append *even if* the result escapes. Typically, for code like:
f... | [
{
"path": "src/cmd/compile/internal/deadlocals/deadlocals.go",
"patch": "@@ -44,6 +44,11 @@ func Funcs(fns []*ir.Func) {\n \t\t\t\t*as.lhs = ir.BlankNode\n \t\t\t\t*as.rhs = zero\n \t\t\t}\n+\t\t\tif len(assigns) > 0 {\n+\t\t\t\t// k.Defn might be pointing at one of the\n+\t\t\t\t// assignments we're overwr... | 2025-09-12T21:43:19 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.