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 |
|---|---|---|---|---|---|
electron/electron | cb445b3bbd5b7638e7b6ff9f16f668171d94c3a7 | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | chore: bump node to v22.15.0 (main) (#46742)
* chore: bump node in DEPS to v22.15.0
* inspector: fix GN build
https://github.com/nodejs/node/pull/56798
* test: search cctest files
https://github.com/nodejs/node/pull/56791
* crypto: fix missing OPENSSL_NO_ENGINE guard
https://github.com/nodejs/node/pull/57012
* ... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7156.0',\n 'node_version':\n- 'v22.14.0',\n+ 'v22.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-05-05T08:23:17 |
rust-lang/rust | 55d9f7cb6c7880dc5e2b75f013666ad01e265d1f | 22e1148d97b791e90c53bfef2fc2810c5d6a8433 | Fix typos and outdated comments | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs",
"patch": "@@ -169,7 +169,7 @@ impl<S: Stage> SingleAttributeParser<S> for RustcObjcClassParser {\n return None;\n };\n let Some(classname) = nv.value_as_str() else {\n- // `#[rustc_objc_class = ..... | 2026-03-16T07:28:48 |
nodejs/node | 28225857d7e613fad0909e0345aca25c739cc1fb | 487938ba64c1cc1d69898a37f217b8b45bc66177 | test: skip test-fs-cp* tests that are constantly failing on Windows
These tests are likely actual regressions introduced when the
monolithic test-fs-cp.mjs was marked as flaky and got ignored due
to the flaky status. They are now constantly failing the Windows
CI and require the CI to always be re-run on Windows when ... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -24,11 +24,11 @@ test-snapshot-incompatible: SKIP\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/pull/59408#issuecomment-3170650933\n-test-... | 2025-08-28T19:57:08 |
golang/go | 272df5f6ba94018dac2b7d384e92115b795fe241 | 1768cb40b838a36f9bdcbe5381f2e086483f22f5 | crypto/internal/fips140/aes/gcm: add more GCM nonce modes
First, this adds a GCM mode for QUIC, and a generic TLS 1.3/QUIC-like
XOR'd counter mode. QUIC constructs nonces exactly like TLS 1.3, but the
counter does not reset to zero on a key update, so the mask must be
provided explicitly (or we will panic well before ... | [
{
"path": "src/crypto/cipher/gcm_fips140v2.0_test.go",
"patch": "@@ -0,0 +1,91 @@\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+//go:build !fips140v1.0\n+\n+package cipher_test\n+\n+im... | 2025-11-24T12:35:15 |
vercel/next.js | e5926d3d1efa24563c819f7473e6425e2cb5547e | f1908dad17e915c544fdad1d88cb8794f05034f7 | Fix buildManifest.js deployment tests (#88806)
When `NEXT_DEPLOYMENT_ID` is set (and thus skew protection is enabled), then these pages router manifests are actually on a different path (so that the output paths doesn't change with the build id anymore)
Fixup for https://github.com/vercel/next.js/pull/88641 | [
{
"path": "test/e2e/invalid-static-asset-404-app/invalid-static-asset-404-app-asset-prefix.test.ts",
"patch": "@@ -1,17 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('invalid-static-asset-404-app-asset-prefix', () => {\n- const { next, isNextDev } = nextTestSetup({\n+ const { next, is... | 2026-01-20T14:00:17 |
facebook/react | 9320a0139df876509c8ebb6f6fd950a6690bd5d9 | fbcda19a23da819889afdd7164b29c556fbcfc7a | Fix COMMIT_SHA when generating PR artifacts (#32647)
Follow-up to #31850. We want to build using the original commit SHA, not
the merge commit that GitHub Actions creates behind the scenes. We were
already checking out the correct commit object, but the COMMIT_SHA
artifact was still pointing to the merge commit.
This... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -330,7 +330,7 @@ jobs:\n merge-multiple: true\n - name: Display structure of build\n run: ls -R build\n- - run: echo ${{ github.sha }} >> build/COMMIT_SHA\n+ - run: echo ${{ github.event.pull_request.hea... | 2025-03-17T16:46:27 |
rust-lang/rust | caad6ee2404cbe49915052f342b6227437e4d2a9 | 1e2183119f0ee19cc26df899e26b04ad0de3475d | tests: Add regression test for async closures involving HRTBs
I suspect the original code had several issues. The last one that made
the code compile entered `nightly-2024-02-11`. The code fails to build
with `nightly-2024-02-10`:
$ rustc +nightly-2024-02-10 --edition 2018 tests/ui/async-await/async-closures/unif... | [
{
"path": "tests/ui/async-await/async-closures/unifying-function-types-involving-hrtb.rs",
"patch": "@@ -0,0 +1,33 @@\n+//! Regresssion test for <https://github.com/rust-lang/rust/issues/59337>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+use std::future::Future;\n+\n+trait Foo<'a> {\n+ type Future: Futu... | 2026-03-19T18:10:21 |
electron/electron | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | 5390728cb79059bd53483f16cc5389287c48e85c | fix: xdg portal version detection for file dialogs on linux (#46905)
* chore: use dbus thread for portal version detection
* Update shell/browser/ui/file_dialog_linux_portal.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "filenames.gni",
"patch": "@@ -35,6 +35,7 @@ filenames = {\n \"shell/browser/relauncher_linux.cc\",\n \"shell/browser/ui/electron_desktop_window_tree_host_linux.cc\",\n \"shell/browser/ui/file_dialog_linux.cc\",\n+ \"shell/browser/ui/file_dialog_linux_portal.cc\",\n \"shell/brow... | 2025-05-05T07:57:20 |
nodejs/node | 487938ba64c1cc1d69898a37f217b8b45bc66177 | cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb | doc: fix filehandle.read typo
PR-URL: https://github.com/nodejs/node/pull/59635
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/fs.md",
"patch": "@@ -397,7 +397,7 @@ changes:\n from the file. If `null` or `-1`, data will be read from the current file\n position, and the position will be updated. If `position` is a non-negative\n integer, the current file position will remain unchanged.\n- **Default:**: `nul... | 2025-08-28T19:23:59 |
vercel/next.js | b58b1dc901a2deed30e6861e0675352c92dd925e | a77fd58c963ee134522b5818c8c3587013e1f66a | Use rewritten pathname for implicit cache tags (#88732)
When a page is accessed via a rewrite, use the destination path (not the source path) when computing implicit tags. This ensures that calling `revalidatePath('/dest')` correctly invalidates cache entries for pages rewritten to that destination.
Fixes `'use cac... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -2017,9 +2017,22 @@ async function renderToHTMLOrFlightImpl(\n \n const isPossibleActionRequest = getIsPossibleServerAction(req)\n \n+ // For implicit tags, we need to use the rewritten pathname (if a rewrite\n+ // occurred) ra... | 2026-01-19T20:50:37 |
facebook/react | cd28a946d57695a025581c0ff851bde08ea6ca27 | 8243f3f0631698e819c690710a7f18f767068981 | Add observer methods to fragment instances (#32619)
This implements `observeUsing(observer)` and `unobserverUsing(observer)`
on fragment instances. IntersectionObservers and ResizeObservers can be
passed to observe each host child of the fragment. This is the
equivalent to calling `observer.observe(child)` or
`observe... | [
{
"path": "fixtures/dom/src/components/fixtures/fragment-refs/EventListenerCase.js",
"patch": "@@ -0,0 +1,96 @@\n+import TestCase from '../../TestCase';\n+import Fixture from '../../Fixture';\n+\n+const React = window.React;\n+const {Fragment, useEffect, useRef, useState} = React;\n+\n+function WrapperCompo... | 2025-03-17T15:40:05 |
golang/go | 1768cb40b838a36f9bdcbe5381f2e086483f22f5 | a9093067ee0fda40421bd1d4fad893dfa6c99fd5 | crypto/tls: add SecP256r1/SecP384r1MLKEM1024 hybrid post-quantum key exchanges
Fixes #71206
Change-Id: If3cf75261c56828b87ae6805bd2913f56a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/722140
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: R... | [
{
"path": "api/next/71206.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg crypto/tls, const SecP256r1MLKEM768 = 4587 #71206\n+pkg crypto/tls, const SecP256r1MLKEM768 CurveID #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 = 4589 #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 CurveID #71206",
"additions": 4,
... | 2025-11-19T16:32:42 |
electron/electron | 074b9344b5c79aecc93f74efbb8dc0e773426983 | 3faddd5ae2ae03be8ba037c77989630576bb8167 | fix: prevent log files being written to current directory on Windows (#44413)
* fix: prevent log files being written to current directory on Windows
* Update shell/common/logging.cc
Co-authored-by: Robo <hop2deep@gmail.com>
* chore: add test
* chore: update includes
Refs https://chromium-review.googlesource.com/c... | [
{
"path": "shell/common/api/electron_api_testing.cc",
"patch": "@@ -2,8 +2,10 @@\n // Use of this source code is governed by the MIT license that can be\n // found in the LICENSE file.\n \n+#include \"base/command_line.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/logging.h\"\n+#include \"content... | 2025-05-02T21:27:29 |
facebook/react | 8243f3f0631698e819c690710a7f18f767068981 | df319522758b7fdfed3ddfa517cc1cc298ef1602 | [bug] Fix component name for Portal and add tests (#32640)
Based off: https://github.com/facebook/react/pull/32499
While looking into `React.lazy` issues for built-ins, I noticed we
already error for `lazy` with build-ins, but we don't have any tests for
`getComponentNameFromType` using all the built-ins. This may be... | [
{
"path": "packages/react-reconciler/src/__tests__/ReactLazy-test.internal.js",
"patch": "@@ -791,7 +791,7 @@ describe('ReactLazy', () => {\n );\n });\n \n- it('throws with a useful error when wrapping fragment with lazy()', async () => {\n+ it('throws with a useful error when wrapping Fragment with... | 2025-03-17T15:23:28 |
nodejs/node | cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb | 42021e4b4c491f77b1dbe93573f24a9f91e31fc1 | test: deflake test-http-keep-alive-empty-line
- Do not call `client.end()` to ensure that the socket is closed by the
server.
- Remove the timer and send the empty line when the response is
received.
Fixes: https://github.com/nodejs/node/issues/59577
PR-URL: https://github.com/nodejs/node/pull/59595
Reviewed-By: ... | [
{
"path": "test/parallel/test-http-keep-alive-empty-line.mjs",
"patch": "@@ -3,6 +3,10 @@ import assert from 'node:assert';\n import { createServer } from 'node:http';\n import { connect } from 'node:net';\n \n+// This test ensures that data like an empty line (`\\r\\n`) recevied by the\n+// server after a ... | 2025-08-28T19:02:10 |
vercel/next.js | 97532172c065ca2b49dd79d1fa44c3a0b864065b | e1685de205016c209be30980ac402c43f7cc5f58 | [test] Deflake `test/development/app-dir/hydration-error-count/hydration-error-count.test.ts` (#88749) | [
{
"path": "test/development/app-dir/hydration-error-count/hydration-error-count.test.ts",
"patch": "@@ -334,11 +334,11 @@ describe('hydration-error-count', () => {\n it('should display runtime error separately from hydration errors', async () => {\n const browser = await next.browser('/hydration-with-... | 2026-01-19T18:09:07 |
golang/go | 86cd9b5c905d29b18ddc3b93dff60e12143cc1c8 | 1265ebfe274c31713bd5b72f570b36dbf0005e63 | [dev.simd] simd, cmd/compile: add float -> int conversions
This CL also fixed some documentation errors in existing APIs.
Go defaults MXCSR to mask exceptions, the documentation is based on this
fact.
Change-Id: I745083b82b4bef93126a4b4e41f8698956963704
Reviewed-on: https://go-review.googlesource.com/c/go/+/724320
L... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -45,9 +45,25 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VCVTTPS2DQ128,\n \t\tssa.OpAMD64VCVTTPS2DQ256,\n \t\tssa.OpAMD64VCVTTPS2DQ512,\n-\t\tssa.OpAMD64VCVTPS2UDQ128,\n-\t\tssa.OpAMD64VCVTPS2UDQ256,\n-\t\... | 2025-11-25T17:27:23 |
rust-lang/rust | 05834b2d6b8c584314dcc7d91d638bd376ce267c | 8b86f48958be8c3473c979e0b5504c2d2e0fd4fd | improve validation error messages: show surrounding type, and more info on dyn-downcast | [
{
"path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs",
"patch": "@@ -425,7 +425,7 @@ fn const_validate_mplace<'tcx>(\n cid: GlobalId<'tcx>,\n ) -> Result<(), ErrorHandled> {\n let alloc_id = mplace.ptr().provenance.unwrap().alloc_id();\n- let mut ref_tracking = RefTracking::new(mpl... | 2026-03-19T14:39:20 |
electron/electron | 2b07e6450c80a7a3a11f3f40dadd4ebe2361442b | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | chore: bump chromium to 138.0.7154.0 (main) (#46872)
* chore: bump chromium in DEPS to 138.0.7152.0
* chore: update patches
* chore: bump chromium in DEPS to 138.0.7154.0
* chore: update patches
* ozone/wayland: Fix bookmark dropdown right click context menu
https://chromium-review.googlesource.com/c/chromium/src... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7151.0',\n+ '138.0.7154.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-05-02T04:53:40 |
facebook/react | 99563e91736e9de473c4865d5cb6fd9eb1a26bcb | 17d274dc127400b31379a1b26c5be53599c36aa5 | Partially revert #32588 (#32621)
https://github.com/facebook/react/pull/32588 changed the babel config
impacting local tests, and I'm not able to run test:
<img width="1354" alt="Screenshot 2025-03-15 at 2 37 00 PM"
src="https://github.com/user-attachments/assets/2d4afe39-6ab6-4c83-87a9-ceb0ee5f8df5"
/>
This PR rev... | [
{
"path": "babel.config.js",
"patch": "@@ -4,8 +4,7 @@ module.exports = {\n plugins: [\n '@babel/plugin-syntax-jsx',\n '@babel/plugin-transform-flow-strip-types',\n- ['@babel/plugin-transform-class-properties', {loose: true}],\n- '@babel/plugin-transform-classes',\n+ ['@babel/plugin-propo... | 2025-03-15T19:21:57 |
nodejs/node | bcb802cca06db2a5b0e5c8a48c825183900ef83d | 4e0af201841f531062f1157f780051d923a9e158 | sea: allow using inspector command line flags with SEA
The inspector command line flags should be allowed via NODE_OPTIONS,
though it should not be consumed when passed directly to the SEA.
This patch allows it to consume inspector flags from NODE_OPTIONS
and add tests for different behaviors.
PR-URL: https://github.... | [
{
"path": "src/node_options.cc",
"patch": "@@ -422,10 +422,6 @@ void Parse(\n // TODO(addaleax): Make that unnecessary.\n \n DebugOptionsParser::DebugOptionsParser() {\n-#ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) return;\n-#endif\n-\n AddOption(\"--inspect-port\",\n ... | 2025-08-27T19:38:55 |
vercel/next.js | e1685de205016c209be30980ac402c43f7cc5f58 | a0e2d59cf476981d18adcafa912d014664cd879a | Fix `Build Commands` section in AGENTS.md (#88757)
The commands must have been hallucinated. | [
{
"path": "AGENTS.md",
"patch": "@@ -98,14 +98,14 @@ gt submit --no-edit\n ## Build Commands\n \n ```bash\n-# Build the Next.js package (dev server only - faster)\n-pnpm --filter=next build:dev-server\n+# Build the Next.js package\n+pnpm --filter=next build\n \n # Build everything\n pnpm build\n \n # Run sp... | 2026-01-19T18:05:35 |
rust-lang/rust | 9ce6863063006951d678d0ec8a9e037731478609 | adacd90f29c381c2e3876f356dda7575a96ffef5 | merge `die-macro` tests into `panic-macro-basic.rs` | [
{
"path": "tests/ui/macros/die-macro-2.rs",
"patch": "@@ -1,7 +0,0 @@\n-//@ run-fail\n-//@ error-pattern:test\n-//@ needs-subprocess\n-\n-fn main() {\n- panic!(\"test\");\n-}",
"additions": 0,
"deletions": 7,
"language": "Rust"
},
{
"path": "tests/ui/macros/die-macro-pure.rs",
"pa... | 2026-03-19T14:40:33 |
golang/go | 6954be0baacd0f05edfd3015cc3ecfbf237b3967 | 8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8 | internal/strconv: delete ftoaryu
CL 700075 made this dead code.
Benchmarks below for CL 700075, testing Dragonbox vs the old Ryu being deleted.
The "Fixed" benchmarks are unchanged, which gives a sense of the noise level.
benchmark \ host linux-amd64 s7 linux-arm64 local linux-386 s7:GOA... | [
{
"path": "src/internal/strconv/ftoaryu.go",
"patch": "@@ -1,307 +0,0 @@\n-// Copyright 2021 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 strconv\n-\n-import \"math/bits\"\n-\n-// binary to decim... | 2025-11-24T19:03:34 |
facebook/react | 2c560374d6276c51cfeeff7af39628058c155a13 | 2e385738a4dfd1554c146f6313b1530a09b5ce78 | Measure and apply names for the "new" phase (#32612)
Stacked on #32599 and #32611.
This is able to reuse the code from CommitViewTransitions for "enter",
"shared" and "layout". The difference is that for "enter"/"shared" in
the "new" phase we pass in the deletions.
For "layout" of nested boundaries we just need to m... | [
{
"path": "packages/react-reconciler/src/ReactFiberApplyGesture.js",
"patch": "@@ -62,6 +62,8 @@ import {\n restoreEnterOrExitViewTransitions,\n restoreNestedViewTransitions,\n appearingViewTransitions,\n+ commitEnterViewTransitions,\n+ measureNestedViewTransitions,\n } from './ReactFiberCommitViewT... | 2025-03-14T18:26:55 |
electron/electron | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | df4564dc39c5c874915ed6f441658f721bb06fff | fix: revert macOS content protection logic refactor (#46886)
Revert "refactor: use upstream content protection logic on macOS (#46813)"
This reverts commit 34adb976b632157379de34cc1a71bdf6cc089714. | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -26,7 +26,6 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/base/hit_test.h\"\n #include \"ui/compositor/compositor.h\"\n-#include \"ui/views/widget/native_widget_private.h\"\n #include \"ui/views/widget/widget.h\"\n \n #if !BUILDFLA... | 2025-05-01T20:49:55 |
nodejs/node | 89067de3917088f1b97434ef0328efc192715cb3 | 5c9db1046f88cbf1b17236f1731fae701a16e7c4 | src: remove JSONParser
This is now unused after
https://redirect.github.com/nodejs/node/pull/59473 and
and https://redirect.github.com/nodejs/node/pull/59323
PR-URL: https://github.com/nodejs/node/pull/59619
Fixes: https://github.com/nodejs/node/issues/59288
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed... | [
{
"path": "node.gyp",
"patch": "@@ -96,8 +96,6 @@\n 'src/js_stream.cc',\n 'src/json_utils.cc',\n 'src/js_udp_wrap.cc',\n- 'src/json_parser.h',\n- 'src/json_parser.cc',\n 'src/module_wrap.cc',\n 'src/node.cc',\n 'src/node_api.cc',",
"additions": 0,
"delet... | 2025-08-27T14:46:43 |
vercel/next.js | a0e2d59cf476981d18adcafa912d014664cd879a | 4379e65e5fdb0dc5e218be2b4711c5ff85b5cb3e | [test] Deflake `test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts` (#88754) | [
{
"path": "test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts",
"patch": "@@ -15,6 +15,7 @@ describe('browser-log-forwarding verbose level', () => {\n expect(output).toContain('browser error:')\n expect(output).toContain('browser warn:')\n expect(o... | 2026-01-19T17:26:33 |
golang/go | 8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8 | 4ca048cc326bf310f873315dfb1e2644ec243299 | compress/flate: move big non-pointer arrays to end of compressor
The compressor type is fairly large: 656616 bytes on amd64.
Before this patch, it had fields of slice and interface type
near the end of the struct. As those types always contain pointers,
the ptrBytes value in the type descriptor was quite large.
That f... | [
{
"path": "src/compress/flate/deflate.go",
"patch": "@@ -89,16 +89,6 @@ type compressor struct {\n \tstep func(*compressor) // process window\n \tbestSpeed *deflateFast // Encoder for BestSpeed\n \n-\t// Input hash chains\n-\t// hashHead[hashValue] contains the largest inpu... | 2025-09-29T04:38:53 |
electron/electron | 2734088d201199a5ede57463715729f517d394fc | 4641bc961998f412a8c3ea450457f0a97d344785 | fix: fix and enable `accessibilitySupportEnabled` tests (#46825)
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (excluding Linux)" section into the
"window states" section.
* fix: nested it() calls in visibleOnAllWorkspaces spe... | [
{
"path": "spec/api-app-spec.ts",
"patch": "@@ -979,22 +979,22 @@ describe('app module', () => {\n });\n \n ifdescribe(process.platform !== 'linux')('accessibilitySupportEnabled property', () => {\n- it('with properties', () => {\n- it('can set accessibility support enabled', () => {\n- e... | 2025-04-29T04:52:26 |
facebook/react | 5398b7115847e87c0053aa719728d8dd1a635ccd | f3c956006a90dc68210bd3e19497d10fb9b028d3 | [compiler] detect and throw on untransformed required features (#32512)
Traverse program after running compiler transform to find untransformed
references to compiler features (e.g. `inferEffectDeps`, `fire`).
Hard error to fail the babel pipeline when the compiler fails to
transform these features to give predictabl... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -11,6 +11,7 @@ import {\n injectReanimatedFlag,\n pipelineUsesReanimatedPlugin,\n } from '../Entrypoint/Reanimated';\n+import validateNoUntransformedReferences from '../Entrypoint/ValidateNoUntransformedRefe... | 2025-03-14T15:44:49 |
nodejs/node | 2894849284fd58f902f2066e6c134429c4c0fc0c | ec8c73d6ca6eb58adb1df7715da2f81e64c1fb1a | doc: fix missing link to the Error documentation in the `http` page
PR-URL: https://github.com/nodejs/node/pull/59080
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -2641,7 +2641,7 @@ will check whether `Content-Length` and the length of the body which has\n been transmitted are equal or not.\n \n Attempting to set a header field name or value that contains invalid characters\n-will result in a \\[`Error`]\\[] being thrown.\n+w... | 2025-08-27T10:40:48 |
vercel/next.js | c6dd32c25b38303c9b29f52d4d8eef711db1e650 | d56ed7bbca98107d76293a69293770cdc80f98e3 | Turbopack: Add `--debug-build-paths` support to filter routes (#88655)
Add support for the `--debug-build-paths` flag in Turbopack builds. Previously this flag only affected which routes were prerendered (statically generated), but the bundler still compiled all routes.
Now routes are filtered early in `Project::en... | [
{
"path": ".config/eslintignore.mjs",
"patch": "@@ -48,6 +48,7 @@ export default globalIgnores([\n 'examples/with-typescript-graphql/lib/gql/',\n 'test/development/basic/hmr/components/parse-error.js',\n 'test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx',\n+ 'test/produc... | 2026-01-19T16:17:38 |
golang/go | 113eb42efca8e14355f57c89cd38d31616728a27 | 6e5cfe94b0635e07466a8b8ebeacae4600d273d7 | strconv: replace Ryu ftoa with Dragonbox
Dragonbox is a faster ftoa algorithm that provides the same guarantees
as Ryu: round-trip conversion, shortest length, and correct rounding.
Dragonbox only supports shortest-precision conversion, so we continue to
use Ryu-printf for fixed precision.
The new implementation has ... | [
{
"path": "src/internal/strconv/ftoa.go",
"patch": "@@ -86,6 +86,7 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \tneg := bits>>(flt.expbits+flt.mantbits) != 0\n \texp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)\n \tmant := bits & (uint64(1)<<flt.mantbits - 1)\n+... | 2025-11-20T23:56:29 |
facebook/react | e9d80d939ee0f6b1d6146eb11917c433a7791d17 | ef1103d3e92168803000e12d9a27cb7440e5e1c8 | Revert "[ci] Fix node_modules cache glob (#32604)" (#32606)
This reverts commit ef1103d3e92168803000e12d9a27cb7440e5e1c8.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32606).
* #32609
* #32608
* #3... | [
{
"path": ".github/workflows/compiler_playground.yml",
"patch": "@@ -36,9 +36,8 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: |\n- **/node_modules\n- key: compiler-node_modules-v2-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('... | 2025-03-14T01:52:46 |
electron/electron | 4641bc961998f412a8c3ea450457f0a97d344785 | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | fix: fullscreen fillet / recovery is incorrect (#46641)
* fix: fullscreen fillet / recovery is incorrect
Signed-off-by: ZOY\zoy-l <zoy-l@outlook.com>
* fix: maintain frameless consistency on windows 11
* fix: maintain frameless consistency on windows 11
* chore: modify the comments
---------
Signed-off-by: ZOY\z... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -375,14 +375,17 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n frame_style |= WS_MINIMIZEBOX;\n if (maximizable_)\n frame_style |= WS_MAXIMIZEBOX;\n+\n // We should not show a frame for trans... | 2025-04-28T20:54:08 |
nodejs/node | 6722642e3d009a4d57f00357978f7879af82d403 | 65858596abb8010ba7403c153112fc8de9d916f0 | sea: implement execArgvExtension
This implements the execArgvExtension configuration field for SEA,
which takes one of three string values to specify whether and how
execution arguments can be extended for the SEA at run time:
* `"none"`: No extension is allowed. Only the arguments specified
in `execArgv` will be u... | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -180,6 +180,7 @@ The configuration currently reads the following top-level fields:\n \"useSnapshot\": false, // Default: false\n \"useCodeCache\": true, // Default: false\n \"execArgv\": [\"--no-warnings\", \"--max-old-space-size=409... | 2025-08-25T11:35:56 |
vercel/next.js | a6f714cbc9cf6f4538cc61385d81a3f1cb90c82e | 38f4304c2255b3c6443796a052fc3ed0f8cb3aa4 | [Devtool Indicator] Fix cross alignment (#88664)
<img width="4106" height="3504" alt="image"
src="https://github.com/user-attachments/assets/102ddcd6-84c3-4cf7-be99-977473399570"
/>
Co-authored-by: Jiwon Choi <devjiwonchoi@gmail.com> | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/next-logo.tsx",
"patch": "@@ -237,10 +237,6 @@ export function NextLogo({\n &:has([data-issues-collapse]) {\n padding-right: calc(var(--padding-left) / 2);\n }\n-\n- [data-cr... | 2026-01-19T13:36:00 |
facebook/react | ef1103d3e92168803000e12d9a27cb7440e5e1c8 | 67338703aa52d662998733e58671dc9fe1edae47 | [ci] Fix node_modules cache glob (#32604)
Seems like the stringified cache path can cause some directories not to
be cached, trying an alternative format | [
{
"path": ".github/workflows/compiler_playground.yml",
"patch": "@@ -36,8 +36,9 @@ jobs:\n uses: actions/cache@v4\n id: node_modules\n with:\n- path: \"**/node_modules\"\n- key: compiler-node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('compiler/**/yar... | 2025-03-14T00:59:27 |
golang/go | 6e5cfe94b0635e07466a8b8ebeacae4600d273d7 | 2c7c62b97235c376205653200c2bd14ac03baa41 | crypto: fix dead links and correct SHA-512 algorithm comment
Change-Id: I71d63b0b78a9fc4895574f6df465e22c9585e77c
Reviewed-on: https://go-review.googlesource.com/c/go/+/710196
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped... | [
{
"path": "src/crypto/internal/fips140/sha256/_asm/sha256block_amd64_avx2.go",
"patch": "@@ -15,7 +15,7 @@ import (\n // To find it, surf to http://www.intel.com/p/en_US/embedded\n // and search for that title.\n // AVX2 version by Intel, same algorithm as code in Linux kernel:\n-// https://github.com/torva... | 2025-10-08T18:13:56 |
electron/electron | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | 062d3a616881309bbfb20556106980482685e905 | fix: enable some tests that were accidentally disabled (#46816)
* test: add platform test on visibleOnAllWorkspaces tests
visibleOnAllWorkspaces is not supported on Windows
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (exclu... | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -398,7 +398,7 @@ A `View` property for the content view of the window.\n \n A `string` (optional) property that is equal to the `tabbingIdentifier` passed to the `BrowserWindow` constructor or `undefined` if none was set.\n \n-#### `win.autoHideMenuBar`\n+##... | 2025-04-28T17:32:57 |
nodejs/node | 323f19c18fea06b9234a0c945394447b077fe565 | 15ede933c319a8cbd7723488862c570ea0424d1c | doc: clarify experimental platform vulnerability policy
Adds a new section to the threat model specifying that security
vulnerabilities affecting only experimental platforms will not be
accepted as valid security issues and will be treated as normal bugs.
This clarifies that experimental OS/hardware combinations do n... | [
{
"path": "SECURITY.md",
"patch": "@@ -102,6 +102,22 @@ vulnerability in the context of the Node.js threat model. In other\n words, it cannot assume that a trusted element (such as the operating\n system) has been compromised.\n \n+### Experimental platforms\n+\n+Node.js maintains a tier-based support syste... | 2025-08-25T10:35:13 |
facebook/react | 67338703aa52d662998733e58671dc9fe1edae47 | 7939d92fcc95ad5ee719c38272eaef14a3750fc0 | [ci] Update yarn and node_modules cache key (#32603)
Now that the compiler lint rule is merged into
eslint-plugin-react-hooks, we also need to update our caches so compiler
dependencies are also cached. This should fix the CI walltime regression
we are now seeing.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with ... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -50,13 +50,13 @@ jobs:\n with:\n node-version-file: '.nvmrc'\n cache: yarn\n- cache-dependency-path: yarn.lock\n+ cache-dependency-path: '**/yarn.lock'\n - name: Restore cached node_mod... | 2025-03-14T00:31:04 |
vercel/next.js | b46d599b0fe6bae102f98dac49cfeec0f1102eb6 | dc5939158af99146e9992619b347336a193442c0 | Add negation pattern support to `--debug-build-paths` (#88654)
Patterns prefixed with `!` now exclude matching files from the `next build --debug-build-paths` option.
Using only negation patterns will build everything except the excluded paths.
Examples:
- `--debug-build-paths 'app/**,!app/[lang]/**'` - build a... | [
{
"path": "packages/next/src/bin/next.ts",
"patch": "@@ -183,7 +183,7 @@ program\n )\n .option(\n '--debug-build-paths <patterns>',\n- 'Comma-separated glob patterns or explicit paths for selective builds. Examples: \"app/*\", \"app/page.tsx\", \"app/**/page.tsx\"'\n+ 'Comma-separated glob pat... | 2026-01-19T12:29:54 |
golang/go | 657b331ff5da9b02bd98b489ff144a03c6651bae | bd9222b525b44d91941fc4d179b467103817d463 | net/url: fix example of Values.Encode
Calling url.Values.Encode generates a query string with the
values sorted by key. However, in the example in the documentation
this behaviour is not reflected. This change corrects this.
Change-Id: Id95a5d79b57dc20c3bff1f0c6975c76dcd8412b1
Reviewed-on: https://go-review.googlesou... | [
{
"path": "src/net/url/example_test.go",
"patch": "@@ -58,11 +58,12 @@ func ExampleValues() {\n \tv.Add(\"friend\", \"Jess\")\n \tv.Add(\"friend\", \"Sarah\")\n \tv.Add(\"friend\", \"Zoe\")\n-\t// v.Encode() == \"name=Ava&friend=Jess&friend=Sarah&friend=Zoe\"\n+\tfmt.Println(v.Encode())\n \tfmt.Println(v.Ge... | 2025-11-24T19:52:22 |
electron/electron | 062d3a616881309bbfb20556106980482685e905 | f2240e07f0fb606ae111a4937ed4e6093a1d57ed | fix: build error with enable_electron_extensions=false (#46812)
Fix build error with enable_electron_extensions=false
In file included from ../../base/allocator/partition_allocator/src/partition_alloc/pointers/raw_ptr_backup_ref_impl.h:13,
from ../../base/allocator/partition_allocator/src/partition_a... | [
{
"path": "shell/browser/usb/electron_usb_delegate.cc",
"patch": "@@ -12,6 +12,7 @@\n #include \"content/public/browser/render_frame_host.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"electron/buildflags/buildflags.h\"\n+#include \"services/device/public/mojom/usb_device.mojom.h\"\n ... | 2025-04-28T15:56:17 |
nodejs/node | 62c62056ca8b987a2b11fe71a18ab1deb0f4611a | f86b652bc8beec4aea778bfc621781264dfb6c6a | benchmark: calibrate length of util.diff
500 + 1000 already cover the curve. 2000 doesn’t add
new qualitative insight — it just extends the same curve
further down (another ~3–4× slowdown).
According to https://github.com/nodejs/performance/issues/186
this benchmark takes one minute to conclude a single run.
This sho... | [
{
"path": "benchmark/util/diff.js",
"patch": "@@ -5,7 +5,7 @@ const common = require('../common');\n \n const bench = common.createBenchmark(main, {\n n: [1e3],\n- length: [1e3, 2e3],\n+ length: [500, 1000],\n scenario: ['identical', 'small-diff', 'medium-diff', 'large-diff'],\n });\n ",
"addition... | 2025-08-24T20:57:38 |
facebook/react | d92e5713be2dc78f467c31fce4a1e5c84a74e4e6 | 93b61fc4ecb34abec2b55c206f34ed22dd340b71 | [compiler] Avoid bailouts when inserting gating (#32598)
This change fixes a coverage hole in rolling out with `gating`. Prior to
this PR, configuring `gating` causes React Compiler to bail out of
optimizing some functions.
This means that it's not entirely safe to cutover from `gating` enabled
for all users (i.e. ro... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts",
"patch": "@@ -10,6 +10,117 @@ import * as t from '@babel/types';\n import {PluginOptions} from './Options';\n import {CompilerError} from '../CompilerError';\n \n+/**\n+ * Gating rewrite for function declarations which are r... | 2025-03-13T23:31:49 |
vercel/next.js | 1bbba2a079b19a017069baffc0aca3e5421c3f7e | 633e274965b78dff11c59702794823dbf92f689a | Revert "[turbopack] Add bundling support for worker_threads" (#88725)
Reverts vercel/next.js#87746
because of this build error:
```
> Build error occurred
Error: Turbopack build failed with 1 errors:
./node_modules/.pnpm/thread-stream@3.1.0/node_modules/thread-stream/index.js
non-evaluatable module
Worker thread modu... | [
{
"path": ".rustfmt.toml",
"patch": "@@ -1,4 +1,3 @@\n-edition = \"2024\"\n max_width = 100\n \n comment_width = 100",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -14,7 +14,10 @@ use turbo_tasks::{Completion, Re... | 2026-01-19T09:48:34 |
golang/go | bd9222b525b44d91941fc4d179b467103817d463 | e3088d6eb8ff0d63edc3452cbed827cb67231182 | crypto/sha3: reduce cSHAKE allocations
Consider a hypothetical SumCSHAKE256 function:
func SumCSHAKE256(N, S, data []byte, length int) []byte {
out := make([]byte, 64)
return sumCSHAKE256(out, N, S, data, length)
}
func sumCSHAKE256(out, N, S, data []byte, length int) []byte {
if len(out) < length {
out ... | [
{
"path": "src/crypto/internal/fips140/sha3/shake.go",
"patch": "@@ -23,14 +23,14 @@ type SHAKE struct {\n \tinitBlock []byte\n }\n \n-func bytepad(data []byte, rate int) []byte {\n-\tout := make([]byte, 0, 9+len(data)+rate-1)\n-\tout = append(out, leftEncode(uint64(rate))...)\n-\tout = append(out, data...)... | 2024-12-15T01:38:43 |
electron/electron | f2240e07f0fb606ae111a4937ed4e6093a1d57ed | 0c103f390c9c9cb51fa63ead3ec2c47ec9dedc90 | chore: bump chromium to 137.0.7149.0 (main) (#46777)
* chore: bump chromium in DEPS to 137.0.7144.0
* chore: bump chromium in DEPS to 137.0.7145.0
* chore: bump chromium in DEPS to 137.0.7147.0
* chore: update patches
* Remove deprecated GetVar(std::string_view, std::string*) overload
Refs https://chromium-review... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7143.0',\n+ '137.0.7149.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-04-28T15:39:12 |
nodejs/node | f86b652bc8beec4aea778bfc621781264dfb6c6a | 8692e601cc8a6f392449c70ee3a77082aad26e79 | src: enforce assumptions in FIXED_ONE_BYTE_STRING
These functions are both meant to be used with a null-terminated and
thus non-empty sequence of `char`s. However, there is nothing stopping
call sites from passing zero-length sequences, which would certainly not
be null-terminated and also would cause an underflow in ... | [
{
"path": "src/util.h",
"patch": "@@ -346,17 +346,19 @@ inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n std::string_view str);\n \n // Used to be a macro, hence the uppercase name.\n-template <int N>\n-inline v8::Local<v8::String> FIXED_ONE_BYTE_... | 2025-08-24T11:07:37 |
facebook/react | f457d0b4c6dd70c10acb9c93c7d01c80d8e23b92 | 1c79cb82ab8d3bd1f099115704f28df1097beb46 | [compiler][ez] Only fail gating hoisting check for referenced identifiers (#32596)
Reduce false positive bailouts by using the same
`isReferencedIdentifier` logic that the compiler also uses for
determining context variables and a function's own hoisted declarations.
Details:
Previously, we counted every babel identi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -1143,7 +1143,7 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n * A null scope means there's no function scope, which means we're at the\n * top level scope.\n */\n- ... | 2025-03-13T16:10:22 |
vercel/next.js | e05510ab3bf91c02c7381e2c471363561ffa1198 | 6cc7273f342c6ea1408a84e78a476a6ed1b194e3 | Fix `--debug-build-paths` bracket escaping for glob patterns (#88660)
Always escape Next.js dynamic route brackets (e.g., `[slug]`) in `--debug-build-paths` patterns instead of checking filesystem existence.
The previous approach failed when glob wildcards like `**` preceded bracket expressions (e.g., `app/**/[slug... | [
{
"path": "packages/next/src/lib/resolve-build-paths.ts",
"patch": "@@ -13,31 +13,16 @@ interface ResolvedBuildPaths {\n }\n \n /**\n- * Escapes bracket expressions that correspond to existing directories.\n- * This allows Next.js dynamic routes like [slug] to work with glob patterns.\n+ * Escapes Next.js d... | 2026-01-17T18:40:16 |
golang/go | e3088d6eb8ff0d63edc3452cbed827cb67231182 | a5ebc6b67c1e397ab74abadf20a7f290cf28949e | crypto/hpke: expose crypto/internal/hpke
Fixes #75300
Change-Id: I6a83e0d040dba3366819d2afff704f886a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/723560
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Auto-Submit: Filippo Valsorda <filippo@golang.o... | [
{
"path": "api/next/75300.txt",
"patch": "@@ -10,3 +10,54 @@ pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error)\n pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300\n pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75... | 2025-11-22T22:03:14 |
electron/electron | 27f6adf8dffd411b83cce621f246891d58a5cf42 | b03c71213ee5f145090bad541ebb88bb7b0e7e41 | fix: run `visibleOnAllWorkspaces` tests on the right platforms (#46815)
* test: add platform test on visibleOnAllWorkspaces tests
visibleOnAllWorkspaces is not supported on Windows
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window state... | [
{
"path": "spec/api-browser-window-spec.ts",
"patch": "@@ -5407,6 +5407,26 @@ describe('BrowserWindow module', () => {\n expect(w.webContents.isLoadingMainFrame()).to.be.true('isLoadingMainFrame');\n });\n });\n+\n+ ifdescribe(process.platform !== 'win32')('visibleOnAllWorkspaces state'... | 2025-04-28T14:34:00 |
facebook/react | ef06b54f8d1d9818806e221974c8b64efbbfda0d | 1b77c3d7b98f21ec707d3accb441c678dac2803f | fix: clarify which mobx libs are not compatible with compiler (#32570)
## Summary
Right now, `react-compiler-healthcheck` flags `mobx` as a "known
incompatible library". But it's not precisely *MobX* that's
incompatible. It's the observer HOC that comes from `mobx-react` and
`mobx-react-lite`.
I've been working on
[... | [
{
"path": "compiler/packages/react-compiler-healthcheck/src/config.ts",
"patch": "@@ -1,3 +1,7 @@\n export const config = {\n- knownIncompatibleLibraries: ['mobx', '@risingstack/react-easy-state'],\n+ knownIncompatibleLibraries: [\n+ 'mobx-react',\n+ 'mobx-react-lite',\n+ '@risingstack/react-easy... | 2025-03-13T15:46:26 |
vercel/next.js | 6cc7273f342c6ea1408a84e78a476a6ed1b194e3 | 2bf8a244817a9782ca2eae3011880e6656a31df4 | fix: setImmediate[util.promisify.custom] access fails in edge runtime (#88685)
Follow up to #88346. Looks like the change there crashes in edge because
`globalThis.setImmediate` isn't defined, so we check before accessing. | [
{
"path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.ts",
"patch": "@@ -23,8 +23,12 @@ const originalSetImmediate = globalThis.setImmediate\n const originalClearImmediate = globalThis.clearImmediate\n const originalNextTick = process.nextTick\n const originalSetImmedia... | 2026-01-17T17:12:39 |
golang/go | e8fdfeb72b0468b645f256bcaf46570f866a54fd | 12d437c09a2ea871333547c8ac3ea536f433891b | reflect: add iterator equivalents for NumField, NumIn, NumOut and NumMethod
The new methods are Type.Fields, Type.Methods, Type.Ins, Type.Outs,
Value.Fields and Value.Methods.
These methods have been introduced into the reflect package (as well
as tests) replacing three-clause for loops where possible.
Fixes #66631
... | [
{
"path": "api/next/66631.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg reflect, type Type interface, Fields() iter.Seq[StructField] #66631\n+pkg reflect, type Type interface, Methods() iter.Seq[Method] #66631\n+pkg reflect, type Type interface, Ins() iter.Seq[Type] #66631\n+pkg reflect, type Type interface, Outs()... | 2025-11-19T21:18:39 |
facebook/react | 1b77c3d7b98f21ec707d3accb441c678dac2803f | 5ccfcd17ffa0adf9e7f5ba7fbf48e6bf6a4eb67e | Update DEVELOPMENT_GUIDE.md (#32281)
fix: update CONTRIBUTING.md link path
Updated the relative path to CONTRIBUTING.md from `../CONTRIBUTING.md`
to `./../../CONTRIBUTING.md` to ensure the correct file is referenced.
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these ch... | [
{
"path": "compiler/docs/DEVELOPMENT_GUIDE.md",
"patch": "@@ -1,6 +1,6 @@\n # React Compiler Development Guide\n \n-Note: for general notes about contributing, see the [CONTRIBUTING.md](../CONTRIBUTING.md).\n+Note: for general notes about contributing, see the [CONTRIBUTING.md](../../CONTRIBUTING.md).\n \n ... | 2025-03-13T15:45:26 |
electron/electron | 8fa7d324d10a4a697e98be0748849fe01c02f3b9 | 7fa297a84982c44db32e5d4d591fc4e1586f5bd5 | fix: set `XDG_CURRENT_DESKTOP` env var back to original value before invoking xdg utils (#45310)
* Fix XDG_CURRENT_DESKTOP before invoking XDGUtil
* apply suggestion
* use existing XDG_CURRENT_DESKTOP const | [
{
"path": "shell/common/platform_util_linux.cc",
"patch": "@@ -15,6 +15,7 @@\n \n #include \"base/cancelable_callback.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/containers/map_util.h\"\n #include \"base/environment.h\"\n #include \"base/files/file_util.h\"\n #include \"base/files/scoped... | 2025-04-25T16:31:36 |
vercel/next.js | 0929612595c7bef312d692c7691641e597d0cd42 | 05406f6e73ad9b39bd63d706dea864c009ea76db | [turbopack] Add bundling support for worker_threads (#87746)
Add support for bundling worker_threads workers
Previously we only supported tracing dependencies of worker threads. However, this could trigger issues if the callsite was getting bundled since we would believe that the file was both bundled and unbundled.... | [
{
"path": ".rustfmt.toml",
"patch": "@@ -1,3 +1,4 @@\n+edition = \"2024\"\n max_width = 100\n \n comment_width = 100",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -14,10 +14,7 @@ use turbo_tasks::{Completion, Re... | 2026-01-16T23:24:11 |
golang/go | 4fb7e083a868946db08db9ef3bc807e21c8fc961 | 31d373534e6b2582817585851f45b8af6386d023 | crypto/tls: expose HelloRetryRequest state
This commit adds fields to the ClientHelloInfo and ConnectionState
structures to represent hello retry request state information.
ClientHelloInfo gains a new HelloRetryRequest bool field that indicates
if the client hello was sent in response to a TLS 1.3 hello retry
request... | [
{
"path": "api/next/74425.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/tls, type ConnectionState struct, HelloRetryRequest bool #74425\n+pkg crypto/tls, type ClientHelloInfo struct, HelloRetryRequest bool #74425",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc... | 2025-11-03T19:47:42 |
facebook/react | 8646349aebb514eeef7e01614fb4aeb2f2c7a6c8 | f31779a112f3b5c9e56d651ad59c2db0bc236981 | [rollup] Fix codeFrame is not a function (#32591)
Extracting portions of #32416 for easier review.
Fixes a small issue where `codeFrame` is not a function when a rollup
error was encountered.
Co-authored-by: michael faith <michaelfaith@users.noreply.github.com>
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [... | [
{
"path": "scripts/rollup/build.js",
"patch": "@@ -22,7 +22,7 @@ const useForks = require('./plugins/use-forks-plugin');\n const dynamicImports = require('./plugins/dynamic-imports');\n const Packaging = require('./packaging');\n const {asyncRimRaf} = require('./utils');\n-const codeFrame = require('@babel/... | 2025-03-12T23:12:33 |
electron/electron | 372cdb5deec889251e1b0b40e2440ff9fa8341e3 | 973e5d0249146519523459ff23f0fbccabab5309 | fix: bluetooth crash in `select-bluetooth-device` event (#46745)
fix: bluetooth crash on bluetooth off | [
{
"path": "shell/browser/lib/bluetooth_chooser.cc",
"patch": "@@ -25,19 +25,6 @@ struct Converter<electron::BluetoothChooser::DeviceInfo> {\n \n namespace electron {\n \n-namespace {\n-\n-void OnDeviceChosen(const content::BluetoothChooser::EventHandler& handler,\n- const std::string& dev... | 2025-04-25T15:26:19 |
facebook/react | f31779a112f3b5c9e56d651ad59c2db0bc236981 | 0e2402eb20de53e08fd0a767554f93e5e53af873 | [ez] Run Prettier on eslint-plugin-react-compiler/src/types (#32590)
Extracting portions of #32416 for easier review.
This PR contains small formatting fixes.
Co-authored-by: michael faith <michaelfaith@users.noreply.github.com>
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com)... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/types/hermes-eslint.d.ts",
"patch": "@@ -6,7 +6,7 @@\n */\n \n // v0.17.1\n-declare module \"hermes-eslint\" {\n+declare module 'hermes-eslint' {\n // https://fburl.com/2vikhmaa\n type ParseForESLintOptions = {\n /**\n@@ -37,7 +37,7 @@ d... | 2025-03-12T23:12:22 |
nodejs/node | 52f616d42f9bbc83cc29d0fbdbeea9d5f26e0f85 | 589ef79bf8949d1839cf31dce66e20ccb69c82f0 | test_runner: do not error when getting `fullName` of root context
PR-URL: https://github.com/nodejs/node/pull/59377
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -1533,6 +1533,8 @@ class Suite extends Test {\n }\n \n function getFullName(test) {\n+ if (test === test.root) return test.name;\n+\n let fullName = test.name;\n \n for (let t = test.parent; t !== t.root; t = t.parent) {",
"additions": 2,
... | 2025-08-23T19:40:58 |
vercel/next.js | 5a12867c8eb86a050163a5b526d4469fae276f73 | d3b3e3a3cb93579287dc712058f27d6d874b6285 | fix: capture promisified setImmediate separately (#88346)
### What?
Capture `setImmediate[promisify.custom]` at module initialization
instead of lazily accessing it when needed.
```
RangeError: Maximum call stack size exceeded
at patchedSetImmediatePromise (node_modules/.pnpm/next@16.1.1_@babel+core@7.28.... | [
{
"path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.ts",
"patch": "@@ -22,6 +22,9 @@ let currentExecution: Execution | null = null\n const originalSetImmediate = globalThis.setImmediate\n const originalClearImmediate = globalThis.clearImmediate\n const originalNextTic... | 2026-01-16T21:24:15 |
golang/go | 31d373534e6b2582817585851f45b8af6386d023 | aa093eed830796b3ba498b04077d8ee2d6d428bf | doc: pre-announce removal of 1.23 and earlier crypto GODEBUGs
For #75316
Change-Id: Ife391b8c3e7fd2fec0e53b296d47b4756a787001
Reviewed-on: https://go-review.googlesource.com/c/go/+/723100
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "doc/godebug.md",
"patch": "@@ -334,13 +334,15 @@ any effect.\n Go 1.23 changed the default TLS cipher suites used by clients and servers when\n not explicitly configured, removing 3DES cipher suites. The default can be reverted\n using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites)... | 2025-11-21T22:11:41 |
electron/electron | 1976e935e7ef5fbf5d02c1ce855543d494d23857 | 51dbe69e456a5fb6166b990470eabb481d11d24e | fix: missing `HandleScope` in `RemoveFromParentChildWindows` (#46758) | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -1161,8 +1161,10 @@ void BaseWindow::RemoveFromParentChildWindows() {\n if (parent_window_.IsEmpty())\n return;\n \n+ v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();\n+ v8::HandleScope handle_scope(isolate);\n gin:... | 2025-04-25T12:04:25 |
facebook/react | 0e2402eb20de53e08fd0a767554f93e5e53af873 | f695f95290aa3560a00e8a3b617205ac9e087e0e | Update eslint fixtures (#32589)
Extracting portions of #32416 for easier review.
This PR lightly updates the build scripts for the eslint fixtures.
Co-authored-by: michael faith <michaelfaith@users.noreply.github.com>
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best revi... | [
{
"path": "fixtures/eslint-v6/build.mjs",
"patch": "@@ -1,12 +1,13 @@\n #!/usr/bin/env node\n \n-import {exec} from 'node:child_process';\n+import {execSync} from 'node:child_process';\n import {dirname, resolve} from 'node:path';\n import {fileURLToPath} from 'node:url';\n \n const __filename = fileURLToPa... | 2025-03-12T23:07:51 |
rust-lang/rust | 9975d4760d1888a7cbd4bd9acfd26101792a3bcf | fd0c901b00ee1e08a250039cdb90258603497e20 | Reorder inline asm operands in pretty printer to satisfy grammar constraints
After macro expansion, named `asm!` operands are converted to positional
operands and the template string uses numeric indices. However, the pretty
printer previously emitted operands in their original AST order, which could
place positional ... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state.rs",
"patch": "@@ -1620,8 +1620,86 @@ impl<'a> State<'a> {\n Options(InlineAsmOptions),\n }\n \n- let mut args = vec![AsmArg::Template(InlineAsmTemplatePiece::to_string(&asm.template))];\n- args.extend(asm.operands.iter(... | 2026-03-19T10:27:36 |
nodejs/node | fb07edc82faa6b2bd70d55bf5bf242c75cc112f2 | 6fd67ec6e3ccbdfcfa0300b9b742040a0607a4bc | test: use mustSucceed in test-repl-tab-complete-import
Refactor test/parallel/test-repl-tab-complete-import.js to use
mustSucceed in places where no error is expected in the callback. This
clarifies the intent of the tests and improves assertion accuracy.
Refs: https://github.com/nodejs/node/pull/59204
PR-URL: https:... | [
{
"path": "test/parallel/test-repl-tab-complete-import.js",
"patch": "@@ -32,8 +32,7 @@ const testMe = repl.start({\n testMe._domain.on('error', assert.ifError);\n \n // Tab complete provides built in libs for import()\n-testMe.complete('import(\\'', common.mustCall((error, data) => {\n- assert.strictEqual... | 2025-08-23T09:28:02 |
vercel/next.js | d3b3e3a3cb93579287dc712058f27d6d874b6285 | 7e9d7cbd60325bf916af6e0d47c81d2071867386 | Turbopack: use bugs.nextjs.org for Turbopack panic error reports (#88356)
Update the bug report link to use the new bugs.nextjs.org service
instead of the direct GitHub discussions URL. Also shares more code when
handling terminals that don't support links.
Test Plan: Added a deliberate panic to a turbotask, verified... | [
{
"path": "crates/napi/src/next_api/turbopack_ctx.rs",
"patch": "@@ -359,27 +359,22 @@ pub fn log_internal_error_and_inform(internal_error: &anyhow::Error) {\n env!(\"VERGEN_GIT_DESCRIBE\"),\n env!(\"NEXTJS_VERSION\")\n );\n- let new_discussion_url = if supports_hyperlinks::supports_h... | 2026-01-16T21:05:44 |
golang/go | aa093eed830796b3ba498b04077d8ee2d6d428bf | 1dc1505d4ad0d3a3172d90e16858697b0dca0ab7 | crypto/fips140: add Version
Fixes #75301
Change-Id: If953b4382499570d5437491036f91cbe4fec7c01
Reviewed-on: https://go-review.googlesource.com/c/go/+/723101
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "api/next/75301.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/fips140, func Version() string #75301",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/fips140/75301.md",
"patch": "@@ -0,0 +1 @@\n+[Version] returns the res... | 2025-11-21T22:27:36 |
electron/electron | 51dbe69e456a5fb6166b990470eabb481d11d24e | 08318dc05de25cbac5997b6c900ad7a390bd7c59 | fix: vibrancy window border (#46648)
* fix: vibrancy window border
* Use WidgetDelegate::OnWidgetInitialized instead | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -225,6 +225,7 @@ class NativeWindowMac : public NativeWindow,\n bool CanMaximize() const override;\n std::unique_ptr<views::NonClientFrameView> CreateNonClientFrameView(\n views::Widget* widget) override;\n+ void OnWidgetInitialized() ov... | 2025-04-25T09:42:48 |
facebook/react | 5de83dcc0f34dc196664cb200088c6253cb2cd34 | 5135f98795d13aeea6f009b537a660c7afbe17ed | [playground] Use onMount to check if the editor is available (#32586)
Playground test flakiness seems to be fixed but adding this as an extra
precaution | [
{
"path": "compiler/apps/playground/__tests__/e2e/page.spec.ts",
"patch": "@@ -9,6 +9,13 @@ import {expect, test} from '@playwright/test';\n import {encodeStore, type Store} from '../../lib/stores';\n import {format} from 'prettier';\n \n+function isMonacoLoaded(): boolean {\n+ return (\n+ typeof window... | 2025-03-12T22:27:15 |
rust-lang/rust | e9740a4be5cf4e89accacae0bd868557d942d247 | fd0c901b00ee1e08a250039cdb90258603497e20 | Insert space after float literal ending with `.` in pretty printer
The pretty printer was collapsing unsuffixed float literals (like `0.`)
with adjacent dot tokens, producing ambiguous or invalid output:
- `0. ..45.` (range) became `0...45.`
- `0. ..=360.` (inclusive range) became `0...=360.`
- `0. .to_string()` (met... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs",
"patch": "@@ -260,12 +260,15 @@ impl<'a> State<'a> {\n //\n // loop { break x; }.method();\n //\n- self.print_expr_cond_paren(\n- receiver,\n- receiver.precedence() < ExprPrecedence::Unam... | 2026-03-19T10:27:40 |
vercel/next.js | 5ad737c9c589f1c092fdbac6d679fc25acf8fd9f | 52b2a9c60b83b0bd0902ae3467c82ff0a8510b00 | fix: make RedirectType constant properties literal types (#88653)
### What?
Fixed TypeScript error where `RedirectType.replace` and
`RedirectType.push` were typed as `string` instead of literal types,
causing compilation errors when used with `redirect()`.
### Why?
`RedirectType` constant properties weren't properl... | [
{
"path": "packages/next/src/client/components/navigation.react-server.ts",
"patch": "@@ -16,4 +16,4 @@ export { ReadonlyURLSearchParams }\n export const RedirectType = {\n push: 'push',\n replace: 'replace',\n-}\n+} as const",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
... | 2026-01-16T19:53:41 |
nodejs/node | 7178e9141ae83a28e5742c38594a1068314a88bf | 3b4f9b26b1e4f05257949627b478f9223611961d | crypto: fix subtle.getPublicKey error for secret type key inputs
PR-URL: https://github.com/nodejs/node/pull/59558
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "lib/internal/crypto/webcrypto.js",
"patch": "@@ -1090,7 +1090,8 @@ async function getPublicKey(key, keyUsages) {\n });\n \n if (key[kKeyType] !== 'private')\n- throw lazyDOMException('key must be a private key', 'InvalidAccessError');\n+ throw lazyDOMException('key must be a private key... | 2025-08-22T15:56:56 |
golang/go | 6851795fb6cda61e2c8396c36da187a2bd87b29e | 0921e1db83d3e67032999b5a2f54f5ede8ba39b5 | runtime: add GODEBUG=tracebacklabels=1 to include pprof labels in tracebacks
Copy LabelSet to an internal package as label.Set, and include (escaped)
labels within goroutine stack dumps.
Labels are added to the goroutine header as quoted key:value pairs, so
the line may get long if there are a lot of labels.
To hand... | [
{
"path": "doc/godebug.md",
"patch": "@@ -168,6 +168,12 @@ allows malformed hostnames containing colons outside of a bracketed IPv6 address\n The default `urlstrictcolons=1` rejects URLs such as `http://localhost:1:2` or `http://::1/`.\n Colons are permitted as part of a bracketed IPv6 address, such as `htt... | 2025-05-23T20:04:08 |
electron/electron | 08318dc05de25cbac5997b6c900ad7a390bd7c59 | 3e78bbde6af9776d6945945435c0acc1f0b81f28 | fix: corner smoothing with 0 radii (#46751) | [
{
"path": "patches/chromium/feat_corner_smoothing_css_rule_and_blink_painting.patch",
"patch": "@@ -373,7 +373,7 @@ index 88e78f1d8050c73ae6a8929f23e636ef7a383404..17b63c5ecdcd8feb17b76a13392595c7\n \n // A Corner is a axis-aligned quad, with the points ordered (start, outer,\n diff --git a/third_party/... | 2025-04-25T08:54:04 |
rust-lang/rust | c77768590dbc2e63acf853ab86177de3fb4e5bfb | fd0c901b00ee1e08a250039cdb90258603497e20 | Fix whitespace after fragment specifiers in macro pretty printing
When a macro-generating-macro captures fragment specifier tokens (like
`$x:ident`) as `tt` metavariables and replays them before a keyword
(like `where`), the pretty printer concatenates them into an invalid
fragment specifier (e.g. `$x:identwhere` inst... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state.rs",
"patch": "@@ -329,6 +329,19 @@ fn print_crate_inner<'a>(\n /// - #63896: `#[allow(unused,` must be printed rather than `#[allow(unused ,`\n /// - #73345: `#[allow(unused)]` must be printed rather than `# [allow(unused)]`\n ///\n+/// Returns `true` i... | 2026-03-19T10:27:40 |
facebook/react | 5135f98795d13aeea6f009b537a660c7afbe17ed | 26bca0005c7ef82a733c23f08baa1e2b8d702ec9 | Add DOM fixture page for Fragment Ref (#32527)
This adds a page to the DOM fixture to test Fragment Refs. The first
test case is for `addEventListener`/`removeEventListener`.
Setting `enableFragmentRefs` to `__EXPERIMENTAL__` and building is
required to run the fixture.
<img width="872" alt="Screenshot 2025-03-05 at... | [
{
"path": "fixtures/dom/src/components/Header.js",
"patch": "@@ -89,6 +89,7 @@ class Header extends React.Component {\n <option value=\"/selection-events\">Selection Events</option>\n <option value=\"/suspense\">Suspense</option>\n <option value=\"/form-state\... | 2025-03-12T21:49:44 |
vercel/next.js | 8cfdcacf376cb8088247ba870004dbd2787078cd | 3aad67b75c95ef20686d455396348ea4516fb2d4 | Log browser error and warnings in terminal (#88352) | [
{
"path": "packages/next/src/next-devtools/userspace/app/errors/intercept-console-error.ts",
"patch": "@@ -14,8 +14,11 @@ export function patchConsoleError() {\n }\n window.console.error = function error(...args: any[]) {\n let maybeError: unknown\n+ let isReplayedLog = false\n if (process.en... | 2026-01-16T14:10:24 |
golang/go | 1a53ce9734c0b2a3e2a9814e75949ea77a978143 | c6f882f6c58ed56fa4bd2d8256ec55d9992c3583 | context: don't return the wrong error when Cause races cancellation
Check to see if a context is canceled at all
before checking for the cancellaion cause.
If we can't find a cause, use the original error.
Avoids a data race where we look for a cause,
find none (because the context is not canceled),
the context is ca... | [
{
"path": "src/context/context.go",
"patch": "@@ -286,23 +286,23 @@ func withCancel(parent Context) *cancelCtx {\n // Otherwise Cause(c) returns the same value as c.Err().\n // Cause returns nil if c has not been canceled yet.\n func Cause(c Context) error {\n+\terr := c.Err()\n+\tif err == nil {\n+\t\tretu... | 2025-06-06T22:38:28 |
electron/electron | 3e78bbde6af9776d6945945435c0acc1f0b81f28 | 37f8db15e9356a6573584abcb605128d33a6da2c | fix: crash when renderer process crashes while webview is reloading (#46735)
WebView uses WebContentsViewChildFrame, which doesn't have a Focus impl
and triggers a fatal NOTREACHED. | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -4004,6 +4004,14 @@ void WebContents::ExitPictureInPicture() {\n PictureInPictureWindowManager::GetInstance()->ExitPictureInPicture();\n }\n \n+bool WebContents::ShouldFocusPageAfterCrash(content::WebContents* source) {\n+ // WebVie... | 2025-04-25T08:10:27 |
rust-lang/rust | e15897f6c4bd948526b8f43d3ea8874075eccab9 | fd0c901b00ee1e08a250039cdb90258603497e20 | Parenthesize or-patterns in prefix pattern positions in pretty printer
The AST pretty printer was dropping parentheses around or-patterns
when they appeared inside `@` bindings, `&` references, or `box`
patterns. For example:
- `v @ (1 | 2 | 3)` was printed as `v @ 1 | 2 | 3`
- `&(1 | 2 | 3)` was printed as `&1 | 2 |... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state.rs",
"patch": "@@ -1749,6 +1749,23 @@ impl<'a> State<'a> {\n }\n }\n \n+ /// Print a pattern, parenthesizing it if it is an or-pattern (`A | B`).\n+ ///\n+ /// Or-patterns have the lowest precedence among patterns, so they need\n+ ... | 2026-03-19T10:27:40 |
facebook/react | 3456b6634abb4a8a2ef500397b94606ce4b6dda7 | 75c979847f1c6dd954860f17b4dc181ad7c2891e | [compiler] Repro for object spread and Array.from with mutable iterators (#32520)
See newly added test fixtures. Repros fixed in later prs of this stack
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-array-spread-mutable-iterator.expect.md",
"patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * TODO: object spreads should have conditionally mutate semantics\n+ * Found differences in evaluator ... | 2025-03-12T19:08:55 |
nodejs/node | 3b4f9b26b1e4f05257949627b478f9223611961d | 3c1521cfa00c1ddfff344cbf4225ac5132d36023 | module: allow overriding linked requests for a ModuleWrap
This allows overriding linked requests for a `ModuleWrap`. The
`statusOverride` in `vm.SourceTextModule` could call `moduleWrap.link`
a second time when `statusOverride` of `linking` is set to undefined.
Overriding of linked requests should be no harm but bett... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -604,23 +604,13 @@ void ModuleWrap::GetModuleRequests(const FunctionCallbackInfo<Value>& args) {\n \n // moduleWrap.link(moduleWraps)\n void ModuleWrap::Link(const FunctionCallbackInfo<Value>& args) {\n- Realm* realm = Realm::GetCurrent(args);\n Isolate* isola... | 2025-08-22T12:57:07 |
vercel/next.js | 166e0ef37566825a75a03ec4ae4668b13a384253 | 52b2b8be6a74b4f65fe595de1d6e3311efd3c446 | Fix incorrect 'Ready in' time for next start (#88589)
## What
Fix the incorrect "Ready in" time displayed when running `next start`.
The bug caused the time to show impossibly large values like "Ready in
29474457.7min" instead of the actual startup duration.
## Why
The `NEXT_PRIVATE_START_TIME` environment variable... | [
{
"path": "packages/next/src/cli/next-start.ts",
"patch": "@@ -1,5 +1,12 @@\n #!/usr/bin/env node\n \n+// Ensure NEXT_PRIVATE_START_TIME is set for accurate \"Ready in\" timing.\n+// This should already be set by bin/next.ts, but we set it here as a fallback\n+// in case the module is loaded through a diffe... | 2026-01-16T08:28:05 |
golang/go | c6f882f6c58ed56fa4bd2d8256ec55d9992c3583 | 97d5295f6fcbc4c24225096900c22773d6672cce | crypto/x509: add ExtKeyUsage.String and KeyUsage.String methods
Fixes #56866
Change-Id: Icc8f067820f5d74e0d5073bce160429e6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/723360
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Filippo Val... | [
{
"path": "api/next/56866.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, method (ExtKeyUsage) String() string #56866\n+pkg crypto/x509, method (KeyUsage) String() string #56866",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/... | 2025-11-22T15:26:24 |
rust-lang/rust | 082cdf7c48245088b3384e8a573e60b8dda14d9d | fd0c901b00ee1e08a250039cdb90258603497e20 | Preserve braces around `self` in use tree pretty printing
The AST pretty printer strips braces from single-item `use` sub-groups,
simplifying `use foo::{Bar}` to `use foo::Bar`. However, when the single
item is `self`, this produces `use foo::self` which is not valid Rust
(E0429) — the grammar requires `use foo::{self... | [
{
"path": "compiler/rustc_ast_pretty/src/pprust/state/item.rs",
"patch": "@@ -881,7 +881,13 @@ impl<'a> State<'a> {\n }\n if items.is_empty() {\n self.word(\"{}\");\n- } else if let [(item, _)] = items.as_slice() {\n+ } else i... | 2026-03-19T10:27:40 |
facebook/react | 75c979847f1c6dd954860f17b4dc181ad7c2891e | 6aa8254bb7353fe3096289edc669cf168e9fd190 | Ignore AbortError for gestures (#32579)
Follow up to #32540.
We do allow gestures to be cancelled early (we call skipTransition) if
the gesture stops before it has even started.
This happens in the fixture when we auto-scroll. | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1577,7 +1577,10 @@ function cancelAllViewTransitionAnimations(scope: Element) {\n // either cached the font or preloaded it earlier.\n const SUSPENSEY_FONT_TIMEOUT = 500;\n \n-function customizeViewTransitionError(error... | 2025-03-12T18:20:35 |
nodejs/node | a73a9a028b3cf05e74fbc42a884ac40ac56c6590 | d30090b427af22d6244f59d6e24260fdcf036727 | doc: fix typos in `environment_variables.md`
PR-URL: https://github.com/nodejs/node/pull/59536
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/environment_variables.md",
"patch": "@@ -96,10 +96,10 @@ For example:\n MY_VAR_B = ' my variable b '\n ```\n \n-will be treaded identically to:\n+will be treated identically to:\n \n ```text\n-MY_VAR_A = my variable\n+MY_VAR_A = my variable a\n MY_VAR_B = ' my variable b ... | 2025-08-21T14:55:34 |
electron/electron | 08b7a1f801c15dbeb0acdf67a326d17ee1b6144d | e9f279afd12d81d86ad0fa2e9abf080147d6ff1a | chore: bump chromium to 137.0.7141.0 (main) (#46725)
* chore: bump chromium in DEPS to 137.0.7139.0
* chore: bump chromium in DEPS to 137.0.7141.0
* chore: update patches
Refs https://chromium-review.googlesource.com/c/chromium/src/+/6474596
Refs https://chromium-review.googlesource.com/c/chromium/src/+/6443472
Ref... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7128.1',\n+ '137.0.7141.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-04-24T08:18:38 |
vercel/next.js | fcfcbce3b1783cb9d5f2405e7c5d5877d799720b | e5905bded7910afe5785ca8e1e6d05ed99bf1610 | Turbopack: avoid removing cells for erroring tasks (#88305)
### What?
* avoid flagging tasks dirty when removing cells
* For errored tasks: avoid removing cell content
* For ok tasks: remove cell content later to collect more stale signals | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -427,7 +427,6 @@ impl<B: BackingStorage> Drop for OperationGuard<'_, B> {\n /// Intermediate result of step 1 of task execution completion.\n struct TaskExecutionCompletePrepareResult {\n pub new_children: FxHashSet<TaskId... | 2026-01-16T05:43:34 |
rust-lang/rust | 4a60dae793e07440c32ec2d5ef71bf58cf1df7a9 | cec0a68d6a69a9c29efc4055f7215dff1c9de103 | Add UI tests for path resolution errors of `impl` restrictions | [
{
"path": "tests/ui/impl-restriction/restriction_resolution_errors.rs",
"patch": "@@ -0,0 +1,85 @@\n+#![feature(impl_restriction)]\n+#![expect(incomplete_features)]\n+\n+pub mod a {\n+ pub enum E {}\n+ pub mod d {}\n+ pub mod b {\n+ pub mod c {}\n+\n+ // We do not use crate-relative p... | 2026-03-19T09:43:32 |
facebook/react | ca8f91f6f6b1b31023eee06c1e2a827ee178b68b | 2398554c6034e6d0992fcaa1c2e95f1757cab53e | Log errors from startViewTransition to onRecoverableError (#32540)
We customize the messages only in DEV to keep it small in prod.
We skip some messages that are not really errors but more like
information. | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1576,6 +1576,69 @@ function cancelAllViewTransitionAnimations(scope: Element) {\n // either cached the font or preloaded it earlier.\n const SUSPENSEY_FONT_TIMEOUT = 500;\n \n+function customizeViewTransitionError(error... | 2025-03-12T03:02:45 |
nodejs/node | d30090b427af22d6244f59d6e24260fdcf036727 | 9d744b5b63cae4e377041432c2e19ce384703ef2 | crypto: return cached copies from CryptoKey algorithm and usages getters
Fixes: https://github.com/nodejs/node/issues/59534
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59535
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
R... | [
{
"path": "lib/internal/crypto/keys.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ ArrayFrom,\n ArrayPrototypeSlice,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -81,6 +82,8 @@ const kAlgorithm = Symbol('kAlgorithm');\n const kExtractable = Symbol('kExtractable');\n const kKe... | 2025-08-19T12:02:53 |
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.