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
nodejs/node
75b9c1cdd844c108d6c420093ad96289b16f95ec
8c19a5c8858dd84de1e6ec0422d48c1351106890
test: remove test-macos-app-sandbox flaky designation Fixes: https://github.com/nodejs/node/issues/54811 Refs: https://github.com/nodejs/node/issues/54811#issuecomment-2334463112 PR-URL: https://github.com/nodejs/node/pull/56471 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gma...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -44,8 +44,6 @@ test-runner-watch-mode: PASS,FLAKY\n # https://github.com/nodejs/node/issues/42741\n test-http-server-headers-timeout-keepalive: PASS,FLAKY\n test-http-server-request-timeout-keepalive: PASS,FLAKY\n-# https://github.com/nodejs/node/issue...
2025-01-07T16:32:02
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
vercel/next.js
743d7a17d429e1d96c4a1f7277ceb05f37c3f0a5
e24a5424d9621fcf1eaff0e8349e4e35e1c4af19
Add test for JS resource size on navigation (#83731) <!-- 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 Contributor...
[ { "path": "test/production/bundle-size/app/app/a/page.js", "patch": "@@ -0,0 +1,10 @@\n+import { Nav } from '../../../nav'\n+\n+export default function Page() {\n+ return (\n+ <>\n+ <main>this is a</main>\n+ <Nav />\n+ </>\n+ )\n+}", "additions": 10, "deletions": 0, "language":...
2025-09-22T20:59:41
electron/electron
3ea3b0e8e1bf8283a9b270431e1d79a46acf72b3
96dda274e9c23f8ff6345fe129d7c9860b2c2ea9
fix: ensure originalFs.promises.cp works (#42132)
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -11,7 +11,7 @@ really in 20/21. We have to wait until 22 is released to be able to\n build with upstream GN files.\n \n diff --git a/BUILD.gn b/BUILD.gn\n-index 1ed186b597eece7c34cb69c8e1e20870555a040d..7d201bb6b822f0401c3be2bc52d65bc7146...
2024-05-13T04:03:00
facebook/react
df783f9ea1b6f95e05f830602da1de5ffb325d30
1b0132c05acabae5aebd32c2cadddfb16bda70bc
Add unknown location information to component stacks (#30290) This is the same change as in #30289 but for the main runtime - e.g. parent stacks in errorInfo.componentStack, appended stacks to console.error coming from React itself and when we add virtual frames to owner stacks. Since we don't add location infor...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMSingletonComponents-test.js", "patch": "@@ -475,7 +475,7 @@ describe('ReactDOM HostSingleton', () => {\n expect(hydrationErrors).toEqual([\n [\n \"Hydration failed because the server rendered HTML didn't match the client.\",\n- 'at...
2024-07-08T15:54:14
nodejs/node
8c19a5c8858dd84de1e6ec0422d48c1351106890
52c644966d78503d63fca3b50b041bce429c8c84
tools: fix loong64 build failed PR-URL: https://github.com/nodejs/node/pull/56466 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -1230,6 +1230,11 @@\n '<(V8_ROOT)/src/trap-handler/handler-outside-posix.cc',\n ],\n }],\n+ ['(_toolset==\"host\" and host_arch==\"x64\" or _toolset==\"target\" and target_arch==\"x64\") a...
2025-01-07T16:31:45
rust-lang/rust
b4644fda3083a131c68be9d2869cd79d5e6c0338
0028f344ce9f64766259577c998a1959ca1f6a0b
fix error on missing value for -C flags
[ { "path": "compiler/rustc_session/src/options.rs", "patch": "@@ -760,7 +760,7 @@ fn build_options<O: Default>(\n match value {\n None => early_dcx.early_fatal(\n format!(\n- \"{outputname} option `{key}` r...
2026-02-24T08:44:03
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
facebook/react
f38c22b244086f62ae5ed851b6ed17029ec44be5
0b5835a46f6e19a0a0ead0f4cd30b0db14bc72f7
[Flight] Set Current Owner / Task When Calling console.error or invoking onError/onPostpone (#30206) Stacked on #30197. This is similar to #30182 and #21610 in Fizz. Track the current owner/stack/task on the task. This tracks it for attribution when serializing child properties. This lets us provide the righ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2761,10 +2761,61 @@ describe('ReactFlight', () => {\n );\n });\n \n+ // @gate __DEV__ && enableOwnerStacks\n+ it('can get the component owner stacks for onError in dev', async () => {\n+ const thrownError = new Err...
2024-07-04T16:31:23
rust-lang/rust
b91417bbfc7ef4c07572cea162be5ab84c20f767
dc97f4d41c8be5d998b6c905ad2398f66422ce4d
Fix impossible doc link
[ { "path": "compiler/rustc_hir/src/attrs/diagnostic.rs", "patch": "@@ -458,7 +458,7 @@ pub struct ConditionOptions {\n pub self_types: Vec<String>,\n // The kind of compiler desugaring.\n pub from_desugaring: Option<DesugaringKind>,\n- /// Match on a variant of [rustc_infer::traits::Obligation...
2026-02-17T00:45:52
nodejs/node
7895b8eae9e4f2919028fe81e38790af07b4cc92
984a4721375afa6cb3c3ec12876126a2587d5f7d
test: update error code in tls-psk-circuit for for OpenSSL 3.4 Update parallel/test-tls-psk-circuit.js to account for error code changes in OpenSSL 3.4 and probably later. Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> PR-URL: https://github.com/nodejs/node/pull/56420 Reviewed-By: Luigi Pinca <lui...
[ { "path": "test/parallel/test-tls-psk-circuit.js", "patch": "@@ -66,7 +66,8 @@ const expectedHandshakeErr = common.hasOpenSSL(3, 2) ?\n 'ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE' : 'ERR_SSL_SSLV3_ALERT_HANDSHAKE_FAILURE';\n test({ psk: USERS.UserB, identity: 'UserC' }, {}, expectedHandshakeErr);\n // Recog...
2025-01-06T15:58:13
vercel/next.js
9d596b1502bf7d370265c41786893fa6cd5c66b0
0761a925146d45b11bbadf8c87141968c48a1160
Turbopack: Fix babel-loader (allowing built-in or manual configuration) (#82676) ## Context: What's broken? For using `styled-jsx` with `react-compiler`, we need to use `babel-loader`, but it turns out that outside of our current narrow use of `react-compiler`, our usage of `babel-loader` in Turbopack is totally brok...
[ { "path": "crates/next-core/src/next_shared/webpack_rules/babel.rs", "patch": "@@ -1,16 +1,11 @@\n use std::sync::LazyLock;\n \n-use anyhow::Result;\n+use anyhow::{Context, Result};\n use regex::Regex;\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{ResolvedVc, Vc};\n-use turbo_tasks_fs::{self, FileS...
2025-09-22T16:40:58
facebook/react
0b5835a46f6e19a0a0ead0f4cd30b0db14bc72f7
8e9de898d3a8a0945fcdc1a02959560bce2bbc30
[Flight] Implement captureStackTrace and owner stacks on the Server (#30197) Wire up owner stacks in Flight to the shared internals. This exposes it to `captureOwnerStack()`. In this case we install it permanently as we only allow one RSC renderer which then supports async contexts. Same thing we do for owner. ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -81,6 +81,7 @@ let ErrorBoundary;\n let NoErrorExpected;\n let Scheduler;\n let assertLog;\n+let assertConsoleErrorDev;\n \n describe('ReactFlight', () => {\n beforeEach(() => {\n@@ -102,6 +103,7 @@ describe('ReactFlight', (...
2024-07-04T16:15:51
electron/electron
9b0409f7c91b1dd8e1554f8428972c1b0f171766
0725f5c5cf8bb7abef5920b3bd92f8e9fee0c32d
chore: bump chromium to 126.0.6445.0 (main) (#41868) * chore: bump chromium in DEPS to 125.0.6421.0 * chore: bump chromium in DEPS to 125.0.6422.0 * Add ENABLE_BASE_TRACING flags for compatibility with enable_base_tracing = false on Windows https://chromium-review.googlesource.com/c/chromium/src/+/5434658 ...
[ { "path": "BUILD.gn", "patch": "@@ -658,6 +658,7 @@ source_set(\"electron_lib\") {\n libs += [ \"dwmapi.lib\" ]\n sources += [ \"shell/common/asar/archive_win.cc\" ]\n deps += [\n+ \"//components/app_launch_prefetch\",\n \"//components/crash/core/app:crash_export_thunks\",\n \"/...
2024-05-10T15:21:10
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
rust-lang/rust
7718cb1f07794bb600d9b3583c6805df283be358
b4d7d437d2310fb02266e38b28c28ee53229b5e0
improve debugging-support-in-rustc.md
[ { "path": "src/doc/rustc-dev-guide/src/debugging-support-in-rustc.md", "patch": "@@ -160,16 +160,16 @@ are _not_ in the DWARF standard.\n * Rust compiler will emit DWARF for a virtual table, and this `vtable` object will have a\n `DW_AT_containing_type` that points to the real type.\n This lets debugger...
2026-02-24T09:22:07
vercel/next.js
823685a742b8c24ae63b06c7b12d7abb724af87c
3a5227bb8fc10a670f790250278273d2abfc689e
Turbopack: fix race condition in unit test (#84085) ### What? Turbo Task functions are executed when they are called. Not awaiting them will still execute them, but makes it a race condition if the stats or the execution is faster.
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/task_statistics.rs", "patch": "@@ -178,14 +178,33 @@ async fn test_dyn_trait_methods() -> Result<()> {\n async fn test_no_execution() -> Result<()> {\n run_without_cache_check(&REGISTRATION, async move {\n enable_stats();\n- // don't a...
2025-09-22T15:47:22
facebook/react
3da26163a35969b32b5d7876a3f0c95bea61bc2b
15ca8b6bad9c2e51f1a3b6e943c9af494b62a1a6
fix: path handling in react devtools (#29199) <!-- 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 submitting a pull request, please m...
[ { "path": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -26,6 +26,7 @@ import {\n REACT_STRICT_MODE_TYPE as StrictMode,\n } from 'shared/ReactSymbols';\n import {createElement} from 'react';\n+import {symbolicateSource} from '../symbolicateSource';\n \n describe('utils', () =>...
2024-07-04T14:34:48
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
electron/electron
3bd807b03e7c0f4c5dd14ee0ac88f56585ab4ba7
e2acdffe58ad9b622ca1fd983348bf4ce26f9379
fix: View reordering on re-addition to same parent (#42085)
[ { "path": "docs/api/view.md", "patch": "@@ -48,6 +48,9 @@ Objects created with `new View` have the following instance methods:\n * `index` Integer (optional) - Index at which to insert the child view.\n Defaults to adding the child at the end of the child list.\n \n+If the same View is added to a parent w...
2024-05-10T08:16:33
rust-lang/rust
94554413c09f0cd761fc974c85313af0c4b3e8c2
df995ede1b3e61f0e87081d9548e6cd2a3ec9095
Fix the compile-test tests when setting Cargo's `build.build-dir` setting to a path that's distinct from `target-dir` In this approach, we're using the `CARGO_BIN_EXE_clippy-driver` env var, which is set to the appropriate absolute path, invariant across the various possible `target-dir` and `build.build-dir` configur...
[ { "path": "tests/compile-test.rs", "patch": "@@ -197,9 +197,6 @@ impl TestContext {\n defaults.set_custom(\"diagnostic-collector\", collector);\n }\n config.with_args(&self.args);\n- let current_exe_path = env::current_exe().unwrap();\n- let deps_path = current_exe_...
2026-02-24T00:15:40
nodejs/node
08b7d38aa46392f15cd28f283be3f92c174f0cb6
383e1a281b6b979ede9d2ee46781643971da104b
sqlite: support TypedArray and DataView in `StatementSync` Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: https://github.com/nodejs/node/pull/56385 Fixes: https://github.com/nodejs/node/issues/56384 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Rev...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -339,11 +339,15 @@ over hand-crafted SQL strings when handling user input.\n \n <!-- YAML\n added: v22.5.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56385\n+ description: Add support for `DataView` and typed array obj...
2025-01-05T11:18:36
vercel/next.js
d8037fd31673d541176bd2bf4526c2adacc3e415
e9e5eca47b935abaffc1321bd8896a498dc3c636
fix: Ensure typegen CLI command doesn't hang due to open handles (#83966) <!-- 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...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -395,8 +395,10 @@ program\n )}`\n )\n .action((directory: string, options: NextTypegenOptions) =>\n+ // ensure process exits after typegen completes so open handles/connections\n+ // don't cause process to hang\n import('../cli/next-t...
2025-09-22T14:52:26
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
15ca8b6bad9c2e51f1a3b6e943c9af494b62a1a6
6e169fc65da097629588132f8fec82d8a836afdd
Don't strip out component stack in assertConsole helpers (#30204) Use the same normalizeCodeLocInfo that we use everywhere else. We should actually test the component stack itself. Not just that it exists. This was causing false passes. However, the logic was also wrong before because it wouldn't always strip ...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -1002,8 +1002,8 @@ describe('ReactInternalTestUtils console assertions', () => {\n - Hi\n - Wow\n - Bye\n- + Wow <component stack>\n- + Bye <component stack>\"\n+ + ...
2024-07-03T20:57:05
rust-lang/rust
b4d7d437d2310fb02266e38b28c28ee53229b5e0
49e1fb9ca61c9560ab3ecf8156ce0daafaaaaad3
sembr src/debugging-support-in-rustc.md
[ { "path": "src/doc/rustc-dev-guide/src/debugging-support-in-rustc.md", "patch": "@@ -19,8 +19,9 @@ According to Wikipedia\n > other programs (the \"target\" program).\n \n Writing a debugger from scratch for a language requires a lot of work, especially if\n-debuggers have to be supported on various platfor...
2026-02-24T09:06:48
electron/electron
865b0499bbdd918708b6b1b66fcabf07d3d2fdbb
6675f3ae65b8cba5da13242a72cb3dca6cdc4738
refactor: use `//ui/shell_dialogs` on Linux (#42045) * refactor: use //ui/shell_dialogs on Linux * fix: add proper filtering * fix: add support for missing dialog features to //shell_dialogs * fix: parent_window could be null * chore: cleanup patch * fix: use a OnceCallback in the sync implementation ...
[ { "path": "BUILD.gn", "patch": "@@ -81,18 +81,11 @@ if (is_linux) {\n ]\n }\n \n- # Generates electron_gtk_stubs.h header which contains\n- # stubs for extracting function ptrs from the gtk library.\n- # Function signatures for which stubs are required should be\n- # declared in electron_gtk.sigs,...
2024-05-09T13:51:42
nodejs/node
338d70b752fd918ebd568f432373065e04539830
d0ff34f4b690ad49c86b6df8fd424f39d183e1a6
sqlite: enable SQL math functions This commit enables SQLite math functions. Fixes: https://github.com/nodejs/node/issues/56435 PR-URL: https://github.com/nodejs/node/pull/56447 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "deps/sqlite/sqlite.gyp", "patch": "@@ -13,6 +13,7 @@\n 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden\n },\n 'defines': [\n+ 'SQLITE_ENABLE_MATH_FUNCTIONS',\n 'SQLITE_ENABLE_SESSION',\n 'SQLITE_ENABLE_PREUPDATE_HOOK'\n ],", "additi...
2025-01-05T05:35:54
vercel/next.js
be33a9d8cde17773ed7c69d13e5df94223f86f39
6779a5c07e70b34ccb9cfb1c94fa3f8a7a5711f4
Turbopack: Deterministic builds (prerender-manifest, .next/package.json, ./next/postcss.js) (#84081) ### What? * Make order of routes in prerender manifest deterministic * Write the same package.json content to distDir * fix output directory for postcss/webpack loaders entrypoint
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -815,9 +815,9 @@ impl Project {\n let node_execution_chunking_context = Vc::upcast(\n NodeJsChunkingContext::builder(\n self.project_root_path().owned().await?,\n- node_root.clone(),\n+ ...
2025-09-22T14:41:31
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
9c6806964f453cb5e8a530881dcc9f33480e7388
572ded3762fa7332e2d062e4373369cd7008b7b0
Add regression test for #30172 (#30198) The issue reported in #30172 was fixed with #29823. The PR also added the test [`should resolve deduped objects that are themselves blocked`](https://github.com/facebook/react/blob/6d2a97a7113dfac2ad45067001b7e49a98718324/packages/react-server-dom-webpack/src/__tests__/ReactFl...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -392,6 +392,70 @@ describe('ReactFlightDOMBrowser', () => {\n expect(container.innerHTML).toBe('<div><span>12345</span>12345</div>');\n });\n \n+ it('should resolve deduped objects in nested childr...
2024-07-03T11:10:23
rust-lang/rust
ce93a5335de4315a09f93a9cb0569baa47cbc3c2
ef70767064ab87b0a41400f69e1dc0b55c8d5284
Fix Async Drop MIR bug with async_drop_in_place (Squashed)
[ { "path": "compiler/rustc_mir_transform/src/elaborate_drop.rs", "patch": "@@ -326,12 +326,23 @@ where\n const_: Const::zero_sized(pin_obj_new_unchecked_fn),\n }));\n \n+ // Create an intermediate block that does StorageDead(fut) then jumps to succ.\n+ // This is necessary b...
2026-02-24T08:04:33
electron/electron
6675f3ae65b8cba5da13242a72cb3dca6cdc4738
731bc7a334565b67b0f75b8b713bfb55db12e67a
fix: CHECK when adding view as its own child (#42067)
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -189,6 +189,14 @@ void View::AddChildViewAt(gin::Handle<View> child,\n // has a View, possibly a wrapper view around the underlying platform View.\n if (!view_)\n return;\n+\n+ // This will CHECK and crash in View::AddChildViewAtImpl ...
2024-05-09T13:47:47
nodejs/node
4a7b8157b5585cb62e77e9e3c66d6af3aaf3a448
7e08ccad17d95d866ca1177b6cc5711a6e8fea8d
test_runner: add assert.register() API This commit adds a top level assert.register() API to the test runner. This function allows users to define their own custom assertion functions on the TestContext. Fixes: https://github.com/nodejs/node/issues/52033 PR-URL: https://github.com/nodejs/node/pull/56434 Reviewed-By: ...
[ { "path": "doc/api/test.md", "patch": "@@ -1750,6 +1750,29 @@ describe('tests', async () => {\n });\n ```\n \n+## `assert`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+An object whose methods are used to configure available assertions on the\n+`TestContext` objects in the current process. The methods from `...
2025-01-04T18:30:04
vercel/next.js
6779a5c07e70b34ccb9cfb1c94fa3f8a7a5711f4
9cf9183e0090e0dd322f4604a21f00f00111db4c
Turbopack: error when importing Typescript in node_modules (#83990) Webpack treats TS files in node_modules as Javascript files (i.e. you get a JS parse error) Turbopack previously did a similar thing (though it parsed as Typescript, but then never ran the TS AST transform). This never worked properly, it failed due ...
[ { "path": "crates/next-core/src/next_client/transforms.rs", "patch": "@@ -32,7 +32,10 @@ pub async fn get_next_client_transforms_rules(\n \n let modularize_imports_config = &next_config.modularize_imports().await?;\n let enable_mdx_rs = next_config.mdx_rs().await?.is_some();\n- rules.push(get_nex...
2025-09-22T14:40:53
facebook/react
572ded3762fa7332e2d062e4373369cd7008b7b0
3db98c917701d59f62cf1fbe45cbf01b0b61c704
React DevTools 5.3.0 -> 5.3.1 (#30199) ## Summary Full list of changes, mostly fixes: * chore[react-devtools/renderer]: dont show strict mode warning for prod renderer builds ([hoxyq](https://github.com/hoxyq) in [#30158](https://github.com/facebook/react/pull/30158)) * chore[react-devtools/ui]: fix strict mode...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.3.0\",\n+ \"version\": \"5.3.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-07-03T10:46:46
rust-lang/rust
cbdcfca40324738bf39e160538cdaf853bcc0f76
24efac106335824fed59d1490d79d62524a85afb
Swapped key comparisons to match lower_bound_mut, added FIXME comments on bulk inserting other_keys into self map, and inlined with_next() insertion on conflicts from Cursor*
[ { "path": "library/alloc/src/collections/btree/map.rs", "patch": "@@ -1253,7 +1253,6 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {\n /// Similar to [`insert`], though, the key is not overwritten,\n /// which matters for types that can be `==` without being identical.\n ///\n- ///\n ...
2026-02-23T05:38:50
vercel/next.js
9cf9183e0090e0dd322f4604a21f00f00111db4c
237f142860d77b5cd1fd7e474176bf87dac11958
Turbopack: flush Node.js worker IPC on error (#84077) If the Nodejs process exited too quickly after `sendError`, Turbopack never received the error message and then previously crashed with panics such as ``` - Execution of PostCssTransformedAsset::process failed - creating new process - reading packet length - unex...
[ { "path": "turbopack/crates/turbopack-node/js/src/ipc/index.ts", "patch": "@@ -169,18 +169,20 @@ function createIpc<TIncoming, TOutgoing>(\n sendReady,\n \n async sendError(error: Error): Promise<never> {\n+ let failed = false\n try {\n await send({\n type: 'error',\n ...
2025-09-22T13:28:31
nodejs/node
804d41f9c73c03e670d8e788d14a2237c8c2a057
01554f316c8647e1f893338f822b1116a937473d
tools: disable unneeded rule ignoring in Python linting Removing PLC1901 and RUF100 from the list of Python lint rules to ignore does not result in any errors. Keeping the ignore list as short as possible seems like a good idea, so this change removes them from the ignore list. PR-URL: https://github.com/nodejs/node/...
[ { "path": "pyproject.toml", "patch": "@@ -33,9 +33,7 @@ ignore = [\n \"E401\",\n \"E402\",\n \"E7\",\n- \"PLC1901\",\n \"RUF005\",\n- \"RUF100\",\n ]\n \n [tool.ruff.lint.mccabe]", "additions": 0, "deletions": 2, "language": "Unknown" } ]
2025-01-03T23:12:08
electron/electron
731bc7a334565b67b0f75b8b713bfb55db12e67a
793276ac87ec4b68af4149c1275b20e753b90e8e
fix: `BrowserWindow.center()` should center relative to screen (#42048)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -39,6 +39,7 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/aura/window_tree_host.h\"\n #include \"ui/base/hit_test.h\"\n+#include \"ui/display/screen.h\"\n #include \"ui/gfx/image/image.h\"\n #include \"ui/gfx/native_widget_ty...
2024-05-08T22:42:20
facebook/react
3db98c917701d59f62cf1fbe45cbf01b0b61c704
cfb8945f511add040e1d5427d9961337f98f7618
[Fizz] Track Current debugTask and run it for onError Callbacks (#30182) Stacked on #30174. This tracks the current debugTask on the Task so that when an error is thrown we can use it to run the `onError` (and `onShellError` and `onFatalError`) callbacks within the Context of that task. Ideally it would be assoc...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -250,6 +250,7 @@ type RenderTask = {\n thenableState: null | ThenableState,\n isFallback: boolean, // whether this task is rendering inside a fallback tree\n legacyContext: LegacyContext, // the current legacy context that this tas...
2024-07-02T23:46:18
rust-lang/rust
d501f960a3950983725a94f4ec7e83f3149e13f2
eeb94be79adc9df7a09ad0b2421f16e60e6d932c
rustc_target: callconv: powerpc64: Use llvm_abiname rather than target_abi for ABI determination Currently on PowerPC64 targets, llvm_abiname and target_abi will be the same unless we're on AIX. Since llvm_abiname is what we pass on to LLVM, it is preferable to use the value of that to determine the calling convention...
[ { "path": "compiler/rustc_target/src/callconv/powerpc64.rs", "patch": "@@ -5,7 +5,7 @@\n use rustc_abi::{Endian, HasDataLayout, TyAbiInterface};\n \n use crate::callconv::{Align, ArgAbi, FnAbi, Reg, RegKind, Uniform};\n-use crate::spec::{Abi, HasTargetSpec, Os};\n+use crate::spec::{HasTargetSpec, Os};\n \n ...
2026-02-24T06:37:34
nodejs/node
c5aa8b8ef11e5e593a193454fc4ffd642b48e137
19d58c5181e0a7d9a039a1a36163f29c499407d5
node-api: define version 10 Notable runtime changes to existing APIs: - returning `node_api_cannot_run_js` instead of `napi_pending_exception`. - allow creating references to objects, functions, and symbols. PR-URL: https://github.com/nodejs/node/pull/55676 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1748,7 +1748,7 @@ will not be freed. This can be avoided by calling\n \n **Change History:**\n \n-* Experimental (`NAPI_EXPERIMENTAL` is defined):\n+* Version 10 (`NAPI_VERSION` is defined as `10` or higher):\n \n References can be created for all value types. T...
2024-12-31T16:29:50
vercel/next.js
237f142860d77b5cd1fd7e474176bf87dac11958
5b5d9b14e993790d98aa4c3a43f90cb964355496
Turbopack: run tests with multiple threads (#84074) These tests were broken ``` ➜ next.js-other git:(mischnic/parallelize-merged-module-info) UPDATE=1 cargo nextest run -p turbopack-tests -E 'test(test_tests__execution__turbopack__basic__esm_this__input__index_js)' --no-capture Finished `test` profile [unoptim...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution.rs", "patch": "@@ -161,7 +161,7 @@ fn get_messages(js_results: JsResult) -> Vec<String> {\n messages\n }\n \n-#[tokio::main(flavor = \"current_thread\")]\n+#[tokio::main(flavor = \"multi_thread\", worker_threads = 2)]\n async fn run(resource: P...
2025-09-22T13:18:09
electron/electron
8cfc4b9d50cde472d5bcca3d55f1630b86f86fe4
c3c41733770c1b4662e2321868e621a78a77d54e
ci: keep GitHub Actions up to date with GitHub's Dependabot (#42042) * Keep GitHub Actions up to date with GitHub's Dependabot Fixes software supply chain safety warnings like at the bottom right of https://github.com/electron/electron/actions/runs/8619491231 * [Keeping your actions up to date with Dependabot](...
[ { "path": ".github/dependabot.yml", "patch": "@@ -0,0 +1,9 @@\n+# Keep GitHub Actions up to date with GitHub's Dependabot...\n+# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot\n+# https://docs.github.com/en/code-security/dependabot...
2024-05-07T23:25:46
facebook/react
cfb8945f511add040e1d5427d9961337f98f7618
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
[Fizz] Implement debugInfo (#30174) Stacked on #30170. This lets us track Server Component parent stacks in Fizz which also lets us track the correct owner stack for lazy. In Fiber we're careful not to make any DEV only fibers but since the ReactFizzComponentStack data structures just exist for debug meta data...
[ { "path": "packages/react-html/src/__tests__/ReactHTMLServer-test.js", "patch": "@@ -244,17 +244,19 @@ if (!__EXPERIMENTAL__) {\n expect(caughtErrors.length).toBe(1);\n expect(caughtErrors[0].error).toBe(thrownError);\n expect(normalizeCodeLocInfo(caughtErrors[0].parentStack)).toBe(\n- ...
2024-07-02T22:26:32
rust-lang/rust
d3bd9e610310c77e8b501c49b369e25f55ca88c0
b3869b94cd1ed4bfa2eb28f301535d5e9599c713
Remove unhelpful hint from trivial bound errors
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs", "patch": "@@ -3845,7 +3845,6 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n err.span_note(assoc_span, msg);\n }\n ObligationCauseCode::TrivialBound => {\n- err.help(\"see...
2026-02-24T05:04:45
vercel/next.js
5b5d9b14e993790d98aa4c3a43f90cb964355496
af9298cc38e98615f8a22295c2cfc5ad362ab416
Turbopack: fix test case and update project_update to turbo_tasks::run too (#83978) ### What? Changing an env var that is used in an RSC doesn't lead to HMR updates. It only refetches the RSC stream and no compilation happens at all since the env var is consumed only at runtime. This test did pass before as the `run...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -455,13 +455,13 @@ pub fn project_new(\n \n let options: ProjectOptions = options.into();\n let container = turbo_tasks\n- .run_once(async move {\n+ .run(async move {\n let project = ProjectCo...
2025-09-22T12:20:33
nodejs/node
19d58c5181e0a7d9a039a1a36163f29c499407d5
4afb0e235a0c3e8c35314abc15bf2f9c3c71fe88
module: fix async resolution error within the sync `findPackageJSON` PR-URL: https://github.com/nodejs/node/pull/56382 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
[ { "path": "doc/api/module.md", "patch": "@@ -81,13 +81,17 @@ added: v23.2.0\n * `base` {string|URL} The absolute location (`file:` URL string or FS path) of the\n containing module. For CJS, use `__filename` (not `__dirname`!); for ESM, use\n `import.meta.url`. You do not need to pass it if `specifier`...
2024-12-31T12:07:23
electron/electron
d5c8f2d6d9d3029c4fe2daa42b6314e417cfbbc6
5b60698dea0830c8b82d154578afb5e29e83d7df
fix: avoid crash after upgrade on Linux (#41046)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -456,7 +456,15 @@ void ElectronBrowserClient::AppendExtraCommandLineSwitches(\n base::CommandLine* command_line,\n int process_id) {\n // Make sure we're about to launch a known executable\n+#if BUILDFLAG(IS_LINUX)\n+ // On Linux,...
2024-05-07T14:04:50
facebook/react
309e146193c7b84d1c7a60d1a2ab2d6c836ba515
e60063d9e7d346e92a5af42975a2fe7dd306f86f
Implement onError signature for renderToMarkup (#30170) Stacked on #30132. This way we can get parent and owner stacks from the error. This forces us to confront multiple errors and whether or not a Flight error that ends up being unobservable needs to really reject the render. This implements stashing of Fl...
[ { "path": "packages/react-html/src/ReactHTMLClient.js", "patch": "@@ -8,6 +8,7 @@\n */\n \n import type {ReactNodeList} from 'shared/ReactTypes';\n+import type {ErrorInfo} from 'react-server/src/ReactFizzServer';\n \n import ReactVersion from 'shared/ReactVersion';\n \n@@ -27,6 +28,7 @@ import {\n type Mar...
2024-07-02T20:31:35
nodejs/node
91c6b8a38e6923bf2e36f120a3b5949fb2e10b86
7d7e2cec25f7da017e1596262a7907351de87e23
assert: make partialDeepStrictEqual throw when comparing [0] with [-0] Fixes: https://github.com/nodejs/node/issues/56230 PR-URL: https://github.com/nodejs/node/pull/56237 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Review...
[ { "path": "lib/assert.js", "patch": "@@ -56,6 +56,7 @@ const {\n StringPrototypeIndexOf,\n StringPrototypeSlice,\n StringPrototypeSplit,\n+ Symbol,\n SymbolIterator,\n TypedArrayPrototypeGetLength,\n Uint8Array,\n@@ -497,6 +498,17 @@ function partiallyCompareSets(actual, expected, comparedObjec...
2024-12-12T10:54:48
vercel/next.js
af9298cc38e98615f8a22295c2cfc5ad362ab416
2d96b9660fe8ef9be1e7dd3ef27048d083f15147
Fix TypeScript type error in example code (#84041) Without the `| null`, the following error appears during compilation: ``` TS2322: Type RefObject<HTMLDivElement | null> is not assignable to type RefObject<HTMLDivElement> Type HTMLDivElement | null is not assignable to type HTMLDivElement Type null is not assignable ...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/error.mdx", "patch": "@@ -219,7 +219,7 @@ export class GracefullyDegradingErrorBoundary extends Component<\n ErrorBoundaryProps,\n ErrorBoundaryState\n > {\n- private contentRef: React.RefObject<HTMLDivElement>\n+ private contentRef: React.Re...
2025-09-22T11:29:45
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
5b60698dea0830c8b82d154578afb5e29e83d7df
05631ec4453fd46f61be37177bfa9f9bf02c5a2d
docs: fix lint command (#42028)
[ { "path": "docs/development/coding-style.md", "patch": "@@ -41,7 +41,7 @@ etc.\n \n * Write [remark](https://github.com/remarkjs/remark) markdown style.\n \n-You can run `npm run lint-docs` to ensure that your documentation changes are\n+You can run `npm run lint:docs` to ensure that your documentation chan...
2024-05-04T13:48:08
facebook/react
e60063d9e7d346e92a5af42975a2fe7dd306f86f
6d2a97a7113dfac2ad45067001b7e49a98718324
[Fizz] Include a component stack in prod but only lazily generate it (#30132) When we added component stacks to Fizz in prod it severely slowed down common cases where you intentionally are throwing error for purposes of client rendering. Our parent component stack generation is very slow since call components with...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -908,27 +908,23 @@ type ThrownInfo = {\n export type ErrorInfo = ThrownInfo;\n export type PostponeInfo = ThrownInfo;\n \n-// While we track component stacks in prod all the time we only produce a reified stack in dev and\n-// during pre...
2024-07-02T20:05:20
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
vercel/next.js
2d96b9660fe8ef9be1e7dd3ef27048d083f15147
9d73c864037f3e90234c23ce2863f8311588a70e
docs: add pageExtensions note to Middleware and clarify default filename (#84045) - Added a Note to the Middleware docs explaining that when `pageExtensions` are customized (e.g. `.page.ts`), the Middleware file should be named `middleware.page.ts` or `middleware.page.js`. - Updated wording so `middleware.ts/js` is de...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -20,6 +20,8 @@ Middleware executes before routes are rendered. It's particularly useful for imp\n \n Create a `middleware.ts` (or `.js`) file in the project root, or inside `src` if applicable, so that it is located at...
2025-09-22T09:24:57
facebook/react
315109b02b0c9460b7466ca88f3f4d6ed1215a21
ad59ddf272dad17203561ceab7ea813c3e49d831
[Fizz] Enable owner stacks for SSR (#30152) Stacked on #30142. This tracks owners and their stacks in DEV in Fizz. We use the ComponentStackNode as the data structure to track this information - effectively like ReactComponentInfo (Server) or Fiber (Client). They're the instance. I then port them same logic f...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1766,9 +1766,9 @@ describe('ReactDOMFizzServer', () => {\n // Intentionally trigger a key warning here.\n return (\n <div>\n- {children.map(t => (\n- <span>{t}</span>\n- ))...
2024-07-01T14:27:52
electron/electron
05631ec4453fd46f61be37177bfa9f9bf02c5a2d
36310b87297930b92e749c89caca4a4d00410093
chore: disable tests that require nut.js (#42006) * chore: disable tests that require nut.js * fixup! chore: disable tests that require nut.js
[ { "path": "spec/api-browser-window-spec.ts", "patch": "@@ -6596,6 +6596,7 @@ describe('BrowserWindow module', () => {\n afterEach(closeAllWindows);\n \n ifit(hasCapturableScreen())('should allow the window to be dragged when enabled', async () => {\n+ // FIXME: nut-js has been removed from npm;...
2024-05-01T01:13:38
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
facebook/react
ad59ddf272dad17203561ceab7ea813c3e49d831
e6783e7cc94bceb5bba92b79ff71f44f630e1c00
chore[react-devtools/ui]: fix strict mode badge styles (#30159) ## Summary Just a minor UI fix to strict mode badge layout and component name text overflow ## How did you test this change? | Before | After | | --- | --- | | ![Screenshot 2024-06-30 at 23 35 19](https://github.com/facebook/react/assets/289026...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElement.css", "patch": "@@ -45,12 +45,13 @@\n .SelectedComponentName {\n flex: 1 1 auto;\n overflow: hidden;\n- text-overflow: ellipsis;\n- line-height: normal;\n+ display: flex;\n+ padding: 0.25rem 0;\n+ height: 100%;...
2024-07-01T14:27:15
rust-lang/rust
faf9506169ecb8cb0b358f531278e359adfd84e8
0492671fc8cb1a4fe240681e83e71845db697793
fix: `suboptimal_flops` FN on add and sub assign
[ { "path": "clippy_lints/src/floating_point_arithmetic/mul_add.rs", "patch": "@@ -1,6 +1,7 @@\n-use clippy_utils::diagnostics::span_lint_and_sugg;\n+use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::sugg::Sugg;\n use clippy_utils::{get_parent_expr, has_ambiguous_literal_in_expr, sym};\n+...
2026-02-23T21:33:59
vercel/next.js
52ac89f608d02db8e00cb35849f56c1d0d7b3969
d608590ced4f592c9939c841b9814c121bb6b20d
[turbopack] Consolodate logic for visiting functions to simplify state management (#82763) Introduce a new helper function `enter_fn` in the analyzer to ensure state like `cur_fn_id` is consistently updated. Follow the existing pattern of moving the state into a private module to control access. Leverage the early r...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -286,8 +286,6 @@ pub fn create_graph(m: &Program, eval_context: &EvalContext, is_tracing: bool) -\n hoisted_effects: Default::default(),\n early_return_stack: Default::default(),\n var_d...
2025-09-22T02:03:35
electron/electron
36310b87297930b92e749c89caca4a4d00410093
f5fb44eaf81a7f632b920acb4735d4f31d366d3d
chore: fixup gn check when enable_pdf_viewer is false (#41990)
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -39,8 +39,8 @@\n #endif // BUILDFLAG(ENABLE_WIDEVINE)\n \n #if BUILDFLAG(ENABLE_PDF_VIEWER)\n-#include \"components/pdf/common/constants.h\"\n-#include \"pdf/pdf.h\" // nogncheck\n+#include \"components/pdf/common/constants.h\" // nogncheck\n...
2024-05-01T00:32:11
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
rust-lang/rust
8ac769f9d0675d7ca28ad01396ab204d8e3a96d7
d3e8bd94cc042c65e30a6c60146a8a00531d1292
Remove `rustc_feedable_queries` and `define_feedable` macros. `rustc_queries!` produces two macros: `rustc_with_all_queries` and `rustc_feedable_queries`. The latter is similar to the former but only includes feedable queries. But feedable queries don't need a separate mechanism because we can identify feedable queri...
[ { "path": "compiler/rustc_macros/src/query.rs", "patch": "@@ -399,7 +399,6 @@ pub(super) fn rustc_queries(input: TokenStream) -> TokenStream {\n \n let mut query_stream = quote! {};\n let mut helpers = HelperTokenStreams::default();\n- let mut feedable_queries = quote! {};\n let mut analyzer_...
2026-02-23T03:03:16
facebook/react
b20d2327d634a1f102926859512b8667e2870741
d6b1c488d41c1d69e099d5f15e6d3c0b38cc19b7
Update `react-refresh-webpack-plugin` in Flight fixture (#30156)
[ { "path": "fixtures/flight/package.json", "patch": "@@ -10,7 +10,7 @@\n \"@babel/core\": \"^7.16.0\",\n \"@babel/plugin-proposal-private-property-in-object\": \"^7.18.6\",\n \"@babel/preset-react\": \"^7.22.5\",\n- \"@pmmmwh/react-refresh-webpack-plugin\": \"0.5.7\",\n+ \"@pmmmwh/react-ref...
2024-07-01T08:01:28
vercel/next.js
a520dc9241c8a07f54b8eaf97119e6db7cc31e15
6a40da0345939fe4f7b1ae519b296a86dd103432
fix: worker logs should still support color (#84024) Logs emitted from the static export worker lost their ANSI colors because the worker process starts with piped stdio, so picocolors disables coloring. Most terminal-color helpers treat ANSI styling as a TTY-only feature. At module load it checks process.stdout.isTTY...
[ { "path": "packages/next/src/lib/worker.test.ts", "patch": "@@ -0,0 +1,127 @@\n+import { PassThrough } from 'stream'\n+\n+let latestForkEnv: NodeJS.ProcessEnv | undefined\n+\n+jest.mock('next/dist/compiled/jest-worker', () => {\n+ const WorkerMock = jest.fn().mockImplementation((_path, options) => {\n+ ...
2025-09-20T18:42:47
electron/electron
f5fb44eaf81a7f632b920acb4735d4f31d366d3d
441dbda833a53a5ab01732bb5080dcacc640f101
fix: `requestFullscreen` from `WebContentsView` (#41966) fix: requestFullscreen from WebContentsView
[ { "path": "shell/browser/api/electron_api_web_contents_view.cc", "patch": "@@ -89,6 +89,9 @@ void WebContentsView::OnViewAddedToWidget(views::View* observed_view) {\n widget->GetNativeWindowProperty(electron::kElectronNativeWindowKey));\n if (!native_window)\n return;\n+ // We don't need to cal...
2024-04-29T23:09:29
nodejs/node
ba5992831b4175c086580cfd2adbf07411821669
c94a9dbc40790273a70a0d0e9879b42dcf44ffba
module: unflag --experimental-strip-types PR-URL: https://github.com/nodejs/node/pull/56350 Fixes: https://github.com/nodejs/typescript/issues/17 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Revie...
[ { "path": "benchmark/ts/strip-typescript.js", "patch": "@@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {\n filepath: [ts, js],\n n: [1e4],\n }, {\n- flags: ['--experimental-strip-types', '--disable-warning=ExperimentalWarning'],\n+ flags: ['--disable-warning=ExperimentalWarning'],\n });\...
2024-12-26T18:46:06
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
facebook/react
05cebffe16494367f38396a40a56db5866de96ab
2e72ea8401df491c1c6aa7af80419af8e21d8cc6
[prettier][eslint] Support sapling in prettier changed files command Summary: The listChangesFiles module didn't work under sapling; this fixes ghstack-source-id: 9f685de5e7550075369723b845104ac0e676ce95 Pull Request resolved: https://github.com/facebook/react/pull/30149
[ { "path": "scripts/shared/listChangedFiles.js", "patch": "@@ -19,14 +19,46 @@ const exec = (command, args) => {\n return execFileSync(command, args, options);\n };\n \n+const isGit = () => {\n+ try {\n+ const wt = execGitCmd(['rev-parse', '--is-inside-work-tree']);\n+ return wt.length > 0 && wt[0] ...
2024-06-30T21:22:22
vercel/next.js
6a40da0345939fe4f7b1ae519b296a86dd103432
62f39136c4acafe505dc8a9e412fc705a95c0d65
[Turbopack] Fix AST traversal for `this` in function default parameters (#83746)
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -2075,6 +2075,7 @@ impl VisitAstPath for Analyzer<'_> {\n | AstParentKind::ClassDecl(ClassDeclField::Class)\n | AstParentKind::ClassExpr(ClassExprField::Class)\n ...
2025-09-20T08:31:29
electron/electron
441dbda833a53a5ab01732bb5080dcacc640f101
ef097b77adcfcc478837f0132962ce456b525130
fix: recentDocuments on macOS not working (#41978)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.h", "patch": "@@ -26,8 +26,6 @@ class ElectronMenuModel;\n @protected\n base::WeakPtr<electron::ElectronMenuModel> model_;\n NSMenu* __strong menu_;\n- NSMenuItem* __strong recentDocumentsMenuItem_;\n- NSMenu* __strong recentDocumentsMenuSwap...
2024-04-29T23:07:14
nodejs/node
1d1d8f2df35d2b48fff0d822980e937dfd66f9ec
b420c8fce2fa106afbf501f17939403dcbc77ba2
url: use resolved path to convert UNC paths to URL PR-URL: https://github.com/nodejs/node/pull/56302 Fixes: https://github.com/nodejs/node/issues/56262 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Xugu...
[ { "path": "lib/internal/url.js", "patch": "@@ -1512,32 +1512,35 @@ function fileURLToPath(path, options = kEmptyObject) {\n \n function pathToFileURL(filepath, options = kEmptyObject) {\n const windows = options?.windows ?? isWindows;\n- if (windows && StringPrototypeStartsWith(filepath, '\\\\\\\\')) {\n...
2024-12-25T18:42:11
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
ef097b77adcfcc478837f0132962ce456b525130
5310b79ffb40f840dd881fb8446b16a2f345322c
chore: fix notes stack updates (#41600) * chore: fix removeSupercededStackUpdates for generating notes * add early stop for less than * Update script/release/notes/notes.js Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * clean up comparison functionality * add tests --------- Co-authored...
[ { "path": "script/release/notes/notes.js", "patch": "@@ -485,6 +485,24 @@ const getNotes = async (fromRef, toRef, newVersion) => {\n return notes;\n };\n \n+const compareVersions = (v1, v2) => {\n+ const [split1, split2] = [v1.split('.'), v2.split('.')];\n+\n+ if (split1.length !== split2.length) {\n+ ...
2024-04-29T15:41:54
facebook/react
1e241f9d6c5f7d0e875b19a99c83cd6197fa62f7
b3aface19a17d78d190dd2883f6e4f9f719181d0
Add renderToMarkup for Client Components (#30121) Follow up to #30105. This supports `renderToMarkup` in a non-RSC environment (not the `react-server` condition). This is just a Fizz renderer but it errors at runtime when you use state, effects or event handlers that would require hydration - like the RSC ver...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-legacy.js", "patch": "@@ -7,82 +7,20 @@\n * @flow\n */\n \n-import type {Thenable} from 'shared/ReactTypes';\n+export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n+export * from 'react-client/src/ReactClientConsoleConfi...
2024-06-28T13:25:10
nodejs/node
bd0b704d3cf159645e51c2d14e788b74e908377c
49acdc8748fe9fe83bc1b444e24c456dff00ecc5
doc: fix the `crc32` documentation PR-URL: https://github.com/nodejs/node/pull/55898 Fixes: https://github.com/nodejs/node/issues/55800 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/zlib.md", "patch": "@@ -910,7 +910,67 @@ The `zlib.bytesWritten` property specifies the number of bytes written to\n the engine, before the bytes are processed (compressed or decompressed,\n as appropriate for the derived class).\n \n-### `zlib.crc32(data[, value])`\n+### `zlib.close([cal...
2024-12-24T20:53:53
vercel/next.js
62f39136c4acafe505dc8a9e412fc705a95c0d65
3d466e5d1afdb4f8596d8003368558163b3b319c
[turbopack] cleanup analyzer (#83983) Remove `special_cases` a dead module Standardize spelling of `undefined` (and `NaN` and `Infinity`). These are all standard globals with primitive values that are better modeled as constants instead of FreeVars Don't emit FreeVar effects for these things and consolodate free va...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/builtin.rs", "patch": "@@ -1,7 +1,5 @@\n use std::mem::take;\n \n-use swc_core::ecma::atoms::atom;\n-\n use super::{ConstantNumber, ConstantValue, JsValue, LogicalOperator, LogicalProperty, ObjectPart};\n use crate::analyzer::JsValueUrlKind;\n \n...
2025-09-20T07:29:44
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
electron/electron
5310b79ffb40f840dd881fb8446b16a2f345322c
b95d0f76232613a9f2a2afa87d3ce26259fbdcd9
fix: `setTitleBarOverlay` should be implemented on `BaseWindow` (#41960) fix: setTitleBarOverlay should be implemented on BaseWindow
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -11,6 +11,7 @@\n \n #include \"base/containers/contains.h\"\n #include \"base/task/single_thread_task_runner.h\"\n+#include \"content/public/common/color_parser.h\"\n #include \"electron/buildflags/buildflags.h\"\n #include \"gin/dictio...
2024-04-29T15:28:24
facebook/react
b3aface19a17d78d190dd2883f6e4f9f719181d0
e02baf6c92833a0d45a77fb2e741676f393c24f7
[fix] replace polyfill.io with cloudflare equivalent (#30123)
[ { "path": "fixtures/dom/public/renderer.html", "patch": "@@ -80,7 +80,7 @@\n \n <div id=\"output\"></div>\n \n- <script src=\"https://cdn.polyfill.io/v2/polyfill.min.js\"></script>\n+ <script src=\"https://cdnjs.cloudflare.com/polyfill/v2/polyfill.min.js\"></script>\n <script src=\"renderer.js...
2024-06-28T08:26:28
nodejs/node
48c75bc02b24445199bc7cd3bc0cb54da369d197
31c20f6e52dfd96c8972f92231f002c483a6eb47
tools: fix `require-common-first` lint rule from subfolder PR-URL: https://github.com/nodejs/node/pull/56325 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "test/addons/esm/test-esm.mjs", "patch": "@@ -4,7 +4,6 @@\n * the ESM loader or the CJS loader.\n */\n \n-// eslint-disable-next-line node-core/require-common-first\n import { buildType } from '../../common/index.mjs';\n import assert from 'node:assert';\n import { createRequire } from 'node:mod...
2024-12-22T18:44:20
vercel/next.js
0a81c72a87b6dd8e675f4019e4bfe0b3b62e70a0
7fb8bfe685a117ca87332ab5366efcda8fdbcb82
Turbopack: use depth as priority for merged module info (#83909) module_count: 63896 visit_count of the `traverse_edges_fixed_point_with_priority`: - before: 277.620 - with +depth: 1.250.882 - with -depth (this PR): 184.697
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -405,7 +405,8 @@ pub async fn compute_chunk_group_info(graph: &ModuleGraphRef) -> Result<Vc<Chunk\n \n // First, compute the depth for each module in the graph\n let module_depth: FxHashMap<Resolve...
2025-09-19T16:09:32
electron/electron
b41da150caa363d06f522427c87bd989464c9edd
b684a9826740e6cc7447a62e1feced01210fefd5
build: add GitHub Actions testing pipeline for macOS (#41812) * build: test the Mac runner space * build: baby steps, super basic checkout * chore: simplify depot-tools * build: try a sync * build: fix path * build: pass different URL for sync * build: gclient sync with --verbose * debug: add logg...
[ { "path": ".github/workflows/config/evm.mas.json", "patch": "@@ -0,0 +1,26 @@\n+{\n+ \"root\": \"/Users/runner/work/electron/electron/\",\n+ \"remotes\": {\n+ \"electron\": {\n+ \"origin\": \"https://github.com/electron/electron.git\"\n+ }\n+ },\n+ \"gen\": {\n+ \"args\": [\n+ \"impor...
2024-04-24T17:29:19
facebook/react
e02baf6c92833a0d45a77fb2e741676f393c24f7
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
Warn for invalid type in renderer with the correct RSC stack (#30102) This is all behind the `enableOwnerStacks` flag. This is a follow up to #29088. In that I moved type validation into the renderer since that's the one that knows what types are allowed. However, I only removed it from `React.createElement` and ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -692,14 +692,22 @@ describe('ReactFlight', () => {\n \n const transport = ReactNoopFlightServer.render(<ServerComponent />);\n \n- await act(async () => {\n- const rootModel = await ReactNoopFlightClient.read(trans...
2024-06-27T16:10:09
nodejs/node
31c20f6e52dfd96c8972f92231f002c483a6eb47
b8140384473c286f35c67a431b4e5805946dc4c1
build: fix GN build for ngtcp2 PR-URL: https://github.com/nodejs/node/pull/56300 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/ngtcp2/unofficial.gni", "patch": "@@ -68,8 +68,7 @@ template(\"ngtcp2_gn_build\") {\n cflags_c = [\n \"-Wno-extra-semi\",\n \"-Wno-implicit-fallthrough\",\n- # Remove after https://github.com/ngtcp2/ngtcp2/issues/1050 is fixed.\n- \"-Wno-sometimes-uninitia...
2024-12-18T03:50:24
vercel/next.js
27515900b31bfad83c3ecc65ed2e5d020ec289a6
2d80f1a249634ebcd5a84ba4f8b0763a91f4a560
Turbopack: less eager manifest generation (#83736) Before: <img width="2560" height="1224" alt="Bildschirmfoto 2025-09-12 um 18 47 11" src="https://github.com/user-attachments/assets/c40d2be6-f570-40b4-8a82-7b181f2de073" /> After: <img width="2560" height="1323" alt="Bildschirmfoto 2025-09-12 um 19 15 35" src...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1362,21 +1362,15 @@ impl AppEndpoint {\n }\n \n let build_manifest = BuildManifest {\n+ output_path: node_root.join(&format!(\n+ \"server/app{manifest_path_prefix}/build-manifest.json\",\n+ ...
2025-09-19T10:42:29
electron/electron
d8f8560b1c427a9047f762019f4b6ca1379f8599
1cf194faae12592c1963040a7fd94085bae1852e
refactor: address changes and fix errors in `chrome://accessibility` (#41911) refactor: address changes and fix errors in chrome://accessibility
[ { "path": "patches/chromium/.patches", "patch": "@@ -52,7 +52,7 @@ crash_allow_setting_more_options.patch\n upload_list_add_loadsync_method.patch\n allow_setting_secondary_label_via_simplemenumodel.patch\n feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch\n-fix_patch_out_profile_refs_in_...
2024-04-23T15:30:47
nodejs/node
b6df12819da0fd1e1a8dbeb65f5ddc54cb267ddf
57b21b16d20f7327dca870dca3a1998e5dc10b6c
esm: add experimental support for addon modules PR-URL: https://github.com/nodejs/node/pull/55844 Fixes: https://github.com/nodejs/node/issues/40541 Fixes: https://github.com/nodejs/node/issues/55821 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: J...
[ { "path": "doc/api/cli.md", "patch": "@@ -45,8 +45,11 @@ Otherwise, the file is loaded using the CommonJS module loader. See\n \n When loading, the [ES module loader][Modules loaders] loads the program\n entry point, the `node` command will accept as input only files with `.js`,\n-`.mjs`, or `.cjs` extensio...
2024-12-20T11:59:08
facebook/react
ffec9ec5b5c846f61d7b40e92f138e2a7b34f273
3bee073c01ee7af48c4ad19d98837cabaace67dc
Add new package with renderToMarkup export (#30105) Name of the package is tbd (straw: `react-html`). It's a new package separate from `react-dom` though and can be used as a standalone package - e.g. also from a React Native app. ```js import {renderToMarkup} from '...'; const html = await renderToMarkup(<Comp...
[ { "path": "packages/react-client/src/forks/ReactFlightClientConfig.dom-bun.js", "patch": "@@ -11,7 +11,6 @@ export * from 'react-client/src/ReactFlightClientStreamConfigWeb';\n export * from 'react-client/src/ReactClientConsoleConfigPlain';\n export * from 'react-dom-bindings/src/shared/ReactFlightClientCon...
2024-06-27T16:09:40
vercel/next.js
ffa66ff5429e14bb32a86f4720aab65c0a6daa7d
4160af22a0bc10563d83faf330e0abb33bc6a6fd
fix: error overlay not closing when backdrop clicked (#83981) The ref object wasn't passed to the hook; instead, ref.current (the value) was passed. This caused `useOnClickOutside` to be noop on initial render when ref.current was null, and only worked later because the component re-rendered with a different value. Th...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx", "patch": "@@ -37,8 +37,7 @@ const Dialog: React.FC<DialogProps> = function Dialog({\n )\n \n useOnClickOutside(\n- // eslint-disable-next-line react-hooks/refs -- TODO\n- dialogRef.current,\n+ dialogRef,\n ...
2025-09-19T09:21:21
electron/electron
a0fee8f47a0d0eff408d69f6fb7b3aa596de6fa1
4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca
build: fixup codespaces on-create (#41428)
[ { "path": ".devcontainer/devcontainer.json", "patch": "@@ -27,7 +27,8 @@\n \t\t\t]\n \t\t},\n \t\t\"vscode\": {\n-\t\t\t\"extensions\": [\"joeleinbinder.mojom-language\",\n+\t\t\t\"extensions\": [\n+\t\t\t\t\"joeleinbinder.mojom-language\",\n \t\t\t\t\"rafaelmaiolla.diff\",\n \t\t\t\t\"surajbarkale.ninja\",...
2024-04-23T00:26:11
nodejs/node
57b21b16d20f7327dca870dca3a1998e5dc10b6c
14803eaa9aaec5373a862521ae212891f2c92c10
stream: validate undefined sizeAlgorithm in WritableStream PR-URL: https://github.com/nodejs/node/pull/56067 Fixes: https://github.com/nodejs/node/issues/56014 Refs: https://github.com/whatwg/streams/pull/1333 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/internal/webstreams/writablestream.js", "patch": "@@ -1176,9 +1176,18 @@ function writableStreamDefaultControllerGetDesiredSize(controller) {\n }\n \n function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n+ const {\n+ stream,\n+ sizeAlgorithm,\n+ } = controller[kS...
2024-12-20T06:57:34
golang/go
c0ee2fd4e309ef0b8f4ab6f4860e2626c8e00802
a4d99770c0e5f340d6d11d6353110413dc109138
cmd/go: explicitly reject module paths "go" and "toolchain" The module paths "go" and "toolchain" are reserved for the dependency on the go and toolchain versions. Check for those paths in go mod init to create modules, go mod edit, and in the module loader and return an error when attempting to use those paths for a ...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -234,7 +234,11 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \t}\n \n \tif *editModule != \"\" {\n-\t\tif err := module.CheckImportPath(*editModule); err != nil {\n+\t\terr := module.CheckImportPath(*editModule)\n+\t\t...
2025-07-29T18:17:33
facebook/react
f5a22fa27d54d8a5eb898416436be4ca87850d4d
fcfbfc1d1e3e350e1ea3fbc4a2418f647dc28a31
Bump ws from 7.2.1 to 7.5.10 (#29919) Bumps [ws](https://github.com/websockets/ws) from 7.2.1 to 7.5.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>7.5.10</h2> <h1>Bug fixes</h1> <ul> <li>Back...
[ { "path": "yarn.lock", "patch": "@@ -7202,7 +7202,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -7274,7 +7273,7 @@ eslint-utils@^2.0.0, eslint-utils@^2...
2024-06-27T14:07:09
vercel/next.js
4160af22a0bc10563d83faf330e0abb33bc6a6fd
d5f9cfb3c4e829058da7dd2b631fcabe2751c8ba
Fix output comparison when checking conclusion of required jobs (#83986)
[ { "path": ".github/workflows/retry_test.yml", "patch": "@@ -71,7 +71,7 @@ jobs:\n \n return await rerunIfRequiredNotSuccessful()\n - name: send retry request to GitHub API\n- if: ${{ steps.required_job_conclusion.outputs.result != 'success' }}\n+ if: ${{ steps.required_job_co...
2025-09-19T08:48:27
rust-lang/rust
5e242b66b978dbc31b0a13cc2cfbbc69ce3f6113
26e5edc5e178d078f00845dd91fdfa12e38fc011
Revert "Fix the compile-test tests when setting Cargo's `build.build-dir` setting to a path that's distinct from `target-dir`." This reverts commit 2737b26c2e5eee9229663552d0c70e2affbb8511 as it prevents Clippy tests from passing when running inside the compiler repository.
[ { "path": "tests/compile-test.rs", "patch": "@@ -197,6 +197,10 @@ impl TestContext {\n defaults.set_custom(\"diagnostic-collector\", collector);\n }\n config.with_args(&self.args);\n+ let current_exe_path = env::current_exe().unwrap();\n+ let deps_path = current_exe...
2026-02-23T19:05:19