repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
ce3f3e2ae73dcc0c270bc73a59ea5e7be6cf6a8d
3dbef65bf37f1b7ccd1f884761341a5a15456ffa
cmd/link/internal/ld, internal/syscall/unix: use posix_fallocate on netbsd The posix_fallocate system call is available since NetBSD 7.0, see https://man.netbsd.org/posix_fallocate.2 Re-use the syscall wrappers already in place for freebsd. Note that posix_fallocate on netbsd also returns the result in r1 rather than...
[ { "path": "src/cmd/link/internal/ld/fallocate_test.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build darwin || (freebsd && go1.21) || linux\n+//go:build darwin || (freebsd && go1.21) || linux || (netbsd ...
2025-08-06T15:50:14
vercel/next.js
f46e17ac7d37b0c6ed135091363c1ca6e5625bb3
088a519039d319ab2a48d7963d717647d943190d
docs: update Security section to direct disclosures (#84156) This PR updates the README.md Security section: - Removes reference to GitHub’s private vulnerability reporting feature. - Directs researchers to email responsible.disclosure@vercel.com. - Clarifies that researchers will be added to our Open Source Softwar...
[ { "path": "packages/next/README.md", "patch": "@@ -42,9 +42,8 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n We have a list of **[good first issues](https://github.com/vercel/next.js/labels/%22good%20first%20issue%22)** that contain bugs that have a relatively limited ...
2025-09-23T23:30:56
facebook/react
9b3f909cc19fd848dcf8cba2cc3750f32053c056
0a0a5c02f138b37e93d5d93341b494d0f5d52373
[Flight] don't overwrite existing chunk listeners in 'wakeChunkIfInitialized' (#29204) Follow up to https://github.com/facebook/react/pull/29201. If a chunk had listeners attached already (e.g. because `.then` was called on the chunk returned from `createFromReadableStream`), `wakeChunkIfInitialized` would overwrit...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -320,8 +320,24 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ for (...
2024-05-21T21:04:46
nodejs/node
7119303a811b7f8ab5bebdaa8df4cc81f002dede
59b3a8b21be9f206bf319cea50a6718c2230d09b
module: fix bad `require.resolve` with option paths for `.` and `..` this change fixes `require.resolve` used with the `paths` option not considering `.` and `..` as relative Fixes: https://github.com/nodejs/node/issues/47000 PR-URL: https://github.com/nodejs/node/pull/56735 Reviewed-By: Yagiz Nizipli <yagiz@nizipli....
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -722,18 +722,8 @@ Module._findPath = function(request, paths, isMain, conditions = getCjsCondition\n )\n ));\n \n- const isRelative = StringPrototypeCharCodeAt(request, 0) === CHAR_DOT &&\n- (\n- request.length === 1 ||\n- ...
2025-01-25T23:32:13
electron/electron
705d92c5f6dfaaa7be9459b3ea7fa8060ecdb194
22ba8b6f011795ec2b4b356c90e03f06d56fcc61
docs: fix broken notification-spec markdown link (#42243) * docs: fix broken notification-spec markdown link * docs: update notification-spec linkt to point to freedesktop
[ { "path": "docs/tutorial/notifications.md", "patch": "@@ -161,7 +161,7 @@ Notifications are sent using `libnotify`, which can show notifications on any\n desktop environment that follows [Desktop Notifications Specification][notification-spec],\n including Cinnamon, Enlightenment, Unity, GNOME, and KDE.\n \...
2024-05-29T12:41:17
golang/go
3dbef65bf37f1b7ccd1f884761341a5a15456ffa
2b804abf0712d45801671232585e0011902a5c48
database/sql: allow drivers to override Scan behavior Implementing RowsColumnScanner allows the driver to completely control how values are scanned. Fixes #67546 Change-Id: Id8e7c3a973479c9665e4476fe2d29e1255aee687 GitHub-Last-Rev: ed0cacaec4a4feead56b09c0d6eee86ed58fe1ee GitHub-Pull-Request: golang/go#67648 Reviewe...
[ { "path": "api/next/67546.txt", "patch": "@@ -0,0 +1,5 @@\n+pkg database/sql/driver, type RowsColumnScanner interface { Close, Columns, Next, ScanColumn } #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Close() error #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Col...
2025-05-31T15:27:15
vercel/next.js
7f29f1740d0ec524cb150bb80ba57ea8c61309e4
49b83495aab6cd7d9ad74126f93ec3917bedc4e5
Turbopack: add more details to the graph panic (#84143) ### What? add more details to the panic message
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1419,7 +1419,7 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \\...
2025-09-23T18:37:10
facebook/react
8f3c0525f964fc5c75a627a6852f63efce1796b7
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
[Flight / Flight Reply] Don't clear pending listeners when entering blocked state (#29201) Fixes #29200 The cyclic state might have added listeners that will still need to be invoked. This happens if we have a cyclic reference AND end up blocked. We have already cleared these before entering the parsing when we...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -506,8 +506,6 @@ function initializeModelChunk<T>(chunk: ResolvedModelChunk<T>): void {\n // We have to go the BLOCKED state until they're resolved.\n const blockedChunk: BlockedChunk<T> = (chunk: any);\n blockedChunk...
2024-05-21T18:12:20
nodejs/node
da1ca7db756c0db8a894f3b22a4d067701dc3c04
bade7a1866618b9e46358b839fe5fdf16b1db2be
doc: fix typo in example code for util.styleText Code shows how to style `errorMessage`, but then only logs out `successMessage` twice. This might trip people up when copying the code. PR-URL: https://github.com/nodejs/node/pull/56720 Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard La...
[ { "path": "doc/api/util.md", "patch": "@@ -1972,7 +1972,7 @@ const errorMessage = styleText(\n // Validate if process.stderr has TTY\n { stream: stderr },\n );\n-console.error(successMessage);\n+console.error(errorMessage);\n ```\n \n ```cjs", "additions": 1, "deletions": 1, "language": "Mar...
2025-01-25T11:02:31
electron/electron
22ba8b6f011795ec2b4b356c90e03f06d56fcc61
09fb892c6ed584ab7a15eb48c741c8586abe5faa
fix: restore original BrowserWindow.show() behavior (#42300)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -457,11 +457,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n // Panels receive key focus when shown but should not activate the app.\n if (!IsPanel()) {\n- if (@available(macOS 14.0, *)) {\n- [[...
2024-05-29T06:31:11
rust-lang/rust
acbfd79acf662be04745dc0675558e75e0d30d87
e96bb7e44fbcc23c1e6009e8d0ee8ab208668fb4
Fix: On wasm targets, call `panic_in_cleanup` if panic occurs in cleanup Previously this was not correctly implemented. Each funclet may need its own terminate block, so this changes the `terminate_block` into a `terminate_blocks` `IndexVec` which can have a terminate_block for each funclet. We key on the first basic ...
[ { "path": "compiler/rustc_codegen_gcc/src/builder.rs", "patch": "@@ -1653,6 +1653,10 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n unimplemented!();\n }\n \n+ fn get_funclet_cleanuppad(&self, _funclet: &Funclet) -> RValue<'gcc> {\n+ unimplemented!();\...
2026-01-27T00:58:31
golang/go
2b804abf0712d45801671232585e0011902a5c48
6abfe7b0deaeb62d9f8d4bf09475efec68db9a1b
net: context aware Dialer.Dial functions Add context aware dial functions for TCP, UDP, IP and Unix networks. Fixes #49097 Updates #59897 Change-Id: I7523452e8e463a587a852e0555cec822d8dcb3dd Reviewed-on: https://go-review.googlesource.com/c/go/+/490975 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts...
[ { "path": "api/next/49097.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg net, method (*Dialer) DialIP(context.Context, string, netip.Addr, netip.Addr) (*IPConn, error) #49097\n+pkg net, method (*Dialer) DialTCP(context.Context, string, netip.AddrPort, netip.AddrPort) (*TCPConn, error) #49097\n+pkg net, method (*Dial...
2023-04-30T15:12:27
vercel/next.js
6478e9195140bcb936edc7083fd8095f0511b402
45e28f8fe8a5436e0cc0b9160d5b3b92b18cbf8e
Turbopack: fix run_once when returning error (#84142) Errors returned from the callback are never read. Instead, send errors returned from the `future` over the channel.
[ { "path": "turbopack/crates/turbo-tasks/src/manager.rs", "patch": "@@ -526,13 +526,13 @@ impl<B: Backend + 'static> TurboTasks<B> {\n ) -> Result<T> {\n let (tx, rx) = tokio::sync::oneshot::channel();\n self.spawn_once_task(async move {\n- let result = future.await?;\n+ ...
2025-09-23T16:30:28
facebook/react
5cc9f69a74ac42d55ad635229e9eaf129a1f0862
7621466b1b17965032aed24591e9b67fcd926a1b
Fix assertConsoleErrorDev on message mismatch with withoutStack: true (#29198) ## Summary ```js assertConsoleErrorDev([ ['Hello', {withoutStack: true}] ]) ``` now errors with a helpful diff message if the message mismatched. See first commit for previous behavior. ## How did you test this change? - ...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -2417,6 +2417,32 @@ describe('ReactInternalTestUtils console assertions', () => {\n If all errors should include the component stack, you may need to remove {withoutStack: true} from the assertConsoleEr...
2024-05-21T16:48:41
nodejs/node
bade7a1866618b9e46358b839fe5fdf16b1db2be
176002400886bc7f438236c727a61831efd5e565
src: fix build with GCC 15 Added cstdint to worker_inspector as on more recent version of gcc the build was failing due to changes to libstdc++ and the removal of transitive includes. PR-URL: https://github.com/nodejs/node/pull/56740 Fixes: https://github.com/nodejs/node/issues/56731 Reviewed-By: Antoine du Hamel <du...
[ { "path": "src/inspector/worker_inspector.h", "patch": "@@ -5,6 +5,7 @@\n #error(\"This header can only be used when inspector is enabled\")\n #endif\n \n+#include <cstdint>\n #include <memory>\n #include <string>\n #include <unordered_map>", "additions": 1, "deletions": 0, "language": "C/C++ He...
2025-01-25T09:34:54
electron/electron
bb4374ee2c0907c550147b1f0c4a29e13d3b5cb1
6423968dc56ce40259ed4a90744dbb9368dffd4e
fix: potential null dereference in normalizeSpawnArguments() patch (#42260) fix: potential null deref in normalizeSpawnArguments() patch Use upstream's practice of using `env = options.env || process.env`. Previously, we were unconditionally assigning CRASHDUMP_SIGNAL_FD and CRASHPAD_HANDLER_PID to options.env.
[ { "path": "patches/node/enable_crashpad_linux_node_processes.patch", "patch": "@@ -8,7 +8,7 @@ to child processes spawned with `ELECTRON_RUN_AS_NODE` which is used\n by the crashpad client to connect with the handler process.\n \n diff --git a/lib/child_process.js b/lib/child_process.js\n-index c09fca512584...
2024-05-27T08:41:42
rust-lang/rust
890434af218987d48f092524490c9a25ff910eeb
3282e2cb9c8c16f6d22d90a6af2515b592b2c692
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -151,7 +151,6 @@ rm -r tests/run-make/short-ice # ICE backtrace begin/end marker mismatch\n rm -r tests/run-make/remap-path-prefix-dwarf # requires llvm-dwarfdump\n rm -r tests/run-make/strip # same\n rm -r tests/run-make-cargo/compiler-builtins # Expect...
2026-02-24T16:13:56
golang/go
691af6ca28dad9c72e51346fe10c6aaadc3f940b
925149da2009589f6f2567564e1c7370e9f93b1b
encoding/json: fix Indent trailing whitespace regression in goexperiment.jsonv2 The Indent function preserves trailing whitespace, while the v1 emulation under v2 implementation accidentally dropped it. There was prior logic that attempted to preserve it, but it did not work correctly since it ran in a defer and acci...
[ { "path": "src/encoding/json/scanner_test.go", "patch": "@@ -74,6 +74,7 @@ func TestCompactAndIndent(t *testing.T) {\n \t-5e+2\n ]`},\n \t\t{Name(\"\"), \"{\\\"\\\":\\\"<>&\\u2028\\u2029\\\"}\", \"{\\n\\t\\\"\\\": \\\"<>&\\u2028\\u2029\\\"\\n}\"}, // See golang.org/issue/34070\n+\t\t{Name(\"\"), `null`, \"n...
2025-07-31T23:21:41
vercel/next.js
c2081b134ef6a9c54f8d005c72f8c077e8e1a699
58a60479550ee4c2e7a3ff5de696c01c196303f9
Bump Rust to nightly-2025-09-21 (#83415) It compiles fine, but we have another problem: `cargo fmt` really doesn't like it ``` cargo fmt -- turbopack/crates/turbo-tasks-fs/src/lib.rs error: let chains are only allowed in Rust 2024 or later --> /Users/niklas/code/next.js/turbopack/crates/turbo-tasks-fs/src/lib.rs:7...
[ { "path": ".devcontainer/rust/devcontainer-feature.json", "patch": "@@ -5,7 +5,7 @@\n \"dependsOn\": {\n \"ghcr.io/devcontainers/features/rust:1\": {\n // this should match the `rust-toolchain.toml`\n- \"version\": \"nightly-2025-06-04\",\n+ \"version\": \"nightly-2025-09-21\",\n ...
2025-09-23T15:15:44
facebook/react
57fbe3ba3729935b7ce5b670e57d30d487134bcb
d14ce51327c1bd4daf78f5118ae23f8620ebad03
[Compiler playground] bold changed passes (#29159) <!-- 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, ple...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -187,13 +187,29 @@ function Output({ store, compilerOutput }: Props) {\n });\n }, [store.source, compilerOutput]);\n \n+ const changedPasses: Set<string> = new Set();\n+ let lastResult: string = \"\";\n+ for (const [pas...
2024-05-20T15:05:48
electron/electron
6423968dc56ce40259ed4a90744dbb9368dffd4e
3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3
fix: fixed the type of `WebviewTag.webpreferences` (#42275) fix: fixed the type of WebviewTag.webpreferences
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -143,6 +143,7 @@\n contain the layout of the document—without requiring scrolling. Enabling\n this will cause the `preferred-size-changed` event to be emitted on the\n `WebContents` when the preferred size changes. Default is `false`.\n+...
2024-05-26T05:06:06
rust-lang/rust
b26ef2a45d867135135f7fbe2d2545f95454b952
df995ede1b3e61f0e87081d9548e6cd2a3ec9095
fix: `cmp_owned` suggests wrongly on `PathBuf`
[ { "path": "clippy_lints/src/operators/cmp_owned.rs", "patch": "@@ -100,10 +100,10 @@ fn check_op(cx: &LateContext<'_>, outer: &Expr<'_>, expr: &Expr<'_>, other: &Exp\n \n let mut applicability = Applicability::MachineApplicable;\n let (arg_snip, _) = snippet_with_context(cx, arg_span...
2026-02-24T05:08:42
golang/go
925149da2009589f6f2567564e1c7370e9f93b1b
cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb
net/http: add example for CrossOriginProtection It's not immediately appaerent that a method must be used to wrap the handler, so add a basic example to guide users to the right API. Fixes #74121 Change-Id: I23fc3dff6fff9bf4eb29c099bc77da8c99620671 Reviewed-on: https://go-review.googlesource.com/c/go/+/681256 LUCI-T...
[ { "path": "src/net/http/example_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"net/http\"\n \t\"os\"\n \t\"os/signal\"\n+\t\"time\"\n )\n \n func ExampleHijacker() {\n@@ -221,3 +222,22 @@ func ExampleProtocols_http1or2() {\n \t}\n \tres.Body.Close()\n }\n+\n+func ExampleCrossOriginProtection() {\n+\tm...
2025-06-12T08:30:28
vercel/next.js
521dcf55bffc12bfab7b1de4dde729865febc28e
90d4ff74debe7e7f1eb4fb719b9e214c36b3932c
Turbopack: add more details to the graph panic (#84126) ### What? give more information when a graph panic happens
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1419,8 +1419,14 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \...
2025-09-23T13:04:29
nodejs/node
176002400886bc7f438236c727a61831efd5e565
687be594bb45a5baed588067c3d7f1159f1ea62f
src: fix to generate path from wchar_t via wstring Take a similar approach to node_file and allow the creation of paths code point must be specified to convert from wchar_t to utf8. PR-URL: https://github.com/nodejs/node/pull/56696 Fixes: https://github.com/nodejs/node/issues/56650 Refs: https://github.com/nodejs/nod...
[ { "path": "src/node_file.cc", "patch": "@@ -3146,21 +3146,8 @@ static void GetFormatOfExtensionlessFile(\n }\n \n #ifdef _WIN32\n-std::wstring ConvertToWideString(const std::string& str) {\n- int size_needed = MultiByteToWideChar(\n- CP_UTF8, 0, &str[0], static_cast<int>(str.size()), nullptr, 0);\n- ...
2025-01-22T11:24:38
facebook/react
d14ce51327c1bd4daf78f5118ae23f8620ebad03
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
refactor[react-devtools]: rewrite context menus (#29049) ## Summary - While rolling out RDT 5.2.0 on Fusebox, we've discovered that context menus don't work well with this environment. The reason for it is the context menu state implementation - in a global context we define a map of registered context menus, basi...
[ { "path": "packages/react-devtools-inline/__tests__/__e2e__/components.test.js", "patch": "@@ -8,6 +8,7 @@ const devToolsUtils = require('./devtools-utils');\n const {test, expect} = require('@playwright/test');\n const config = require('../../playwright.config');\n const semver = require('semver');\n+\n te...
2024-05-20T14:12:21
rust-lang/rust
78ea9996cd057887698af79f74375cae650f50d1
0028f344ce9f64766259577c998a1959ca1f6a0b
std random.rs: update link to RTEMS docs The old URL with `master` resulted in a 404 error - use `main` instead.
[ { "path": "library/std/src/random.rs", "patch": "@@ -37,7 +37,7 @@ use crate::sys::random as sys;\n /// Horizon, Cygwin | `getrandom`\n /// AIX, Hurd, L4Re, QNX | `/dev/urandom`\n /// Redox | `/scheme/rand`\n-/// RTEMS | [`arc4random_buf`](https://docs.rtems.org/br...
2026-02-24T15:38:46
electron/electron
3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3
7ec813732aff4bc428e4946efb1934cc9f6a1fd6
fix: calculate a hash for the Tag property of ToastNotification. (#42239) * fix: calculate a hash for the Tag property of ToastNotification. * fix: calculate a hash for the Tag property of ToastNotification. --------- Co-authored-by: bill.shen <shenyb32768@gmail.com>
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -14,6 +14,7 @@\n #include <wrl\\wrappers\\corewrappers.h>\n \n #include \"base/environment.h\"\n+#include \"base/hash/hash.h\"\n #include \"base/logging.h\"\n #include \"base/strings/strcat.h\"\n #include \"base/strings/...
2024-05-24T19:20:59
vercel/next.js
94fe834574fade7008eb36e7a6e157017e52bea2
42cc1a85888311a7f0745fd68fb29e4767b1d9e3
docs: onRequestError request header type (#83988) Aligning with the actual type https://github.com/vercel/next.js/blob/canary/packages/next/src/server/instrumentation/types.ts#L18
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/instrumentation.mdx", "patch": "@@ -88,7 +88,7 @@ export function onRequestError(\n request: {\n path: string // resource path, e.g. /blog?name=foo\n method: string // request method. e.g. GET, POST, etc\n- headers: { [key: string]: st...
2025-09-23T12:48:36
golang/go
cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb
b096ddb9ea84efa28eafd7850b8f8a8b3e76e49f
encoding/json/v2: fix UnmarshalDecode regression with EOF When EOF is encountered within jsontext.Decoder stream without starting to parse any token, UnmarshalDecode should report EOF, rather than converting it into ErrUnexpectedEOF. This fixes a regression introduced by https://go.dev/cl/689919. This change only af...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -470,7 +470,7 @@ func unmarshalDecode(in *jsontext.Decoder, out any, uo *jsonopts.Struct, last bo\n \t// was validated before attempting to unmarshal it.\n \tif uo.Flags.Get(jsonflags.ReportErrorsWithLegacySemantics) {\n \t\tif err := export.Decoder(i...
2025-07-31T22:01:47
nodejs/node
687be594bb45a5baed588067c3d7f1159f1ea62f
97a3a8204c7c0eb35fc6c11274a7aee5d2ea3ddc
test: add test that uses multibyte for path and resolves modules PR-URL: https://github.com/nodejs/node/pull/56696 Fixes: https://github.com/nodejs/node/issues/56650 Refs: https://github.com/nodejs/node/pull/56657 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By...
[ { "path": "test/fixtures/copy/utf/新建文件夹/experimental.json", "patch": "@@ -0,0 +1,3 @@\n+{\n+ \"ofLife\": 42\n+}", "additions": 3, "deletions": 0, "language": "JSON" }, { "path": "test/parallel/test-module-create-require-multibyte.js", "patch": "@@ -0,0 +1,24 @@\n+'use strict';\n+\n+...
2025-01-22T11:21:46
facebook/react
c325aec1ee5ae970ea70efc9b19574aa0e72c9a1
ba51ebe03a3cf6ec86f940b09b8efc722c7ce905
Bump word-wrap from 1.2.3 to 1.2.5 in /compiler (#29064) Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonschlinkert/word-wrap/releases">word-wrap's releases</a>.</em></p> <blockquote>...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9813,9 +9813,9 @@ which@^2.0.1:\n isexe \"^2.0.0\"\n \n word-wrap@^1.2.3, word-wrap@~1.2.3:\n- version \"1.2.3\"\n- resolved \"https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c\"\n- integrity sha512-Hz/m...
2024-05-20T11:03:55
electron/electron
2e778a98b90a2b769a0de76d68f906dd1defeecb
b8381b7d93b7efd2b55cf5f860d81252953f313d
fix: ensure showInactive actually shows (#42226)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -473,7 +473,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n- [window_ orderFrontRegardless];\n+ [window_ orderFrontKeepWindowKeyState];\n }...
2024-05-20T21:12:05
vercel/next.js
81bccc93e99bc33759d0789538dafa42c45d068e
ce4d40b00b53aacd546bb061b9964cc34cc3f076
Guide users to `experimental.cacheComponents` config (#84121) In error messages and in docs for `'use cache'` and related APIs, we now guide users to the `experimental.cacheComponents` config instead of `experimental.useCache`. closes NAR-410
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -3191,15 +3191,15 @@ fn emit_error(error_kind: ServerActionsErrorKind) {\n span,\n formatdoc! {\n r#\"\n- Unknown cache kind \"{cache_kind}\". Please configure ...
2025-09-23T10:23:59
golang/go
ce0e803ab9fcee7e5adc99d262dde6f6c1f41842
38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a
[dev.simd] cmd/compile: keep track of multiple rule file names in ssa/_gen This was a long-standing "we need to fix this" for simd work, this fixes it. I expect that simd peephole rule files will be coming soon and there will be more errors and we will be happier to have this. Change-Id: Iefffc43e3e2110939f8d406f6e5...
[ { "path": "src/cmd/compile/internal/ssa/_gen/multiscanner.go", "patch": "@@ -0,0 +1,117 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+import (\n+\t\"bufio\"\n+\t\"...
2025-08-08T20:49:17
facebook/react
ba51ebe03a3cf6ec86f940b09b8efc722c7ce905
9abea0cb7c454319c2e8c54ce46e9fe1c044209e
Bump tough-cookie from 4.1.2 to 4.1.4 in /compiler (#29065) Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.1.2 to 4.1.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/salesforce/tough-cookie/releases">tough-cookie's releases</a>.</em></p> <bl...
[ { "path": "compiler/yarn.lock", "patch": "@@ -9390,20 +9390,10 @@ to-regex-range@^5.0.1:\n dependencies:\n is-number \"^7.0.0\"\n \n-tough-cookie@^4.0.0:\n- version \"4.1.2\"\n- resolved \"https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874\"\n...
2024-05-20T11:03:29
nodejs/node
4a5d2c7538b412eea84a0f41544784b1b8ed7c8c
f07300cfa32c197684fe44d39965770b2fcfc23d
module: integrate TypeScript into compile cache This integrates TypeScript into the compile cache by caching the transpilation (either type-stripping or transforming) output in addition to the V8 code cache that's generated from the transpilation output. Locally this speeds up loading with type stripping of `benchmar...
[ { "path": "lib/internal/modules/typescript.js", "patch": "@@ -22,6 +22,11 @@ const {\n const { getOptionValue } = require('internal/options');\n const assert = require('internal/assert');\n const { Buffer } = require('buffer');\n+const {\n+ getCompileCacheEntry,\n+ saveCompileCacheEntry,\n+ cachedCodeTyp...
2025-01-25T02:30:27
electron/electron
b8381b7d93b7efd2b55cf5f860d81252953f313d
af9a59cc402461ed5b2a2010b5dc64f9a42d377e
docs: fix broken anchors (#42213)
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -51,7 +51,7 @@ Unsupported options are:\n --http-parser\n ```\n \n-If the [`nodeOptions` fuse](../tutorial/fuses.md#L27) is disabled, `NODE_OPTIONS` will be ignored.\n+If the [`nodeOptions` fuse](../tutorial/fuses.md#nodeoptions) is disabled, `NODE...
2024-05-17T07:46:18
vercel/next.js
ce4d40b00b53aacd546bb061b9964cc34cc3f076
90af4259ffff9934dcafeb9a00e91609fd0e68e5
fix(docs): Fix links in UPGRADING.md (#84114) ### What? Both links in this file were broken/out of date. ### Why? ### How? Updated with new links, open to suggestions if we want to link elsewhere! Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "UPGRADING.md", "patch": "@@ -1 +1 @@\n-This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/01-app/03-building-your-application/11-upgrading](/docs/01-app/03-building-your-application/11-upgrading).\n+This...
2025-09-23T10:23:16
facebook/react
9abea0cb7c454319c2e8c54ce46e9fe1c044209e
8287cb92903fdfc983dcc8deecd8293402fc3bd4
Bump rustix from 0.37.22 to 0.37.27 in /compiler (#29173) Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.37.22 to 0.37.27. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bytecodealliance/rustix/commit/b38dc512628b5db8d08c26449ee2beed7ed51dcc"><code>b38dc51</code></a>...
[ { "path": "compiler/Cargo.lock", "patch": "@@ -756,9 +756,9 @@ checksum = \"d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76\"\n \n [[package]]\n name = \"rustix\"\n-version = \"0.37.22\"\n+version = \"0.37.27\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum ...
2024-05-20T11:02:35
nodejs/node
761de815c5cce3fb67f0d14ecabc5397497285ff
c752615e2bbea73ec59de0439c997d334577fdae
test: move crypto related common utilities in common/crypto Since `common/crypto` already exists, it makes sense to keep crypto-related utilities there. The only exception being common.hasCrypto which is needed up front to determine if tests should be skipped. Eliminate the redundant check in hasFipsCrypto and just u...
[ { "path": "test/addons/openssl-providers/providers.cjs", "patch": "@@ -1,11 +1,14 @@\n 'use strict';\n \n const common = require('../../common');\n-if (!common.hasCrypto)\n+if (!common.hasCrypto) {\n common.skip('missing crypto');\n+}\n+const { hasOpenSSL3 } = require('../../common/crypto');\n \n-if (!com...
2025-01-25T00:58:32
golang/go
38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a
94d72355f662a1c8229db661cc068ea8e901641c
[dev.simd] cmd/compile, simd: jump table for imm ops This CL fixes some errors in prog generation for imm operations, please see the changes in ssa.go for details. This CL also implements the jump table for non-const immediate arg. The current implementation exhaust 0-255, the bound-checked version will be in the nex...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1837,11 +1837,7 @@ func simdVkv(s *ssagen.State, v *ssa.Value) *obj.Prog {\n // Example instruction: VROUNDPD $7, X2, X2\n func simdV11Imm8(s *ssagen.State, v *ssa.Value) *obj.Prog {\n \tp := s.Prog(v.Op.Asm())\n-\timm := v.AuxInt\n-\tif imm <...
2025-08-08T17:31:45
electron/electron
a54afabe044f547e6316d3408da265cf50852569
125bd6aa2bb3b06edf5b9eb3640572475ca1abb2
fix: `win.center()` on Windows (#42195) fix: win.center() on Windows
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1085,7 +1085,7 @@ void NativeWindowViews::Center() {\n #else\n HWND hwnd = GetAcceleratedWidget();\n gfx::Size size = display::win::ScreenWin::DIPToScreenSize(hwnd, GetSize());\n- gfx::CenterAndSizeWindow(hwnd, hwnd, size);\n+ gfx::Center...
2024-05-15T17:36:24
vercel/next.js
fa57e47f78683fc09fa1955980782e01dbc22dab
7ff17dd13ed347fa450341ea7d640d298d50cdba
[Turbopack] avoid attaching referenced output assets to chunks (#75933) ### What? `referenced_output_assets` are different for every chunk group. Attaching them as references to a random chunk in the group causes a different Chunk instance which not only causes duplicate work, but also multiple writes to the same f...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -39,8 +39,8 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterExt, ValueToString, Vc,\n- fxindexset, trace::Tra...
2025-09-23T09:37:29
facebook/react
8287cb92903fdfc983dcc8deecd8293402fc3bd4
68de7d0535bae14cb31cca4a9d4fa078a855c7e4
Bump postcss from 8.4.24 to 8.4.31 in /compiler (#29063) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.24 to 8.4.31. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.4.31</h2> ...
[ { "path": "compiler/apps/playground/package.json", "patch": "@@ -48,7 +48,7 @@\n \"eslint\": \"^8.28.0\",\n \"eslint-config-next\": \"^13.5.6\",\n \"monaco-editor-webpack-plugin\": \"^7.1.0\",\n- \"postcss\": \"^8.4.19\",\n+ \"postcss\": \"^8.4.31\",\n \"tailwindcss\": \"^3.2.4\"\n }...
2024-05-20T10:47:51
golang/go
1718828c81f2bad44b51b13fb4b34540a9c2c096
084c0f849467d5e45b7242cda3dd957352e86b8f
internal/sync: warn about incorrect unsafe usage in HashTrieMap When the HashTrieMap expand method runs out of bits, it can be because the user mutated a key after insertion using unsafe or similar in violation of the HashTrieMap invariants. Adjust the panic message to help triage and debugging by more directly sugge...
[ { "path": "src/internal/sync/hashtriemap.go", "patch": "@@ -178,7 +178,7 @@ func (ht *HashTrieMap[K, V]) expand(oldEntry, newEntry *entry[K, V], newHash uin\n \ttop := newIndirect\n \tfor {\n \t\tif hashShift == 0 {\n-\t\t\tpanic(\"internal/sync.HashTrieMap: ran out of hash bits while inserting\")\n+\t\t\tp...
2025-08-09T21:25:14
nodejs/node
19fabc0e3175d73e5b4c8acab66dd5424372ff55
1921371349c15d31b0b6884225a2093f0925a3d7
util: inspect: do not crash on an Error stack that contains a Symbol See #56570 PR-URL: https://github.com/nodejs/node/pull/56573 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewat...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1287,8 +1287,14 @@ function identicalSequenceRange(a, b) {\n return { len: 0, offset: 0 };\n }\n \n-function getStackString(error) {\n- return error.stack ? String(error.stack) : ErrorPrototypeToString(error);\n+function getStackString(ctx, error) {...
2025-01-12T21:04:40
electron/electron
125bd6aa2bb3b06edf5b9eb3640572475ca1abb2
7f8fabbe7b93f1d44421c12b42b8fc8a6cd69a96
docs: troubleshooting advice for rbe auth 'token not valid' error (#42027)
[ { "path": "docs/development/build-instructions-gn.md", "patch": "@@ -329,3 +329,7 @@ Error: Cannot find module '/Users/<user>/.electron_build_tools/src/e'\n ```\n \n We recommend installing Node through [nvm](https://github.com/nvm-sh/nvm). This allows for easier Node version management, and is often a fix ...
2024-05-15T17:35:32
facebook/react
68de7d0535bae14cb31cca4a9d4fa078a855c7e4
cca15a2139f733f8402fe940805179d3da65b30b
[compiler:chore] fix SSA pdf reference link (#29162) ## Summary This PR fixes the deadlink in the SSA comment. Previously the attached link is down now. ## How did you test this change? 1. I can confirm the PDF in the new link is the same as the old now. Reference: https://www.recompiled.dev/blog/ssa/ 2. I...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -21,7 +21,7 @@ import {\n * In both these cases, the phi is eliminated and all usages of the phi identifier\n * are replaced with the other operand (ie in both cases above, all usages of `x2` are repla...
2024-05-20T10:10:10
nodejs/node
869d0cbca3b0b5e594b3254869a34d549664e089
a9546024975d0bfb0a8ae47da323b10fb5cbb88b
test: fix localization data for ICU 74.2 PR-URL: https://github.com/nodejs/node/pull/56661 Refs: https://github.com/nodejs/node/pull/55618 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Ruben Bridgewater <ruben@b...
[ { "path": "test/fixtures/icu/localizationData-v74.2.json", "patch": "@@ -20,14 +20,14 @@\n \"dateTimeFormats\": {\n \"en\": \"7/25/1980, 1:35:33 AM\",\n \"zh\": \"1980/7/25 01:35:33\",\n- \"hi\": \"25/7/1980, 1:35:33 am\",\n+ \"hi\": \"25/7/1980, पू 1:35:33\",\n \"es\": \"25/7/1980, 1:35...
2025-01-23T22:14:10
golang/go
084c0f849467d5e45b7242cda3dd957352e86b8f
a62f72f7a7ee606c803d1c68cadd24e45eea5e83
cmd/compile: allow InlMark operations to be speculatively executed Although InlMark takes a memory argument it ultimately becomes a NOP and therefore is safe to speculatively execute. Fixes #74915 Change-Id: I64317dd433e300ac28de2bcf201845083ec2ac82 Reviewed-on: https://go-review.googlesource.com/c/go/+/693795 LUCI-...
[ { "path": "src/cmd/compile/internal/ssa/branchelim.go", "patch": "@@ -436,8 +436,15 @@ func canSpeculativelyExecute(b *Block) bool {\n \t// don't fuse memory ops, Phi ops, divides (can panic),\n \t// or anything else with side-effects\n \tfor _, v := range b.Values {\n-\t\tif v.Op == OpPhi || isDivMod(v.Op)...
2025-08-06T21:43:05
vercel/next.js
8f162b138d50ec460cd8ceb3b93f7783a55c99e2
df29b988c235d2dd82a0a470b51a262851165a3a
Fix: Client should auto reload after server restarts (#83971) Port the implementation from pages router to app router. https://github.com/vercel/next.js/blob/27515900b31bfad83c3ecc65ed2e5d020ec289a6/packages/next/src/client/dev/hot-reloader/pages/websocket.ts --------- Co-authored-by: devjiwonchoi <devjiwonchoi@gma...
[ { "path": "packages/next/src/client/dev/hot-reloader/app/web-socket.ts", "patch": "@@ -17,6 +17,12 @@ import {\n logQueue,\n } from '../../../../next-devtools/userspace/app/forward-logs'\n import { InvariantError } from '../../../../shared/lib/invariant-error'\n+import { WEB_SOCKET_MAX_RECONNECTIONS } fro...
2025-09-23T05:45:13
electron/electron
435003566dbfe0aedbe52b39774f32148635ed00
d7099b0ad4594284eb3143d6839e167c1a9b1a44
fix: restore non-panel focus behavior (#42180)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -426,20 +426,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n // If we're a panel window, we do not want to activate the app,\n // which enables Electron-apps to build Spotlight-like experiences.\n ...
2024-05-14T22:52:08
facebook/react
cca15a2139f733f8402fe940805179d3da65b30b
85923690e96ed5c03a419550d5db9c035e864f2d
compiler: fix accidental propagation of function effects from StartMemoize/FinishMemoize By default, React Compiler will skip compilation if it cannot preserve existing memoization. Ie, if the code has an existing `useMemo()` or `useCallback()` and the compiler cannot determine that it is safe to keep that memoization...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1611,14 +1611,14 @@ function inferBlock(\n val,\n Effect.Freeze,\n ValueReason.Other,\n- functionEffects\n+ []\n );\...
2024-05-17T22:25:20
golang/go
bce5601cbbb1a3a33ecdb13b796033e44931a3da
777d76c4f2392b782418a867172e7e951c0278f8
cmd/go: fix fips doc link Change-Id: I8f06ebd65ba9961e19274c1e5fec251b18395d1c Reviewed-on: https://go-review.googlesource.com/c/go/+/691435 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-s...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2527,7 +2527,7 @@\n //\t\tThe default is GOFIPS140=off, which makes no FIPS-140 changes at all.\n //\t\tOther values enable FIPS-140 compliance measures and select alternate\n //\t\tversions of the cryptography source code.\n-//\t\tSee https://go.dev/security...
2025-07-29T16:19:51
nodejs/node
a9546024975d0bfb0a8ae47da323b10fb5cbb88b
3d861c493bb8ac3222837c22672d37a18b5f62ca
tools: fix tools-deps-update PR-URL: https://github.com/nodejs/node/pull/56684 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": ".github/workflows/tools.yml", "patch": "@@ -284,6 +284,10 @@ jobs:\n tail -n1 temp-output | grep \"NEW_VERSION=\" >> \"$GITHUB_ENV\" || true\n rm temp-output\n steps:\n+ - name: Setup Git config\n+ run: |\n+ git config --global user.name \"Nod...
2025-01-23T19:24:38
vercel/next.js
df29b988c235d2dd82a0a470b51a262851165a3a
51656e537ce529ae80d247f6b651eff3bd78649b
docs: Fix the title/path of the turbopack page on pages router (#84001) This option was renamed/stabilized from `experimental.turbo` to `turbopack` in 15.3. The app router page title/path was correct, but pages router had the wrong thing. Let me know if I should add a redirect for this somewhere?
[ { "path": "docs/02-pages/04-api-reference/04-config/01-next-config-js/turbopack.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: turbo\n+title: turbopack\n description: Configure Next.js with Turbopack-specific options\n version: experimental\n source: app/api-reference/config/next-config-js/turbopack", "...
2025-09-23T04:47:08
facebook/react
85923690e96ed5c03a419550d5db9c035e864f2d
f74c5ccf9469d3389ce3a1ee3b54988049e235f7
compiler: Improve ValidateNoRefAccessInRender to ignore access in effects Improves ValidateNoRefAccessInRender (still disabled by default) to properly ignore ref access within effects. This includes allowing ref access within functions that are only transitively called from an effect. While I was here I also added so...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -19,6 +19,7 @@ import {\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n+import { isEffectHook } from \"./ValidateMemoizedEffect...
2024-05-17T21:35:47
electron/electron
f2af35182c9a7b13a7047992cb330652c15cec69
d0cb298f95c905ba78e4746c560b9be6a1d0208f
fix: fix cast in ElectronDesktopWindowTreeHostLinux (#42179) Fix cast in ElectronDesktopWindowTreeHostLinux The frame view of the widget is an `ClientFrameViewLinux` instance only when both `frame` and `client_frame` booleans are set to `true`. Otherwise it is an instance of a different class and thus casting to ...
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -87,9 +87,15 @@ void ElectronDesktopWindowTreeHostLinux::OnWindowStateChanged(\n \n void ElectronDesktopWindowTreeHostLinux::OnWindowTiledStateChanged(\n ui::WindowTiledEdges new_tiled_edges) {\n- static_cast<ClientFr...
2024-05-14T21:26:39
golang/go
dcc77f9e3c7097b497e99800a7a4ed80c7a430d8
c7b85e9ddc1e23f84ccb3c5de8fdb55e80a9dd69
cmd/go: fix get -tool when multiple packages are provided Fixes #74035 Change-Id: I51865f4f753aade9a8be62ed6f9bc2d298742bf1 Reviewed-on: https://go-review.googlesource.com/c/go/+/679975 Reviewed-by: Ian Alexander <jitsu@google.com> Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Michael Matloob <matloo...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -453,7 +453,7 @@ func updateTools(ctx context.Context, queries []*query, opts *modload.WriteOpts)\n \t\tif queries[i].version == \"none\" {\n \t\t\topts.DropTools = append(opts.DropTools, m.Pkgs...)\n \t\t} else {\n-\t\t\topts.AddTools = append(opt...
2025-06-07T19:28:20
nodejs/node
3d861c493bb8ac3222837c22672d37a18b5f62ca
a1c9c1a2dd739db69f2de97875ad9ee8347ec160
doc: fix inconsistencies in `WeakSet` and `WeakMap` comparison details PR-URL: https://github.com/nodejs/node/pull/56683 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@g...
[ { "path": "doc/api/assert.md", "patch": "@@ -909,11 +909,12 @@ weakSet2.add(obj);\n \n // Comparing different instances fails, even with same contents\n assert.deepStrictEqual(weakSet1, weakSet2);\n-// AssertionError: Expected inputs to be strictly deep-equal:\n+// AssertionError: Values have same structure...
2025-01-23T19:24:28
facebook/react
1052a5f2dd1c7e73b74661e70283fc825012ef67
38d961f8ff94f1290953e07e255ef82f00e7b509
[compiler:publish] Don't check branch in debug mode ghstack-source-id: 465f5a358096c55310ebf5a0beef581646ab553e Pull Request resolved: https://github.com/facebook/react/pull/29153
[ { "path": "compiler/scripts/release/publish-manual.js", "patch": "@@ -70,13 +70,6 @@ async function getDateStringForCommit(commit) {\n * the command only report what it would have done, instead of actually publishing to npm.\n */\n async function main() {\n- const currBranchName = await execHelper(\"git ...
2024-05-17T21:55:47
vercel/next.js
4edf40d7dbdda6fcdea2a0bbb61ec0cd39165642
36bff1060eef4f6d0a8a9ad408be66489a276cc4
Fix layout for `ssgPageRoutes` in the file tree (#84104) Fix layout for ssgPageRoutes in the file tree there was an extraneous column that messed with offsets accidentally left behind by #83815 Closes NEXT-4727
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -383,7 +383,6 @@ export async function printTreeView(\n ? ` (avg ${getPrettyDuration(avgDuration)})`\n : ''\n }`,\n- '',\n showRevalidate && initialCacheControl\n ...
2025-09-22T23:47:48
electron/electron
d0cb298f95c905ba78e4746c560b9be6a1d0208f
1ef5406c8cd88a4de8d8d70b32ca383ecfc907a6
fix: `webContents.navigationHistory` should be enumerable (#42139) fix: webContents.navigationHistory should be enumerable
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -541,7 +541,8 @@ WebContents.prototype._init = function () {\n length: this._historyLength.bind(this),\n getEntryAtIndex: this._getNavigationEntryAtIndex.bind(this)\n },\n- writable: false\n+ writable: false,\n+ enumerable: t...
2024-05-14T20:47:47
rust-lang/rust
87e4a3dad1321d26ce25f223e89fd6511ce52b71
d8ffd9181f8265ca01e292b4060b49ea9d4265d5
fix: detect E0804 when casting raw ptr-to-dyn adds auto traits the `check_ptr_ptr_cast` function had an early return when the source and destination dyn trait objects shared the same principal trait def id: if src_principal == dst_principal { return Ok(()); } this bypassed all three remaining checks ...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/cast.rs", "patch": "@@ -328,11 +328,7 @@ impl<'db> CastCheck<'db> {\n //\n // Note that trait upcasting goes through a different mechanism (`coerce_unsized`)\n // and is unaffected by this ...
2026-02-24T12:56:08
golang/go
a8dd771e132beb8e4b2354f209cbb29b9f4fc815
bdb2d50fdf40706e7d7411f33ade80edac726707
crypto/tls: check if quic conn can send session ticket On SendSessionTicket, returns nil if SessionTicketsDisabled is disabled in config. Fixes #62032 Change-Id: Id0c89e2e6fb0805bbf108bb0cafdabdfbaf3897f Reviewed-on: https://go-review.googlesource.com/c/go/+/528755 Reviewed-by: Roland Shoemaker <roland@golang.org> R...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -302,6 +302,9 @@ type QUICSessionTicketOptions struct {\n // Currently, it can only be called once.\n func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {\n \tc := q.conn\n+\tif c.config.SessionTicketsDisabled {\n+\t\treturn nil\n+\t}\n...
2023-09-15T18:23:51
nodejs/node
905e4b43e58a7443fc9cb6ae6f99623422a0e997
d9786109b2a0982677135f0c146f6b591a0e4961
module: use more defensive code when handling SWC errors PR-URL: https://github.com/nodejs/node/pull/56646 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/modules/typescript.js", "patch": "@@ -1,5 +1,8 @@\n 'use strict';\n \n+const {\n+ ObjectPrototypeHasOwnProperty,\n+} = primordials;\n const {\n validateBoolean,\n validateOneOf,\n@@ -12,7 +15,6 @@ const { assertTypeScript,\n isUnderNodeModules,\n kEmptyObject } =...
2025-01-23T15:17:31
facebook/react
1d6eebfb7ff44b24627ef404112bb151f683efe7
640017231599b42b4c2436395e11c72fefe9015d
[Compiler][script] Dedupe error report counts before reporting in healthcheck (#29085) Certain compiler passes currently may collect a few error events before reporting (see https://github.com/facebook/react/blob/main/compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts#L101-L107)
[ { "path": "compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts", "patch": "@@ -13,15 +13,18 @@ import BabelPluginReactCompiler, {\n type CompilerErrorDetailOptions,\n type PluginOptions,\n } from \"babel-plugin-react-compiler/src\";\n-import { LoggerEvent } from \"babel-plugin-react...
2024-05-17T18:58:15
vercel/next.js
3c42dfb313e45d58bfc21ed3db6b173f078153fb
b853167072928d0d7bc281a278a518ff489b6223
Turbopack: Document automatic Babel config support (#84002) ~I'm looking for review/feedback, but **DO NOT MERGE UNTIL NEXT 16.0 IS RELEASED.** This is not supported on 15.5, and merging these docs now would be confusing to users. If you want to try it out, use a recent canary release.~ I've been informed that docs ar...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopack.mdx", "patch": "@@ -55,13 +55,13 @@ The following options are available for the `turbopack` configuration:\n \n The following loaders have been tested to work with Turbopack's webpack loader implementation, but many other webpack ...
2025-09-22T23:22:38
electron/electron
e19754d7fd4a24d058031121b0ac73b3fcb6e6cd
c56e1dffb0adc6140b8b112678885cbccfc3d6f6
test: add tests for electron fuses (#42129) * spec: add tests for electron fuses * spec: fix tests for windows * spec: handle weird crash codes on win32 * spec: disable fuse tests on arm64 windows
[ { "path": "shell/common/asar/archive.cc", "patch": "@@ -116,7 +116,7 @@ bool FillFileInfoWithNode(Archive::FileInfo* info,\n info->executable = *executable;\n }\n \n-#if BUILDFLAG(IS_MAC)\n+#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)\n if (load_integrity &&\n electron::fuses::IsEmbeddedAsarInte...
2024-05-13T17:48:26
facebook/react
ecddf3cb077d6d1b542b3d0cd8f87d30fb2030be
be6712f72ccfe3e3b9388e169f6f9e261d78637b
Add issue template for React Compiler Adds a GitHub issue template form so we can automatically categorize issues and get more information upfront. I mostly referenced the DevTools bug report template and made some tweaks. ghstack-source-id: 5bfc728a625f367932fc21263e82681079d3ac65 Pull Request resolved: https://gith...
[ { "path": ".github/ISSUE_TEMPLATE/compiler_bug_report.yml", "patch": "@@ -0,0 +1,57 @@\n+name: \"⚛️ ✨ Compiler bug report\"\n+description: \"Report a problem with React Compiler. Please provide enough information that we can reproduce the problem.\"\n+title: \"[Compiler Bug]: \"\n+labels: [\"Component: Opti...
2024-05-17T17:29:29
golang/go
bdb2d50fdf40706e7d7411f33ade80edac726707
768c51e368e05739854c1413fdf7fd129d01e482
net: fix WriteMsgUDPAddrPort addr handling on IPv4 sockets Accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets. Fixes #74737. Change-Id: I4624b9b8f861aedcae29e51d5298d23ce1c0f2c7 Reviewed-on: https://go-review.googlesource.com/c/go/+/689976 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -237,8 +237,12 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e\n func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {\n \t// ipToSockaddrInet4 has special handling here for zero length slices.\n...
2025-07-25T07:14:16
nodejs/node
9ec7bed7b9343fbdc7f7270d8c08c9fb0dca453f
01dd7c4f6450ac5f092f98a5a85f00d0a7f489b2
module: fixing url change in load sync hook chain Fixes: https://github.com/nodejs/node/issues/56376 PR-URL: https://github.com/nodejs/node/pull/56402 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Mat...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1144,7 +1144,7 @@ function getDefaultLoad(url, filename) {\n return function defaultLoad(urlFromHook, context) {\n // If the url is the same as the original one, save the conversion.\n const isLoadingOriginalModule = (urlFromHook === ur...
2024-12-29T20:36:54
rust-lang/rust
4eaf448fae00fa7971dac07826987228c5ab1f34
d8ffd9181f8265ca01e292b4060b49ea9d4265d5
fix: Fix scrutinee expr indent for replace_if_let_with_match - Remove some redundant `.clone_for_update()` and `.indent(IndentLevel::single())` Example --- ```rust fn main() { if true { $0if true && false { foo() } } } ``` **Before this PR** ```rust fn main() ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_if_let_with_match.rs", "patch": "@@ -57,7 +57,7 @@ pub(crate) fn replace_if_let_with_match(acc: &mut Assists, ctx: &AssistContext<'\n let if_exprs = successors(Some(if_expr.clone()), |expr| match expr.else_branch()? {\n a...
2026-02-24T10:50:21
vercel/next.js
b853167072928d0d7bc281a278a518ff489b6223
34f1f5a0642902c5d15d1c5f8439a30bb10962bd
Turbopack: Merge babel-loader and react-compiler configuration logic to avoid running babel twice (#83502) Port the logic for configuring react-compiler from JS to Rust. This fixes two issues: - Babel could run twice if you had both react compiler enabled and a babel config file. - We can now emit a warning if we det...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1314,9 +1314,7 @@ impl AppEndpoint {\n \n // polyfill-nomodule.js is a pre-compiled asset distributed as part of next,\n // load it as a RawModule.\n- let next_package = get_next_package(project.project_path().owned().await?)\n- ...
2025-09-22T22:33:55
electron/electron
c56e1dffb0adc6140b8b112678885cbccfc3d6f6
653d0f009e5ec9a5e903b5179f335fbbd7b2e6ef
fix: partially revert invalidate focus ring (#42126)
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,3 +128,4 @@ refactor_expose_file_system_access_blocklist.patch\n partially_revert_is_newly_created_to_allow_for_browser_initiated.patch\n fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_...
2024-05-13T16:02:59
facebook/react
be6712f72ccfe3e3b9388e169f6f9e261d78637b
af3a55e67f0fc9c981b5fe63162b2770ca9548b1
compiler: Workaround Babel bug with unicode in jsx string attrs Workaround for a bug in older versions of Babel, where strings with unicode are incorrectly escaped when emitted as JSX attributes, causing double-escaping by later processing. Closes #29120 Closes #29124 ghstack-source-id: 065440d4fb97e164beb8a8f15f252...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -6,6 +6,7 @@\n */\n \n import * as t from \"@babel/types\";\n+import { createHmac } from \"crypto\";\n import { pruneHoistedContexts, pruneUnusedLValues, pruneUnusedLabels } from \".\";\n i...
2024-05-17T17:38:56
golang/go
94d72355f662a1c8229db661cc068ea8e901641c
8eb5f6020e707672a846f0f83011b87e48039550
[dev.simd] simd: add emulations for bitwise ops and for mask/merge methods This CL adds the emulations under a "wrong name"; subsequent CLs will move the AVX512 versions of these operations out of the way, and then will rename these to their better names. Change-Id: I49e7a73e4fea74fb7bd26cb8062014568d7999ca Reviewed-...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -50,13 +50,20 @@ var convert32Shapes = &shapes{\n \tfloats: []int{32},\n }\n \n-var avx512MaskedLoadShapes = &shapes{\n+var avx512Shapes = &shapes{\n \tvecs: []int{512},\n \tints: []int{8, 16, 32, 64},\n \tuints: []int{8, 16, 32, 64},\n \tfloats: []int{32,...
2025-07-30T21:42:10
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
nodejs/node
8306457110ebba648de5979136c39f7abba46ea9
1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b
path: fix path traversal in normalize() on Windows Without this patch, on Windows, normalizing a relative path might result in a path that Windows considers absolute. In rare cases, this might lead to path traversal vulnerabilities in user code. We attempt to detect those cases and return a relative path instead. Co...
[ { "path": "lib/path.js", "patch": "@@ -26,6 +26,7 @@ const {\n ArrayPrototypeSlice,\n FunctionPrototypeBind,\n StringPrototypeCharCodeAt,\n+ StringPrototypeIncludes,\n StringPrototypeIndexOf,\n StringPrototypeLastIndexOf,\n StringPrototypeRepeat,\n@@ -414,6 +415,23 @@ const win32 = {\n if (...
2025-01-20T14:40:16
vercel/next.js
704c15311a3c2ceae546ac7f35853f2cd30c0d08
a12283e511f2cc7f79381a2b4b622027a8ad7d34
babel-loader: Fix a few issues with config caching (#83973) - `isReactCompilerRequired` needs to be called in `getCacheCharacteristics`, not in `getFreshConfig` because it depends on the file contents, so we don't want to cache the result of `isReactCompilerRequired`. - Moving react compiler detection outside of the c...
[ { "path": "packages/next/src/build/babel/loader/get-config.ts", "patch": "@@ -59,27 +59,26 @@ interface CharacteristicsGermaneToCaching {\n isPageFile: boolean | undefined\n isNextDist: boolean\n hasModuleExports: boolean\n- fileNameOrExt: string\n+ hasReactCompiler: boolean\n+ fileExt: string\n ...
2025-09-22T21:53:12
facebook/react
af3a55e67f0fc9c981b5fe63162b2770ca9548b1
477a3d1ef5207370df611856702b7d796d478ec1
Lazily freeze in case anything in the currently initializing chunk is blocked (#29139) Fixed #29129. --------- Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de>
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -641,7 +641,12 @@ function createElement(\n }\n // TODO: We should be freezing the element but currently, we might write into\n // _debugInfo later. We could move it into _store which remains mutable.\n- Object.freeze(el...
2024-05-17T17:58:42
golang/go
b3388569a187ea6be48caa41265f2b4dbc2fdfd3
d83b16fcb8de765f25cabbea63284406ea6dd091
reflect: handle zero-sized fields of directly-stored structures correctly type W struct { E struct{} X *byte } type W is a "direct" type. That is, it is a pointer-ish type that can be stored directly as the second word of an interface. But if we ask reflect for W's first field, that value must *not* be direct, as ...
[ { "path": "src/reflect/value.go", "patch": "@@ -1277,6 +1277,17 @@ func (v Value) Field(i int) Value {\n \t\t\tfl |= flagStickyRO\n \t\t}\n \t}\n+\tif fl&flagIndir == 0 && typ.Size() == 0 {\n+\t\t// Special case for picking a field out of a direct struct.\n+\t\t// A direct struct must have a pointer field a...
2025-08-07T22:30:54
electron/electron
653d0f009e5ec9a5e903b5179f335fbbd7b2e6ef
10fd0ba655d619681e3e28182b891fda3b916209
chore: bump node to v20.13.1 (main) (#42088) * chore: bump node in DEPS to v20.13.0 * crypto: enable NODE_EXTRA_CA_CERTS with BoringSSL https://github.com/nodejs/node/pull/52217 * test: skip test for dynamically linked OpenSSL https://github.com/nodejs/node/pull/52542 * lib, url: add a `windows` option ...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '126.0.6445.0',\n 'node_version':\n- 'v20.12.2',\n+ 'v20.13.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-05-13T15:43:14
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
1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b
23c2d33592e72f7ba9bb5d30fe3181714bb508d1
src: fix HTTP2 mem leak on premature close and ERR_PROTO This commit fixes a memory leak when the socket is suddenly closed by the peer (without GOAWAY notification) and when invalid header (by nghttp2) is identified and the connection is terminated by peer. Refs: https://hackerone.com/reports/2841362 PR-URL: https:/...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -614,11 +614,20 @@ function onFrameError(id, type, code) {\n return;\n debugSessionObj(session, 'error sending frame type %d on stream %d, code: %d',\n type, id, code);\n- const emitter = session[kState].streams.get(id) || session...
2024-12-17T19:58:03
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
facebook/react
3f1436cca1f8dd80a19fd52b97b6ff71a4d9ce82
5ab54718a52d738dcbd03fcb43a556993b445ed4
[compiler:playground] Fix broken builds Now that the compiler is public, the `*` version was grabbing the latest version of the compiler off of npm and was resolving to my very first push to npm (an empty package containing only a single package.json). This was breaking the playground as it would attempt to load the c...
[ { "path": "compiler/apps/playground/package.json", "patch": "@@ -25,7 +25,6 @@\n \"@monaco-editor/react\": \"^4.4.6\",\n \"@playwright/test\": \"^1.42.1\",\n \"@use-gesture/react\": \"^10.2.22\",\n- \"babel-plugin-react-compiler\": \"*\",\n \"hermes-eslint\": \"^0.14.0\",\n \"invarian...
2024-05-17T06:08:17
golang/go
f3606b0825c20e3f3ccdae00bb8d5d7d8dfd745e
ee7bb8969a62b12f466f818e4e3d836a2e126940
cmd/compile/internal/ssa: fix typo in LOONG64Ops.go comment Change-Id: I680bae7fc1a26c1f249ab833fa8d41e9387b2d50 Reviewed-on: https://go-review.googlesource.com/c/go/+/693456 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -589,7 +589,7 @@ func init() {\n \t\t{name: \"FPT\", controls: 1}, // FP flag is true\n \t\t{name: \"FPF\", controls: 1}, // FP flag is false\n \t\t{name: \"BEQ\", controls: 2}, // controls[0] == controls[1]\n-\t\t{name: \"BNE\", c...
2025-08-06T02:31:59
nodejs/node
23c2d33592e72f7ba9bb5d30fe3181714bb508d1
d07c60b08fbb293555678a6892b0854b2cd771d0
doc: clarify cjs/esm diff in `queueMicrotask()` vs `process.nextTick()` the section comparing `queueMicrotask()` and `process.nextTick()` doesn't address the different scheduling behavior that the two functions have in cjs and esm modules, the section's introductory mjs example also provides an incorrect output, the c...
[ { "path": "doc/api/process.md", "patch": "@@ -3020,34 +3020,40 @@ function definitelyAsync(arg, cb) {\n \n ### When to use `queueMicrotask()` vs. `process.nextTick()`\n \n-The [`queueMicrotask()`][] API is an alternative to `process.nextTick()` that\n-also defers execution of a function using the same micro...
2025-01-21T17:16:17
electron/electron
88f28a302ff2ba6fd3698e1cb1cfb6497d178f32
8d4467bdc4bb7019b4e150d47a3fbf2599c5392c
docs: improve protocol.handle file examples (#42111) * docs: improve protocol.handle file examples * chore: fix lint
[ { "path": "docs/api/protocol.md", "patch": "@@ -9,10 +9,14 @@ An example of implementing a protocol that has the same effect as the\n \n ```js\n const { app, protocol, net } = require('electron')\n+const path = require('node:path')\n+const url = require('node:url')\n \n app.whenReady().then(() => {\n- prot...
2024-05-13T09:49:18
facebook/react
7a149aa1623d8973defd1d9b3f8f702eabd86f20
91e88f94ccb3e58db1c133942ba704fa0e3a139d
docs: fix typo DESIGN_GOALS.md (#29102) ## Summary Fixes typo DESIGN_GOALS.md in react compiler docs ## How did you test this change? it's document fix, so no tests needed.
[ { "path": "compiler/docs/DESIGN_GOALS.md", "patch": "@@ -6,7 +6,7 @@ This document describes the goals, design principles, and high-level architectur\n \n The idea of React Compiler is to allow developers to use React's familiar declarative, component-based programming model, while ensuring that apps are fa...
2024-05-16T23:11:22
golang/go
1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61
8282b72d627269ed2c2f7db7ea744e109667d7b1
time: skip TestLongAdjustTimers on plan9 (too slow) The TestLongAdjustTimers test has been consistently timing out after 60 seconds on plan9-arm. Skip the test for plan9, as it is already skipped for being too slow on android and ios. Fixes #74921 Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d Reviewed-on: htt...
[ { "path": "src/time/tick_test.go", "patch": "@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {\n }\n \n func TestLongAdjustTimers(t *testing.T) {\n-\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" {\n+\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" || runtime.GOOS...
2025-08-07T10:58:20
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
94896cb8c5b1dfc80aa947ac9b273b6b9447571f
e8779a9a9add1131ccbd1c84aac8df4467c763e5
[React Compiler] Fix rule name for ESLint plugin (#29096) /cc @poteto <!-- 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 submitti...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/README.md", "patch": "@@ -34,7 +34,7 @@ Then configure the rules you want to use under the rules section.\n ```json\n {\n \"rules\": {\n- \"react-compiler/rule-name\": 2\n+ \"react-compiler/react-compiler\": \"error\"\n }\n }\n ...
2024-05-16T16:36:22
electron/electron
8d4467bdc4bb7019b4e150d47a3fbf2599c5392c
188196e78cd714c9fb2c75b4074c41ae2dcb2793
docs: fixing typo in dark mode fiddle and doc (#42112)
[ { "path": "docs/fiddles/features/dark-mode/index.html", "patch": "@@ -14,6 +14,5 @@ <h1>Hello World!</h1>\n <button id=\"reset-to-system\">Reset to System Theme</button>\n \n <script src=\"renderer.js\"></script>\n- </body>\n </body>\n </html>", "additions": 0, "deletions": 1, "language...
2024-05-13T08:50:55
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
nodejs/node
d07c60b08fbb293555678a6892b0854b2cd771d0
3efbb0dfb489d9051c0b765de803f65cecefcdeb
2025-01-21, Version 18.20.6 'Hydrogen' (LTS) This is a security release. Notable changes: * CVE-2025-23084 - fix path traversal in normalize() on Windows (Medium) * CVE-2025-23085 - fix HTTP2 mem leak on premature close and ERR_PROTO * CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium) ...
[ { "path": "CHANGELOG.md", "patch": "@@ -100,7 +100,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.5\">18.20.5</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.6\">18.20...
2025-01-16T13:22:44
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
e8779a9a9add1131ccbd1c84aac8df4467c763e5
149b917c8a4022aeaa170c4fb826107dd2333c68
[React Compiler] use `filename` instead of `context.filename` in ESLint plugin (#29104) <!-- 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": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts", "patch": "@@ -114,10 +114,7 @@ const rule: Rule.RuleModule = {\n }\n \n let babelAST;\n- if (\n- context.filename.endsWith(\".tsx\") ||\n- context.filename.endsWith(\".ts\")\n- ) {\n+ if (fi...
2024-05-16T16:35:52