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 |
|---|---|---|---|---|---|
nodejs/node | 59fde99db8841ee9e4b469d05243748df1ad02fd | cae5831ab48470ff060a5aaa12eb6e5a7acaf91e | url: fix typo
PR-URL: https://github.com/nodejs/node/pull/53827
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/url.js",
"patch": "@@ -349,7 +349,7 @@ class URLSearchParams {\n throw new ERR_ARG_NOT_ITERABLE('Query pairs');\n }\n \n- // The following implementationd differs from the URL specification:\n+ // The following implementation differs from the URL speci... | 2024-07-14T15:18:19 |
vercel/next.js | 5248e1576632ea82d6f3cbc932ec73d1f6a401d6 | d118f071fc2b4fcf985bab68d8fed6ddf4ac75ac | fix(turbopack) Adjust tree loader to respect parent module overrides (#81139)
## Fix not-found page inheritance in nested layouts
### What?
This PR fixes an issue where custom not-found pages weren't properly
inherited in nested layouts. Previously, when a page within a route
group threw a `notFound()` error, it woul... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -853,12 +853,45 @@ async fn directory_tree_to_loader_tree(\n plain_tree,\n app_page,\n for_app_path,\n+ AppDirModules::default(),\n )\n .await?;\n \n Ok(Vc::cell(tree.map(AppPageLoaderTree::resolved_ce... | 2025-07-08T13:16:40 |
golang/go | 5413abc44025f281f2a7ea37b3e0043591dbed3e | 786e62bcd3f03d73ddf0c999780ffe6f1a0319ea | net/http: set Request.TLS when net.Conn implements ConnectionState
Fixes #56104
Change-Id: I8fbbb00379e51323e2782144070cbcad650eb6f1
GitHub-Last-Rev: 62d7a8064e4f2173f0d8e02ed91a7e8de7f13fca
GitHub-Pull-Request: golang/go#56110
Reviewed-on: https://go-review.googlesource.com/c/go/+/440795
Reviewed-by: Damien Neil <dn... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -1645,6 +1645,53 @@ func testTLSServer(t *testing.T, mode testMode) {\n \t}\n }\n \n+type fakeConnectionStateConn struct {\n+\tnet.Conn\n+}\n+\n+func (fcsc *fakeConnectionStateConn) ConnectionState() tls.ConnectionState {\n+\treturn tls.ConnectionState{\n... | 2022-11-02T01:19:16 |
facebook/react | f07ac1e2680a26c5b3bf9c651d62c792de71d46d | 1beb94133a93a433669a893aef02dd5afec07394 | [Flight] Unify plain Server Component and forwardRef under one function (#28261)
This used to be trivial but it's no longer trivial.
In Fizz and Fiber this is split into renderWithHooks and
finishFunctionComponent since they also support indeterminate
components.
Interestingly thanks to this unification we alw... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -478,6 +478,58 @@ function createLazyWrapperAroundWakeable(wakeable: Wakeable) {\n return lazyType;\n }\n \n+function renderFunctionComponent<Props>(\n+ request: Request,\n+ task: Task,\n+ key: null | string,\n+ Component: (p: Pr... | 2024-02-07T00:41:05 |
electron/electron | 32d8f84cad9ece93520d6d1764c9b45403284760 | ad077125618bb3dc93dd2a660bf6c6956204bae5 | fix: `getNormalBounds()` for transparent windows on Windows (#38218) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -787,6 +787,10 @@ gfx::Size NativeWindowViews::GetContentSize() {\n }\n \n gfx::Rect NativeWindowViews::GetNormalBounds() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsMaximized() && transparent())\n+ return restore_bounds_;\n+#endif\n return widget(... | 2023-05-17T11:11:43 |
vercel/next.js | 2dbc947cdeebce7fbfc91240d71473395e961616 | c8976ee2121b02b26e089e1854e2b1ad43a3436e | Turbopack: fix incorrect graph state bug (#81202)
### What?
Technically a task should start with `Dirty` flag set and propagate that info through the aggregation graph. But that would be very expensive to do in the initial compilation. So we have the extra check of tasks not having Output set.
But there is this rare... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/update_output.rs",
"patch": "@@ -48,86 +48,86 @@ impl UpdateOutputOperation {\n output: Result<RawVc, TurboTasksExecutionError>,\n mut ctx: impl ExecuteContext,\n ) {\n- let mut task = ctx.task(task_id, TaskData... | 2025-07-08T07:02:06 |
facebook/react | db120f69ec7a0b8c7f38ca7a1ddb1886de92e465 | 12d56fca3da06328ac61d86976afa728b97b49d6 | Patch devtools before running useMemo function in strict mode (#28249)
This fixes a regression https://github.com/facebook/react/pull/25583
where we stopped patching before calling useMemo function.
Fixes https://github.com/facebook/react/issues/27989 | [
{
"path": "packages/react-devtools-shared/src/__tests__/console-test.js",
"patch": "@@ -625,6 +625,147 @@ describe('console', () => {\n expect(mockGroupCollapsed.mock.calls[0][0]).toBe('groupCollapsed');\n });\n \n+ it('should double log from useMemo if hideConsoleLogsInStrictMode is disabled in Stri... | 2024-02-06T16:45:18 |
golang/go | 9d7de0483861b3f882f79797939566fe8f6f9e24 | 2c9689ab0e7ebfbcd875ac3c54740a8295c43d42 | runtime: fix 9-arg syscall on darwin/amd64
The last 3 arguments need to be passed on the stack, not registers.
Fixes #71302
Change-Id: Ib1155ad1a805957fad3d9594c93981a558755591
Reviewed-on: https://go-review.googlesource.com/c/go/+/665435
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <go... | [
{
"path": "src/runtime/sys_darwin_amd64.s",
"patch": "@@ -745,23 +745,26 @@ ok:\n //\n // syscall9 expects a 32-bit result and tests for 32-bit -1\n // to decide there was an error.\n-TEXT runtime·syscall9(SB),NOSPLIT,$16\n+TEXT runtime·syscall9(SB),NOSPLIT,$32\n \tMOVQ\t(0*8)(DI), R13// fn\n \tMOVQ\t(2*8)(... | 2025-04-14T16:52:31 |
electron/electron | ad077125618bb3dc93dd2a660bf6c6956204bae5 | 9902e01d2c32e2959341c59ed9113d456997bcb0 | fix: `win.isMaximized()` for transparent windows on Windows (#38234) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -656,7 +656,7 @@ bool NativeWindowViews::IsMaximized() {\n return true;\n } else {\n #if BUILDFLAG(IS_WIN)\n- if (transparent()) {\n+ if (transparent() && !IsMinimized()) {\n // Compare the size of the window with the size of t... | 2023-05-17T08:17:08 |
vercel/next.js | e4b6c8e2c3fa38551d26326141fe85b618f6df8f | ff5707b95e43cb7f2c99475fa1ab98fcd2821e8c | fix(turbopack): external script should under async module (#81362)
Follow up: https://github.com/vercel/next.js/pull/80768
Sorry i miss something, script external should under async module
because it needs to execute loadurl function(which is async) | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/references/external_module.rs",
"patch": "@@ -209,7 +209,8 @@ impl Module for CachedExternalModule {\n #[turbo_tasks::function]\n fn is_self_async(&self) -> Result<Vc<bool>> {\n Ok(Vc::cell(\n- self.external_type == CachedExtern... | 2025-07-08T00:26:02 |
golang/go | 2c9689ab0e7ebfbcd875ac3c54740a8295c43d42 | 30aca0674e8c0839101c7d7730ac242fcb589287 | cmd/compile/internal/escape: add hash for bisecting stack allocation of variable-sized makeslice
CL 653856 enabled stack allocation of variable-sized makeslice results.
This CL adds debug hashing of that change, plus a debug flag
to control the byte threshold used.
The debug hashing machinery means we also now have ... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -72,6 +72,8 @@ type DebugFlags struct {\n \tPGOInlineBudget int `help:\"inline budget for hot functions\" concurrent:\"ok\"`\n \tPGODevirtualize int `help:\"enable profile-guided devirtualization; 0 to disable, 1 to enable in... | 2025-04-08T11:35:11 |
facebook/react | 65d95b837e797a0690221dd1824955d3d3afd278 | 103cddbb9d433b08622c43336b170ffc63acdee3 | fix: gate react/jsx-runtime upgrade only for React >= 17 tests (#28256)
https://github.com/facebook/react/pull/28252 broke RDT tests with React
16.x.
These changes gate the `jsx-runtime` upgrade only for cases when we are
testing against React >= 17.
Validated with:
```
./scripts/circleci/download_devtools_... | [
{
"path": "package.json",
"patch": "@@ -27,6 +27,7 @@\n \"@babel/plugin-transform-modules-commonjs\": \"^7.10.4\",\n \"@babel/plugin-transform-object-super\": \"^7.10.4\",\n \"@babel/plugin-transform-parameters\": \"^7.10.5\",\n+ \"@babel/plugin-transform-react-jsx-source\": \"^7.10.5\",\n ... | 2024-02-06T15:03:36 |
nodejs/node | 74ddce8853e8c3de90f1037940ee5dcf38201b65 | da185dd12f788724c667d9fd52faa46e831f5c2f | stream: improve inspector ergonomics
PR-URL: https://github.com/nodejs/node/pull/53800
Fixes: https://github.com/nodejs/node/issues/53789
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -2041,8 +2041,8 @@ function readableStreamError(stream, error) {\n assert(stream[kState].state === 'readable');\n stream[kState].state = 'errored';\n stream[kState].storedError = error;\n- stream[kIsClosedPromise].reject(error);\n ... | 2024-07-12T18:00:27 |
electron/electron | e83197669cacf21f1061ca180c70739e4eda685f | 9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c | fix: unify `BrowserWindow.isVisible()` logic cross-platform (#38242) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -667,7 +667,7 @@ Hides the window.\n \n #### `win.isVisible()`\n \n-Returns `boolean` - Whether the window is visible to the user.\n+Returns `boolean` - Whether the window is visible to the user in the foreground of the app.\n \n #### `win.isModal()`\n ",... | 2023-05-16T09:46:45 |
vercel/next.js | ff5707b95e43cb7f2c99475fa1ab98fcd2821e8c | cacd2e45d51696e5beab22b23d0db485c557e0ca | fix(CI): Update llvm when building native musl targets (#81392)
Tested locally with
```
podman run --platform=linux/amd64 -t -i ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2023-09-17-alpine bash
```
We must ensure llvm16 is removed before installing llvm20 and
llvm20-dev, as there's a file conflict between llvm16 and... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -247,7 +247,8 @@ jobs:\n build: >-\n set -ex &&\n apk update &&\n- apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&\n+ apk del llvm &&... | 2025-07-07T23:32:41 |
facebook/react | af6e837b60fcdf1ae77e119f63afc4a6cff41459 | 0277bc4d54437bfb2ff4df7c80b68f3f0eee22a2 | Fix destructuring with mixed local/scope declarations
Fixes T176436488. The logic for rewriting Destructure instructions was correct,
but the visitor implementation was accidentally dropping subsequent Destructure
instructions within a block after encountering one that needed a rewrite.
Switching to use the transf... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/ExtractScopeDeclarationsFromDestructuring.ts",
"patch": "@@ -11,13 +11,17 @@ import {\n IdentifierId,\n InstructionKind,\n Place,\n- ReactiveBlock,\n ReactiveFunction,\n ReactiveInstruction,\n ReactiveScopeBlock,\n+ Reac... | 2024-02-06T06:29:53 |
golang/go | 30aca0674e8c0839101c7d7730ac242fcb589287 | f4803ddc2c8d082e07227c72944ffd9d7c45ab64 | strings: duplicate alignment test from bytes package
Fixes #26129
Change-Id: If98f85b458990dbff7ecfeaea6c81699dafa66ef
Reviewed-on: https://go-review.googlesource.com/c/go/+/665275
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
Revie... | [
{
"path": "src/strings/compare_test.go",
"patch": "@@ -36,9 +36,13 @@ var compareTests = []struct {\n \n func TestCompare(t *testing.T) {\n \tfor _, tt := range compareTests {\n-\t\tcmp := Compare(tt.a, tt.b)\n-\t\tif cmp != tt.i {\n-\t\t\tt.Errorf(`Compare(%q, %q) = %v`, tt.a, tt.b, cmp)\n+\t\tnumShifts :=... | 2025-04-13T14:21:52 |
rust-lang/rust | 4d07a8f24c42c4cb7362ea8c4db8cfca62a846b2 | 08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6 | std: Don't panic when removing a nonexistent UEFI var
`std::env::remove_var` does not say that deleting a nonexistent variable
is an error (and at least on Linux, it indeed does not cause an
error).
The UEFI Shell Protocol spec also doesn't say it's an error, but the
edk2 implementation delegates to the UEFI runtime ... | [
{
"path": "library/std/src/sys/env/uefi.rs",
"patch": "@@ -43,7 +43,20 @@ mod uefi_env {\n pub(crate) fn unset(key: &OsStr) -> io::Result<()> {\n let mut key_ptr = helpers::os_string_to_raw(key)\n .ok_or(io::const_error!(io::ErrorKind::InvalidInput, \"invalid key\"))?;\n- unsa... | 2026-02-08T17:29:59 |
nodejs/node | 24648b5769dbfa71896fa32a402ddcb8ee348a8d | c126a1f0dc9504218c9b975c02fffc4c92260d92 | lib,esm: handle bypass network-import via data:
PR-URL: https://github.com/nodejs-private/node-private/pull/522
Refs: https://hackerone.com/bugs?subject=nodejs&report_id=2092749
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
CVE-ID: CVE-2024-22020
P... | [
{
"path": "lib/internal/modules/esm/resolve.js",
"patch": "@@ -1067,6 +1067,16 @@ function defaultResolve(specifier, context = {}) {\n if (parsed != null) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n protocol = parsed.protocol;\n+\n+ if (protocol === 'data:' &&\n+ ... | 2024-07-12T12:48:54 |
electron/electron | 9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c | 042663e19058cebc83428a5a354b863d2bb10e31 | fix: enable `BrowserWindow.id` access post-destruction (#38241)
fix: enable BrowserWindow id access post-destruction | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -12,6 +12,14 @@ BrowserWindow.prototype._init = function (this: BWT) {\n // Avoid recursive require.\n const { app } = require('electron');\n \n+ // Set ID at constructon time so it's accessible after\n+ // underlying window destruction.\n+ ... | 2023-05-16T07:29:00 |
golang/go | f4803ddc2c8d082e07227c72944ffd9d7c45ab64 | 2869d55366a55d6a29a166523ac2383d0b2291df | math/big: fix loong64 assembly for vet
Vet is failing on this code because some arguments of mulAddVWW
got renamed in the go decl (CL 664895) but not the assembly accessors.
Looks like the assembly got written before that CL but checked in
after that CL.
Change-Id: I270e8db5f8327aa2029c21a126fab1231a3506a1
Reviewed-... | [
{
"path": "src/math/big/arith_loong64.s",
"patch": "@@ -98,19 +98,19 @@ TEXT ·lshVU(SB),NOSPLIT,$0\n TEXT ·rshVU(SB),NOSPLIT,$0\n \tJMP ·rshVU_g(SB)\n \n-// func mulAddVWW(z, x []Word, y, r Word) (c Word)\n+// func mulAddVWW(z, x []Word, m, a Word) (c Word)\n TEXT ·mulAddVWW(SB),NOSPLIT,$0\n \t// input:\n \... | 2025-04-15T16:36:06 |
rust-lang/rust | d14c26f45a84eff6eabddd8c0e0580d851ade217 | 8aa0e905f4a1806a9406eb7c34e0c58157dc2856 | Fix help on `AmbiguousMissingKwForItemSub` diagnostic | [
{
"path": "compiler/rustc_parse/src/errors.rs",
"patch": "@@ -2266,7 +2266,9 @@ pub(crate) enum AmbiguousMissingKwForItemSub {\n span: Span,\n snippet: String,\n },\n- #[help(\"you likely meant to define an item, e.g., `{$vis} fn foo() {\\\"{}\\\"}`\")]\n+ #[help(\n+ \"if yo... | 2026-02-08T09:24:07 |
nodejs/node | b6ca3d732a97cadb410b3f0f87ef1fa6b9ab117f | 3ad2e1207331f9f7fb8b13d6d26f0680d3e7f239 | fs: reduce throwing unnecessary errors on glob
PR-URL: https://github.com/nodejs/node/pull/53632
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -38,12 +38,30 @@ function lazyMinimatch() {\n const isWindows = process.platform === 'win32';\n const isOSX = process.platform === 'darwin';\n \n+/**\n+ * @param {string} path\n+ * @returns {Promise<DirentFromStats|null>}\n+ */\n async function getDirent(pat... | 2024-07-11T18:51:35 |
electron/electron | 042663e19058cebc83428a5a354b863d2bb10e31 | e19500fa03bf08af1466dac5dbca39f1b4281d9c | fix: `isMaximized` after minimize/fullscreen on macOS (#38291)
fix: isMaximized after isMinimized on macOS | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -562,6 +562,11 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n bool NativeWindowMac::IsMaximized() {\n+ // It's possible for [window_ isZoomed] to be true\n+ // when the window is minimized or fullscreened.\n+ if (IsMinimized(... | 2023-05-16T07:26:41 |
golang/go | fcd73b0ac307c2a639bd28939b0f5ea4b6bb3c6c | 79b809afb325ae266497e21597f126a3e98a1ef7 | cmd/compile/internal/importer: correct a matching error
Change-Id: I2499d6ef1df0cc6bf0be8903ce64c03e1f296d19
GitHub-Last-Rev: 1f759d89be7b40c7fe72b920fc004de3fed8d057
GitHub-Pull-Request: golang/go#73064
Reviewed-on: https://go-review.googlesource.com/c/go/+/660978
Auto-Submit: Robert Griesemer <gri@google.com>
Review... | [
{
"path": "src/cmd/compile/internal/importer/gcimporter_test.go",
"patch": "@@ -164,7 +164,7 @@ func TestVersionHandling(t *testing.T) {\n \t\t_, err := Import(make(map[string]*types2.Package), pkgpath, dir, nil)\n \t\tif err != nil {\n \t\t\t// ok to fail if it fails with a 'not the start of an archive fil... | 2025-03-27T04:21:01 |
rust-lang/rust | 8aa0e905f4a1806a9406eb7c34e0c58157dc2856 | 953aa57c7503177f494dfb168306503867aa26fc | Fix suggestion on `CallToDeprecatedSafeFnRequiresUnsafe` diagnostic | [
{
"path": "compiler/rustc_mir_build/src/errors.rs",
"patch": "@@ -22,7 +22,7 @@ pub(crate) struct CallToDeprecatedSafeFnRequiresUnsafe {\n \n #[derive(Subdiagnostic)]\n #[multipart_suggestion(\n- \"you can wrap the call in an `unsafe` block if you can guarantee that the environment access only happens in... | 2026-02-08T09:23:58 |
facebook/react | 472854820bfd0058dfc85524051171c7b7c998c1 | 95ec128399a8b34884cc6bd90a041e03ce5c1844 | [Flight] Delete Server Context (#28225)
Server Context was never documented, and has been deprecated in
https://github.com/facebook/react/pull/27424.
This PR removes it completely, including the implementation code.
Notably, `useContext` is removed from the shared subset, so importing it
from a React Server en... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -48,8 +48,6 @@ import {\n REACT_POSTPONE_TYPE,\n } from 'shared/ReactSymbols';\n \n-import {getOrCreateServerContext} from 'shared/ReactServerContextRegistry';\n-\n export type {CallServerCallback};\n \n type UninitializedModel = str... | 2024-02-05T22:39:15 |
nodejs/node | 096e44a8a9dd20e3159ee15bc2563c6a58dc344f | 97918364f67ff2eafcf89d7a0c1068167094a661 | util: fix crashing when emitting new Buffer() deprecation warning #53075
PR-URL: https://github.com/nodejs/node/pull/53089
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.co... | [
{
"path": "lib/internal/util.js",
"patch": "@@ -37,6 +37,7 @@ const {\n SafeWeakRef,\n StringPrototypeIncludes,\n StringPrototypeReplace,\n+ StringPrototypeStartsWith,\n StringPrototypeToLowerCase,\n StringPrototypeToUpperCase,\n Symbol,\n@@ -515,11 +516,14 @@ function isInsideNodeModules() {\n... | 2024-07-11T12:13:20 |
electron/electron | eeb1e7d499130717dbb76610e4800fb638e5605d | 0149ae72e638e1d386194d23d81bcdd64d9966c4 | chore: fix lint:js-in-markdown script (#38260) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1346,7 +1346,7 @@ app.setLoginItemSettings({\n path: updateExe,\n args: [\n '--processStart', `\"${exeName}\"`,\n- '--process-start-args', `\"--hidden\"`\n+ '--process-start-args', '\"--hidden\"'\n ]\n })\n ```",
"additions": 1,
"deletions":... | 2023-05-15T07:58:35 |
golang/go | 79b809afb325ae266497e21597f126a3e98a1ef7 | 396a48bea6f2dc07ef103da298eec05cb6167892 | os: handle trailing slashes in os.RemoveDir on Windows
CL 661575 inadvertently caused os.RemoveDir on Windows to
fail when given a path with a trailing / or \, due to the
splitPath function not correctly stripping trailing
separators.
Fixes #73317
Change-Id: I21977b94bb08ff1e563de6f5f16a4bdf5024a15e
Reviewed-on: htt... | [
{
"path": "src/os/export_windows_test.go",
"patch": "@@ -11,4 +11,5 @@ var (\n \tNewConsoleFile = newConsoleFile\n \tCommandLineToArgv = commandLineToArgv\n \tAllowReadDirFileID = &allowReadDirFileID\n+\tSplitPath = splitPath\n )",
"additions": 1,
"deletions": 0,
"language": "Go"
... | 2025-04-10T20:58:17 |
rust-lang/rust | fb55b5dcf33c3f134a41851771c3b13710a8a048 | 13c38730d981289cc7ae4cc109fd7756bf83ee67 | diagnostics: fix ICE in closure signature mismatch
This fixes the ICE by renaming conflicting arguments in the diagnostic. | [
{
"path": "compiler/rustc_trait_selection/src/errors.rs",
"patch": "@@ -153,10 +153,10 @@ impl Subdiagnostic for AdjustSignatureBorrow {\n fn add_to_diag<G: EmissionGuarantee>(self, diag: &mut Diag<'_, G>) {\n match self {\n AdjustSignatureBorrow::Borrow { to_borrow } => {\n- ... | 2026-02-08T12:20:13 |
facebook/react | 195b5e5a24f095256d61a557ad27782193f4ff8d | b79a5289fc21647b444eca397b5a02d5b64f5d2b | Fix sprout | [
{
"path": "compiler/packages/sprout/src/SproutTodoFilter.ts",
"patch": "@@ -429,6 +429,11 @@ const skipFilter = new Set([\n \"forest/forest-primitive-operations.flow\",\n \"forest/computed-load-props.flow\",\n \"forest/property-load-props.flow\",\n+ \"forest/forest-binding-test\",\n+ \"forest/forest... | 2024-02-06T05:51:18 |
vercel/next.js | 7a05d5d2a1710ac2589f369448d621b1bf7b56c2 | be0cc7ade5951a55de7da00b11530a3db14535e0 | fix(build): improve static path generation performance and fix parameter collisions (#81254)
## Summary
• **Performance**: Replace O(n²) parameter deduplication with O(n)
Map-based approach
• **Architecture**: Rewrite `assignErrorIfEmpty` using [Trie data
structure](https://en.wikipedia.org/wiki/Trie)
• **Testing**: ... | [
{
"path": "packages/next/src/build/static-paths/app.test.ts",
"patch": "@@ -7,7 +7,7 @@ import {\n import type { PrerenderedRoute } from './types'\n \n describe('assignErrorIfEmpty', () => {\n- it('should assign throwOnEmptyStaticShell false for a static route', () => {\n+ it('should assign throwOnEmptySt... | 2025-07-07T16:47:57 |
nodejs/node | 97918364f67ff2eafcf89d7a0c1068167094a661 | 345b3de602aaba24900fdd741187863dbaccc6ce | src: fix error handling in ExportJWKAsymmetricKey
Because call sites check IsNothing() on the return value of
ExportJWKAsymmetricKey() and ignore the boolean value if the return
value is Just (i.e., not nothing), this function must return Nothing()
instead of Just(false) when throwing a JavaScript error.
PR-URL: http... | [
{
"path": "src/crypto/crypto_keys.cc",
"patch": "@@ -505,7 +505,7 @@ Maybe<bool> ExportJWKAsymmetricKey(\n case EVP_PKEY_X448: return ExportJWKEdKey(env, key, target);\n }\n THROW_ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE(env);\n- return Just(false);\n+ return Nothing<bool>();\n }\n \n std::shared_ptr<K... | 2024-07-10T20:46:33 |
electron/electron | 95cd84f14032c7640ef69e221d007562f115cfef | 894e056e6ba44dbc05b3dbcb62ed47677c646937 | build: fix octokit resolution with patch-package (#38250) | [
{
"path": "package.json",
"patch": "@@ -57,6 +57,7 @@\n \"lint-staged\": \"^10.2.11\",\n \"minimist\": \"^1.2.6\",\n \"null-loader\": \"^4.0.0\",\n+ \"patch-package\": \"^7.0.0\",\n \"pre-flight\": \"^1.1.0\",\n \"process\": \"^0.11.10\",\n \"remark-cli\": \"^10.0.0\",\n@@ -101,9 ... | 2023-05-11T03:52:59 |
rust-lang/rust | 842bed6f939f74c8c005bc223acb50e22464d108 | 13c38730d981289cc7ae4cc109fd7756bf83ee67 | Parse #[rustc_delayed_bug_from_inside_query] | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/test_attrs.rs",
"patch": "@@ -190,3 +190,12 @@ impl<S: Stage> SingleAttributeParser<S> for RustcAbiParser {\n Some(AttributeKind::RustcAbi { attr_span: cx.attr_span, kind })\n }\n }\n+\n+pub(crate) struct RustcDelayedBugFromInsideQueryParser;... | 2026-02-04T20:32:49 |
golang/go | e0dba45c620866bb16cd0db2c51732f03a9b27f3 | ba7b8ca336123017e43a2ab3310fd4a82122ef9d | runtime: size field for gQueue and gList
Before CL, all instances of gQueue and gList stored the size of
structures in a separate variable. The size changed manually and passed
as a separate argument to different functions. This CL added an
additional field to gQueue and gList structures to store the size. Also,
the c... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -1512,9 +1512,9 @@ func gcBgMarkWorker(ready chan struct{}) {\n \t\t\t\t\t// everything out of the run\n \t\t\t\t\t// queue so it can run\n \t\t\t\t\t// somewhere else.\n-\t\t\t\t\tif drainQ, n := runqdrain(pp); n > 0 {\n+\t\t\t\t\tif drainQ := runqdrain(pp); !dr... | 2025-04-07T14:08:19 |
facebook/react | 88b0809447d3c20af8773a3c060ee5ace0d695f8 | 596827f6a72f6c4df0181e941c524fcbd0048914 | fix: partially revert jest setup config removal to fix regression tests (#28247)
Partially reverting what has been removed in
https://github.com/facebook/react/pull/28186.
We need `'scheduler/tracing'` mock for React >= 16.8.
The error:
```
Invariant Violation: It is not supported to run the profiling version o... | [
{
"path": "scripts/jest/devtools/config.build-devtools-regression.js",
"patch": "@@ -31,6 +31,8 @@ if (REACT_VERSION) {\n '^react-dom/client$'\n ] = `<rootDir>/build/${NODE_MODULES_DIR}/react-dom`;\n }\n+\n+ setupFiles.push(require.resolve('./setupTests.build-devtools-regression'));\n }\n \n mo... | 2024-02-05T17:07:41 |
vercel/next.js | 17c05b67bdea952b1d39b0eb46d87920f40b38df | 1a31db0335e1d853fddf7f5d187ca161773ffe01 | Always consider `captureOwnerStack` optional (#81370)
When running `next build` with a custom `NODE_ENV` (e.g. `test` or
`development`), the `captureOwnerStack` method is not defined and may
lead to errors if called. This change ensures that we only call
`captureOwnerStack` if it is defined, preventing potential runti... | [
{
"path": "packages/next/src/server/app-render/dynamic-rendering.ts",
"patch": "@@ -664,7 +664,10 @@ function createErrorWithComponentOrOwnerStack(\n componentStack: string\n ) {\n const ownerStack =\n- process.env.NODE_ENV !== 'production' ? React.captureOwnerStack() : null\n+ process.env.NODE_EN... | 2025-07-07T13:53:21 |
nodejs/node | a848206847504656502253c61e8a996ff96abd5c | fd21dd45d56ed8f3e202dc0aef92378519551b64 | src: use Maybe<void> in node::crypto::error
With recent versions of V8, it is not necessary to use Maybe<bool>
anymore.
PR-URL: https://github.com/nodejs/node/pull/53766
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: James M Snell <jasnell@gmail.co... | [
{
"path": "src/crypto/crypto_util.cc",
"patch": "@@ -29,7 +29,7 @@ using v8::Exception;\n using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n-using v8::Just;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n@@ -457,9 +457,10 @@ ByteSource ByteS... | 2024-07-10T19:48:53 |
rust-lang/rust | 81d42146040c4a6b3d252e3dc3ac32e563694796 | 0db0acd6993cbdf84384b00773d7509df6bc20fb | Remove fluent tests in `rustc_error` | [
{
"path": "compiler/rustc_errors/src/lib.rs",
"patch": "@@ -83,8 +83,6 @@ pub mod error;\n pub mod json;\n mod lock;\n pub mod markdown;\n-#[cfg(test)]\n-mod tests;\n pub mod timings;\n pub mod translation;\n ",
"additions": 0,
"deletions": 2,
"language": "Rust"
},
{
"path": "compiler/ru... | 2026-02-06T19:09:13 |
golang/go | 80bff42fdd0380c09f4df35c4baacb9cfdae5aae | 0c0d2572414d4d32feca74d902a761ff25457af9 | errors: optimize errors.Join for single unwrappable errors
Change-Id: I10bbb782ca7234cda8c82353f2255eec5be588c9
GitHub-Last-Rev: e5ad8fdb802e56bb36c41b4982ed27c1e0809af8
GitHub-Pull-Request: golang/go#70770
Reviewed-on: https://go-review.googlesource.com/c/go/+/635115
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by... | [
{
"path": "src/errors/join.go",
"patch": "@@ -26,6 +26,18 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n+\tif n == 1 {\n+\t\tfor _, err := range errs {\n+\t\t\tif err != nil {\n+\t\t\t\tif _, ok := err.(interface {\n+\t\t\t\t\tUnwrap() []error\n+\t\t\t\t}); ok {\n+\t\t\t\t\tret... | 2024-12-11T09:55:27 |
vercel/next.js | 33973b104afd387ede021e2473f0d381eb1c6b10 | cb1aed8d8fdb050e82ff1d8b696231df836b6308 | Fix duplicates in `optimizePackageImports` `effect` packages (#81253)
Co-authored-by: Jiachi Liu <inbox@huozhi.im> | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -1045,11 +1045,10 @@ function assignDefaults(\n '@effect/sql-mssql',\n '@effect/sql-mysql2',\n '@effect/sql-pg',\n- '@effect/sql-squlite-node',\n- '@effect/sql-squlite-bun',\n- '@effect/sql-squlite-wasm',\n- '... | 2025-07-07T11:07:31 |
nodejs/node | 33a6d1fe3a92d81df33024525fd3407744611afc | 059f2f43b814619cdc0f93cf3683bd8f5c349c6a | crypto: remove ERR_CRYPTO_SCRYPT_INVALID_PARAMETER
It is confusing to have both ERR_CRYPTO_SCRYPT_INVALID_PARAMETER and
ERR_CRYPTO_INVALID_SCRYPT_PARAMS. The former was the original error
code, added in 371103dae8b97264471e17de1989199ffcd2718e, but parameter
validation gradually changed and now produces
ERR_CRYPTO_INV... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1010,7 +1010,8 @@ An invalid message length was provided.\n added: v15.0.0\n -->\n \n-Invalid scrypt algorithm parameters were provided.\n+One or more [`crypto.scrypt()`][] or [`crypto.scryptSync()`][] parameters are\n+outside their legal range.\n \n <a id=\"ERR_... | 2024-07-10T16:38:00 |
rust-lang/rust | 953aa57c7503177f494dfb168306503867aa26fc | 13c38730d981289cc7ae4cc109fd7756bf83ee67 | Fix suggestion on `AutoTraitItems` diagnostic | [
{
"path": "compiler/rustc_ast_passes/src/errors.rs",
"patch": "@@ -503,7 +503,7 @@ pub(crate) struct AutoTraitItems {\n #[primary_span]\n pub spans: Vec<Span>,\n #[suggestion(\n- \"remove the super traits or lifetime bounds\",\n+ \"remove the associated items\",\n code = \"... | 2026-02-08T09:23:31 |
golang/go | f414dfe4f5049c2c8998b4e6b90dee7fca0c225b | 13b7c7d8d21765886697c952ffbb7fb853a2bf9a | os,internal/poll: support I/O on overlapped files not added to the poller
This fixes the support for I/O on overlapped files that are not added to
the poller. Note that CL 661795 already added support for that, but it
really only worked for pipes, not for plain files.
Additionally, this CL also makes this kind of I/O... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -68,7 +68,7 @@ var InitWSA = sync.OnceFunc(func() {\n // operation contains superset of data necessary to perform all async IO.\n type operation struct {\n \t// Used by IOCP interface, it must be first field\n-\t// of the struct, as our code rely on ... | 2025-04-10T14:03:46 |
electron/electron | 894e056e6ba44dbc05b3dbcb62ed47677c646937 | 2806feede2cf5264b0187dddfdd7fc6cca915fbf | chore: bump chromium to 115.0.5760.0 (main) (#38033)
* chore: bump chromium in DEPS to 114.0.5721.0
* chore: update patches
* chore: bump chromium in DEPS to 114.0.5723.0
* chore: update patches
* chore: bump chromium in DEPS to 114.0.5725.0
* chore: update patches
* chore: bump chromium in DEPS to 1... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -52,9 +52,14 @@ executors:\n size:\n description: \"macOS executor size\"\n type: enum\n- enum: [\"macos.x86.medium.gen2\", \"large\"]\n+ enum: [\"macos.x86.medium.gen2\"]\n+ version:\n+ description: \"xcode ... | 2023-05-10T14:47:48 |
vercel/next.js | de7e13e5eb66c24d6174d85e4590b8c00e0c6b7e | 6b5c9548f6f08ea25c37bbdf516e846fd2227522 | Remove incorrect PostCSS config type (#81338)
### What?
Currently the docs is incorrectly suggesting to type the PostCSS config
with types from Tailwind CSS. This pull request removed the wrong types.
If desired one can correctly type the config with the
[`postcss-load-config`](https://github.com/postcss/postcss-loa... | [
{
"path": "docs/01-app/02-guides/tailwind-css.mdx",
"patch": "@@ -22,8 +22,7 @@ npm install -D tailwindcss @tailwindcss/postcss postcss\n \n Create a `postcss.config.mjs` file in the root of your project and add the `@tailwindcss/postcss` plugin to your PostCSS configuration:\n \n-```js filename=\"postcss.c... | 2025-07-05T23:17:10 |
nodejs/node | eaffed65f0bc1dbd82a436d5c4cd14519d9ad632 | e849dd66322332638a0a14eea3a2ea9ea9e5970c | src: fix implementation of `PropertySetterCallback`
V8 does not allow returning arbitrary values from the interceptor
setter callbacks, only a boolean return value is allowed. Since
default return value is `true`, it's not even necessary to set
the return value on a successful path.
Refs: https://crbug.com/348660658
... | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -614,7 +614,6 @@ Intercepted ContextifyContext::PropertySetterCallback(\n // property\n if (desc_obj->HasOwnProperty(context, env->get_string()).FromMaybe(false) ||\n desc_obj->HasOwnProperty(context, env->set_string()).FromMaybe(false)) {\n- ... | 2024-06-24T08:42:18 |
facebook/react | 56cd10beb40586d09e91157e8f6ac531478a62be | 214fe84f53c5ba9d40c3427b72c5e6fb9be830e5 | DevTools: Add support for useFormState (#28232)
## Summary
Add support for `useFormState` Hook fixing "Unsupported hook in the
react-debug-tools package: Missing method in Dispatcher: useFormState"
when inspecting components using `useFormState`
## How did you test this change?
- Added test to ReactHooksIns... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -8,6 +8,7 @@\n */\n \n import type {\n+ Awaited,\n ReactContext,\n ReactProviderType,\n StartTransitionOptions,\n@@ -80,11 +81,14 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n // This type check i... | 2024-02-05T14:39:45 |
electron/electron | 2806feede2cf5264b0187dddfdd7fc6cca915fbf | 13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b | docs: fix `devtools-open-url` ts definition (#38231)
docs: fix devtools-open-url ts definition | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -601,6 +601,7 @@ window.\n \n Returns:\n \n+* `event` Event\n * `url` string - URL of the link that was clicked or selected.\n \n Emitted when a link is clicked in DevTools or 'Open in new tab' is selected for a link in its context menu.",
"additions": ... | 2023-05-10T09:25:50 |
vercel/next.js | 6b5c9548f6f08ea25c37bbdf516e846fd2227522 | 6ba9c21d29d8f3786fcb0ad4c419819ea0ffbd4d | fix(docs): correct section count from 4 to 3 in intro (#81323)
The docs mention 4 sections but only list 3: Getting Started, Guides,
and API Reference.
This updates the "How to use the docs" section to correctly reflect that
only 3 sections are listed, not 4.
**Before:**
The docs are organized into 4 sections:
**Af... | [
{
"path": "docs/index.mdx",
"patch": "@@ -20,7 +20,7 @@ Whether you're an individual developer or part of a larger team, Next.js can hel\n \n ## How to use the docs\n \n-The docs are organized into 4 sections:\n+The docs are organized into 3 sections:\n \n - [Getting Started](/docs/app/getting-started): Ste... | 2025-07-05T23:14:14 |
golang/go | 47ab9cbd82b8b1af4b0636ed72173735725678a6 | 21acfdc4ef18fcf2e5e6114fe800fec0a10e493c | cmd: fix DWARF gen bug with packages that use assembly
When the compiler builds a Go package with DWARF 5 generation enabled,
it emits relocations into various generated DWARF symbols (ex:
SDWARFFCN) that use the R_DWTXTADDR_* flavor of relocations. The
specific size of this relocation is selected based on the total n... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -49,6 +49,7 @@ func main() {\n \tctxt.Debugpcln = flags.DebugFlags.PCTab\n \tctxt.IsAsm = true\n \tctxt.Pkgpath = *flags.Importpath\n+\tctxt.DwTextCount = objabi.DummyDwarfFunctionCountForAssembler()\n \tswitch *flags.Spectre {\n \tdefault:\n \t\tlog.Printf(\"un... | 2025-04-05T22:59:59 |
nodejs/node | b4e8f1b6bb3616ba222c4513218aa1fa9d543d8e | 1a1639de3e2508cfa428f0aab90e1fc71c6233cc | lib,src,test,doc: add node:sqlite module
PR-URL: https://github.com/nodejs/node/pull/53752
Fixes: https://github.com/nodejs/node/issues/53264
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Vinícius Lo... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1049,6 +1049,14 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n+### `--experimental-sqlite`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+Enable the experimental [`node:sqlite`][] module.\n+\n ### `--experimental-test-coverage`\n \n <!-- YAML\n@@... | 2024-07-09T20:33:38 |
facebook/react | 3d6fcf958233a004ff9bd0af8f1f65b8f22f1b3c | 85cc01743bc992a689770a4f37e3d5441f14f082 | Convert ReactErrorBoundaries-test.internal.js to createRoot (#28122) | [
{
"path": "packages/react-dom/src/__tests__/ReactErrorBoundaries-test.internal.js",
"patch": "@@ -12,6 +12,7 @@\n let PropTypes;\n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let act;\n let ReactFeatureFlags;\n let Scheduler;\n@@ -44,6 +45,7 @@ describe('ReactErrorBoundaries', () => {\n ReactFeat... | 2024-02-03T01:41:56 |
electron/electron | 13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b | f432245456e92fe0191ae0b9275fdee60dd45452 | fix: only exit fullscreen conditionally with `setKiosk` (#38219)
fix: only exit fullscreen conditionally with setKiosk | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -234,6 +234,7 @@ class NativeWindowMac : public NativeWindow,\n // The views::View that fills the client area.\n std::unique_ptr<RootViewMac> root_view_;\n \n+ bool fullscreen_before_kiosk_ = false;\n bool is_kiosk_ = false;\n bool zoom_to... | 2023-05-09T16:28:37 |
vercel/next.js | 6ba9c21d29d8f3786fcb0ad4c419819ea0ffbd4d | 65df0c37c1edd746e9d83bd6d48fd152c8f5b192 | fix typo (#81336)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improving Documentation
- R... | [
{
"path": "docs/01-app/01-getting-started/09-caching-and-revalidating.mdx",
"patch": "@@ -154,7 +154,7 @@ See the [`unstable_cache` API reference](/docs/app/api-reference/functions/unsta\n \n ## `revalidateTag`\n \n-`revalidateTag` is used to revalidate a cache entries based on a tag and following an event.... | 2025-07-05T22:54:02 |
golang/go | f9670787122a732fb7d81cf64856ab6c50904e17 | 3968a5bca4fc0cdb4e2bb9fd6169deafdafc420d | os: fix TestRootChtimes on illumos
TestRootChtimes currently fails on illumos [1] because the times
returned by os.Stat have only microsecond precision on that builder.
Truncate them to make the test pass again.
[1] https://build.golang.org/log/9780af24c3b3073dae1d827b2b9f9e3a48912c30
Change-Id: I8cf895d0b60c854c27c... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -457,6 +457,9 @@ func TestRootChtimes(t *testing.T) {\n \t\t\t\tcase \"js\", \"plan9\":\n \t\t\t\t\ttimes.atime = times.atime.Truncate(1 * time.Second)\n \t\t\t\t\ttimes.mtime = times.mtime.Truncate(1 * time.Second)\n+\t\t\t\tcase \"illumos\":\n+\t\t\t\t\ttimes.... | 2025-04-11T12:11:37 |
rust-lang/rust | 7c95f57bc95c36f44a50fffb07cb2b933184ee2b | b303ab4c86361b9e3d7c803237f0b8ef5c7804d7 | fix outdated doc comments | [
{
"path": "book/src/development/type_checking.md",
"patch": "@@ -154,7 +154,7 @@ in this chapter:\n [expr_ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.TypeckResults.html#method.expr_ty\n [node_type]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Typeck... | 2026-02-08T07:25:51 |
nodejs/node | 1a1639de3e2508cfa428f0aab90e1fc71c6233cc | d15f514077502c1bbe9b81783669eb704d6e041c | deps: V8: cherry-pick 9ebca66a5740
Original commit message:
[rab/gsab] Remove --harmony-rab-gsab (has been on by default for a while)
Bug: v8:11111
Change-Id: Ie74e7737f3e2e8730820cf00f1cbc7ae02b515af
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5516580
Commit-Queue: Marja Hölt... | [
{
"path": "deps/v8/src/api/api.cc",
"patch": "@@ -8953,9 +8953,6 @@ std::unique_ptr<v8::BackingStore> v8::ArrayBuffer::NewBackingStore(\n // static\n std::unique_ptr<BackingStore> v8::ArrayBuffer::NewResizableBackingStore(\n size_t byte_length, size_t max_byte_length) {\n- Utils::ApiCheck(i::v8_flags.h... | 2024-06-23T22:31:33 |
facebook/react | 85cc01743bc992a689770a4f37e3d5441f14f082 | 00f9acb12c036ef24a2b6d7957d75359c6280087 | DevTools: Add support for useOptimistic Hook (#27982)
## Summary
Add support for `useOptimistic` Hook fixing "Unsupported hook in the
react-debug-tools package: Missing method in Dispatcher: useOptimistic"
when inspecting components using `useOptimistic`
## How did you test this change?
- Added test followi... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -80,6 +80,11 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n // This type check is for Flow only.\n Dispatcher.useMemoCache(0);\n }\n+\n+ if (typeof Dispatcher.useOptimistic === 'function... | 2024-02-02T22:18:16 |
electron/electron | f432245456e92fe0191ae0b9275fdee60dd45452 | 0212c264cab7a2b8dc2141f429df64396c410ffa | fix: handle `AXManualAccessibility` attribute cross-protocol (#38142)
* fix: handle AXManualAccessibility attribute cross-protocol
* Update shell/browser/mac/electron_application.mm
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/mac/electron_application.mm",
"patch": "@@ -175,6 +175,33 @@ - (void)handleURLEvent:(NSAppleEventDescriptor*)event\n electron::Browser::Get()->OpenURL(base::SysNSStringToUTF8(url));\n }\n \n+// Returns the list of accessibility attributes that this object supports.\n+- (NSArray*)a... | 2023-05-09T09:13:14 |
vercel/next.js | 2d19dc626babcaf28665c270e1b58d717846bbb9 | 8d789925573d8ac092703a65f6ce372b0c573eda | [dynamicIO] Use owner stacks for dynamic validation errors (#81277)
With recent improvements in React, and after switching to the React
builds for Node.js in #81048, we can now generate better dynamic
validation error stacks in dev mode by utilizing owner stacks instead of
component stacks.
For async I/O, we're using... | [
{
"path": "packages/next/src/export/index.ts",
"patch": "@@ -410,6 +410,14 @@ async function exportAppImpl(\n authInterrupts: !!nextConfig.experimental.authInterrupts,\n },\n reactMaxHeadersLength: nextConfig.reactMaxHeadersLength,\n+ hasReadableErrorStacks:\n+ nextConfig.experimental.... | 2025-07-04T20:09:23 |
golang/go | 4dffdd797b69d9423b4a492e2d832e1023326b1b | 037112464b4439571b45536de9ebe4bc9e10ecb7 | math/big: replace addMulVVW with addMulVVWW
addMulVVW is an unnecessarily special case.
All other assembly routines taking []Word (V as in vector) arguments
take separate source and destination. For example:
addVV: z = x+y
mulAddVWW: z = x*m+a
addMulVVW uses the z parameter as both destination and source:
addMul... | [
{
"path": "src/math/big/arith.go",
"patch": "@@ -194,10 +194,11 @@ func mulAddVWW_g(z, x []Word, y, r Word) (c Word) {\n \treturn\n }\n \n-func addMulVVW_g(z, x []Word, y Word) (c Word) {\n+func addMulVVWW_g(z, x, y []Word, m, a Word) (c Word) {\n+\tc = a\n \t// The comment near the top of this file discuss... | 2025-04-05T18:29:00 |
nodejs/node | d15f514077502c1bbe9b81783669eb704d6e041c | 307430e490a6a81f45942311003d015dd9c46e71 | deps: V8: cherry-pick e061cf9970d9
Original commit message:
[arraybuffers] initialize max byte length of empty array buffers
Without initializing the max byte length field, any empty array
buffer captured in the snapshot can make the snapshot unreproducible.
Refs: https://github.com/nodejs/node/issu... | [
{
"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.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2024-07-07T18:22:17 |
facebook/react | b25dcd3958872322cbeff797ba99c0856de1ebbc | 2a45118b1039bc81a44bad81f8e3b1fb2395da1b | Add ReactDOMClient to ServerIntegration tests (minor fixes) (#28131)
## Overview
Branched off https://github.com/facebook/react/pull/28130
Converts to `createRoot`, with a few additional in-line conversions in
each file. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationAttributes-test.js",
"patch": "@@ -15,6 +15,7 @@ const ReactFeatureFlags = require('shared/ReactFeatureFlags');\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactTestUtils;\n let ReactDOMServer;\n \n@@ -23,12 +24,13 @@ funct... | 2024-02-02T00:01:16 |
electron/electron | 0212c264cab7a2b8dc2141f429df64396c410ffa | 9ccf2275d2e021c44f51cc3719679e927fee10fa | build: fix CRLF endings in messages.json (#38212) | [
{
"path": "spec/fixtures/extensions/chrome-i18n/_locales/en/messages.json",
"patch": "@@ -1,6 +1,6 @@\n-{\r\n- \"extName\": {\r\n- \"message\": \"chrome-i18n\",\r\n- \"description\": \"Extension name.\"\r\n- }\r\n-}\r\n+{\n+ \"extName\": {\n+ \"message\": \"chrome-i18n\",\n+ \"description\": ... | 2023-05-08T18:51:24 |
vercel/next.js | 05d179cb16eee28437ee72fdd4886f2278c8d925 | 383e000d380e60567a946ef820bd2af1e7459f9e | Allow `pnpm build` to be run when offline (#81273)
When running `pnpm build` in the Next.js repo without an internet
connection, this currently fails while trying to download the AMP
`validator_wasm.js` file. We can fix this, and thus enable offline
support for `pnpm build`, by moving the download of this file from th... | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -676,6 +676,23 @@ export async function ncc_amphtml_validator(task, opts) {\n .source(relative(__dirname, require.resolve('amphtml-validator')))\n .ncc({ packageName: 'amphtml-validator', externals })\n .target('src/compiled/amphtml-validator')... | 2025-07-04T18:41:21 |
golang/go | 835e36fc7f631f74233edfd4ab43b6b56833db86 | 2c35900fe4256d6de132cbee6f5a15b29013aac9 | cmd/go: add subdirectory support to go-import meta tag
This CL adds ability to specify a subdirectory in the go-import meta tag.
A go-import meta tag now will support:
<meta name="go-import" content="root-path vcs repo-url subdir">
Fixes: #34055
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-win... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2952,6 +2952,11 @@\n //\n //\t<meta name=\"go-import\" content=\"import-prefix vcs repo-root\">\n //\n+// Starting in Go 1.25, an optional subdirectory will be recognized by the\n+// go command:\n+//\n+//\t<meta name=\"go-import\" content=\"import-prefix vcs ... | 2024-10-29T14:22:11 |
facebook/react | c39ec17e66552d8ea8d6d3e11c1d7f85a9f7247f | 4bd5e3ea5c449fdd2089f6bdfb07fb1120b0eec7 | Convert ReactErrorBoundariesHooks to createRoot (#28175) | [
{
"path": "packages/react-dom/src/__tests__/ReactErrorBoundariesHooks-test.internal.js",
"patch": "@@ -10,16 +10,18 @@\n 'use strict';\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n+let act;\n \n describe('ReactErrorBoundariesHooks', () => {\n beforeEach(() => {\n jest.resetModules();\n- R... | 2024-02-01T23:48:58 |
nodejs/node | 307430e490a6a81f45942311003d015dd9c46e71 | c0962dc3bfd94409162fcb77a9da20bce98848c7 | fs: improve error performance of `fs.dir`
PR-URL: https://github.com/nodejs/node/pull/53667
Reviewed-By: Daniel Lemire <daniel@lemire.me>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> | [
{
"path": "lib/internal/fs/dir.js",
"patch": "@@ -26,7 +26,6 @@ const {\n getDirent,\n getOptions,\n getValidatedPath,\n- handleErrorFromBinding,\n } = require('internal/fs/utils');\n const {\n validateFunction,\n@@ -155,27 +154,26 @@ class Dir {\n \n readSyncRecursive(dirent) {\n const path ... | 2024-07-09T14:38:01 |
electron/electron | a6c9aefb4aa37341017359a43d041bcdcacf98e8 | 13be6dc8b499064fca5501d4cc2c5d9f212f7d3b | chore: fix TrustedTypes policy in `chrome://accessibility` (#38179)
chore: fix TrustedTypes policy in chrome://accessibility | [
{
"path": "shell/browser/ui/webui/accessibility_ui.cc",
"patch": "@@ -321,6 +321,10 @@ ElectronAccessibilityUI::ElectronAccessibilityUI(content::WebUI* web_ui)\n base::BindRepeating(&HandleAccessibilityRequestCallback,\n web_ui->GetWebContents()->GetBrowserContext()));\n \n+ ... | 2023-05-08T08:39:04 |
vercel/next.js | 383e000d380e60567a946ef820bd2af1e7459f9e | a0a882e063b95302c6f14f7428005f8cb60175ad | [sourcemaps] ignore-list Webpack runtime (#81229)
The way this works in dev is by assigning a dummy sourcemap to the Webpack runtime that ignore-lists everything. The mappings will will be incorrect in development. Production sourcemaps will be correct since those emit real sourcemaps for the webpack runtime where we ... | [
{
"path": "packages/next/src/build/webpack/plugins/devtools-ignore-list-plugin.ts",
"patch": "@@ -31,6 +31,13 @@ function defaultIsSourceMapAsset(name: string): boolean {\n return name.endsWith('.map')\n }\n \n+function isWebpackRuntimeModule(modulePath: string): boolean {\n+ // webpack:///webpack/bootst... | 2025-07-04T16:47:54 |
golang/go | 9aad012a6e02d45b37757faeec20cc6923610baf | d60a684c87104ed7836403eab74eb2be1e4a97cb | net: reenable sendfile on Windows
Windows sendfile optimization is skipped since CL 472475, which started
passing an os.fileWithoutWriteTo instead of an os.File to sendfile,
and that function was only implemented for os.File.
This CL fixes the issue by asserting against an interface rather than
a concrete type.
Some... | [
{
"path": "src/internal/poll/sendfile_windows.go",
"patch": "@@ -10,78 +10,80 @@ import (\n )\n \n // SendFile wraps the TransmitFile call.\n-func SendFile(fd *FD, src syscall.Handle, n int64) (written int64, err error) {\n+func SendFile(fd *FD, src syscall.Handle, size int64) (written int64, err error, han... | 2025-04-09T09:15:38 |
facebook/react | 4bd5e3ea5c449fdd2089f6bdfb07fb1120b0eec7 | fa6674b5bcf52610e92d19a5105308e56091c386 | Add ReactDOMClient to ServerIntegrationReconnecting (#28136)
## Overview
Branched off https://github.com/facebook/react/pull/28130
## Why
In https://github.com/facebook/react/pull/24276 we changed the new root
behavior to error when a client-render is forced for certain cases, so
these now expect a mismatch... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationReconnecting-test.js",
"patch": "@@ -13,30 +13,30 @@ const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegratio\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils;\n \n-fu... | 2024-02-01T23:32:38 |
nodejs/node | c0962dc3bfd94409162fcb77a9da20bce98848c7 | 213fea0c55e5d57eea0f9e5ced5b66c00b1e095d | vm,src: add property query interceptors
Distinguish named property and indexed property when enumerating keys
and handle query interceptions.
Co-Authored-By: Michaël Zasso <targos@protonmail.com>
PR-URL: https://github.com/nodejs/node/pull/53517
Fixes: https://github.com/nodejs/node/issues/52720
Reviewed-By: Michaël ... | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -50,10 +50,13 @@ using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::IndexedPropertyHandlerConfiguration;\n+using v8::IndexFilter;\n using v8::Int32;\n+using v8::Integer;\n using v8::Intercepted;\n using v8::Isol... | 2024-06-20T09:14:57 |
electron/electron | 13be6dc8b499064fca5501d4cc2c5d9f212f7d3b | 3a7cfe300a59ad161d08b9da4edf6737d471ec60 | test: enable CircleCI's "re-run failed tests only" feature (#38178)
* test: enable CircleCI rerun failed *tests* only
* .
* .
* console.log never fails :shrug:
* normalize the filtered paths
circleci gives us a list of absolute paths here
* remove test output check
sometimes rerunning only failed test... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -452,7 +452,7 @@ step-get-more-space-on-mac: &step-get-more-space-on-mac\n fi\n background: true\n \n-# On macOS delete all .git directories under src/ expect for\n+# On macOS delete all .git directories under src/ except for\n # third_party/angl... | 2023-05-08T08:14:59 |
vercel/next.js | dc48e551fa956d6c992f59aaf76b033c656d6ec7 | e574dcb2e11ec80daa68015540f7b53cf5694675 | Turbopack: fix instrumentation-edge layer name (#81304)
A typo
Regression from https://github.com/vercel/next.js/pull/80388 | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1567,7 +1567,7 @@ impl Project {\n self.execution_context(),\n ),\n Layer::new_with_user_friendly_name(\n- rcstr!(\"instrumentation\"),\n+ rcstr!(\"instrumentation-edge\"),\n ... | 2025-07-04T16:14:48 |
golang/go | d60a684c87104ed7836403eab74eb2be1e4a97cb | 7a82b6a9e1ad6ace91e53011744ffefdbf5843bc | cmd/internal/obj/wasm: use i64 for large return addr
Use i64 to avoid overflow when getting PC_F from the return addr.
Fixes #73246
Change-Id: I5683dccf7eada4b8536edf53e2e83116a2f6d943
GitHub-Last-Rev: 267d9a1a031868430d0af530de14229ee1ae8609
GitHub-Pull-Request: golang/go#73277
Reviewed-on: https://go-review.google... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -1006,9 +1006,10 @@ func genWasmExportWrapper(s *obj.LSym, appendp func(p *obj.Prog, as obj.As, args\n \t// In the unwinding case, we call wasm_pc_f_loop_export to handle stack switch and rewinding,\n \t// until a normal return (non-unwinding) b... | 2025-04-09T12:17:21 |
nodejs/node | 213fea0c55e5d57eea0f9e5ced5b66c00b1e095d | 2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8 | src: remove unused ContextifyContext::WeakCallback
PR-URL: https://github.com/nodejs/node/pull/53517
Fixes: https://github.com/nodejs/node/issues/52720
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -81,7 +81,6 @@ using v8::Symbol;\n using v8::Uint32;\n using v8::UnboundScript;\n using v8::Value;\n-using v8::WeakCallbackInfo;\n \n // The vm module executes code in a sandboxed environment with a different\n // global object than the rest of the code. This... | 2024-06-19T23:01:54 |
facebook/react | fa6674b5bcf52610e92d19a5105308e56091c386 | c0d927713002fe27c4d58717d35cd930e6814c2b | Add ReactDOMClient to ServerIntegration(Hooks|NewContext) (#28135)
## Overview
Branched off https://github.com/facebook/react/pull/28130
### ~Failing~ Fixed by @eps1lon
Most of the tests pass, but there are 3 tests that have additional
warnings due to client render error retries.
For example, before we wou... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationHooks-test.js",
"patch": "@@ -15,7 +15,7 @@\n const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegrationTestUtils');\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils;\n... | 2024-02-01T23:32:27 |
electron/electron | a7adbae543d7caac3d67901158570307927c81d2 | f8d534f33e83c6323ed4354e51ef7d736ac24ab1 | docs: fix typing of session.setDevicePermissionHandler (#38188) | [
{
"path": "docs/api/session.md",
"patch": "@@ -1024,7 +1024,7 @@ Passing `null` instead of a function resets the handler to its default state.\n * `details` Object\n * `deviceType` string - The type of device that permission is being requested on, can be `hid`, `serial`, or `usb`.\n * `origin` str... | 2023-05-08T07:46:35 |
vercel/next.js | 5c59feb79757d7416f977d66f53f7cc0d456d458 | 45a5405de21fe158e93aec6441e3ed70399323dd | Ensure resolvedPathname normalizes trailing slash (#81265)
Fixes case with trailing slash from refactoring done in
https://github.com/vercel/next.js/pull/81144 | [
{
"path": "packages/next/src/build/templates/pages.ts",
"patch": "@@ -225,7 +225,9 @@ export async function handler(\n const method = req.method || 'GET'\n \n const resolvedUrl = formatUrl({\n- pathname: parsedUrl.pathname,\n+ pathname: nextConfig.trailingSlash\n+ ? parsedUrl.pathna... | 2025-07-03T23:21:32 |
golang/go | cac276f81a5ff11ae3c9027c45d14469f2b7fb70 | 7007dfcd0c32c1be83c921b0859dd48464c7c5aa | internal/poll: fix race in Close
There is a potential race between a concurrent call to FD.initIO, which
calls FD.pd.init, and a call to FD.Close, which calls FD.pd.evict.
This is solved by calling FD.initIO in FD.Close, as that will block
until the concurrent FD.initIO has completed. Note that FD.initIO is
no-op if ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -336,6 +336,10 @@ func (fd *FD) initIO() error {\n \t\treturn nil\n \t}\n \tfd.initIOOnce.Do(func() {\n+\t\tif fd.closing() {\n+\t\t\t// Closing, nothing to do.\n+\t\t\treturn\n+\t\t}\n \t\t// The runtime poller will ignore I/O completion\n \t\t// no... | 2025-04-08T13:31:02 |
facebook/react | c0d927713002fe27c4d58717d35cd930e6814c2b | 278199b3deeee73f969a242c777c2d38406f8bfe | Add ReactDOMClient to ServerIntegrationElements (#28134)
## Overview
Branched off https://github.com/facebook/react/pull/28130
## ~Failing~ Fixed by @eps1lon
The tests are currently failing because of two tests covering special
characters. I've tried a few ways to fix, but I'm stuck and will need
some hel... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationElements-test.js",
"patch": "@@ -16,19 +16,23 @@ const TEXT_NODE_TYPE = 3;\n \n let React;\n let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n+let ReactFeatureFlags;\n let ReactTestUtils;\n \n function initModules() {\n jest.re... | 2024-02-01T23:32:18 |
nodejs/node | 2b068ffc4a8bc4b2ef0fd46124d48e55af1231b8 | 66a635cece74eda6772b062ed4df9f683e66accd | build: fix build warning of c-ares under GN build
PR-URL: https://github.com/nodejs/node/pull/53750
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "deps/cares/unofficial.gni",
"patch": "@@ -65,11 +65,17 @@ template(\"cares_gn_build\") {\n sources += gypi_values.cares_sources_mac\n }\n \n- if (is_clang || !is_win) {\n- cflags_c = [\n- \"-Wno-implicit-fallthrough\",\n- \"-Wno-unreachable-code\",\n- ]\n+ ... | 2024-07-09T08:42:40 |
electron/electron | bb490161fbde204c387d7f15ed1f0048925155c8 | bc957e394594642c0f49b5e9ef5841622c2f50d7 | fix: printing crash when settings invalid (#38165) | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -617,7 +617,7 @@ index 82f44b6c90f292772b56253a99578394b5cc2881..91ee0c3d66c33adee346060a0ecd931d\n // Tells the browser printing failed.\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n diff --git a/components/printing/renderer/pri... | 2023-05-04T13:10:54 |
vercel/next.js | 45a5405de21fe158e93aec6441e3ed70399323dd | c450cd83d1ad34e7906582573584956f401feb2a | bugfix: propagate staleTime to seeded prefetch entry (#81263)
In #71280, we hooked up the server-side `staleTime` header to the
client-side prefetch cache. This means that if the server responds with
a staleTime value, the client router will use that rather than the
previous heuristic when determining if a prefetch en... | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.ts",
"patch": "@@ -4,7 +4,10 @@ import type { FlightDataPath } from '../../../server/app-render/types'\n import { createHrefFromUrl } from './create-href-from-url'\n import { fillLazyItemsTillLeafWithHead } from './fil... | 2025-07-03T21:58:27 |
golang/go | ecc06f0db79193a4fe16138148c7eb26d9af96f1 | 0909bcd9e4acb01089d588d608d669d69710e50a | cmd/compile: fix the test for ABI specification so it works right w/ generics
Change-Id: I09ef615bfe69a30fa8f7eef5f0a8ff94a244c920
Reviewed-on: https://go-review.googlesource.com/c/go/+/663776
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -317,7 +317,7 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \t// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. \"(*Reader).Reset<0>\" etc\n \tif strings.Contains(ssaDump, name) { // in all the ca... | 2025-04-08T01:38:01 |
facebook/react | 278199b3deeee73f969a242c777c2d38406f8bfe | c42e7c7adc3a036c0c176d5b3dd7cf9215862815 | Add ReactDOMClient to ServerIntegrationBasic (#28133)
## Overview
Branched off https://github.com/facebook/react/pull/28130
In `hydrateRoot`, we now error if you pass `undefined`:
```
Warning: Must provide initial children as second argument to hydrateRoot.
```
So we expect 1 error for this now. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationBasic-test.js",
"patch": "@@ -15,21 +15,21 @@ const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegratio\n const TEXT_NODE_TYPE = 3;\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let Re... | 2024-02-01T23:32:04 |
nodejs/node | b9289a6e29e54beeaa3f781bde1195e48df0da75 | 39f207023a0f3d4cf3d54f2983da5f775d22e8ca | lib,permission: support fs.lstat
PR-URL: https://github.com/nodejs-private/node-private/pull/486/
Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2145862
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
CVE-ID: CVE-2024-22018 | [
{
"path": "lib/fs.js",
"patch": "@@ -1550,6 +1550,10 @@ function lstat(path, options = { bigint: false }, callback) {\n }\n callback = makeStatsCallback(callback);\n path = getValidatedPath(path);\n+ if (permission.isEnabled() && !permission.has('fs.read', path)) {\n+ callback(new ERR_ACCESS_DENIE... | 2024-06-17T18:17:42 |
electron/electron | bc957e394594642c0f49b5e9ef5841622c2f50d7 | ee1e6aab3ef6755b4e3f13edc64ca6df6e629553 | test: use `await` to call "closeWindow" (#38166)
* test: wait for an async "closeWindow" call
* fixup! test: wait for an async "closeWindow" call | [
{
"path": "spec/api-web-contents-view-spec.ts",
"patch": "@@ -4,7 +4,11 @@ import { BaseWindow, WebContentsView } from 'electron/main';\n \n describe('WebContentsView', () => {\n let w: BaseWindow;\n- afterEach(() => closeWindow(w as any).then(() => { w = null as unknown as BaseWindow; }));\n+\n+ afterE... | 2023-05-03T22:14:46 |
rust-lang/rust | 5265ee063791eda960bcb3924f85a18184e2688b | 0bf2d005fdf653d61c8bb0a447679afa494e3972 | fix: refactored to use directives instead of `CHECK-DAG` | [
{
"path": "src/tools/compiletest/src/directives/directive_names.rs",
"patch": "@@ -218,6 +218,7 @@ pub(crate) const KNOWN_DIRECTIVE_NAMES: &[&str] = &[\n \"only-eabihf\",\n \"only-elf\",\n \"only-emscripten\",\n+ \"only-endian-big\",\n \"only-gnu\",\n \"only-i686-pc-windows-gnu\",\n ... | 2026-02-08T04:53:25 |
vercel/next.js | b8d5f262429f6543e975fd11255297883dace1d6 | 7c048e337883c172b7a5ff8685426c7d838da6d7 | Turbopack: move write_version feature to env var (#81250)
This is useful for debugging infinite file write loop situations. Put it behind the env var `TURBO_ENGINE_WRITE_VERSION=1` to be able to debug this if other people want to debug this without recompiling Next.js | [
{
"path": "turbopack/crates/turbo-tasks-fs/Cargo.toml",
"patch": "@@ -18,8 +18,6 @@ default = []\n # A binary built with this option **is not portable**, the directory\n # path will be embedded into the binary.\n dynamic_embed_contents = []\n-# Write a hashed version of each file to allow to debug conflicti... | 2025-07-03T17:12:11 |
golang/go | 0909bcd9e4acb01089d588d608d669d69710e50a | 53badd4836f88c45e686c60712ac3c9d6364e505 | syscall: remove unused windows function
It's causing the dependency test to fail.
Fixes #73274
Change-Id: I7d80ea4872e360c16ac3b77acf15fa2660d117b3
Reviewed-on: https://go-review.googlesource.com/c/go/+/663975
Auto-Submit: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/syscall/zsyscall_windows.go",
"patch": "@@ -948,15 +948,6 @@ func LocalFree(hmem Handle) (handle Handle, err error) {\n \treturn\n }\n \n-func localFree(hmem Handle) (handle Handle, err error) {\n-\tr0, _, e1 := Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)\n-\thandle = Handle(r0)\n-\... | 2025-04-08T22:16:50 |
nodejs/node | d39e993903e27bb5761dd98b0a93964dcaabac65 | 4fe0f826a80365ce2512b8193ceaa9466c288aa5 | src,permission: fix UNC path resolution
PR-URL: https://github.com/nodejs-private/node-private/pull/581
Fixes: https://hackerone.com/bugs?subject=nodejs&report_id=2079103
CVE-ID: CVE-2024-37372 | [
{
"path": "src/permission/fs_permission.cc",
"patch": "@@ -49,15 +49,18 @@ bool is_tree_granted(\n const std::string_view& param) {\n std::string resolved_param = node::PathResolve(env, {param});\n #ifdef _WIN32\n- // is UNC file path\n- if (resolved_param.rfind(\"\\\\\\\\\", 0) == 0) {\n- // ret... | 2024-04-22T21:45:13 |
facebook/react | c42e7c7adc3a036c0c176d5b3dd7cf9215862815 | 6054be9c86f2e01e5e24c1fe2182479fec8667e4 | Add ReactDOMClient to ServerIntegrationSelect (#28132)
## Overview
Branched off https://github.com/facebook/react/pull/28130
## React for count changing
### Before
These tests are weird because on main they pass, but log to the console:
```
We expected 2 warning(s), but saw 1 warning(s).
We saw these warn... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationSelect-test.js",
"patch": "@@ -13,21 +13,21 @@\n const ReactDOMServerIntegrationUtils = require('./utils/ReactDOMServerIntegrationTestUtils');\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n let ReactDOMServer;\n let ReactTestUtils... | 2024-02-01T23:31:52 |
electron/electron | a26343f3e084028b920a7ea44e6b221350e3546c | d95f9d2c636775946717a95fefee1ada51524a79 | fix: falsy transparent shouldn't affect webContents background (#36914) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -519,17 +519,10 @@ WebContents.prototype._callWindowOpenHandler = function (event: Electron.Event,\n event.preventDefault();\n return defaultResponse;\n } else if (response.action === 'allow') {\n- if (typeof response.overrideBrowserWind... | 2023-05-02T21:44:34 |
rust-lang/rust | 0bf2d005fdf653d61c8bb0a447679afa494e3972 | 08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6 | fix: updated slice tests to pass for big endian hosts | [
{
"path": "tests/codegen-llvm/issues/multiple-option-or-permutations.rs",
"patch": "@@ -70,9 +70,9 @@ pub fn if_some_u8(opta: Option<u8>, optb: Option<u8>) -> Option<u8> {\n #[no_mangle]\n pub fn or_match_slice_u8(opta: Option<[u8; 1]>, optb: Option<[u8; 1]>) -> Option<[u8; 1]> {\n // CHECK: start:\n- ... | 2026-01-28T12:12:00 |
vercel/next.js | f5f559220a09880ed8d8d55e73c4bd65dcc89af1 | e2422f4c94685e040d868033a6d666ccc183d6fd | Fix NEXT_CPU_PROF during development (#81248)
## What?
`next dev` spawns a forked process that wouldn't be instrumented because
`cpu-profile.ts` only runs in `cli/next-dev.ts` which is the process
that boots the forked process. This adds the initialization to the
forked process too. | [
{
"path": "packages/next/src/server/lib/start-server.ts",
"patch": "@@ -1,3 +1,5 @@\n+// Start CPU profile if it wasn't already started.\n+import './cpu-profile'\n import { getNetworkHost } from '../../lib/get-network-host'\n \n if (performance.getEntriesByName('next-start').length === 0) {",
"additions... | 2025-07-03T17:02:13 |
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.