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 | 28225857d7e613fad0909e0345aca25c739cc1fb | 487938ba64c1cc1d69898a37f217b8b45bc66177 | test: skip test-fs-cp* tests that are constantly failing on Windows
These tests are likely actual regressions introduced when the
monolithic test-fs-cp.mjs was marked as flaky and got ignored due
to the flaky status. They are now constantly failing the Windows
CI and require the CI to always be re-run on Windows when ... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -24,11 +24,11 @@ test-snapshot-incompatible: SKIP\n test-async-context-frame: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n-# https://github.com/nodejs/node/pull/59408#issuecomment-3170650933\n-test-... | 2025-08-28T19:57:08 |
golang/go | 86bbea0cfa72041fb4315eb22099b0bc83caa314 | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | crypto/fips140: add WithoutEnforcement
WithoutEnforcement lets programs running under GODEBUG=fips140=only
selectively opt out of strict enforcement. This is especially helpful
for non-critical uses of cryptography routines like SHA-1 for content
addressable storage backends (E.g. git).
Fixes #74630
Change-Id: Iabba... | [
{
"path": "api/next/74630.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/fips140, func Enforced() bool #74630\n+pkg crypto/fips140, func WithoutEnforcement(func()) #74630",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/fips140/7463... | 2025-11-24T13:08:10 |
electron/electron | c16ea8d54edc58f9ccd1ab9875a1c49ccc81e8e2 | b7ae16271643d08aecfc48c1604c677bf62029c3 | fix: printing when no `mediaSize` specified (#46937)
fix: printing when no mediaSize specified | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3133,11 +3133,21 @@ void WebContents::Print(gin::Arguments* args) {\n options.Get(\"duplexMode\", &duplex_mode);\n settings.Set(printing::kSettingDuplexMode, static_cast<int>(duplex_mode));\n \n- // We've already done necessary p... | 2025-05-07T00:12:25 |
rust-lang/rust | 9d9f68f52769edef5710ded13d80b3e2fe7a0dfe | 1cd4c2a0f7efcab799992b46fdff90c5c5c31ae9 | fix: .let no complete semicolon before semicolon
Make `.let` `.letm` `.return` `.break` not duplicate semicolons
Example
---
```rust
fn main() {
baz.l$0;
}
```
**Before this PR**
```rust
fn main() {
let $0 = baz;;
}
```
**After this PR**
```rust
fn main() {
let $0 = baz;
}
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -66,6 +66,12 @@ pub(crate) fn complete_postfix(\n Some(it) => it,\n None => return,\n };\n+ let semi =\n+ if expr_ctx.in_block_expr && ctx.token.next_token().is_none_or(|it| it.ki... | 2026-03-18T11:33:05 |
facebook/react | c6c2a52ad8fb1894b03a3bb618eb57e5deca5aa0 | 5dc1b212c330b6f456789f8d58e0f87abefbb86c | [compiler] Fix error message for custom hooks (#33310)
We were printing "Custom" instead of "hook". | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateHooksUsage.ts",
"patch": "@@ -452,7 +452,7 @@ function visitFunctionExpression(errors: CompilerError, fn: HIRFunction): void {\n reason:\n 'Hooks must be called at the top level in the body of a... | 2025-05-19T22:29:58 |
vercel/next.js | f263c5622d0a48ddac1fc8e88d9f396f24a818e7 | 4674a4358739f2e203a445a33bc3672fc499f615 | Turbopack: Various cleanup for turbo-tasks-fs, mostly retry logic and string formatting (#88668)
- https://github.com/vercel/next.js/pull/87661 removed the `tokio::task::spawn_blocking` call from `retry_blocking`, so we can simplify things a lot by removing the `Send + 'static` bounds, and eliminate a bunch of cloning... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -39,7 +39,7 @@ use std::{\n fmt::{self, Debug, Display, Formatter},\n fs::FileType,\n future::Future,\n- io::{self, BufRead, BufReader, ErrorKind, Read},\n+ io::{self, BufRead, BufReader, ErrorKind, Read, Write as _},\n ... | 2026-01-22T00:43:20 |
golang/go | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | 623ef2813579c9b52ba4a0335722df4d93566b74 | crypto/x509: add ExtKeyUsage.OID method
And OIDFromASN1OID for converting between asn1.ObjectIdentifier and OID.
Fixes #75325
Change-Id: I3b84dce54346d88aab731ffe30d0fef07b014f04
Reviewed-on: https://go-review.googlesource.com/c/go/+/724761
Reviewed-by: Neal Patel <nealpatel@google.com>
Auto-Submit: Roland Shoemaker... | [
{
"path": "api/next/75325.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325\n+pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/... | 2025-11-26T17:21:13 |
nodejs/node | 487938ba64c1cc1d69898a37f217b8b45bc66177 | cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb | doc: fix filehandle.read typo
PR-URL: https://github.com/nodejs/node/pull/59635
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/fs.md",
"patch": "@@ -397,7 +397,7 @@ changes:\n from the file. If `null` or `-1`, data will be read from the current file\n position, and the position will be updated. If `position` is a non-negative\n integer, the current file position will remain unchanged.\n- **Default:**: `nul... | 2025-08-28T19:23:59 |
facebook/react | 4448b18760d867f9e009e810571e7a3b8930bb19 | 4a45ba92c4097a97333c04b5516ba2d5c81af716 | [eslint-plugin-react-hooks] fix exhaustive deps lint rule with component syntax (#33182) | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -7746,6 +7746,34 @@ const testsFlow = {\n },\n ],\n invalid: [\n+ {\n+ code: normalizeIndent`\n+ hook useExample(a) {\n+ useEffect(() => {\n+ console.log(a);\n+ ... | 2025-05-15T16:51:18 |
vercel/next.js | 4674a4358739f2e203a445a33bc3672fc499f615 | aa8754c3f4095781402e46fd3ef550cc4a50b527 | Turbopack: Make the priority_runner testcase deterministic (#88651)
# What
Fixes the `test_mixed_cpu_bound_and_waiting_tasks` to avoid flakes.
# Why
The `test_mixed_cpu_bound_and_waiting_tasks` was non-deterministic and relied on thread scheduling order.
The previous test relied on timing-based synchroniza... | [
{
"path": "turbopack/crates/turbo-tasks/src/priority_runner.rs",
"patch": "@@ -389,7 +389,11 @@ impl Future for JoinHandle {\n \n #[cfg(test)]\n mod tests {\n- use std::{sync::Arc, thread::sleep, time::Duration};\n+ use std::{\n+ sync::{Arc, Barrier},\n+ thread::sleep,\n+ time::Du... | 2026-01-22T00:34:39 |
electron/electron | c4ac192aa464f938f443c74f09ba25fa9dff0aeb | 8308ac29c83cce45ad70b5143a8bd170cd1f8553 | chore: bump chromium to 138.0.7164.0 (main) (#46948)
* chore: bump chromium in DEPS to 138.0.7164.0
* 6508870: Add missing PermissionType mapping and remove default case.
https://chromium-review.googlesource.com/c/chromium/src/+/6508870
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7160.0',\n+ '138.0.7164.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-05-06T18:01:37 |
golang/go | efe9ad501d94743d87e500a7ba0b1732a89e9afd | ac3369242d3a6d6219fdf1d592effc5e51ddfeb8 | go/types, types2: improve printing of []*operand lists (debugging support)
Special-case an sprintf argument of []*operand type, similar to what
we do for other lists. As a result a list of operands is printed as
[a, b, c] rather than [a b c] (default formatting for slices).
(We could factor out this code into a gener... | [
{
"path": "src/cmd/compile/internal/types2/format.go",
"patch": "@@ -23,6 +23,17 @@ func sprintf(qf Qualifier, tpSubscripts bool, format string, args ...any) string\n \t\t\tpanic(\"got operand instead of *operand\")\n \t\tcase *operand:\n \t\t\targ = operandString(a, qf)\n+\t\tcase []*operand:\n+\t\t\tvar b... | 2025-11-26T00:26:25 |
facebook/react | 4a45ba92c4097a97333c04b5516ba2d5c81af716 | 08cb2d7ee732f35ef1935c75c081754bd81d60b9 | [sync] Fix noop for xplat (#33214)
Noop detection for xplat syncs broke because `eslint-plugin-react-hooks`
uses versions like:
- `0.0.0-experimental-d85f86cf-20250514`
But xplat expects them to be of the form:
- `19.2.0-native-fb-63d664b2-20250514`
This PR fixes the noop by ignoring
`eslint-plugin-react-hooks/pac... | [
{
"path": ".github/workflows/runtime_commit_artifacts.yml",
"patch": "@@ -332,10 +332,10 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --... | 2025-05-15T16:12:51 |
nodejs/node | cc0cdb1ed1086ff9a1ec5bfffab7e4a85ae39acb | 42021e4b4c491f77b1dbe93573f24a9f91e31fc1 | test: deflake test-http-keep-alive-empty-line
- Do not call `client.end()` to ensure that the socket is closed by the
server.
- Remove the timer and send the empty line when the response is
received.
Fixes: https://github.com/nodejs/node/issues/59577
PR-URL: https://github.com/nodejs/node/pull/59595
Reviewed-By: ... | [
{
"path": "test/parallel/test-http-keep-alive-empty-line.mjs",
"patch": "@@ -3,6 +3,10 @@ import assert from 'node:assert';\n import { createServer } from 'node:http';\n import { connect } from 'node:net';\n \n+// This test ensures that data like an empty line (`\\r\\n`) recevied by the\n+// server after a ... | 2025-08-28T19:02:10 |
vercel/next.js | 917ff14ce2a1dc60913dab436e8bddb8952ae93b | 7026785ff128efa2debd1b65f1008f3dc7f62a96 | Turbopack: Add a stress test / fuzzer that tries creating many symlinks in a tight loop (#88667)
In an attempt to reproduce https://github.com/vercel/next.js/discussions/88382, this tries creating and updating a bunch of symlinks/junction points in a tight loop with some parallelism. However, I've been unable to repro... | [
{
"path": "Cargo.lock",
"patch": "@@ -9535,6 +9535,7 @@ dependencies = [\n \"mime\",\n \"notify\",\n \"parking_lot\",\n+ \"rand 0.9.0\",\n \"regex\",\n \"rstest\",\n \"rustc-hash 2.1.1\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/turbo-t... | 2026-01-21T21:04:38 |
electron/electron | 206544cbc0e8b98de056eb6aeff65bd97a6b67d4 | a5ec3f7476353336b61ab7d7561beca0ebfdfc64 | fix: crash on macOS dialog after `window-all-closed` (#46927)
fix: crash on dialog after window-all-closed | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -218,7 +218,7 @@ - (void)rotateWithEvent:(NSEvent*)event {\n }\n \n - (NSRect)contentRectForFrameRect:(NSRect)frameRect {\n- if (shell_->has_frame())\n+ if (shell_ && shell_->has_frame())\n return [super contentRectForFrameRect:fra... | 2025-05-06T12:47:50 |
golang/go | fb5156a0981c2b89a118695138194e1af162ac8e | b194f5d24a71e34f147c90e4351d80ac75be55de | testing: fix bloop doc
This CL deletes the compiler detail part from bloop documentation.
Change-Id: I73933707a593d4958e2300416d15e7213f001c3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/724800
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chas... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -483,14 +483,12 @@ func (b *B) loopSlowPath() bool {\n // the timer so cleanup code is not measured.\n //\n // Within the body of a \"for b.Loop() { ... }\" loop, arguments to and\n-// results from function calls and assignment receivers within the loop are... | 2025-11-26T19:15:51 |
rust-lang/rust | 74909ec285fb12f2a14234009354ad883b7cdabd | fac53a0cf82ed94246b8159a1d40e297e385bef4 | fix ICE for arrays in diverging never-pattern closure bodies | [
{
"path": "compiler/rustc_hir_typeck/src/expr.rs",
"patch": "@@ -1660,14 +1660,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n expr: &'tcx hir::Expr<'tcx>,\n ) -> Ty<'tcx> {\n let element_ty = if !args.is_empty() {\n- // This shouldn't happen unless there's another error\n- ... | 2026-03-18T03:41:27 |
facebook/react | 08cb2d7ee732f35ef1935c75c081754bd81d60b9 | 203df2c9409f580fd63eeacd4f80d70c2741bd4f | [ci] Log author_association (#33213)
For debugging purposes, log author_association | [
{
"path": ".github/workflows/compiler_discord_notify.yml",
"patch": "@@ -15,6 +15,7 @@ jobs:\n outputs:\n is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}\n steps:\n+ - run: echo ${{ github.event.pull_request.author_association }}\n... | 2025-05-15T15:49:56 |
nodejs/node | bcb802cca06db2a5b0e5c8a48c825183900ef83d | 4e0af201841f531062f1157f780051d923a9e158 | sea: allow using inspector command line flags with SEA
The inspector command line flags should be allowed via NODE_OPTIONS,
though it should not be consumed when passed directly to the SEA.
This patch allows it to consume inspector flags from NODE_OPTIONS
and add tests for different behaviors.
PR-URL: https://github.... | [
{
"path": "src/node_options.cc",
"patch": "@@ -422,10 +422,6 @@ void Parse(\n // TODO(addaleax): Make that unnecessary.\n \n DebugOptionsParser::DebugOptionsParser() {\n-#ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) return;\n-#endif\n-\n AddOption(\"--inspect-port\",\n ... | 2025-08-27T19:38:55 |
electron/electron | a5ec3f7476353336b61ab7d7561beca0ebfdfc64 | be399f2feed6223d035411b25eb5144800b81fb3 | fix: allowed dialog file types with one filter (#46900) | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -131,10 +131,6 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n [file_types_list addObject:content_types_set];\n }\n \n- // Don't add file format picker.\n- if ([file_types_list count] <= 1)\n- return;\n-\n ... | 2025-05-06T08:31:00 |
golang/go | 437d2362ce8ad3e10631aaf90cb4d8c8126d1bac | 71f8f031b27502e057c569fef8cd4f2cb9187504 | os,internal/poll: don't call IsNonblock for consoles and Stdin
windows.IsNonblock can block for synchronous handles that have an
outstanding I/O operation. Console handles are always synchronous, so
we should not call IsNonblock for them. Stdin is often a pipe, and
almost always a synchronous handle, so we should not ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -451,6 +451,10 @@ func (fd *FD) Init(net string, pollable bool) error {\n \tfd.isFile = fd.kind != kindNet\n \tfd.isBlocking = !pollable\n \n+\tif !pollable {\n+\t\treturn nil\n+\t}\n+\n \t// It is safe to add overlapped handles that also perform I/O... | 2025-11-26T09:25:16 |
facebook/react | 65b5aae010002ef88221cc4998711eaef6068006 | 3f67d0857efc3ab21b9d30851f5a8451471166ab | [Fizz] Add vt- prefix attributes to annotate <ViewTransition> in HTML (#33206)
Stacked on #33194 and #33200.
When Suspense boundaries reveal during streaming, the Fizz runtime will
be responsible for animating the reveal if necessary (not in this PR).
However, for the future runtime to know what to do it needs to kno... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -72,6 +72,7 @@ import {\n enableScrollEndPolyfill,\n enableSrcObject,\n enableTrustedTypesIntegration,\n+ enableViewTransition,\n } from 'shared/ReactFeatureFlags';\n import {\n mediaEventTypes,\n@@ -3217,6 +3218,... | 2025-05-15T05:04:10 |
nodejs/node | 89067de3917088f1b97434ef0328efc192715cb3 | 5c9db1046f88cbf1b17236f1731fae701a16e7c4 | src: remove JSONParser
This is now unused after
https://redirect.github.com/nodejs/node/pull/59473 and
and https://redirect.github.com/nodejs/node/pull/59323
PR-URL: https://github.com/nodejs/node/pull/59619
Fixes: https://github.com/nodejs/node/issues/59288
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed... | [
{
"path": "node.gyp",
"patch": "@@ -96,8 +96,6 @@\n 'src/js_stream.cc',\n 'src/json_utils.cc',\n 'src/js_udp_wrap.cc',\n- 'src/json_parser.h',\n- 'src/json_parser.cc',\n 'src/module_wrap.cc',\n 'src/node.cc',\n 'src/node_api.cc',",
"additions": 0,
"delet... | 2025-08-27T14:46:43 |
golang/go | eb63ef9d6676dc0edb112cd297820306a327017a | 06412288cfd31ab365fe8ee6368742dffa759803 | runtime: panic if cleanup function closes over cleanup pointer
This would catch problems like https://go.dev/cl/696295.
Benchmark effect with this CL plus CL 697535:
goos: linux
goarch: amd64
pkg: runtime
cpu: 12th Gen Intel(R) Core(TM) i7-1260P
│ /tmp/foo.1 │ /tmp/foo.2 ... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -71,7 +71,14 @@ import (\n // mentions it. To ensure a cleanup does not get called prematurely,\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n+//\n+//go:nocheckptr\n func AddCleanup[T, S a... | 2025-08-22T20:47:42 |
vercel/next.js | d23af53268d062ff70b7c12322750b85ed3a76ba | c986bcccf166a89861bbaecd69823baf3e8a2b40 | Turbopack: Use a real file entrypoint for Workers (and SharedWorkers) (#88602)
# What
Closes https://github.com/vercel/next.js/issues/84782
Closes https://github.com/vercel/next.js/issues/74842
Closes https://github.com/vercel/next.js/issues/82520
Closes PACK-3723
Replace blob URLs for web workers with re... | [
{
"path": "test/e2e/app-dir/worker/app/shared-worker.ts",
"patch": "@@ -0,0 +1,8 @@\n+// SharedWorkers use onconnect to handle incoming connections\n+let count = 0\n+self.addEventListener('connect', function (e: MessageEvent) {\n+ const port = e.ports[0]\n+ import('./worker-dep').then((mod) => {\n+ por... | 2026-01-21T17:08:54 |
electron/electron | b90de7d07ec7db942ce400be0a7142145b2dab3a | 946030050608acad808adf4d3c5712f5c154ac15 | chore: bump chromium to 138.0.7160.0 (main) (#46915)
* chore: bump chromium in DEPS to 138.0.7158.0
* chore: bump chromium in DEPS to 138.0.7160.0
* 6509206: Move Keychain UI suppression code into apple_keychain.cc
https://chromium-review.googlesource.com/c/chromium/src/+/6509206
* 6489036: Fix DesktopDataControls... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7156.0',\n+ '138.0.7160.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-05-05T17:58:40 |
rust-lang/rust | eda328c6cfce47bb99d2daba946bf938dad8f78e | 62b9fa15e72e613c1e318e895b84bf593768f9db | delete incorrect test | [
{
"path": "tests/ui/borrowck/kindck-implicit-close-over-mut-var.rs",
"patch": "@@ -1,49 +0,0 @@\n-//@ run-pass\n-\n-#![allow(unused_must_use)]\n-#![allow(dead_code)]\n-use std::thread;\n-\n-fn user(_i: isize) {}\n-\n-fn foo() {\n- // Here, i is *copied* into the proc (heap closure).\n- // Requires all... | 2026-03-17T22:08:51 |
nodejs/node | 2894849284fd58f902f2066e6c134429c4c0fc0c | ec8c73d6ca6eb58adb1df7715da2f81e64c1fb1a | doc: fix missing link to the Error documentation in the `http` page
PR-URL: https://github.com/nodejs/node/pull/59080
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -2641,7 +2641,7 @@ will check whether `Content-Length` and the length of the body which has\n been transmitted are equal or not.\n \n Attempting to set a header field name or value that contains invalid characters\n-will result in a \\[`Error`]\\[] being thrown.\n+w... | 2025-08-27T10:40:48 |
facebook/react | 0cac32d60dd4482b27fe8a54dffbabceb22c6272 | 676f0879f315130309262ff3532707029f0288bb | [Fiber] Stash the entangled async action lane on currentEventTransitionLane (#33188)
When we're entangled with an async action lane we use that lane instead
of the currentEventTransitionLane. Conversely, if we start a new async
action lane we reuse the currentEventTransitionLane.
So they're basically supposed to be i... | [
{
"path": "packages/react-reconciler/src/ReactFiberRootScheduler.js",
"patch": "@@ -78,6 +78,7 @@ import {\n resetNestedUpdateFlag,\n syncNestedUpdateFlag,\n } from './ReactProfilerTimer';\n+import {peekEntangledActionLane} from './ReactFiberAsyncAction';\n \n // A linked list of all the roots with pend... | 2025-05-13T19:20:59 |
golang/go | 06412288cfd31ab365fe8ee6368742dffa759803 | 03f499ec4602500939a1ed3c540cbd5183c20ce9 | runtime: panic on AddCleanup with self pointer
For #75066
Change-Id: Ifd555586fb448e7510fed16372648bdd7ec0ab4a
Reviewed-on: https://go-review.googlesource.com/c/go/+/697535
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -84,7 +84,8 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// Check that arg is not equal to ptr.\n \targType := abi.TypeOf(arg)\n-\tif kind := argType.Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {\n+\tkind := argT... | 2025-08-20T00:00:29 |
vercel/next.js | c986bcccf166a89861bbaecd69823baf3e8a2b40 | 3fe7d63f857302d15e753a7a02753eff3fb1f91c | fix: preserve cache behavior for PPR fallback shells with root params (#88556)
When generating PPR fallback shells, a cache miss during warmup was
being treated as a dynamic hole, so the warmup render never filled new
cache entries. This caused root‑param fallback shells (e.g.
`/en/blog/[slug]`) to suspend even though... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -979,5 +979,6 @@\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s bytes of postponed state but only received %s bytes\",\n \"980\": \"Failed to load client middleware manifest\",\n- ... | 2026-01-21T16:45:07 |
rust-lang/rust | 7d82c5dab3760142380ef4477e9885673a45f7b0 | eaf4e7489b6ae3d4ba9a71b720b03b6d58e4f102 | Fix invalid add of duplicated call locations for the rustdoc scraped examples feature | [
{
"path": "src/librustdoc/scrape_examples.rs",
"patch": "@@ -3,7 +3,7 @@\n use std::fs;\n use std::path::PathBuf;\n \n-use rustc_data_structures::fx::FxIndexMap;\n+use rustc_data_structures::fx::{FxHashSet, FxIndexMap};\n use rustc_errors::DiagCtxtHandle;\n use rustc_hir as hir;\n use rustc_hir::intravisit:... | 2026-03-17T21:53:30 |
facebook/react | 997c7bc930304142b3af37bcb21599181124aeb4 | b94603b95504130aec72f61e02d7b66d48f33653 | [DevTools] Get source location from structured callsites in prepareStackTrace (#33143)
When we get the source location for "View source for this element" we
should be using the enclosing function of the callsite of the child. So
that we don't just point to some random line within the component.
This is similar to the... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -50,6 +50,7 @@ import {\n gt,\n gte,\n parseSourceFromComponentStack,\n+ parseSourceFromOwnerStack,\n serializeToString,\n } from 'react-devtools-shared/src/backend/utils';\n import {\n@@ -5805,15 +5806,13 @@ exp... | 2025-05-13T16:39:10 |
golang/go | 07b10e97d6552e16534aae51f140771a601ef385 | e96094402d55b6a104b642ce2adc76d3753843d9 | cmd/go/internal/modcmd: inject modfetch.Fetcher_ into DownloadModule
This commit continues the injection of the global Fetcher_ variable into
the various function calls that make use of it. The purpose is to
prepare for the eventual removal of the global Fetcher_ variable and
eliminate global state within the modfetc... | [
{
"path": "src/cmd/go/internal/modcmd/download.go",
"patch": "@@ -366,25 +366,25 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n // leaving the results (including any error) in m itself.\n func DownloadModule(ctx context.Context, m *ModuleJSON) error {\n \tvar err error\n-\t_,... | 2025-11-24T21:53:11 |
electron/electron | cb445b3bbd5b7638e7b6ff9f16f668171d94c3a7 | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | chore: bump node to v22.15.0 (main) (#46742)
* chore: bump node in DEPS to v22.15.0
* inspector: fix GN build
https://github.com/nodejs/node/pull/56798
* test: search cctest files
https://github.com/nodejs/node/pull/56791
* crypto: fix missing OPENSSL_NO_ENGINE guard
https://github.com/nodejs/node/pull/57012
* ... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7156.0',\n 'node_version':\n- 'v22.14.0',\n+ 'v22.15.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-05-05T08:23:17 |
nodejs/node | 6722642e3d009a4d57f00357978f7879af82d403 | 65858596abb8010ba7403c153112fc8de9d916f0 | sea: implement execArgvExtension
This implements the execArgvExtension configuration field for SEA,
which takes one of three string values to specify whether and how
execution arguments can be extended for the SEA at run time:
* `"none"`: No extension is allowed. Only the arguments specified
in `execArgv` will be u... | [
{
"path": "doc/api/single-executable-applications.md",
"patch": "@@ -180,6 +180,7 @@ The configuration currently reads the following top-level fields:\n \"useSnapshot\": false, // Default: false\n \"useCodeCache\": true, // Default: false\n \"execArgv\": [\"--no-warnings\", \"--max-old-space-size=409... | 2025-08-25T11:35:56 |
vercel/next.js | a3500c3227de0bda8e34c2a347047e88a524d9da | bed512a381250493a2e2e0f9185c69960c713fd9 | [test] Fix deploy test of `cache-components.server-action.test.ts` (#88854)
When deployed, the sentinels where showing `at runtime` instead of `at
buildtime`. There are two reasons for this:
1. The page sentinel was accidentally rendered in a client component,
which causes a hydration mismatch, and the value toggling... | [
{
"path": "test/e2e/app-dir/cache-components/app/server-action-inline/form.tsx",
"patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import { ReactNode, useActionState } from 'react'\n-import { getSentinelValue } from '../getSentinelValue'\n \n export function Form({ action }: { action: () => Promise<ReactNode> }... | 2026-01-21T16:18:44 |
rust-lang/rust | 4845f7842228c03910b3bf5d1a4221eea4e14f5d | 384f363b7023244df33bef7eb8070a334eae9b48 | Reword the incremental finalize diagnostic
Remove the confusing word "error". The diagnostic is already prefixed
with a level when it is displayed, so this is redundant and possibly
confusing ("warning: error ...").
Add some help text summarizing the impact of what happened: the next
build won't be able to reuse wor... | [
{
"path": "compiler/rustc_incremental/src/errors.rs",
"patch": "@@ -192,7 +192,8 @@ pub(crate) struct DeleteFull<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"error finalizing incremental compilation session directory `{$path}`: {$err}\")]\n+#[diag(\"did not finalize incremental compilation session direct... | 2026-03-17T19:59:08 |
facebook/react | 2bcf06b69254cad6f7e702bf7d65c4f30478668c | 5d04d73274a884ed53106677d56dd837ae668c45 | [ReactFlightWebpackPlugin] Add support for .mjs file extension (#33028)
## Summary
Our builds generate files with a `.mjs` file extension. These are
currently filtered out by `ReactFlightWebpackPlugin` so I am updating it
to support this file extension.
This fixes https://github.com/facebook/react/issues/33155
## Ho... | [
{
"path": "packages/react-server-dom-webpack/src/ReactFlightWebpackPlugin.js",
"patch": "@@ -277,8 +277,14 @@ export default class ReactFlightWebpackPlugin {\n chunkGroup.chunks.forEach(function (c) {\n // eslint-disable-next-line no-for-of-loops/no-for-of-loops\n for... | 2025-05-13T01:16:15 |
golang/go | 272df5f6ba94018dac2b7d384e92115b795fe241 | 1768cb40b838a36f9bdcbe5381f2e086483f22f5 | crypto/internal/fips140/aes/gcm: add more GCM nonce modes
First, this adds a GCM mode for QUIC, and a generic TLS 1.3/QUIC-like
XOR'd counter mode. QUIC constructs nonces exactly like TLS 1.3, but the
counter does not reset to zero on a key update, so the mask must be
provided explicitly (or we will panic well before ... | [
{
"path": "src/crypto/cipher/gcm_fips140v2.0_test.go",
"patch": "@@ -0,0 +1,91 @@\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+//go:build !fips140v1.0\n+\n+package cipher_test\n+\n+im... | 2025-11-24T12:35:15 |
electron/electron | 91626a8eacc65aadcd4ba3e1f06994137712cbd1 | 5390728cb79059bd53483f16cc5389287c48e85c | fix: xdg portal version detection for file dialogs on linux (#46905)
* chore: use dbus thread for portal version detection
* Update shell/browser/ui/file_dialog_linux_portal.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "filenames.gni",
"patch": "@@ -35,6 +35,7 @@ filenames = {\n \"shell/browser/relauncher_linux.cc\",\n \"shell/browser/ui/electron_desktop_window_tree_host_linux.cc\",\n \"shell/browser/ui/file_dialog_linux.cc\",\n+ \"shell/browser/ui/file_dialog_linux_portal.cc\",\n \"shell/brow... | 2025-05-05T07:57:20 |
nodejs/node | 323f19c18fea06b9234a0c945394447b077fe565 | 15ede933c319a8cbd7723488862c570ea0424d1c | doc: clarify experimental platform vulnerability policy
Adds a new section to the threat model specifying that security
vulnerabilities affecting only experimental platforms will not be
accepted as valid security issues and will be treated as normal bugs.
This clarifies that experimental OS/hardware combinations do n... | [
{
"path": "SECURITY.md",
"patch": "@@ -102,6 +102,22 @@ vulnerability in the context of the Node.js threat model. In other\n words, it cannot assume that a trusted element (such as the operating\n system) has been compromised.\n \n+### Experimental platforms\n+\n+Node.js maintains a tier-based support syste... | 2025-08-25T10:35:13 |
vercel/next.js | 71f9bda3cda291eba9aece9ead1708d3c9de349b | d5d760540d2ff2630d5275a30577e51cac8f2620 | [ci] Fix Rspack/Turbopack test manifest generation (#88845)
The recent change to always run all tests without aborting on failure
(#88435) inadvertently broke manifest generation. Previously, test
output was emitted for all tests when `NEXT_TEST_CONTINUE_ON_ERROR` was
set, but that variable was removed. Now test outpu... | [
{
"path": ".github/workflows/integration_tests_reusable.yml",
"patch": "@@ -94,6 +94,7 @@ jobs:\n export NEXT_TEST_MODE=${{\n inputs.test_type == 'development' && 'dev' || 'start'\n }}\n+ export NEXT_TEST_EMIT_ALL_OUTPUT=1\n \n ${{ inputs.run_before_test }}\n \n@@ -1... | 2026-01-21T15:11:58 |
rust-lang/rust | 36381555bb78f41f178032dbabbf9ebd602c3530 | f3654324e6da3fd388035418c9db1912a0d8c4cf | Put statics in .data section in raw-dylib for ELF
This fixes issues with statics when using static relocation model and
linking with GNU ld. Other linkers don't work yet. | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link/raw_dylib.rs",
"patch": "@@ -296,6 +296,8 @@ fn create_elf_raw_dylib_stub(sess: &Session, soname: &str, symbols: &[DllImport]\n stub.reserve_shstrtab_section_index();\n let text_section_name = stub.add_section_name(\".text\".as_bytes());\n let ... | 2026-03-13T17:54:40 |
facebook/react | 5d04d73274a884ed53106677d56dd837ae668c45 | 3820740a7fbfc3b27a5127b43bdad44382ff3ce0 | Add eager alternate.stateNode cleanup (#33161)
This is a fix for a problem where React retains shadow nodes longer than
it needs to. The behaviour is shown in React Native test:
https://github.com/facebook/react-native/blob/main/packages/react-native/src/private/__tests__/utilities/__tests__/ShadowNodeReferenceCounter... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -59,6 +59,7 @@ import {\n enableComponentPerformanceTrack,\n enableViewTransition,\n enableFragmentRefs,\n+ enableEagerAlternateStateNodeCleanup,\n } from 'shared/ReactFeatureFlags';\n import {\n FunctionComponent,\n@@ ... | 2025-05-12T16:39:20 |
golang/go | 1768cb40b838a36f9bdcbe5381f2e086483f22f5 | a9093067ee0fda40421bd1d4fad893dfa6c99fd5 | crypto/tls: add SecP256r1/SecP384r1MLKEM1024 hybrid post-quantum key exchanges
Fixes #71206
Change-Id: If3cf75261c56828b87ae6805bd2913f56a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/722140
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: R... | [
{
"path": "api/next/71206.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg crypto/tls, const SecP256r1MLKEM768 = 4587 #71206\n+pkg crypto/tls, const SecP256r1MLKEM768 CurveID #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 = 4589 #71206\n+pkg crypto/tls, const SecP384r1MLKEM1024 CurveID #71206",
"additions": 4,
... | 2025-11-19T16:32:42 |
electron/electron | 074b9344b5c79aecc93f74efbb8dc0e773426983 | 3faddd5ae2ae03be8ba037c77989630576bb8167 | fix: prevent log files being written to current directory on Windows (#44413)
* fix: prevent log files being written to current directory on Windows
* Update shell/common/logging.cc
Co-authored-by: Robo <hop2deep@gmail.com>
* chore: add test
* chore: update includes
Refs https://chromium-review.googlesource.com/c... | [
{
"path": "shell/common/api/electron_api_testing.cc",
"patch": "@@ -2,8 +2,10 @@\n // Use of this source code is governed by the MIT license that can be\n // found in the LICENSE file.\n \n+#include \"base/command_line.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/logging.h\"\n+#include \"content... | 2025-05-02T21:27:29 |
vercel/next.js | d5d760540d2ff2630d5275a30577e51cac8f2620 | 1bdb2e20052281c614a8bfef08a6ebb66a546129 | Fix deployment test due to data-dpl-id attribute (#88846) | [
{
"path": "test/e2e/favicon-short-circuit/favicon-short-circuit.test.ts",
"patch": "@@ -28,9 +28,9 @@ describe('favicon-short-circuit', () => {\n expect(res.status).toBe(404)\n expect(res.headers.get('content-type')).toBe('text/html; charset=utf-8')\n \n- // Expect we got the right body.\n+... | 2026-01-21T11:29:36 |
nodejs/node | 62c62056ca8b987a2b11fe71a18ab1deb0f4611a | f86b652bc8beec4aea778bfc621781264dfb6c6a | benchmark: calibrate length of util.diff
500 + 1000 already cover the curve. 2000 doesn’t add
new qualitative insight — it just extends the same curve
further down (another ~3–4× slowdown).
According to https://github.com/nodejs/performance/issues/186
this benchmark takes one minute to conclude a single run.
This sho... | [
{
"path": "benchmark/util/diff.js",
"patch": "@@ -5,7 +5,7 @@ const common = require('../common');\n \n const bench = common.createBenchmark(main, {\n n: [1e3],\n- length: [1e3, 2e3],\n+ length: [500, 1000],\n scenario: ['identical', 'small-diff', 'medium-diff', 'large-diff'],\n });\n ",
"addition... | 2025-08-24T20:57:38 |
rust-lang/rust | c679e3daf2166e2bcd56e8acc2cacfe6dc9757a8 | ec03f4ef294d3a75ed12b36662d1a40441b0a726 | Simplify tests and fix test tidy issue | [
{
"path": "tests/assembly-llvm/sanitizer/hwasan-vs-khwasan.rs",
"patch": "@@ -4,7 +4,9 @@\n //@ assembly-output: emit-asm\n //@ revisions: hwasan khwasan\n //@[hwasan] compile-flags: --target aarch64-unknown-linux-gnu -Zsanitizer=hwaddress\n+//@[hwasan] needs-llvm-components: aarch64\n //@[khwasan] compile-... | 2026-03-17T07:49:28 |
facebook/react | 3820740a7fbfc3b27a5127b43bdad44382ff3ce0 | 5069e18060e00d7c07b2b04ebc8a3fa21e2d810a | [compiler][entrypoint] Fix edgecases for noEmit and opt-outs (#33148)
Title
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33148).
* #33149
* __->__ #33148 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts",
"patch": "@@ -59,6 +59,7 @@ type ProgramContextOptions = {\n opts: PluginOptions;\n filename: string | null;\n code: string | null;\n+ hasModuleScopeOptOut: boolean;\n };\n export class ProgramContext {\n /**\n@@ -... | 2025-05-09T17:37:49 |
nodejs/node | f86b652bc8beec4aea778bfc621781264dfb6c6a | 8692e601cc8a6f392449c70ee3a77082aad26e79 | src: enforce assumptions in FIXED_ONE_BYTE_STRING
These functions are both meant to be used with a null-terminated and
thus non-empty sequence of `char`s. However, there is nothing stopping
call sites from passing zero-length sequences, which would certainly not
be null-terminated and also would cause an underflow in ... | [
{
"path": "src/util.h",
"patch": "@@ -346,17 +346,19 @@ inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n std::string_view str);\n \n // Used to be a macro, hence the uppercase name.\n-template <int N>\n-inline v8::Local<v8::String> FIXED_ONE_BYTE_... | 2025-08-24T11:07:37 |
vercel/next.js | ca37db9d6d07d2757e69f4588c52eb23e065a9fe | d3de9bce9bd9e4d03673e3b13ec1dc690bf63a0c | Fix `revalidatePath` with params and trailing slash when deployed (#88623) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -978,5 +978,6 @@\n \"977\": \"maxPostponedStateSize must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s by... | 2026-01-21T07:22:00 |
golang/go | 86cd9b5c905d29b18ddc3b93dff60e12143cc1c8 | 1265ebfe274c31713bd5b72f570b36dbf0005e63 | [dev.simd] simd, cmd/compile: add float -> int conversions
This CL also fixed some documentation errors in existing APIs.
Go defaults MXCSR to mask exceptions, the documentation is based on this
fact.
Change-Id: I745083b82b4bef93126a4b4e41f8698956963704
Reviewed-on: https://go-review.googlesource.com/c/go/+/724320
L... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -45,9 +45,25 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VCVTTPS2DQ128,\n \t\tssa.OpAMD64VCVTTPS2DQ256,\n \t\tssa.OpAMD64VCVTTPS2DQ512,\n-\t\tssa.OpAMD64VCVTPS2UDQ128,\n-\t\tssa.OpAMD64VCVTPS2UDQ256,\n-\t\... | 2025-11-25T17:27:23 |
facebook/react | 38ef6550a88f7744f5dcd4a3de7af6f13a540be5 | b629a865fb18b899d251bf5c3c5ca2580d222720 | [compiler][playground][tests] Standardize more pragmas (#33146)
(Almost) all pragmas are now one of the following:
- `@...TestOnly`: custom pragma for test fixtures
- `@<configName>` | `@<configName>:true`: enables with either true or a
default enabled value
- `@<configName>:<json value>` | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt",
"patch": "@@ -1,5 +1,5 @@\n import { c as _c } from \"react/compiler-runtime\"; // \n- @compilationMode(all)\n+ @compilationMode:\"all\"\n function nonReactFn() {\n const $ = _c(1);\... | 2025-05-08T15:26:53 |
nodejs/node | 52f616d42f9bbc83cc29d0fbdbeea9d5f26e0f85 | 589ef79bf8949d1839cf31dce66e20ccb69c82f0 | test_runner: do not error when getting `fullName` of root context
PR-URL: https://github.com/nodejs/node/pull/59377
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -1533,6 +1533,8 @@ class Suite extends Test {\n }\n \n function getFullName(test) {\n+ if (test === test.root) return test.name;\n+\n let fullName = test.name;\n \n for (let t = test.parent; t !== t.root; t = t.parent) {",
"additions": 2,
... | 2025-08-23T19:40:58 |
golang/go | 6954be0baacd0f05edfd3015cc3ecfbf237b3967 | 8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8 | internal/strconv: delete ftoaryu
CL 700075 made this dead code.
Benchmarks below for CL 700075, testing Dragonbox vs the old Ryu being deleted.
The "Fixed" benchmarks are unchanged, which gives a sense of the noise level.
benchmark \ host linux-amd64 s7 linux-arm64 local linux-386 s7:GOA... | [
{
"path": "src/internal/strconv/ftoaryu.go",
"patch": "@@ -1,307 +0,0 @@\n-// Copyright 2021 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 strconv\n-\n-import \"math/bits\"\n-\n-// binary to decim... | 2025-11-24T19:03:34 |
nodejs/node | fb07edc82faa6b2bd70d55bf5bf242c75cc112f2 | 6fd67ec6e3ccbdfcfa0300b9b742040a0607a4bc | test: use mustSucceed in test-repl-tab-complete-import
Refactor test/parallel/test-repl-tab-complete-import.js to use
mustSucceed in places where no error is expected in the callback. This
clarifies the intent of the tests and improves assertion accuracy.
Refs: https://github.com/nodejs/node/pull/59204
PR-URL: https:... | [
{
"path": "test/parallel/test-repl-tab-complete-import.js",
"patch": "@@ -32,8 +32,7 @@ const testMe = repl.start({\n testMe._domain.on('error', assert.ifError);\n \n // Tab complete provides built in libs for import()\n-testMe.complete('import(\\'', common.mustCall((error, data) => {\n- assert.strictEqual... | 2025-08-23T09:28:02 |
facebook/react | fbe7bc21b9aa00afa230132b3f7eee6d2b5c94a7 | 9518f1185621aecb99fd72385cdb137c6e8bd8fe | [compiler][be] repro edge cases for noEmit and module opt-outs (#33144)
see test fixtures
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33144).
* #33146
* #33145
* __->__ #33144 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/repro-bailout-nopanic-shouldnt-outline.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+// @panicThreshold(none)\n+'use no memo';\n+\n+function Foo() {\n+ return <button onClick={() => alert('h... | 2025-05-08T15:18:16 |
golang/go | 8d6d14f5d68c6011eb0ae1c9fac6857475aae7a8 | 4ca048cc326bf310f873315dfb1e2644ec243299 | compress/flate: move big non-pointer arrays to end of compressor
The compressor type is fairly large: 656616 bytes on amd64.
Before this patch, it had fields of slice and interface type
near the end of the struct. As those types always contain pointers,
the ptrBytes value in the type descriptor was quite large.
That f... | [
{
"path": "src/compress/flate/deflate.go",
"patch": "@@ -89,16 +89,6 @@ type compressor struct {\n \tstep func(*compressor) // process window\n \tbestSpeed *deflateFast // Encoder for BestSpeed\n \n-\t// Input hash chains\n-\t// hashHead[hashValue] contains the largest inpu... | 2025-09-29T04:38:53 |
nodejs/node | 7178e9141ae83a28e5742c38594a1068314a88bf | 3b4f9b26b1e4f05257949627b478f9223611961d | crypto: fix subtle.getPublicKey error for secret type key inputs
PR-URL: https://github.com/nodejs/node/pull/59558
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "lib/internal/crypto/webcrypto.js",
"patch": "@@ -1090,7 +1090,8 @@ async function getPublicKey(key, keyUsages) {\n });\n \n if (key[kKeyType] !== 'private')\n- throw lazyDOMException('key must be a private key', 'InvalidAccessError');\n+ throw lazyDOMException('key must be a private key... | 2025-08-22T15:56:56 |
electron/electron | 2b07e6450c80a7a3a11f3f40dadd4ebe2361442b | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | chore: bump chromium to 138.0.7154.0 (main) (#46872)
* chore: bump chromium in DEPS to 138.0.7152.0
* chore: update patches
* chore: bump chromium in DEPS to 138.0.7154.0
* chore: update patches
* ozone/wayland: Fix bookmark dropdown right click context menu
https://chromium-review.googlesource.com/c/chromium/src... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7151.0',\n+ '138.0.7154.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-05-02T04:53:40 |
golang/go | 113eb42efca8e14355f57c89cd38d31616728a27 | 6e5cfe94b0635e07466a8b8ebeacae4600d273d7 | strconv: replace Ryu ftoa with Dragonbox
Dragonbox is a faster ftoa algorithm that provides the same guarantees
as Ryu: round-trip conversion, shortest length, and correct rounding.
Dragonbox only supports shortest-precision conversion, so we continue to
use Ryu-printf for fixed precision.
The new implementation has ... | [
{
"path": "src/internal/strconv/ftoa.go",
"patch": "@@ -86,6 +86,7 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \tneg := bits>>(flt.expbits+flt.mantbits) != 0\n \texp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)\n \tmant := bits & (uint64(1)<<flt.mantbits - 1)\n+... | 2025-11-20T23:56:29 |
electron/electron | 63114e2b8ead2c20fadfd1c8ea6f32e7607e6044 | df4564dc39c5c874915ed6f441658f721bb06fff | fix: revert macOS content protection logic refactor (#46886)
Revert "refactor: use upstream content protection logic on macOS (#46813)"
This reverts commit 34adb976b632157379de34cc1a71bdf6cc089714. | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -26,7 +26,6 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/base/hit_test.h\"\n #include \"ui/compositor/compositor.h\"\n-#include \"ui/views/widget/native_widget_private.h\"\n #include \"ui/views/widget/widget.h\"\n \n #if !BUILDFLA... | 2025-05-01T20:49:55 |
nodejs/node | 3b4f9b26b1e4f05257949627b478f9223611961d | 3c1521cfa00c1ddfff344cbf4225ac5132d36023 | module: allow overriding linked requests for a ModuleWrap
This allows overriding linked requests for a `ModuleWrap`. The
`statusOverride` in `vm.SourceTextModule` could call `moduleWrap.link`
a second time when `statusOverride` of `linking` is set to undefined.
Overriding of linked requests should be no harm but bett... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -604,23 +604,13 @@ void ModuleWrap::GetModuleRequests(const FunctionCallbackInfo<Value>& args) {\n \n // moduleWrap.link(moduleWraps)\n void ModuleWrap::Link(const FunctionCallbackInfo<Value>& args) {\n- Realm* realm = Realm::GetCurrent(args);\n Isolate* isola... | 2025-08-22T12:57:07 |
vercel/next.js | 6138452203337a72d79decbe26d7be0bd36233f4 | d2ea7d32061c59cff57704cda4502ac794e71910 | [test]: add ability to run test-deploy with pre-existing deployment (#88829)
When digging into failing deployment tests, I often will re-run the test
itself without wanting to change anything about Next.js or the test
application, especially when I suspect a logic bug in the test itself or
need to figure out what's ca... | [
{
"path": "contributing/core/testing.md",
"patch": "@@ -92,6 +92,8 @@ these can be leveraged by prefixing the `pnpm test` command.\n it can be used when not using `pnpm test-dev` or `pnpm test-start` directly.\n Valid test modes can be seen here:\n https://github.com/vercel/next.js/blob/aa664868c102dd... | 2026-01-20T22:40:49 |
golang/go | 6e5cfe94b0635e07466a8b8ebeacae4600d273d7 | 2c7c62b97235c376205653200c2bd14ac03baa41 | crypto: fix dead links and correct SHA-512 algorithm comment
Change-Id: I71d63b0b78a9fc4895574f6df465e22c9585e77c
Reviewed-on: https://go-review.googlesource.com/c/go/+/710196
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped... | [
{
"path": "src/crypto/internal/fips140/sha256/_asm/sha256block_amd64_avx2.go",
"patch": "@@ -15,7 +15,7 @@ import (\n // To find it, surf to http://www.intel.com/p/en_US/embedded\n // and search for that title.\n // AVX2 version by Intel, same algorithm as code in Linux kernel:\n-// https://github.com/torva... | 2025-10-08T18:13:56 |
electron/electron | 2734088d201199a5ede57463715729f517d394fc | 4641bc961998f412a8c3ea450457f0a97d344785 | fix: fix and enable `accessibilitySupportEnabled` tests (#46825)
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (excluding Linux)" section into the
"window states" section.
* fix: nested it() calls in visibleOnAllWorkspaces spe... | [
{
"path": "spec/api-app-spec.ts",
"patch": "@@ -979,22 +979,22 @@ describe('app module', () => {\n });\n \n ifdescribe(process.platform !== 'linux')('accessibilitySupportEnabled property', () => {\n- it('with properties', () => {\n- it('can set accessibility support enabled', () => {\n- e... | 2025-04-29T04:52:26 |
nodejs/node | a73a9a028b3cf05e74fbc42a884ac40ac56c6590 | d30090b427af22d6244f59d6e24260fdcf036727 | doc: fix typos in `environment_variables.md`
PR-URL: https://github.com/nodejs/node/pull/59536
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/environment_variables.md",
"patch": "@@ -96,10 +96,10 @@ For example:\n MY_VAR_B = ' my variable b '\n ```\n \n-will be treaded identically to:\n+will be treated identically to:\n \n ```text\n-MY_VAR_A = my variable\n+MY_VAR_A = my variable a\n MY_VAR_B = ' my variable b ... | 2025-08-21T14:55:34 |
golang/go | 657b331ff5da9b02bd98b489ff144a03c6651bae | bd9222b525b44d91941fc4d179b467103817d463 | net/url: fix example of Values.Encode
Calling url.Values.Encode generates a query string with the
values sorted by key. However, in the example in the documentation
this behaviour is not reflected. This change corrects this.
Change-Id: Id95a5d79b57dc20c3bff1f0c6975c76dcd8412b1
Reviewed-on: https://go-review.googlesou... | [
{
"path": "src/net/url/example_test.go",
"patch": "@@ -58,11 +58,12 @@ func ExampleValues() {\n \tv.Add(\"friend\", \"Jess\")\n \tv.Add(\"friend\", \"Sarah\")\n \tv.Add(\"friend\", \"Zoe\")\n-\t// v.Encode() == \"name=Ava&friend=Jess&friend=Sarah&friend=Zoe\"\n+\tfmt.Println(v.Encode())\n \tfmt.Println(v.Ge... | 2025-11-24T19:52:22 |
vercel/next.js | 03a1815a533c849cccf25836a45e5e52dbe18467 | eb14325ed44c70671ac4d36c2fe2cb9cef67ca34 | Inject `<html data-dpl-id>` and don't inline it into JS anymore (#88761)
We don't inline `process.env.NEXT_DEPLOYMENT_ID` anymore into browser chunks, and instead read it from `<html data-dpl-id` attribute at runtime.
Closes PACK-6538
- [x] ~~Causes a hydration error at the moment.~~ Solved by removing the attribute... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -177,12 +177,10 @@ export function getDefineEnv({\n : isClient\n ? isTurbopack\n ? {\n+ // This is set at runtime by packages/next/src/client/register-deployment-id-global.ts\n 'process.env.NEX... | 2026-01-20T16:13:43 |
facebook/react | 4a702865dd0c5849c1b454091560c3ef26121611 | 0ff1d13b8055c801d8b9b6779958c09fd0dc63e0 | [Flight] Encode enclosing line/column numbers and use it to align the fake function (#33136)
Stacked on #33135.
This encodes the line/column of the enclosing function as part of the
stack traces. When that information is available.
I adjusted the fake function code generation so that the beginning of
the arrow funct... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -2226,6 +2226,8 @@ function createFakeFunction<T>(\n sourceMap: null | string,\n line: number,\n col: number,\n+ enclosingLine: number,\n+ enclosingCol: number,\n environmentName: string,\n ): FakeFunction<T> {\n // This cr... | 2025-05-07T16:34:55 |
rust-lang/rust | 801eafd7418b732e6df24366c6f576b648f77025 | 3f08f6759a6583666cf5075e7b0ffafc20f19a50 | Suggest `if let PAT == expr` on `let PAT = expr else` with non-structural type const
```
error: constant of non-structural type `partial_eq::S` in a pattern
--> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:22:18
|
LL | struct S;
| -------- `partial_eq::S` must be annotated with `#[de... | [
{
"path": "compiler/rustc_mir_build/src/errors.rs",
"patch": "@@ -1144,6 +1144,24 @@ pub(crate) enum SuggestEq<'tcx> {\n ty: Ty<'tcx>,\n manual_partialeq_impl: bool,\n },\n+ #[multipart_suggestion(\n+ \"{$manual_partialeq_impl ->\n+ [false] if `{$ty}` manually implem... | 2026-03-17T18:17:48 |
electron/electron | 4641bc961998f412a8c3ea450457f0a97d344785 | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | fix: fullscreen fillet / recovery is incorrect (#46641)
* fix: fullscreen fillet / recovery is incorrect
Signed-off-by: ZOY\zoy-l <zoy-l@outlook.com>
* fix: maintain frameless consistency on windows 11
* fix: maintain frameless consistency on windows 11
* chore: modify the comments
---------
Signed-off-by: ZOY\z... | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -375,14 +375,17 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n frame_style |= WS_MINIMIZEBOX;\n if (maximizable_)\n frame_style |= WS_MAXIMIZEBOX;\n+\n // We should not show a frame for trans... | 2025-04-28T20:54:08 |
golang/go | bd9222b525b44d91941fc4d179b467103817d463 | e3088d6eb8ff0d63edc3452cbed827cb67231182 | crypto/sha3: reduce cSHAKE allocations
Consider a hypothetical SumCSHAKE256 function:
func SumCSHAKE256(N, S, data []byte, length int) []byte {
out := make([]byte, 64)
return sumCSHAKE256(out, N, S, data, length)
}
func sumCSHAKE256(out, N, S, data []byte, length int) []byte {
if len(out) < length {
out ... | [
{
"path": "src/crypto/internal/fips140/sha3/shake.go",
"patch": "@@ -23,14 +23,14 @@ type SHAKE struct {\n \tinitBlock []byte\n }\n \n-func bytepad(data []byte, rate int) []byte {\n-\tout := make([]byte, 0, 9+len(data)+rate-1)\n-\tout = append(out, leftEncode(uint64(rate))...)\n-\tout = append(out, data...)... | 2024-12-15T01:38:43 |
vercel/next.js | eb14325ed44c70671ac4d36c2fe2cb9cef67ca34 | 689f6fe38eb9bd62fc8471c03af436680a3d0567 | Turbopack: remove deployment id suffix from client reference manifest chunks (#88741)
Closes PACK-6539
When `experimental.runtimeServerDeploymentId` is enabled, read the `process.env.NEXT_DEPLOYMENT_ID` and append to the chunks when evaluating the `client-reference-manifest.js`
Originally, I tried to do it after the... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -968,6 +968,8 @@ pub struct ExperimentalConfig {\n cache_components: Option<bool>,\n use_cache: Option<bool>,\n root_params: Option<bool>,\n+ runtime_server_deployment_id: Option<bool>,\n+\n // ---\n // UNSUPPORTED\n //... | 2026-01-20T15:11:24 |
nodejs/node | d30090b427af22d6244f59d6e24260fdcf036727 | 9d744b5b63cae4e377041432c2e19ce384703ef2 | crypto: return cached copies from CryptoKey algorithm and usages getters
Fixes: https://github.com/nodejs/node/issues/59534
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59535
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
R... | [
{
"path": "lib/internal/crypto/keys.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ ArrayFrom,\n ArrayPrototypeSlice,\n ObjectDefineProperties,\n ObjectDefineProperty,\n@@ -81,6 +82,8 @@ const kAlgorithm = Symbol('kAlgorithm');\n const kExtractable = Symbol('kExtractable');\n const kKe... | 2025-08-19T12:02:53 |
facebook/react | 53c9f81049b4440a02b5ed3edb128516821c0279 | e5a8de81e57181692d33ce916dfd6aa23638ec92 | [DevTools] Use Popover API for TraceUpdates highlighting (#32614)
## Summary
When using React DevTools to highlight component updates, the highlights
would sometimes appear behind elements that use the browser's
[top-layer](https://developer.mozilla.org/en-US/docs/Glossary/Top_layer)
(such as `<dialog>` elements or c... | [
{
"path": "packages/react-devtools-extensions/chrome/manifest.json",
"patch": "@@ -4,7 +4,7 @@\n \"description\": \"Adds React debugging tools to the Chrome Developer Tools.\",\n \"version\": \"6.1.1\",\n \"version_name\": \"6.1.1\",\n- \"minimum_chrome_version\": \"102\",\n+ \"minimum_chrome_versio... | 2025-05-07T14:48:17 |
rust-lang/rust | 3f08f6759a6583666cf5075e7b0ffafc20f19a50 | ec15ca96ff2a5b733ab142ecc3744daed751c440 | Suggest using equality comparison instead of pattern matching on non-strutural constant in pattern
```
error: constant of non-structural type `partial_eq::S` in a pattern
--> $DIR/suggest_equality_comparison_instead_of_pattern_matching.rs:16:18
|
LL | struct S;
| -------- `partial_eq::S` must be annota... | [
{
"path": "compiler/rustc_mir_build/src/errors.rs",
"patch": "@@ -1053,17 +1053,97 @@ pub(crate) struct TypeNotStructural<'tcx> {\n #[primary_span]\n #[label(\"constant of non-structural type\")]\n pub(crate) span: Span,\n- #[label(\"`{$ty}` must be annotated with `#[derive(PartialEq)]` to be... | 2026-03-17T17:54:01 |
electron/electron | 3f3c297c7a399597a5f22d14fe7ce03d97e7b10a | 062d3a616881309bbfb20556106980482685e905 | fix: enable some tests that were accidentally disabled (#46816)
* test: add platform test on visibleOnAllWorkspaces tests
visibleOnAllWorkspaces is not supported on Windows
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window states (exclu... | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -398,7 +398,7 @@ A `View` property for the content view of the window.\n \n A `string` (optional) property that is equal to the `tabbingIdentifier` passed to the `BrowserWindow` constructor or `undefined` if none was set.\n \n-#### `win.autoHideMenuBar`\n+##... | 2025-04-28T17:32:57 |
golang/go | e3088d6eb8ff0d63edc3452cbed827cb67231182 | a5ebc6b67c1e397ab74abadf20a7f290cf28949e | crypto/hpke: expose crypto/internal/hpke
Fixes #75300
Change-Id: I6a83e0d040dba3366819d2afff704f886a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/723560
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Auto-Submit: Filippo Valsorda <filippo@golang.o... | [
{
"path": "api/next/75300.txt",
"patch": "@@ -10,3 +10,54 @@ pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error)\n pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300\n pkg crypto/mlkem, method (*DecapsulationKey1024) Encapsulator() crypto.Encapsulator #75... | 2025-11-22T22:03:14 |
vercel/next.js | e5926d3d1efa24563c819f7473e6425e2cb5547e | f1908dad17e915c544fdad1d88cb8794f05034f7 | Fix buildManifest.js deployment tests (#88806)
When `NEXT_DEPLOYMENT_ID` is set (and thus skew protection is enabled), then these pages router manifests are actually on a different path (so that the output paths doesn't change with the build id anymore)
Fixup for https://github.com/vercel/next.js/pull/88641 | [
{
"path": "test/e2e/invalid-static-asset-404-app/invalid-static-asset-404-app-asset-prefix.test.ts",
"patch": "@@ -1,17 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('invalid-static-asset-404-app-asset-prefix', () => {\n- const { next, isNextDev } = nextTestSetup({\n+ const { next, is... | 2026-01-20T14:00:17 |
nodejs/node | 9d744b5b63cae4e377041432c2e19ce384703ef2 | 7a47cbf4c52bec8cedf3933010747136c7468d5e | crypto: use CryptoKey internal slots in Web Cryptography
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59535
Fixes: https://github.com/nodejs/node/issues/59534
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rafa... | [
{
"path": "lib/internal/crypto/aes.js",
"patch": "@@ -47,6 +47,7 @@ const {\n InternalCryptoKey,\n SecretKeyObject,\n createSecretKey,\n+ kAlgorithm,\n } = require('internal/crypto/keys');\n \n const {\n@@ -108,7 +109,7 @@ function asyncAesCtrCipher(mode, key, data, algorithm) {\n mode,\n key... | 2025-08-19T12:02:15 |
facebook/react | 587cb8f8967866139bbfdbae3f519cb37e68a054 | 79586c7eb626c6b9362c308a54c9ee5b66e640e5 | [Fiber] Replay onChange Events if input/textarea/select has changed before hydration (#33129)
This fixes a long standing issue that controlled inputs gets out of sync
with the browser state if it's changed before we hydrate.
This resolves the issue by replaying the change events (click, input and
change) if the value... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -49,7 +49,6 @@ import {\n } from './ReactDOMTextarea';\n import {setSrcObject} from './ReactDOMSrcObject';\n import {validateTextNesting} from './validateDOMNesting';\n-import {track} from './inputValueTracking';\n import ... | 2025-05-06T04:10:05 |
golang/go | e8fdfeb72b0468b645f256bcaf46570f866a54fd | 12d437c09a2ea871333547c8ac3ea536f433891b | reflect: add iterator equivalents for NumField, NumIn, NumOut and NumMethod
The new methods are Type.Fields, Type.Methods, Type.Ins, Type.Outs,
Value.Fields and Value.Methods.
These methods have been introduced into the reflect package (as well
as tests) replacing three-clause for loops where possible.
Fixes #66631
... | [
{
"path": "api/next/66631.txt",
"patch": "@@ -0,0 +1,6 @@\n+pkg reflect, type Type interface, Fields() iter.Seq[StructField] #66631\n+pkg reflect, type Type interface, Methods() iter.Seq[Method] #66631\n+pkg reflect, type Type interface, Ins() iter.Seq[Type] #66631\n+pkg reflect, type Type interface, Outs()... | 2025-11-19T21:18:39 |
vercel/next.js | b58b1dc901a2deed30e6861e0675352c92dd925e | a77fd58c963ee134522b5818c8c3587013e1f66a | Use rewritten pathname for implicit cache tags (#88732)
When a page is accessed via a rewrite, use the destination path (not the source path) when computing implicit tags. This ensures that calling `revalidatePath('/dest')` correctly invalidates cache entries for pages rewritten to that destination.
Fixes `'use cac... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -2017,9 +2017,22 @@ async function renderToHTMLOrFlightImpl(\n \n const isPossibleActionRequest = getIsPossibleServerAction(req)\n \n+ // For implicit tags, we need to use the rewritten pathname (if a rewrite\n+ // occurred) ra... | 2026-01-19T20:50:37 |
electron/electron | 062d3a616881309bbfb20556106980482685e905 | f2240e07f0fb606ae111a4937ed4e6093a1d57ed | fix: build error with enable_electron_extensions=false (#46812)
Fix build error with enable_electron_extensions=false
In file included from ../../base/allocator/partition_allocator/src/partition_alloc/pointers/raw_ptr_backup_ref_impl.h:13,
from ../../base/allocator/partition_allocator/src/partition_a... | [
{
"path": "shell/browser/usb/electron_usb_delegate.cc",
"patch": "@@ -12,6 +12,7 @@\n #include \"content/public/browser/render_frame_host.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"electron/buildflags/buildflags.h\"\n+#include \"services/device/public/mojom/usb_device.mojom.h\"\n ... | 2025-04-28T15:56:17 |
nodejs/node | 7a47cbf4c52bec8cedf3933010747136c7468d5e | b6b7f39d3adce215ac47a14c55131850b18eafed | crypto: normalize RsaHashedKeyParams publicExponent
Fixes: https://github.com/nodejs/node/issues/59535
PR-URL: https://github.com/nodejs/node/pull/59538
Fixes: https://github.com/nodejs/node/issues/59534
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rafael Go... | [
{
"path": "lib/internal/crypto/util.js",
"patch": "@@ -397,7 +397,9 @@ const kSupportedAlgorithms = createSupportedAlgorithms(kAlgorithmDefinitions);\n \n const simpleAlgorithmDictionaries = {\n AeadParams: { iv: 'BufferSource', additionalData: 'BufferSource' },\n- RsaHashedKeyGenParams: { hash: 'HashAlg... | 2025-08-19T11:59:57 |
facebook/react | c129c2424b662a371865a0145c562a1cf934b023 | 0c1575cee8a78dd097edcafc307522ad000e372c | [compiler][repro] Nested fbt test fixture (#32779)
Ideally we should detect and bail out on this case to avoid babel build
failures. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/error.todo-fbt-param-nested-fbt.expect.md",
"patch": "@@ -0,0 +1,56 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * MemoizeFbtAndMacroOperands n... | 2025-05-05T15:52:45 |
vercel/next.js | 97532172c065ca2b49dd79d1fa44c3a0b864065b | e1685de205016c209be30980ac402c43f7cc5f58 | [test] Deflake `test/development/app-dir/hydration-error-count/hydration-error-count.test.ts` (#88749) | [
{
"path": "test/development/app-dir/hydration-error-count/hydration-error-count.test.ts",
"patch": "@@ -334,11 +334,11 @@ describe('hydration-error-count', () => {\n it('should display runtime error separately from hydration errors', async () => {\n const browser = await next.browser('/hydration-with-... | 2026-01-19T18:09:07 |
golang/go | 4fb7e083a868946db08db9ef3bc807e21c8fc961 | 31d373534e6b2582817585851f45b8af6386d023 | crypto/tls: expose HelloRetryRequest state
This commit adds fields to the ClientHelloInfo and ConnectionState
structures to represent hello retry request state information.
ClientHelloInfo gains a new HelloRetryRequest bool field that indicates
if the client hello was sent in response to a TLS 1.3 hello retry
request... | [
{
"path": "api/next/74425.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/tls, type ConnectionState struct, HelloRetryRequest bool #74425\n+pkg crypto/tls, type ClientHelloInfo struct, HelloRetryRequest bool #74425",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc... | 2025-11-03T19:47:42 |
electron/electron | f2240e07f0fb606ae111a4937ed4e6093a1d57ed | 0c103f390c9c9cb51fa63ead3ec2c47ec9dedc90 | chore: bump chromium to 137.0.7149.0 (main) (#46777)
* chore: bump chromium in DEPS to 137.0.7144.0
* chore: bump chromium in DEPS to 137.0.7145.0
* chore: bump chromium in DEPS to 137.0.7147.0
* chore: update patches
* Remove deprecated GetVar(std::string_view, std::string*) overload
Refs https://chromium-review... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '137.0.7143.0',\n+ '137.0.7149.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-04-28T15:39:12 |
facebook/react | 0c1575cee8a78dd097edcafc307522ad000e372c | 52ea641449570bbc32eb90fb1a76740249b6bcf5 | [compiler][bugfix] Bail out when a memo block declares hoisted fns (#32765)
Note that bailing out adds false positives for hoisted functions whose
only references are within other functions. For example, this rewrite
would be safe.
```js
// source program
function foo() {
return bar();
}
function bar() {
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PruneHoistedContexts.ts",
"patch": "@@ -5,10 +5,13 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import {CompilerError} from '..';\n import {\n convertHoistedLValueKind,\n IdentifierId,\n+ Instructi... | 2025-05-05T15:45:58 |
vercel/next.js | e1685de205016c209be30980ac402c43f7cc5f58 | a0e2d59cf476981d18adcafa912d014664cd879a | Fix `Build Commands` section in AGENTS.md (#88757)
The commands must have been hallucinated. | [
{
"path": "AGENTS.md",
"patch": "@@ -98,14 +98,14 @@ gt submit --no-edit\n ## Build Commands\n \n ```bash\n-# Build the Next.js package (dev server only - faster)\n-pnpm --filter=next build:dev-server\n+# Build the Next.js package\n+pnpm --filter=next build\n \n # Build everything\n pnpm build\n \n # Run sp... | 2026-01-19T18:05:35 |
golang/go | 31d373534e6b2582817585851f45b8af6386d023 | aa093eed830796b3ba498b04077d8ee2d6d428bf | doc: pre-announce removal of 1.23 and earlier crypto GODEBUGs
For #75316
Change-Id: Ife391b8c3e7fd2fec0e53b296d47b4756a787001
Reviewed-on: https://go-review.googlesource.com/c/go/+/723100
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "doc/godebug.md",
"patch": "@@ -334,13 +334,15 @@ any effect.\n Go 1.23 changed the default TLS cipher suites used by clients and servers when\n not explicitly configured, removing 3DES cipher suites. The default can be reverted\n using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites)... | 2025-11-21T22:11:41 |
electron/electron | 27f6adf8dffd411b83cce621f246891d58a5cf42 | b03c71213ee5f145090bad541ebb88bb7b0e7e41 | fix: run `visibleOnAllWorkspaces` tests on the right platforms (#46815)
* test: add platform test on visibleOnAllWorkspaces tests
visibleOnAllWorkspaces is not supported on Windows
* test: do not skip visibleOnAllWorkspaces tests on Windows
That feature is supported on Linux, so move the test from the
"window state... | [
{
"path": "spec/api-browser-window-spec.ts",
"patch": "@@ -5407,6 +5407,26 @@ describe('BrowserWindow module', () => {\n expect(w.webContents.isLoadingMainFrame()).to.be.true('isLoadingMainFrame');\n });\n });\n+\n+ ifdescribe(process.platform !== 'win32')('visibleOnAllWorkspaces state'... | 2025-04-28T14:34:00 |
facebook/react | 0db8db178c1521f979535bdba32bf9db9f47ca05 | 8570116bd1ba872537132de42b997ec56c726659 | [compiler] Validate against mutable functions being frozen
This revisits a validation I built a while ago, trying to make it more strict this time to ensure that it's high-signal.
We detect function expressions which are *known* mutable — they definitely can modify a variable defined outside of the function expressio... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -103,6 +103,7 @@ import {transformFire} from '../Transform';\n import {validateNoImpureFunctionsInRender} from '../Validation/ValidateNoImpureFunctionsInRender';\n import {CompilerError} from '..';\n import {v... | 2025-05-03T00:15:32 |
vercel/next.js | a0e2d59cf476981d18adcafa912d014664cd879a | 4379e65e5fdb0dc5e218be2b4711c5ff85b5cb3e | [test] Deflake `test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts` (#88754) | [
{
"path": "test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts",
"patch": "@@ -15,6 +15,7 @@ describe('browser-log-forwarding verbose level', () => {\n expect(output).toContain('browser error:')\n expect(output).toContain('browser warn:')\n expect(o... | 2026-01-19T17:26:33 |
golang/go | aa093eed830796b3ba498b04077d8ee2d6d428bf | 1dc1505d4ad0d3a3172d90e16858697b0dca0ab7 | crypto/fips140: add Version
Fixes #75301
Change-Id: If953b4382499570d5437491036f91cbe4fec7c01
Reviewed-on: https://go-review.googlesource.com/c/go/+/723101
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "api/next/75301.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/fips140, func Version() string #75301",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/fips140/75301.md",
"patch": "@@ -0,0 +1 @@\n+[Version] returns the res... | 2025-11-21T22:27:36 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.