repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
4d047b28be3227a1f4ece6679677b7392de0cb02
3513e7d7d32e9a3e3271016477be2589c4314031
fix: add the missing comma in the document example (#83932) ### What? This PR fixes a missing comma in the function parameter in `03-api-reference/03-file-conventions/layout.mdx`. The comma between `children` and `params` parameters was missing in the documentation example, showing incorrect syntax. ### Why? The mis...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/layout.mdx", "patch": "@@ -61,7 +61,7 @@ A promise that resolves to an object containing the [dynamic route parameters](/\n \n ```tsx filename=\"app/dashboard/[team]/layout.tsx\" switcher\n export default async function Layout({\n- children\n+ ch...
2025-09-18T08:11:46
golang/go
7ca34599ec4df8a21b7d4580f7e1c716c44f7e0f
82d056ddd7378ee23ab073c7a195d92cfc4a59d6
[dev.simd] simd, cmd/compile: generated files to add 'blend' and 'blendMasked' Generated by arch/internal/simdgen CL 693175 These methods are not public because of simdgen-induced name/signature issues, and because their addition was motivated by the need for emulation tools. The specific name signature problems are...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -589,7 +589,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPXORDMasked512,\n \t\tssa.OpAMD64VPXORQMasked128,\n \t\tssa.OpAMD64VPXORQMasked256,\n-\t\tssa.OpAMD64VPXORQMasked512:\n+\t\tssa.OpAMD64VPXORQMask...
2025-08-04T19:19:54
electron/electron
ed9fec7da413533788d57a48c97e36dedfc6003c
c4aeb1724576d384bac84e5cd53e6b1f64b86e41
fix: `nativeImage.createThumbnailFromPath` and `shell.openExternal` in renderer (#41875) * fix: nativeImage.createThumbnailFromPath in renderer * also fix shell.openExternal
[ { "path": "shell/common/api/electron_api_native_image_mac.mm", "patch": "@@ -14,6 +14,7 @@\n \n #include \"base/apple/foundation_util.h\"\n #include \"base/strings/sys_string_conversions.h\"\n+#include \"base/task/bind_post_task.h\"\n #include \"gin/arguments.h\"\n #include \"shell/common/gin_converters/ima...
2024-04-19T13:43:01
facebook/react
a8b465c6e0576b9ac490c2e2762c273db314dfcf
d878489431e2c6cf69982b51403f8e1f68f4e73d
fix[react-devtools]: restore original args when recording errors (#30091) ## Summary When DevTools frontend and backend are connected, we patch console in 2 places: - `patch()`, when renderer is attached to: - listen to any errors / warnings emitted - append component stack if requested by the user - `patc...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -51,7 +51,7 @@ const STYLE_DIRECTIVE_REGEX = /^%c/;\n // method has been overridden by the patchForStrictMode function.\n // If it has we'll need to do some special formatting of the arguments\n // so the console color stays con...
2024-06-26T13:17:09
nodejs/node
fd8de670da4d2a80e21e0f8a12ec7a6b0a13014d
0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06
stream: catch and forward error from dest.write PR-URL: https://github.com/nodejs/node/pull/55270 Fixes: https://github.com/nodejs/node/issues/54945 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ja...
[ { "path": "lib/internal/streams/readable.js", "patch": "@@ -1004,10 +1004,15 @@ Readable.prototype.pipe = function(dest, pipeOpts) {\n src.on('data', ondata);\n function ondata(chunk) {\n debug('ondata');\n- const ret = dest.write(chunk);\n- debug('dest.write', ret);\n- if (ret === false) {...
2024-12-19T11:49:34
golang/go
e1fd4faf914b914856dfb0be1ad26cd4cef4a9ae
bcd25c79aa5675d3e5d28c09715b8147906da006
runtime: fix godoc comment for inVDSOPage Change-Id: I7dcab0c915a748e52c5c689c1cb774f486d2b9e6 Reviewed-on: https://go-review.googlesource.com/c/go/+/693195 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project...
[ { "path": "src/runtime/vdso_linux.go", "patch": "@@ -285,7 +285,7 @@ func vdsoauxv(tag, val uintptr) {\n \t}\n }\n \n-// vdsoMarker reports whether PC is on the VDSO page.\n+// inVDSOPage reports whether PC is on the VDSO page.\n //\n //go:nosplit\n func inVDSOPage(pc uintptr) bool {", "additions": 1, ...
2025-08-05T10:57:42
electron/electron
c4aeb1724576d384bac84e5cd53e6b1f64b86e41
67ba30402bcbf6942fa0846927f2d088cf0a749d
fix: EINVAL when spawning cmd files on Windows (#41893) fix: EINVAL when spawning on Windows
[ { "path": "script/lint.js", "patch": "@@ -75,7 +75,8 @@ function spawnAndCheckExitCode (cmd, args, opts) {\n \n function cpplint (args) {\n args.unshift(`--root=${SOURCE_ROOT}`);\n- const result = childProcess.spawnSync(IS_WINDOWS ? 'cpplint.bat' : 'cpplint.py', args, { encoding: 'utf8', shell: true });\...
2024-04-19T13:27:58
facebook/react
d878489431e2c6cf69982b51403f8e1f68f4e73d
4bfab0783204810cb51b9dda24464bb57777eb97
[compiler][ez] PrintHIR prints optional flag for debugging Adding the equivalent of [PrintReactiveFunction:OptionalExpression](https://github.com/facebook/react/blob/f5d2feb4f069a36140d5e605f5eebc52badcc214/compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts#L218) to `PrintHIR`. ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -194,7 +194,7 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case \"optional\": {\n- value = `[${terminal.id}] Optional test:bb${terminal.test} fallth...
2024-06-25T20:06:21
nodejs/node
0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06
756077867b4901377c11abd5840e040f9e0d135e
doc: fix links in `module.md` PR-URL: https://github.com/nodejs/node/pull/56283 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -1159,13 +1159,13 @@ validating the import attributes.\n \n The final value of `format` must be one of the following:\n \n-| `format` | Description | Acceptable types for `source` returned by `load` |\n-| ----------...
2024-12-19T10:34:42
golang/go
bcd25c79aa5675d3e5d28c09715b8147906da006
b0945a54b5ec65f79ad722d62f8c3ed62ba0b9d9
cmd/compile: allow StructSelect [x] of interface data fields for x>0 As of CL 681937 we can now have structs which are pointer shaped, but their pointer field is not the first field, like struct{ struct{}; *int }. Fixes #74888 Change-Id: Idc80f6b1abde3ae01437e2a9cadb5aa23d04b806 Reviewed-on: https://go-review.google...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -98,7 +98,7 @@\n // Some of these are copied from generic.rules\n \n (IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(StructSelect (IData x)) => (IData x)\n \n (StructSelect [i] x:(StructMak...
2025-08-05T20:37:21
electron/electron
0222686e9af18c673435afa8418450da2319a2de
bf754a3cae84fba9896011320c09c0fe554886b2
docs: update build docs,support Powershell on Windows (#41567) * docs: update build docs,support Powershell on Windows * chore: fix capitalization
[ { "path": "docs/development/build-instructions-gn.md", "patch": "@@ -110,20 +110,49 @@ $ export CHROMIUM_BUILDTOOLS_PATH=`pwd`/buildtools\n On Windows:\n \n ```sh\n+# cmd\n $ cd src\n $ set CHROMIUM_BUILDTOOLS_PATH=%cd%\\buildtools\n+\n+# PowerShell\n+$ cd src\n+$ $env:CHROMIUM_BUILDTOOLS_PATH = \"$(Get-Loc...
2024-04-17T22:46:52
facebook/react
7d9861e70642719b120a5236ade5124912e42a92
9262761f1c25bfe52a4585419fad16dd01a07424
[compiler][hir] Correctly remove non-existent terminal preds when pruning labels Missed this initially in `pruneUnusedLabelsHIR`. It wasn't an active bug as `preds` wasn't referenced by later passes, until #30079 ghstack-source-id: 3e151b74c31554299e870f001c0ac3f72706318c Pull Request resolved: https://github.com/fac...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -13,6 +13,7 @@ import {\n HIRFunction,\n ReactiveFunction,\n assertConsistentIdentifiers,\n+ assertTerminalPredsExist,\n assertTerminalSuccessorsExist,\n assertValidBlockNesting,\n assertValidMuta...
2024-06-25T20:06:21
nodejs/node
756077867b4901377c11abd5840e040f9e0d135e
60bd4fd2cc7d59440a8b55199dbc060f82655457
build: build v8 with -fvisibility=hidden on macOS V8 should be built with -fvisibility=hidden, otherwise the resulting binary would contain unnecessary symbols. In particular, on macOS, this leads to 5000+ weak symbols resolved at runtime, leading to a startup regression. On macOS this also reduces the binary size ab...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -41,6 +41,19 @@\n 'AdditionalOptions': ['/utf-8']\n }\n },\n+ 'conditions': [\n+ ['OS==\"mac\"', {\n+ # Hide symbols that are not explicitly exported with V8_EXPORT.\n+ # TODO(joyeecheung): enable it on other platform...
2024-12-19T03:24:51
rust-lang/rust
f2a134b403c614e9529869d9d519602ae2a3ed58
34d0b12346b374951bd2d3990c9ff61a3bc3dc1e
remove `no-rustfix` marker for tests
[ { "path": "tests/ui/join_absolute_paths.1.fixed", "patch": "@@ -0,0 +1,36 @@\n+#![allow(clippy::needless_raw_string_hashes)]\n+#![warn(clippy::join_absolute_paths)]\n+\n+use std::path::{Path, PathBuf};\n+\n+fn main() {\n+ let path = Path::new(\"/bin\");\n+ path.join(\"sh\");\n+ //~^ join_absolute_p...
2026-02-22T12:43:54
vercel/next.js
7b14bb709a399948d6f36e231053409636d9d515
c4603d2abe7ed8f70843bd62ddeae391b558e9c4
Turbopack: fix double codegen of some merged modules (#83886) This fixes double-codegen and re-parse (due to recomputation). Previously, `get_batch_group` could return some of the original JS modules, while `chunkable_items` was correctly getting the replaced `MergedEcmascriptModule`s. This cause modules to be code...
[ { "path": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs", "patch": "@@ -1,4 +1,4 @@\n-use std::{cell::RefCell, collections::HashSet};\n+use std::{cell::RefCell, collections::HashSet, sync::atomic::AtomicBool};\n \n use anyhow::{Context, Result};\n use rustc_hash::FxHashMap;\n@@ -20,7 +20,8 @@ us...
2025-09-17T20:54:46
golang/go
af0c4fe2ca51918bd82231ac48a28a0d0ef15c98
e73afaae69bb6f098e3c1dbd98cfe134843910a1
runtime: save scalar registers off stack in amd64 async preemption Asynchronous preemption must save all registers that could be in use by Go code. Currently, it saves all of these to the goroutine stack. As a result, the stack frame requirements of asynchronous preemption can be rather high. On amd64, this requires 3...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -554,6 +554,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }", "additions": 2, "deletions": 0, "language": "Go" }, { "path": "src/runtime/lockrank.go", "patch": "@@ -...
2025-04-30T02:55:40
electron/electron
bf754a3cae84fba9896011320c09c0fe554886b2
7120c58297f8185c22d4289ff710a1189e537750
fix: make window.flashFrame(bool) flash continuously on macOS (#41391) fix: window.flashFrame to flash continuously on mac This brings the behavior to parity with Windows and Linux. Prior behavior: The first `flashFrame(true)` bounces the dock icon only once (using the [NSInformationalRequest](https://developer.app...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -21,6 +21,10 @@ encoded data returned from this function now matches it.\n \n See [crbug.com/332584706](https://issues.chromium.org/issues/332584706) for more information.\n \n+### Behavior Changed: `window.flashFrame(bool)` will flash dock icon continuousl...
2024-04-17T16:42:34
nodejs/node
e477978dd4d728705e964d19fb81e8c4063275c2
0d005119edbeac0f986a67e0c12873f7fd126022
doc: fix color contrast issue in light mode Attributes are being highlighted as #f00 on a background of #f2f2f2. That's a color contrast of 3.98:1, failing to meet the 4.5:1 requirement of WCAG 2.1 AA. This changes the attribute color to #d00, which has a color contrast of 5.09:1 meeting the 4.5:1 requirement. PR-URL...
[ { "path": "doc/api_assets/hljs.css", "patch": "@@ -49,7 +49,7 @@\n color: #808080;\n }\n .hljs-attr {\n- color: #f00;\n+ color: #d00;\n }\n .hljs-symbol,\n .hljs-bullet,", "additions": 1, "deletions": 1, "language": "CSS" } ]
2024-12-18T16:19:08
facebook/react
86d1a6f54aebb2854aab0033bb57865add9f440d
4d11e1e88d6be1c244cb8ae76c377eaf195167ec
[compiler][rewrite] Patch logic for aligning scopes to non-value blocks Our previous logic for aligning scopes to block scopes constructs a tree of block and scope nodes. We ensured that blocks always mapped to the same node as their fallthroughs. e.g. ```js // source a(); if (...) { b(); } c(); // HIR bb0: a() if ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts", "patch": "@@ -22,8 +22,10 @@ import {\n mapTerminalSuccessors,\n terminalFallthrough,\n } from \"../HIR/visitors\";\n+import { retainWhere_Set } from \"../Utils/utils\";\n import { getPla...
2024-06-25T20:03:58
vercel/next.js
4d6abb6039f08ab2d75a41a08a063410997a6bb0
f2ebb0701989c0d2456b8fd98a9267358d5ed0bb
chore: Fix test snapshot (#83901) A new version of sharp was released a few hours ago, which broke the tests: ``` expect(received).toMatchInlineSnapshot(snapshot) Snapshot name: `next-server-nft should not trace too many files in next-server.js.nft.json 1` - Snapshot - 8 + Received + 3 @@ -1,22 +1,18 @@ [ + "...
[ { "path": "test/production/next-server-nft/next-server-nft.test.ts", "patch": "@@ -48,14 +48,14 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n .map((file: string) => {\n // Normalize sharp, different architectures have different files\n if...
2025-09-17T18:54:54
golang/go
c0025d5e0b3f6fca7117e9b8f4593a95e37a9fa5
4ee0df8c466861bcd258ec55b58283f276d3b3d5
go/parser: correct comment in expectedErrors If `here` were already the start of the comment, then the `pos = here` assignment would be redundant. Since pos is already the start of the comment. Change-Id: I793334988951ae5441327cb62d7524b423155b74 Reviewed-on: https://go-review.googlesource.com/c/go/+/693295 Reviewed-...
[ { "path": "src/go/parser/error_test.go", "patch": "@@ -88,7 +88,7 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \t\t\ts := errRx.FindStringSubmatch(lit)\n \t\t\tif len(s) == 3 {\n \t\t\t\tif s[1] == \"HERE\" {\n-\t\t\t\t\tpos = here // start of comment\n+\t\t\t\t\tpos...
2025-08-05T16:51:09
nodejs/node
8253290d6019f8594118395301294e77d4d35f57
7302b6fa3d0293405bd8ee864871a50ed6fea18b
build: fix missing fp16 dependency in d8 builds PR-URL: https://github.com/nodejs/node/pull/56266 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/v8_gypfiles/d8.gyp", "patch": "@@ -21,6 +21,7 @@\n 'v8.gyp:v8_libplatform',\n 'v8.gyp:generate_bytecode_builtins_list',\n 'v8.gyp:v8_abseil',\n+ 'v8.gyp:fp16',\n ],\n # Generated source files need this explicitly:\n 'include_dirs+': [", "...
2024-12-17T22:18:32
rust-lang/rust
bde075b6f34b06938c4349832a593ef129d00a97
e0cb264b814526acb82def4b5810e394a2ed294f
Fix ICE when an associated type or const is wrongly marked as `final` Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
[ { "path": "compiler/rustc_ast_lowering/src/item.rs", "patch": "@@ -1088,9 +1088,18 @@ impl<'hir> LoweringContext<'_, 'hir> {\n }\n };\n \n- let (defaultness, _) = self.lower_defaultness(i.kind.defaultness(), has_value, || {\n- hir::Defaultness::Default { has_value }\n- ...
2026-02-22T15:42:15
electron/electron
7120c58297f8185c22d4289ff710a1189e537750
b118c70f77e35b145fa201c37b98e9336f3cedd3
chore: bump node to v20.12.2 (main) (#41710) * chore: bump node in DEPS to v20.12.0 * chore: update build_add_gn_build_files.patch * chore: update patches * chore: bump node in DEPS to v20.12.1 * chore: update patches * build: encode non-ASCII Latin1 characters as one byte in JS2C https://github.com/...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '125.0.6412.0',\n 'node_version':\n- 'v20.11.1',\n+ 'v20.12.2',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-04-17T16:39:13
facebook/react
4d11e1e88d6be1c244cb8ae76c377eaf195167ec
133ada72549b9aa01a0bc3df2b1c9bb341e861fd
[compiler][fixtures] test repros: codegen, alignScope, phis ghstack-source-id: 04b1526c8567f8b7b59d198f022d10cf837e4c5b Pull Request resolved: https://github.com/facebook/react/pull/29878 The AlignReactiveScope bug should be simplest to fix, but it's also caught by an invariant assertion. I think a fix could be eithe...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-array-concat-should-capture.expect.md", "patch": "@@ -0,0 +1,72 @@\n+\n+## Input\n+\n+```javascript\n+import { mutate } from \"shared-runtime\";\n+\n+/**\n+ * Fixture showing why `concat` needs to capture both the c...
2024-06-25T20:03:57
vercel/next.js
be6e4bf4bf7275f3f7720cdb432c19f7ecb5dba7
12e64cf0ae6160c94c4fe92457bfe799abe50254
Upgrade sharp dependency to version ^0.34.4 (#83892) ## ✅ Sharp Dependency Upgrade to Version ^0.34.4 - LOCKFILE FIXED ### Task Summary: Successfully upgraded the `sharp` dependency from version `^0.34.3` to `^0.34.4` and **fixed the pnpm lockfile issue** by running `pnpm install` to update the lockfile. ### ✅ Compl...
[ { "path": "packages/next/package.json", "patch": "@@ -131,7 +131,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.3\"\n+ \"sharp\": \"^0.34.4\"\n },\n \"devDependencies\": {\n \"@ampproject/toolbox-optimizer\": \"2.8.3\",", "additions": 1, "deletions": 1, "...
2025-09-17T16:42:33
nodejs/node
a73c41c51e7711086b9801afd5e91ae2f96a7694
6012a4e9a2733b25a7023baa0a58bef85c9ebc5f
sqlite: aggregate constants in a single property PR-URL: https://github.com/nodejs/node/pull/56213 Fixes: https://github.com/nodejs/node/issues/56193 Refs: https://github.com/nodejs/node/issues/56193 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yongsheng Zhan...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -482,11 +482,19 @@ exception.\n | `TEXT` | {string} |\n | `BLOB` | {Uint8Array} |\n \n-## SQLite constants\n+## `sqlite.constants`\n \n-The following constants are exported by the `node:sqlite` module.\n+<!-- YAML\n+added: REPLACEME\n+-->...
2024-12-17T17:36:58
golang/go
4ee0df8c466861bcd258ec55b58283f276d3b3d5
a2c45f0eb1f281ed39c5111dd0fe4b2728f11cf3
cmd: remove dead code Fixes #74076 Change-Id: Icc67b3d4e342f329584433bd1250c56ae8f5a73d Reviewed-on: https://go-review.googlesource.com/c/go/+/690635 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Commit-Queue: Alan Donovan <ad...
[ { "path": "src/cmd/asm/internal/arch/loong64.go", "patch": "@@ -23,18 +23,6 @@ func jumpLoong64(word string) bool {\n \treturn false\n }\n \n-// IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is\n-// one of the MUL/DIV/REM instructions that require special handling.\n-func IsLoon...
2025-07-26T08:46:22
rust-lang/rust
dbf337f5022d3cc8344717eb7018953c1840ff07
e883143db0dc1897148ed92de642bcadccbd8f84
Fix another case where we forgot to put the type param for `PartialOrd` and `PartialEq` in builtin derives
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/builtin_derive.rs", "patch": "@@ -35,6 +35,24 @@ fn coerce_pointee_new_type_param(trait_id: TraitId) -> TypeParamId {\n })\n }\n \n+fn trait_args(trait_: BuiltinDeriveImplTrait, self_ty: Ty<'_>) -> GenericArgs<'_> {\n+ match trait_ {\n+ Buil...
2026-02-22T14:58:09
electron/electron
b428315c6dd9aea97611ab3ef98145b870ef33ae
c670e38b4b14d0286e0ae04cb7f63987beb5e044
perf: remove unnecessary `.c_str()` calls (#41869) * perf: remove unnecessary c_str() call when invoking promise.RejectWithErrorMessage() RejectWithErrorMessage() takes a std::string_view * perf: remove unnecessary c_str() call when invoking Environment::SetVar() the val arg to Environment::SetVar() takes a c...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -462,8 +462,7 @@ void OnClientCertificateSelected(\n return;\n \n auto certs = net::X509Certificate::CreateCertificateListFromBytes(\n- base::as_bytes(base::make_span(data.c_str(), data.size())),\n- net::X509Certificate::FORMAT_...
2024-04-16T23:48:54
facebook/react
133ada72549b9aa01a0bc3df2b1c9bb341e861fd
708d8f8c495e2456b91de96f3d20248693ee9ce7
Read constructor name more carefully (#29954) ## Summary Sometimes `constructor` happens to be the name of an unrelated property, or we may be dealing with a `Proxy` that intercepts every read. Verify the constructor is a function before using its name, and reset the name anyway if it turns out not to be seriali...
[ { "path": "packages/react-devtools-shared/src/hydration.js", "patch": "@@ -84,7 +84,9 @@ function createDehydrated(\n preview_long: formatDataForPreview(data, true),\n preview_short: formatDataForPreview(data, false),\n name:\n- !data.constructor || data.constructor.name === 'Object'\n+ ...
2024-06-25T18:30:28
vercel/next.js
bc9fe492dbd6aab28d0786c7abf45f2e7e7e0a95
f3537a0626c08c532140fff379249928d9475363
fix: correct typo 'incomming' to 'incoming' in with-mqtt-js example (#83887) ### What? This PR fixes a typo in the `with-mqtt-js` example (`examples/with-mqtt-js/app/page.tsx`): all occurrences of "incomming" have been corrected to "incoming" in variables, refs, and JSX headings. ### Why? The previous spelling "incom...
[ { "path": "examples/with-mqtt-js/app/page.tsx", "patch": "@@ -5,18 +5,15 @@ import type { MqttClient } from \"mqtt\";\n import useMqtt from \"@/lib/useMqtt\";\n \n export default function Home() {\n- const [incommingMessages, setIncommingMessages] = useState<any[]>([]);\n+ const [incomingMessages, setInco...
2025-09-17T15:38:49
nodejs/node
6012a4e9a2733b25a7023baa0a58bef85c9ebc5f
5a868b5b30e551d375c73d65013883e6078bba84
tools: fix `node:` enforcement for docs PR-URL: https://github.com/nodejs/node/pull/56284 Refs: https://github.com/nodejs/node/pull/56185 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/eslint.config_partial.mjs", "patch": "@@ -3,7 +3,9 @@ import {\n noRestrictedSyntaxCommonLib,\n requireEslintTool,\n } from '../tools/eslint/eslint.config_utils.mjs';\n-import { builtinModules as builtin } from 'node:module';\n+import { builtinModules } from 'node:module';\n+\n+const buil...
2024-12-17T14:57:37
golang/go
cd55f86b8dcfc139ee5c17d32530ac9e758c8bc0
21ab0128b62658ba3e325586f45bb781bee55fda
cmd/compile: allow multi-field structs to be stored directly in interfaces If the struct is a bunch of 0-sized fields and one pointer field. Fixes #74092 Change-Id: I87c5d162c8c9fdba812420d7f9d21de97295b62c Reviewed-on: https://go-review.googlesource.com/c/go/+/681937 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -921,8 +921,8 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect...
2025-06-15T03:10:50
vercel/next.js
1a7041ac7348c82b8c02da011d30947684df24cc
3e5c8efbf888d4676c834d16d20aa6b9898d6169
Turbopack: only generate error string in error case (#83884) Don't create gigabytes of unused strings here.
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs", "patch": "@@ -492,9 +492,12 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n let after_index = lists.len();\n lists.push(after_list.clone());\n ...
2025-09-17T13:09:10
nodejs/node
ca96c8dcbee20297c3a771d0b21942df1d87b3ec
6536978726f1bffa08a03d7b7cb0826960605481
deps: update libuv to 1.49.2 Fixes: https://github.com/nodejs/node/issues/56137 Refs: https://github.com/nodejs/node/pull/56223 PR-URL: https://github.com/nodejs/node/pull/56224 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -588,3 +588,5 @@ Raihaan Shouhell <raihaanhimself@gmail.com>\n Rialbat <miha-wead@mail.ru>\n Adam <adam@NetBSD.org>\n Poul T Lomholt <ptlomholt@users.noreply.github.com>\n+dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\n+Thad House <ThadHouse@us...
2024-12-17T13:06:51
golang/go
a3295df873bb22b3ba427124b1220370a5ca5cdb
bd082857a55b81acfd5b341c41dd90e29c159bd7
cmd/compile/internal/ssa: Use transitive properties for len/cap Remove the special casing for len/cap and rely on the posets. After removing the special logic, I ran `go build -gcflags='-d ssa/prove/debug=2' all` to verify my results. During this, I found 2 common cases where the old implicit unsigned->signed domain ...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -409,12 +409,6 @@ type factsTable struct {\n \tlimits []limit // indexed by value ID\n \tlimitStack []limitFact // previous entries\n \trecurseCheck []bool // recursion detector for limit propagation\n-\n-\t// For each slice s,...
2025-06-04T08:22:21
vercel/next.js
3e5c8efbf888d4676c834d16d20aa6b9898d6169
a32aed998a1c2d9700ead862d3bd896b25600d5b
Turbopack: delete broken hmr benchmark (#83882) ### What? The benchmark is very broken: * It doesn't await the run_once, so the code never runs * project_path is incorrect so it doesn't find routes * The returned Duration is never used as divan doesn't support custom benches * `hmr_update` doesn't wait for an HMR up...
[ { "path": ".github/workflows/turbopack-benchmark.yml", "patch": "@@ -27,29 +27,6 @@ env:\n TURBO_TOKEN: ${{ secrets.HOSTED_TURBO_TOKEN }}\n \n jobs:\n- benchmark-tiny:\n- name: Benchmark Rust Crates (tiny)\n- runs-on: ubuntu-latest\n- steps:\n- - uses: actions/checkout@v4\n-\n- - name:...
2025-09-17T12:16:31
nodejs/node
b171afefb61c6c0f54fe1421438ffffbdd0c9a33
c39875a32df75b08b457d7fed46eef1c23e5a31c
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "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.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n...
2024-12-16T10:11:22
electron/electron
c670e38b4b14d0286e0ae04cb7f63987beb5e044
6aa9a003c8e3df7459dc09cdf987e59a44c3ac56
chore: bump chromium to 125.0.6412.0 (main) (#41610) * chore: bump chromium in DEPS to 124.0.6361.0 * chore: bump chromium in DEPS to 124.0.6363.0 * chore: update patches Manually apply printing.patch w/no code changes due to upstream shear. Xref: https://chromium-review.googlesource.com/c/chromium/src/+/534...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -56,7 +56,7 @@ executors:\n # 2xlarge should not be used directly, use the pipeline param instead\n enum: [\"medium\", \"electronjs/aks-linux-medium\", \"xlarge\", \"electronjs/aks-linux-large\", \"2xlarge\"]\n docker:\n- - image: ...
2024-04-15T22:10:32
golang/go
bd082857a55b81acfd5b341c41dd90e29c159bd7
2b622b05a97bf785e97a3c241270cb6580d65ef7
doc: fix typo in go memory model doc Fixes a typo where originally "may by" was written where the intent was "may be". Change-Id: Ia5ba51a966506395c41b17ca28d59f63bd487f3e Reviewed-on: https://go-review.googlesource.com/c/go/+/693075 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <d...
[ { "path": "doc/go_mem.html", "patch": "@@ -231,7 +231,7 @@ <h2 id=\"restrictions\">Implementation Restrictions for Programs Containing Data R\n \n <p>\n A read of an array, struct, or complex number\n-may by implemented as a read of each individual sub-value\n+may be implemented as a read of each individual...
2025-08-04T18:33:05
facebook/react
8971381549a80d476b07639833e6b38eaaa75a40
f5d2feb4f069a36140d5e605f5eebc52badcc214
[compiler] Enable sourceMaps in tsconfig (#30064) With this, we can set a `debugger` breakpoint and we'll break into the source code when running tests with snap. Without this, we'd break into the transpiled js code.
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -27,7 +27,7 @@ export function watchSrc(\n const host = ts.createWatchCompilerHost(\n configPath,\n ts.convertCompilerOptionsFromJson(\n- { module: \"commonjs\", outDir: \"dist\" },\n+ { module: \"commonjs\", outDir: \"...
2024-06-25T16:01:43
vercel/next.js
d054cac6e28a22ed817c200dbfe144c035bb809f
8fe8fbc322167ce1a284b07c890043216b8ac069
refactor: remove isRevalidate from work store (#83859) With the refactor in #83858 there's no longer a reason to distinguish between `isRevalidate` and `isStaticGeneration` and most likely doing so would be a bug, as you'd likely want to apply the same handling to build time generation that you would during a later re...
[ { "path": "packages/next/src/build/static-paths/app.ts", "patch": "@@ -828,7 +828,6 @@ export async function buildAppStaticPaths({\n incrementalCache,\n cacheLifeProfiles,\n supportsDynamicResponse: true,\n- isRevalidate: false,\n experimental: {\n cacheComponents,\n ...
2025-09-17T02:15:46
nodejs/node
c39875a32df75b08b457d7fed46eef1c23e5a31c
bc64114ebfef9360b5b78e3119807d05c2c940a0
doc: clarify util.aborted resource usage PR-URL: https://github.com/nodejs/node/pull/55780 Fixes: https://github.com/nodejs/node/issues/55340 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jason Zhang <x...
[ { "path": "doc/api/util.md", "patch": "@@ -2248,39 +2248,55 @@ added:\n > Stability: 1 - Experimental\n \n * `signal` {AbortSignal}\n-* `resource` {Object} Any non-null entity, reference to which is held weakly.\n+* `resource` {Object} Any non-null object tied to the abortable operation and held weakly.\n+ ...
2024-12-15T21:56:47
electron/electron
6aa9a003c8e3df7459dc09cdf987e59a44c3ac56
2a6ad42113e8f77ada68d71581c479506a13e364
fix: stop using std::vector<const uint8_t> in ProcessingSingleton (#41832)
[ { "path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "patch": "@@ -13,7 +13,7 @@ app.requestSingleInstanceLock API so that users can pass in a JSON\n object for the second instance to send to the first instance.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser...
2024-04-15T17:32:48
golang/go
5ab9f23977694ab87614fd30e081d294eb313efd
fcc036f03b07e58f76ed94bc9a9483ddef96f81c
cmd/compile, runtime: add checkptr instrumentation for unsafe.Add Fixes #74431 Change-Id: Id651ea0b82599ccaff8816af0a56ddbb149b6f89 Reviewed-on: https://go-review.googlesource.com/c/go/+/692015 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/cmd/compile/internal/walk/expr.go", "patch": "@@ -131,6 +131,14 @@ func walkExpr1(n ir.Node, init *ir.Nodes) ir.Node {\n \t\tn := n.(*ir.BinaryExpr)\n \t\tn.X = walkExpr(n.X, init)\n \t\tn.Y = walkExpr(n.Y, init)\n+\t\tif n.Op() == ir.OUNSAFEADD && ir.ShouldCheckPtr(ir.CurFunc, 1) {\n+\t\t\t/...
2025-07-29T11:45:23
facebook/react
f5d2feb4f069a36140d5e605f5eebc52badcc214
89580f209ce68ae9e266e309dfeb1625b434fb58
[compiler] Fix assignment within for update expression When converting value blocks from HIR to ReactiveFunction, we have to drop StoreLocal assignments that represent the assignment of the phi, since ReactiveFunction supports compound expressions. These StoreLocals are only present to represent the conditional assign...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/BuildReactiveFunction.ts", "patch": "@@ -921,14 +921,26 @@ class Driver {\n });\n } else if (defaultBlock.instructions.length === 1) {\n const instr = defaultBlock.instructions[0]!;\n- let place: Place =...
2024-06-24T17:11:14
vercel/next.js
8fe8fbc322167ce1a284b07c890043216b8ac069
ef4308e0c408e95017fd30f87fb9a988545f806b
Fix validateTurboNextConfig isDev field (#83868) Noticed the `phase` value being provided to `loadConfig` was incorrect with turbopack and `next start` which was due to this field being hard coded.
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -465,7 +465,7 @@ export async function startServer(\n if (process.env.TURBOPACK) {\n await validateTurboNextConfig({\n dir: serverOptions.dir,\n- isDev: true,\n+ isDev: serverOptions.is...
2025-09-17T00:43:00
nodejs/node
e7a397a773e0cca01184c66f8807eada4035571f
86c29253f85e673ec491d1d310a8459248f6e69a
util: fix Latin1 decoding to return string output PR-URL: https://github.com/nodejs/node/pull/56222 Fixes: https://github.com/nodejs/node/issues/56219 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewe...
[ { "path": "src/encoding_binding.cc", "patch": "@@ -286,9 +286,11 @@ void BindingData::DecodeLatin1(const FunctionCallbackInfo<Value>& args) {\n env->isolate(), \"The encoded data was not valid for encoding latin1\");\n }\n \n- Local<Object> buffer_result =\n- node::Buffer::Copy(env, result.c...
2024-12-14T18:09:49
electron/electron
d80c5f8377d2b8088a27fe354512dcd909b4cd0f
755f7d5ed0be0111f2d70300d7caa392b21461b0
build: redundant regex character class in generate-config-gypi.py (#41858) fix: redundant regex character class in generate-config-gypi.py '\w' already includes '_'. solves a SyntaxWarning on python 3.12.
[ { "path": "script/generate-config-gypi.py", "patch": "@@ -40,7 +40,7 @@ def read_electron_args():\n for line in file_in:\n if line.startswith('#'):\n continue\n- m = re.match('([\\w_]+) = (.+)', line)\n+ m = re.match('(\\w+) = (.+)', line)\n if m == None:\n continue...
2024-04-15T15:33:55
vercel/next.js
ef4308e0c408e95017fd30f87fb9a988545f806b
e01c16079ed1233042e5dd51615cc7f2ba7d7873
Exclude `traceparent` and `tracestate` headers from fetch deduplication cache keys (#83852) <!-- 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) ...
[ { "path": "packages/next/src/server/lib/dedupe-fetch.test.ts", "patch": "@@ -0,0 +1,699 @@\n+/**\n+ * @jest-environment node\n+ */\n+\n+// Mock the React module first\n+jest.mock('react', () => ({\n+ cache: <T extends (...args: any[]) => any>(fn: T): T => {\n+ const cache = new Map<string, ReturnType<T>...
2025-09-17T00:12:43
facebook/react
7608516479fb85bc40aa73d8a31a0c93397ee6ff
27e9476f0aae99adc67b10ee2b78e8ee7dc61421
refactor[react-devtools/extensions]: dont debounce cleanup logic on navigation (#30027) ## Summary There is a race condition in the way we poll if React is on the page and when we actually clear this polling instance. When user navigates to a different page, we will debounce a callback for 500ms, which will: 1. Cl...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -412,13 +412,19 @@ chrome.devtools.network.onNavigated.addListener(syncSavedPreferences);\n // into subscribing to the same events from Bridge and window multiple times\n // In this case, we will handle `operations` event twice o...
2024-06-24T12:28:17
nodejs/node
656dd5d81701a0889971bd313ba014c69983deae
414c5ed4ace6cb5e2235af99284007f87983f3f6
doc: fix 'which' to 'that' and add commas PR-URL: https://github.com/nodejs/node/pull/56216 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/contributing/technical-priorities.md", "patch": "@@ -21,11 +21,11 @@ on October 1st 2022.\n \n _Present in: 2021_\n \n-Base HTTP support is a key component of modern cloud-native applications\n+Base HTTP support is a key component of modern cloud-native applications,\n and built-in support wa...
2024-12-14T10:07:58
electron/electron
b446ce7f224c4c3aa38e0f3d35c2e4e40192f29c
05fba85aa38dba54e513cca786ed8ffac1f9f6a5
fix: package <__assertion_handler> as part of libcxx headers (#41830) Refs https://chromium-review.googlesource.com/c/chromium/src/+/5208502
[ { "path": "BUILD.gn", "patch": "@@ -1466,8 +1466,10 @@ dist_zip(\"hunspell_dictionaries_zip\") {\n }\n \n copy(\"libcxx_headers\") {\n- sources = libcxx_headers + libcxx_licenses +\n- [ \"//buildtools/third_party/libc++/__config_site\" ]\n+ sources = libcxx_headers + libcxx_licenses + [\n+ ...
2024-04-12T14:50:03
vercel/next.js
e01c16079ed1233042e5dd51615cc7f2ba7d7873
03250cd04344ba2a527763d08b3976bf29dff226
fix: isRevalidate -> isStaticGeneration in fetch cache / unstable cache (#83858) When fetch/`unstable_cache` are stale during ISR, we leverage `workStore.isRevalidate` to determine if we're in an ISR revalidation scope and if so, we perform a blocking revalidation. This same scenario could happen at build time if t...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -935,7 +935,7 @@ export function createPatchedFetcher(\n if (entry?.value && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the reva...
2025-09-17T00:11:42
facebook/react
85215413cbfd5f28a4448b0d649b9198458e00e8
28c1336c9105c134cba04ed937efcbe391b5979b
[ci] Improve parallelism of yarn test This PR adds parallelism similar to our existing circleci setup for running yarn tests with the various test params. It does this by sharding tests into `$SHARD_COUNT` number of groups, then spawning a job for each of them and using jest's built in `--shard` option. Effectively t...
[ { "path": ".circleci/config.yml", "patch": "@@ -281,7 +281,7 @@ jobs:\n at: .\n - setup_node_modules\n - run: ./scripts/circleci/download_devtools_regression_build.js << parameters.version >> --replaceBuild\n- - run: node ./scripts/jest/jest-cli.js --build --project devtools --rel...
2024-06-22T16:33:37
nodejs/node
414c5ed4ace6cb5e2235af99284007f87983f3f6
26d0559f14c904ccae0ce785ca7ed8b63edd4044
module: add prefix-only modules to `module.builtinModules` Fixes https://github.com/nodejs/node/issues/42785 PR-URL: https://github.com/nodejs/node/pull/56185 Fixes: https://github.com/nodejs/node/issues/42785 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Revi...
[ { "path": "doc/api/module.md", "patch": "@@ -21,15 +21,17 @@ added:\n - v9.3.0\n - v8.10.0\n - v6.13.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56185\n+ description: The list now also contains prefix-only modules.\n -->\n \n * {string\\[]}\n \n A list of...
2024-12-14T07:35:00
rust-lang/rust
b12ef56efd242f9a9a2f947cb3b689c8c5cb786f
d074e48dcb19122c4a1d4855b8e68b4c4aa41be0
Remove `no-rustfix` marker for tests with valid suggestions
[ { "path": "tests/ui/crashes/ice-6250.fixed", "patch": "@@ -0,0 +1,19 @@\n+// originally from glacier/fixed/77218.rs\n+// ice while adjusting...\n+#![expect(clippy::useless_vec)]\n+\n+pub struct Cache {\n+ data: Vec<i32>,\n+}\n+\n+pub fn list_data(cache: &Cache, key: usize) {\n+ for reference in vec![1...
2026-02-22T10:37:44
electron/electron
05fba85aa38dba54e513cca786ed8ffac1f9f6a5
db11090e58a0d969707e3cade55af3ee000090b4
fix: do not activate app when showing a panel on Mac (#41750) * fix: do not activate app when showing or focusing a panel on Mac * restored panel activation test
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -176,6 +176,8 @@ class NativeWindowMac : public NativeWindow,\n \n void UpdateWindowOriginalFrame();\n \n+ bool IsPanel();\n+\n // Set the attribute of NSWindow while work around a bug of zoom button.\n bool HasStyleMask(NSUInteger flag) con...
2024-04-12T12:27:59
vercel/next.js
18425676ddc7696994c05afa5da9dc9cd20b1d07
bba9b2f3667c61b78d95865422f15c8fff909dd5
[next-config-ts] Set Node.js native TS loader fallback flag to process.env (#83832) Since local variables aren't passed to the workers, the fallback flag wasn't passed correctly. Since `process.env` is passed, use that to set the flag. #### Before ``` running pnpm next build ⚠ Failed to import "next.config.ts"...
[ { "path": "packages/next/src/build/next-config-ts/transpile-config.ts", "patch": "@@ -105,8 +105,6 @@ async function getTsConfig(cwd: string): Promise<CompilerOptions> {\n return parsedCommandLine.options\n }\n \n-let useNodeNativeTSLoader = true\n-\n export async function transpileConfig({\n nextConfig...
2025-09-16T21:01:11
nodejs/node
26d0559f14c904ccae0ce785ca7ed8b63edd4044
24841561e0c9795757a1f7d70273c8401f7555d7
doc: fix winget config path PR-URL: https://github.com/nodejs/node/pull/56233 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -683,7 +683,7 @@ easily. These files will install the following\n To install Node.js prerequisites from Powershell Terminal:\n \n ```powershell\n-winget configure .\\configuration.dsc.yaml\n+winget configure .\\configurations\\configuration.dsc.yaml\n ```\n \n Alternati...
2024-12-13T20:16:55
facebook/react
454fb35065053d5572689af1a7c125a41849604a
2caaa05c08c345f1edddc952cef3fa53c177d612
[compiler] add fixture for optimization across scopes Adds a fixture based on internal case where our current output is quite a bit more verbose than the original memoization. See the comment in the fixture for more about the heuristic we can apply. ghstack-source-id: e637a3814077559a1a56724eafe2567efed0b8d7 Pull Req...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reordering-across-blocks.expect.md", "patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n+function Component({ config }) {\n+ /**\n+ * The original memoiza...
2024-06-21T23:48:00
rust-lang/rust
394afbe88f30dc56347ab56b24e47aa7386e42b9
d074e48dcb19122c4a1d4855b8e68b4c4aa41be0
Remove `no-rustfix` marker for tests with no lint suggestions
[ { "path": "tests/ui-toml/expect_used/expect_used.rs", "patch": "@@ -1,5 +1,4 @@\n //@compile-flags: --test\n-//@no-rustfix\n #![warn(clippy::expect_used)]\n #![allow(clippy::unnecessary_literal_unwrap)]\n ", "additions": 0, "deletions": 1, "language": "Rust" }, { "path": "tests/ui-toml/e...
2026-02-22T10:32:23
electron/electron
db11090e58a0d969707e3cade55af3ee000090b4
df22e62bf41f1ab7167a87b7aa63379a33ea56d2
fix: silent printing default dpi on Windows (#41811)
[ { "path": "BUILD.gn", "patch": "@@ -700,6 +700,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/printing/print_view_manager_electron.cc\",\n \"shell/browser/printing/print_view_manager_electron.h\",\n+ \"shell/browser/printing/printing_utils.cc\",\n+ \"shell/bro...
2024-04-11T23:56:39
vercel/next.js
bba9b2f3667c61b78d95865422f15c8fff909dd5
1fc18244547263409a82db35edbe5908ba403410
docs: Fix self-referential link to Middleware in middleware.mdx (#83854) This link was to the current page, which isn't very useful. Link to the getting started page (https://nextjs.org/docs/app/getting-started/route-handlers-and-middleware#middleware) instead
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/functions/next-response\n ---\n \n-The `middleware.js|ts` file is used to write [Middleware](/docs/app/api-reference/file-conventions/middleware) and run code on the serv...
2025-09-16T20:50:47
facebook/react
2caaa05c08c345f1edddc952cef3fa53c177d612
6aea169480286ef9c037c6efefaacecac0e5d7c0
[compiler] Optimize instruction reordering Note: due to a bad rebase i included #29883 here. Both were stamped so i'm not gonna bother splitting it back up aain. This PR includes two changes: * First, allow `LoadLocal` to be reordered if a) the load occurs after the last write to a variable and b) the LoadLocal lvalu...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InstructionReordering.ts", "patch": "@@ -13,16 +13,19 @@ import {\n HIRFunction,\n IdentifierId,\n Instruction,\n+ InstructionId,\n+ Place,\n isExpressionBlockKind,\n+ makeInstructionId,\n markInstructionIds,\n } from \"....
2024-06-21T23:48:00
nodejs/node
938a581b4da945a468da5c423c4814be64c5bc97
95912f6ec059e6564cde3c3993ea25d48637499a
report: fix typos in report keys and bump the version Replace "kbytes" with "bytes" in `PrintSystemInformation()` in `src/node_report.cc`, as RLIMIT_DATA, RLIMIT_RSS, and RLIMIT_AS are given in bytes. The report version is bumped from 4 to 5. Refs: https://www.ibm.com/docs/en/aix/7.3?topic=k-kgetrlimit64-kernel-servi...
[ { "path": "doc/api/report.md", "patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 4,\n+ \"reportVersion\": 5,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"...
2024-12-13T11:28:30
golang/go
d7bd7773ebe0ffe7d7fae92acb77e10ad0539dd3
4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12
go/parser: remove safePos The logic in safePos is wrong, since (*token.File).Offset does not panic, so this function was basically a noop (since CL 559436). To work properly it would have to be: return p.file.Pos(p.file.Offset(pos)) Since it effectively acts as a no-op and hasn't been noticed since, let's go ahead ...
[ { "path": "src/go/parser/parser.go", "patch": "@@ -455,25 +455,6 @@ var exprEnd = map[token.Token]bool{\n \ttoken.RBRACE: true,\n }\n \n-// safePos returns a valid file position for a given position: If pos\n-// is valid to begin with, safePos returns pos. If pos is out-of-range,\n-// safePos returns the...
2025-08-04T15:25:37
electron/electron
f8c832d80db96841d2ac1bc50dca9d64c2cd2c83
344aba0838d7ebdc648d0c160fff0ae095db8ac7
docs: update ASAR integrity tutorial (#41828) * docs: document windows asar integrity * docs: update ASAR integrity tutorial * fix lint --------- Co-authored-by: Samuel Attard <marshallofsound@electronjs.org>
[ { "path": "docs/tutorial/asar-integrity.md", "patch": "@@ -5,40 +5,50 @@ slug: asar-integrity\n hide_title: false\n ---\n \n-## Platform Support\n+ASAR integrity is an experimental feature that validates the contents of your app's\n+[ASAR archives](./asar-archives.md) at runtime.\n \n-Currently ASAR integri...
2024-04-11T20:41:58
vercel/next.js
9c9456906b8bc0c48b47969ae81275736c196570
a850edbec99c3f887d19777f90f0529ce0f0e382
Allow headers, rewrites and redirects to be defined as sync functions (#83743) ### What and why? Typings in `NextConfig` make us specify `headers`, `rewrites` and `redirects` as $${\color{red}async}$$ functions. Doing so is needed even if the result is known straight away, without having to call async IO. This tight...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -920,28 +920,35 @@ export interface NextConfig extends Record<string, any> {\n *\n * @see [Headers configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/headers)\n */\n- headers?: () => Promi...
2025-09-16T19:31:08
golang/go
4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12
b2960e35804aafbbb0df9973f99b034bea8c150a
cmd/cgo/internal/test: use (syntactic) constant for C array bound A test in C has an array bound defined as a "const int", which is technically a variable. The new version of C compiler in Xcode 26 beta emits a warning "variable length array folded to constant array as an extension" for this (as an error since we buil...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -245,7 +245,7 @@ static void *thread(void *p) {\n \treturn NULL;\n }\n void testSendSIG() {\n-\tconst int N = 20;\n+\tenum { N = 20 };\n \tint i;\n \tpthread_t tid[N];\n \tfor (i = 0; i < N; i++) {", "additions": 1, "deletions": 1, "lan...
2025-08-02T22:13:19
nodejs/node
e698bd0943dfd5000a4bff3d580aa5bc3d6cf7a3
96cd2a6ec32917f430444904ab13239564480b1a
test: remove exludes for sea tests on PPC The referenced issue is closed as having been fixed, so the tests should run ok. Unexclude them. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/56217 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <ja...
[ { "path": "test/sequential/sequential.status", "patch": "@@ -52,14 +52,3 @@ test-watch-mode-inspect: SKIP\n [$arch==s390x]\n # https://github.com/nodejs/node/issues/41286\n test-performance-eventloopdelay: PASS, FLAKY\n-\n-[$system==linux && $arch==ppc64]\n-# https://github.com/nodejs/node/issues/50740\n-te...
2024-12-12T23:05:01
facebook/react
0b724e9e9c6469983f73631edb2e6abcc9c1193b
6fb39ec9e9b9aa0242d981c1b89473f02c6f945b
www: remove dynamic scheduler feature flag: enableProfiling (#29996) I removed the wrong feature flag in #29995, this is the correct one to match D58682445.
[ { "path": "packages/scheduler/src/forks/SchedulerFeatureFlags.www-dynamic.js", "patch": "@@ -11,8 +11,6 @@\n // Use __VARIANT__ to simulate a GK. The tests will be run twice: once\n // with the __VARIANT__ set to `true`, and once set to `false`.\n \n-export const enableProfiling = __VARIANT__;\n-\n export c...
2024-06-21T13:51:46
electron/electron
41ba9633924a14d992f495dee6eac2467def0d35
43a9f70d19b9576ae922768dd521915367529009
fix: typos in comment section of `in_app_purchase.mm` (#41788) fix 2 typo Signed-off-by: Michael Seibt <github@roboschmie.de>
[ { "path": "shell/browser/mac/in_app_purchase.mm", "patch": "@@ -79,10 +79,10 @@ - (void)purchaseProduct:(NSString*)productID {\n }\n \n /**\n- * Process product informations and start the payment.\n+ * Process product information and start the payment.\n *\n * @param request - The product request.\n- * @p...
2024-04-10T15:54:56
vercel/next.js
d43e5f9378c2e7eb093095fe8f4f816a4906f695
aab50c395b4a3ba96cb4319714869f2b3fa0895c
docs: Convert relative imports to @ aliases in examples (#83813) ## For Contributors ### Improving Documentation This PR improves the Next.js examples by converting relative imports to @ aliases, making them more readable and maintainable. ## Description Fixes #83717 by converting deep relative imports to clean @ ...
[ { "path": "examples/i18n-routing/app/[lang]/components/counter.tsx", "patch": "@@ -1,7 +1,7 @@\n \"use client\";\n \n import { useState } from \"react\";\n-import { type getDictionary } from \"../../../get-dictionary\";\n+import { type getDictionary } from \"@/get-dictionary\";\n \n export default function ...
2025-09-16T13:53:53
facebook/react
395e2fc6a0f6b90b4b7b1319a4029def73118518
a5554190c1c44aa6ecef0cef46cd109e21b5c0bf
[chore] Fix TypeError in shouldSkipBundle During yarn build-for-devtools-dev and yarn build-for-devtools-prod Commands (#29906) ## Summary Fix bundle type filtering logic to correctly handle array input in argv.type and use some with includes for accurate filtering. This addresses a TypeError encountered during ...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -85,9 +85,11 @@ function parseRequestedNames(names, toCase) {\n return result;\n }\n \n+const argvType = Array.isArray(argv.type) ? argv.type : [argv.type];\n const requestedBundleTypes = argv.type\n- ? parseRequestedNames([argv.type], 'uppercase')\n+ ? ...
2024-06-20T20:12:41
nodejs/node
743eacc48f778345c6289f9d6cc581e631a0d19e
203398dd18c6fcda92a10644ac1abf00f3cf9df2
test: fix test-abortsignal-drop-settled-signals flakiness PR-URL: https://github.com/nodejs/node/pull/56197 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By:...
[ { "path": "test/parallel/test-abortsignal-drop-settled-signals.mjs", "patch": "@@ -1,6 +1,7 @@\n // Flags: --expose_gc\n //\n import '../common/index.mjs';\n+import { gcUntil } from '../common/gc.js';\n import { describe, it } from 'node:test';\n \n function makeSubsequentCalls(limit, done, holdReferences =...
2024-12-12T18:34:28
golang/go
abeeef1c08a589c2341f0d4e19ae49ec0892e797
d44749b65b47f42e7a5bae2e0e9b0ab6bb3d5f80
cmd/compile/internal/test: fix typo in comments Change-Id: Iba6bb7f8252120f56d7e6ae49c9edc9382e8c7e0 Reviewed-on: https://go-review.googlesource.com/c/go/+/679855 Reviewed-by: abner chenc <chenguoqi@loongson.cn> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mark...
[ { "path": "src/cmd/compile/internal/test/mulconst_test.go", "patch": "@@ -143,7 +143,7 @@ func BenchmarkMulconstI32(b *testing.B) {\n \t\t}\n \t\tmulSinkI32 = x\n \t})\n-\t// -120x = 8x - 120x\n+\t// -120x = 8x - 128x\n \tb.Run(\"-120\", func(b *testing.B) {\n \t\tx := int32(1)\n \t\tfor i := 0; i < b.N; i+...
2025-06-07T02:27:43
electron/electron
0a7df0ef3deb0a76b4a372d180c6139ecb2f3995
38ef9a76909a74eb99d290f29feefcfb2293ea9e
docs: typo fix (#41787) Typo fix
[ { "path": "docs/tutorial/esm.md", "patch": "@@ -59,7 +59,7 @@ need to be called **before** the app's `ready` event is emitted.\n With top-level `await` available in Node.js ESM, make sure to `await` every Promise that you need to\n execute before the `ready` event. Otherwise, your app may be `ready` before ...
2024-04-10T08:25:13
nodejs/node
203398dd18c6fcda92a10644ac1abf00f3cf9df2
a963b5e9f3f7b28751a13afbcab495d4f781969e
build: fix C string encoding for `PRODUCT_DIR_ABS` Since the `PRODUCT_DIR_ABS` gyp variable is meant to be used in a C string in the OpenSSL config, provide a version of it that actually provides it in a way that is always usable as a C string. Otherwise, unescaped characters in the path can mess with the string defin...
[ { "path": "deps/openssl/openssl.gyp", "patch": "@@ -5,19 +5,13 @@\n 'nasm_version%': '0.0',\n 'openssl-cli': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)openssl-cli<(EXECUTABLE_SUFFIX)',\n 'conditions': [\n- ['OS == \"win\"', {\n- 'obj_dir_abs': '<(PRODUCT_DIR_ABS)/obj',\n- }],\n ...
2024-12-02T13:23:49
vercel/next.js
a93515b6125cfe272a9702ea9ee96ab181592011
e2f7cb206d7ede740023cd14f310ec457d4ea59e
chore: Ensure Import Trace starts in a newline (#83638) Fixes: https://github.com/vercel/next.js/issues/83637
[ { "path": "packages/next/src/shared/lib/turbopack/utils.ts", "patch": "@@ -163,7 +163,7 @@ export function formatIssue(issue: Issue) {\n message +=\n \"To use Next.js' built-in Sass support, you first need to install `sass`.\\n\"\n message += 'Run `npm i sass` or `yarn add sass` inside y...
2025-09-16T12:30:59
golang/go
d6beda863e3a8825c8cfe656744cc8f99f47d048
4ab1aec00799f91e96182cbbffd1de405cd52e93
runtime: add reference to debugPinnerV1 This is intended to be used by debuggers, to keep heap memory reachable even if it isn't referenced from anywhere else. Change-Id: I1e900e02b4fe3a188f8173cec70f8de32122489b Reviewed-on: https://go-review.googlesource.com/c/go/+/682875 Reviewed-by: abner chenc <chenguoqi@loongso...
[ { "path": "src/runtime/asm_loong64.s", "patch": "@@ -70,8 +70,9 @@ nocgo:\n \t// start this M\n \tJAL\truntime·mstart(SB)\n \n-\t// Prevent dead-code elimination of debugCallV2, which is\n+\t// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are\n \t// intended to be called by debugger...
2025-06-19T11:55:28
facebook/react
a5554190c1c44aa6ecef0cef46cd109e21b5c0bf
b15c8492ca227abff2b1c921dd06e54d421fc415
fix[compiler playground]: Set source as the pre-change state in HIR diff (#29957) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -104,7 +104,7 @@ async function tabify(source: string, compilerOutput: CompilerOutput) {\n passName,\n <TextTabContent\n output={text}\n- diff={lastPassOutput ?? null}\n+ diff={passName !== \"HI...
2024-06-20T16:01:35
electron/electron
ba3b647fd73d9c3f5f411ff414e7a0d12a8c692b
76f7bbb0a8db04c002293b2753f24146518737b5
fix: WCO maximize button visibility when non-maximizable (#41793) fix: WCO button visibility when non-maximizable
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -156,36 +156,26 @@ void WinCaptionButtonContainer::UpdateBackground() {\n }\n \n void WinCaptionButtonContainer::UpdateButtons() {\n- const bool is_maximized = frame_view_->frame()->IsMaximized();\n- restore_button_->SetVisib...
2024-04-09T11:14:29
vercel/next.js
8b17a636bc9169e05eeed5df77553b725de29d45
ed1db36c46afc5e4e972200a9db2000c18380e28
Removed link to maintain text consistency (#83644) <!-- 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 ...
[ { "path": "docs/01-app/03-api-reference/04-functions/use-router.mdx", "patch": "@@ -41,8 +41,8 @@ export default function Page() {\n \n ## `useRouter()`\n \n-- `router.push(href: string, { scroll: boolean })`: Perform a client-side navigation to the provided route. Adds a new entry into the [browser’s histo...
2025-09-16T08:41:11
nodejs/node
e5524eaefae48034e4c8cc1a960fd65df4d03161
7a40aa75a58047076da80ae16955c89cdf58de78
sqlite: add support for custom functions This commit adds support to node:sqlite for defining custom functions that can be invoked from SQL. Fixes: https://github.com/nodejs/node/issues/54349 PR-URL: https://github.com/nodejs/node/pull/55985 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: James M S...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -160,6 +160,31 @@ This method allows one or more SQL statements to be executed without returning\n any results. This method is useful when executing SQL statements read from a\n file. This method is a wrapper around [`sqlite3_exec()`][].\n \n+### `database.functio...
2024-12-12T16:48:12
facebook/react
b15c8492ca227abff2b1c921dd06e54d421fc415
6b4646cbd0fd20a7c37f5dfcb0f12193259a6289
fix[react-devtools/extensions]: propagate globals from env (#29963) Somehow missed this while working on https://github.com/facebook/react/pull/29869. With these changes, manual inspection of the `react_devtools_backend_compact.js` doesn't have any occurences of `__IS_FIREFOX__` flag.
[ { "path": "packages/react-devtools-extensions/webpack.backend.js", "patch": "@@ -74,6 +74,9 @@ module.exports = {\n 'process.env.IS_CHROME': IS_CHROME,\n 'process.env.IS_FIREFOX': IS_FIREFOX,\n 'process.env.IS_EDGE': IS_EDGE,\n+ __IS_CHROME__: IS_CHROME,\n+ __IS_FIREFOX__: IS_FIR...
2024-06-20T08:29:05
golang/go
08bec02907cf59c3fd60e5c5e31b2d6c30b462b7
09ff25e3508287970940645b97e4d88e92bb5407
[dev.simd] cmd/compile: add register-to-mask moves, other simd glue This includes code generated by simdgen CL 689955, here because of git-facilitated pilot error (the generated file should have been in the next CL but that is related to this one, so, oh well). Change-Id: Ibfea3f1cd93ca9cd12970edf15a013471677a6ba Rev...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1530,6 +1530,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n \n+\tcase ssa.OpAMD64KMOVQ, ssa.OpAMD64KMOVD, ssa.OpAMD64KMOVW, ssa.OpAMD64KMOVB:\n+\t\t// See also ssa.OpAMD64KMOVQ...
2025-07-23T17:47:08
electron/electron
76f7bbb0a8db04c002293b2753f24146518737b5
22c149812c6ffb67b88e3035c9d242de7c94cea9
fix: move BrowserWindow's WebContentsView to be a child of rootview (#41256)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -77,6 +77,7 @@ BrowserWindow::BrowserWindow(gin::Arguments* args,\n WebContentsView::Create(isolate, web_preferences);\n DCHECK(web_contents_view.get());\n window_->AddDraggableRegionProvider(web_contents_view.get());\n+ w...
2024-04-08T17:30:23
vercel/next.js
ed1db36c46afc5e4e972200a9db2000c18380e28
5712c05c5532303d54e3e6ff18aec0384dcc0a7a
Turbopack: chunking debugging utilities (#83801) <!-- 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 #...
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -288,6 +288,47 @@ pub enum ChunkGroupKey {\n },\n }\n \n+impl ChunkGroupKey {\n+ pub async fn debug_str(\n+ &self,\n+ keys: impl std::ops::Index<usize, Output = Self>,\n+ ) -> Result<String...
2025-09-16T08:28:45
facebook/react
6b4646cbd0fd20a7c37f5dfcb0f12193259a6289
e684ca66abf785548b05f2185579cd12b50b2910
Export captureOwnerStacks() only in DEV "react" builds (#29923) Only with the enableOwnerStacks flag (which is not on in www). This is a new DEV-only API to be able to implement what we do for console.error in user space. This API does not actually include the current stack that you'd get from `new Error().sta...
[ { "path": "packages/react-reconciler/src/ReactCurrentFiber.js", "patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(stack: Error): string {\n+function getCurrentFiberStackInDev(stack: null | Error): string {\n if (__...
2024-06-19T18:19:48
nodejs/node
37766dcad8b962b1af05daab7612a43a06e4ce24
55413004c8ab489a03793b80c20d2ec6552668c0
tools: fix release proposal linter to support more than 1 folk preparing PR-URL: https://github.com/nodejs/node/pull/56203 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": ".github/workflows/lint-release-proposal.yml", "patch": "@@ -43,7 +43,7 @@ jobs:\n PR_HEAD=\"$(gh pr view \"$PR_URL\" --json headRefOid -q .headRefOid)\"\n echo \"Head of $PR_URL: $PR_HEAD\"\n echo \"Current commit: $GITHUB_SHA\"\n- [[ \"$PR_HEAD\" == \"$GITH...
2024-12-12T10:43:18
golang/go
88568519b416190d264f5e5f02c41b5a139498b2
6f7a1164e797f694c535ebf5f2c9722845a732cd
[dev.simd] simd: move test generation into Go repo This pairs with CL 689275 which removes test generation from simdgen This uses generics and attempts to encode the tests as compactly as possible. Some files, *_helpers_test.go, are generated. Use t.Helper() to get the line number right for a failure. Adds helper ...
[ { "path": "src/simd/binary_helpers_test.go", "patch": "@@ -0,0 +1,464 @@\n+// Code generated by 'go run genfiles.go'; DO NOT EDIT.\n+\n+//go:build goexperiment.simd\n+\n+// This file contains functions testing binary simd methods.\n+// Each function in this file is specialized for a\n+// particular simd typ...
2025-07-07T21:48:24
electron/electron
22c149812c6ffb67b88e3035c9d242de7c94cea9
42164d70813b32390426e372003f9f144a811593
build: add missing header for `content::SyntheticGestureTarget` (#41789) IWYU: add missing header for `content::SyntheticGestureTarget` GNU libstdc++ does not allow using std::unique_ptr on incomplete types, leading to a compile error.
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"content/browser/renderer_host/render_widget_host_delegate.h\" // nogncheck\n #include \"content/browser/renderer_host/render_widget_host_owner_delegate.h\" // nogncheck\n #include \"content/common/input/...
2024-04-08T16:17:00
vercel/next.js
5712c05c5532303d54e3e6ff18aec0384dcc0a7a
844abcac192d702161531468996eadfd1a1c4f13
fix(Rspack): resolve HMR unresponsiveness or unexpected full reload & update dev snapshot (#83480) This commit addresses the bugs where Hot Module Replacement (HMR) was not functioning correctly in Rspack mode. Component edits would often result in no update or a full page reload instead of a fast, state-preserving re...
[ { "path": "package.json", "patch": "@@ -124,7 +124,6 @@\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n \"@rspack/core\": \"1.5.0\",\n- \"@rspack/plugin-react-refresh\": \"1.2.0\",\n \"@slack/web-api\": \"7.9.1\",\n \"@swc/cli\": \"0.1.55\",\n \"@swc/core\"...
2025-09-16T01:26:36
nodejs/node
64cc3b83268c76ade4b8f29109a64eef2016da79
5c2f599712c777d123d198266b05ca2c4cc8eba3
src: fix outdated js2c.cc references PR-URL: https://github.com/nodejs/node/pull/56133 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: ...
[ { "path": "src/node_builtins.h", "patch": "@@ -71,7 +71,7 @@ using BuiltinSourceMap = std::map<std::string, UnionBytes>;\n using BuiltinCodeCacheMap =\n std::unordered_map<std::string, BuiltinCodeCacheData>;\n \n-// Generated by tools/js2c.py as node_javascript.cc\n+// Generated by tools/js2c.cc as node...
2024-12-11T17:04:19
facebook/react
1434af3d228e216366bd4b7dd324c6408087b3df
ddcecbbebf6af3fa32a323c0591dad1f63587aeb
React DevTools 5.2.0 -> 5.3.0 (#29918) Full list of changes: * chore[react-devtools]: improve console arguments formatting before passing it to original console ([hoxyq](https://github.com/hoxyq) in [#29873](https://github.com/facebook/react/pull/29873)) * chore[react-devtools]: unify console patching and defaul...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.2.0\",\n+ \"version\": \"5.3.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-06-18T11:12:27
golang/go
eef5f8d93016147718afba8a05282d2ba7332c51
e071617222e373f59db8995ce171bae708e0dcef
cmd/compile: enforce that locals are always accessed with SP base register After CL 678937, we could have a situation where the value of the stack pointer is in both SP and another register. We need to make sure that regalloc picks SP when issuing a reference to local variables; the assembler expects that. Fixes #748...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1583,6 +1583,12 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t\tmask &^= desired.avoid\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\tif mask&s.values[v.Args[i.idx].ID].regs&(1<<s.SPReg) != 0 {\n+\t\t\t\t\t// Prefer SP register. This ensu...
2025-08-01T14:38:55
vercel/next.js
19bc1acccbd2a80193d163f9851188e47dbec3f8
4d7f8366a0d3d8b4bf487065b5357eec85e92dc9
fix: unstable_cache should perform blocking revalidation during ISR revalidation (#83820) When ISR revalidation occurs and `unstable_cache` entries are stale, Next.js returns stale cached data instead of waiting for fresh data. This differs from fetch() behavior, which performs foreground revalidation during ISR ([ref...
[ { "path": "packages/next/src/server/web/spec-extension/unstable-cache.ts", "patch": "@@ -238,18 +238,19 @@ export function unstable_cache<T extends Callback>(\n cacheEntry.value.data.body !== undefined\n ? JSON.parse(cacheEntry.value.data.body)\n : undefin...
2025-09-15T23:12:48
electron/electron
3eb94b72ba6659fb27d59a71f1f9ba945219bd15
752f2eb1248e42fb3d3aceceec76e18079ab34d1
feat: Options parameter for `Session.clearData` API (#41355) * feat: Options parameter for `Session.clearData` API * Consolidate & curate data type categories * Update docs for better typing * off-by-one typo * refactor to use `std::shared_ptr` instead of `base::RefCounted` * fix compile errors * std...
[ { "path": "docs/api/session.md", "patch": "@@ -1428,23 +1428,34 @@ is emitted.\n Returns `string | null` - The absolute file system path where data for this\n session is persisted on disk. For in memory sessions this returns `null`.\n \n-#### `ses.clearData()`\n+#### `ses.clearData([options])`\n \n-Returns...
2024-04-01T16:09:01