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
golang/go
1b40dbce1ab039f6715b8b151a4db093ede87fff
f760e1fe494681297c5f050b646b5bcde9c71662
runtime: mark and scan small objects in whole spans [green tea] Our current parallel mark algorithm suffers from frequent stalls on memory since its access pattern is essentially random. Small objects are the worst offenders, since each one forces pulling in at least one full cache line to access even when the amount ...
[ { "path": "src/cmd/compile/internal/test/inl_test.go", "patch": "@@ -67,16 +67,18 @@ func TestIntendedInlining(t *testing.T) {\n \t\t\t// GC-related ones\n \t\t\t\"cgoInRange\",\n \t\t\t\"gclinkptr.ptr\",\n+\t\t\t\"gcUsesSpanInlineMarkBits\",\n \t\t\t\"guintptr.ptr\",\n \t\t\t\"heapBitsSlice\",\n \t\t\t\"ma...
2025-03-12T18:52:58
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
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
electron/electron
10852b3fd50865c00e5a62fa934b96973ba5c643
dc2e822dc7cd4554ba08bbb67e68e377ac936251
fix: `preferCSSPageSize` error type (#38761) fix: preferCSSPageSize error type
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -317,7 +317,7 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.preferCSSPageSize !== undefined) {\n if (typeof options.preferCSSPageSize !== 'boolean') {\n- return Promise.reject(new Error('footerTemplate m...
2023-06-14T14:49:00
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
7785528c505f6ef9afdb3e089d23dadb860aee11
9921537a96deb3cdfc64478bc041dc97326590ab
os: fix Root.Mkdir permission bits on OpenBSD Pass missing mode bits in the mkdirat() syscall wrapper. Fixes #73559 Change-Id: I54b1985bd77b1fe5d1a48acab9f2597f8c931854 GitHub-Last-Rev: 669c17361d86bc9065bb6b47a2d60aa86bcfa12d GitHub-Pull-Request: golang/go#73565 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/internal/syscall/unix/at_openbsd.go", "patch": "@@ -43,7 +43,7 @@ func Mkdirat(dirfd int, path string, mode uint32) error {\n \tif err != nil {\n \t\treturn err\n \t}\n-\t_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(p)), 0, 0,...
2025-05-01T15:09:40
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
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
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
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
golang/go
9921537a96deb3cdfc64478bc041dc97326590ab
12110c3f7ed378cd1819abf72ffadcb18502c127
sync: WaitGroup.Go: document that f must not panic Fixes #63796 Change-Id: Ib11d32574011e13aab3a0ad504f0d10009627503 Reviewed-on: https://go-review.googlesource.com/c/go/+/667695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Commi...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -163,6 +163,8 @@ func (wg *WaitGroup) Wait() {\n // Go calls f in a new goroutine and adds that task to the [WaitGroup].\n // When f returns, the task is removed from the WaitGroup.\n //\n+// The function f must not panic.\n+//\n // If the WaitGroup is empty, ...
2025-04-24T02:58:05
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
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
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
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
golang/go
12110c3f7ed378cd1819abf72ffadcb18502c127
4d10d4ad849467f12a1a16a5ade26cc03d8f1a1f
cmd/compile: improve multiplication strength reduction Use an automatic algorithm to generate strength reduction code. You give it all the linear combination (a*x+b*y) instructions in your architecture, it figures out the rest. Just amd64 and arm64 for now. Fixes #67575 Change-Id: I35c69382bebb1d2abf4bb4e7c43fd8548...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -882,44 +882,10 @@\n // (ANDQconst [0xFFFFFFFF] x) => (MOVLQZX x)\n \n // strength reduction\n-// Assumes that the following costs from https://gmplib.org/~tege/x86-timing.pdf:\n-// 1 - addq, shlq, leaq, negq, subq\n-// 3 - imulq\...
2024-11-11T20:21:14
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
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
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
golang/go
6109185cf9641ea401812c63ba3538742b872952
b48e52b4282631ecda45ac985d398e19eca1e745
math/big: fix incorrect register allocation for mipsx/mips64x According to the MIPS ABI, R26/R27 are reserved for OS kernel, and may be clobbered by it. They must not be used by user mode. See Figure 3-18 of MIPS ELF ABI specification: https://refspecs.linuxfoundation.org/elf/mipsabi.pdf Fixes #73472 Change-Id: Ifd...
[ { "path": "src/math/big/arith_mips64x.s", "patch": "@@ -17,18 +17,18 @@ TEXT ·addVV(SB), NOSPLIT, $0\n \t// compute unrolled loop lengths\n \tAND $3, R1, R5\n \tSRLV $2, R1\n-\tXOR R26, R26\t// clear carry\n+\tXOR R24, R24\t// clear carry\n loop1:\n \tBEQ R5, loop1done\n loop1cont:\n \t// unroll 1X\n \tMOVV...
2025-04-25T12:59:13
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
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
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
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
golang/go
b48e52b4282631ecda45ac985d398e19eca1e745
12e5efd71011fbb5816a1d815e91b5c865fa9a83
cmd/dist: move "devel" substring in git-inferred development version Keep the property that the "devel" substring is always present in these development versions of Go, but also gain the property that it's viable to use functions in the go/version package such as Lang, Compare, and get the expected results without nee...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -426,6 +426,10 @@ func findgoversion() string {\n \t// Otherwise, use Git.\n \t//\n \t// Include 1.x base version, hash, and date in the version.\n+\t// Make sure it includes the substring \"devel\", but otherwise\n+\t// use a format compatible with https://go...
2025-04-25T00:48:10
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
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
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
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
golang/go
12e5efd71011fbb5816a1d815e91b5c865fa9a83
214b208e248d30a3b6c35a5ebf344cc2de3b9e3f
cmd/link: fix cgo on riscv64 when building with gcc-15 It's not currently possible to build cgo programs that are partially compiled with gcc-15 on riscv64 using the internal linker. There are two reasons for this. 1. When gcc-15 compiles _cgo_export.c, which contains no actual code, for a riscv64 target, it emits...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -609,7 +609,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tif strings.HasPrefix(elfsym.name, \".LASF\") || strings.HasPrefix(elfsym.name, \".LLRL\") || strings.HasPr...
2025-04-25T15:23:49
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
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
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
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
golang/go
06751c455d89e09d29affc343ca9e38a02e2f5a2
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
syscall: cache Errno.Error() on Windows Windows is unlike the other OSs and depends on a syscall for most errors. This can be costly; cache the returned string for later reuse. This helps test caching, since errors are written out as string to the test ID, which are often PathErrors wrapping Errnos. For now, only ca...
[ { "path": "src/syscall/syscall_windows.go", "patch": "@@ -138,12 +138,32 @@ func FormatMessage(flags uint32, msgsrc uint32, msgid uint32, langid uint32, buf\n \treturn formatMessage(flags, uintptr(msgsrc), msgid, langid, buf, args)\n }\n \n+var errnoErrorCache sync.Map\n+\n func (e Errno) Error() string {\n...
2025-03-24T23:01:06
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
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
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
rust-lang/rust
6eb2a8fa9ef2b35d34b021550942cc327fa93b3a
41e0e0690f74685f094d88ae2a0f05379e38873f
Reformat existing error messages
[ { "path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs", "patch": "@@ -471,9 +471,9 @@ fn report_eval_error<'tcx>(\n span,\n inline_fluent!(\n \"evaluation of `{$instance}` failed {$num_frames ->\n- [0] here\n- *[other] inside this call\...
2026-02-09T18:12:22
golang/go
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
8270b858ee8744e5b7584b49ae6ed93aa975c8bc
net: support IPv6 addresses in ListenMulticastUDP on Windows Fixes #63529. Change-Id: Id9246af1a72beef3149af571f0891437bba2f4e0 Reviewed-on: https://go-review.googlesource.com/c/go/+/668216 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang...
[ { "path": "doc/next/6-stdlib/99-minor/net/63529.md", "patch": "@@ -0,0 +1 @@\n+On Windows, the [ListenMulticastUDP] now supports IPv6 addresses.", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "src/net/listen_test.go", "patch": "@@ -610,7 +610,8 @@ func TestIPv6...
2025-04-25T13:30:53
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
21c563157003ded36fcc54589a6075d2dd157c90
ad5a27239392d02ffec168cdbffc582ee1cb3969
[be] Prune implicit breaks when flattening unused labels A labeled block will generally end with an implicit break out of the label. However, if there are no _explicit_ breaks to the label, we'll end up with a ReactiveFunction along the lines of: ``` bb1: { ...instructions with no explicit `break bb1`... (i...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PrintReactiveFunction.ts", "patch": "@@ -132,6 +132,9 @@ function writeReactiveInstruction(\n break;\n }\n case \"terminal\": {\n+ if (instr.label !== null) {\n+ writer.write(`bb${instr.label}: `);\n+ }\...
2024-02-14T23:36:40
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
1e756dc5f73dc19eb1cbf038807d18ef1cc54ebc
29595ffeca93390dc9c03753b01406c4470c1490
cmd/compile: relax tighten register-pressure heuristic slightly Sometimes a value has multiple args, but they are the same dependency. Relax the regalloc heuristic for those. No measurable compile-time regression according to compilebench, maybe even a small improvement. name old time/op new time/op delta StdCm...
[ { "path": "src/cmd/compile/internal/ssa/tighten.go", "patch": "@@ -27,6 +27,8 @@ func tighten(f *Func) {\n \tdefer f.Cache.freeValueSlice(startMem)\n \tendMem := f.Cache.allocValueSlice(f.NumBlocks())\n \tdefer f.Cache.freeValueSlice(endMem)\n+\tdistinctArgs := f.newSparseSet(f.NumValues())\n+\tdefer f.retS...
2025-04-19T11:27:31
facebook/react
a7144f297c1c6fe457ca30ce6a211ab59feac11e
adadb8169e781ff645c61aa558dc901b1c2c97f4
[Flight] Improve error message when it's not a real Error object (#28327) Also deals with symbols. Alternative to #28312. We currently always normalize rejections or thrown values into `Error` objects. Partly because in prod it'll be an error object and you shouldn't fork behavior on knowing the value outside a d...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -83,7 +83,16 @@ describe('ReactFlight', () => {\n ' builds to avoid leaking sensitive details. A digest property is included on this error instance which' +\n ' may provide additional details about ...
2024-02-14T23:21:07
nodejs/node
1eac9a3d41b304c0dad86b1d8188a893afb7a75d
42fd6401c24509e94d75cca4a0ba3ad2665d5783
test: compare paths on Windows without considering case PR-URL: https://github.com/nodejs/node/pull/53993 Fixes: https://github.com/nodejs/node/issues/53989 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Yag...
[ { "path": "test/parallel/test-child-process-cwd.js", "patch": "@@ -52,7 +52,14 @@ function testCwd(options, expectPidType, expectCode = 0, expectData) {\n });\n \n child.on('close', common.mustCall(function() {\n- expectData && assert.strictEqual(data.trim(), expectData);\n+ if (expectData) {\n+ ...
2024-07-23T12:07:34
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
29595ffeca93390dc9c03753b01406c4470c1490
b386b628521780c048af14a148f373c84e687b26
doc: fix grammar and spelling Minor typo fixes in the docs Change-Id: I56b5d0318936aecc7775fb5bc70534456707da49 GitHub-Last-Rev: b4d042f8a997aa0d3824d8f9350dd24090b21073 GitHub-Pull-Request: golang/go#73531 Reviewed-on: https://go-review.googlesource.com/c/go/+/668815 Reviewed-by: Keith Randall <khr@golang.org> LUCI-...
[ { "path": "doc/godebug.md", "patch": "@@ -370,7 +370,7 @@ certificate policy OIDs with components larger than 31 bits. By default this\n field is only used during parsing, when it is populated with policy OIDs, but\n not used during marshaling. It can be used to marshal these larger OIDs, instead\n of the e...
2025-04-29T11:46:09
facebook/react
a927040b7a67b2304ad484c903bb56e55f511b3b
8a3def923bf88d23cc705a55416cd955e3dc169a
Add an optional validation to bail out on capitalized function calls Some components stop being components over time and are used as regular functions instead, but they may have lingering hook calls. Those hook calls make it so the capitalized function calling them do not error (they appear to be a function to exi...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -72,6 +72,7 @@ import {\n validateContextVariableLValues,\n validateHooksUsage,\n validateMemoizedEffectDependencies,\n+ validateNoCapitalizedCalls,\n validateNoRefAccessInRender,\n validateNoSetState...
2024-02-14T18:23:32
golang/go
b386b628521780c048af14a148f373c84e687b26
760f22848de788806cb4ed25383cd92ea9091eef
cmd/internal/obj/loong64: fix the error parameters when calling UnspillRegisterArgs This bug was introduced in CL 648518. Fixes #73518. Change-Id: I4988dd0b636c6a6a48d2aa2e2ae868e43f69995a Reviewed-on: https://go-review.googlesource.com/c/go/+/668475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i...
[ { "path": "src/cmd/internal/obj/loong64/obj.go", "patch": "@@ -836,7 +836,7 @@ func (c *ctxt0) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \t}\n \tcall.Mark |= BRANCH\n \n-\tunspill := c.cursym.Func().UnspillRegisterArgs(pcdata, c.newprog)\n+\tunspill := c.cursym.Func().UnspillRegisterArgs(call, ...
2025-04-28T11:35:38
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
vercel/next.js
145d7613b621369afa7ddc0a05ed3ebecda4b624
3be29d88298c12ec313d771a5e7ccbdad55b9b60
fix: update useEffect closure when menu is truly mounted (#81531) Previously we mounted event handlers on the the menu's [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument) to listen for clicks outside the menu. This causes a bug where the ref the useEffect captures is not set yet, a...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -163,8 +163,8 @@ function DevToolsPopover({\n )\n \n // Features to make the menu accessible\n- useFocusTrap(menuRef, triggerRef, isMenuOpen)\n- useClickOutside(menuRef, ...
2025-07-11T21:08:22
nodejs/node
8536b674d8423b2b7e87d6107210d59273629d71
e192a32c27f223e7a3dcb43134fd891dd8ded760
test_runner: added colors to dot reporter PR-URL: https://github.com/nodejs/node/pull/53450 Fixes: https://github.com/nodejs/node/issues/51770 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/test_runner/reporter/dot.js", "patch": "@@ -12,10 +12,10 @@ module.exports = async function* dot(source) {\n const failedTests = [];\n for await (const { type, data } of source) {\n if (type === 'test:pass') {\n- yield '.';\n+ yield `${colors.green}.${colors.clear}`...
2024-06-15T08:11:38
golang/go
c8b589e26643f83cf5469e5bcb06af40c10932e2
f9ce1dddc264cb30e68bfedbabf159b32bb6a719
cmd/list: fix -retracted flag description Change-Id: Ia1ab220485af2f38c3ddcd4c5d5bca1b195a33ed GitHub-Last-Rev: fb9933427d852518c93efbc4f2c2e4d4ee9b9197 GitHub-Pull-Request: golang/go#59847 Reviewed-on: https://go-review.googlesource.com/c/go/+/489175 Auto-Submit: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1071,8 +1071,8 @@\n //\n // The -retracted flag causes list to report information about retracted\n // module versions. When -retracted is used with -f or -json, the Retracted\n-// field will be set to a string explaining why the version was retracted.\n-// T...
2023-05-29T09:23:27
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
vercel/next.js
f024178135f1e4f468644715e138f05b064fe120
48b2976ed268a78249679a82da43750e190943a1
Turbopack: fix `@opentelemetry/api` resolve fallback (#81541) Previously, it tried `[project]/node_modules/@opentelemetry/api` and then fell back to `node_modules/next/dist/compiled/@opentelemetry/api`. But that doesn't work if the dependency is installed in a monorepo subpackage and should have been resolved from ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -22,7 +22,7 @@ use crate::{\n mode::NextMode,\n next_config::NextConfig,\n next_font::local::NextFontLocalResolvePlugin,\n- next_import_map::get_next_edge_import_map,\n+ next_import_map::{get_next_edge_and_server_fallback_...
2025-07-11T13:07:28
nodejs/node
e192a32c27f223e7a3dcb43134fd891dd8ded760
b19a9501020ce4bd553d8356e4526bf222bd7544
build: fix conflict gyp configs Gyp generated build files can be built in either Release/Debug mode. - make: single directory, two configurations by cli: `make -C out BUILDTYPE=Release` and `make -C out BUILDTYPE=Debug`. - msbuild: single directory, two configurations by cli: `msbuild node.sln /p:Configuration=Re...
[ { "path": "configure.py", "patch": "@@ -1305,6 +1305,9 @@ def host_arch_win():\n \n return matchup.get(arch, 'x64')\n \n+def set_configuration_variable(configs, name, release=None, debug=None):\n+ configs['Release'][name] = release\n+ configs['Debug'][name] = debug\n \n def configure_arm(o):\n if opti...
2024-07-23T08:56:44
golang/go
eb55b985a1b75bd796883a7a22dd41e76f0a45ba
3f3782feed6e0726ddb08afd32dad7d94fbb38c6
cmd/dist: add "devel" substring check to isRelease computation Non-release versions that are built from source without a VERSION file specifying any particular version end up with a development version like "devel go1.25-67e0681aef Thu Apr 24 12:17:27 2025 -0700". Right now those versions are correctly determined to b...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -274,7 +274,8 @@ func xinit() {\n \ttooldir = pathf(\"%s/pkg/tool/%s_%s\", goroot, gohostos, gohostarch)\n \n \tgoversion := findgoversion()\n-\tisRelease = strings.HasPrefix(goversion, \"release.\") || strings.HasPrefix(goversion, \"go\")\n+\tisRelease = (str...
2025-04-24T21:07:04
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
ce2bda4edaf9a14f19a2913410355f6a5e939a86
893e9721cdc202a4c06198d80863d3cbe972e9bc
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "src/items.rs", "patch": "@@ -2028,12 +2028,16 @@ impl<'a> StaticParts<'a> {\n ),\n ast::ItemKind::Const(c) => (\n Some(c.defaultness),\n- \"const\",\n+ if c.rhs_kind.is_type_const() {\n+ ...
2026-02-06T06:01:57
facebook/react
f0e808e5bcbfdaa24a8a0893cd718f4d189f2369
dc3178151b8cb0359e5c36b8ed57458b807ae8e3
[Debug Tools] Always use includeHooksSource option (#28309) This option was added defensively but it's not needed. There's no cost to including it always. I suspect this optional was added mainly to avoid needing to update tests. That's not a reason to have an unnecessary public API though. We have a praxis fo...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -569,7 +569,7 @@ export type HooksNode = {\n value: mixed,\n subHooks: Array<HooksNode>,\n debugInfo: null | ReactDebugInfo,\n- hookSource?: HookSource,\n+ hookSource: null | HookSource,\n };\n export type HooksTree = Array<...
2024-02-14T16:07:35
vercel/next.js
7560398745ed989253920d6f08fba56e11496ca0
8389b9f7f5f9a4c568725e2dceedfbdc5949c675
docs: root layout + opengraph-image + cna-eslit vs next lint bootstrap (#81542) Fixes: https://github.com/vercel/next.js/issues/81529, https://github.com/vercel/next.js/issues/81352 and https://github.com/vercel/next.js/issues/78630
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -293,15 +293,19 @@ You'll see a prompt like this:\n \n > ? How would you like to configure ESLint?\n >\n-> ❯ Strict (recommended) \n-> Base \n+> ❯ Strict (recommended)\n+> Base\n > Cancel\n \n - **Strict**: Includes Next.js' base...
2025-07-11T11:27:55
golang/go
da64b60c7eea880ccdeda2dfdf1b9af9a4a6fcc7
67e0681aef41cfd9794d3f7819450acd08a67905
runtime: fix typo in comment Change-Id: I85f518e36c18f4f0eda8b167750b43cd8c48ecff Reviewed-on: https://go-review.googlesource.com/c/go/+/622675 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Austin Clements <austin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserv...
[ { "path": "src/runtime/mheap.go", "patch": "@@ -431,12 +431,12 @@ type mspan struct {\n \t// indicating a free object. freeindex is then adjusted so that subsequent scans begin\n \t// just past the newly discovered free object.\n \t//\n-\t// If freeindex == nelem, this span has no free objects.\n+\t// If fr...
2024-10-25T15:46:35
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
rust-lang/rust
9bf9a12381bfab41c5d7c7a1d3f5c1457064575d
f090e9ce83e0873591e5faca204cfb68da93ff67
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "clippy_lints/src/non_copy_const.rs", "patch": "@@ -739,7 +739,7 @@ impl<'tcx> LateLintPass<'tcx> for NonCopyConst<'tcx> {\n }\n \n fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {\n- if let TraitItemKind::Const(_, ct_rhs_opt) = item.kind\n+ ...
2026-02-06T06:01:57
nodejs/node
b19a9501020ce4bd553d8356e4526bf222bd7544
cad73dadba005ddb5b1d810e0bfbcd7034b94e35
test_runner: cleanup global event listeners after run PR-URL: https://github.com/nodejs/node/pull/53878 Fixes: https://github.com/nodejs/node/issues/53868 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/test_runner/harness.js", "patch": "@@ -170,8 +170,13 @@ function setup(root) {\n kCancelledByParent));\n \n hook.disable();\n- process.removeListener('unhandledRejection', rejectionHandler);\n process.removeListener('uncaughtException', exceptionHandler);\n+ proce...
2024-07-23T06:49:52
facebook/react
32df74dba67207300511cf9b7c5ef82dd708c0c1
8d48183291870898ec42ac1f84482d9d26789424
Fix jest inline snapshots (#28308) Prettier 3 is not supported for jest inline snapshots: https://jestjs.io/docs/configuration#prettierpath-string
[ { "path": "package.json", "patch": "@@ -81,6 +81,7 @@\n \"mkdirp\": \"^0.5.1\",\n \"ncp\": \"^2.0.0\",\n \"prettier\": \"3.0.3\",\n+ \"prettier-2\": \"npm:prettier@^2\",\n \"pretty-format\": \"^29.4.1\",\n \"prop-types\": \"^15.6.2\",\n \"random-seed\": \"^0.3.0\",", "addition...
2024-02-13T03:03:50
vercel/next.js
a4a754d01cd1dd1f1d1498a2135c382328537dd0
5157472d841b06cf58f5e63b38167256fb01f012
fix(CI): On musl/alpine builds, pin llvm to llvm20, add llvm bin directory to path (#81519) Alpine Edge recently removed `llvm-config` from the PATH: - 3.22: https://pkgs.alpinelinux.org/contents?file=llvm-config&path=&name=&branch=v3.22&repo=&arch=x86_64 - Edge: https://pkgs.alpinelinux.org/contents?file=llvm-config...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -224,16 +224,16 @@ jobs:\n # - zig linker with portable glibc is avoided as it has known issues with static tls + node.js + multi threaded\n # environment.\n docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:sta...
2025-07-11T00:38:49
golang/go
67e0681aef41cfd9794d3f7819450acd08a67905
3672a09a48464d18d0c669cc3590d13091a2e77a
cmd/compile: put constant value on node inside parentheses That's where the unified IR writer expects it. Fixes #73476 Change-Id: Ic22bd8dee5be5991e6d126ae3f6eccb2acdc0b19 Reviewed-on: https://go-review.googlesource.com/c/go/+/667415 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <gol...
[ { "path": "src/cmd/compile/internal/types2/range.go", "patch": "@@ -37,6 +37,16 @@ func (check *Checker) rangeStmt(inner stmtContext, rangeStmt *syntax.ForStmt, no\n \n \tif isTypes2 && x.mode != invalid && sValue == nil && !check.hasCallOrRecv {\n \t\tif t, ok := arrayPtrDeref(under(x.typ)).(*Array); ok {\...
2025-04-22T22:14:17
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
cad73dadba005ddb5b1d810e0bfbcd7034b94e35
4b8000c66c09da5f3c7667378c94ce7558f8c1b3
test: skip sea tests in large debug builds In debug builds, the node binary could exceed 2GB and can not be read by postject. PR-URL: https://github.com/nodejs/node/pull/53918 Refs: https://github.com/nodejs/reliability/issues/922 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gma...
[ { "path": "test/common/sea.js", "patch": "@@ -50,6 +50,14 @@ function skipIfSingleExecutableIsNotSupported() {\n common.skip('UndefinedBehavior Sanitizer is not supported');\n }\n \n+ try {\n+ readFileSync(process.execPath);\n+ } catch (e) {\n+ if (e.code === 'ERR_FS_FILE_TOO_LARGE') {\n+ ...
2024-07-22T21:39:48
facebook/react
7a32d718b9ea0eb9ea86e9d21d56a5af6c4ce9ed
3f93ca1c8dec1fd85df4dbb748a2df9438fc699f
[Debug Tools] Introspect Promises in use() (#28297) Alternative to #28295. Instead of stashing all of the Usables eagerly, we can extract them by replaying the render when we need them like we do with any other hook. We already had an implementation of `use()` but it wasn't quite complete. These can also incl...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -13,6 +13,8 @@ import type {\n ReactProviderType,\n StartTransitionOptions,\n Usable,\n+ Thenable,\n+ ReactDebugInfo,\n } from 'shared/ReactTypes';\n import type {\n Fiber,\n@@ -41,6 +43,7 @@ type HookLogEntry = {\n prim...
2024-02-12T22:54:28
vercel/next.js
b0641f12e9fefb7e75049c6ab9477ce2d211e471
535ba0676ab5f46a1e6dcc88306914091515f468
[turbopack] Improve internal error message when source map retrieval fails (#81508) Mostly so that I know which source URL slipped through.
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -1411,7 +1411,7 @@ pub async fn get_source_map_rope(\n },\n )\n }\n- _ => bail!(\"Unknown url scheme\"),\n+ _ => bail!(\"Unknown url scheme '{}'\", url.scheme()),\n },\...
2025-07-10T21:21:30
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
golang/go
3672a09a48464d18d0c669cc3590d13091a2e77a
3452d80da3cf4f08da0f5905b1aa19cec475936e
runtime/debug: update SetCrashOutput example to not pass parent env vars Fixes #73490 Change-Id: I500fa73f4215c7f490779f53c1c2c0d775f51a95 Reviewed-on: https://go-review.googlesource.com/c/go/+/667775 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam....
[ { "path": "src/runtime/debug/example_monitor_test.go", "patch": "@@ -84,7 +84,10 @@ func monitor() {\n \t\tlog.Fatal(err)\n \t}\n \tcmd := exec.Command(exe, \"-test.run=^ExampleSetCrashOutput_monitor$\")\n-\tcmd.Env = append(os.Environ(), monitorVar+\"=1\")\n+\t// Be selective in which variables we allow th...
2025-04-24T14:38:58
rust-lang/rust
73a991fb9d7f68f497f047d4e948bde463f2f6eb
4cd4c18438fa57e005ee2bf9b80634f3a12d2998
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -3869,27 +3869,44 @@ pub struct ConstItem {\n pub ident: Ident,\n pub generics: Generics,\n pub ty: Box<Ty>,\n- pub rhs: Option<ConstItemRhs>,\n+ pub rhs_kind: ConstItemRhsKind,\n pub define_opaque: Option<ThinVec<(NodeId, Path)>>...
2026-02-06T06:01:57
nodejs/node
4b8000c66c09da5f3c7667378c94ce7558f8c1b3
17fb18d3c2e3936119774a6079b10cce5c61dd5d
doc: fix documentation for `--run` PR-URL: https://github.com/nodejs/node/pull/53976 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -2017,7 +2017,7 @@ changes:\n > Stability: 1.2 - Release candidate\n \n This runs a specified command from a package.json's `\"scripts\"` object.\n-If no `\"command\"` is provided, it will list the available scripts.\n+If a missing `\"command\"` is provided, it will ...
2024-07-22T19:13:00
facebook/react
3f93ca1c8dec1fd85df4dbb748a2df9438fc699f
9e7944f67c72b9a69a8db092ba6bd99fe9c731e2
[Fiber] Transfer `_debugInfo` from Arrays, Lazy, Thenables and Elements to the inner Fibers. (#28286) That way we can use it for debug information like component stacks and DevTools. I used an extra stack argument in Child Fiber to track this as it's flowing down since it's not just elements where we have this info ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+import type {\n+ Thenable,\n+ ReactDebugInfo,\n+ ReactComponentInfo,\n+ ReactAsyncInfo,\n+} from 'shared/ReactTypes';\n import type {LazyCompone...
2024-02-12T19:56:59
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
bdcb114ddbb7207108d21f142727465d134a2f9e
17a1fd8f4caa56e31ed4541068f19ea4963f3036
Turbopack: fix export-all-as with name collision (#81510) `EcmascriptModulePartReference` is a pretty counterintuitive reference. The `part` declares which module should be synthesised on the other side. That doesn't have anything to do with which exports are actually being imported by reference. This only triggere...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/side_effect_optimization/reference.rs", "patch": "@@ -173,25 +173,17 @@ impl EcmascriptModulePartReference {\n ));\n }\n \n- if merged_index.is_some() && matches!(*this.export_usage.await?, ExportUsage::Evaluation) {\n+ l...
2025-07-10T19:31:06
rust-lang/rust
6494dabc33a27dafd61b98dca55915b5cb7f60de
7d521a2cd9e2bbcbfc97edddbd07318359a00e80
fix: Sync `allow_normalize` to rustc
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/predicate.rs", "patch": "@@ -714,9 +714,9 @@ impl<'db> rustc_type_ir::inherent::Predicate<DbInterner<'db>> for Predicate<'db>\n fn allow_normalization(self) -> bool {\n // TODO: this should probably live in rustc_type_ir\n ...
2026-02-09T15:57:41
golang/go
3452d80da3cf4f08da0f5905b1aa19cec475936e
3009566a46f19e9c94df4cf51cc374763698cba0
cmd/compile: add cast in range loop final value computation When replacing a loop where the iteration variable has a named type, we need to compute the last iteration value as i = T(len(a)-1), not just i = len(a)-1. Fixes #73491 Change-Id: Ic1cc3bdf8571a40c10060f929a9db8a888de2b70 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -605,7 +605,7 @@ func arrayClear(wbPos src.XPos, a ir.Node, nrange *ir.RangeStmt) ir.Node {\n \n \t// For array range clear, also set \"i = len(a) - 1\"\n \tif nrange != nil {\n-\t\tidx := ir.NewAssignStmt(base.Pos, nrange.Key, ir.NewBinaryExp...
2025-04-24T15:38:56
nodejs/node
17fb18d3c2e3936119774a6079b10cce5c61dd5d
1c5fe040a0a73b483cc3e3fef76efe2d1712205b
src: fix slice of slice of file-backed Blob The value for `new_end` was wrong: While the members `start_` and `end_` refer to the entire length of the file, the parameters `start` and `end` are relative to the current slice. The new end would apparently have the current start_ subtracted from it, and the length would...
[ { "path": "src/dataqueue/queue.cc", "patch": "@@ -840,7 +840,9 @@ class FdEntry final : public EntryImpl {\n path_(std::move(path_)),\n stat_(stat),\n start_(start),\n- end_(end) {}\n+ end_(end) {\n+ CHECK_LE(start, end);\n+ }\n \n std::shared_ptr<DataQueue::Reade...
2024-07-22T18:25:30
facebook/react
9e7944f67c72b9a69a8db092ba6bd99fe9c731e2
629541bcc09fc7c0cc5c257541d084ee27457512
Suspend Thenable/Lazy if it's used in React.Children and unwrap (#28284) This pains me because `React.Children` is really already pseudo-deprecated. `React.Children` takes any children that `React.Node` takes. We now support Lazy and Thenable in this position elsewhere, but it errors in `React.Children`. This...
[ { "path": "packages/react-reconciler/src/ReactFiberThenable.js", "patch": "@@ -212,19 +212,19 @@ export function trackUsedThenable<T>(\n }\n },\n );\n+ }\n \n- // Check one more time in case the thenable resolved synchronously.\n- switch (thenable.status) {\n...
2024-02-12T18:39:30
vercel/next.js
17a1fd8f4caa56e31ed4541068f19ea4963f3036
f219487dcdde38b9263e797d452c65f48ee65d39
Turbopack: improve debugging features (#81415) ### What? * add no_fast_stale feature * nicer hanging messages * print details on strongly consistent hanging (prints which tasks are not completing and the chain to them)
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -15,6 +15,7 @@ workspace = true\n [features]\n default = []\n print_cache_item_size = []\n+no_fast_stale = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []", "additions": 1, "deletions": 0...
2025-07-10T18:53:23
rust-lang/rust
00432c0b85ecd3a099fbe4b0f867f3929b099366
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
fix dead links in type checking section of the doc
[ { "path": "book/src/development/type_checking.md", "patch": "@@ -146,7 +146,7 @@ in this chapter:\n \n - [Stages of compilation](https://rustc-dev-guide.rust-lang.org/compiler-src.html#the-main-stages-of-compilation)\n - [Diagnostic items](https://rustc-dev-guide.rust-lang.org/diagnostics/diagnostic-items.h...
2026-02-09T14:54:17
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
golang/go
3009566a46f19e9c94df4cf51cc374763698cba0
8a8f506516e1210c9ca3a352d76bd1d570c407fd
runtime: fix tag pointers on aix Clean up tagged pointers a bit. I got the shifts wrong for the weird aix case. Change-Id: I21449fd5973f4651fd1103d3b8be9c2b9b93a490 Reviewed-on: https://go-review.googlesource.com/c/go/+/667715 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Keith Randall <khr@google.c...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -455,8 +455,8 @@ func mallocinit() {\n \t\tthrow(\"max pointer/scan bitmap size for headerless objects is too large\")\n \t}\n \n-\tif minTagBits > taggedPointerBits {\n-\t\tthrow(\"taggedPointerBits too small\")\n+\tif minTagBits > tagBits {\n+\t\tthrow(\"tag...
2025-04-24T06:23:53
nodejs/node
96a614d63abeb8aa3b85f4ef82abeb7ae3d0819d
ad0a2db9756dfdbde6050379114445113542de8e
meta: make more bug-report information required PR-URL: https://github.com/nodejs/node/pull/53718 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": ".github/ISSUE_TEMPLATE/1-bug-report.yml", "patch": "@@ -33,13 +33,19 @@ body:\n be run using `node` directly without installing third-party dependencies\n or downloading code from the internet (i.e. no ZIP archive, no GitHub\n repository, etc.).\n+ validations:\n+ ...
2024-07-22T13:21:27
facebook/react
629541bcc09fc7c0cc5c257541d084ee27457512
947e7962ad43bd0fe8826c48d94a9df8d5206850
[Flight] Transfer Debug Info in Server-to-Server Flight Requests (#28275) A Flight Server can be a consumer of a stream from another Server. In this case the meta data is attached to debugInfo properties on lazy, Promises, Arrays or Elements that might in turn get forwarded to the next stream. In this case we want ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -77,7 +77,7 @@ const INITIALIZED = 'fulfilled';\n const ERRORED = 'rejected';\n \n // Dev-only\n-type ReactDebugInfo = Array<{+name?: string}>;\n+type ReactDebugInfo = Array<{+name?: string, +env?: string}>;\n \n type PendingChunk<T> =...
2024-02-12T18:38:14
vercel/next.js
f219487dcdde38b9263e797d452c65f48ee65d39
7c6ac5fd191fc602de348846fbe12798c860bcea
feat(test): introduce cache components testing infrastructure (#81394) ### What? Introduces a testing infrastructure to validate Next.js behavior with the experimental Cache Components feature (`dynamicIO`) enabled. This PR adds dedicated CI jobs and configuration to run a subset of existing tests with Cache Componen...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -871,6 +871,75 @@ jobs:\n stepName: 'test-ppr-prod-${{ matrix.group }}'\n secrets: inherit\n \n+ # TODO: remove these jobs once Cache Components is the default\n+ # Manifest generated via: https://gist.github.com/wyattjoh/2ceaebd82a5...
2025-07-10T17:48:57
rust-lang/rust
40a264cd454e791f478dae1488bb67ed7d7d058d
c69e1a04db484db8974904e6f8eb1e8df21a39ba
fix: rhs_span to rhs_span_new
[ { "path": "compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs", "patch": "@@ -1695,7 +1695,7 @@ fn suggest_ampmut<'tcx>(\n && let Either::Left(rhs_stmt_new) = body.stmt_at(*assign)\n && let StatementKind::Assign(box (_, rvalue_new)) = &rhs_stmt_new.kind\n ...
2026-02-09T14:16:36
golang/go
8a8f506516e1210c9ca3a352d76bd1d570c407fd
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
os,internal/poll: disassociate handle from IOCP in File.Fd Go 1.25 will gain support for overlapped IO on handles passed to os.NewFile thanks to CL 662236. It was previously not possible to add an overlapped handle to the Go runtime's IO completion port (IOCP), and now happens on the first call the an IO method. This...
[ { "path": "src/internal/poll/fd_plan9.go", "patch": "@@ -36,10 +36,6 @@ type FD struct {\n \tisFile bool\n }\n \n-func (fd *FD) initIO() error {\n-\treturn nil\n-}\n-\n // We need this to close out a file descriptor when it is unlocked,\n // but the real implementation has to live in the net package because...
2025-04-10T15:45:47
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
nodejs/node
ad0a2db9756dfdbde6050379114445113542de8e
c83af17ff927605d40b34606426c88e6acd371aa
src,test: disallow unsafe integer coercion in SQLite Currently, by default (i.e., when use_big_ints_ has not explicitly been set to true), reading a SQLite integer value that is not a safe integer in JavaScript is likely to yield an incorrect number. Instead, err on the side of caution and throw if the stored integer...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -370,12 +370,21 @@ bool StatementSync::BindValue(const Local<Value>& value, const int index) {\n \n Local<Value> StatementSync::ColumnToValue(const int column) {\n switch (sqlite3_column_type(statement_, column)) {\n- case SQLITE_INTEGER:\n+ case SQLITE_I...
2024-07-22T12:22:17
vercel/next.js
094253c14c136164212eca856b52b1b218b91a94
fceb19f9b470980ac7384fde07b8f3cdd0201a73
docs: add missing switcher (#81489) Fixing a couple of code snippets annoyances
[ { "path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx", "patch": "@@ -134,15 +134,15 @@ const nextConfig = {\n \n The `'incremental'` value allows you to adopt PPR for specific routes:\n \n-```tsx filename=\"/app/dashboard/layout.tsx\"\n+```tsx filename=\"/app/dashboard/layout.tsx\" switcher...
2025-07-10T09:18:22
facebook/react
947e7962ad43bd0fe8826c48d94a9df8d5206850
269edb88b28b7394335fb504d9924acd35d4ef38
fix[devtools/useModalDismissSignal]: use getRootNode for shadow root case support (#28145) In our custom implementation for handling modals dismiss signal, we use element's `ownerDocument` field, which expectedly doesn't work well with shadow root. Now using [`getRootNode`](https://developer.mozilla.org/en-US/docs/...
[ { "path": "packages/react-devtools-shared/src/devtools/views/hooks.js", "patch": "@@ -219,15 +219,18 @@ export function useModalDismissSignal(\n return () => {};\n }\n \n- const handleDocumentKeyDown = (event: any) => {\n+ const handleRootNodeKeyDown = (event: KeyboardEvent) => {\n if ...
2024-02-12T16:56:28
golang/go
c1fc209c41c18806b7cef1cf114f1ca9b3731eb9
9d0320de2574586f3b0610c1b5fd15b8f9c85dec
runtime: use precise bounds of Go data/bss for race detector We only want to call into the race detector for Go global variables. By rounding up the region bounds, we can include some C globals. Even worse, we can include only *part* of a C global, leading to race{read,write}range calls which straddle the end of shado...
[ { "path": "src/runtime/race.go", "patch": "@@ -455,7 +455,6 @@ func raceinit() (gctx, pctx uintptr) {\n \n \tracecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)\n \n-\t// Round data segment to page boundaries, because it's used in mmap...
2025-04-23T21:15:51
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
nodejs/node
c83af17ff927605d40b34606426c88e6acd371aa
1c1c9bf33ae52b4b07e5db1b88ae540932803f80
test: skip --title check on IBM i Similar to SmartOS IBM i does not return the process.title PR-URL: https://github.com/nodejs/node/pull/53952 Fixes: https://github.com/nodejs/node/issues/53852 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasne...
[ { "path": "test/fixtures/spawn-worker-with-copied-env.js", "patch": "@@ -2,7 +2,7 @@\n \n // This test is meant to be spawned with NODE_OPTIONS=--title=foo\n const assert = require('assert');\n-if (process.platform !== 'sunos') { // --title is unsupported on SmartOS.\n+if (process.platform !== 'sunos' && p...
2024-07-22T11:39:04