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
rust-lang/rust
d778d122faf5672b3bc1c4619c7218f63b504b9f
c8d56aa26a0061c02aa23f337041c7cf72ccccde
fix: generate method assist uses enclosing impl block instead of first found
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs", "patch": "@@ -146,10 +146,19 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {\n if !is_editable_crate(target_module.krate(ctx.db()), ctx.db()) {\n return None;\n }\n+ //Ch...
2026-02-20T13:31:22
electron/electron
136d7e7e6ab1d62ceb1c390ceccf7ddf0225b912
7cd23a4900642c5f2eb83c1fd5af42da20e05102
fix: check for draggable regions outside of main frame (#41377)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -66,10 +66,10 @@ ElectronRenderFrameObserver::ElectronRenderFrameObserver(\n // Initialise resource for directory listing.\n net::NetModule::SetResourceProvider(NetResourceProvider);\n \n- // App regions are only supported in th...
2024-02-21T03:10:43
golang/go
da8b50c83087897e2a8abef2d8909253f1fb4f23
6669aa3b14d98d90929ca860421e5308374b0f46
cmd/doc: delete Users should not invoke "go tool doc" directly, but should instead run "go doc". Remove "cmd/doc" because it no longer invokes the "doc" tool but incorporates its logic directly. Fixes #74667 Change-Id: I357a3d7e0ca075f028df66e34951a41354c08941 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -2,5 +2,10 @@\n \n ### Go command {#go-command}\n \n+<!-- go.dev/issue/74667 -->\n+`cmd/doc`, and `go tool doc` have been deleted. `go doc` can be used as\n+a replacement for `go tool doc`: it takes the same flags and arguments and\n+has the same behavior.\n+\n ...
2025-07-23T15:25:14
facebook/react
8d87e374ac69904012530af702af1cd51d90e07d
1df34bdf626af3e4566364dcdf7f1c387d2f4252
Fix #29724: `ip` dependency update for CVE-2024-29415 (#29725) ## Summary This version update of `ip` dependency solves the CVE-2024-29415 vulnerability.
[ { "path": "packages/react-devtools/package.json", "patch": "@@ -25,7 +25,7 @@\n \"dependencies\": {\n \"cross-spawn\": \"^5.0.1\",\n \"electron\": \"^23.1.2\",\n- \"ip\": \"^1.1.4\",\n+ \"ip\": \"^2.0.1\",\n \"minimist\": \"^1.2.3\",\n \"react-devtools-core\": \"5.2.0\",\n \"upda...
2024-06-05T10:17:35
vercel/next.js
a9cb9eca115afb0ad6431abd859bd45c98fa043d
ede8d1b861378b4b8aa7ff77ad2cacd583d9b21d
Include prerender interrupted error in unstable_rethrow (#83463) Prerender interrupted errors are part of the control flow for Next.js applications and aren't intended to be caught by user code. Since we can't avoid it we need to include it in the rethrow API.
[ { "path": "packages/next/src/client/components/unstable-rethrow.server.ts", "patch": "@@ -2,7 +2,10 @@ import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-u\n import { isPostpone } from '../../server/lib/router-utils/is-postpone'\n import { isBailoutToCSRError } from '../../shared...
2025-09-05T16:06:40
nodejs/node
eb1cb369fe6647acca73aaf262e0715ce69797f6
2c11d6e61cd34c40a23ec09912dffc1c2d37a6b1
src: fix kill signal on Windows Fixes: https://github.com/nodejs/node/issues/42923 PR-URL: https://github.com/nodejs/node/pull/55514 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
[ { "path": "doc/api/child_process.md", "patch": "@@ -1700,8 +1700,8 @@ may not actually terminate the process.\n See kill(2) for reference.\n \n On Windows, where POSIX signals do not exist, the `signal` argument will be\n-ignored, and the process will be killed forcefully and abruptly (similar to\n-`'SIGKIL...
2024-11-20T12:14:20
electron/electron
995f3dc120281a5e364ff1624ea77ee58ce89947
d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894
fix: revert to legacyMainResolve in JavaScript for asar compatibility (#41367)
[ { "path": "patches/node/.patches", "patch": "@@ -45,3 +45,4 @@ test_make_test-node-output-v8-warning_generic.patch\n test_match_wpt_streams_transferable_transform-stream-members_any_js.patch\n build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n src_preload_function_for_environment.patch\...
2024-02-19T07:21:13
golang/go
6669aa3b14d98d90929ca860421e5308374b0f46
26338a7f691b45017168b6523c95d4578a2cfd4d
runtime: randomize heap base address During initialization, allow randomizing the heap base address by generating a random uint64 and using its bits to randomize various portions of the heap base address. We use the following method to randomize the base address: * We first generate a random heapArenaBytes aligned a...
[ { "path": "src/internal/goexperiment/exp_randomizedheapbase64_off.go", "patch": "@@ -0,0 +1,8 @@\n+// Code generated by mkconsts.go. DO NOT EDIT.\n+\n+//go:build !goexperiment.randomizedheapbase64\n+\n+package goexperiment\n+\n+const RandomizedHeapBase64 = false\n+const RandomizedHeapBase64Int = 0", "ad...
2025-05-21T02:03:44
vercel/next.js
fe19e10c399da66987c6d16322208f4c56949905
900d344fea928761b63e51e48a54d8ccc6f00a2e
Turbopack: Don't resolve tsconfig relative to file (#83484) ## What? Changes in #83331 accidentally changed behavior of how `tsconfig.json` is resolved. When using Next.js we don't want it to be resolved relative to the current file being compiled. It should only use the application root. This PR fixes the behavior ...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -188,6 +188,9 @@ pub async fn get_client_resolve_options_context(\n .typescript_tsconfig_path()\n .await?\n .as_ref()\n+ // Fall back to tsconfig only for resolving. This is because we don't want Turbopack t...
2025-09-05T13:49:44
nodejs/node
f4cd4d97497757cdbc44c27a511e16e9d2b22367
172841c2ef59428bcc55cde66b43e7edc2ffc5e4
doc: fix relative path mention in --allow-fs PR-URL: https://github.com/nodejs/node/pull/55791 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/api/cli.md", "patch": "@@ -208,23 +208,18 @@ The valid arguments for the `--allow-fs-read` flag are:\n * Multiple paths can be allowed using multiple `--allow-fs-read` flags.\n Example `--allow-fs-read=/folder1/ --allow-fs-read=/folder1/`\n \n-Paths delimited by comma (`,`) are no longer al...
2024-11-19T18:31:29
facebook/react
1df34bdf626af3e4566364dcdf7f1c387d2f4252
d2767c96e80a6fdc35b002f1518d01d90e2a8528
[Flight] Override prepareStackTrace when reading stacks (#29740) This lets us ensure that we use the original V8 format and it lets us skip source mapping. Source mapping every call can be expensive since we do it eagerly for server components even if an error doesn't happen. In the case of an error being thrown ...
[ { "path": ".eslintrc.js", "patch": "@@ -486,6 +486,7 @@ module.exports = {\n $ReadOnlyArray: 'readonly',\n $ArrayBufferView: 'readonly',\n $Shape: 'readonly',\n+ CallSite: 'readonly',\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: ...
2024-06-05T07:41:37
electron/electron
d0b4489b7d3fcbf789dea215d4e93a0e2ea4a894
ca0920872d2f8f180fecfbb321ecdb77a7f0e677
ci: fix helperPath calls in ci configs (#41363) * ci: fix helperPath calls in ci configs Co-authored-by: codebytere <codebytere@electronjs.org> * ci: fix helperPaths harder --------- Co-authored-by: codebytere <codebytere@electronjs.org>
[ { "path": ".circleci/config/base.yml", "patch": "@@ -353,10 +353,10 @@ step-setup-rbe-for-build: &step-setup-rbe-for-build\n mkdir third_party\n # Pull down credential helper and print status\n node -e \"require('./src/utils/reclient.js').downloadAndPrepare({})\"\n- HELPER=$(node -p \...
2024-02-17T23:04:36
vercel/next.js
900d344fea928761b63e51e48a54d8ccc6f00a2e
c32327042a15ee0abdcf290a0ed4a3d25cc17a85
[metadata] not add suffix to sitemap.xml in group routes (#83486)
[ { "path": "crates/next-core/src/next_app/metadata/mod.rs", "patch": "@@ -302,7 +302,7 @@ fn format_radix(mut x: u32, radix: u32) -> String {\n /// /(post)/sitemap -> /sitemap\n fn get_metadata_route_suffix(page: &str) -> Option<String> {\n // skip sitemap\n- if page.ends_with(\"/sitemap\") {\n+ if...
2025-09-05T13:44:17
nodejs/node
1d01ad67737ce8b88a67850e45340377413b0c11
d1830685b450c03f236c8f734a066304677b3d10
doc,lib,src,test: unflag sqlite module This commit allows the node:sqlite module to be used without starting Node with a CLI flag. The module is still experimental. Fixes: https://github.com/nodejs/node/issues/55854 PR-URL: https://github.com/nodejs/node/pull/55890 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com...
[ { "path": "doc/api/cli.md", "patch": "@@ -1065,14 +1065,6 @@ added:\n \n Use this flag to enable [ShadowRealm][] support.\n \n-### `--experimental-sqlite`\n-\n-<!-- YAML\n-added: v22.5.0\n--->\n-\n-Enable the experimental [`node:sqlite`][] module.\n-\n ### `--experimental-strip-types`\n \n <!-- YAML\n@@ -16...
2024-11-19T03:23:18
facebook/react
9185b9b1e4a716f90774c4c5501fe3925bc7c402
a26e90c29cfa841d3e2bc08876c5929d5680fb6d
Remove startTransition and useActionState from react-server condition of react (#29753) <!-- 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. ...
[ { "path": "packages/react/src/ReactServer.js", "patch": "@@ -22,19 +22,11 @@ import {\n isValidElement,\n } from './jsx/ReactJSXElement';\n import {createRef} from './ReactCreateRef';\n-import {\n- use,\n- useId,\n- useCallback,\n- useDebugValue,\n- useMemo,\n- useActionState,\n-} from './ReactHooks...
2024-06-04T16:23:36
electron/electron
80906c0adb1e1b8103dcdfb8340c4b660b330c25
d4413a8e53590b43d622ad9dce4259be89acbb8c
fix: properly stream `uploadData` in `protocol.handle()` (#41052) * refactor(protocol): extract file stream factory Increase readability by moving the file stream creation logic out of the `uploadData` to request body conversion function. * fix: properly flatten streams in `protocol.handle()` Refs: electron/...
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -29,6 +29,21 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n });\n }\n \n+function makeStreamFromFileInfo ({\n+ filePath,\n+ offset = 0,\n+ length = -1\n+}: {\n+ filePath: string;\n+ offset?: number;\n+ length?: number;\n+}): Reada...
2024-02-16T19:29:29
vercel/next.js
2a9e842602c5b8095434a4a3cbbb769612ab8497
6d34793866be9e06a29c171ee5ce268586f3bd11
[turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names (#83193) Change the serialization strategy for `ValueTypeId`, `TraitTypeId` and `NativeFunction` to use `u16` values instead of the `global_name` (a fully qualified name of the object). For all these objects the value is the ...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -36,7 +36,7 @@ use turbo_tasks::{\n },\n event::{Event, EventListener},\n message_queue::TimingEvent,\n- registry::{self, get_value_type_global_name},\n+ registry::get_value_type,\n task_statistics::TaskS...
2025-09-05T07:12:00
nodejs/node
bdaa898ceaf61840d030ee83b2e9adf40973544d
f8c9ab46947b2ba8289d36c919f23d3622ffebec
tools: fix riscv64 build failed PR-URL: https://github.com/nodejs/node/pull/52888 Reviewed-By: Stewart X Addison <sxa@redhat.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -1176,6 +1176,23 @@\n 'sources': [\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"\\\\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\\\\"riscv64\\\\\".*?sources \\\\+= \")',\n ...
2024-11-18T15:41:23
facebook/react
408258268edb5acdfdbf77bc6e0b0dc6396c0e6f
8b677b1e6ea6cd0f7a5c3b32164c127f1fceb360
fix<compiler>: only call readTestFilter if the filter option is enabled (#29720) Following the instructions in the compiler/docs/DEVELOPMENT_GUIDE.md, we are stuck on the command `yarn snap --watch` because it calls readTestFilter even though the filter option is not enabled.
[ { "path": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -153,8 +153,8 @@ function subscribeFilterFile(\n } else if (\n events.findIndex((event) => event.path.includes(FILTER_FILENAME)) !== -1\n ) {\n- state.filter = await readTestFilter();\n if (state.mode.filter) {\n+ ...
2024-06-03T23:09:58
electron/electron
7d6a754d474c278e13d025f752baa7da04b86065
0dad99561b4232418dcf7ae48877bab35d633927
fix: skip the first two invalid updates when SCK is enabled (#41340)
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,4 +128,4 @@ feat_allow_code_cache_in_custom_schemes.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n fix_suppress_clang_-wimplicit-const-int-float-conversion_in.patch\n fix_getcursorscreenpoint_wrongly_returns_0_0.patch\n-fix_add_support_...
2024-02-14T19:56:29
vercel/next.js
6d34793866be9e06a29c171ee5ce268586f3bd11
6316c4bd11c38384ac560ca2b8c487e085815782
[turbopack] Attempt #2 at making rust-analyzer happy with our macros (#83461) We are experiencing https://github.com/rust-lang/rust-analyzer/issues/19993 and Rust Analyzer is complaining about our macro gencode. After some trial and error i determined the issue was our use of the `concat!` and specifically the inclus...
[ { "path": "turbopack/crates/turbo-tasks-macros/src/global_name.rs", "patch": "@@ -5,7 +5,7 @@ use quote::quote;\n ///\n /// The name is prefixed with the current crate name and module path\n pub(crate) fn global_name(local_name: impl quote::ToTokens) -> TokenStream {\n- let crate_name =\n- std::en...
2025-09-05T06:59:46
nodejs/node
775a10039a8eaa6c7d2784701c91eac1a17ba47c
b648d37ad76072f380d167baf84863507975f0ad
test_runner: error on mocking an already mocked date Fixes #55849 PR-URL: https://github.com/nodejs/node/pull/55858 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
[ { "path": "lib/internal/test_runner/mock/mock_timers.js", "patch": "@@ -328,6 +328,9 @@ class MockTimers {\n #createDate() {\n kMock ??= Symbol('MockTimers');\n const NativeDateConstructor = this.#nativeDateDescriptor.value;\n+ if (NativeDateConstructor.isMock) {\n+ throw new ERR_INVALID_S...
2024-11-17T10:25:12
golang/go
26338a7f691b45017168b6523c95d4578a2cfd4d
8587ba272ede9b6607ec06822e743db71f3ba563
cmd/compile: use better fatal message for staticValue1 So the position of the wrong assignment statement will be reported, instead of using incorrect base.Pos one. Notice while fixing issue #73823. Change-Id: I53f240bf99d11b5f5082ee4ca0903d9f099881b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/675495 LUCI...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -912,12 +912,12 @@ FindRHS:\n \t\t\t\tbreak FindRHS\n \t\t\t}\n \t\t}\n-\t\tbase.Fatalf(\"%v missing from LHS of %v\", n, defn)\n+\t\tbase.FatalfAt(defn.Pos(), \"%v missing from LHS of %v\", n, defn)\n \tdefault:\n \t\treturn nil\n \t}\n \tif rhs...
2025-05-22T13:57:33
nodejs/node
9f2885ad21f6cdc3352b3cbc777af1f0e8a2e318
7fa2a134af35fb794f7e618d823b3df38b104719
Revert "src: migrate `String::Value` to `String::ValueView`" This reverts commit 45c6a9e1f6e165eb0ab2f7b5635662aa1875c171. PR-URL: https://github.com/nodejs/node/pull/55828 Fixes: https://github.com/nodejs/node/issues/55826 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Antoine du Hamel <duhamelanto...
[ { "path": "src/inspector_js_api.cc", "patch": "@@ -245,9 +245,9 @@ static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n \n CHECK(args[0]->IsString());\n-\n- TwoByteValue task_name_buffer(args.GetIsolate(), args[0]);\n- S...
2024-11-16T23:42:26
golang/go
8587ba272ede9b6607ec06822e743db71f3ba563
cae45167b79ec3838f0cabb19394bcd99810f79a
cmd/cgo: compare malloc return value to NULL instead of literal 0 Follow the pattern used in the other _cgoPREFIX_Cfunc* functions. This also avoids a -Wzero-as-null-pointer-constant warning when compiling with g++. Change-Id: I95ac8842df048105f4c738f3603136d9cfa2dfdc Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1812,7 +1812,7 @@ void _cgoPREFIX_Cfunc__Cmalloc(void *v) {\n \tvoid *ret;\n \t_cgo_tsan_acquire();\n \tret = malloc(a->p0);\n-\tif (ret == 0 && a->p0 == 0) {\n+\tif (ret == NULL && a->p0 == 0) {\n \t\tret = malloc(1);\n \t}\n \ta->r1 = ret;", "additions": 1...
2025-05-28T09:26:17
vercel/next.js
38c4caf22a570868b8c1689c843044807560b4a7
a270b00e4c29f1829ed887e459f69a71ef488ea2
[turbopack] Don't execute inventory_submit in rust analyzer (#83447) ### What? In #83074 we changed how turbo task objects were registered to use the `inventory` crate. This PR adds a new `inventory_submit!` macro that wraps the existing `inventory::submit` function with a `#[cfg(not(rust_analyzer))]` attribute to pre...
[ { "path": "turbopack/crates/turbo-tasks-backend/fuzz/Cargo.toml", "patch": "@@ -32,3 +32,7 @@ path = \"afl_targets/graph.rs\"\n test = false\n doc = false\n bench = false\n+\n+\n+[lints]\n+workspace = true", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/cr...
2025-09-04T20:31:50
facebook/react
8c3697a849b7e9ceeb47642ba61c270b7e6dd176
4dcdf21325028d7ae9bb3c2172dbbe9647a744ac
Fix xplat sync to ignore @generated header (#29738) Use some clever git diffing to ignore lines that only change the `@generated` header. We can't do this for the version string because the version string can be embedded in lines with other changes, but this header is always on one line.
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -329,7 +329,9 @@ jobs:\n git status\n echo \"====================\"\n echo \"Checking for changes\"\n- if git status --porcelain | grep -qv '/REVISION'; then\n+ # Check if there are changes in th...
2024-06-03T20:39:38
electron/electron
0dad99561b4232418dcf7ae48877bab35d633927
7e241eef7c2e77edd882c25ccc6c38d1f29367ea
chore: bump chromium to 123.0.6296.0 (main) (#41204) * chore: bump chromium in DEPS to 123.0.6273.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6274.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6276.0 * chore: update patches * WIP: 5239586: Change View::Layout...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6272.0',\n+ '123.0.6296.0',\n 'node_version':\n 'v20.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-02-14T17:33:32
vercel/next.js
a270b00e4c29f1829ed887e459f69a71ef488ea2
74c3745608a87cc49a204ba381c05134e328f183
[turbopack] Add an execution test for the behavior when a module throws an error (#83451) Confirms that we don't re-evaluate modules after an error Clearing the require.cache allows us to re-evaluate
[ { "path": "turbopack/crates/turbopack-tests/tests/execution/turbopack/evaluation-errors/basic/input/index.js", "patch": "@@ -0,0 +1,23 @@\n+it('module evaluation rethrows but does not re-evaluate', async () => {\n+ expect(globalThis.evalCounter).toBeUndefined()\n+ await assertThrowsThrows()\n+ expect(glo...
2025-09-04T20:04:46
nodejs/node
c91ce2120c5c292f28685b364f2e3a897da751ea
293386626aa0f7429ffef39ac6fa80f25c8fdf2f
fs: fix `getDirent().parentPath` when type is `UV_DIRENT_UNKNOWN` PR-URL: https://github.com/nodejs/node/pull/55553 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -301,7 +301,7 @@ function getDirent(path, name, type, callback) {\n callback(err);\n return;\n }\n- callback(null, new DirentFromStats(name, stats, filepath));\n+ callback(null, new DirentFromStats(name, stats, path...
2024-11-16T23:23:58
golang/go
cae45167b79ec3838f0cabb19394bcd99810f79a
2ddf542e4c30b2d4886482c44b57259f5b461158
go/types, types2: better error messages for certain type mismatches When an untyped operand of a (typically binary) operation does not match the type of the operand and an implicit conversion is not possible, the error message should report a "type mismatch". The type-checkers mostly did so, but not for untyped numer...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -895,6 +895,10 @@ func (check *Checker) matchTypes(x, y *operand) {\n \t\tif isTyped(x.typ) && isTyped(y.typ) {\n \t\t\treturn false\n \t\t}\n+\t\t// A numeric type can only convert to another numeric type.\n+\t\tif allNumeric(x.typ) != allNu...
2025-06-18T00:09:27
facebook/react
4dcdf21325028d7ae9bb3c2172dbbe9647a744ac
bf3a29d097a5d457e85a58a183fb9e12714fbece
[Fiber] Prefix owner stacks with the current stack at the console call (#29697) This information is available in the regular stack but since that's hidden behind an expando and our appended stack to logs is not hidden, it hides the most important frames like the name of the current component. This is closer to w...
[ { "path": "packages/react-reconciler/src/ReactCurrentFiber.js", "patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(): string {\n+function getCurrentFiberStackInDev(stack: Error): string {\n if (__DEV__) {\n if (...
2024-06-03T16:26:38
electron/electron
79147e4dd825aa26ea0242470c2bad47c3998fe3
32920af4b78213b4479f20796e989d4cc56ce9db
fix: Ignore `-webkit-app-region: drag;` when window is in full screen mode. (#41307) Co-authored-by: Mikhail Leliakin <lelyakin.aus@gmail.com>
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -757,6 +757,11 @@ int NativeWindow::NonClientHitTest(const gfx::Point& point) {\n }\n #endif\n \n+ // This is to disable dragging in HTML5 full screen mode.\n+ // Details: https://github.com/electron/electron/issues/41002\n+ if (GetWidget()->IsFu...
2024-02-14T10:12:41
nodejs/node
b67986f57a17030afc3beee7bdfa3fed30d25ba2
7d28de9a7991ce83e304600458e26dc958f55aa2
doc: add `node:sqlite` to mandatory `node:` prefix list PR-URL: https://github.com/nodejs/node/pull/55846 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -519,6 +519,7 @@ modules from having a conflict with user land packages that already have\n taken the name. Currently the built-in modules that requires the `node:` prefix are:\n \n * [`node:sea`][]\n+* [`node:sqlite`][]\n * [`node:test`][]\n * [`node:test/report...
2024-11-16T04:05:45
rust-lang/rust
96e7213d310861698667e36b5568147c9217c84e
11953d71f5e18701e6a9f7c10f3bb612422e726b
Fix rustc test suite
[ { "path": "scripts/setup_rust_fork.sh", "patch": "@@ -63,18 +63,18 @@ index 2e16f2cf27..3ac3df99a8 100644\n # Note that RUSTFLAGS_BOOTSTRAP should always be added to the end of\n # RUSTFLAGS, since that causes RUSTFLAGS_BOOTSTRAP to override RUSTFLAGS.\n diff --git a/src/bootstrap/src/core...
2026-02-20T11:01:07
golang/go
52b6d7f67af28a4df6665a595e3f35b9875be2b5
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
runtime: drop NetBSD kernel bug sysmon workaround fixed in NetBSD 9.2 The NetBSD releases supported by the NetBSD project as off today are 9.4 and 10.1. The Go project's NetBSD builders are on 9.3. Thus, it is fine to drop the workaround which was only needed for NetBSD before 9.2. Fixes #46495 Cq-Include-Trybots: l...
[ { "path": "src/runtime/os_netbsd.go", "patch": "@@ -101,9 +101,6 @@ var sigset_all = sigset{[4]uint32{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)\n \n // From NetBSD's <sys/sysctl.h>\n const (\n-\t_CTL_KERN = 1\n-\t_KERN_OSREV = 3\n-\n \t_CTL_HW = 6\n \t_HW_NCPU = 3\n \t_HW_PAGESIZE = 7\...
2025-07-11T20:59:10
vercel/next.js
963655735d4eb47cbcfc121a3a5a7fc4eaa5b9a2
818e83515c62ccce2c306651d972a55a6f9dd16c
[turbopack] Improve handling of symlink resolution errors in track_glob and read_glob (#83357) # Improve symlink handling in turbo-tasks-fs This PR enhances symlink handling in the filesystem layer to better handle error cases and provide more detailed error messages. The key changes include: - Refactored `realpath_...
[ { "path": "crates/next-core/src/pages_structure.rs", "patch": "@@ -106,11 +106,11 @@ pub async fn find_pages_structure(\n page_extensions: Vc<Vec<RcStr>>,\n next_mode: Vc<crate::mode::NextMode>,\n ) -> Result<Vc<PagesStructure>> {\n- let pages_root = project_root.join(\"pages\")?.realpath().owned...
2025-09-04T17:41:48
facebook/react
9598c41a20162c8a9d57ccf6a356aa183b00b61a
67b05be0d216c4efebc4bb5acb12c861a18bd87c
useActionState: On error, cancel remaining actions (#29695) Based on - #29694 --- If an action in the useActionState queue errors, we shouldn't run any subsequent actions. The contract of useActionState is that the actions run in sequence, and that one action can assume that all previous actions have comp...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js", "patch": "@@ -1237,14 +1237,12 @@ describe('ReactDOMForm', () => {\n \n // @gate enableAsyncActions\n test('useActionState: error handling (sync action)', async () => {\n- let resetErrorBoundary;\n class ErrorBoundary extends Reac...
2024-06-03T15:25:43
electron/electron
32920af4b78213b4479f20796e989d4cc56ce9db
0218af9af0e4a8896e01b4272013b46d43fb4d6c
fix: add capability to use ScreenCaptureKit for thumbnail generation (#41328) This aligns us with Chromiums flags / capabilities in regards to using SCK for everything. Currently on 14.4 Electron apps will pop warnings for usage of deprecated APIs. With this change and a few "enable-features" toggles. `--enable-...
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -242,6 +242,8 @@ static_library(\"chrome\") {\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_mac.mm\",\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.h\",\n \"//chrome/browser/media/webrtc/sys...
2024-02-14T04:46:51
nodejs/node
d9540b51ebc1a97bbb109fff0825c2f0090aefa2
8a29648ff5604477778b279744b6df0fcc837c6a
fs: remove `dirent.path` PR-URL: https://github.com/nodejs/node/pull/55548 Fixes: https://github.com/nodejs/node/issues/55538 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Ethan Arrowood <ethan@arrowood.d...
[ { "path": "benchmark/fs/bench-opendirSync.js", "patch": "@@ -8,7 +8,7 @@ tmpdir.refresh();\n \n const testFiles = fs.readdirSync('test', { withFileTypes: true })\n .filter((f) => f.isDirectory())\n- .map((f) => path.join(f.path, f.name));\n+ .map((f) => path.join(f.parentPath, f.name));\n const bench = ...
2024-10-26T08:27:24
rust-lang/rust
87b3f55b16011d5f85895373c6bead55b5810f08
2a2a8aea584e45e877fdfe8fc4c905028acebd84
fix src/tools
[ { "path": "clippy_lints/src/attrs/inline_always.rs", "patch": "@@ -1,6 +1,6 @@\n use super::INLINE_ALWAYS;\n use clippy_utils::diagnostics::span_lint;\n-use rustc_hir::attrs::{AttributeKind, InlineAttr};\n+use rustc_hir::attrs::InlineAttr;\n use rustc_hir::{Attribute, find_attr};\n use rustc_lint::LateConte...
2026-02-18T13:28:07
facebook/react
def67b9b329c8aa204e611cd510c5a64680aee58
47d0c30246134ad9ce04abdcf0977cf2d49d00ce
Fix stylesheet typo in 29693 (#29732) stylehsheet -> stylesheet
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2442,7 +2442,7 @@ export function getResource(\n + ${describeLinkForResourceErrorDEV(pendingProps)}`;\n }\n throw new Error(\n- 'Expected <link> not to update to be updated to a stylehsh...
2024-06-03T14:51:21
vercel/next.js
544f52126ed0f16b78044ea16e8e1170f6503179
1bfe63a6d01749c8917e298fe016d8d111bab8a2
fix: Include CSP nonce in next/dynamic preload (#81999) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -1982,7 +1982,8 @@ export const renderToHTMLOrFlight: AppPageRender = (\n previewModeId: renderOpts.previewProps?.previewModeId,\n })\n \n- const { isPrefetchRequest, previouslyRevalidatedTags } = parsedRequestHeaders\n+ co...
2025-09-04T16:18:44
electron/electron
0218af9af0e4a8896e01b4272013b46d43fb4d6c
6a616ab70cfbc1483308af022ae6459e8e3fa7c8
fix: work around `unarchivedObjectOfClass` requiring `secureCoding` (#41319)
[ { "path": "patches/squirrel.mac/refactor_use_non-deprecated_nskeyedarchiver_apis.patch", "patch": "@@ -11,23 +11,33 @@ Several NSKeyedArchiver methods have been deprecated and replaced as of macOS 10\n - archivedDataWithRootObject -> archivedDataWithRootObject:requiringSecureCoding:error:\n \n diff --git a/...
2024-02-14T03:08:03
golang/go
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
6536a9354728523f7ac3627f558ba3f51163e72c
cmd/go: clean should respect workspaces The existing implementation doesn't invoke modload.InitWorkfile during runClean which in turn causes go clean to ignore workspaces and consequentially workspace vendoring. Fixes #74337 Change-Id: I295a1fcc5e81d096971c8cee9c9baa840c7725e7 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -120,6 +120,7 @@ func init() {\n }\n \n func runClean(ctx context.Context, cmd *base.Command, args []string) {\n+\tmodload.InitWorkfile()\n \tif len(args) > 0 {\n \t\tcacheFlag := \"\"\n \t\tswitch {", "additions": 1, "deletions": 0, "...
2025-06-23T10:39:20
nodejs/node
be5a500ae39baba2747be1b94972ef8d224fcb49
b52a49bfb1871181b6160606b1a434373602fcbe
doc: fix history info for `URL.prototype.toJSON` PR-URL: https://github.com/nodejs/node/pull/55818 Fixes: https://github.com/nodejs/node/issues/55806 Refs: https://github.com/nodejs/node/pull/11236 Refs: https://github.com/nodejs/node/pull/17365 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi ...
[ { "path": "doc/api/url.md", "patch": "@@ -600,6 +600,12 @@ value returned is equivalent to that of [`url.href`][] and [`url.toJSON()`][].\n \n #### `url.toJSON()`\n \n+<!-- YAML\n+added:\n+ - v7.7.0\n+ - v6.13.0\n+-->\n+\n * Returns: {string}\n \n The `toJSON()` method on the `URL` object returns the seri...
2024-11-13T16:47:28
facebook/react
47d0c30246134ad9ce04abdcf0977cf2d49d00ce
b421783110fb20f139adf4c4f9a8911dc63f9c68
[Fiber][Float] Error when a host fiber changes "flavor" (#29693) Host Components can exist as four semantic types 1. regular Components (Vanilla obv) 2. singleton Components 2. hoistable components 3. resources Each of these component types have their own rules related to mounting and reconciliation however ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2358,6 +2358,7 @@ export function getResource(\n type: string,\n currentProps: any,\n pendingProps: any,\n+ currentResource: null | Resource,\n ): null | Resource {\n const resourceRoot = getCurrentResourceRoot...
2024-06-03T14:47:45
vercel/next.js
1bfe63a6d01749c8917e298fe016d8d111bab8a2
a225045924f20499e3368bc5f96db8c12d6f093c
auto-enable errors.json merge driver (#83420) The merge driver for `errors.json` has been around for a while, and seems to work without issues. This PR enables it by default by installing it in `postinstall`(via the existing `git-configure.mjs` script which is invoked from there already) It also adds `scripts/merge-e...
[ { "path": "scripts/git-configure.mjs", "patch": "@@ -1,12 +1,19 @@\n+// @ts-check\n import execa from 'execa'\n \n // See https://github.com/vercel/next.js/pull/47375\n-const { stdout, stderr } = await execa(\n- 'git',\n- ['config', 'index.skipHash', 'false'],\n- {\n- reject: false,\n- }\n-)\n+await ...
2025-09-04T16:08:47
electron/electron
4ded4d16a83b3fb714df5b60003812456097f298
c894645ac68af14183d617570a2d51336a2578ad
fix: destroy `NodeService` message pipe last (#41277) refactor: destroy NodeService message pipe last
[ { "path": "shell/services/node/node_service.h", "patch": "@@ -61,6 +61,12 @@ class NodeService : public node::mojom::NodeService {\n void Initialize(node::mojom::NodeServiceParamsPtr params) override;\n \n private:\n+ // This needs to be initialized first so that it can be destroyed last\n+ // after th...
2024-02-09T21:44:35
rust-lang/rust
8e7bc3c7d1689e17319b2d6fdc1220c373de7596
df23df54a6c4ad486b0231fd3dc2ea7a65f20989
fix src/tools
[ { "path": "compiler/rustc_hir/src/attrs/data_structures.rs", "patch": "@@ -1233,9 +1233,6 @@ pub enum AttributeKind {\n /// Represents `#[rustc_diagnostic_item]`\n RustcDiagnosticItem(Symbol),\n \n- /// Represents `#[rustc_diagnostic_item]`\n- RustcDiagnosticItem(Symbol),\n-\n /// Represen...
2026-02-18T13:28:07
golang/go
6536a9354728523f7ac3627f558ba3f51163e72c
efc37e97c0f358f3cffe7ca2b78c743470345189
encoding/json/jsontext: preserve buffer capacity in Decoder.Reset The Decoder.Reset method is not preserving the internal buffer between resets, causing buffer capacity to be lost and resulting in unnecessary allocations when reusing decoders. This is particularly problematic when decoding many small messages. This c...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -138,7 +138,14 @@ func (d *Decoder) Reset(r io.Reader, opts ...Options) {\n \tcase d.s.Flags.Get(jsonflags.WithinArshalCall):\n \t\tpanic(\"jsontext: cannot reset Decoder passed to json.UnmarshalerFrom\")\n \t}\n-\td.s.reset(nil, r, opts...)\n+\...
2025-06-23T11:47:21
nodejs/node
bd0c4f80e4a7e54070f991bc6d1a7bf03f0ac4fc
2310409a89d2d76fdc87289b99011750203b79fb
test: fix permission fixtures lint PR-URL: https://github.com/nodejs/node/pull/55819 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/fixtures/permission/main-module.js", "patch": "@@ -1 +1 @@\n-require('./required-module');\n\\ No newline at end of file\n+require('./required-module');", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "test/fixtures/permission/main-module.mjs", ...
2024-11-12T16:39:24
vercel/next.js
a225045924f20499e3368bc5f96db8c12d6f093c
82cfc5efff9e81158a08b15ae68a7ca53e96af2f
Docs: Fix broken getImageProps sample code (#83436) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -891,7 +891,7 @@ The `getImageProps` function can be used to get the props that would be passed t\n ```jsx\n import { getImageProps } from 'next/image'\n \n-const props = getImageProps({\n+const { props } = getImageProps({\n sr...
2025-09-04T15:18:12
facebook/react
ba099e442b602b9414693dab9cfa67e19051037c
d77dd31a329df55a051800fc76668af8da8332b4
[Flight] Add findSourceMapURL option to get a URL to load Server source maps from (#29708) This lets you click a stack frame on the client and see the Server source code inline. <img width="871" alt="Screenshot 2024-06-01 at 11 44 24 PM" src="https://github.com/facebook/react/assets/63648/581281ce-0dce-40c0-a084-...
[ { "path": "fixtures/flight/config/webpack.config.js", "patch": "@@ -199,7 +199,7 @@ module.exports = function (webpackEnv) {\n ? shouldUseSourceMap\n ? 'source-map'\n : false\n- : isEnvDevelopment && 'cheap-module-source-map',\n+ : isEnvDevelopment && 'source-map',\n // T...
2024-06-03T02:58:24
electron/electron
c894645ac68af14183d617570a2d51336a2578ad
9655ae7d6ae9de4b467d197957bb3c7a152e3ddd
fix: crash on macOS non-programmatic close (#41264)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -439,11 +439,14 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if ([window_ attachedSheet])\n [window_ endSheet:[window_ attachedSheet]];\n \n+ // window_ could be nil after performClose.\n+ bool should...
2024-02-09T21:44:24
rust-lang/rust
a81565667cffff4e48b946abb5316d7e498262be
e63814d6d197a14bc9f31eea6f9e94a746bdd50a
fix: handle core panics in all format lints `core::panic` was missing in the formatting arg lints
[ { "path": "clippy_utils/src/macros.rs", "patch": "@@ -19,6 +19,7 @@ const FORMAT_MACRO_DIAG_ITEMS: &[Symbol] = &[\n sym::assert_eq_macro,\n sym::assert_macro,\n sym::assert_ne_macro,\n+ sym::core_panic_macro,\n sym::debug_assert_eq_macro,\n sym::debug_assert_macro,\n sym::debug_as...
2026-02-20T08:56:31
golang/go
efc37e97c0f358f3cffe7ca2b78c743470345189
98a031193b93d7b0e8353810351c9544250e7bcd
cmd/go: always return the cached path from go tool -n If we're running go tool -n always return the cached path of the tool. We can't always use the cached path when running the tool because if we copied the tool to the cached location in the same process and then try to run it we'll run into #22315, producing spuriou...
[ { "path": "src/cmd/go/internal/tool/tool.go", "patch": "@@ -277,6 +277,29 @@ func loadModTool(ctx context.Context, name string) string {\n \treturn \"\"\n }\n \n+func builtTool(runAction *work.Action) string {\n+\tlinkAction := runAction.Deps[0]\n+\tif toolN {\n+\t\t// #72824: If -n is set, use the cached p...
2025-07-18T18:14:16
nodejs/node
2310409a89d2d76fdc87289b99011750203b79fb
03d414ed9add84541e71d180fed1b7b0609ff6c8
report: fix network queries in getReport libuv with exclude-network PR-URL: https://github.com/nodejs/node/pull/55602 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <cont...
[ { "path": "doc/api/report.md", "patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 3,\n+ \"reportVersion\": 4,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"...
2024-11-12T15:57:59
facebook/react
113c8e7f72bcf5d3bc285546da1508b45da3cf53
adbec0c25aff07f04b0678679554505ba2813168
[compiler:eslint] Don't crash if hermes parser fails to parse Eslint rules should never throw, so if we fail to parse with Babel or Hermes, we should just ignore the error. This should fix issues such as trying to run the eslint rule on non tsx|ts|jsx|js files, Hermes parser not supporting certain JS syntax, etc. I d...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts", "patch": "@@ -124,12 +124,14 @@ const rule: Rule.RuleModule = {\n });\n } catch {}\n } else {\n- babelAST = HermesParser.parse(sourceCode, {\n- babel: true,\n- enableExperimentalCo...
2024-05-31T00:18:26
electron/electron
9655ae7d6ae9de4b467d197957bb3c7a152e3ddd
cee51785e1ed057fa5c78b2fc7bb1e8a5b91053d
fix: `GetCursorScreenpoint()` sometimes wrongly returns `(0,0)` (#41275)
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n build_run_reclient_cfg_generator_after_chrome.patch\n fix_suppress_clang_-wimplicit-const-int-float-conversion_in.patch\n+fix_getcurso...
2024-02-09T15:44:46
vercel/next.js
eadcd5435d82c380db0742825281270be8f71b79
e539ca1e48dd0e09bbd67fd1b809707ba5863b1e
[test] Improve debug logs for Playwright tests (#83431)
[ { "path": "run-tests.js", "patch": "@@ -463,7 +463,6 @@ ${ENDGROUP}`)\n '--runInBand',\n '--forceExit',\n '--verbose',\n- '--silent',\n ...(isTestJob\n ? ['--json', `--outputFile=${test.file}${RESULTS_EXT}`]\n : []),", "additions": 0, "delet...
2025-09-04T13:19:17
golang/go
98a031193b93d7b0e8353810351c9544250e7bcd
6bb42997c8741f301f2655175abe2b6bdc943ed8
runtime: check TestUsingVDSO ExitError type assertion Currently this test panics if the error is not an ExitError. We aren't expecting other errors, but we want to continue to the t.Fatal so the error contents actually get logged. For #74672. Change-Id: I6a6a636cee5ddac500ed7ec549340b02944101ab Reviewed-on: https://...
[ { "path": "src/runtime/vdso_test.go", "patch": "@@ -62,7 +62,7 @@ func TestUsingVDSO(t *testing.T) {\n \t\tt.Logf(\"%s\", out)\n \t}\n \tif err != nil {\n-\t\tif err := err.(*exec.ExitError); err != nil && err.Sys().(syscall.WaitStatus).Signaled() {\n+\t\tif err, ok := err.(*exec.ExitError); ok && err.Sys()...
2025-07-23T20:56:50
nodejs/node
07e2819d5d3f9c1f0b71696a77cea3c6fc6f5c15
8531e072f3c70e26a4ba6fecd6ed0e099a898410
esm: fix import.meta.resolve crash PR-URL: https://github.com/nodejs/node/pull/55777 Fixes: https://github.com/nodejs/node/issues/55518 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/node_modules.cc", "patch": "@@ -412,7 +412,10 @@ void BindingData::GetPackageScopeConfig(\n }\n \n auto file_url = url::FileURLToPath(realm->env(), *package_json_url);\n- CHECK(file_url);\n+ if (!file_url) {\n+ url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std...
2024-11-11T16:29:16
facebook/react
adbec0c25aff07f04b0678679554505ba2813168
ec6fe57a5027d60a959493a2e44b6872b8de0ab8
Fix: `useTransition` after `use` gets stuck in pending state (#29670) When a component suspends with `use`, we switch to the "re-render" dispatcher during the subsequent render attempt, so that we can reuse the work from the initial attempt. However, once we run out of hooks from the previous attempt, we should swi...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -1083,20 +1083,49 @@ function useThenable<T>(thenable: Thenable<T>): T {\n thenableState = createThenableState();\n }\n const result = trackUsedThenable(thenableState, thenable, index);\n- if (\n- currentlyRenderingFiber....
2024-05-31T21:52:47
electron/electron
b253d52faf932d9613ad149fdaecabaf9c1c0218
4d060afc98dd2eef076dd415f2a03ea642a5baa7
build: export matching patches (#41174) * build: make patches/config.json an array of objects This file was previously an object of patch_dir keys to repo values; Now is an array of objects containing `patch_dir` and `repo` properties. This makes other per-target properties (e.g. `grep`) possible. * build: inc...
[ { "path": "patches/config.json", "patch": "@@ -1,27 +1,15 @@\n-{\n- \"src/electron/patches/chromium\": \"src\",\n-\n- \"src/electron/patches/boringssl\": \"src/third_party/boringssl/src\",\n-\n- \"src/electron/patches/devtools_frontend\": \"src/third_party/devtools-frontend/src\",\n-\n- \"src/electron/p...
2024-02-08T18:47:59
vercel/next.js
e539ca1e48dd0e09bbd67fd1b809707ba5863b1e
6472fb5c2cd4f36012e2026ff6876ad4205cc01e
build: error on different root folder (#83416)
[ { "path": "packages/next/errors.json", "patch": "@@ -798,5 +798,6 @@\n \"797\": \"Failed to transpile \\\"%s\\\".\",\n \"798\": \"expected a result to be returned\",\n \"799\": \"expected a page response, got %s\",\n- \"800\": \"`experimental.rdcForNavigations` is enabled, but `experimental.ppr` is n...
2025-09-04T13:14:00
rust-lang/rust
4da823ba4be74cdd840c6db854ee57cc0c864d31
fbd6934114e905d3cc61adbbd7e4a355eac5d0d7
Do not enable split debuginfo for windows-gnu Because rustc doesn't handle split debuginfo for these targets, enabling that option causes them to be missing some of the debuginfo.
[ { "path": "bootstrap.example.toml", "patch": "@@ -1008,9 +1008,10 @@\n # its historical default, but when compiling the compiler itself, we skip it by\n # default since we know it's safe to do so in that case.\n #\n-# On Windows platforms, packed debuginfo is the only supported option,\n-# producing a `.pdb...
2026-02-19T21:11:58
nodejs/node
7bcc250799443dc955618d5e0ec1c4cbc6bfaed7
69f8794cbea5813ff9abb490c2cd875b8332f605
tools: fix exclude labels for commit-queue The `gh` cli doesn't recognise `--no-label`. Instead exclude labels via the `--search` flag. Refs: https://github.com/nodejs/node/pull/55781#issuecomment-2466782441 Refs: https://github.com/cli/cli/discussions/4142 PR-URL: https://github.com/nodejs/node/pull/55809 Reviewed-B...
[ { "path": ".github/workflows/commit-queue.yml", "patch": "@@ -37,17 +37,16 @@ jobs:\n --repo ${{ github.repository }} \\\n --base ${{ github.ref_name }} \\\n --label 'commit-queue' \\\n- --no-label 'blocked' \\\n --json...
2024-11-10T15:59:05
facebook/react
ec6fe57a5027d60a959493a2e44b6872b8de0ab8
522d22f29904f2164210b3ae218b9b69b61e9a4c
[compiler] rfc: Include location information in identifiers and reactive scopes for debugging Summary: Using the change detection code to debug codebases that violate the rules of react is a lot easier when we have a source location corresponding to the value that has changed inappropriately. I didn't see an easy way ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -124,7 +124,7 @@ export function lower(\n ) {\n const place: Place = {\n kind: \"Identifier\",\n- identifier: builder.makeTemporary(),\n+ identifier: builder.makeTemporary(param.node.l...
2024-05-31T21:06:04
golang/go
71c2bf551303930faa32886446910fa5bd0a701a
c74399e7f5e763e6c25978d090122a0a73a695ee
cmd/compile: fix loclist for heap return vars without optimizations When compiling without optimizations certain variables such as return params end up missing location lists. Fixes #65405 Change-Id: Id4ec6b1ab6681fd77b8fefb47a4ec05060c128ef GitHub-Last-Rev: 5ab6a5398162119dd0cd5325f4239b4559b030bd GitHub-Pull-Reque...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -248,11 +248,6 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\tif n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT {\n \t\t\ttag = dwarf.DW_TAG_formal_parameter\n \t\t}\n-\t\tif n.Esc() == ir.EscHea...
2025-07-22T22:05:06
electron/electron
42087e306c31044d22cd39b48ffb76487c315978
2ea569e0d271bdd1b4e5b629133aec703ad8a3b2
fix: add language to html in quick-start.md (#41225) Add language to html in quick-start.md We must define language in HTML for different reasons (accessibility++)
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -126,7 +126,7 @@ folder of your project:\n \n ```html\n <!DOCTYPE html>\n-<html>\n+<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\">\n <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->\n@@ -420,9 +420,8 @@ window.addEventList...
2024-02-08T01:27:50
vercel/next.js
dd31b3d6a27a60917ff9c2cb7877ba53e6ea77cf
7e0fc3b2713df41f7b77945f64e3fb7b4c390a38
Tests: Don't use next/dist for test/e2e/streaming-ssr (#83262) ## What? This test incorrectly using internals instead of the public api. Switched it to using the custom server api.
[ { "path": "test/e2e/streaming-ssr/custom-server/server.js", "patch": "@@ -1,43 +1,31 @@\n-const NextServer = require('next/dist/server/next-server').default\n-const defaultNextConfig =\n- require('next/dist/server/config-shared').defaultConfig\n+const next = require('next')\n const http = require('http')\n...
2025-09-04T09:55:25
facebook/react
522d22f29904f2164210b3ae218b9b69b61e9a4c
c69211a9dfa683038b1a758aba2ca09c7862a6d3
[compiler] Recompute values every time Summary: This PR expands the analysis from the previous in the stack in order to also capture when a value can incorrectly change within a single render, rather than just changing between two renders. In the case where dependencies have changed and so a new value is being compute...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -461,6 +461,11 @@ function codegenReactiveScope(\n ): void {\n const cacheStoreStatements: Array<t.Statement> = [];\n const cacheLoadStatements: Array<t.Statement> = [];\n+ const cacheL...
2024-05-31T21:06:02
golang/go
c74399e7f5e763e6c25978d090122a0a73a695ee
4ed9943b264170b11af375f9cc82807516578c77
net: correct comment for ListenConfig.ListenPacket Fixes #74634 Change-Id: I21196c4aef1b717bfda0b54e61b35e83cfa9dc1b Reviewed-on: https://go-review.googlesource.com/c/go/+/689075 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/net/dial.go", "patch": "@@ -837,7 +837,7 @@ func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Li\n // parameters.\n //\n // The ctx argument is used while resolving the address on which to listen;\n-// it does not affect the returned Listener.\n+// it does not affe...
2025-07-20T23:20:11
electron/electron
2ea569e0d271bdd1b4e5b629133aec703ad8a3b2
4367c5ad9e44ec6f4464cdd7a08a0e447203d21b
docs: fix docs/api/base-window.md (#41240) * docs: fix docs/api/base-window.md * Update docs/api/base-window.md Co-authored-by: David Sanders <dsanders11@ucsbalum.com> --------- Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
[ { "path": "docs/api/base-window.md", "patch": "@@ -345,6 +345,10 @@ A `Integer` property representing the unique ID of the window. Each ID is unique\n \n A `View` property for the content view of the window.\n \n+#### `win.tabbingIdentifier` _macOS_ _Readonly_\n+\n+A `string` (optional) property that is equ...
2024-02-08T01:13:48
rust-lang/rust
751b7d5bda0676f55f14a1451c58b6c9cb92bfd3
41198cb9659f3cc7c4a1a3ee97bc4af78bee403e
Build: Add `stdenv.cc.cc.lib` to Nix dependencies Otherwise, it systematically fails on: ``` error: process didn't exit successfully: `[...]/rust/build/bootstrap/debug/rustc [...]/rust/build/bootstrap/debug/rustc -vV` (exit status: 127) --- stderr [...]/rust/build/x86_64-unknown-linux-gnu/stage1/bin/rustc: error whil...
[ { "path": "src/bootstrap/src/core/download.rs", "patch": "@@ -675,6 +675,7 @@ fn fix_bin_or_dylib(out: &Path, fname: &Path, exec_ctx: &ExecutionContext) {\n // the `.nix-deps` location.\n //\n // bintools: Needed for the path of `ld-linux.so` (via `nix-support/dynamic-linker`).\n+ ...
2025-05-16T11:06:27
golang/go
d5ec0815e69175d93bb741e9bb0a55b919facc6d
f7cc61e7d7f77521e073137c6045ba73f66ef902
runtime: relax TestMemoryLimitNoGCPercent a bit It seems to be pretty flaky. I've seen: retained=289438024 limit=268435456 bound=285212672 Which is ~4MB over the bound. Not sure why this tends to be darwin-specific, but we'll fix just darwin for now. (It isn't quite darwin-only, as it appeared in #66893. But ...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -395,6 +395,9 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// somewhat heavily here) this bound is kept loose. In practice the Go runtime\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n+\t\tif runt...
2025-07-21T20:37:27
facebook/react
5c420e3824859b33321b4bc9ce3119806fac56c2
8b01a2e0bf17adc6bb7b81d1d0063c7efe9ea8b1
[compiler] Debug tool to emit change detection code rather than memoization Summary: The essential assumption of the compiler is that if the inputs to a computation have not changed, then the output should not change either--computation that the compiler optimizes is idempotent. This is, of course, known to be false ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -149,7 +149,8 @@ function* runWithEnvironment(\n \n if (\n !env.config.enablePreserveExistingManualUseMemo &&\n- !env.config.disableMemoizationForDebugging\n+ !env.config.disableMemoizationForDebug...
2024-05-31T21:05:58
rust-lang/rust
27c04763e1b74b3ed241002bfb26061f2b3d66be
41198cb9659f3cc7c4a1a3ee97bc4af78bee403e
Fix typo in doc for core::mem::type_info::Struct
[ { "path": "library/core/src/mem/type_info.rs", "patch": "@@ -153,7 +153,7 @@ pub struct Trait {\n pub is_auto: bool,\n }\n \n-/// Compile-time type information about arrays.\n+/// Compile-time type information about structs.\n #[derive(Debug)]\n #[non_exhaustive]\n #[unstable(feature = \"type_info\", is...
2026-02-19T15:27:22
vercel/next.js
7e0fc3b2713df41f7b77945f64e3fb7b4c390a38
f2e3357b5b772da64da37a83b5be7c9195df07eb
Turbopack: refactor segment config parsing (#83297) Closes PACK-5382 Previously, Turbopack validated every single module for route segment config, leading to false positives (on non-page files) and worse build performance. There were also three separate implementations of this logic. Now, all of these cases are fata...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1,7 +1,6 @@\n use anyhow::{Context, Result, bail};\n use next_core::{\n all_assets_from_entries,\n- app_segment_config::NextSegmentConfig,\n app_structure::{\n AppPageLoaderTree, CollectedRootParams, Entrypoint as AppEntrypoint,\n ...
2025-09-04T08:58:23
golang/go
f7cc61e7d7f77521e073137c6045ba73f66ef902
5dac42363ba8281a3f4f08e03af2292b763adc38
cmd/compile: for arm64 epilog, do SP increment with a single instruction That way, the frame is atomically popped. Previously, for big frames the SP was unwound in two steps (because arm64 can only add constants up to 1<<12 in a single instruction). Fixes #73259 Change-Id: I382c249194ad7bc9fc19607c27487c58d90d49e5 R...
[ { "path": "src/cmd/internal/obj/arm64/obj7.go", "patch": "@@ -907,18 +907,49 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tp.To.Reg = REGFP\n \t\t\t\tp.To.Offset = REGLINK\n \n-\t\t\t\t// ADD $aoffset, RSP, RSP\n-\t\t\t\tq = newprog()\n-\t\t\t\tq.As = AADD\n-\t\t\t\...
2025-07-21T17:09:35
facebook/react
8b01a2e0bf17adc6bb7b81d1d0063c7efe9ea8b1
28fe581bac10ca91b0d12d95beb034cfe790f3d0
[compiler] Option to always take the non-memo branch Summary: This adds a debugging mode to the compiler that simply adds a `|| true` to the guard on all memoization blocks, which results in the generated code never using memoized values and always recomputing them. This is designed as a validation tool for the compil...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -147,7 +147,10 @@ function* runWithEnvironment(\n validateContextVariableLValues(hir);\n validateUseMemo(hir);\n \n- if (!env.config.enablePreserveExistingManualUseMemo) {\n+ if (\n+ !env.config.enabl...
2024-05-31T21:04:54
rust-lang/rust
4f31ff893d4dd6125a445e3bda85c0fae623578c
fbd6934114e905d3cc61adbbd7e4a355eac5d0d7
Not linting irrefutable_let_patterns on let chains inline rest of the check try fix ci errors inline in check_let
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -874,52 +874,6 @@ pub(crate) struct UpperRangeBoundCannotBeMin {\n pub(crate) span: Span,\n }\n \n-#[derive(LintDiagnostic)]\n-#[diag(\n- \"leading irrefutable {$count ->\n- [one] pattern\n- *[other] patterns\n-} in let chain\"\n-...
2025-11-02T02:50:43
nodejs/node
069ec1b983f65b1003a19e82612f7db402213cbe
58a8eb4e1c722d319dc4f2325d9c7b9da2bd587f
doc: consolidate history table of CustomEvent PR-URL: https://github.com/nodejs/node/pull/55758 Fixes: https://github.com/nodejs/node/issues/55733 Refs: https://github.com/nodejs/node/issues/55733 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "doc/api/events.md", "patch": "@@ -2427,11 +2427,17 @@ added:\n - v18.7.0\n - v16.17.0\n changes:\n+ - version: v23.0.0\n+ pr-url: https://github.com/nodejs/node/pull/52723\n+ description: No longer experimental.\n - version:\n - v22.1.0\n - v20.13.0\n pr-url: https://gith...
2024-11-09T02:47:32
vercel/next.js
f2e3357b5b772da64da37a83b5be7c9195df07eb
607cce95f9419c3925016a8153abde93e23808a2
update `.node-version` to v20 (#83413) <!-- 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": ".node-version", "patch": "@@ -1 +1 @@\n-v18\n+v20", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2025-09-04T08:57:21
facebook/react
28fe581bac10ca91b0d12d95beb034cfe790f3d0
8bc81ca90fb0afb3fe4a28d8931733a3e6fef994
[compiler] Option for preserving calls to useMemo/useCallback Summary: This adds a compiler option to not drop existing manual memoization and leaving useMemo/useCallback in the generated source. Why do we need this, given that we also have options to validate or ensure that existing memoization is preserved? It's bec...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -147,8 +147,10 @@ function* runWithEnvironment(\n validateContextVariableLValues(hir);\n validateUseMemo(hir);\n \n- dropManualMemoization(hir);\n- yield log({ kind: \"hir\", name: \"DropManualMemoizatio...
2024-05-31T21:02:12
golang/go
f0e9dc09752cc2f03fcedff458660ab2276bcf8d
03a3887f31264e778c9aaf62247a478eedd3633d
[dev.simd] cmd/compile: fix opLen(2|3)Imm8_2I intrinsic function This function reads the const from the wrong arg, this CL fixes it. Change-Id: Icd38977a35f0df9064efb290fa6390453d6b9e5b Reviewed-on: https://go-review.googlesource.com/c/go/+/688595 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1722,7 +1722,7 @@ func opLen3Imm8(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallE\n \n func opLen2Imm8_2I(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {\n \treturn ...
2025-07-17T22:23:15
nodejs/node
e0ef622c54e49f9d3ae1be2f4631154d90272915
37c941be052a8b98eb6066cc38f8e30603e4c5d8
fs: fix bufferSize option for opendir recursive The bufferSize option was not respected in recursive mode. This PR implements a naive solution to fix this issue until a better implementation can be designed. Fixes: https://github.com/nodejs/node/issues/48820 PR-URL: https://github.com/nodejs/node/pull/55744 Reviewed-...
[ { "path": "lib/internal/fs/dir.js", "patch": "@@ -164,12 +164,16 @@ class Dir {\n return;\n }\n \n- const result = handle.read(\n+ // Fully read the directory and buffer the entries.\n+ // This is a naive solution and for very large sub-directories\n+ // it can even block the event loo...
2024-11-08T16:03:55
electron/electron
5686f88bd298ea682d4eae576a6f84cc7844bd22
768ece6b54f78e65efbea2c3fd39eea30e48332b
refactor: KeyWeakMap cleanup (#41242) * refactor: make KeyWeakMap::KeyObject private * perf: avoid redundant map lookup * refactor: remove unused KeyWeakMap::Has() * refactor: make KeyWeakMap dtor nonvirtual no inheritance used, so no need for virtual dtor? * chore: fix KeyWeakMap code comment * ref...
[ { "path": "shell/common/gin_helper/trackable_object.h", "patch": "@@ -107,7 +107,7 @@ class TrackableObject : public TrackableObjectBase, public EventEmitter<T> {\n \n // Removes this instance from the weak map.\n void RemoveFromWeakMap() {\n- if (weak_map_ && weak_map_->Has(weak_map_id()))\n+ if ...
2024-02-06T15:18:05
vercel/next.js
fc6e3dbc5b8528fdf27478f1bacff769af8115b0
ce359e0065206ae8b2b2139bfd4b55cb273d0a3a
Update next-response.mdx (#83302) This PR aims to fix a typo in documentation Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/01-app/03-api-reference/04-functions/next-response.mdx", "patch": "@@ -58,7 +58,7 @@ Given a cookie name, delete the cookie from the response.\n ```ts\n // Given incoming request /home\n let response = NextResponse.next()\n-// Returns true for deleted, false is nothing is deleted\n+// Return...
2025-09-03T23:31:27
facebook/react
6d3110b4d95a8594b0cbe437c9d71d3e2f2ba2d4
63d673c67656390d776bfa082c6ab49f0c636582
Don't allow blank issues (#29691) We're getting a ton of issues filed using the blank template, for example these airline support tickets: https://github.com/facebook/react/issues/29678 I think someone somewhere is linking to our issues with pre-filled content. This fixes it by forcing a template to be used.
[ { "path": ".github/ISSUE_TEMPLATE/config.yml", "patch": "@@ -1,3 +1,4 @@\n+blank_issues_enabled: false\n contact_links:\n - name: 📃 Documentation Issue\n url: https://github.com/reactjs/react.dev/issues/new/choose", "additions": 1, "deletions": 0, "language": "YAML" } ]
2024-05-31T16:05:32
golang/go
5dac42363ba8281a3f4f08e03af2292b763adc38
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
runtime: fix asan wrapper for riscv64 Make sure we keep the M in X21. The instruction at line 87 needs to be loading from the M, not from the gsignal. Fixes #73979, maybe? Change-Id: I3aba1c35454636138b305bca26e20dbc8e6b1d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/688975 Reviewed-by: Joel Sing <joel@s...
[ { "path": "src/runtime/asan_riscv64.s", "patch": "@@ -81,13 +81,13 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tMOV\tg_m(g), X21\n \n \t// Switch to g0 stack if we aren't already on g0 or gsignal.\n-\tMOV\tm_gsignal(X21), X21\n-\tBEQ\tX21, g, call\n+\tMOV\tm_gsignal(X21), X22\n+\tBEQ\tX22, g, call\n \n-\tMOV\...
2025-07-19T16:34:04
nodejs/node
e0145b4c38ab11841a25e36683df6fead869eb52
6f12f1e500cd6d9f824aa80c46386e1805d3aa63
tools: fix c-ares updater script for Node.js 18 GitHub Actions is by default running the tools updater workflow with Node.js 18. Avoid use of `import.meta.dirname`, which wasn't backported to Node.js 18. PR-URL: https://github.com/nodejs/node/pull/55717 Refs: https://github.com/nodejs/node/pull/55445 Reviewed-By: Mar...
[ { "path": "tools/dep_updaters/update-c-ares.mjs", "patch": "@@ -1,8 +1,9 @@\n // Synchronize the sources for our c-ares gyp file from c-ares' Makefiles.\n import { readFileSync, writeFileSync } from 'node:fs';\n import { join } from 'node:path';\n+import { fileURLToPath } from 'node:url';\n \n-const srcroot...
2024-11-06T15:50:12
electron/electron
08236f7a9e9d664513e2b76b54b9bea003101e5d
5dfa9e33172d994c2f2a98a00312134cbc703d6b
refactor: remove deprecated BrowserContext::ResourceContext (#41221) * refactor: remove ResourceContext* arg from GetNSSCertDatabaseForResourceContext() * refactor: remove ResourceContext* arg from CertificateManagerModel::GetCertDBOnIOThread() * refactor: remove BrowserContext* arg from CertificateManagerModel:...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1228,13 +1228,10 @@ void App::ImportCertificate(gin_helper::ErrorThrower thrower,\n return;\n }\n \n- auto* browser_context = ElectronBrowserContext::From(\"\", false);\n if (!certificate_manager_model_) {\n- CertificateManagerMode...
2024-02-06T00:12:34
golang/go
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
2363897932cfb279dd8810d2c92438f7ddcfd951
cmd/go: check subcommand properties This change corrects the properties checked by Lookup. We were inspecting the properties of the Command receiver; now we are inspecting the properties of the subcommand. Fixes #73864. Change-Id: Ieb462e489fc4f8f0568aa3a2d404b322d627166c Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -62,11 +62,11 @@ var Go = &Command{\n // Lookup returns the subcommand with the given name, if any.\n // Otherwise it returns nil.\n //\n-// Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.\n+// Lookup ignores any subcomma...
2025-05-30T21:59:34
nodejs/node
c185e1162385ecd23ae2eea2fd38510ad0b6a673
98e5693cd460f675c18d8817b3fbd314089033c6
util: do not catch on circular `@@toStringTag` errors PR-URL: https://github.com/nodejs/node/pull/55544 Fixes: https://github.com/nodejs/node/issues/55539 Reviewed-By: James M Snell <jasnell@gmail.com> Co-Authored-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1072,6 +1072,7 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n ArrayPrototypePushApply(output, protoProps);\n }\n } catch (err) {\n+ if (!isStackOverflowError(err)) throw err;\n const constructorName = StringPrototype...
2024-11-06T09:57:15
electron/electron
5dfa9e33172d994c2f2a98a00312134cbc703d6b
fb888a6989dacfd6be3fe1a2b1cfffd0de81246a
fix: `original-fs` import replacement (#41209) fix: original-fs import replacement
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -2312,10 +2312,10 @@ index 0000000000000000000000000000000000000000..7848ddb1841b6d4f36e9376c73564eb4\n + f.write('\\n')\n diff --git a/tools/generate_original_fs.py b/tools/generate_original_fs.py\n new file mode 100644\n-index 000000...
2024-02-05T08:51:04
facebook/react
8fd963a1e5ec89459cac27fb1d9ad193a0604110
aa3d6c0840357eb469df9bd1c20b201197ce3bdc
Fix Missing `key` Validation in `React.Children` (#29675) ## Summary In https://github.com/facebook/react/pull/29088, the validation logic for `React.Children` inspected whether `mappedChild` — the return value of the map callback — has a valid `key`. However, this deviates from existing behavior which only warn...
[ { "path": "packages/react/src/ReactChildren.js", "patch": "@@ -229,11 +229,21 @@ function mapIntoArray(\n childKey,\n );\n if (__DEV__) {\n- if (nameSoFar !== '' && mappedChild.key == null) {\n- // We need to validate that this child should have had a key befo...
2024-05-31T01:02:47
rust-lang/rust
5a3f581b1fba6660c53b91af0c00d25f353b8a36
6d80670bb2ea6e9d722641131d03be2c0eadc114
style: fix rustfmt formatting
[ { "path": "src/tools/rust-analyzer/crates/ide/src/references.rs", "patch": "@@ -531,7 +531,7 @@ fn t2() {\n my_macro!(foo());\n }\n \"#,\n- expect![[r#\"\n+ expect![[r#\"\n foo Function FileId(0) 52..74 55..58\n \n FileId(0) 91..94", "additions": 1...
2026-02-19T11:55:54
golang/go
2363897932cfb279dd8810d2c92438f7ddcfd951
e32255fcc0861727243fca4e94766c0a322954fb
cmd/internal/obj: enable got pcrel itype in fips140 for riscv64 This CL enable R_RISCV_GOT_PCREL_ITYPE in fips140 Fixes #74662 Change-Id: Ic189c4e352517ae74034f207a5f944b610f2eb73 Reviewed-on: https://go-review.googlesource.com/c/go/+/688635 Reviewed-by: Mark Ryan <markdryan@rivosinc.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -384,6 +384,7 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_RISCV_TLS_IE,\n \t\tobjabi.R_RISCV_TLS_LE,\n \t\tobjabi.R_RISCV_GOT_HI20,\n+\t\tobjabi.R_RISCV_GOT_PCREL_ITYPE,\n \t\tobjabi.R_RISCV_PCREL_HI20,\n \t\tobjabi.R_RIS...
2025-07-18T03:06:24