repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
32d8f84cad9ece93520d6d1764c9b45403284760
ad077125618bb3dc93dd2a660bf6c6956204bae5
fix: `getNormalBounds()` for transparent windows on Windows (#38218)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -787,6 +787,10 @@ gfx::Size NativeWindowViews::GetContentSize() {\n }\n \n gfx::Rect NativeWindowViews::GetNormalBounds() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsMaximized() && transparent())\n+ return restore_bounds_;\n+#endif\n return widget(...
2023-05-17T11:11:43
rust-lang/rust
389294dcde4f50e9c910e5da6aca0582ced13796
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
Fix documentation for `indexing_slicing` Replace typo'd name with link to the lint.
[ { "path": "clippy_lints/src/indexing_slicing.rs", "patch": "@@ -44,7 +44,7 @@ declare_clippy_lint! {\n /// Checks for usage of indexing or slicing that may panic at runtime.\n ///\n /// This lint does not report on indexing or slicing operations\n- /// that always panic, clippy's `out_of_boun...
2026-02-09T12:35:09
vercel/next.js
4d3a02d86f7163cc6a7a7b3a6366c11e12d6c78d
11cbba8bd5967ce605ce351956fca4d50b0ead99
Allow server functions to be used as client component props in `'use cache'` (#81431) When passing server actions or nested `'use cache'` functions inside of cached components as props to client components, we need to make sure that those are registered as server references, even when restoring the parent component fr...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -352,12 +352,6 @@ impl<C: Comments> ServerActions<C> {\n id\n }\n \n- fn gen_ref_ident(&mut self) -> Atom {\n- let id: Atom = format!(\"$$RSC_SERVER_REF_{0}\", self.reference_index).into();\n- ...
2025-07-09T13:41:15
nodejs/node
fcda2844e6c7547e4fb4bbcb9cd63689bf721c1f
770ef3d0619a94b768f3d7f3064aa66f4a410eff
doc: fix release date for 22.5.0 The release has been postponed and I forgot to update the date in the `CHANGELOG_V22.md`. PR-URL: https://github.com/nodejs/node/pull/53889 Refs: https://github.com/nodejs/node/pull/53826 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "doc/changelogs/CHANGELOG_V22.md", "patch": "@@ -45,7 +45,7 @@\n \n <a id=\"22.5.0\"></a>\n \n-## 2024-07-16, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95\n+## 2024-07-17, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95\n \n ### Notable Changes\n ", "additions": 1, "de...
2024-07-17T17:19:02
golang/go
8969771cc3ceed634844dd6c911f3a5439424a97
5eaeb7b455d0bb6a39dacb4317ea177cbe0358de
runtime: add thread exit plus vgetrandom stress test Add a regression test similar to the reproducer from #73141 to try to help catch future issues with vgetrandom and thread exit. Though the test isn't very precise, it just hammers thread exit. When the test reproduces #73141, it simply crashes with a SIGSEGV and no...
[ { "path": "src/runtime/proc_test.go", "patch": "@@ -1026,6 +1026,17 @@ func TestLockOSThreadTemplateThreadRace(t *testing.T) {\n \t}\n }\n \n+func TestLockOSThreadVgetrandom(t *testing.T) {\n+\tif runtime.GOOS != \"linux\" {\n+\t\tt.Skipf(\"vgetrandom only relevant on Linux\")\n+\t}\n+\toutput := runTestPro...
2025-04-03T15:16:36
facebook/react
19b4abed69643be0c6410c6d4a4fdb23c276ef0e
bde30f02840ad49119c2433d54ad352e95f53420
[be] Remove unused validateRefAccessDuringRenderFunctionExpressions flag I had split this up from the main validation since function validation was less precise; now that previous PRs fix the false positives we can remove this extra flag.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -172,14 +172,6 @@ const EnvironmentConfigSchema = z.object({\n // Validate that ref values (`ref.current`) are not accessed during render.\n validateRefAccessDuringRender: z.boolean().default(false),\n \n- /**\...
2024-02-14T00:45:17
electron/electron
ad077125618bb3dc93dd2a660bf6c6956204bae5
9902e01d2c32e2959341c59ed9113d456997bcb0
fix: `win.isMaximized()` for transparent windows on Windows (#38234)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -656,7 +656,7 @@ bool NativeWindowViews::IsMaximized() {\n return true;\n } else {\n #if BUILDFLAG(IS_WIN)\n- if (transparent()) {\n+ if (transparent() && !IsMinimized()) {\n // Compare the size of the window with the size of t...
2023-05-17T08:17:08
vercel/next.js
b77eb3e127986b47cab9eced2253f00de12a5a14
25781670de462dec915af465da6d623aefbf8397
Turbopack: fix hanging problem due to stale tasks (#81413) ### What? When tasks become dirty they eventually need to be scheduled again when needed. To do that we maintain "activeness" of tasks. And we also maintain "dirtyness" of subgraphs, to allow for strongly consistency of a subgraph. But all that is a bit mor...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1224,22 +1224,18 @@ impl AggregationUpdateQueue {\n ctx.schedule(task_id);\n }\n }\n- let aggregation_number = get_aggregation_number(&task);\n- if is...
2025-07-09T06:19:21
nodejs/node
770ef3d0619a94b768f3d7f3064aa66f4a410eff
589b67aa1748974b24df4b4b7281e0cce4e915c7
doc: fix casing of GitHub handle for two collaborators PR-URL: https://github.com/nodejs/node/pull/53857 Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Uli...
[ { "path": "README.md", "patch": "@@ -170,7 +170,7 @@ For information about the governance of the Node.js project, see\n **Benjamin Gruenbaum** <<benjamingr@gmail.com>>\n * [BridgeAR](https://github.com/BridgeAR) -\n **Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)\n-* [GeoffreyBooth](https://gith...
2024-07-17T17:07:41
golang/go
5eaeb7b455d0bb6a39dacb4317ea177cbe0358de
ab2926291ba7003dcec7f46824d5f58c344ca849
go/types, types2: better error messages for invalid qualified identifiers This change borrows code from CL 631356 by Emmanuel Odeke (thanks!). Fixes #70549. Change-Id: Id6f794ea2a95b4297999456f22c6e02890fce13b Reviewed-on: https://go-review.googlesource.com/c/go/+/662775 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -720,7 +720,14 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \t\t\t\texp = pkg.scope.Lookup(sel)\n \t\t\t\tif exp == nil {\n \t\t\t\t\tif !pkg.fake && isValidName(sel) {\n-\t\t\t\t\t\tcheck.errorf(e.Sel...
2025-04-03T21:26:55
facebook/react
5f1b8fd57f672601fc11a44f537aaeec2b793c03
6dae958eab3b19a6d89ea13242b87ac8cad81e97
Improve validateNoRefAccessInRender Rewrites the validation to not rely on the mutable range of functions to determine whether they are called or not, since the range can be extended for other reasons (they happen to reference a mutable value that is mutated later, even though the function isn't called during rend...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -180,7 +180,7 @@ function* runWithEnvironment(\n }\n \n if (env.config.validateRefAccessDuringRender) {\n- validateNoRefAccessInRender(hir);\n+ validateNoRefAccessInRender(hir).unwrap();\n }\n \n i...
2024-02-14T00:45:15
rust-lang/rust
0cf7b94bf52f45996776d8b27708516928b12e0d
3f3d11c6edb1acf939e480359df124cdd5a44d5f
fix Nix setup description
[ { "path": "src/doc/rustc-dev-guide/src/building/suggested.md", "patch": "@@ -426,7 +426,7 @@ You can then use that rust2 folder as a separate workspace for modifying and bui\n \n Several nix configurations are defined in `src/tools/nix-dev-shell`.\n \n-If you're using direnv, you can create a symbol link to...
2025-11-13T14:44:20
electron/electron
e83197669cacf21f1061ca180c70739e4eda685f
9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c
fix: unify `BrowserWindow.isVisible()` logic cross-platform (#38242)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -667,7 +667,7 @@ Hides the window.\n \n #### `win.isVisible()`\n \n-Returns `boolean` - Whether the window is visible to the user.\n+Returns `boolean` - Whether the window is visible to the user in the foreground of the app.\n \n #### `win.isModal()`\n ",...
2023-05-16T09:46:45
vercel/next.js
37ab1aac4983f85d8bd94c6cb1a2f4ef9d6b7678
203adbd5d054609812d1f3666184875dcca13f3a
update: add nebrelbug to labeler.json (#81437)
[ { "path": ".github/labeler.json", "patch": "@@ -59,6 +59,7 @@\n { \"type\": \"user\", \"pattern\": \"ijjk\" },\n { \"type\": \"user\", \"pattern\": \"lazarv\" },\n { \"type\": \"user\", \"pattern\": \"lubieowoce\" },\n+ { \"type\": \"user\", \"pattern\": \"nebrelbug\" },\n { \"t...
2025-07-09T02:04:49
nodejs/node
aca49fc7d16ae87876fec6285b658868e04b1cf7
05ca03569e22f82d5a20428119cfc6b17fcaf36d
src: fix env-file flag to ignore spaces before quotes Fix to ignore spaces between '=' and quoted string in env file Fixes: https://github.com/nodejs/node/issues/53461 Signed-off-by: Mohit Malhotra <dev.mohitmalhotra@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53786 Reviewed-By: Yagiz Nizipli <yagiz@nizip...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -129,6 +129,7 @@ void Dotenv::ParseContent(const std::string_view input) {\n key = content.substr(0, equal);\n content.remove_prefix(equal + 1);\n key = trim_spaces(key);\n+ content = trim_spaces(content);\n \n if (key.empty()) {\n break;...
2024-07-17T09:22:42
facebook/react
f7f05501e07bbd693637f50c635a15a492a7d0e8
a107ba81ed08e25696cb17a015b6c6f8bac606b0
Support destructuring assignment of context variables Fixes T178003134. Previously we did not check whether values reassigned during a destructuring assignment were context variables. This would either miscompile, or as of my fix earlier in #2579, would fail validation. Specifically, this happened on AssignmentEpr...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -134,7 +134,8 @@ export function lower(\n param.node.loc ?? GeneratedSource,\n InstructionKind.Let,\n param,\n- place\n+ place,\n+ \"Assignment\"\n );\n } else if ...
2024-02-14T00:45:14
golang/go
ce94e916fe262a51c398153b03dd9a657418bbe8
9302a57134a698b62576cd3b849017a02c731c98
internal/syscall/windows: define NtQueryInformationFile buffer as unsafe.Pointer The unsafe.Pointer -> uintptr conversion must happen when calling syscall.Syscall, not when calling the auto-generated wrapper function, else the Go compiler doesn't know that it has to keep the pointer alive. This can cause undefined be...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -365,7 +365,7 @@ func (fd *FD) initIO() error {\n \t\t\t// Handle opened for overlapped I/O (aka non-blocking) that are not added\n \t\t\t// to the runtime poller need special handling when reading and writing.\n \t\t\tvar info windows.FILE_MODE_INFO...
2025-04-03T12:55:21
electron/electron
9bd9d312f8d59d3a80defba4aeb760e2c3e7e10c
042663e19058cebc83428a5a354b863d2bb10e31
fix: enable `BrowserWindow.id` access post-destruction (#38241) fix: enable BrowserWindow id access post-destruction
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -12,6 +12,14 @@ BrowserWindow.prototype._init = function (this: BWT) {\n // Avoid recursive require.\n const { app } = require('electron');\n \n+ // Set ID at constructon time so it's accessible after\n+ // underlying window destruction.\n+ ...
2023-05-16T07:29:00
vercel/next.js
a546b131ed5bf8c1d50f79dea0a93c8c6e5b58a0
94f8aecf2622d778b097780eec0992104f709528
fix: referencing unavailable __dirname (#81436) Patch missing __dirname usage for storybook css injection
[ { "path": "packages/next/.storybook/main.ts", "patch": "@@ -1,5 +1,7 @@\n import type { StorybookConfig } from '@storybook/react-webpack5'\n import { join, dirname, resolve } from 'path'\n+import { fileURLToPath } from 'url'\n+\n /**\n * This function is used to resolve the absolute path of a package.\n *...
2025-07-09T00:49:13
nodejs/node
0b1ff6965e3bb3cedfe3563f4ddefc33e7fa69d2
f09063752b6e290f5cc32069e7fd4e89a3860015
src: fix potential segmentation fault in SQLite The Local<Value> returned from ColumnToValue() and ColumnNameToValue() may be empty (if a JavaScript exception is pending), in which case a segmentation fault may occur at the call sites, which do not check if the Local<Value> is empty. Fix this bug returning early if an...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -441,7 +441,9 @@ void StatementSync::All(const FunctionCallbackInfo<Value>& args) {\n \n for (int i = 0; i < num_cols; ++i) {\n Local<Value> key = stmt->ColumnNameToValue(i);\n+ if (key.IsEmpty()) return;\n Local<Value> val = stmt->ColumnToVa...
2024-07-16T22:00:48
facebook/react
a107ba81ed08e25696cb17a015b6c6f8bac606b0
5dd55e881b374a5a0b8c5c962c08bee194297f15
[BE] Remove navigator; edit sprout fixtures --- I recall adding the navigator override because some React library file had done an unconditional access, but this doesn't seem to be the case anymore. Regardless, newer versions of nodejs comes with a global `navigator` [see thread](https://github.com/nodejs/node/i...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/hoisting-computed-member-expression.expect.md", "patch": "@@ -2,17 +2,21 @@\n ## Input\n \n ```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n function hoisting() {\n- function onClick(x) {\n- return x...
2024-02-13T00:12:01
rust-lang/rust
ae24fdaccc71600ec540ff018208c5d592ad016a
5ad44f28c67818641f40b78167c92a9ebb1311c4
fix: Fix `set_top_subtree_delimiter_span` using wrong index for close span
[ { "path": "src/tools/rust-analyzer/crates/tt/src/storage.rs", "patch": "@@ -488,7 +488,7 @@ impl TopSubtree {\n unreachable!()\n };\n *open_span = S::new(span.open.range, 0);\n- *close_span = S::new(span.close.range, 0);\n+ *close_span = S::new(s...
2026-02-09T11:45:01
electron/electron
042663e19058cebc83428a5a354b863d2bb10e31
e19500fa03bf08af1466dac5dbca39f1b4281d9c
fix: `isMaximized` after minimize/fullscreen on macOS (#38291) fix: isMaximized after isMinimized on macOS
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -562,6 +562,11 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n }\n \n bool NativeWindowMac::IsMaximized() {\n+ // It's possible for [window_ isZoomed] to be true\n+ // when the window is minimized or fullscreened.\n+ if (IsMinimized(...
2023-05-16T07:26:41
facebook/react
06e410ec608820b65d81536bb4630228b4e04d48
374fd68a50f00237555cdeb60ad01cba171328f9
Move modern strict to experimental (#28152) Turn this on Edited: ope, nvm <details> Looks like there's still an outstanding issue with this. The original PR turned off a strict effects test, which causes a stray `componentWillUnmount` to fire. https://github.com/facebook/react/commit/5d1ce651393524639a3b4...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -3792,12 +3792,9 @@ function commitDoubleInvokeEffectsInDEV(\n hasPassiveEffects: boolean,\n ) {\n if (__DEV__) {\n- if (useModernStrictMode) {\n+ if (useModernStrictMode && root.tag !== LegacyRoot) {\n let doubleI...
2024-02-09T21:59:47
nodejs/node
f09063752b6e290f5cc32069e7fd4e89a3860015
ac75b2eb19f007cb3b3c136f2883562f78b50b66
test_runner: consolidate option parsing This commit consolidates all option parsing for the test runner in the parseCommandLine() internal helper function. The exception is a couple of temporary flags used for feature gating which will eventually become no-ops. This consolidation is prep work for supporting running te...
[ { "path": "lib/internal/main/test_runner.js", "patch": "@@ -1,34 +1,31 @@\n 'use strict';\n \n-const {\n- NumberParseInt,\n- RegExpPrototypeExec,\n- StringPrototypeSplit,\n-} = primordials;\n-\n const {\n prepareMainThreadExecution,\n markBootstrapComplete,\n } = require('internal/process/pre_executi...
2024-07-16T21:05:46
vercel/next.js
94f8aecf2622d778b097780eec0992104f709528
697fc32efb3c2cc8a76c94d607d63eafa2ad2784
feat: forward browser errors/logs to terminal (#80909) Closes NEXT-4534 This PR introduces the ability for next.js to forward logs, errors, and unhandled rejections from the browser to the terminal the dev server is running in (behind an experimental flag) # Explanation The 2 main components of this pr are the clie...
[ { "path": "packages/next/package.json", "patch": "@@ -309,6 +309,7 @@\n \"react-refresh\": \"0.12.0\",\n \"recast\": \"0.23.11\",\n \"regenerator-runtime\": \"0.13.4\",\n+ \"safe-stable-stringify\": \"2.5.0\",\n \"sass-loader\": \"15.0.0\",\n \"schema-utils2\": \"npm:schema-utils@2.7....
2025-07-08T23:40:01
rust-lang/rust
8cd47adab253c6ec0eea949563215fa7fdbc7241
3d0989266de7d312a17ffac4e8251eb7a710358f
libm: Fix tests for lgamma The tests were using `rug::ln_gamma` as a reference for `libm::lgamma`, which actually computes the natural logarithm *of the absolute value* of the Gamma function. This changes the range of inputs used for the icount-benchmarks of these functions, which causes false regressions in [1]. [1...
[ { "path": "library/compiler-builtins/libm-test/src/domain.rs", "patch": "@@ -207,7 +207,7 @@ impl<F: Float, I: Int> EitherPrim<Domain<F>, Domain<I>> {\n .into_prim_float()];\n \n /// Domain for `loggamma`\n- const LGAMMA: [Self; 1] = Self::STRICTLY_POSITIVE;\n+ const LGAMMA: [Self; 1] = Self::...
2026-02-09T10:32:04
electron/electron
eeb1e7d499130717dbb76610e4800fb638e5605d
0149ae72e638e1d386194d23d81bcdd64d9966c4
chore: fix lint:js-in-markdown script (#38260)
[ { "path": "docs/api/app.md", "patch": "@@ -1346,7 +1346,7 @@ app.setLoginItemSettings({\n path: updateExe,\n args: [\n '--processStart', `\"${exeName}\"`,\n- '--process-start-args', `\"--hidden\"`\n+ '--process-start-args', '\"--hidden\"'\n ]\n })\n ```", "additions": 1, "deletions":...
2023-05-15T07:58:35
facebook/react
d4cdaf252337027615812a01c366c7ae0265ea95
6da1912eed161c766689eb4bde336b9854e912e7
Fix assignment expression with context variables Fixes the one case discovered in the previous PR; for AssignmentExpression we correctly lowered the store instruction to a local/context, but then always used a `LoadLocal` to read the result back. The load instruction appears like it might be dangling - i think wh...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1869,6 +1869,7 @@ function lowerExpression(\n type: null,\n loc: exprLoc,\n });\n+ return { kind: \"LoadLocal\", place: identifier, loc: exprLoc };\n } else...
2024-02-09T22:25:33
nodejs/node
3a5b5428c6509f91306e10486f1e56e3b1e80195
362afa52ebe462a39874915e5e70d261db153c58
build: disable test-asan workflow It is running on ubuntu-20.04, which will inevitably be removed from GitHub actions at some point. Attempts to upgrade it to ubuntu-22.04 and ubuntu-24.04 have failed. It is now blocking V8 updates because of errors that happen only with the `test-asan` job. Refs: https://github.com...
[ { "path": ".github/workflows/test-asan.yml", "patch": "@@ -38,7 +38,7 @@ permissions:\n \n jobs:\n test-asan:\n- if: github.event.pull_request.draft == false\n+ if: false # Temporarily disabled. References: https://github.com/nodejs/node/pull/52374, https://github.com/nodejs/node/pull/53651#issueco...
2024-07-16T13:29:10
vercel/next.js
2503c19dd068a99c82ec02691b22c323a884614f
d9a774117cfef44c173c961c5e1699734eb7f62a
[segment explorer] capture defined boundaries (#81232) Capture defined boundaries (not-found / error / loading) and used to filter which one is available for boundary triggers The trie will now hold all the defined boundaries, but what's different from the existing rendered boundaries is: Here's the difference o...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -507,6 +507,7 @@ export default function OuterLayoutRouter({\n forbidden,\n unauthorized,\n gracefullyDegrade,\n+ segmentViewBoundaries,\n }: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n@@ -519,...
2025-07-08T20:13:03
golang/go
9326d9d01231a1834458810c3cb01701bf7293a9
fd8f6cec213a6eaf862998073ea3c4ee52b182ba
make.bat: fix GOROOT_BOOTSTRAP detection Due to a flaw in the %GOROOT_BOOTSTRAP% detection logic, the last Go executable found by `where go` was taking precedence over the first one. In batch scripts, environment variable expansion happens when each line of the script is read, not when it is executed. Thus, the check...
[ { "path": "src/make.bat", "patch": "@@ -60,14 +60,13 @@ if not exist ..\\bin\\tool mkdir ..\\bin\\tool\n :: Calculating GOROOT_BOOTSTRAP\r\n if not \"x%GOROOT_BOOTSTRAP%\"==\"x\" goto bootstrapset\r\n for /f \"tokens=*\" %%g in ('where go 2^>nul') do (\r\n-\tif \"x%GOROOT_BOOTSTRAP%\"==\"x\" (\r\n-\t\tsetlo...
2025-02-28T09:05:52
electron/electron
95cd84f14032c7640ef69e221d007562f115cfef
894e056e6ba44dbc05b3dbcb62ed47677c646937
build: fix octokit resolution with patch-package (#38250)
[ { "path": "package.json", "patch": "@@ -57,6 +57,7 @@\n \"lint-staged\": \"^10.2.11\",\n \"minimist\": \"^1.2.6\",\n \"null-loader\": \"^4.0.0\",\n+ \"patch-package\": \"^7.0.0\",\n \"pre-flight\": \"^1.1.0\",\n \"process\": \"^0.11.10\",\n \"remark-cli\": \"^10.0.0\",\n@@ -101,9 ...
2023-05-11T03:52:59
facebook/react
374fd68a50f00237555cdeb60ad01cba171328f9
d27c1ac1128327280607389c187e7db8dab06f84
fix: define IS_ACT_ENVIRONMENT global for tests with concurrent mode and synchronous act (#28296)
[ { "path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js", "patch": "@@ -20,6 +20,8 @@ describe('Fast Refresh', () => {\n let withErrorsOrWarningsIgnored;\n \n beforeEach(() => {\n+ global.IS_REACT_ACT_ENVIRONMENT = true;\n+\n exportsObj = undefined;\n \n ...
2024-02-09T19:03:40
nodejs/node
3a43e55a0011e1e841ff8a6aee7c69084f9559d7
953abf4887a1183e80f84ebe8d856e6410618829
src: update outdated references to spec sections The exact section has changed in recent versions of ECMA-262, so fix the section number and explicitly mark the edition of the standard to avoid having to update it in the future. PR-URL: https://github.com/nodejs/node/pull/53832 Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "src/util-inl.h", "patch": "@@ -501,7 +501,7 @@ void ArrayBufferViewContents<T, S>::ReadValue(v8::Local<v8::Value> buf) {\n }\n }\n \n-// ECMA262 20.1.2.5\n+// ECMA-262, 15th edition, 21.1.2.5. Number.isSafeInteger\n inline bool IsSafeJsInt(v8::Local<v8::Value> v) {\n if (!v->IsNumber()) retur...
2024-07-15T20:01:14
vercel/next.js
bdb87a1851bbf62778f422002aca45fbb0e9566e
b81f9892b3f5216e8c40a413f840f6ce8e00f1f4
chore: update rspack to 1.4.5 (#81216) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improvi...
[ { "path": "package.json", "patch": "@@ -116,7 +116,7 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n- \"@rspack/core\": \"1.3.12\",\n+ \"@rspack/core\": \"1.4.5\",\n \"@rspack/plugin-react-refresh\": \"1.2.0\",\n ...
2025-07-08T17:57:38
golang/go
fd8f6cec213a6eaf862998073ea3c4ee52b182ba
06f82af1837bf77dfb2f337f5bb15b6c3f85a454
api: move go1.25 to next/70250 My CL 645115 added the new entries in the wrong place, prematurely creating the go1.25 file. Also, add the missing release note. Change-Id: Ib5b5ccfb42757a9ea9dc93e33b3e3ed8e8bd7d3f Reviewed-on: https://go-review.googlesource.com/c/go/+/662615 Auto-Submit: Alan Donovan <adonovan@google...
[ { "path": "doc/next/6-stdlib/99-minor/go/types/70250.md", "patch": "@@ -0,0 +1,3 @@\n+[Var] now has a [Var.Kind] method that classifies the variable as one\n+of: package-level, receiver, parameter, result, or local variable, or\n+a struct field.", "additions": 3, "deletions": 0, "language": "Mar...
2025-04-03T14:04:02
rust-lang/rust
eb2ba7d6b9429297c582fed42fd5da5e5a51cd8f
930ecbcdf8905c5c8549056c73fcabdd8d6e1b3d
fix ICE in supertrait_vtable_slot when supertrait has missing generics
[ { "path": "compiler/rustc_trait_selection/src/traits/vtable.rs", "patch": "@@ -434,7 +434,16 @@ pub(crate) fn supertrait_vtable_slot<'tcx>(\n }\n };\n \n- prepare_vtable_segments(tcx, source_principal, vtable_segment_callback).unwrap()\n+ prepare_vtable_segments(tcx, source_principal, vtab...
2026-02-09T09:18:24
facebook/react
36b078cc7a50ad0cd66e7f6b4b8e4a1295e47f67
ba5e6a8329c7194a2c573c037a37f24ce45ee58f
unify feature flags between fb and oss for React Native renderer (#28269) # Affected flags: ### alwaysThrottleRetries In RN OSS changed from `true` to `false`. This is what FB build uses. This flag was a root cause for big perf regression internally. ### enableDeferRootSchedulingToMicrotask In RN OSS buil...
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js", "patch": "@@ -22,7 +22,6 @@ import typeof * as DynamicFlagsType from 'ReactNativeInternalFeatureFlags';\n \n export const alwaysThrottleRetries = __VARIANT__;\n export const enableDeferRootSchedulingToMicrotask = __VARIANT__;\n-export...
2024-02-09T09:46:42
nodejs/node
034a2409bf3209624ff94b979bc2f35ca785f829
6ba0af135402bf32896a37fd6617015a811c9b34
test_runner: remove plan option from run() This commit removes the plan option to run(). I believe it was added by mistake. It is not documented, untested, and a test plan does not make sense in the context of run(). This commit also fixes a minor formatting issue in a related fixture. Refs: https://github.com/nodej...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -483,7 +483,6 @@ function run(options = kEmptyObject) {\n watch,\n setup,\n only,\n- plan,\n } = options;\n \n if (files != null) {\n@@ -552,7 +551,7 @@ function run(options = kEmptyObject) {\n });\n }\n \n- const root = ...
2024-07-15T17:10:01
rust-lang/rust
51affa03942074a84ccce448ea6b7b9e02a4f4a6
2b1dc3144bd38e3f655bcc991b685d824f4176f6
add tests for s390x-unknown-none-softfloat tests will check: - correct emit of assembly for softfloat target - incompatible set features will emit warnings/errors - incompatible target tripples in crates will not link
[ { "path": "tests/assembly-llvm/s390x-softfloat-abi.rs", "patch": "@@ -0,0 +1,64 @@\n+//@ add-minicore\n+//@ revisions: enable-softfloat disable-softfloat\n+//@ assembly-output: emit-asm\n+//@ compile-flags: -Copt-level=3 --crate-type=lib\n+//@[enable-softfloat] compile-flags: --target=s390x-unknown-none-sof...
2026-01-22T12:50:54
electron/electron
894e056e6ba44dbc05b3dbcb62ed47677c646937
2806feede2cf5264b0187dddfdd7fc6cca915fbf
chore: bump chromium to 115.0.5760.0 (main) (#38033) * chore: bump chromium in DEPS to 114.0.5721.0 * chore: update patches * chore: bump chromium in DEPS to 114.0.5723.0 * chore: update patches * chore: bump chromium in DEPS to 114.0.5725.0 * chore: update patches * chore: bump chromium in DEPS to 1...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -52,9 +52,14 @@ executors:\n size:\n description: \"macOS executor size\"\n type: enum\n- enum: [\"macos.x86.medium.gen2\", \"large\"]\n+ enum: [\"macos.x86.medium.gen2\"]\n+ version:\n+ description: \"xcode ...
2023-05-10T14:47:48
vercel/next.js
71c87179a8494ba42a11b66579149f6bdf52c457
bab62242883150c5267fae8a2c42535374c11911
refactor(turbopack/napi): Add a NextTurbopackContext type, rename VcArc to DetachedVc (#80881) - Introduce `NextTurbopackContext` for use later in https://github.com/vercel/next.js/pull/81272 . In this PR, it's just a thin single-field wrapper, but we add callbacks to it in the next PR. - Wrap all the places we pass a...
[ { "path": "crates/napi/src/next_api/endpoint.rs", "patch": "@@ -15,7 +15,7 @@ use turbo_tasks::{Completion, Effects, OperationVc, ReadRef, Vc};\n use turbopack_core::{diagnostics::PlainDiagnostic, error::PrettyPrintError, issue::PlainIssue};\n \n use super::utils::{\n- NapiDiagnostic, NapiIssue, RootTask...
2025-07-08T17:12:18
golang/go
0b31e6d4cc804ab76ae8ced151ee2f50657aec14
13b1261175efde5aac7c4c7f6f66ae3b2c609a2d
runtime: cleanup M vgetrandom state before dropping P When an M is destroyed, we put its vgetrandom state back on the shared list for another M to reuse. This list is simply a slice, so appending to the slice may allocate. Currently this operation is performed in mdestroy, after the P is released, meaning allocation i...
[ { "path": "src/runtime/os3_solaris.go", "patch": "@@ -234,8 +234,11 @@ func unminit() {\n \tgetg().m.procid = 0\n }\n \n-// Called from exitm, but not from drop, to undo the effect of thread-owned\n+// Called from mexit, but not from dropm, to undo the effect of thread-owned\n // resources in minit, semacre...
2025-04-03T03:26:25
facebook/react
e41ee9ea70f8998144fdd959ac11fd7a40e4ee20
cd63ef79218a1d53c8739da75b154014f3b7cc73
Throw a better error when Lazy/Promise is used in React.Children (#28280) We could in theory actually support this case by throwing a Promise when it's used inside a render. Allowing it to be synchronously unwrapped. However, it's a bit sketchy because we officially only support this in the render's child position ...
[ { "path": "packages/react/src/ReactChildren.js", "patch": "@@ -13,6 +13,7 @@ import isArray from 'shared/isArray';\n import {\n getIteratorFn,\n REACT_ELEMENT_TYPE,\n+ REACT_LAZY_TYPE,\n REACT_PORTAL_TYPE,\n } from 'shared/ReactSymbols';\n import {checkKeyStringCoercion} from 'shared/CheckStringCoerc...
2024-02-08T22:10:19
nodejs/node
4b4a9319d99897ea4d43823a0ce166dbf165a2b2
86415e4688f466c67878d525db4ebc545492bcd7
test_runner: fix escaping in snapshot tests Snapshotted values are escaped after serialization. This happens when serializing a value for comparison when snapshots already exist, and also when updating them. That is, snapshots are escaped in the internal storage, but when written to disk, one "level" of escaping is re...
[ { "path": "lib/internal/test_runner/snapshot.js", "patch": "@@ -146,7 +146,9 @@ class SnapshotManager {\n );\n }\n \n- this.snapshots = context.exports;\n+ for (const key in context.exports) {\n+ this.snapshots[key] = templateEscape(context.exports[key]);\n+ }\n thi...
2024-07-15T14:55:43
vercel/next.js
7a09a67d3287220d651e569755d2bbf40bb39aeb
9170aca93ad678abc573a6b71fb775e8ebb4c8d6
Fix auth preflight check when triggering Front sync (#81166)
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -110,6 +110,10 @@ jobs:\n - id: test-result\n name: Set test result variable\n run: echo 'immediately-close=${{ needs.test-deploy.result != 'success' && 'true' || 'false' }}' >> \"$GITHUB_OUTPUT\"\n+ - name: C...
2025-07-08T16:55:49
golang/go
13b1261175efde5aac7c4c7f6f66ae3b2c609a2d
116b82354ce53dea7b139039adbda3231689b02d
cmd/compile/internal/devirtualize: do not select a zero-weight edge as the hottest one When both a direct call and an interface call appear on the same line, PGO devirtualization may make a suboptimal decision. In some cases, the directly called function becomes a candidate for devirtualization if no other relevant ou...
[ { "path": "src/cmd/compile/internal/devirtualize/pgo.go", "patch": "@@ -741,7 +741,7 @@ func findHotConcreteCallee(p *pgoir.Profile, caller *ir.Func, call *ir.CallExpr,\n \t\thottest = e\n \t}\n \n-\tif hottest == nil {\n+\tif hottest == nil || hottest.Weight == 0 {\n \t\tif base.Debug.PGODebug >= 2 {\n \t\...
2025-03-06T14:54:17
electron/electron
2806feede2cf5264b0187dddfdd7fc6cca915fbf
13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b
docs: fix `devtools-open-url` ts definition (#38231) docs: fix devtools-open-url ts definition
[ { "path": "docs/api/web-contents.md", "patch": "@@ -601,6 +601,7 @@ window.\n \n Returns:\n \n+* `event` Event\n * `url` string - URL of the link that was clicked or selected.\n \n Emitted when a link is clicked in DevTools or 'Open in new tab' is selected for a link in its context menu.", "additions": ...
2023-05-10T09:25:50
facebook/react
cd63ef79218a1d53c8739da75b154014f3b7cc73
04b59928d867dae1639f12f19700347d8f5d4cac
Add simulateEventDispatch to test ReactDOMEventListener (#28079) ## Overview For events, the browser will yield to microtasks between calling event handers, allowing time to flush work inbetween. For example, in the browser, this code will log the flushes between events: ```js <body onclick="console.log('body...
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -9,6 +9,7 @@ import * as SchedulerMock from 'scheduler/unstable_mock';\n import {diff} from 'jest-diff';\n import {equals} from '@jest/expect-utils';\n import enqueueTask from './enqueueTask';\n+import simulateBrowserEventDispa...
2024-02-08T21:06:03
nodejs/node
59fde99db8841ee9e4b469d05243748df1ad02fd
cae5831ab48470ff060a5aaa12eb6e5a7acaf91e
url: fix typo PR-URL: https://github.com/nodejs/node/pull/53827 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/url.js", "patch": "@@ -349,7 +349,7 @@ class URLSearchParams {\n throw new ERR_ARG_NOT_ITERABLE('Query pairs');\n }\n \n- // The following implementationd differs from the URL specification:\n+ // The following implementation differs from the URL speci...
2024-07-14T15:18:19
golang/go
dceb77a33676c8a4efb9c63267c351268848de6f
903d7b786209dbb7f119681b8ac5620b240dd2a0
cmd/vet: add waitgroup analyzer + relnote Fixes #18022 Change-Id: I92d1939e9d9f16824655c6c909a5f58ed9500014 Reviewed-on: https://go-review.googlesource.com/c/go/+/661519 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Commi...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -24,3 +24,12 @@ specifying the command's current version.\n \n ### Cgo {#cgo}\n \n+### Vet {#vet}\n+\n+<!-- go.dev/issue/18022 -->\n+\n+The `go vet` command now includes the\n+[waitgroup](https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/waitgroup)\n+anal...
2025-03-28T22:04:16
electron/electron
13e309e1fb2491af7c4bfd6bc6e786dbeb8dfc4b
f432245456e92fe0191ae0b9275fdee60dd45452
fix: only exit fullscreen conditionally with `setKiosk` (#38219) fix: only exit fullscreen conditionally with setKiosk
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -234,6 +234,7 @@ class NativeWindowMac : public NativeWindow,\n // The views::View that fills the client area.\n std::unique_ptr<RootViewMac> root_view_;\n \n+ bool fullscreen_before_kiosk_ = false;\n bool is_kiosk_ = false;\n bool zoom_to...
2023-05-09T16:28:37
vercel/next.js
5248e1576632ea82d6f3cbc932ec73d1f6a401d6
d118f071fc2b4fcf985bab68d8fed6ddf4ac75ac
fix(turbopack) Adjust tree loader to respect parent module overrides (#81139) ## Fix not-found page inheritance in nested layouts ### What? This PR fixes an issue where custom not-found pages weren't properly inherited in nested layouts. Previously, when a page within a route group threw a `notFound()` error, it woul...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -853,12 +853,45 @@ async fn directory_tree_to_loader_tree(\n plain_tree,\n app_page,\n for_app_path,\n+ AppDirModules::default(),\n )\n .await?;\n \n Ok(Vc::cell(tree.map(AppPageLoaderTree::resolved_ce...
2025-07-08T13:16:40
facebook/react
b229f540e2da91370611945f9875e00a96196df6
37d901e2b81e12d40df7012c6f8681b8272d2555
[Flight] Emit debug info for a Server Component (#28272) This adds a new DEV-only row type `D` for DebugInfo. If we see this in prod, that's an error. It can contain extra debug information about the Server Components (or Promises) that were compiled away during the server render. It's DEV-only since this can conta...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -76,53 +76,63 @@ const RESOLVED_MODULE = 'resolved_module';\n const INITIALIZED = 'fulfilled';\n const ERRORED = 'rejected';\n \n+// Dev-only\n+type ReactDebugInfo = Array<{+name?: string}>;\n+\n type PendingChunk<T> = {\n status: 'p...
2024-02-08T16:01:32
golang/go
75bf2a8c493291481af72a07a818c432085919ca
7177f2400995901b666b1ed94d87c15c8c410fab
internal/poll: defer IOCP association until first IO operation Defer the association of the IOCP to the handle until the first I/O operation is performed. A handle can only be associated with one IOCP at a time, so this allows external code to associate the handle with their own IOCP and still be able to use a FD (th...
[ { "path": "src/internal/poll/fd_plan9.go", "patch": "@@ -36,6 +36,10 @@ 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-01T08:19:36
electron/electron
f432245456e92fe0191ae0b9275fdee60dd45452
0212c264cab7a2b8dc2141f429df64396c410ffa
fix: handle `AXManualAccessibility` attribute cross-protocol (#38142) * fix: handle AXManualAccessibility attribute cross-protocol * Update shell/browser/mac/electron_application.mm Co-authored-by: Robo <hop2deep@gmail.com> --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/mac/electron_application.mm", "patch": "@@ -175,6 +175,33 @@ - (void)handleURLEvent:(NSAppleEventDescriptor*)event\n electron::Browser::Get()->OpenURL(base::SysNSStringToUTF8(url));\n }\n \n+// Returns the list of accessibility attributes that this object supports.\n+- (NSArray*)a...
2023-05-09T09:13:14
vercel/next.js
2dbc947cdeebce7fbfc91240d71473395e961616
c8976ee2121b02b26e089e1854e2b1ad43a3436e
Turbopack: fix incorrect graph state bug (#81202) ### What? Technically a task should start with `Dirty` flag set and propagate that info through the aggregation graph. But that would be very expensive to do in the initial compilation. So we have the extra check of tasks not having Output set. But there is this rare...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/update_output.rs", "patch": "@@ -48,86 +48,86 @@ impl UpdateOutputOperation {\n output: Result<RawVc, TurboTasksExecutionError>,\n mut ctx: impl ExecuteContext,\n ) {\n- let mut task = ctx.task(task_id, TaskData...
2025-07-08T07:02:06
facebook/react
f0cffef0a22f8c1b78d656001af6b12432821f7c
af6e837b60fcdf1ae77e119f63afc4a6cff41459
Fix hook pattern matching for custom hooks
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -476,7 +476,7 @@ export class Environment {\n let resolvedGlobal: Global | null = this.#globals.get(resolvedName) ?? null;\n if (resolvedGlobal === null) {\n // Hack, since we don't track module level ...
2024-02-08T01:34:10
rust-lang/rust
f394d1e6c617439e027fe2fae2b9d581709639db
36058bfc0fc4439c6ce2a741e4c896a0e61dbb6d
Fix lockfile
[ { "path": "src/tools/rust-analyzer/Cargo.lock", "patch": "@@ -3754,15 +3754,3 @@ dependencies = [\n \"memchr\",\n \"time\",\n ]\n-\n-[[patch.unused]]\n-name = \"salsa\"\n-version = \"0.25.2\"\n-\n-[[patch.unused]]\n-name = \"salsa-macro-rules\"\n-version = \"0.25.2\"\n-\n-[[patch.unused]]\n-name = \"salsa...
2026-02-09T05:21:53
golang/go
4c1b8ca98c716f0499bb30fd141aa6d4dec7390c
4c32b1cc753e9005ed7c741bf69d3cb69ee3a56c
cmd/internal/obj/riscv: add support for vector fixed-point arithmetic instructions Add support for vector fixed-point arithmetic instructions to the RISC-V assembler. This includes single width saturating addition and subtraction, averaging addition and subtraction and scaling shift instructions. Change-Id: I9aa27e95...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -863,6 +863,80 @@ start:\n \tVMVVX\t\tX10, V3\t\t\t\t// d741055e\n \tVMVVI\t\t$15, V3\t\t\t\t// d7b1075e\n \n+\t// 31.12.1: Vector Single-Width Saturating Add and Subtract\n+\tVSADDUVV\tV1, V2, V3\t\t\t// d7812082\n+\tVSADDUVV\tV1, V2, V0...
2025-01-05T13:30:30
electron/electron
0212c264cab7a2b8dc2141f429df64396c410ffa
9ccf2275d2e021c44f51cc3719679e927fee10fa
build: fix CRLF endings in messages.json (#38212)
[ { "path": "spec/fixtures/extensions/chrome-i18n/_locales/en/messages.json", "patch": "@@ -1,6 +1,6 @@\n-{\r\n- \"extName\": {\r\n- \"message\": \"chrome-i18n\",\r\n- \"description\": \"Extension name.\"\r\n- }\r\n-}\r\n+{\n+ \"extName\": {\n+ \"message\": \"chrome-i18n\",\n+ \"description\": ...
2023-05-08T18:51:24
vercel/next.js
e4b6c8e2c3fa38551d26326141fe85b618f6df8f
ff5707b95e43cb7f2c99475fa1ab98fcd2821e8c
fix(turbopack): external script should under async module (#81362) Follow up: https://github.com/vercel/next.js/pull/80768 Sorry i miss something, script external should under async module because it needs to execute loadurl function(which is async)
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/external_module.rs", "patch": "@@ -209,7 +209,8 @@ impl Module for CachedExternalModule {\n #[turbo_tasks::function]\n fn is_self_async(&self) -> Result<Vc<bool>> {\n Ok(Vc::cell(\n- self.external_type == CachedExtern...
2025-07-08T00:26:02
rust-lang/rust
81fb703664280626c03428c384695d766be10031
c69e1a04db484db8974904e6f8eb1e8df21a39ba
Fix copy-paste bug: use sub_trace.cause instead of sup_trace.cause in report_sub_sup_conflict In `report_sub_sup_conflict`, when calling `values_str` for `sub_trace.values`, the code was incorrectly passing `sup_trace.cause` instead of `sub_trace.cause`. This is a copy-paste error from the preceding line which correct...
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/region.rs", "patch": "@@ -1020,7 +1020,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n && let Some((sup_expected, sup_found)) =\n self.values_str(sup_trace.values, &sup_trace.cause, err.long_ty_path())\n ...
2026-02-08T03:44:50
golang/go
4c32b1cc753e9005ed7c741bf69d3cb69ee3a56c
6d418096b2dfe2a2e47b7aa83b46748fb301e6cb
runtime: fix plan9 monotonic time, crypto randomness Open /dev/bintime at process start on Plan 9, marked close-on-exec, hold it open for the duration of the process, and use it for obtaining time. The change to using /dev/bintime also sets up for an upcoming Plan 9 change to add monotonic time to that file. If the m...
[ { "path": "src/runtime/env_plan9.go", "patch": "@@ -30,7 +30,7 @@ const (\n func goenvs() {\n \tbuf := make([]byte, envBufSize)\n \tcopy(buf, envDir)\n-\tdirfd := open(&buf[0], _OREAD, 0)\n+\tdirfd := open(&buf[0], _OREAD|_OCEXEC, 0)\n \tif dirfd < 0 {\n \t\treturn\n \t}\n@@ -40,7 +40,7 @@ func goenvs() {\n...
2025-03-11T15:23:24
electron/electron
a6c9aefb4aa37341017359a43d041bcdcacf98e8
13be6dc8b499064fca5501d4cc2c5d9f212f7d3b
chore: fix TrustedTypes policy in `chrome://accessibility` (#38179) chore: fix TrustedTypes policy in chrome://accessibility
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -321,6 +321,10 @@ ElectronAccessibilityUI::ElectronAccessibilityUI(content::WebUI* web_ui)\n base::BindRepeating(&HandleAccessibilityRequestCallback,\n web_ui->GetWebContents()->GetBrowserContext()));\n \n+ ...
2023-05-08T08:39:04
facebook/react
37d901e2b81e12d40df7012c6f8681b8272d2555
5c08662301d99d1305e164c701fe8e4da1bc526c
Remove __self and __source location from elements (#28265) Along with all the places using it like the `_debugSource` on Fiber. This still lets them be passed into `createElement` (and JSX dev runtime) since those can still be used in existing already compiled code and we don't want that to start spreading to DOM a...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -475,18 +475,6 @@ function createElement(\n writable: true,\n value: true, // This element has already been validated on the server.\n });\n- Object.defineProperty(element, '_self', {\n- configurable: false,\n- ...
2024-02-07T21:38:00
vercel/next.js
ff5707b95e43cb7f2c99475fa1ab98fcd2821e8c
cacd2e45d51696e5beab22b23d0db485c557e0ca
fix(CI): Update llvm when building native musl targets (#81392) Tested locally with ``` podman run --platform=linux/amd64 -t -i ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2023-09-17-alpine bash ``` We must ensure llvm16 is removed before installing llvm20 and llvm20-dev, as there's a file conflict between llvm16 and...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -247,7 +247,8 @@ jobs:\n build: >-\n set -ex &&\n apk update &&\n- apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&\n+ apk del llvm &&...
2025-07-07T23:32:41
nodejs/node
74ddce8853e8c3de90f1037940ee5dcf38201b65
da185dd12f788724c667d9fd52faa46e831f5c2f
stream: improve inspector ergonomics PR-URL: https://github.com/nodejs/node/pull/53800 Fixes: https://github.com/nodejs/node/issues/53789 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -2041,8 +2041,8 @@ function readableStreamError(stream, error) {\n assert(stream[kState].state === 'readable');\n stream[kState].state = 'errored';\n stream[kState].storedError = error;\n- stream[kIsClosedPromise].reject(error);\n ...
2024-07-12T18:00:27
golang/go
6d418096b2dfe2a2e47b7aa83b46748fb301e6cb
c6a1dc47297a47e6111e3a00911393c355800023
os: avoid symlink races in RemoveAll on Windows Make the openat-using version of RemoveAll use the appropriate Windows equivalent, via new portable (but internal) functions added for os.Root. We could reimplement everything in terms of os.Root, but this is a bit simpler and keeps the existing code structure. Fixes #...
[ { "path": "src/internal/syscall/unix/constants.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build unix\n+//go:build unix || wasip1\n \n package unix\n ", "additions": 1, "deletions": 1, "langu...
2025-03-28T23:14:43
electron/electron
13be6dc8b499064fca5501d4cc2c5d9f212f7d3b
3a7cfe300a59ad161d08b9da4edf6737d471ec60
test: enable CircleCI's "re-run failed tests only" feature (#38178) * test: enable CircleCI rerun failed *tests* only * . * . * console.log never fails :shrug: * normalize the filtered paths circleci gives us a list of absolute paths here * remove test output check sometimes rerunning only failed test...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -452,7 +452,7 @@ step-get-more-space-on-mac: &step-get-more-space-on-mac\n fi\n background: true\n \n-# On macOS delete all .git directories under src/ expect for\n+# On macOS delete all .git directories under src/ except for\n # third_party/angl...
2023-05-08T08:14:59
facebook/react
f07ac1e2680a26c5b3bf9c651d62c792de71d46d
1beb94133a93a433669a893aef02dd5afec07394
[Flight] Unify plain Server Component and forwardRef under one function (#28261) This used to be trivial but it's no longer trivial. In Fizz and Fiber this is split into renderWithHooks and finishFunctionComponent since they also support indeterminate components. Interestingly thanks to this unification we alw...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -478,6 +478,58 @@ function createLazyWrapperAroundWakeable(wakeable: Wakeable) {\n return lazyType;\n }\n \n+function renderFunctionComponent<Props>(\n+ request: Request,\n+ task: Task,\n+ key: null | string,\n+ Component: (p: Pr...
2024-02-07T00:41:05
nodejs/node
24648b5769dbfa71896fa32a402ddcb8ee348a8d
c126a1f0dc9504218c9b975c02fffc4c92260d92
lib,esm: handle bypass network-import via data: PR-URL: https://github.com/nodejs-private/node-private/pull/522 Refs: https://hackerone.com/bugs?subject=nodejs&report_id=2092749 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> CVE-ID: CVE-2024-22020 P...
[ { "path": "lib/internal/modules/esm/resolve.js", "patch": "@@ -1067,6 +1067,16 @@ function defaultResolve(specifier, context = {}) {\n if (parsed != null) {\n // Avoid accessing the `protocol` property due to the lazy getters.\n protocol = parsed.protocol;\n+\n+ if (protocol === 'data:' &&\n+ ...
2024-07-12T12:48:54
golang/go
c6a1dc47297a47e6111e3a00911393c355800023
b9cbb65384f6bebd58f7a8354759b8c7b1bbb13f
cmd/link: close file in tempdir so Windows can delete it Fixes #73098 Change-Id: I9f5570903071b15df9e4f8a1820414f305db9d35 Reviewed-on: https://go-review.googlesource.com/c/go/+/661915 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Damien Neil <dneil@google.com>...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -1564,6 +1564,7 @@ func TestLinknameBSS(t *testing.T) {\n \tif err != nil {\n \t\tt.Fatalf(\"fail to open executable: %v\", err)\n \t}\n+\tdefer f.Close()\n \tsyms, err := f.Symbols()\n \tif err != nil {\n \t\tt.Fatalf(\"fail to get symbols: %v\", err)", ...
2025-03-31T22:03:14
facebook/react
db120f69ec7a0b8c7f38ca7a1ddb1886de92e465
12d56fca3da06328ac61d86976afa728b97b49d6
Patch devtools before running useMemo function in strict mode (#28249) This fixes a regression https://github.com/facebook/react/pull/25583 where we stopped patching before calling useMemo function. Fixes https://github.com/facebook/react/issues/27989
[ { "path": "packages/react-devtools-shared/src/__tests__/console-test.js", "patch": "@@ -625,6 +625,147 @@ describe('console', () => {\n expect(mockGroupCollapsed.mock.calls[0][0]).toBe('groupCollapsed');\n });\n \n+ it('should double log from useMemo if hideConsoleLogsInStrictMode is disabled in Stri...
2024-02-06T16:45:18
electron/electron
a7adbae543d7caac3d67901158570307927c81d2
f8d534f33e83c6323ed4354e51ef7d736ac24ab1
docs: fix typing of session.setDevicePermissionHandler (#38188)
[ { "path": "docs/api/session.md", "patch": "@@ -1024,7 +1024,7 @@ Passing `null` instead of a function resets the handler to its default state.\n * `details` Object\n * `deviceType` string - The type of device that permission is being requested on, can be `hid`, `serial`, or `usb`.\n * `origin` str...
2023-05-08T07:46:35
golang/go
b9cbb65384f6bebd58f7a8354759b8c7b1bbb13f
eec3745bd7861f447bfe5fe5a27314079d46acec
os,internal/poll: support I/O on overlapped handles not added to the poller Calling syscall.ReadFile and syscall.WriteFile on overlapped handles always need to be passed a valid *syscall.Overlapped structure, even if the handle is not added to a IOCP (like the Go runtime poller). Else, the syscall will fail with ERROR...
[ { "path": "doc/next/6-stdlib/99-minor/os/15388.md", "patch": "@@ -0,0 +1,6 @@\n+On Windows, [NewFile] supports overlapped (a.k.a non-blocking) file handles even\n+when the handle can't be added to the Go runtime I/O Completion Port (IOCP), normally\n+because it is already attached to another IOCP. The I/O o...
2025-03-31T09:43:12
facebook/react
65d95b837e797a0690221dd1824955d3d3afd278
103cddbb9d433b08622c43336b170ffc63acdee3
fix: gate react/jsx-runtime upgrade only for React >= 17 tests (#28256) https://github.com/facebook/react/pull/28252 broke RDT tests with React 16.x. These changes gate the `jsx-runtime` upgrade only for cases when we are testing against React >= 17. Validated with: ``` ./scripts/circleci/download_devtools_...
[ { "path": "package.json", "patch": "@@ -27,6 +27,7 @@\n \"@babel/plugin-transform-modules-commonjs\": \"^7.10.4\",\n \"@babel/plugin-transform-object-super\": \"^7.10.4\",\n \"@babel/plugin-transform-parameters\": \"^7.10.5\",\n+ \"@babel/plugin-transform-react-jsx-source\": \"^7.10.5\",\n ...
2024-02-06T15:03:36
electron/electron
bb490161fbde204c387d7f15ed1f0048925155c8
bc957e394594642c0f49b5e9ef5841622c2f50d7
fix: printing crash when settings invalid (#38165)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -617,7 +617,7 @@ index 82f44b6c90f292772b56253a99578394b5cc2881..91ee0c3d66c33adee346060a0ecd931d\n // Tells the browser printing failed.\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n diff --git a/components/printing/renderer/pri...
2023-05-04T13:10:54
vercel/next.js
7a05d5d2a1710ac2589f369448d621b1bf7b56c2
be0cc7ade5951a55de7da00b11530a3db14535e0
fix(build): improve static path generation performance and fix parameter collisions (#81254) ## Summary • **Performance**: Replace O(n²) parameter deduplication with O(n) Map-based approach • **Architecture**: Rewrite `assignErrorIfEmpty` using [Trie data structure](https://en.wikipedia.org/wiki/Trie) • **Testing**: ...
[ { "path": "packages/next/src/build/static-paths/app.test.ts", "patch": "@@ -7,7 +7,7 @@ import {\n import type { PrerenderedRoute } from './types'\n \n describe('assignErrorIfEmpty', () => {\n- it('should assign throwOnEmptyStaticShell false for a static route', () => {\n+ it('should assign throwOnEmptySt...
2025-07-07T16:47:57
nodejs/node
b6ca3d732a97cadb410b3f0f87ef1fa6b9ab117f
3ad2e1207331f9f7fb8b13d6d26f0680d3e7f239
fs: reduce throwing unnecessary errors on glob PR-URL: https://github.com/nodejs/node/pull/53632 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/fs/glob.js", "patch": "@@ -38,12 +38,30 @@ function lazyMinimatch() {\n const isWindows = process.platform === 'win32';\n const isOSX = process.platform === 'darwin';\n \n+/**\n+ * @param {string} path\n+ * @returns {Promise<DirentFromStats|null>}\n+ */\n async function getDirent(pat...
2024-07-11T18:51:35
golang/go
bfc209518e3f6a15407139d70f31ab4a5dd646c7
391dde29a37f3fd450f7d61e3f220930e0164b89
internal/runtime/maps: speed up small map lookups ~1.7x for unpredictable keys On master, lookups on small Swiss Table maps (<= 8 elements) for non-specialized key types are seemingly a performance regression compared to the Go 1.23 map implementation (reported in #70849). Currently, a linear scan is used for gets in ...
[ { "path": "src/internal/runtime/maps/map.go", "patch": "@@ -439,15 +439,10 @@ func (m *Map) getWithKeySmall(typ *abi.SwissMapType, hash uintptr, key unsafe.Po\n \t\tdata: m.dirPtr,\n \t}\n \n-\th2 := uint8(h2(hash))\n-\tctrls := *g.ctrls()\n+\tmatch := g.ctrls().matchH2(h2(hash))\n \n-\tfor i := uintptr(0);...
2024-12-07T21:17:33
facebook/react
af6e837b60fcdf1ae77e119f63afc4a6cff41459
0277bc4d54437bfb2ff4df7c80b68f3f0eee22a2
Fix destructuring with mixed local/scope declarations Fixes T176436488. The logic for rewriting Destructure instructions was correct, but the visitor implementation was accidentally dropping subsequent Destructure instructions within a block after encountering one that needed a rewrite. Switching to use the transf...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/ExtractScopeDeclarationsFromDestructuring.ts", "patch": "@@ -11,13 +11,17 @@ import {\n IdentifierId,\n InstructionKind,\n Place,\n- ReactiveBlock,\n ReactiveFunction,\n ReactiveInstruction,\n ReactiveScopeBlock,\n+ Reac...
2024-02-06T06:29:53
electron/electron
bc957e394594642c0f49b5e9ef5841622c2f50d7
ee1e6aab3ef6755b4e3f13edc64ca6df6e629553
test: use `await` to call "closeWindow" (#38166) * test: wait for an async "closeWindow" call * fixup! test: wait for an async "closeWindow" call
[ { "path": "spec/api-web-contents-view-spec.ts", "patch": "@@ -4,7 +4,11 @@ import { BaseWindow, WebContentsView } from 'electron/main';\n \n describe('WebContentsView', () => {\n let w: BaseWindow;\n- afterEach(() => closeWindow(w as any).then(() => { w = null as unknown as BaseWindow; }));\n+\n+ afterE...
2023-05-03T22:14:46
vercel/next.js
17c05b67bdea952b1d39b0eb46d87920f40b38df
1a31db0335e1d853fddf7f5d187ca161773ffe01
Always consider `captureOwnerStack` optional (#81370) When running `next build` with a custom `NODE_ENV` (e.g. `test` or `development`), the `captureOwnerStack` method is not defined and may lead to errors if called. This change ensures that we only call `captureOwnerStack` if it is defined, preventing potential runti...
[ { "path": "packages/next/src/server/app-render/dynamic-rendering.ts", "patch": "@@ -664,7 +664,10 @@ function createErrorWithComponentOrOwnerStack(\n componentStack: string\n ) {\n const ownerStack =\n- process.env.NODE_ENV !== 'production' ? React.captureOwnerStack() : null\n+ process.env.NODE_EN...
2025-07-07T13:53:21
nodejs/node
096e44a8a9dd20e3159ee15bc2563c6a58dc344f
97918364f67ff2eafcf89d7a0c1068167094a661
util: fix crashing when emitting new Buffer() deprecation warning #53075 PR-URL: https://github.com/nodejs/node/pull/53089 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.co...
[ { "path": "lib/internal/util.js", "patch": "@@ -37,6 +37,7 @@ const {\n SafeWeakRef,\n StringPrototypeIncludes,\n StringPrototypeReplace,\n+ StringPrototypeStartsWith,\n StringPrototypeToLowerCase,\n StringPrototypeToUpperCase,\n Symbol,\n@@ -515,11 +516,14 @@ function isInsideNodeModules() {\n...
2024-07-11T12:13:20
golang/go
b9934d855c4635edf02092a72802017676abd8eb
5ec76ae5aa965208d820a0bde8f0abd685c17ecc
internal/poll: honor ERROR_OPERATION_ABORTED if pipe is not closed FD.Read converts a syscall.ERROR_OPERATION_ABORTED error to ErrFileClosing. It does that in case the pipe operation was aborted by a CancelIoEx call in FD.Close. It doesn't take into account that the operation might have been aborted by a CancelIoEx c...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -250,3 +250,8 @@ func (fd *FD) writeUnlock() {\n \t\tfd.destroy()\n \t}\n }\n+\n+// closing returns true if fd is closing.\n+func (fd *FD) closing() bool {\n+\treturn atomic.LoadUint64(&fd.fdmu.state)&mutexClosed != 0\n+}", "additions": 5, "del...
2025-03-28T19:38:34
vercel/next.js
33973b104afd387ede021e2473f0d381eb1c6b10
cb1aed8d8fdb050e82ff1d8b696231df836b6308
Fix duplicates in `optimizePackageImports` `effect` packages (#81253) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -1045,11 +1045,10 @@ function assignDefaults(\n '@effect/sql-mssql',\n '@effect/sql-mysql2',\n '@effect/sql-pg',\n- '@effect/sql-squlite-node',\n- '@effect/sql-squlite-bun',\n- '@effect/sql-squlite-wasm',\n- '...
2025-07-07T11:07:31
nodejs/node
97918364f67ff2eafcf89d7a0c1068167094a661
345b3de602aaba24900fdd741187863dbaccc6ce
src: fix error handling in ExportJWKAsymmetricKey Because call sites check IsNothing() on the return value of ExportJWKAsymmetricKey() and ignore the boolean value if the return value is Just (i.e., not nothing), this function must return Nothing() instead of Just(false) when throwing a JavaScript error. PR-URL: http...
[ { "path": "src/crypto/crypto_keys.cc", "patch": "@@ -505,7 +505,7 @@ Maybe<bool> ExportJWKAsymmetricKey(\n case EVP_PKEY_X448: return ExportJWKEdKey(env, key, target);\n }\n THROW_ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE(env);\n- return Just(false);\n+ return Nothing<bool>();\n }\n \n std::shared_ptr<K...
2024-07-10T20:46:33
electron/electron
a26343f3e084028b920a7ea44e6b221350e3546c
d95f9d2c636775946717a95fefee1ada51524a79
fix: falsy transparent shouldn't affect webContents background (#36914)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -519,17 +519,10 @@ WebContents.prototype._callWindowOpenHandler = function (event: Electron.Event,\n event.preventDefault();\n return defaultResponse;\n } else if (response.action === 'allow') {\n- if (typeof response.overrideBrowserWind...
2023-05-02T21:44:34
facebook/react
472854820bfd0058dfc85524051171c7b7c998c1
95ec128399a8b34884cc6bd90a041e03ce5c1844
[Flight] Delete Server Context (#28225) Server Context was never documented, and has been deprecated in https://github.com/facebook/react/pull/27424. This PR removes it completely, including the implementation code. Notably, `useContext` is removed from the shared subset, so importing it from a React Server en...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -48,8 +48,6 @@ import {\n REACT_POSTPONE_TYPE,\n } from 'shared/ReactSymbols';\n \n-import {getOrCreateServerContext} from 'shared/ReactServerContextRegistry';\n-\n export type {CallServerCallback};\n \n type UninitializedModel = str...
2024-02-05T22:39:15
golang/go
5ec76ae5aa965208d820a0bde8f0abd685c17ecc
8f6c083d7bf68a766073c50ceb8ea405a3fe7bed
weak: clarify Pointer equality semantics The docs currently are imprecise about comparisons. This could lead users to believe that objects of the same type, allocated at the same address, could produce weak pointers that are equal to previously-created weak pointers. This is not the case. Weak pointers map to objects,...
[ { "path": "src/weak/pointer.go", "patch": "@@ -23,13 +23,15 @@ import (\n // the lifetimes of separate values (for example, through a map with weak\n // keys).\n //\n-// Two Pointer values always compare equal if the pointers from which they were\n-// created compare equal. This property is retained even af...
2025-01-23T15:51:35
vercel/next.js
de7e13e5eb66c24d6174d85e4590b8c00e0c6b7e
6b5c9548f6f08ea25c37bbdf516e846fd2227522
Remove incorrect PostCSS config type (#81338) ### What? Currently the docs is incorrectly suggesting to type the PostCSS config with types from Tailwind CSS. This pull request removed the wrong types. If desired one can correctly type the config with the [`postcss-load-config`](https://github.com/postcss/postcss-loa...
[ { "path": "docs/01-app/02-guides/tailwind-css.mdx", "patch": "@@ -22,8 +22,7 @@ npm install -D tailwindcss @tailwindcss/postcss postcss\n \n Create a `postcss.config.mjs` file in the root of your project and add the `@tailwindcss/postcss` plugin to your PostCSS configuration:\n \n-```js filename=\"postcss.c...
2025-07-05T23:17:10
facebook/react
195b5e5a24f095256d61a557ad27782193f4ff8d
b79a5289fc21647b444eca397b5a02d5b64f5d2b
Fix sprout
[ { "path": "compiler/packages/sprout/src/SproutTodoFilter.ts", "patch": "@@ -429,6 +429,11 @@ const skipFilter = new Set([\n \"forest/forest-primitive-operations.flow\",\n \"forest/computed-load-props.flow\",\n \"forest/property-load-props.flow\",\n+ \"forest/forest-binding-test\",\n+ \"forest/forest...
2024-02-06T05:51:18
nodejs/node
a848206847504656502253c61e8a996ff96abd5c
fd21dd45d56ed8f3e202dc0aef92378519551b64
src: use Maybe<void> in node::crypto::error With recent versions of V8, it is not necessary to use Maybe<bool> anymore. PR-URL: https://github.com/nodejs/node/pull/53766 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: James M Snell <jasnell@gmail.co...
[ { "path": "src/crypto/crypto_util.cc", "patch": "@@ -29,7 +29,7 @@ using v8::Exception;\n using v8::FunctionCallbackInfo;\n using v8::HandleScope;\n using v8::Isolate;\n-using v8::Just;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Maybe;\n using v8::MaybeLocal;\n@@ -457,9 +457,10 @@ ByteSource ByteS...
2024-07-10T19:48:53
golang/go
8f6c083d7bf68a766073c50ceb8ea405a3fe7bed
26fdb07d4ce58885305283ba18960f582f4eaa73
cmd/link: choose one with larger size for duplicated BSS symbols When two packages declare a variable with the same name (with linkname at least on one side), the linker will choose one as the actual definition of the symbol if one has content (i.e. a DATA symbol) and the other does not (i.e. a BSS symbol). When both ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -432,16 +432,16 @@ func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind in\n \t\treturn i\n \t}\n \t// symbol already exists\n+\t// Fix for issue #47185 -- given two dupok or BSS symbols with\n+\t// different sizes, fa...
2025-03-25T20:55:54
vercel/next.js
6b5c9548f6f08ea25c37bbdf516e846fd2227522
6ba9c21d29d8f3786fcb0ad4c419819ea0ffbd4d
fix(docs): correct section count from 4 to 3 in intro (#81323) The docs mention 4 sections but only list 3: Getting Started, Guides, and API Reference. This updates the "How to use the docs" section to correctly reflect that only 3 sections are listed, not 4. **Before:** The docs are organized into 4 sections: **Af...
[ { "path": "docs/index.mdx", "patch": "@@ -20,7 +20,7 @@ Whether you're an individual developer or part of a larger team, Next.js can hel\n \n ## How to use the docs\n \n-The docs are organized into 4 sections:\n+The docs are organized into 3 sections:\n \n - [Getting Started](/docs/app/getting-started): Ste...
2025-07-05T23:14:14
facebook/react
88b0809447d3c20af8773a3c060ee5ace0d695f8
596827f6a72f6c4df0181e941c524fcbd0048914
fix: partially revert jest setup config removal to fix regression tests (#28247) Partially reverting what has been removed in https://github.com/facebook/react/pull/28186. We need `'scheduler/tracing'` mock for React >= 16.8. The error: ``` Invariant Violation: It is not supported to run the profiling version o...
[ { "path": "scripts/jest/devtools/config.build-devtools-regression.js", "patch": "@@ -31,6 +31,8 @@ if (REACT_VERSION) {\n '^react-dom/client$'\n ] = `<rootDir>/build/${NODE_MODULES_DIR}/react-dom`;\n }\n+\n+ setupFiles.push(require.resolve('./setupTests.build-devtools-regression'));\n }\n \n mo...
2024-02-05T17:07:41
nodejs/node
33a6d1fe3a92d81df33024525fd3407744611afc
059f2f43b814619cdc0f93cf3683bd8f5c349c6a
crypto: remove ERR_CRYPTO_SCRYPT_INVALID_PARAMETER It is confusing to have both ERR_CRYPTO_SCRYPT_INVALID_PARAMETER and ERR_CRYPTO_INVALID_SCRYPT_PARAMS. The former was the original error code, added in 371103dae8b97264471e17de1989199ffcd2718e, but parameter validation gradually changed and now produces ERR_CRYPTO_INV...
[ { "path": "doc/api/errors.md", "patch": "@@ -1010,7 +1010,8 @@ An invalid message length was provided.\n added: v15.0.0\n -->\n \n-Invalid scrypt algorithm parameters were provided.\n+One or more [`crypto.scrypt()`][] or [`crypto.scryptSync()`][] parameters are\n+outside their legal range.\n \n <a id=\"ERR_...
2024-07-10T16:38:00
golang/go
656b5b3abe25d026725edff49edbdaa9862c9d77
e6c2e12c63db5b24724db873009373af413cd1ea
internal/poll: don't skip empty writes on Windows Empty writes might be important for some protocols. Let Windows decide what do with them rather than skipping them on our side. This is inline with the behavior of other platforms. While here, refactor the Read/Write/Pwrite methods to reduce one indentation level and ...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -434,43 +434,40 @@ func (fd *FD) Read(buf []byte) (int, error) {\n \t\treturn 0, err\n \t}\n \tdefer fd.readUnlock()\n+\tif fd.isFile {\n+\t\tfd.l.Lock()\n+\t\tdefer fd.l.Unlock()\n+\t}\n \n \tif len(buf) > maxRW {\n \t\tbuf = buf[:maxRW]\n \t}\n \n ...
2025-03-28T09:39:49