repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | ffd7f13c17c33e59ddc0b24b99828dca32113322 | 1122b1f26fda9da45f0d69430e24e69d55161a84 | [Pages] fix: `_error` page's `req.url` can be overwritten to dynamic param on minimal mode (#82347)
In minimal mode, if there was `/[slug].js` with `notFound: true` on the
same segment of `_error.js`, `req.url` and `ctx.asPath` were returned as
`/[slug]`, since it was re-initialized to the request url.
Therefore, don... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -2355,7 +2355,13 @@ export default abstract class Server<\n initPathname = normalizer.normalize(initPathname)\n }\n }\n- request.url = `${initPathname}${parsedInitUrl.search || ''}`\n+\n+ // On minimal mode, the reques... | 2025-08-05T18:06:32 |
golang/go | 5b0b4c01ba44f372343ed003b297f50ee3c8ff67 | 0d42cebacdba1855d11f29f708587c9a7a5cb976 | runtime: add package doc for checkfinalizer mode
Fixes #72949.
Change-Id: I114eda73c57bc7d596eb1656e738b80c1cbe5254
Reviewed-on: https://go-review.googlesource.com/c/go/+/662039
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Michael Knyszek <mknyszek@google.... | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -52,6 +52,21 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tcgocheck mode can be enabled using GOEXPERIMENT (which\n \trequires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.\n \n+\tcheckfinalizers: ... | 2025-04-02T01:46:45 |
facebook/react | a1433ca0bacff76f720ffec9a0020f56e8c9ffed | 53b12e46a17549ec7644e13c126440ed2f3629fd | fix(eslint-plugin-react-hooks): accepting `as` expressions as deps array (#28189)
## Summary
This PR closes #25844
The original issue talks about `as const`, but seems like it fails for
any `as X` expressions since it adds another nesting level to the AST.
EDIT: Also closes #20162
## How did you test this c... | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -7747,6 +7747,24 @@ const testsTypescript = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function App(props) {\n+ React.useEffect(() => {\n+ conso... | 2024-02-01T19:30:17 |
electron/electron | 5bff0fe342be7579191a7ddccf6b777c8fafb455 | 16aec702b407af24aab4632c97a21d24c2015acc | feat: add new ElectronSquirrelPreventDowngrades flag (#38625)
* sketch
* feat: add new ElectronSquirrelPreventDowngrades flag
* test: remove only
* chore: fix lint | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -5,3 +5,4 @@ feat_add_new_squirrel_mac_bundle_installation_method_behind_flag.patch\n refactor_use_posix_spawn_instead_of_nstask_so_we_can_disclaim_the.patch\n fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n chore_disable_api_dep... | 2023-09-11T18:54:51 |
facebook/react | 7bce30242137b4668b656feb866184a418cb537a | a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d | Make Other mutation validation message more generic
The current error message "This mutates a global or a variable after it
was passed to React" no longer makes sense since we now have more
specific error messages for different kinds of Effect.Mutate or
Effect.Stores. This replaces the fallthrough "Other" case ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -1506,6 +1506,6 @@ function getWriteErrorReason(abstractValue: AbstractValue): string {\n } else if (abstractValue.reason.has(ValueReason.ReactiveFunctionArgument)) {\n return \"Mutating props ... | 2024-02-01T16:02:30 |
nodejs/node | f79fd03f416130d61f739ebaefab3fa5b1641868 | 99433a2d7a7a7d73588afbd22c82aa21d2db610a | test_runner: add support for coverage via run()
PR-URL: https://github.com/nodejs/node/pull/53937
Fixes: https://github.com/nodejs/node/issues/53867
Refs: https://github.com/nodejs/node/issues/53924
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <m... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1246,6 +1246,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/53937\n+ description: Added coverage options.\n - version: v22.8.0\n pr-url: https://github.com/nodejs/node/pull/539... | 2024-09-20T13:20:45 |
vercel/next.js | bdd41bbcab24e25b925f53424d244b3a81188a18 | 2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54 | Docs: Updating guides on PPR and ISR (#81307)
The PR fixes issues in two different guides.
### PPR
In PPR, the code for jsx and tsx versions should use the language
switcher. Currently, these are displayed below each other in the guide
which seems unintentional.
### ISR
This change fixes multiple issues:
**fixes i... | [
{
"path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx",
"patch": "@@ -142,7 +142,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {\n }\n ```\n \n-```jsx filename=\"/app/dashboard/layout.js\" switcher\n+```jsx filename=\"/app/dashboard/layout.jsx\" switcher\n ... | 2025-08-05T16:18:35 |
electron/electron | 16aec702b407af24aab4632c97a21d24c2015acc | ac040bf734090cef83c954a63463bd9e21656217 | fix: ensure app load is limited to real asar files when appropriate (#39788) | [
{
"path": "lib/asar/fs-wrapper.ts",
"patch": "@@ -27,7 +27,7 @@ const cachedArchives = new Map<string, NodeJS.AsarArchive>();\n const getOrCreateArchive = (archivePath: string) => {\n const isCached = cachedArchives.has(archivePath);\n if (isCached) {\n- return cachedArchives.get(archivePath);\n+ ... | 2023-09-11T18:51:14 |
golang/go | 0d42cebacdba1855d11f29f708587c9a7a5cb976 | 2aac5a5cbacdaaefb518be7ea8ddc2a455ae35f2 | runtime: report finalizer and cleanup queue length with checkfinalizer>0
This change adds tracking for approximate finalizer and cleanup queue
lengths. These lengths are reported once every GC cycle as a single line
printed to stderr when GODEBUG=checkfinalizer>0.
This change lays the groundwork for runtime/metrics m... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -336,6 +336,20 @@ type cleanupQueue struct {\n \t//\n \t// Read without lock, written only with lock held.\n \tneedg atomic.Uint32\n+\n+\t// Cleanup queue stats.\n+\n+\t// queued represents a monotonic count of queued cleanups. This is sharded across\n+\t// ... | 2025-05-09T19:33:22 |
facebook/react | a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d | d55420c430cee6338fcc63ad663cb4b778af55de | Add test for function property mutation
There were no previous test paths that tested it, so I'm adding the example from
https://github.com/facebookexternal/forget-feedback/issues/32 as a fixture | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-function-property.expect.md",
"patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+export function ViewModeSelector(props) {\n+ const renderIcon = () => <AcceptIcon />;\n+ renderIcon.displayName = ... | 2024-02-01T16:02:30 |
rust-lang/rust | 8c26adcab0d57791c2af752fd1c0973860bc38f5 | 70c6d5a4476db95a94e417694f3535388ef613ed | libm: Add an optimization for `floor`
ceil seems to optimize better, but this gets closer to the pre-fix
codegen. | [
{
"path": "library/compiler-builtins/libm/src/math/generic/floor.rs",
"patch": "@@ -26,7 +26,6 @@ pub fn floor_status<F: Float>(x: F) -> FpResult<F> {\n return FpResult::ok(x);\n }\n \n- let status;\n let res = if e >= 0 {\n // |x| >= 1.0\n let m = F::SIG_MASK >> e.unsigne... | 2026-02-07T15:26:48 |
nodejs/node | 2a1607cc2e9c42bb935b2e50c1635fd7f4a47c25 | a6ed2148a0744cb160d4e345f505f3a227b1133a | test: fix invalid wasm test
PR-URL: https://github.com/nodejs/node/pull/54935
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/es-module/test-esm-extensionless-esm-and-wasm.mjs",
"patch": "@@ -1,8 +1,8 @@\n // Flags: --experimental-wasm-modules\n-import { mustNotCall, spawnPromisified } from '../common/index.mjs';\n+import { spawnPromisified } from '../common/index.mjs';\n import * as fixtures from '../common/fixtur... | 2024-09-20T10:42:59 |
vercel/next.js | 2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54 | a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7 | fix: OTel root span should indicate error status on exceptions (#82212)
For cases when the root span's status returned 500, the span status
returned `OK`.
This results in inaccurate telemetry, as users may expect the span to
indicate an error when a 500 occurs.
Failed CI:
https://github.com/vercel/next.js/actions/run... | [
{
"path": "packages/next/src/server/app-render/create-error-handler.tsx",
"patch": "@@ -91,6 +91,7 @@ export function createFlightReactServerErrorHandler(\n const span = getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n+ span.setAttribute('error.type', err.name)... | 2025-08-05T15:28:23 |
golang/go | 89af77deef7e554dff5ca21ff2c2aaf0a2d253ac | c58f58b9f8df0bde53bb5bc20b5ea97d34b1531d | internal/filepathlite: fix comment
fix typo
Change-Id: I46f0b052615d388a852439e63542b43e2ca62b7e
GitHub-Last-Rev: 96ac66c0362c5c544249cf465c528a924112fa76
GitHub-Pull-Request: golang/go#73725
Reviewed-on: https://go-review.googlesource.com/c/go/+/672955
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by:... | [
{
"path": "src/internal/filepathlite/path.go",
"patch": "@@ -180,7 +180,7 @@ func ToSlash(path string) string {\n \treturn replaceStringByte(path, Separator, '/')\n }\n \n-// FromSlash is filepath.ToSlash.\n+// FromSlash is filepath.FromSlash.\n func FromSlash(path string) string {\n \tif Separator == '/' {... | 2025-05-14T21:44:19 |
electron/electron | ac040bf734090cef83c954a63463bd9e21656217 | aceb432f45287492fa00982a7f2679ee7f6a04a8 | build: update @electron/typescript-definitions to fix titlebaroverlay (#39799)
build: update @electron/typescript-definitions to fix titlebarstyle | [
{
"path": "yarn.lock",
"patch": "@@ -220,9 +220,9 @@\n vscode-uri \"^3.0.7\"\n \n \"@electron/typescript-definitions@^8.14.5\":\n- version \"8.14.5\"\n- resolved \"https://registry.yarnpkg.com/@electron/typescript-definitions/-/typescript-definitions-8.14.5.tgz#07ffc7dac6008e0f659215e3b88bc0d7c6bc6ece... | 2023-09-11T18:36:36 |
facebook/react | 1219d57fc9fcbf44c873c0b10e5acbd31f613c15 | d29f7d973da616a02d6240ea10306a6f33e35ca1 | [Fizz] Support aborting with Postpone (#28183)
Semantically if you make your reason for aborting a Postpone instance
the render should not hit the error pathways but should instead follow
the postpone pathways. It's awkward today to actually get your hands on
a Postpone instance because you have to catch the throw ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -7498,4 +7498,451 @@ describe('ReactDOMFizzServer', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('does not call onError when you abort with a postpone instance during prerender', async () ... | 2024-02-01T15:14:08 |
rust-lang/rust | 70c6d5a4476db95a94e417694f3535388ef613ed | 0b0d40d5f3ab401604d138fdf2cc4785a3ecc6bc | libm: Fix `_status` status outputs on null-mantissa inputs
Values like 0.5 that have an exponent but not a mantissa are currently
being reported as OK rather than INEXACT for ceil, floor, and trunc. Fix
this and clean up the test cases.
This tries to keep the algorithm diff as simple as possible, which
introduces som... | [
{
"path": "library/compiler-builtins/libm/src/math/generic/ceil.rs",
"patch": "@@ -46,7 +46,7 @@ pub fn ceil_status<F: Float>(x: F) -> FpResult<F> {\n F::from_bits(ix)\n } else {\n // |x| < 1.0, raise an inexact exception since truncation will happen (unless x == 0).\n- if ix & F:... | 2026-02-07T13:06:05 |
nodejs/node | 636b3432d3b4cfe07ab9ee59ef861c9a96ea18fa | 4f701329728e6ee6da4e40176bdf8bb7694d1a41 | test: remove test-http-max-sockets flaky designation
There is no recent trace of failure for this test.
Fixes: https://github.com/nodejs/node/issues/47116
PR-URL: https://github.com/nodejs/node/pull/54976
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -14,8 +14,6 @@ test-watch-mode-inspect: PASS, FLAKY\n test-http2-large-file: PASS, FLAKY\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/47116\n-test-http-max-sockets: PASS, FLAKY\n # https://github.com/nodejs/node/issues/49630\n te... | 2024-09-20T09:57:06 |
vercel/next.js | a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7 | 5c38caab382517104ff80f94d93275073381cf8f | Turbopack: clean up some old TODOs (#82364)
I looked through all TODOs if there are any remaining "todo fix this for prod builds"-style comments, but there weren't any. But some of them are outdated now | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -66,7 +66,7 @@ use turbopack_core::{\n },\n output::{OutputAsset, OutputAssets},\n raw_output::RawOutput,\n- reference_type::{CssReferenceSubType, ReferenceType},\n+ reference_type::{CommonJsReferenceSubType, CssReferenceSubType, Referen... | 2025-08-05T15:15:23 |
golang/go | dfebef1c0459af0a34eceb4027c9fab5824f2eab | be0cc937ec9c109da90ec4d7da5af89606f8c0cf | cmd/compile: fold negation into addition/subtraction on arm64
Fold negation into addition/subtraction and avoid double negation.
platform: linux/arm64
file before after Δ %
addr2line 3628108 3628116 +8 +0.000%
asm 6208353 6207857 -496 -0.008%
buildid 3460682 3460418 -264... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -1198,6 +1198,7 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVDconst [0])\n (AND x x) => x\n (OR x x) => x\n@@ -1209,6 +1210,7 @@\n (XOR x (MVN y)) => (EON x y)\n (O... | 2025-05-17T06:30:07 |
electron/electron | d1827941790f23b241ef3f234a9782750ac97e8d | ab185c058f894ddc556f67b2853de4adad2bb10c | fix: frameless mica/acrylic windows (#39708)
* fix: backgroundMaterial works with frameless
* TODO: fix frameless mica/acrylic windows
* update caption color appropriately
* set background color properly
* refactor translucency method
* actualization | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -130,5 +130,6 @@ fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n+fix_activate_background_material... | 2023-09-11T12:51:54 |
rust-lang/rust | 0b0d40d5f3ab401604d138fdf2cc4785a3ecc6bc | e68fc280c21da48381fa99f1dc0962625841a60c | libm: Improve debug output for `Status` | [
{
"path": "library/compiler-builtins/libm/src/math/support/env.rs",
"patch": "@@ -49,10 +49,14 @@ pub enum Round {\n }\n \n /// IEEE 754 exception status flags.\n-#[derive(Clone, Copy, Debug, PartialEq, Eq)]\n+#[derive(Clone, Copy, PartialEq, Eq)]\n pub struct Status(u8);\n \n impl Status {\n+ /* Note th... | 2026-02-07T13:06:05 |
facebook/react | d29f7d973da616a02d6240ea10306a6f33e35ca1 | f7ce4164c90990bd43b2671bf0b1db45e160fc15 | Enable enableFilterEmptyStringAttributesDOM everywhere (#28125)
## Summary
Stacked on [#28124](https://github.com/facebook/react/pull/28124) ([Diff
against
#28124](https://github.com/facebook/react/compare/eps1lon:fix/anchor-href-empty...eps1lon:feat/enableFilterEmptyStringAttributesDOM-canary))
Enables `enabl... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-fb.js",
"patch": "@@ -64,7 +64,7 @@ export const enableUseEffectEventHook = false;\n export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableComponentStackLocations = false;\n export const enableLegacyFBSupport = false;\n-e... | 2024-01-31T16:23:21 |
nodejs/node | 653b96527a996eea7b32773bfd7f428cf494e4fe | 29357cb0efffddf708ab0fd5c0d8a19532ac392b | build,win: float VS 17.11 compilation patch
Fixes: https://github.com/nodejs/node/issues/54898
PR-URL: https://github.com/nodejs/node/pull/54970
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c",
"patch": "@@ -33,7 +33,7 @@\n \n #include \"nghttp3_macro.h\"\n \n-#if defined(_MSC_VER) && !defined(__clang__) && \\\n+#if defined(_MSC_VER) && _MSC_VER < 1941 && !defined(__clang__) && \\\n... | 2024-09-19T20:36:42 |
vercel/next.js | d63378945224ab2d246d817768e690402d512a9d | fb83b8345fe63838e5e5efc46b772b5c9eb76717 | Turbopack: pass `is_development` to `next_page_config` (#82363)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For ... | [
{
"path": "crates/next-core/src/next_client/transforms.rs",
"patch": "@@ -45,7 +45,8 @@ pub async fn get_next_client_transforms_rules(\n \n rules.push(get_next_font_transform_rule(enable_mdx_rs));\n \n- if mode.await?.is_development() {\n+ let is_development = mode.await?.is_development();\n+ i... | 2025-08-05T12:36:22 |
electron/electron | ab185c058f894ddc556f67b2853de4adad2bb10c | 2324c4d8fd6f7b2cd336d4e93591464544e12953 | fix: fullscreen crashing with no roundedCorners and no frame (#39747) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -683,9 +683,6 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n }\n \n void NativeWindowMac::SetFullScreen(bool fullscreen) {\n- if (!has_frame() && !HasStyleMask(NSWindowStyleMaskTitled))\n- return;\n-\n //... | 2023-09-11T07:38:10 |
golang/go | be0cc937ec9c109da90ec4d7da5af89606f8c0cf | 0c7311e9ca8440801b40928878db623f98e3008f | net: avoid using Windows' TransmitFile on non-server machines
Windows API's TransmitFile function is limited to two concurrent
operations on workstation and client versions of Windows. This change
modifies the net.sendFile function to perform no work in such cases
so that TransmitFile is avoided.
Fixes #73746
Change... | [
{
"path": "src/internal/syscall/windows/types_windows.go",
"patch": "@@ -256,3 +256,7 @@ type FILE_COMPLETION_INFORMATION struct {\n \tPort syscall.Handle\n \tKey uintptr\n }\n+\n+// https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-osversioninfoexa\n+// https://learn.microsoft.com/en-us/w... | 2025-05-20T03:59:15 |
rust-lang/rust | 0b477792235b917a1d2b01b59a68ed8ec3405729 | 47f2bf6d65ebd04016d3ac1aac52a94457afc733 | Fix rustc test suite | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -59,6 +59,7 @@ rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported\n rm tests/ui/asm/label-operand.rs # same\n rm tests/ui/asm/may_unwind.rs # asm unwinding not supported\n rm tests/ui/asm/aarch64/may_unwind.rs # same\n+rm tests/ui/asm/x86_6... | 2026-02-13T11:18:20 |
facebook/react | d55420c430cee6338fcc63ad663cb4b778af55de | d0bb1fed61cba004f8014337488b3e8c398ab880 | Allow prefixed hooks for compiling bundled code
We're doing some internal benchmarking using a lightweight bundler that @pieterv
wrote for experimentation purposes. It's designed to fully preserve Flow type
annotations so we can experiment with type-driven compilation and test out what
benefits we might get from "... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -376,11 +376,12 @@ function shouldVisitNode(fn: BabelFn, pass: CompilerPass): boolean {\n return false;\n }\n case \"infer\": {\n+ const hookPattern = pass.opts.environment?.hookPattern ?? null... | 2024-01-31T03:11:17 |
nodejs/node | 1e16779fa18ef0b912ec6d8cf5d10afed13e375a | 762a440e68b1893c9b0478050d9a018cf285a9de | deps: V8: cherry-pick 01a47f3ffff2
Original commit message:
[cfi] Add missing 'typename' in SegmentedTable
Makes the code more consistent and fixes compilation on older Clang
versions.
Change-Id: I82abebd500e6651ac5c5b180cd7b49b4f20e8299
Reviewed-on: https://chromium-review.googlesource.com/c/v8... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-26T18:04:23 |
rust-lang/rust | a18724523c95dd00b078a9e0224ead248b29d74e | 47611e16044c68ef27bac31c35fda2ba1dc20b73 | nix-dev-shell: fix a typo | [
{
"path": "src/tools/nix-dev-shell/envrc-flake",
"patch": "@@ -1,5 +1,5 @@\n # If you want to use this as an .envrc file to create a shell with necessary components \n-# to develop rustc, use the following command in the root of the rusr checkout:\n+# to develop rustc, use the following command in the root ... | 2026-02-13T09:54:34 |
electron/electron | 792037b338ecab58dca67ae96b255743a444be4b | 0b44f433c8764e710ad5a36b8e82cc5720dd1be0 | fix: raw_ptr destruction order in NodeBindings (#39762) | [
{
"path": "shell/common/node_bindings.cc",
"patch": "@@ -394,21 +394,11 @@ base::FilePath GetResourcesPath() {\n return exec_path.DirName().Append(FILE_PATH_LITERAL(\"resources\"));\n #endif\n }\n-\n } // namespace\n \n NodeBindings::NodeBindings(BrowserEnvironment browser_env)\n- : browser_env_(brows... | 2023-09-07T23:25:17 |
golang/go | 0c7311e9ca8440801b40928878db623f98e3008f | 3e82316a4357c44c193790bdc02d1f8032f34289 | cmd/go: do not try to load 'all' packages with invalid import paths
Before this change, when we tried to compute the set of packages in
'all', we'd add packages with invalid import paths to the set and try to
load them, which would fail. Instead, do not add them to the list of
packages to load in the second iteration ... | [
{
"path": "src/cmd/go/internal/modload/load.go",
"patch": "@@ -2009,6 +2009,13 @@ func (ld *loader) stdVendor(parentPath, path string) string {\n // starting with a list of the import paths for the packages in the main module.\n func (ld *loader) computePatternAll() (all []string) {\n \tfor _, pkg := range ... | 2025-05-16T20:40:55 |
facebook/react | d0bb1fed61cba004f8014337488b3e8c398ab880 | 69733c5ad8cfb66204c53a71eb9f2545ba937a73 | [be] Explicit todo diagnostics for hoisting
---
Currently, we error on non-hoisted identifiers in EnterSSA with a somewhat
cryptic message. This PR changes `BuildHIR` hoisting logic to find ALL hoistable
bindings, then error when we try to lower hoisting for unsupported declaration
types.
Two benefits to this ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -333,14 +333,9 @@ function lowerStatement(\n const hoistableIdentifiers: Set<t.Identifier> = new Set();\n \n for (const [, binding] of Object.entries(stmt.scope.bindings)) {\n- // TODO: support other... | 2024-01-31T15:59:25 |
vercel/next.js | fb83b8345fe63838e5e5efc46b772b5c9eb76717 | 9e9ee8521784b9c92c24f3599d84fde55bbae12c | Turbopack: run styled-jsx after typescript transform (#82359)
Closes PACK-5183
Based on https://github.com/swc-project/swc/issues/10944#issuecomment-3120775091, we need to run styled-jsx after typescript
Fixes this crash
```
entered unreachable code: This visitor does not support TypeScript. This method fails for o... | [
{
"path": "crates/next-core/src/next_server/context.rs",
"patch": "@@ -58,7 +58,7 @@ use crate::{\n get_invalid_styled_jsx_resolve_plugin,\n },\n transforms::{\n- emotion::get_emotion_transform_rule, get_ecma_transform_rule,\n+ EcmascriptTransformStage, emot... | 2025-08-05T12:33:50 |
nodejs/node | 95f2213eed80232e6ddfbf8aad1db13af3c45aa4 | 09d997f1819a4f0f3433e14769d226c09037f377 | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-08T04:53:41 |
rust-lang/rust | f63007cd3b264c231c929d70175b7a7ea5ea6c5d | 47611e16044c68ef27bac31c35fda2ba1dc20b73 | fix missleading error for tuple ctor | [
{
"path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs",
"patch": "@@ -2465,7 +2465,13 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n let parent_did = tcx.parent(*def_id);\n (tcx.adt_def(parent_did), fn_args, parent_did)\n }\n- _ => return non... | 2026-02-13T09:54:04 |
facebook/react | 69733c5ad8cfb66204c53a71eb9f2545ba937a73 | c3e9cba0bb71c1fa315d75272c759081faad3599 | [hoisting][patch] use Babel identifier apis in BuildHIR hoisting logic
---
Three functional changes:
- Instead of visiting all identifier references, explicitly traverse only
function decls/exprs. This avoids bugs like accidentally hoisting inline
references
```js
// input
const x = identity(y);
const y... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Binding, NodePath, Scope } from \"@babel/traverse\";\n+import { NodePath, Scope } from \"@babel/traverse\";\n import * as t ... | 2024-01-31T15:59:25 |
golang/go | 3e82316a4357c44c193790bdc02d1f8032f34289 | 123141166bf77b60062d830224b85131791647fd | cmd/compile: don't instrument counter globals in internal/fuzz
Fixes: #72766
Change-Id: I45b521e53c2a11e259dc99e2dfc8e40cac39139a
Reviewed-on: https://go-review.googlesource.com/c/go/+/673575
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@goog... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -135,6 +135,9 @@ func TestASANFuzz(t *testing.T) {\n \tif bytes.Contains(out, []byte(\"AddressSanitizer\")) {\n \t\tt.Error(`output contains \"AddressSanitizer\", but should not`)\n \t}\n+\tif !bytes.Contains(out, []byte(\"FUZZ FAILE... | 2025-05-16T19:07:46 |
electron/electron | 0b44f433c8764e710ad5a36b8e82cc5720dd1be0 | 5fa9dee68a7ef9f0fd74d5be0c836dc4fefa5b70 | fix: make titlebar opaque while fullscreen (#39759) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1692,6 +1692,9 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n // Restore the window title under fullscreen mode.\n if (buttons_proxy_)\n [window_ setTitleVisibility:NSWindowTitleVisible];\n+\n+ if (tr... | 2023-09-07T22:55:17 |
vercel/next.js | cee784dea0a4dffcf8f09261cfe2412f2df4f0d2 | ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216 | [turbopack] vibecode a benchmark runner for module-cost (#82287)
# Add automated benchmark runner for module-cost
## What?
This PR adds an automated benchmark runner for the module-cost benchmark, allowing for consistent measurement of module loading and execution times.
## Why?
It is to tedious and error prone to ... | [
{
"path": "bench/module-cost/.gitignore",
"patch": "@@ -1,3 +1,4 @@\n commonjs/*\n esm/*\n-CPU*\n\\ No newline at end of file\n+CPU*\n+benchmark-results-*.json\n\\ No newline at end of file",
"additions": 2,
"deletions": 1,
"language": "Unknown"
},
{
"path": "bench/module-cost/components... | 2025-08-04T23:16:57 |
nodejs/node | 09d997f1819a4f0f3433e14769d226c09037f377 | 1866363854ed6e2d040cd7d25dbf0aca2fbf5fd3 | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
facebook/react | 407faf5a69955f23f3549cff77b1a37199daa95f | 91212b09ed53c8d5a0f414ed93972681caa5ac7e | Remove ReactDOM.render tests in ReactDOMConsoleErrorReporting-test (#28053)
Each it block here was duplicated to cover ReactDOM.render and
ReactDOMClient.createRoot. Here we delete the ReactDOM.render coverage.
Co-authored-by: Jack Pope <jackpope@meta.com> | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMConsoleErrorReporting-test.js",
"patch": "@@ -10,7 +10,6 @@\n describe('ReactDOMConsoleErrorReporting', () => {\n let act;\n let React;\n- let ReactDOM;\n let ReactDOMClient;\n \n let ErrorBoundary;\n@@ -23,7 +22,6 @@ describe('ReactDOMConsoleErro... | 2024-01-27T00:29:45 |
golang/go | 123141166bf77b60062d830224b85131791647fd | 3df078fc74a550168440d5afd5f9a9204b77f0f9 | cmd/compile: add generic simplifications on riscv64
file before after Δ %
addr2line 3636263 3636215 -48 -0.001%
asm 6318110 6317966 -144 -0.002%
buildid 3463352 3463224 -128 -0.004%
cgo 5672502 5672214 -288 -0.005%
compile 26904997 26905719 +722 +0.00... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules",
"patch": "@@ -743,6 +743,15 @@\n (ROL x (NEG y)) => (ROR x y)\n (ROLW x (NEG y)) => (RORW x y)\n \n+// generic simplifications\n+(ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUB x x) => (MOVDconst [0])\n+(AND x x) => x\n+(OR x... | 2025-05-17T13:45:50 |
electron/electron | 75bad341317fa62fe16525c7084df8c3a4662179 | 0a064cece99b266262a6fd69ca62933c9e56313a | fix: prevent errors when extensions listen for `chrome.tabs` events (#39729)
* fix: prevent errors when extensions listen for chrome.tabs events
* chore: mark events unsupported in Electron | [
{
"path": "shell/common/extensions/api/tabs.json",
"patch": "@@ -704,9 +704,362 @@\n }\n }\n ],\n+ // Electron does not yet support tab events - we define them here because otherwise extensions crash when\n+ // they try to listen for them.\n \"events\": [\n+ {\n+ \"n... | 2023-09-07T10:41:24 |
vercel/next.js | ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216 | 1f8ea2a1b09bf6017bee7d72e99727c1f351bc69 | Turbopack: Update `jsonc-parser`, dedupe with SWC (#82343)
I noticed we had two copies of this library.
There are a few minor API changes (some things that were properties are
now methods, "message" is now "kind"), and I switched our error type
over to use `RcStr` since it implements `Clone`. | [
{
"path": "Cargo.lock",
"patch": "@@ -3475,18 +3475,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.21.0\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3a1853e40333206f9a685358046d13ab200169e3ee573019bddf0ede0dc29307\"\n-dependencies = ... | 2025-08-04T23:09:47 |
nodejs/node | dfff61475eb2b31043947b914bdcabfae7a60c0a | 69ad89f8eb47bebe90d0c6ba607b7628f103a076 | deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't
tear down V8 correctly.
Disable it while we work on a solution.
Refs: https://github.com/nodejs/node/issues/47297
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
facebook/react | 766eac46bb52bda28f87c11740214a4444ca881b | 37bdff675c28e247333ffe35055534ad94941e8c | Remove outdated enableSchedulerDebugging flag (#28101)
This flag was moved to the scheduler feature flags, so these flags don't
do anything. | [
{
"path": "packages/shared/ReactFeatureFlags.js",
"patch": "@@ -34,11 +34,6 @@ export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableFormActions = true;\n export const enableAsyncActions = true;\n \n-// Not sure if www still uses this. We don't have a replacement but whatever we... | 2024-01-26T21:53:01 |
electron/electron | 0a064cece99b266262a6fd69ca62933c9e56313a | f6e8544ef638f1e517a4a2b287950cb27edeac0f | fix: devtools allow restoring saved dock state on Windows (#39734)
* fix: devtools allow restoring saved dock state on Windows
* chore: address feedback | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2667,14 +2667,6 @@ void WebContents::OpenDevTools(gin::Arguments* args) {\n state = \"detach\";\n }\n \n-#if BUILDFLAG(IS_WIN)\n- auto* win = static_cast<NativeWindowViews*>(owner_window());\n- // Force a detached state when W... | 2023-09-07T08:14:01 |
golang/go | 3df078fc74a550168440d5afd5f9a9204b77f0f9 | 2a65100e68cd82172b214a4d12cd2586c0b9ef99 | runtime: add new GODEBUG checkfinalizer
This new debug mode detects cleanup/finalizer leaks using checkmark
mode. It runs a partial GC using only specials as roots. If the GC can
find a path from one of these roots back to the object the special is
attached to, then the object might never be reclaimed. (The cycle coul... | [
{
"path": "src/runtime/gc_test.go",
"patch": "@@ -1073,3 +1073,17 @@ func TestMSpanQueue(t *testing.T) {\n \t\texpectMSpan(t, p.Pop(), nil, \"pop\")\n \t})\n }\n+\n+func TestDetectFinalizerAndCleanupLeaks(t *testing.T) {\n+\tgot := runTestProg(t, \"testprog\", \"DetectFinalizerAndCleanupLeaks\", \"GODEBUG=c... | 2024-12-09T19:07:40 |
vercel/next.js | 1f8ea2a1b09bf6017bee7d72e99727c1f351bc69 | 752599478f68a25f25cb3a5dcfc660ef063f9fbc | docs: Clarify revalidatePath (#82142)
Fixes: https://github.com/vercel/next.js/issues/81776 | [
{
"path": "docs/01-app/03-api-reference/04-functions/revalidatePath.mdx",
"patch": "@@ -5,25 +5,83 @@ description: API Reference for the revalidatePath function.\n \n `revalidatePath` allows you to purge [cached data](/docs/app/guides/caching) on-demand for a specific path.\n \n+## Usage\n+\n+`revalidatePat... | 2025-08-04T18:02:36 |
facebook/react | 788182f7099cf927a454ff0c37d25d94b4f0e895 | 4ec05660a2f56aa47d9d82eaeeb8a34df56f8dbc | [patch] Patch edge case: RenameVariables should visit lvalues
---
This is likely a rare edge case, but it does produce a parse error.
RenameVariables visits all identifier references to ensure we don't end up
producing conflicting variable declarations, using a stack of block scopes to
check "in scope variables... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/RenameVariables.ts",
"patch": "@@ -16,6 +16,7 @@ import {\n ReactiveInstruction,\n ReactiveScopeBlock,\n } from \"../HIR/HIR\";\n+import { eachInstructionLValue } from \"../HIR/visitors\";\n import {\n ReactiveFunctionVisitor,\n... | 2024-01-26T20:29:09 |
nodejs/node | bb405210c58919a61d8b2dd9577411784bcbed85 | be4babb3c2cb46030057577bc93153ebd245f2a3 | test_runner: support typescript module mocking
PR-URL: https://github.com/nodejs/node/pull/54878
Fixes: https://github.com/nodejs/node/issues/54428
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Erick Wendel <erick.w... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -459,7 +459,7 @@ translators.set('wasm', async function(url, source) {\n // Strategy for loading a commonjs TypeScript module\n translators.set('commonjs-typescript', function(url, source) {\n emitExperimentalWarning('Type Stripping');\n- ... | 2024-09-19T13:36:52 |
rust-lang/rust | 94db326f2597590ebeac26cde82ddb7f2921da46 | 5fdff787e6ef7cd4458f81e69cbb4d2a39439a98 | Remove unnecessary closure.
The comments that says it's necessary is wrong. | [
{
"path": "compiler/rustc_interface/src/passes.rs",
"patch": "@@ -10,7 +10,6 @@ use rustc_attr_parsing::{AttributeParser, Early, ShouldEmit};\n use rustc_codegen_ssa::traits::CodegenBackend;\n use rustc_codegen_ssa::{CodegenResults, CrateInfo};\n use rustc_data_structures::indexmap::IndexMap;\n-use rustc_da... | 2026-02-13T07:15:08 |
electron/electron | 65901f4c6a7c5201d039bde9d516cc18300eef62 | feb804cea817eca9a2b30bdc657905caa9c01367 | fix: restore flag that allowed websockets to not be backgrounded (#39738) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -131,3 +131,4 @@ chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n+revert_remove_... | 2023-09-06T18:23:17 |
golang/go | 2a65100e68cd82172b214a4d12cd2586c0b9ef99 | ff9da9bcd579a08cf9ca62620c5956676ac28586 | cmd/internal/testdir: filter out errors outside input file set
When an errorcheck test uses -m and instantiates an imported generic
function, the errors will include -m messages from the imported package
(since the new function has not previously been walked). These errors
cannot be matched since we can't write errors... | [
{
"path": "src/cmd/internal/testdir/testdir_test.go",
"patch": "@@ -1242,6 +1242,24 @@ func (t test) errorCheck(outStr string, wantAuto bool, fullshort ...string) (err\n \t\t}\n \t}\n \n+\tif len(out) > 0 {\n+\t\t// If a test uses -m and instantiates an imported generic function,\n+\t\t// the errors will in... | 2025-05-14T05:01:43 |
rust-lang/rust | 4c10efb939ee78bb10a2b8833746c554478d64f9 | 47611e16044c68ef27bac31c35fda2ba1dc20b73 | Replace "bug" with "issue" in triagebot ping messages | [
{
"path": "triagebot.toml",
"patch": "@@ -76,9 +76,9 @@ add-labels = [\"beta-nominated\"]\n \n [ping.windows]\n message = \"\"\"\\\n-Hey Windows Group! This bug has been identified as a good \"Windows candidate\".\n+Hey Windows Group! This issue has been identified as a good \"Windows candidate\".\n In case... | 2026-02-13T06:55:58 |
nodejs/node | be4babb3c2cb46030057577bc93153ebd245f2a3 | 6031a4bc7cab01623d93e75d17c5b796b5bb831e | module: report unfinished TLA in ambiguous modules
PR-URL: https://github.com/nodejs/node/pull/54980
Fixes: https://github.com/nodejs/node/issues/54931
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1381,7 +1381,7 @@ function loadESMFromCJS(mod, filename) {\n if (isMain) {\n require('internal/modules/run_main').runEntryPointWithESMLoader((cascadedLoader) => {\n const mainURL = pathToFileURL(filename).href;\n- cascadedLoader.... | 2024-09-19T10:34:13 |
facebook/react | 9aef5d225b489ceeba753c5c86b236259baf816c | 60f190a55948a7512d4e2a336f03b45fd38d6a80 | Use modern rendering APIs for attribute-behavior fixture (#27883)
The attribute-behavior fixture now uses `createRoot().render()` and
`renderToReadableStream` instead of depdrecated APIs.
This revealed some changes to the snapshots that I annotated for
discussion.
I also added some new tests related to upcomin... | [
{
"path": "fixtures/attribute-behavior/.gitignore",
"patch": "@@ -10,7 +10,7 @@\n /build\n /public/react.development.js\n /public/react-dom.development.js\n-/public/react-dom-server-legacy.browser.development.js\n+/public/react-dom-server.browser.development.js\n \n # misc\n .DS_Store",
"additions": 1,
... | 2024-01-26T18:03:42 |
electron/electron | 34b79c15c2f2de2fa514538b7ccb4b3c473808ae | d9ba26273ad3e7a34c905eccbd5dabda4eb7b402 | build: fix `depot_tools` patch application (#39742)
build: fix depot_tools patch application | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -249,19 +249,19 @@ step-depot-tools-get: &step-depot-tools-get\n cd depot_tools\n cat > gclient.diff \\<< 'EOF'\n diff --git a/gclient.py b/gclient.py\n- index 3a9c5c6..f222043 100755\n+ index c305c248..e6e0fbdc 100755\n ... | 2023-09-06T11:49:00 |
golang/go | ff9da9bcd579a08cf9ca62620c5956676ac28586 | 326e5e1b7a9f421db972fed0a6e79a1c9601d0ae | cmd/dist: pass GO_GCFLAGS to cpuN runtime tests
We want gcflags, which control builder type (e.g. noopt) to be used
for these tests also.
Should fix noopt and maybe other builders.
Change-Id: Iad34beab51714f0c38989ec0fc8778cf79087f72
Reviewed-on: https://go-review.googlesource.com/c/go/+/674455
Reviewed-by: Keith Ra... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -952,6 +952,7 @@ func (t *tester) registerTests() {\n \t\t\t\t\tvariant: \"cpu\" + strconv.Itoa(i),\n \t\t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\t\tcpu: strconv.Itoa(i),\n+\t\t\t\t\tgcflags: gogcflags,\n \t\t\t\t\tshort: true,\n \t\t\t\t\tte... | 2025-05-20T15:42:24 |
nodejs/node | f8b7a171463e775da304bccf4cf165e634525c7e | 50136a167ddf94328c53f10c804804f0ffeb0ea2 | test: update test to support OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
This test fails on OpenSSL32 because it complains the key being
used is too short.
It seems to have been missed when the test suite was udpated to have
a Makefile to generate key material as the keys are hard coded in the
test a... | [
{
"path": "test/parallel/test-tls-cert-regression.js",
"patch": "@@ -21,50 +21,26 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const tls = require('tls');\n \n-const cert =\n... | 2024-09-18T16:36:08 |
electron/electron | 4cc0f6fb781a3efe6b018aa4ef410e4196c03ecf | f27b0340454ada29977a7d08f2dbc8321923e1b1 | test: fix flaky content tracing test (#39682) | [
{
"path": "spec/api-content-tracing-spec.ts",
"patch": "@@ -5,8 +5,8 @@ import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n import { ifdescribe } from './lib/spec-helpers';\n \n-// FIXME: The tests are skipped on arm/arm64 and ia32.\n-ifdescribe(!(['arm', 'arm64', 'ia32... | 2023-09-04T12:08:26 |
facebook/react | 60f190a55948a7512d4e2a336f03b45fd38d6a80 | 51c380d6ed303a54dad7b55258dd7aa8c6bb3fe1 | Capture React.startTransition errors and pass to reportError (#28111)
To make React.startTransition more consistent with the hook form of
startTransition, we capture errors thrown by the scope function and pass
them to the global reportError function. (This is also what we do as a
default for onRecoverableError.)
... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1983,15 +1983,14 @@ function runFormStateAction<S, P>(\n }\n try {\n const returnValue = action(prevState, payload);\n- notifyTransitionCallbacks(currentTransition, returnValue);\n-\n if (\n returnValue !== null... | 2024-01-26T17:10:33 |
golang/go | 1635aed9413233ba8f974447ca3359b7a9159985 | b69f50faef360beedd408048d19909c85a2e0de0 | hash/maphash: hash channels in purego version of maphash.Comparable
This change makes purego implementation of maphash.Comparable consistent
with the one in runtime and fixes hashing of channels.
Fixes #73657
Change-Id: If78a21d996f0c20c0224d4014e4a4177b09c3aa3
GitHub-Last-Rev: 2537216a1e4e62791c7e417441ee770ca149f3... | [
{
"path": "src/hash/maphash/maphash_purego.go",
"patch": "@@ -161,7 +161,7 @@ func appendT(h *Hash, v reflect.Value) {\n \tcase reflect.Bool:\n \t\th.WriteByte(btoi(v.Bool()))\n \t\treturn\n-\tcase reflect.UnsafePointer, reflect.Pointer:\n+\tcase reflect.UnsafePointer, reflect.Pointer, reflect.Chan:\n \t\tv... | 2025-05-10T17:58:48 |
electron/electron | 54d8402a6ca8a357d7695c1c6d01d5040e42926a | 89659fa9c997977ee2a25ce2c769d86742eccb90 | fix: broken `chrome.scripting` compilation (#39725)
fix: broken chrome.scripting impl after roll | [
{
"path": "shell/browser/extensions/api/scripting/scripting_api.cc",
"patch": "@@ -51,55 +51,14 @@ constexpr char kDuplicateFileSpecifiedError[] =\n \"Duplicate file specified: '*'.\";\n constexpr char kExactlyOneOfCssAndFilesError[] =\n \"Exactly one of 'css' and 'files' must be specified.\";\n-con... | 2023-09-04T07:03:10 |
vercel/next.js | 9d3069adc7bf452eaaf13075c3a7f321b1c36d4e | 92042340b3b2618692c06c084405761950e190e3 | docs: Improve Content Security Policy documentation (#80580)
# Improve Content Security Policy Documentation
This PR comprehensively improves the Next.js Content Security Policy
(CSP) documentation to address community feedback from Reddit and GitHub
discussions about gaps in the current documentation.
## Changes Ma... | [
{
"path": "docs/01-app/02-guides/content-security-policy.mdx",
"patch": "@@ -27,7 +27,9 @@ A [nonce](https://developer.mozilla.org/docs/Web/HTML/Global_attributes/nonce) i\n \n ### Why use a nonce?\n \n-Even though CSPs are designed to block malicious scripts, there are legitimate scenarios where inline scr... | 2025-08-04T16:47:26 |
nodejs/node | 50136a167ddf94328c53f10c804804f0ffeb0ea2 | 7e00be765090e122f377e4d83e58c26658d4bfbf | test_runner: avoid coverage report partial file names
Co-author: Medhansh404 <21ucs126@lnmiit.ac.in>
PR-URL: https://github.com/nodejs/node/pull/54379
Fixes: https://github.com/nodejs/node/issues/51299
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mo... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -1,8 +1,10 @@\n 'use strict';\n const {\n ArrayPrototypeFlatMap,\n+ ArrayPrototypeForEach,\n ArrayPrototypeJoin,\n ArrayPrototypeMap,\n+ ArrayPrototypePop,\n ArrayPrototypePush,\n ArrayPrototypeReduce,\n ArrayPrototypeSome,\n@@ -24,7 ... | 2024-09-18T16:24:19 |
golang/go | b69f50faef360beedd408048d19909c85a2e0de0 | df9888ea4e97feb755e452609be5078686370995 | net/http: upon http redirect, copy Request.GetBody in new request
This enable http.RoundTripper implementation to retry POST request (let's
say after a 500) after a 307/308 redirect.
Fixes #73439
Change-Id: I4365ff58b012c7f0d60e0317a08c98b1d48f657e
Reviewed-on: https://go-review.googlesource.com/c/go/+/666735
Review... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -672,6 +672,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tresp.closeBody()\n \t\t\t\t\treturn nil, uerr(err)\n \t\t\t\t}\n+\t\t\t\treq.GetBody = ireq.GetBody\n \t\t\t\treq.ContentLength = ireq.ContentLength\n \t\t\t}\n ... | 2025-04-18T17:48:04 |
electron/electron | 89659fa9c997977ee2a25ce2c769d86742eccb90 | 89117fdd999783091e019f7c6c06e7b5a45244d9 | chore: fix broken patches on main (#39715) | [
{
"path": "patches/chromium/refactor_expose_hostimportmoduledynamically_and.patch",
"patch": "@@ -7,10 +7,10 @@ Subject: refactor: expose HostImportModuleDynamically and\n This is so that Electron can blend Blink's and Node's implementations of these isolate handlers.\n \n diff --git a/third_party/blink/ren... | 2023-09-01T08:28:01 |
nodejs/node | 65768bca59f6d086beca782549a3d15a55988595 | 5e87577b4f37911c2279176f183514d9496a1ceb | cli: fix spacing for port range error
PR-URL: https://github.com/nodejs/node/pull/54495
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_options.cc",
"patch": "@@ -1165,7 +1165,7 @@ inline uint16_t ParseAndValidatePort(const std::string_view port,\n \n if (r.ec == std::errc::result_out_of_range ||\n (result != 0 && result < 1024)) {\n- errors->push_back(\" must be 0 or in range 1024 to 65535.\");\n+ errors->... | 2024-09-18T09:18:16 |
vercel/next.js | 6e20a10d76878c3b2937329cd51d77c7dc85f8e6 | 1388270e77409c2d58e43ceb1364ce907be92b4c | docs: add React Developer Tools section for debugging (#82320)
## What?
Added a new "React Developer Tools" section to the debugging
documentation.
## Why?
This PR resolves #82308 which highlighted that React DevTools - a
fundamental debugging tool for React applications - was missing from
Next.js debugging docu... | [
{
"path": "docs/01-app/02-guides/debugging.mdx",
"patch": "@@ -101,6 +101,14 @@ In either browser, any time your client-side code reaches a [`debugger`](https:/\n \n Note that when searching, your source files will have paths starting with `webpack://_N_E/./`.\n \n+### React Developer Tools\n+\n+For React-s... | 2025-08-04T14:19:17 |
golang/go | df9888ea4e97feb755e452609be5078686370995 | 24ea1aa25c954bbbe9968d735795a649833b0b1c | runtime: prevent unnecessary zeroing of large objects with pointers
CL 614257 refactored mallocgc but lost an optimization: if a span for a
large object is already backed by memory fresh from the OS (and thus
zeroed), we don't need to zero it. CL 614257 unconditionally zeroed
spans for large objects that contain point... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -1548,12 +1548,13 @@ func mallocgcLarge(size uintptr, typ *_type, needzero bool) (unsafe.Pointer, uin\n \tsize = span.elemsize\n \tx := unsafe.Pointer(span.base())\n \n-\t// Ensure that the stores above that initialize x to\n-\t// type-safe memory and set the ... | 2025-03-21T16:26:15 |
facebook/react | 763612647ceb66d95f728af896ca5e18a8181db8 | 6c64428d904f8339cddaa0f4850cba89acabe0bb | fix incorrect insertion order of stylesheets (#28108)
## Summary
In the precendences Map every key is prefixed with `p`. This fixes one
case where this is missing.
## How did you test this change?
<!--
Demonstrate the code is solid. Example: The exact commands you ran and
their output, screenshots / videos... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -3559,7 +3559,7 @@ function insertStylesheetIntoRoot(\n if (prior === last) {\n precedences.set('last', instance);\n }\n- precedences.set(precedence, instance);\n+ precedences.set('p' + precedence, instance);\n... | 2024-01-26T15:54:58 |
vercel/next.js | 1388270e77409c2d58e43ceb1364ce907be92b4c | 5bb867a9f19aa18329b60232bd1ae2f41d3742f6 | chore: fix eslint-typechecked-require with template (#82328)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Con... | [
{
"path": "packages/eslint-plugin-internal/src/eslint-typechecked-require.js",
"patch": "@@ -34,12 +34,25 @@ module.exports = {\n node.callee.type !== 'Identifier' ||\n node.callee.name !== 'require' ||\n node.arguments.length !== 1 ||\n- node.arguments[0].type !== 'Literal'\n... | 2025-08-04T14:02:20 |
nodejs/node | 7014e50ca32d39b94d04e04a5e6498e5c2f4346f | 421977cd48264f6be43a94c19b1f5cc10f0b7bbb | lib: the REPL should survive deletion of Array.prototype methods
Specifically, `delete Array.prototype.lastIndexOf` immediately crashes
the REPL, as does deletion of a few other Array prototype methods.
PR-URL: https://github.com/nodejs/node/pull/31457
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna He... | [
{
"path": "lib/domain.js",
"patch": "@@ -40,6 +40,7 @@ const {\n ReflectApply,\n SafeMap,\n SafeWeakMap,\n+ StringPrototypeRepeat,\n Symbol,\n } = primordials;\n \n@@ -131,7 +132,7 @@ const domainRequireStack = new Error('require(`domain`) at this point').stack;\n const { setUncaughtExceptionCaptur... | 2024-09-17T15:08:43 |
golang/go | 24ea1aa25c954bbbe9968d735795a649833b0b1c | 693d8d920c57489f427c22162986bd6cef2550ae | runtime: only update freeIndexForScan outside of the mark phase
Currently, it's possible for asynchronous preemption to observe a
partially initialized object. The sequence of events goes like this:
- The GC is in the mark phase.
- Thread T1 is allocating object O1.
- Thread T1 zeroes the allocation, runs the publicat... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -1196,23 +1196,23 @@ func mallocgcTiny(size uintptr, typ *_type) (unsafe.Pointer, uintptr) {\n \t// the garbage collector could follow a pointer to x,\n \t// but see uninitialized memory or stale heap bits.\n \tpublicationBarrier()\n-\t// As x and the heap bit... | 2025-05-13T20:09:57 |
facebook/react | 85b296e9b6ded4accd9ec3389297f95091fb1ac0 | 382190c595126837ee7e43b4fa953f4edd30e01c | Async action support for React.startTransition (#28097)
This adds support for async actions to the "isomorphic" version of
startTransition (i.e. the one exported by the "react" package).
Previously, async actions were only supported by the startTransition
that is returned from the useTransition hook.
The interes... | [
{
"path": "packages/react-reconciler/src/ReactFiberAsyncAction.js",
"patch": "@@ -13,6 +13,7 @@ import type {\n RejectedThenable,\n } from 'shared/ReactTypes';\n import type {Lane} from './ReactFiberLane';\n+import type {BatchConfigTransition} from './ReactFiberTracingMarkerComponent';\n \n import {reques... | 2024-01-26T02:54:45 |
electron/electron | 89117fdd999783091e019f7c6c06e7b5a45244d9 | 0b0707145b157343c42266d2586ed9413a1d54f5 | chore: bump chromium to 118.0.5975.0 (main) (#39531)
* chore: bump chromium in DEPS to 118.0.5951.0
* chore: update printing.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4727894
No logic changes, but patch needed to be manually re-applied due to upstream code shear
* chore: update ... | [
{
"path": "BUILD.gn",
"patch": "@@ -730,8 +730,8 @@ source_set(\"electron_lib\") {\n \"//pdf\",\n ]\n sources += [\n- \"shell/browser/electron_pdf_web_contents_helper_client.cc\",\n- \"shell/browser/electron_pdf_web_contents_helper_client.h\",\n+ \"shell/browser/electron_pdf_doc... | 2023-09-01T06:54:59 |
vercel/next.js | 5bb867a9f19aa18329b60232bd1ae2f41d3742f6 | b3229324d488e66ea5d8171ce09c2f69f8b45091 | fix: next/root-params erroring when rerendering after action (#82326)
When implementing the check that disallows using `next/root-params` in
server actions, i forgot that when a page is rerendered after an action,
the render is still wrapped with an `actionAsyncStorage` with
`actionStore.isAction === true`. The fix is... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -771,5 +771,6 @@\n \"770\": \"createParamsFromClient should not be called in a runtime prerender.\",\n \"771\": \"\\\\`%s\\\\` was called during a runtime prerender. Next.js should be preventing %s from being included in server components statically, b... | 2025-08-04T12:21:20 |
nodejs/node | 421977cd48264f6be43a94c19b1f5cc10f0b7bbb | a428b210669b656910dd10a036e4f349c3e9e85e | doc: fix history of `process.features`
PR-URL: https://github.com/nodejs/node/pull/54982
Refs: https://github.com/nodejs/node/commit/aa0308d6182b2f7a2508373770952eefd2fdb0ac
Refs: https://github.com/nodejs/node/commit/9010f5fbab2695e6c0435db396f3e92118da6d76
Refs: https://github.com/nodejs/node/commit/52a40e0fd5f59b29... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1899,7 +1899,7 @@ previous setting of `process.exitCode`.\n ## `process.features.cached_builtins`\n \n <!-- YAML\n-added: REPLACEME\n+added: v12.0.0\n -->\n \n * {boolean}\n@@ -1909,7 +1909,7 @@ A boolean value that is `true` if the current Node.js build is cach... | 2024-09-17T14:49:52 |
golang/go | 4f1146e6614676126d3810ea319e3f658d4f8116 | c8bf388bad9bf350b513c562bba22868bc976247 | testing: use a pattern to match the elapsed time in TestTRun
Fixes #73723
Fixes #73737
Fixes #73739
Change-Id: I1ebd3614614285c3e660d48241389bb0f896be23
Reviewed-on: https://go-review.googlesource.com/c/go/+/674355
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: ... | [
{
"path": "src/testing/sub_test.go",
"patch": "@@ -505,8 +505,8 @@ func TestTRun(t *T) {\n \t\tdesc: \"buffered output gets flushed at test end\",\n \t\tok: false,\n \t\toutput: `\n---- FAIL: buffered output gets flushed at test end (0.00s)\n- --- FAIL: buffered output gets flushed at test end/#00 (0.0... | 2025-05-20T07:46:53 |
facebook/react | b123b9c4f054a7def7ed84e350ccd46cc86672a6 | 8bb6ee1d33ca6c7e34342bc4b17aac0449ab6899 | [Flight] Refactor the Render Loop to Behave More Like Fizz (#28065)
This refactors the Flight render loop to behave more like Fizz with
similar naming conventions. So it's easier to apply similar techniques
across both. This is not necessarily better/faster - at least not yet.
This doesn't yet implement serializa... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js",
"patch": "@@ -242,6 +242,20 @@ describe('ReactFlightDOMEdge', () => {\n expect(result).toEqual(resolvedChildren);\n });\n \n+ it('should execute repeated server components in a compact form', async () => {\n+ a... | 2024-01-25T17:09:11 |
electron/electron | 7858921a1f318a4bffe9a570addfde2360a701e8 | ac031bf8dedf8e3da6d918cbbc2e64a03830c639 | docs: fix return typing of ses.getExtension (#39697) | [
{
"path": "docs/api/session.md",
"patch": "@@ -1491,7 +1491,7 @@ is emitted.\n \n * `extensionId` string - ID of extension to query\n \n-Returns `Extension` | `null` - The loaded extension with the given ID.\n+Returns `Extension | null` - The loaded extension with the given ID.\n \n **Note:** This API canno... | 2023-08-31T01:10:32 |
golang/go | c8bf388bad9bf350b513c562bba22868bc976247 | 524946d2475d0b541ba84396f759b9e4c7aa4a98 | cmd/compile: align stack-allocated backing stores higher than required
Because that's what mallocgc did and some user code came to rely on it.
Fixes #73199
Change-Id: I45ca00d2ea448e6729ef9ac4cec3c1eb0ceccc89
Reviewed-on: https://go-review.googlesource.com/c/go/+/666116
Reviewed-by: t hepudds <thepudds1460@gmail.com... | [
{
"path": "src/cmd/compile/internal/walk/builtin.go",
"patch": "@@ -600,11 +600,23 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tlenCap.Body.Append(mkcall(\"panicmakeslicecap\", nil, &lenCap.Body))\n \t\t\tnif.Body.Append(lenCap)\n \n-\t\t\tt := types.NewArray(t.Elem(), K) ... | 2025-04-17T05:48:06 |
facebook/react | 11c9fd0c53133f24f5270d36591b65b8fc2ebd25 | 2efb1426067322cdb08304432b3ac849dee52bd9 | Batch async actions even if useTransition is unmounted (#28078)
If there are multiple updates inside an async action, they should all be
rendered in the same batch, even if they are separate by an async
operation (`await`). We currently implement this by suspending in the
`useTransition` hook to block the update fr... | [
{
"path": "packages/react-reconciler/src/ReactFiberAsyncAction.js",
"patch": "@@ -9,7 +9,6 @@\n \n import type {\n Thenable,\n- PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n } from 'shared/ReactTypes';\n@@ -32,111 +31,32 @@ let currentEntangledListeners: Array<() => mixed> | null = null... | 2024-01-25T04:54:53 |
electron/electron | ac031bf8dedf8e3da6d918cbbc2e64a03830c639 | b8ac7983448d1f7e43eba7eddc6e561e4b1f4855 | feat: I guess it's esm (#37535)
* fix: allow ESM loads from within ASAR files
* fix: ensure that ESM entry points finish loading before app ready
* fix: allow loading ESM entrypoints via default_app
* fix: allow ESM loading for renderer preloads
* docs: document current known limitations of esm
* chore:... | [
{
"path": "default_app/default_app.ts",
"patch": "@@ -51,16 +51,17 @@ async function createWindow (backgroundColor?: string) {\n autoHideMenuBar: true,\n backgroundColor,\n webPreferences: {\n- preload: path.resolve(__dirname, 'preload.js'),\n+ preload: url.fileURLToPath(new URL('prelo... | 2023-08-31T00:38:07 |
golang/go | 524946d2475d0b541ba84396f759b9e4c7aa4a98 | ce88e341b90a0878385535bcb54206ec97bcc518 | cmd/compile: don't preload registers if destination already scheduled
In regalloc, we allocate some values to registers before loop entry,
so that they don't need to be loaded (from spill locations) during
the loop.
But it is pointless if we've already regalloc'd the loop body.
Whatever restores we needed for the bod... | [
{
"path": "src/cmd/compile/internal/ssa/layout.go",
"patch": "@@ -15,7 +15,7 @@ func layout(f *Func) {\n // imposed by the linear-scan algorithm.\n func layoutRegallocOrder(f *Func) []*Block {\n \t// remnant of an experiment; perhaps there will be another.\n-\treturn layoutOrder(f)\n+\treturn f.Blocks\n }\n... | 2025-05-14T00:53:45 |
vercel/next.js | da7cbb13be80d0eed985cf4a4df417cfd4cf7e47 | 825753a284bb49f3143c4fe6d04e37ca5f856b42 | [turbopack] Use Arrays instead of objects to bootstrap chunks (#81877)
### Improve performance of chunk bootstrapping leveraging arrays and maps
Currently we bootstrap the set of the modules in a chunk by passing an object to the runtime, this is suboptimal for a few reasons:
* The runtime just wants to iterate the ... | [
{
"path": "test/development/app-dir/ssr-in-rsc/ssr-in-rsc.test.ts",
"patch": "@@ -369,16 +369,16 @@ describe('react-dom/server in React Server environment', () => {\n `)\n } else {\n expect(redbox).toMatchInlineSnapshot(`\n- {\n- \"description\": \"react-dom/server ... | 2025-08-02T18:47:23 |
facebook/react | c92ad38375fe0f0c99460583c7195e8ec74eafec | b2f44c103b45b3bdded2e140b14042101a59b829 | Fix block scoping issues from MergeConsecutiveBlocks
Fixes the issues from the previous PR. It's a simple fix — we don't merge
consecutive blocks if the successor block is some terminal's fallthrough. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/MergeConsecutiveBlocks.ts",
"patch": "@@ -14,7 +14,7 @@ import {\n Instruction,\n } from \"./HIR\";\n import { markPredecessors, removeUnreachableFallthroughs } from \"./HIRBuilder\";\n-import { mapOptionalFallthroughs } from \"./visitors\";\n... | 2024-01-23T19:41:00 |
electron/electron | 2e79f34c841776a7184ba311cd937b3513e75f32 | f30fbebb984816d71ab6723c04dd40b81337f397 | docs: fix the minimum supported macOS version to Catalina (#39667)
docs: update the minimum supported macOS version to Catalina | [
{
"path": "README.md",
"patch": "@@ -38,7 +38,7 @@ For more installation options and troubleshooting tips, see\n \n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n-* macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was a... | 2023-08-29T00:01:11 |
golang/go | ce88e341b90a0878385535bcb54206ec97bcc518 | 3baf53aec6c2209562495d4ac1dc035c2881f6eb | cmd/compile: allocate backing store for append on the stack
When appending, if the backing store doesn't escape and a
constant-sized backing store is big enough, use a constant-sized
stack-allocated backing store instead of allocating it from the heap.
cmd/go is <0.1% bigger.
As an example of how this helps, if you ... | [
{
"path": "src/cmd/compile/internal/escape/call.go",
"patch": "@@ -159,6 +159,14 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t}\n \t\te.discard(call.RType)\n \n+\t\t// Model the new backing store that might be allocated by append.\n+\t\t// Its address flows to the result.\n+\t\t// Users of esca... | 2025-04-09T21:38:03 |
nodejs/node | c6269cb0693bde94b610ed5c613af7e2db63e144 | 3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913 | tools: fix path of abseil file in v8.gyp
PR-URL: https://github.com/nodejs/node/pull/54659
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigip... | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -2233,6 +2233,7 @@\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.h',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.cc',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_scheduling.h',\n+ '<(ABSEIL_ROOT)/absl/base/i... | 2024-09-17T11:47:08 |
facebook/react | b2f44c103b45b3bdded2e140b14042101a59b829 | f9f084087f7eb8a6b56a89db850cb4dddef0ac66 | Fixtures demonstrating incorrect block scoping due to MergeConsecutiveBlocks
Fixtures from T173102122 and T173101739 demonstrating cases where
MergeConsecutiveBlocks can move code out of its correct block scope, changing
behavior or breaking the program, in cases where a control flow structure (such
as switch) onl... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/block-scoping-switch-dead-code.expect.md",
"patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+function useHook(a, b) {\n+ switch (a) {\n+ case 1:\n+ if (b == null) {\n+ return;\n+ }\n+ ... | 2024-01-23T19:40:56 |
electron/electron | f30fbebb984816d71ab6723c04dd40b81337f397 | f0ad357af207a7f8b4a425bbad0e23d15c92fbbc | fix: promise resolved to early when browser initiated in-page navigation v2 (#39597) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -454,6 +454,7 @@ WebContents.prototype.loadURL = function (url, options) {\n };\n \n let navigationStarted = false;\n+ let browserInitiatedInPageNavigation = false;\n const navigationListener = (event: Electron.Event, url: string, isSa... | 2023-08-28T16:37:28 |
vercel/next.js | 825753a284bb49f3143c4fe6d04e37ca5f856b42 | b98796b1741630dd194e13e775e74e031b725ad2 | Turbopack: name the module factory function (#73553)
### What?
In development give the module factory a useful name, so it's clear in stack traces that this is the module evaluation part of the execution.
This also fixes some bugs with the stack trace parser, which seems to struggle if function names contain bra... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx",
"patch": "@@ -139,7 +139,6 @@ export const CODE_FRAME_STYLES = `\n }\n \n .code-frame-link [data-text] {\n- display: inline-flex;\n text-align: left;\n margin: auto 6px;\n }",
"additions": 0,
... | 2025-08-02T17:15:24 |
golang/go | 498899e20549a9e30f7641fc3a3592f89a933a95 | 2cde950049dd46cae3ae91cde3e270825793ba0f | math: fix portable FMA implementation when x*y ~ 0, x*y < 0 and z = 0
Adding zero usually does not change the original value.
However, there is an exception with negative zero. (e.g. (-0) + (+0) = (+0))
This applies when x * y is negative and underflows.
Fixes #73757
Change-Id: Ib7b54bdacd1dcfe3d392802ea35cdb4e989f9... | [
{
"path": "src/math/all_test.go",
"patch": "@@ -2126,6 +2126,11 @@ var fmaC = []struct{ x, y, z, want float64 }{\n \t// Issue #61130\n \t{-1, 1, 1, 0},\n \t{1, 1, -1, 0},\n+\n+\t// Issue #73757\n+\t{0x1p-1022, -0x1p-1022, 0, Copysign(0, -1)},\n+\t{Copysign(0, -1), 1, 0, 0},\n+\t{1, Copysign(0, -1), 0, 0},\n... | 2025-05-18T17:28:09 |
facebook/react | f9f084087f7eb8a6b56a89db850cb4dddef0ac66 | a023a2da723b730149667d783b1e08aadccbfeae | Fixture for reactively-controlled context variables
Mofei considered this case, it works thanks to the handling for function
expressions earlier in the stack. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-on-context-variable.expect.md",
"patch": "@@ -0,0 +1,108 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+function Component(props) {\n+ let x;\n+ // Re... | 2024-01-23T16:59:21 |
nodejs/node | 3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913 | d17fefcd71658ffd7244405034bbdecb91e33745 | module: remove bogus assertion in CJS entrypoint handling with --import
The synchronous CJS translator can handle entrypoints now, this
can be hit when --import is used, so lift the bogus assertions and
added tests.
PR-URL: https://github.com/nodejs/node/pull/54592
Fixes: https://github.com/nodejs/node/issues/54577
R... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -240,11 +240,9 @@ function createCJSModuleWrap(url, source, isMain, loadCJS = loadCJSModule) {\n \n translators.set('commonjs-sync', function requireCommonJS(url, source, isMain) {\n initCJSParseSync();\n- assert(!isMain); // This is only... | 2024-08-27T15:49:25 |
rust-lang/rust | 7d7b3816607c3f0c5afd4562bb3efca8b6eea777 | 47611e16044c68ef27bac31c35fda2ba1dc20b73 | Fix ICE in borrowck when recovering `fn_sig` for `-> _` | [
{
"path": "compiler/rustc_hir_analysis/src/collect.rs",
"patch": "@@ -1138,13 +1138,65 @@ fn recover_infer_ret_ty<'tcx>(\n );\n }\n let guar = diag.emit();\n- ty::Binder::dummy(tcx.mk_fn_sig(\n+\n+ // If we return a dummy binder here, we can ICE later in borrowck when it encounters\n+ ... | 2026-02-08T07:42:28 |
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.