repo stringclasses 11
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 59.2k | files listlengths 1 300 | timestamp timestamp[s]date 2016-04-11 04:39:55 2026-04-09 07:34:40 |
|---|---|---|---|---|---|
golang/go | b604148c4e8ad61640d12cde40379bc3c137d8a6 | 22f24f90b52958158a2de5fa68adf0faf7699e4e | runtime: fix double wakeup in CPU profile buffer
The profBuf.wakeupExtra method wakes up the profile reader if it's
sleeping, either when the buffer is closed or when there is a pending
overflow entry. Unlike in profBuf.write, profBuf.wakeupExtra does not
clear the profReaderSleeping bit before doing the wakeup. As a... | [
{
"path": "src/runtime/profbuf.go",
"patch": "@@ -406,6 +406,11 @@ func (b *profBuf) wakeupExtra() {\n \tfor {\n \t\told := b.w.load()\n \t\tnew := old | profWriteExtra\n+\t\t// Clear profReaderSleeping. We're going to wake up the reader\n+\t\t// if it was sleeping and we don't want double wakeups in case\n... | 2025-11-21T14:09:57 |
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 |
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 |
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 |
electron/electron | 0e3246e20d709ddfdc4a1820278068d771f1e9d7 | 0ff98810ba1cabba826343a69e7c72997304f9f0 | fix: ensure maximize is emitted when reduce motion is enabled on macOS (#46459)
* fix: ensure maximize is emitted when reduce motion is enabled on macOS
* Revert "build: reenable graphics effects for macOS tests (#46454)"
This reverts commit 682ea345ace76d41996165c7efa55852da9546ab. | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -118,12 +118,6 @@ jobs:\n - name: Turn off the unexpectedly quit dialog on macOS\n if: ${{ inputs.target-platform == 'macos' }}\n run: defaults write com.apple.CrashReporter DialogType server\n- - name: Reenabl... | 2025-04-03T16:14:16 |
golang/go | 22f24f90b52958158a2de5fa68adf0faf7699e4e | cfb9d2eb73d9ecb0e5ea2ce5ef0d3f23593087be | cmd/compile: change testing.B.Loop keep alive semantic
This CL implements this initial design of testing.B.Loop's keep variable
alive semantic:
https://github.com/golang/go/issues/61515#issuecomment-2407963248.
Fixes #73137.
Change-Id: I8060470dbcb0dda0819334f3615cc391ff0f6501
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -0,0 +1,313 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package bloop\n+\n+// This file contains support routines... | 2025-10-30T19:14:57 |
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 |
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 |
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 |
electron/electron | 0ff98810ba1cabba826343a69e7c72997304f9f0 | f48680a98392dc0aeae305c9ebf89c8a36b18468 | fix: `NativeWindowViews::GetRestoredState()` can return wrong state when maximized (#46450)
fix: NativeWindowViews::GetRestoredState() returning wrong state
Introduced by the af58931 Chromium 131.0.6744.0 roll, specifically
https://github.com/electron/electron/pull/43948/commits/9840662#diff-f9d7ef7
98406626 | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -1839,7 +1839,7 @@ ui::mojom::WindowShowState NativeWindowViews::GetRestoredState() {\n return ui::mojom::WindowShowState::kMaximized;\n }\n #else\n- return ui::mojom::WindowShowState::kMinimized;\n+ return ui::mojom::WindowShowS... | 2025-04-03T13:55:04 |
golang/go | 0f32fbc631875bb729c74b839328fdf541bfed9a | 3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9 | net/http: populate Response.Request when using NewFileTransport
Fixes #51562
Change-Id: Ia6fe4728b1e3e0cf3a6462be99c1044260cadf31
Reviewed-on: https://go-review.googlesource.com/c/go/+/720822
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@goog... | [
{
"path": "src/net/http/filetransport.go",
"patch": "@@ -57,15 +57,15 @@ func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {\n \t// sends our *Response on, once the *Response itself has been\n \t// populated (even if the body itself is still being\n \t// written to the res.Body, a p... | 2025-11-16T00:26:27 |
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 |
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 |
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 |
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 | 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 |
golang/go | 3e0a8e78677a5c4035e5305446ca8f8ac3ebf2f9 | 831af61120b9b846965996ed1d4daaa079847b2a | net/http: preserve original path encoding in redirects
Fixes #70758
Change-Id: I9fc6fe98c194351557c6219513918b7593899bc1
Reviewed-on: https://go-review.googlesource.com/c/go/+/720821
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
R... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -2881,6 +2881,19 @@ func TestRedirectBadPath(t *testing.T) {\n \t}\n }\n \n+func TestRedirectEscapedPath(t *testing.T) {\n+\tbaseURL, redirectURL := \"http://example.com/foo%2Fbar/\", \"qux%2Fbaz\"\n+\treq := httptest.NewRequest(\"GET\", baseURL, NoBody)\... | 2025-11-16T00:13:40 |
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 |
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 |
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 |
golang/go | 831af61120b9b846965996ed1d4daaa079847b2a | 87269224cb3609a967b821c89f5a920864969a10 | net/http: use HTTP 307 redirects in ServeMux
Clients receiving an HTTP 301 Moved Permanently may conservatively
change the method of a POST request to GET.
The newer HTTP 307 Temporary Redirect and 308 Permanent Redirect
explicitly allows retrying POST requests after the redirect.
These should be safe for ServeMux as ... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -288,7 +288,7 @@ func testHostHandlers(t *testing.T, mode testMode) {\n \t\t\tif s != vt.expected {\n \t\t\t\tt.Errorf(\"Get(%q) = %q, want %q\", vt.url, s, vt.expected)\n \t\t\t}\n-\t\tcase StatusMovedPermanently:\n+\t\tcase StatusTemporaryRedirect:\n \t... | 2025-11-15T23:58:58 |
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 |
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 |
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 |
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 |
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 |
golang/go | 87269224cb3609a967b821c89f5a920864969a10 | 7aa9ca729fcb063506ea4ed35ee9b2673a853e4f | net/http: update Response.Request.URL after redirects on GOOS=js
Fixes #71346
Change-Id: Id4053626e621faf50bb88a10ca0d540f393c8e01
Reviewed-on: https://go-review.googlesource.com/c/go/+/720860
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"net/http/internal/ascii\"\n+\t\"net/url\"\n \t\"strconv\"\n \t\"strings\"\n \t\"syscall/js\"\n@@ -195,6 +196,13 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\t\tuncompressed... | 2025-11-16T00:45:28 |
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 |
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 |
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 | 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 |
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 | 7aa9ca729fcb063506ea4ed35ee9b2673a853e4f | f870a1d3989d428a5d87368e340f23c4d8232380 | net/http/cookiejar: treat localhost as secure origin
For development purposes, browsers treat localhost
as a secure origin regardless of protocol.
Fixes #60997
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Cookies#restrict_access_to_cookies
https://bugzilla.mozilla.org/show_bug.cgi?id=1618113
https://issu... | [
{
"path": "src/net/http/cookiejar/jar.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"net\"\n \t\"net/http\"\n \t\"net/http/internal/ascii\"\n+\t\"net/netip\"\n \t\"net/url\"\n \t\"slices\"\n \t\"strings\"\n@@ -120,7 +121,7 @@ func (e *entry) id() string {\n // request to host/path. It is the caller's respo... | 2025-11-04T22:47:42 |
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 |
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 | 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 |
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 |
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 |
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 | f870a1d3989d428a5d87368e340f23c4d8232380 | 9962d95fed9c13b9a7497bc41ba86253ba619a29 | net/url: warn that JoinPath arguments should be escaped
Fixes #75799
Change-Id: I483f7b1129799d8dd7f359a04e6ebc1b6a5d0b08
Reviewed-on: https://go-review.googlesource.com/c/go/+/719000
Reviewed-by: Mark Freeman <markfreeman@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -1205,7 +1205,13 @@ func (u *URL) UnmarshalBinary(text []byte) error {\n // JoinPath returns a new [URL] with the provided path elements joined to\n // any existing path and the resulting path cleaned of any ./ or ../ elements.\n // Any sequences of multiple / ch... | 2025-11-08T18:16:48 |
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 |
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 | 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 | 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 |
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 |
golang/go | f821fc46c586d2f114dddbcfaaffbb4bf5cd89b7 | b59efc38a0ce1683bb360a2db67d2543047170dc | crypto/internal/fisp140test: update acvptool, test data
This commit updates the BoringSSL module version used for the acvptool,
as well as the module version used for the static test data used by our
CI process to avoid interacting with a live ACVP server.
Two important upstream changes of note:
1. NIST changed the ... | [
{
"path": "src/crypto/internal/fips140test/acvp_capabilities.json",
"patch": "@@ -16,17 +16,17 @@\n {\"algorithm\":\"cSHAKE-128\",\"hexCustomization\":false,\"outputLen\":[{\"min\":16,\"max\":65536,\"increment\":8}],\"msgLen\":[{\"min\":0,\"max\":65536,\"increment\":8}],\"revision\":\"1.0\"},\n {\"algor... | 2025-11-11T19:41:43 |
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 |
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 |
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 |
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
},
{
"pat... | 2026-01-07T17:38:38 |
golang/go | 62741480b8837f2570e75fbb982e80bc0be564ca | 7db2f0bb9a5d0e3d68e3eb153dbce928138206a0 | runtime: remove linkname for gopanic
github.com/goplus/igop now renamed github.com/goplus/ixgo
already requires checklinkname=0, so the special case can be removed.
https://github.com/goplus/ixgo/tree/e0d0bfeb2de9cfbe0b6cd668f015a1ba35dfea76/ixgo
go.undefinedlabs.com is no longer a resolvable domain,
having been abso... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -793,10 +793,7 @@ var panicnil = &godebugInc{name: \"panicnil\"}\n // The compiler emits calls to this function.\n //\n // gopanic should be an internal detail,\n-// but widely used packages access it using linkname.\n-// Notable members of the hall of shame in... | 2025-11-17T21:16:06 |
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 |
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 |
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 |
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 |
golang/go | 35d2712b324af111816e9d637032cbbb8eaeedc7 | 90c970cd0fce1804d82f5148884e69d179c2e265 | net/http: fix typo in Transport docs
Change-Id: Ifeb8d6d2e3fd4c8b0e27da62bec5cf28fe71db34
GitHub-Last-Rev: 5760fb106f58bf77817b9813f029d47be4ca7e3b
GitHub-Pull-Request: golang/go#76316
Reviewed-on: https://go-review.googlesource.com/c/go/+/720800
Auto-Submit: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI ... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -87,7 +87,7 @@ const DefaultMaxIdleConnsPerHost = 2\n // ClientTrace.Got1xxResponse.\n //\n // Transport only retries a request upon encountering a network error\n-// if the connection has been already been used successfully and if the\n+// if the connecti... | 2025-11-16T00:00:59 |
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 |
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 |
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 |
golang/go | 9772d3a690eabd4a167301b886e18c6ce7b6e4bc | 1903782ade15293358c983e03db2bf238c5352fa | cmd/cgo: strip top-level const qualifier from argument frame struct
Otherwise we can't assign to it.
Fixes #75751
Change-Id: Iba680db672297bca1a1d1a33912b80863da66a08
Reviewed-on: https://go-review.googlesource.com/c/go/+/717342
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang... | [
{
"path": "src/cmd/cgo/internal/test/test.go",
"patch": "@@ -953,6 +953,12 @@ typedef struct {\n } issue69086struct;\n static int issue690861(issue69086struct* p) { p->b = 1234; return p->c; }\n static int issue690862(unsigned long ul1, unsigned long ul2, unsigned int u, issue69086struct s) { return (int)(s... | 2025-11-03T23:54:39 |
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 |
rust-lang/rust | 2e4a420db08a0bb5a43834227aef532a9de3b3ea | 87d8f5885b4f289477e48090a86356302437cec9 | Explain that default field values aren't compatible with type parameters unless going through the type parameter
```
error[E0308]: mismatched types
--> $DIR/struct-type-parameter-with-default.rs:5:12
|
LL | struct Foo<T = String> {
| ---------- expected this type parameter
LL | x: T = String::ne... | [
{
"path": "compiler/rustc_hir_typeck/src/lib.rs",
"patch": "@@ -205,7 +205,7 @@ fn typeck_with_inspect<'tcx>(\n }\n \n fcx.check_expr_coercible_to_type_or_error(body.value, expected_type, None, |err, _| {\n- extend_err_with_const_context(err, tcx, node);\n+ extend_err_w... | 2026-03-14T18:02:00 |
nodejs/node | 7d6ce7765ca5cae13422fe8cbb82dff4dddd270d | ad07ae6ac2293fe5261c2150be0b55a82cb10b70 | tools: clarify README linter error message
PR-URL: https://github.com/nodejs/node/pull/59160
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com> | [
{
"path": "tools/lint-readme-lists.mjs",
"patch": "@@ -6,7 +6,7 @@ import assert from 'node:assert';\n import { open } from 'node:fs/promises';\n import { argv } from 'node:process';\n \n-const ghHandleLine = /^\\* \\[(.+)\\]\\(https:\\/\\/github\\.com\\/\\1\\) -$/;\n+const ghHandleLine = /^\\* \\[(.+)\\]\\... | 2025-07-25T15:15:22 |
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 |
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 |
golang/go | 1903782ade15293358c983e03db2bf238c5352fa | ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0 | errors: add examples for custom Is/As matching
Change-Id: Ia92dae13b6a4e9434b29d2ab3f698f6ba87b4b89
Reviewed-on: https://go-review.googlesource.com/c/go/+/713740
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/errors/example_test.go",
"patch": "@@ -44,6 +44,39 @@ func ExampleNew() {\n \t// Output: emit macho dwarf: elf header corrupted\n }\n \n+func OopsNew() error {\n+\treturn errors.New(\"an error\")\n+}\n+\n+var ErrSentinel = errors.New(\"an error\")\n+\n+func OopsSentinel() error {\n+\treturn E... | 2025-10-22T12:13:51 |
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 |
nodejs/node | ad07ae6ac2293fe5261c2150be0b55a82cb10b70 | 5f3aa57210d111ac5beb949d88d356f071740760 | test: remove timeout in test-https-proxy-request-handshake-failure
The timeout is unnecessary since we are testing for certificate
failure. It can cause flakes on very slow machines where the
request cannot be finished in 1 second.
PR-URL: https://github.com/nodejs/node/pull/59165
Fixes: https://github.com/nodejs/nod... | [
{
"path": "test/client-proxy/test-https-proxy-request-handshake-failure.mjs",
"patch": "@@ -33,7 +33,6 @@ const requestUrl = `https://${serverHost}/test`;\n const { code, signal, stderr, stdout } = await runProxiedRequest({\n NODE_USE_ENV_PROXY: 1,\n REQUEST_URL: requestUrl,\n- REQUEST_TIMEOUT: 1000,\n... | 2025-07-25T14:54:55 |
rust-lang/rust | 87d8f5885b4f289477e48090a86356302437cec9 | 35f1109ece895199e4b8d755b101e9a481d18243 | Provide more context on type errors in const context
- On `const` and `static` point at the type (like we do for let bindings)
- On fn calls, point at const parameter in fn definition
- On type, point at const parameter in type definition
- On array type lengths, explain that array length is always `usize`
- On enum v... | [
{
"path": "compiler/rustc_hir_typeck/src/lib.rs",
"patch": "@@ -41,7 +41,7 @@ pub use coercion::can_coerce;\n use fn_ctxt::FnCtxt;\n use rustc_data_structures::unord::UnordSet;\n use rustc_errors::codes::*;\n-use rustc_errors::{Applicability, ErrorGuaranteed, pluralize, struct_span_code_err};\n+use rustc_er... | 2026-03-14T17:23:34 |
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 | 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 |
golang/go | ec92bc6d63efdbd1e04b7590b8ec3ea5236503e0 | 3820f94c1d081921494ada1da64b4fab21ae1a48 | cmd/compile: rewrite Rsh to RshU if arguments are proved positive
Fixes #76332
Change-Id: I9044025d5dc599531c7f88ed2870bcf3d8b0acbd
Reviewed-on: https://go-review.googlesource.com/c/go/+/721206
Reviewed-by: Mark Freeman <markfreeman@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Jorropo <jorropo... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2664,14 +2664,30 @@ var mostNegativeDividend = map[Op]int64{\n \tOpMod64: -1 << 63,\n }\n var unsignedOp = map[Op]Op{\n-\tOpDiv8: OpDiv8u,\n-\tOpDiv16: OpDiv16u,\n-\tOpDiv32: OpDiv32u,\n-\tOpDiv64: OpDiv64u,\n-\tOpMod8: OpMod8u,\n-\tOpMod16:... | 2025-11-18T00:42:37 |
nodejs/node | 5f3aa57210d111ac5beb949d88d356f071740760 | d5b815c9ea59ef508c19281584f9276b1a4ef178 | benchmark: add --track to benchmark
This option will measure how long the benchmark
takes to run. Example:
```
$ ./node benchmark/run.js --track assert
assert/assertion-error.js
assert/assertion-error.js size=2 n=200: 22,987.24012781365
assert/assertion-error.js size=75 n=200: 296.2362823364434
[740ms] assert/assert... | [
{
"path": "benchmark/run.js",
"patch": "@@ -3,6 +3,7 @@\n const path = require('path');\n const { spawn, fork } = require('node:child_process');\n const CLI = require('./_cli.js');\n+const { styleText } = require('node:util');\n \n const cli = new CLI(`usage: ./node run.js [options] [--] <category> ...\n ... | 2025-07-25T13:22:26 |
facebook/react | 7e4c258e160d3a2ca690b44a5938271873919ee1 | 07276b8682059cd310cedf574c7f3ecddce68f5c | [scripts] Verify artifact integrity when downloading (#32728)
Uses https://cli.github.com/manual/gh_attestation_verify to verify that
the downloaded artifact matches the attestation generated during the
build process in runtime_commit_artifacts.
Example:
On a workflow run of runtime_build_and_test.yml with no attest... | [
{
"path": "scripts/release/shared-commands/download-build-artifacts.js",
"patch": "@@ -3,8 +3,9 @@\n const {join} = require('path');\n const theme = require('../theme');\n const {exec} = require('child-process-promise');\n-const {existsSync, readFileSync} = require('fs');\n+const {existsSync, mkdtempSync, r... | 2025-03-24T22:24:33 |
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 |
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 |
nodejs/node | d5b815c9ea59ef508c19281584f9276b1a4ef178 | f389aae2d0218fe98b9d19b7388ac8286acb0183 | benchmark: small lint fix on _cli.js
PR-URL: https://github.com/nodejs/node/pull/59172
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "benchmark/_cli.js",
"patch": "@@ -140,8 +140,8 @@ CLI.prototype.getCpuCoreSetting = function() {\n const isValid = /^(\\d+(-\\d+)?)(,\\d+(-\\d+)?)*$/.test(value);\n if (!isValid) {\n throw new Error(`\n- Invalid CPUSET format: \"${value}\". Please use a single core number (e.g., \"... | 2025-07-24T17:17:52 |
facebook/react | 2d40460cf768071d3a70b4cdc16075d23ca1ff25 | 254dc4d9f37eb512d4ee8bad6a0fae7ae491caef | [ci] fix notify/label actions for forks (#32725)
Need this to run against target for forks to get the notification.
This job does not checkout the code in the PR, so it's safe to run from
the target.
Also fixes failing checks on PRs:
<img width="870" alt="Screenshot 2025-03-24 at 3 28 30 PM"
src="https://github.com... | [
{
"path": ".github/workflows/compiler_discord_notify.yml",
"patch": "@@ -1,7 +1,7 @@\n name: (Compiler) Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [opened, ready_for_review]\n paths:\n - compiler/**",
"additions": 1,
"deletions": 1
},
{
"path": ... | 2025-03-24T19:46:59 |
rust-lang/rust | 681750bd4606b0142fdf7e4b6013c508506bfb24 | f9ed8c2b1d9673669025fb7ab67e2ee6770a99b8 | add fixmes for f128
also implement sqrt for f128 (using softfloat) and test sqrt for f16 and f128 | [
{
"path": "src/tools/miri/src/intrinsics/math.rs",
"patch": "@@ -192,10 +192,12 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \"powf16\" => pow_intrinsic::<HalfS>(this, args, dest)?,\n \"powf32\" => pow_intrinsic::<SingleS>(this, args, dest)?,\n \"po... | 2026-03-14T15:35:00 |
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 |
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 | d9fa95ce752df03ac7e34d9e7c66bab1dff09f2c | 1d09f42590ef47dfde7061f3a01621654f2a14df | Handle pnpm-workspace.yaml while searching for monorepo root (#74818)
## What?
In order for Next.js to know where the root of the project (i.e. monorepo) is we have a heuristic for searching for the root by looking upwards from the application's directory trying to find the package manager lockfiles. This works reall... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -2,7 +2,21 @@ import { dirname } from 'path'\n import findUp from 'next/dist/compiled/find-up'\n import * as Log from '../build/output/log'\n \n-export function findRootLockFile(cwd: string) {\n+function findWorkRoot(cwd: string) {\n+ // Find-up ... | 2026-01-07T12:33:24 |
nodejs/node | 92095048d1273b96aa1871bbbd68bf55c5004725 | 91a131e81af76b6356e9e150e8a012c86de8257d | benchmark: fix sqlite-is-transaction
The variable deadCodeElimination is declared
but not initialized, making it undefined by default.
When using the &&= operator with an undefined left operand,
the result will always remain undefined regardless of
how many iterations run.
```js
let deadCodeElimination;
deadCodeElimi... | [
{
"path": "benchmark/sqlite/sqlite-is-transaction.js",
"patch": "@@ -16,7 +16,7 @@ function main(conf) {\n }\n \n let i;\n- let deadCodeElimination;\n+ let deadCodeElimination = true;\n \n bench.start();\n for (i = 0; i < conf.n; i += 1)",
"additions": 1,
"deletions": 1
}
] | 2025-07-24T17:05:56 |
facebook/react | 254dc4d9f37eb512d4ee8bad6a0fae7ae491caef | 42a57ea8027de8af55e6f4483c3b9a8f4cba31fb | [compiler][bugfix] Fix hoisting of let declarations (#32724)
(Found when compiling Meta React code)
Let variable declarations and reassignments are currently rewritten to
`StoreLocal <varName>` instructions, which each translates to a new
`const varName` declaration in codegen.
```js
// Example input
function useHoo... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PruneHoistedContexts.ts",
"patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import {CompilerError} from '..';\n import {\n DeclarationId,\n InstructionKind,\n@@ -27,14 +28,28 @@ ex... | 2025-03-24T18:30:17 |
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 |
vercel/next.js | f5cfb23bb6e1b7be1cec4511b0e641480b526cbe | 789d0810a29d644d066bbc183d34d13bc104e2fe | fix overlay frames cannot be opened sometimes (#88210) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-overlay-call-stack/error-overlay-call-stack.tsx",
"patch": "@@ -21,17 +21,20 @@ export function ErrorOverlayCallStack({\n function onToggleIgnoreList() {\n const dialog = dialogResizerRef?.current\n \n- if (!dialog) {\n-... | 2026-01-07T11:31:13 |
rust-lang/rust | a27fdfbf0189c78574293e03dd0c0d82c96b81eb | 798a011ace1c2b5be80767ba1d97a4dff0546f93 | tests/debuginfo/basic-stepping.rs: Remove ignore-aarch64
It works now. | [
{
"path": "tests/debuginfo/basic-stepping.rs",
"patch": "@@ -2,7 +2,6 @@\n //! time works intuitively, e.g. that `next` takes you to the next source line.\n //! Regression test for <https://github.com/rust-lang/rust/issues/33013>.\n \n-//@ ignore-aarch64: Doesn't work yet.\n //@ ignore-loongarch64: Doesn't ... | 2026-03-14T15:31:19 |
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 |
nodejs/node | 91a131e81af76b6356e9e150e8a012c86de8257d | ee36b86ba38773869852a3a44b621c6ae4d7bf65 | doc: fix broken sentence in `URL.parse`
PR-URL: https://github.com/nodejs/node/pull/59164
Refs: https://developer.mozilla.org/en-US/docs/Web/API/URL/parse_static#return_value
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewe... | [
{
"path": "doc/api/url.md",
"patch": "@@ -720,7 +720,7 @@ added: v22.1.0\n \n Parses a string as a URL. If `base` is provided, it will be used as the base\n URL for the purpose of resolving non-absolute `input` URLs. Returns `null`\n-if `input` is not a valid.\n+if the parameters can't be resolved to a vali... | 2025-07-24T11:48: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 | 77a20144b57bb9c5c3cf7379f6235822597c573d | 4aa2d6fbf48d830dd6f914fa9558c173e40fbbe0 | Fix overlap edit on tuple to record assist expr uses self
Example
---
```rust
struct T$0(u8);
fn test(t: T) {
T(t.0);
}
```
**Before this PR**
Panic
**After this PR**
```rust
struct T { field1: u8 }
fn test(t: T) {
T { field1: t.field1 };
}
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_named_struct_to_tuple_struct.rs",
"patch": "@@ -1,9 +1,7 @@\n-use std::ops::RangeInclusive;\n-\n use either::Either;\n use ide_db::{defs::Definition, search::FileReference};\n use syntax::{\n- NodeOrToken, SyntaxElement, SyntaxKin... | 2026-03-14T11:59:40 |
vercel/next.js | fd5817d00462f68c56982012fb62fc255816f9bd | 023be2e88aa788cb5b832c48459fe9e5da7f9653 | feat: add --experimental-cpu-prof flag for dev, build, and start (#87946)
## What
Adds a `--experimental-cpu-prof` flag to `next dev`, `next build`, and
`next start` commands to capture V8 CPU profiles for debugging
performance bottlenecks.
## Why
When investigating slow builds, slow dev server startups, or product... | [
{
"path": "docs/01-app/03-api-reference/06-cli/next.mdx",
"patch": "@@ -56,6 +56,7 @@ The following commands are available:\n | `--experimental-https-cert <path>` | Path to a HTTPS certificate file. ... | 2026-01-07T10:24:41 |
facebook/react | c61e75b76d5ff6707ad75c8beb777e721d982207 | 7c908bcf4e6b46135164be961972f0d756378517 | [compiler] Avoid failing builds when import specifiers conflict or shadow vars (#32663)
Avoid failing builds when imported function specifiers conflict by using
babel's `generateUid`. Failing a build is very disruptive, as it usually
presents to developers similar to a javascript parse error.
```js
import {logRender a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts",
"patch": "@@ -7,8 +7,9 @@\n \n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n-import {PluginOptions} from './Options';\n import {CompilerError} from '../CompilerError';\n+import {ProgramContext}... | 2025-03-24T13:31:51 |
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 | 7215d9b37f3ffdff1a068ffeb926f7da62a93771 | 38c2b926afedace78a0be5b48001144c456d3241 | cli: support `${pid}` placeholder in --cpu-prof-name
PR-URL: https://github.com/nodejs/node/pull/59072
Fixes: https://github.com/nodejs/node/issues/57418
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -538,13 +538,16 @@ $ ls *.cpuprofile\n CPU.20190409.202950.15293.0.0.cpuprofile\n ```\n \n-If `--cpu-prof-name` is specified, the provided value will be used as-is; patterns such as\n-`${hhmmss}` or `${pid}` are not supported.\n+If `--cpu-prof-name` is specified, the... | 2025-07-24T10:28:18 |
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 |
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.