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
facebook/react
404ed926588ec1cb7e9524d4dbb75b7297130adc
81d2a51a97ca8ea7cfbce885ecab070a668732ab
chore[devtools]: use react-window from npm and bump react-virtualized-auto-sizer to ^1.0.23 (#28408) 1. Bumps `react-virtualized-auto-sizer` to 1.0.23, which has a fix for cases with multiple realms - https://github.com/bvaughn/react-virtualized-auto-sizer/pull/82 2. Removes `react-window` from react-devtools-share...
[ { "path": "packages/react-devtools-shared/package.json", "patch": "@@ -23,6 +23,7 @@\n \"local-storage-fallback\": \"^4.1.1\",\n \"lodash.throttle\": \"^4.1.1\",\n \"memoize-one\": \"^3.1.1\",\n- \"react-virtualized-auto-sizer\": \"^1.0.6\"\n+ \"react-virtualized-auto-sizer\": \"^1.0.23\",...
2024-02-22T11:31:10
electron/electron
dc2e822dc7cd4554ba08bbb67e68e377ac936251
46458ab517aebe8fe9573250c62ee814bf2f67ff
fix: asar integration for require('node:child_process') (#38742)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -838,7 +838,7 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n const originalModuleLoad = Module._load;\n Module._load = (request: string, ...args: any[]) => {\n const loadResult = originalModuleLoad(request, ...args);\n- i...
2023-06-14T09:03:53
vercel/next.js
d0ea7129747a045450c646cc0e4ea4f84348bd32
e210360bb9d66870f69d35512a3d317cb68147ec
fix patch-next by adding missing script (#81430) The `patch-next.cjs` script is failing because two of its dependencies, `pack-util` and `build-native`, are missing their CommonJS versions, which are required for compatibility with the current Node.js environment. To fix this, i added the transpiled `pack-util.js` and...
[ { "path": "package.json", "patch": "@@ -70,7 +70,7 @@\n \"prepare\": \"husky\",\n \"sync-react\": \"node ./scripts/sync-react.js\",\n \"update-google-fonts\": \"node ./scripts/update-google-fonts.js\",\n- \"patch-next\": \"node scripts/patch-next.cjs\",\n+ \"patch-next\": \"tsx scripts/pat...
2025-07-15T22:15:05
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
rust-lang/rust
337abba988bda85e1340d892e3c6a0c128ca9675
39a532445aeea34ad5ebcb4ec9512563be1a44c9
fix rustdoc test
[ { "path": "tests/rustdoc-html/type-layout.rs", "patch": "@@ -64,6 +64,12 @@ pub type GenericTypeAlias = (Generic<(u32, ())>, Generic<u32>);\n //@ hasraw type_layout/type.Edges.html 'Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, ...
2026-02-10T18:00:54
nodejs/node
be7a0c578026dda29a1c9e76d5a0e04b71f25601
269175b2b45dc16dd515509c6d8638de4ce044c5
module: do not warn for typeless package.json when there isn't one It was intended that warnings should only be emitted for an existing package.json without a type. This fixes a confusing warning telling users to update /package.json when there are no package.json on the lookup path at all, like this: [MODULE_TYPELES...
[ { "path": "lib/internal/modules/esm/get_format.js", "patch": "@@ -92,8 +92,9 @@ let typelessPackageJsonFilesWarnedAbout;\n function warnTypelessPackageJsonFile(pjsonPath, url) {\n typelessPackageJsonFilesWarnedAbout ??= new SafeSet();\n if (!typelessPackageJsonFilesWarnedAbout.has(pjsonPath)) {\n- co...
2024-07-29T17:46:41
facebook/react
81d2a51a97ca8ea7cfbce885ecab070a668732ab
59fe6c3ac1d52e4e568be52b908905b8898a4777
Add smoke test for flight fixture (#28350)
[ { "path": ".circleci/config.yml", "patch": "@@ -236,6 +236,53 @@ jobs:\n RELEASE_CHANNEL: experimental\n command: ./scripts/circleci/run_devtools_e2e_tests.js\n \n+ run_fixtures_flight_tests:\n+ docker:\n+ - image: cimg/openjdk:20.0-node\n+ environment: *environment\n+ s...
2024-02-21T22:47:36
electron/electron
ab49e9840184d7efd82d9c5eecf0f4158def51b3
fa6d14c22d6a028b5f1134b7eba3b642b3d54b43
perf: prefer base::StringPiece over std::string for build-time strings (#38717) * perf: use base::StringPiece in InclusionStatusToString() The strings are all build-time constants and this is a private function * perf: use base::StringPiece in ErrorCodeToString() The strings are all build-time constants and t...
[ { "path": "shell/browser/api/electron_api_cookies.cc", "patch": "@@ -169,7 +169,7 @@ base::Time ParseTimeProperty(const absl::optional<double>& value) {\n return base::Time::FromDoubleT(*value);\n }\n \n-std::string InclusionStatusToString(net::CookieInclusionStatus status) {\n+base::StringPiece Inclusion...
2023-06-12T07:55:22
rust-lang/rust
39a532445aeea34ad5ebcb4ec9512563be1a44c9
d4454e59d3021557aead4591dea0390bf9d8e68b
prevent incorrect layout error aliases may be rigid even if they don't reference params. If the alias isn't well-formed, trying to normalize it as part of the input should have already failed
[ { "path": "compiler/rustc_ty_utils/src/layout.rs", "patch": "@@ -764,14 +764,20 @@ fn layout_of_uncached<'tcx>(\n }\n \n ty::Alias(..) => {\n- // NOTE(eddyb) `layout_of` query should've normalized these away,\n- // if that was possible, so there's no reason to try again...
2026-02-10T18:00:42
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
vercel/next.js
3c2a1959047f668dfffcd6344aeaa4acb531eccf
1a0c4d089739800c34f825c85d27bf79741f7c0b
Also enforce experimental features when there's no next config file (#81679) When running `next build --debug-prerender`, we also want to set the experimental features even if there is no next.config.js file present. This PR also fixes the `cloneObject` function to better handle nested optional object properties, a...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -1283,7 +1283,7 @@ export interface NextConfig extends Record<string, any> {\n htmlLimitedBots?: RegExp\n }\n \n-export const defaultConfig = {\n+export const defaultConfig = Object.freeze({\n env: {},\n webpack: null,\n eslint: {\n...
2025-07-15T20:25:32
facebook/react
c0274063f0d625d6e17e82f3436f4a0b78b7e58f
9a5b6bd84ffa69bfd8b2859ce23e56d17daa8c40
[Flight] Prefix Replayed Console Logs with a Badge (#28403) Builds on top of #28384. This prefixes each log with a badge similar to how we badge built-ins like "ForwardRef" and "Memo" in the React DevTools. The idea is that we can add such badges in DevTools for Server Components too to carry on the consistency....
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -50,6 +50,7 @@ import {\n readFinalStringChunk,\n createStringDecoder,\n prepareDestinationForModule,\n+ printToConsole,\n } from './ReactFlightClientConfig';\n \n import {registerServerReference} from './ReactFlightReplyClient'...
2024-02-21T19:59:08
nodejs/node
7480a903f4255dce3606d3d2bea10b4f0475de9b
6ad25e37b570124d82e6cb25e237592c9b927ec4
doc: fix typo in technical-priorities.md added a space between the two words. PR-URL: https://github.com/nodejs/node/pull/54094 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/contributing/technical-priorities.md", "patch": "@@ -130,7 +130,7 @@ the expansion of where/when Node.js is used in building solutions.\n ## Serverless\n \n Serverless is a cloud computing model where the cloud provider manages the\n-underlyinginfrastructure and automatically allocates resour...
2024-07-29T10:42:33
electron/electron
fa6d14c22d6a028b5f1134b7eba3b642b3d54b43
5d123765d9fc44849de8c6cbdeaa788610dcd9e7
fix: `webContents.print()` cancellation callback (#38709) fix: webContents.print() cancellation callback
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-06-12T07:42:18
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
vercel/next.js
c432d07a595b5edbd6d2ce6c50a065e7115e1622
a0d15704e1c7f5571c1435bf9536592b33690cbd
Fix before interactive incorrectly render css (#81146) Fixing a bug - Related issues linked using fixes #81130 - Tests added. See: https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs - Errors have a helpful link attached, see https://github.com/vercel/next.js/blob/can...
[ { "path": "packages/next/src/client/app-bootstrap.ts", "patch": "@@ -5,6 +5,8 @@\n * - next/script with `beforeInteractive` strategy\n */\n \n+import { setAttributesFromProps } from './set-attributes-from-props'\n+\n const version = process.env.__NEXT_VERSION\n \n window.next = {\n@@ -27,11 +29,7 @@ funct...
2025-07-15T19:29:26
electron/electron
5d123765d9fc44849de8c6cbdeaa788610dcd9e7
fd5e6fbc140975218d990e14afef2dba85a3558d
feat: support `node:` prefixed requires in sandboxed renderer preloads (#38567) feat: support node: prefixed requires in sandboxed renderer preloads
[ { "path": "docs/tutorial/sandbox.md", "patch": "@@ -51,6 +51,12 @@ but can only import a subset of Electron and Node's built-in modules:\n * [`timers`](https://nodejs.org/api/timers.html)\n * [`url`](https://nodejs.org/api/url.html)\n \n+[node: imports](https://nodejs.org/api/esm.html#node-imports) are supp...
2023-06-10T18:36:16
nodejs/node
6ad25e37b570124d82e6cb25e237592c9b927ec4
5210cd860ac0d4497c823815c01ff49215062fd8
doc: fix typo in diagnostic tooling support tiers document PR-URL: https://github.com/nodejs/node/pull/54058 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By:...
[ { "path": "doc/contributing/diagnostic-tooling-support-tiers.md", "patch": "@@ -26,7 +26,7 @@ the following tiers.\n organization or website;\n * The tool must be working on all supported platforms;\n * The tool must only be using APIs exposed by Node.js as opposed to\n- its dependencies; and\n+ ...
2024-07-29T06:36:41
facebook/react
9a5b6bd84ffa69bfd8b2859ce23e56d17daa8c40
41b3c31bcbe9f238697b4c79b39017916e0f131c
[Flight] Instrument the Console in the RSC Environment and Replay Logs on the Client (#28384) When developing in an RSC environment, you should be able to work in a single environment as if it was a unified environment. With thrown errors we already serialize them and then rethrow them on the client. Since by def...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -670,6 +670,10 @@ function parseModelString(\n }\n case '@': {\n // Promise\n+ if (value.length === 2) {\n+ // Infinite promise that never resolves.\n+ return new Promise(() => {});\n+ ...
2024-02-21T19:47:55
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
vercel/next.js
5a7cec1e570d73699a7e6c31790b46eb5c1706d6
16011fe88a09eff4914682a9d535bc50e2b692da
fix(router): Prevent redirect loop on root data requests with basePath (#81096) Fixes #64910 This PR resolves an issue where a client-side navigation to the root page fails when both `basePath` and `middleware` are active. This is caused by an incorrect redirect loop on the `/_next/data` request. The sequence of eve...
[ { "path": "packages/next/src/server/lib/router-utils/resolve-routes.ts", "patch": "@@ -423,7 +423,10 @@ export function getResolveRoutes(\n // base path.\n if (updated) {\n if (hadBasePath) {\n- normalized = path.posix.join(config.basePath, normalized)\n+...
2025-07-15T17:36:54
nodejs/node
5210cd860ac0d4497c823815c01ff49215062fd8
01cf9bccdfa7fb31a8a1d91ae45e594a730e0427
typings: fix typo on quic onSessionDatagram PR-URL: https://github.com/nodejs/node/pull/54064 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> R...
[ { "path": "typings/internalBinding/quic.d.ts", "patch": "@@ -2,7 +2,7 @@ interface QuicCallbacks {\n onEndpointClose: (context: number, status: number) => void;\n onSessionNew: (session: Session) => void;\n onSessionClose: (type: number, code: bigint, reason?: string) => void;\n- onSessionDatagram: (...
2024-07-29T04:52:07
rust-lang/rust
e20a44db783650a5d0d43a430810f9d12c2c890e
4c9bb23107dfd035bff8a68f3eff0653670f2efb
Fix typos and capitalization across documentation - Fix "Github" → "GitHub" capitalization throughout (about.md, git.md, about-this-guide.md, debugging-support-in-rustc.md, and all notification-groups files) - Fix "its self" → "itself" (macro-expansion.md, what-bootstrapping-does.md) - Fix "MIRI" → "Miri" (overvie...
[ { "path": "src/doc/rustc-dev-guide/src/about-this-guide.md", "patch": "@@ -10,7 +10,7 @@ There are several parts to this guide:\n about building, debugging, profiling, etc.\n 1. [Contributing to Rust][p2]:\n Contains information that should be useful no matter how you are contributing,\n- about proc...
2026-02-10T16:35:43
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
facebook/react
5fb2c93f3924ba980444da5698f60651b5ef0689
ec160f32c28ccab798c73ecccbb36ce121e1640e
Combine createElement and JSX modules (#28320) Depends on: - #28317 --- There's a ton of overlap between the createElement implementation and the JSX implementation, so I combined them into a single module. In the actual build output, the shared code between JSX and createElement will get duplicated any...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -23,7 +23,7 @@ import {\n REACT_SUSPENSE_LIST_TYPE as SuspenseList,\n REACT_STRICT_MODE_TYPE as StrictMode,\n } from 'shared/ReactSymbols';\n-import {createElement} from 'react/src/ReactElement';\n+import {createElement...
2024-02-20T03:45:18
vercel/next.js
16011fe88a09eff4914682a9d535bc50e2b692da
465c2218356371ef217ae3fa82f663efef4a3253
Fix build-native.ts on Windows (#81673)
[ { "path": "scripts/build-native.ts", "patch": "@@ -2,6 +2,7 @@\n \n import { promises as fs } from 'node:fs'\n import path from 'node:path'\n+import url from 'node:url'\n import execa from 'execa'\n import { NEXT_DIR, logCommand, execFn } from './pack-util'\n \n@@ -31,7 +32,7 @@ export default async functio...
2025-07-15T16:33:10
nodejs/node
01cf9bccdfa7fb31a8a1d91ae45e594a730e0427
5ac969fdcaaf4fa232a1ac6ff976b4ff5cdae0d8
lib: support dynamic trace events on debugWithTimer PR-URL: https://github.com/nodejs/node/pull/53913 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -20,7 +20,7 @@ const {\n CHAR_LOWERCASE_N: kTraceInstant,\n } = require('internal/constants');\n const { inspect, format, formatWithOptions } = require('internal/util/inspect');\n-const { isTraceCategoryEnabled, trace } = internalBinding('trace_event...
2024-07-28T17:20:38
electron/electron
fd5e6fbc140975218d990e14afef2dba85a3558d
a3448376a1f9d3a381e03277fddf6c46b76c9104
chore: bump chromium to 116.0.5817.0 (main) (#38465) * chore: bump chromium in DEPS to 116.0.5793.3 * chore: update patches * chore: bump chromium in DEPS to 116.0.5795.0 * chore: update patches * chore: bump chromium in DEPS to 116.0.5797.0 * chore: update patches * chore: bump chromium in DEPS to 1...
[ { "path": "BUILD.gn", "patch": "@@ -540,6 +540,7 @@ source_set(\"electron_lib\") {\n \n if (is_mac) {\n deps += [\n+ \":chrome_lib_arc\",\n \":electron_lib_arc\",\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n@@ -769,6 +770,32 @@ source_set(...
2023-06-09T23:08:36
facebook/react
2e84e1629924e6cb278638305fa92040f6ef6eb5
65a0e2b25ec4642f83c32d7599b5252c3955a60b
[Flight] Better error message if you pass a function as a child to a client component (#28367) Similar to #28362 but if you pass it to a client component.
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -689,7 +689,7 @@ describe('ReactFlight', () => {\n );\n }\n function FunctionProp() {\n- return <div>{() => {}}</div>;\n+ return <div>{function fn() {}}</div>;\n }\n function SymbolProp() {\n ...
2024-02-19T17:36:16
vercel/next.js
465c2218356371ef217ae3fa82f663efef4a3253
92a9d2840db6521190f28755c3905c3000caeb4b
Improve reliability of owner stacks for async I/O errors (#81501) When running the following test isolated, and not as part of the full test suite, the owner stacks for async I/O errors were missing the top-most stack frame that's pointing at the `fetch` call. ``` pnpm test-dev test/e2e/app-dir/dynamic-io-errors/dyna...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -559,7 +559,7 @@ export function createPatchedFetcher(\n cacheSignal = null\n }\n \n- return makeHangingPromise<Response>(\n+ return await makeHangingPromise<Response>(\n ...
2025-07-15T16:14:42
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
nodejs/node
e4263dad968b949b41922dbc371344d784a5b8a0
69a69f6ca39e8fe3ad831605a609cd95a40af621
assert: use isError instead of instanceof in innerOk Co-Authored-By: Ruben Bridgewater <ruben@bridgewater.de> Co-Authored-By: Nihar Phansalkar <phansalkarnihar@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53980 Fixes: https://github.com/nodejs/node/issues/50780 Reviewed-By: James M Snell <jasnell@gmail.com> ...
[ { "path": "lib/assert.js", "patch": "@@ -393,7 +393,7 @@ function innerOk(fn, argLen, value, message) {\n } else if (message == null) {\n generatedMessage = true;\n message = getErrMessage(message, fn);\n- } else if (message instanceof Error) {\n+ } else if (isError(message)) {\n ...
2024-07-28T13:13:59
electron/electron
c0d9764de9d00968a8c9d5ab74ef3b9840aebc09
e8fd5fd3a8250d44a0665ca18da34cb09ea30677
fix: `webContents.print` parameter validation error (#38614)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -337,10 +337,9 @@ WebContents.prototype.printToPDF = async function (options) {\n \n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n-WebContents.proto...
2023-06-09T19:41:01
rust-lang/rust
da80677d6a84c1a3ea3e22785392c91ccae6a69b
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in top-level and src/doc documentation - CONTRIBUTING.md: add missing verb "is" - INSTALL.md: fix subject-verb agreement ("requires" → "require") - RELEASES.md: fix 4 issues (previous → previously, remove extra "is", add hyphen in Rust-for-Linux, results → result) - src/doc/not_found.md: fix mi...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -10,7 +10,7 @@ the Zulip stream is the best place to *ask* for help.\n \n Documentation for contributing to the compiler or tooling is located in the [Guide to Rustc\n Development][rustc-dev-guide], commonly known as the [rustc-dev-guide]. Documentation for the\n-st...
2026-02-10T15:22:19
facebook/react
017397d7d33f151f2c2a9936c4b130fded68d08b
9444c51c7e44936c24e1f44db905cfd45c51cff3
Recover from SSR error in Flight fixture (#28368) If an error happens before the shell, we need to handle it. In this case we choose the strategy of rendering a blank document and client rendering the app. Which will intentionally have a hydration mismatch.
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -174,8 +174,19 @@ app.all('/', async function (req, res, next) {\n const {pipe} = renderToPipeableStream(React.createElement(Root), {\n bootstrapScripts: mainJSChunks,\n formState: formState,\n+ onShellReady() {\n+ ...
2024-02-19T16:50:04
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
vercel/next.js
5c090e81a97d9af54e8ec95b21d5c8d06787462b
f1b88b4cfa63a6560a04baa209c09065c419969c
[segment explorer] fix content overflow styling (#81649) * The bottom reset button should cover the content * No need for transparent button background | After | Before | |:--|:--| | <video src="https://github.com/user-attachments/assets/598a6474-315a-4ed5-819b-dd49306125ef"> | <video src="https://github.com/use...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.css", "patch": "@@ -3,7 +3,7 @@\n padding: 0 8px;\n width: 100%;\n height: 100%;\n- overflow: auto;\n+ overflow-y: hidden;\n }\n \n .segment-explorer-page-route-bar {\n@@ -156,7 +156,6 @@\n }\n \n .segment-ex...
2025-07-15T08:58:08
nodejs/node
69a69f6ca39e8fe3ad831605a609cd95a40af621
2b5856e466fa81a8f196fd0bb7849418f69ea20c
http: add diagnostics channel `http.client.request.error` PR-URL: https://github.com/nodejs/node/pull/54054 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/diagnostics_channel.md", "patch": "@@ -1129,6 +1129,13 @@ independently.\n \n Emitted when client starts a request.\n \n+`http.client.request.error`\n+\n+* `request` {http.ClientRequest}\n+* `error` {Error}\n+\n+Emitted when an error occurs during a client request.\n+\n `http.client.respo...
2024-07-28T09:57:38
rust-lang/rust
11e4873b96961d14202a8c63d83a21be5b7f7b82
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in compiler and build documentation - compiler/rustc_codegen_llvm/src/debuginfo/doc.md: fix 5 issues (adaption → adaptation, "allow to" → "allow V-ing" x3, later → latter + plural) - compiler/rustc_thread_pool/src/sleep/README.md: fix 2 issues (idle → active per context, then → than) - src/bo...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/doc.md", "patch": "@@ -16,7 +16,7 @@ module to generate correct metadata and insert it into the LLVM IR.\n As the exact format of metadata trees may change between different LLVM\n versions, we now use LLVM\n [DIBuilder](https://llvm.org/docs/doxygen/html...
2026-02-10T15:22:05
electron/electron
e8fd5fd3a8250d44a0665ca18da34cb09ea30677
d95ae19edf08f8df15357925abf4b7c0c6769c88
fix: WCO transparent background (#38693) * fix: WCO transparency * doc: wco color transparency * fix: transparent buttons when calling setTitleBarOverlay
[ { "path": "docs/tutorial/window-customization.md", "patch": "@@ -115,7 +115,7 @@ const win = new BrowserWindow({\n })\n ```\n \n-On either platform `titleBarOverlay` can also be an object. On both macOS and Windows, the height of the overlay can be specified with the `height` property. On Windows, the color...
2023-06-09T16:57:57
facebook/react
9444c51c7e44936c24e1f44db905cfd45c51cff3
c323f8290c2336713b62c69322bb30ed63234c24
[Flight] Allow a Server Reference to be registered twice (#28343) It's possible for the same function instance to appear more than once in the same graph or even the same file. Currently this errors on trying to reconfigure the property but it really doesn't matter which one wins. First or last. Regardless the...
[ { "path": "packages/react-server-dom-esm/src/ReactFlightESMReferences.js", "patch": "@@ -70,8 +70,8 @@ export function registerServerReference<T: Function>(\n ): ServerReference<T> {\n return Object.defineProperties((reference: any), {\n $$typeof: {value: SERVER_REFERENCE_TAG},\n- $$id: {value: id ...
2024-02-19T16:49:38
nodejs/node
dcccf9ab9b5086dab25c773f5159e5301f3f0a7e
3779c2ccd26eec4ded52c1e3b2ea09fc18af5109
test: move shared module to `test/common` `test/fixtures/process-exit-code-cases.js` is a shared module and should be in `test/common` (so it gets linted, etc.) and documented in `test/common/README.md`. PR-URL: https://github.com/nodejs/node/pull/54042 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobi...
[ { "path": "test/common/README.md", "patch": "@@ -2,7 +2,7 @@\n \n This directory contains modules used to test the Node.js implementation.\n \n-## Table of Contents\n+## Table of contents\n \n * [ArrayStream module](#arraystream-module)\n * [Benchmark module](#benchmark-module)\n@@ -19,13 +19,14 @@ This dir...
2024-07-25T11:26:27
rust-lang/rust
78dc744e93028188c66d92dc2064b2107dd9992c
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
unwind/wasm: fix compile error by wrapping wasm_throw in unsafe block
[ { "path": "library/unwind/src/wasm.rs", "patch": "@@ -73,7 +73,7 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi\n // corresponds with llvm::WebAssembly::Tag::CPP_EXCEPTION\n // in llvm-project/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h\n ...
2026-02-10T13:20:02
electron/electron
9d8da7839efd9ac298158458d7347921fa457198
95d6a932cae62be3cdf72613ad68f52ac9b04b4d
fix: dangling pointer warning when updating menus (#38643)
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -706,15 +706,15 @@ void BaseWindow::SetMenu(v8::Isolate* isolate, v8::Local<v8::Value> value) {\n v8::Local<v8::Object> object;\n if (value->IsObject() && value->ToObject(context).ToLocal(&object) &&\n gin::ConvertFromV8(isola...
2023-06-08T14:29:32
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
vercel/next.js
e54a837ebaad5c8f08291dc5f202e74e2886a57d
0a220665f5ddd4104e42ccb5db3e1166f1970c1b
feat: new detachable panel UI (#81483) This PR updates the devtool overlay to use a new detachable panel based system for rendering content. Each panel can be configured to: - drag - resize - close on click outside - have min/max sizes if resizable, size if fixed https://github.com/user-attachments/assets/982ecee3-5...
[ { "path": "packages/next/.storybook/main.ts", "patch": "@@ -9,6 +9,8 @@ import { fileURLToPath } from 'url'\n function getAbsolutePath(value: string): any {\n return dirname(require.resolve(join(value, 'package.json')))\n }\n+import { createRequire } from 'module'\n+const require = createRequire(import.me...
2025-07-15T04:47:40
facebook/react
c323f8290c2336713b62c69322bb30ed63234c24
59831c98cffe0edf706238b067928e7cf54d1065
Encode better error messages when part of the context is a client reference (#28355) Alternative to #28354. If a client reference is one of the props being describes as part of another error, we call toString on it, which errors. We should error explicitly when a Symbol prop is extracted. However, pragmatica...
[ { "path": "packages/react-server-dom-turbopack/src/ReactFlightTurbopackReferences.js", "patch": "@@ -92,7 +92,11 @@ export function registerServerReference<T: Function>(\n const PROMISE_PROTOTYPE = Promise.prototype;\n \n const deepProxyHandlers = {\n- get: function (target: Function, name: string, receive...
2024-02-19T16:49:25
nodejs/node
2cd968717d5a4b5aba9c60f0f9a4e654c27ff599
a851d0cce2ab986251e145e70f0570509bbce20c
doc: correct typescript stdin support PR-URL: https://github.com/nodejs/node/pull/54036 Fixes: https://github.com/nodejs/node/issues/54035 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "doc/api/typescript.md", "patch": "@@ -123,10 +123,10 @@ import { fn, FnParams } from './fn.ts';\n \n ### Non-file forms of input\n \n-Type stripping can be enabled for `--eval` and STDIN input. The module system\n+Type stripping can be enabled for `--eval`. The module system\n will be determined ...
2024-07-25T12:58:08
electron/electron
c8bdd014c87b5c33b77c845f853b7e52bb31de8f
5ee890fb6f7c6acbcfd8e6e765334e6f9aa61850
fix: menu bar visibility when exiting full screen (#38599)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -731,10 +731,14 @@ void NativeWindowViews::SetFullScreen(bool fullscreen) {\n gfx::Rect());\n \n // Auto-hide menubar when in fullscreen.\n- if (fullscreen)\n+ if (fullscreen) {\n+ menu_bar_visi...
2023-06-08T10:19:34
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
0a220665f5ddd4104e42ccb5db3e1166f1970c1b
af42dadd69070c6d34d0f711697fd0fc76775325
[dynamicIO] Do not use `React.unstable_postpone()` (#81652) dynamicIO does not rely on Postponing for any prerender reason. This is an experimental only API with no clear path to stailization. To make dynamicIO supportable with stable React we should eliminate use of this API. This change replaces the postpone value ...
[ { "path": "packages/next/errors.json", "patch": "@@ -718,5 +718,6 @@\n \"717\": \"Unsupported environment condition \\\"%s\\\" and react condition \\\"%s\\\". This is a bug in Next.js.\",\n \"718\": \"Invariant: projectDir is required for node runtime\",\n \"719\": \"Failed to get source map for '%s'....
2025-07-15T03:28:25
facebook/react
c1fd2a91b1042c137d750be85e5998f699a54d2a
fef30c2e0403e0c6986904be89fcd01e665866ee
Include the function name for context on invalid function child (#28362) Also warn for symbols. It's weird because for objects we throw a hard error but functions we do a dev only check. Mainly because we have an object branch anyway. In the object branch we have some built-ins that have bad errors like forwar...
[ { "path": "packages/react-dom/src/__tests__/ReactComponent-test.js", "patch": "@@ -635,8 +635,9 @@ describe('ReactComponent', () => {\n });\n }).toErrorDev(\n 'Warning: Functions are not valid as a React child. This may happen if ' +\n- 'you return a Component instead of <Comp...
2024-02-17T21:41:59
nodejs/node
d1c7817da21b5276ef6907258cc438c847074c62
87e18a7b374d6b812fca4d5285fa2c218ad7eebc
test: mark 'test/parallel/test-sqlite.js' as flaky The current test is large and can time out. It should be split into multiple smaller tests as done in #54014. However, that approach appears to change GC behavior such that the database files are not cleaned up quickly enough on Windows. Forcing any unfinalized SQL st...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -19,6 +19,9 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n # https://github.com/nodejs/node/issues/52630\n test-error-serdes: PASS, FLAKY\n \n+# https://github.com/nodejs/node/issues/54006\n+test-sqlite: PASS, FLAKY\n+\n [$system==win32]\n \n #...
2024-07-25T12:12:41
electron/electron
5ee890fb6f7c6acbcfd8e6e765334e6f9aa61850
9a9d8ae5ea61e17fd01e8975e81ed2a137a5fef6
fix: reparenting UAF crash on macOS (#38603)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -157,6 +157,7 @@ class NativeWindowMac : public NativeWindow,\n bool IsActive() const override;\n // Remove the specified child window without closing it.\n void RemoveChildWindow(NativeWindow* child) override;\n+ void RemoveChildFromParentW...
2023-06-08T10:18:37
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
vercel/next.js
d48daff8c6efd73f7e546ae4da584b1cb1dcafc8
de52c00b930f6b791604ff77df959b92aa416d4c
fix(next/image): bump sharp to 0.34.3 (#81556) This fixes a handful of issues including: - https://github.com/lovell/sharp/issues/4393 - https://github.com/lovell/sharp/issues/4382 - https://github.com/lovell/sharp/issues/4398 - https://github.com/lovell/sharp/issues/4374 - https://github.com/lovell/sharp/issues/4417...
[ { "path": "packages/next/package.json", "patch": "@@ -129,7 +129,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.1\"\n+ \"sharp\": \"^0.34.3\"\n },\n \"devDependencies\": {\n \"@ampproject/toolbox-optimizer\": \"2.8.3\",", "additions": 1, "deletions": 1, "...
2025-07-14T19:24:13
facebook/react
fef30c2e0403e0c6986904be89fcd01e665866ee
62a9c7db185b0852fccd0e48797a3de05520f120
Fix crash running `yarn flags --sort flag` (#28344)
[ { "path": "scripts/flags/flags.js", "patch": "@@ -318,11 +318,15 @@ for (const flag of allFlagsUniqueFlags) {\n let sorted = table;\n if (isDiff || argv.sort) {\n const sortChannel = argToHeader(isDiff ? argv.diff[0] : argv.sort);\n- sorted = Object.fromEntries(\n- Object.entries(table).sort(([, rowA]...
2024-02-17T14:28:35
nodejs/node
87e18a7b374d6b812fca4d5285fa2c218ad7eebc
852a1a6742cc7a941276a4def7960b3a9b9b098b
lib: optimize copyError with ObjectAssign in primordials optimized the copyError function by using ObjectAssign from primordials. this change replaces the for-loop with ObjectAssign, which improves memory usage and performance. this change updates the copyError function in internal/assert.js to use ObjectAssign for c...
[ { "path": "lib/internal/assert/assertion_error.js", "patch": "@@ -6,9 +6,9 @@ const {\n Error,\n ErrorCaptureStackTrace,\n MathMax,\n+ ObjectAssign,\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n- ObjectKeys,\n String,\n StringPrototypeEndsWith,\n StringPrototypeRepeat,\n@@ -46,11 +46,7...
2024-07-25T12:12:35
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
vercel/next.js
de52c00b930f6b791604ff77df959b92aa416d4c
b5f2517a155b8f482c06317f0f6fb4b11530dc91
Turbopack: Fix turbopack-swc-ast-explorer with multi-line inputs (#81635) Previously this was only parsing the first line of input ``` cargo run -p swc-ast-explorer <turbopack/crates/turbopack-tests/tests/snapshot/comptime/assignment/input/index.js | less ```
[ { "path": "turbopack/crates/turbopack-swc-ast-explorer/src/main.rs", "patch": "@@ -1,4 +1,7 @@\n-use std::{io::stdin, sync::Arc};\n+use std::{\n+ io::{Read, stdin},\n+ sync::Arc,\n+};\n \n use anyhow::Result;\n use clap::Parser;\n@@ -25,7 +28,7 @@ fn main() -> Result<()> {\n let args = Args::parse...
2025-07-14T19:03:56
electron/electron
bbfba4fc244e5749366c0becad629bb0be5f9775
be45614f6f0928dfac6248efaa042a5e5bf8322d
build: fix semver/none label on appveyor update PR (#38647)
[ { "path": ".github/workflows/update_appveyor_image.yml", "patch": "@@ -68,7 +68,7 @@ jobs:\n delete-branch: true\n reviewers: electron/wg-releases\n title: 'build: update appveyor image to latest version'\n- labels: semver-none,no-backport\n+ labels: semver/none,no-back...
2023-06-08T06:52:05
facebook/react
6a44f352ecdfa93949cade1d2e74755e7d7e9aaa
ef72271c2d1234c9d1e1358f8083021089a50faa
Consume the RSC stream twice in the Flight fixture (#28353) We have an unresolved conflict where the Flight client wants to execute inside Fizz to emit side-effects like preloads (which can be early) into that stream. However, the FormState API requires the state to be passed at the root, so if you're getting that ...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -37,6 +37,7 @@ const React = require('react');\n \n const {renderToPipeableStream} = require('react-dom/server');\n const {createFromNodeStream} = require('react-server-dom-webpack/client');\n+const {PassThrough} = require('stream');\n \n const app ...
2024-02-16T23:25:09
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
nodejs/node
8027a7be93f85b48957df5c4ecd27292596151fc
df478f41b1450d5b5518b9db37ccbc52e74dd422
deps: V8: cherry-pick 35888fee7bba Original commit message: [base] fix builds with GCC 12 on certain Linux distributions With GCC 12 on certain Linux distributions (at least Debian 12, Alpine 3.18, Fedora 37, that ships GCC 12.2), std::is_trivially_copyable is broken and as a result, V8 fails to ...
[ { "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.17',\n+ 'v8_embedder_string': '-node.18',\n \n ##### V8 defaults for Node.js #####\n...
2024-07-25T10:08:09
vercel/next.js
b5f2517a155b8f482c06317f0f6fb4b11530dc91
d04d65b5e69e8b60823de0e80162ff4e93445fe4
[segment explorer] fix boundary trigger state (#81623)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css", "patch": "@@ -47,15 +47,6 @@\n cursor: not-allowed;\n }\n \n-.segment-boundary-trigger--boundary {\n- background: var(--color-background-100);\n- box-shadow: inset 0 0 0 1px var(--color-gray-400);\n...
2025-07-14T18:05:37
electron/electron
1f08e46bcaae7bb9e1b44347f7c84e9e9fb9ea06
714402b08e95f53283ea7220ee2a259ea3932ee7
docs: use local img for contents.adjustSelection api (#38655) * docs: use local img for contents.adjustSelection api * fixup
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1466,11 +1466,11 @@ For a call of `win.webContents.adjustSelection({ start: 1, end: 5 })`\n \n Before:\n \n-<img width=\"487\" alt=\"Image Before Text Selection Adjustment\" src=\"https://user-images.githubusercontent.com/2036040/231761306-cd4e7b15-c2ed-46...
2023-06-08T06:49:19
rust-lang/rust
c9b5c934ca7acc33ff4aebbe1630cb02bb4c0f1f
c7f5f3e0d5defe632d44743cbaed56272e2b67f0
Fix passing/returning structs with the 64-bit SPARC ABI Co-authored-by: beetrees <b@beetr.ee>
[ { "path": "compiler/rustc_abi/src/callconv/reg.rs", "patch": "@@ -35,6 +35,7 @@ impl Reg {\n \n reg_ctor!(f32, Float, 32);\n reg_ctor!(f64, Float, 64);\n+ reg_ctor!(f128, Float, 128);\n }\n \n impl Reg {", "additions": 1, "deletions": 0, "language": "Rust" }, { "path": "compil...
2026-02-10T10:39:06
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
facebook/react
d6406d8360c5d90fc777dfd1a720ba235c5a8a12
9c419dfd804efa4646784120790e606bb74bd905
Validate hook calls in object methods Adds some test cases for hook calls in object methods. Initially we didn't catch these because InferTypes doesn't actually visit ObjectMethod bodies. Once we fix that we correctly reject these examples.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/TypeInference/InferTypes.ts", "patch": "@@ -69,7 +69,10 @@ function apply(func: HIRFunction, unifier: Unifier): void {\n const { lvalue, value } = instr;\n lvalue.identifier.type = unifier.get(lvalue.identifier.type);\n \n- if (valu...
2024-02-16T19:27:52
vercel/next.js
d04d65b5e69e8b60823de0e80162ff4e93445fe4
1758c3c4427480274211f9dd769cec305b274f62
[segment explorer] fix route url is missing cases (#81622)
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -40,6 +40,7 @@ import { createRouterCacheKey } from './router-reducer/create-router-cache-key'\n import { hasInterceptionRouteInCurrentTree } from './router-reducer/reducers/has-interception-route-in-current-tree'\n import { dis...
2025-07-14T18:05:07
electron/electron
714402b08e95f53283ea7220ee2a259ea3932ee7
08ab45535df4548504befcfb9987b57baf65b29a
build: improve error output in release.js (#38658)
[ { "path": "script/release/release.js", "patch": "@@ -77,7 +77,7 @@ async function validateReleaseAssets (release, validatingRelease) {\n } else {\n await verifyShasumsForRemoteFiles(downloadUrls)\n .catch(err => {\n- console.log(`${fail} error verifyingShasums`, err);\n+ ...
2023-06-07T23:49:12
nodejs/node
2208948e1bf174092ff5d1518b41c0d478913dda
7a6185d2fb8612bc26087208efe93bff40ea8360
test_runner: fix support watch with run(), add globPatterns option Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs/node/pull/53866 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "doc/api/test.md", "patch": "@@ -1239,6 +1239,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/53866\n+ description: Added the `globPatterns` option.\n - version:\n - v22.0.0\n - v20.14.0\n@@ -1265,6 +1268,9...
2024-07-24T13:11:20
facebook/react
a9cc32511a12c261ee719e5383818182800d6af4
2ba1b7856975fb350ff1cabe575e6364cc6e8465
stash the component stack on the thrown value and reuse (#25790) ErrorBoundaries are currently not fully composable. The reason is if you decide your boundary cannot handle a particular error and rethrow it to higher boundary the React runtime does not understand that this throw is a forward and it recreates the co...
[ { "path": "packages/react-reconciler/src/ReactCapturedValue.js", "patch": "@@ -11,8 +11,10 @@ import type {Fiber} from './ReactInternalTypes';\n \n import {getStackByFiberInDevAndProd} from './ReactFiberComponentStack';\n \n+const CapturedStacks: WeakMap<any, string> = new WeakMap();\n+\n export type Captur...
2024-02-16T04:44:44
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
vercel/next.js
d9bcc4a6d354898dba75a1377087bd6a0da8491f
fcfae6eba077e5eb67775eec7ddfbe647b4423e6
[Segment Cache] Fix isHeadPartial logic (#81566) This PR fixed two typos that affected isHeadPartial logic.
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -1466,7 +1466,7 @@ function writeDynamicTreeResponseIntoCache(\n entry,\n convertRootFlightRouterStateToRouteTree(flightRouterState),\n flightData.head,\n- isResponsePartial,\n+ flightData.isHeadParti...
2025-07-14T16:34:51
electron/electron
08ab45535df4548504befcfb9987b57baf65b29a
69790f4b2a3d386230480c00ba9653febba2b78b
build: use m1 hosts to build apple silicon binaries (#38258) * build: try m1 speed test * yolo? * build: fix gn binary on m1 * build: remove arm64 snapshot logic * build: strip x64 on arm64 hosts... * if is fi * build: no more GENERATE_CROSS_ARCH_SNAPSHOT * build: chromedriver inline on arm64 darw...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -52,7 +52,7 @@ executors:\n size:\n description: \"macOS executor size\"\n type: enum\n- enum: [\"macos.x86.medium.gen2\"]\n+ enum: [\"macos.x86.medium.gen2\", \"macos.m1.medium.gen1\"]\n version:\n descrip...
2023-06-07T23:34:02
nodejs/node
7a6185d2fb8612bc26087208efe93bff40ea8360
3b16d4c0ad6fe8d2a00a0a51e1384cfb4393a1f3
2024-07-24, Version 20.16.0 'Iron' (LTS) Notable changes: buffer: * (SEMVER-MINOR) add .bytes() method to Blob (Matthew Aitken) https://github.com/nodejs/node/pull/53221 doc: * doc-only deprecate OpenSSL engine-based APIs (Richard Lau) https://github.com/nodejs/node/pull/53329 * (SEMVER-MINOR) add context.asser...
[ { "path": "CHANGELOG.md", "patch": "@@ -63,7 +63,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.1\">20.15.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.16.0\">20.16.0...
2024-07-19T13:32:30
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
2ba1b7856975fb350ff1cabe575e6364cc6e8465
fea900e45447214ddd6ef69076ab7e38433b5ffd
Downgrade pmmmwh/react-refresh-webpack-plugin in the Flight fixture (#28352) The newer version triggers an error due to require() not being compiled. This was upgraded in #27328. I'm not sure why that was needed. Maybe it was just because it was allowed by the caret and something else upgraded but I haven't been ...
[ { "path": "fixtures/flight/package.json", "patch": "@@ -7,7 +7,7 @@\n \"@babel/core\": \"^7.16.0\",\n \"@babel/plugin-proposal-private-property-in-object\": \"^7.18.6\",\n \"@babel/preset-react\": \"^7.22.5\",\n- \"@pmmmwh/react-refresh-webpack-plugin\": \"^0.5.3\",\n+ \"@pmmmwh/react-refr...
2024-02-16T03:23:30
vercel/next.js
fcfae6eba077e5eb67775eec7ddfbe647b4423e6
ab24f6222a7cb7e37809af6b96432970b655c3dd
15.4 Docs: Minor feature updates (#81618) Updates the docs to include the new options in 15.4. - `prefetch="auto"` option: https://github.com/vercel/next.js/pull/78689 - `next build` new `--debug-prerender option`: https://github.com/vercel/next.js/pull/80667 --------- Co-authored-by: graphite-app[bot] <96075541+g...
[ { "path": "docs/01-app/03-api-reference/02-components/link.mdx", "patch": "@@ -299,7 +299,7 @@ Prefetching happens when a `<Link />` component enters the user's viewport (init\n \n The following values can be passed to the `prefetch` prop:\n \n-- **`null` (default)**: Prefetch behavior depends on whether th...
2025-07-14T16:33:22
electron/electron
c5972ba43cfbb74cc008cfecf4eb1c6068db1c0e
86824c070e31a674f6f523b52426549efc61aa6d
fix: bad error passing `webContents.print(null)` (#38612) fix: bad error passing webContents.print(null)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -335,36 +335,34 @@ WebContents.prototype.printToPDF = async function (options) {\n }\n };\n \n-WebContents.prototype.print = function (options: ElectronInternal.WebContentsPrintOptions = {}, callback) {\n- // TODO(codebytere): deduplicate argument...
2023-06-07T17:18:26
nodejs/node
e44054043139db505577a7be2626f45dd723d1b4
aeaffbb385c9fc756247e6deaa70be8eb8f59496
src: fix -Wshadow warning PR-URL: https://github.com/nodejs/node/pull/53885 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/util.h", "patch": "@@ -144,9 +144,9 @@ void DumpJavaScriptBacktrace(FILE* fp);\n do { \\\n /* Make sure that this struct does not end up in inline code, but */ \\\n /* rather in a read-only data section wh...
2024-07-24T09:26:43
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
facebook/react
530f2c293d6b104c6ada1f2328fa7372be502c5f
ac8971275021c3488a03cf32620c2d563468770b
Add test fixture showing invalid location Add test fixture showing invalid location The error should be on the node mutating the output, not in the read location.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.invalid-mutation-in-closure.expect.md", "patch": "@@ -0,0 +1,28 @@\n+\n+## Input\n+\n+```javascript\n+function useInvalidMutation(options) {\n+ function test() {\n+ foo(options.foo); // error should not point on...
2024-02-16T00:00:21
vercel/next.js
7d474930a9445b0f8403f68edfdc8c992ce8b93e
2368e1c3d271dda2674458c9903ff7cc4bec21a4
Turbopack: fix hanging problem with reexport cycles (#81620) ### What? Fix a hanging compilation in a specific case when reexports modules in a cycle. Fix reported issues for tree shaken modules
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/esm/export.rs", "patch": "@@ -13,7 +13,7 @@ use swc_core::{\n };\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- FxIndexMap, FxIndexSet, NonLocalValue, ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n+ FxIndexMap, NonLocalV...
2025-07-14T15:00:42
nodejs/node
aeaffbb385c9fc756247e6deaa70be8eb8f59496
c112b4bc1d1ac511797c4f674d43f614c594d02b
meta: add jake to collaborators Fixes: https://github.com/nodejs/node/issues/53777 PR-URL: https://github.com/nodejs/node/pull/54004 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Chengzhong Wu...
[ { "path": "README.md", "patch": "@@ -355,6 +355,8 @@ For information about the governance of the Node.js project, see\n **Harshitha K P** <<harshitha014@gmail.com>> (she/her)\n * [himself65](https://github.com/himself65) -\n **Zeyu \"Alex\" Yang** <<himself65@outlook.com>> (he/him)\n+* [jakecastelli](ht...
2024-07-24T03:48:30
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
electron/electron
86824c070e31a674f6f523b52426549efc61aa6d
5931f69f183bfcd57c9dc7dffe8560ac9163bb45
fix: validate response in `protocol.handle()` (#38587) fix: validate response in protocol.handle()
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -60,6 +60,26 @@ function convertToRequestBody (uploadData: ProtocolRequest['uploadData']): Reque\n }) as RequestInit['body'];\n }\n \n+// TODO(codebytere): Use Object.hasOwn() once we update to ECMAScript 2022.\n+function validateResponse (res: Respons...
2023-06-07T07:29:04
vercel/next.js
0c9355d36eaa853cb402a5a7c8312c9ece2b865a
0cf373a5857eec1ad4adca213aa8d86dc7d43e80
fix: revert focus trap dependency change (#81571)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -163,7 +163,7 @@ function DevToolsPopover({\n )\n \n // Features to make the menu accessible\n- useFocusTrap(menuRef, triggerRef, menuMounted)\n+ useFocusTrap(menuRef, tr...
2025-07-12T22:06:34
facebook/react
ac8971275021c3488a03cf32620c2d563468770b
d3bca420c049e600e176d1f1b58e17d93ec593aa
Add code frame to snap errors Add code frame to snap errors This should make it easier (possible) to see if errors point at the right lines. No idea why I had to add 1 to the column, you'd think it's all babel-standard (whatever it is) and there wouldn't be off by one errors, but I'm not quite in the mood to de...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error._todo.computed-lval-in-destructure.expect.md", "patch": "@@ -15,7 +15,13 @@ function Component(props) {\n ## Error\n \n ```\n-[ReactForget] Todo: (BuildHIR::lowerAssignment) Handle computed properties in ObjectPatte...
2024-02-15T23:42:21
nodejs/node
cf2bce63862d995d238802ff4a7a24966361360a
db594d042bbde2cb37a2db11f5c284772a26a8e4
fs: fix regression on rmsync PR-URL: https://github.com/nodejs/node/pull/53982 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -1654,6 +1654,8 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n error == std::errc::operation_not_permitted);\n };\n \n+ int i = 1;\n+\n while (maxRetries >= 0) {\n if (recursive) {\n std::filesystem::remove_all(file_pa...
2024-07-23T16:53:02
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
electron/electron
5931f69f183bfcd57c9dc7dffe8560ac9163bb45
80246cf97f82205f0fd2e2949caed57ef6a38a34
fix: sync api::Screen wrapper method sigs to upstream (#38597) refactor: sync api::Screen getter sigs to upstream ui::Display GetAllDisplays(), GetPrimaryDisplay(), GetDisplayMatching(), and GetDisplayNearestPoint() methods are all const, so make our wrappers const too. ui::Display GetAllDisplays() returns a c...
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -87,22 +87,6 @@ gfx::Point Screen::GetCursorScreenPoint(v8::Isolate* isolate) {\n return screen_->GetCursorScreenPoint();\n }\n \n-display::Display Screen::GetPrimaryDisplay() {\n- return screen_->GetPrimaryDisplay();\n-}\n-\n-std::vector...
2023-06-07T07:28:50
facebook/react
d3bca420c049e600e176d1f1b58e17d93ec593aa
5142affc26d61aa32f2088541e6c93f08f21a79f
Opt out react-forget-runtime from being Forgotten This caused a build error when Forget was used in an Expo app as the react-forget-runtime package was itself being compiled with Forget. This broke Metro as metro serializes modules to iifes, but the import syntax that was injected by the useMemoCachePolyfill flag ...
[ { "path": "compiler/packages/react-forget-runtime/src/index.ts", "patch": "@@ -5,6 +5,8 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+\"use no forget\";\n+\n import invariant from \"invariant\";\n import * as React from \"react\";\n \n@@ -24,7 +26,6 @@ const $empty = Symbol.for(...
2024-02-15T22:44:44
electron/electron
b2059f288acba385d91cec0cc86135605bf477cf
bb2ba35b51609e40c4cae2f3f904a04c795a7430
fix: account for `BrowserView` bounds in setting autofill popup bounds (#38489)
[ { "path": "shell/browser/electron_autofill_driver.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"content/public/browser/render_widget_host_view.h\"\n #include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/javascript_environment.h\"\n+#include \"shell/browser/native_browser_view...
2023-06-06T08:21:42
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
facebook/react
92686722cae09ebc3dd5f4aec61b0d067fba1203
0745e6bee9edb9842dfa7efa6f9835e5be6d8b98
[Flight] Fix `reference` param type in `registerServerReference` (#27688) The `reference` that is passed into `registerServerReference` can be a plain function. It does not need to have the three additonal properties of a `ServerRefeference`. In fact, adding these properties (plus `bind`) is precisely what `registe...
[ { "path": "packages/react-server-dom-esm/src/ReactFlightESMReferences.js", "patch": "@@ -63,8 +63,8 @@ function bind(this: ServerReference<any>): any {\n return newFn;\n }\n \n-export function registerServerReference<T>(\n- reference: ServerReference<T>,\n+export function registerServerReference<T: Funct...
2024-02-15T21:09:25
golang/go
53badd4836f88c45e686c60712ac3c9d6364e505
ec4a9fb3211e1b7bd4035af7d70f17a21cd26508
net/http: push roundTrip panic higher in the stack If Transport is a non-nil interface pointing to a nil implementer, then a panic inside of roundTrip further obsfucates the issue. Change-Id: I47664b8e6185c5f56b5e529f49022484b5ea1d94 Reviewed-on: https://go-review.googlesource.com/c/go/+/661897 LUCI-TryBot-Result: Go...
[ { "path": "src/net/http/roundtrip.go", "patch": "@@ -27,5 +27,8 @@ func badRoundTrip(*Transport, *Request) (*Response, error)\n // Like the RoundTripper interface, the error types returned\n // by RoundTrip are unspecified.\n func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n+\tif t == nil {...
2025-04-01T21:04:29
electron/electron
8d689c565a6168fbeb68a2d971f9d1a2f1666375
905aad9cb6007c2e0ff4897ec64f0c9967f63ee2
fix: file selection when disallowed on macOS (#38557)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -281,11 +281,29 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n std::vector<base::FilePath>* paths,\n std::vector<std::string>* bookmarks) {\n NSArray* urls = [dial...
2023-06-05T12:08:10
facebook/react
2e470a788e359e34feeadb422daaff046baf66cc
a7144f297c1c6fe457ca30ce6a211ab59feac11e
[Fizz] Align recoverable error serialization in dev mode (#28340) Same as #28327 but for Fizz. One thing that's weird about this recoverable error is that we don't send the regular stack for it, just the component stack it seems. This is missing some potential information and if we move toward integrated since s...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -85,11 +85,11 @@ describe('ReactFlight', () => {\n );\n let expectedDigest = this.props.expectedMessage;\n if (\n- expectedDigest.startsWith('Error: {') ||\n- expectedDigest....
2024-02-15T01:15:59