repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | 9d2d2421adfd903de2c487164fdfc71de664d6b0 | ef6ac79d0b4cfb0055ee1aa9b1f30bdc144c297f | Revert "Fix/zlib mem node" (#89322)
Reverts vercel/next.js#89099
Apparently this did not solve the user's memory leak issue:
https://github.com/vercel/next.js/issues/89091#issuecomment-3826050800 | [
{
"path": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -262,12 +262,6 @@ export async function initialize(opts: {\n if (compress) {\n // @ts-expect-error not express req/res\n compress(req, res, () => {})\n-\n- // Only on client abort: destroy response so compression st... | 2026-01-31T00:50:24 |
golang/go | f105dfd048ce6ca9a8115d7fdd7a4cb60e84ba40 | af14f6791108ece9661590cbf922806492954ea6 | lib/fips140: freeze v1.1.0-rc1 FIPS 140 module zip file
Fixes #76769
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest
Change-Id: I16b0e9463e2e10ee5a6f20967fb6377b6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/729180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -10,3 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n+v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e",
"additions": 1,
... | 2025-12-10T21:49:31 |
electron/electron | 4c460df0a4edd91df2429384d1d5e97bfc262dff | cf193b279b47f367b9d5199644d304fa11aa1e6c | ci: fix audit workflow alerting on stale results (#47643) | [
{
"path": ".github/workflows/audit-branch-ci.yml",
"patch": "@@ -101,7 +101,6 @@ jobs:\n }\n \n if (runsWithErrors.length > 0) {\n- core.setOutput('errorsFound', true);\n core.summary.addHeading('⚠️ Runs with Errors');\n core.summary.addTable(... | 2025-07-03T12:42:04 |
nodejs/node | 0e942cc8592df610055a6b4a07b9555730ff80cf | 307eaca0f1b108d563cbe0db2623ab8bdb9c5bd7 | doc: remove optional title prefixes
PR-URL: https://github.com/nodejs/node/pull/60087
Refs: https://github.com/nodejs/doc-kit/issues/378
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addalea... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -1494,7 +1494,7 @@ console.log(Buffer.isEncoding(''));\n // Prints: false\n ```\n \n-### Class property: `Buffer.poolSize`\n+### `Buffer.poolSize`\n \n <!-- YAML\n added: v0.11.3\n@@ -5515,7 +5515,7 @@ introducing security vulnerabilities into an application.\n [`... | 2025-10-05T16:23:01 |
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 |
vercel/next.js | ef6ac79d0b4cfb0055ee1aa9b1f30bdc144c297f | a4c1a0cd72e0cfbe4d62fe244364a98fa209d463 | feat: detect @typescript/native-preview as alternative TypeScript compiler (#89149)
## What?
This PR adds support for detecting `@typescript/native-preview` as an
alternative TypeScript compiler. When installed, Next.js will no longer
automatically install the `typescript` package.
## Why?
Fixes #88580
Users who w... | [
{
"path": "packages/next/src/lib/verify-typescript-setup.ts",
"patch": "@@ -2,7 +2,10 @@ import { bold, cyan, red, yellow } from './picocolors'\n import path, { join } from 'path'\n \n import { hasNecessaryDependencies } from './has-necessary-dependencies'\n-import type { NecessaryDependencies } from './has... | 2026-01-30T23:38:14 |
golang/go | 72c83bcc80d0a195269b168423446476808a11e8 | b2a697bd06e01abade1d436f01be7186b1c38842 | go/types, types2: put Named.finite behind Named.mu
This change adds another leaf state to named types which indicates
whether the type's size finiteness is known.
Without this, writes to Named.finite can result in a clobbered value.
While benign in terms of functionality, it triggers the race detector.
Fixes #76773
... | [
{
"path": "src/cmd/compile/internal/types2/cycles.go",
"patch": "@@ -106,17 +106,13 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n // TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n \n // finiteSize returns whether a type has finite... | 2025-12-10T18:29:01 |
electron/electron | cf193b279b47f367b9d5199644d304fa11aa1e6c | 655037fbdf87ac4f2201db332b417e126489d304 | fix: crash on source capture with empty thumbnail size (#47641) | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -236,7 +236,8 @@ DesktopCapturer::DesktopListListener::~DesktopListListener() = default;\n \n void DesktopCapturer::DesktopListListener::OnDelegatedSourceListSelection() {\n if (have_thumbnail_) {\n- std::move(update_callback_... | 2025-07-03T12:41:19 |
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 | f9173727f7ed4913133ffb58db60e09f768e5d70 | bb41cbd6ee5516b95030c2d7921fa7aa98527850 | [test] Deflake `browser-log-forwarding verbose level` test suite (#89324)
[flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22browser-log-forwarding%20verbose%20level%20should%20forward%20all%20logs%20to%20te... | [
{
"path": "test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts",
"patch": "@@ -12,10 +12,10 @@ describe('browser-log-forwarding verbose level', () => {\n \n await retry(() => {\n const output = next.cliOutput.slice(outputIndex)\n- expect(output).toCont... | 2026-01-30T23:07:14 |
rust-lang/rust | 2258432bf638deb84075fafd40f18fb389d5b98c | ec6d039ceca95ef4f93de3473334a98309a48825 | fix: Accept parenthesized paths in asm `sym` operand parser | [
{
"path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/typed_hole.rs",
"patch": "@@ -442,4 +442,30 @@ fn rdtscp() -> u64 {\n }\"#,\n );\n }\n+\n+ #[test]\n+ fn asm_sym_with_macro_expr_fragment() {\n+ // Regression test for issue #21582\n+ // When `$e:expr` cap... | 2026-03-23T14:19:47 |
golang/go | c39fe18fea16d6bdbd5526a7b7d7b59e84ae0144 | db0ab834d67131676ab2001ab8e72b197b22ce54 | crypto/mlkem/mlkemtest: error out in fips140=only mode
Updates #70514
Change-Id: I1d1a0b4a2c7ee4cb6e8e0700dd3463a46a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/728502
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Roland Shoemaker <roland@golan... | [
{
"path": "src/crypto/mlkem/mlkemtest/mlkemtest.go",
"patch": "@@ -7,6 +7,7 @@ package mlkemtest\n \n import (\n \tfips140mlkem \"crypto/internal/fips140/mlkem\"\n+\t\"crypto/internal/fips140only\"\n \t\"crypto/mlkem\"\n \t\"errors\"\n )\n@@ -20,6 +21,9 @@ func Encapsulate768(ek *mlkem.EncapsulationKey768, ... | 2025-12-08T23:39:54 |
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 |
electron/electron | 655037fbdf87ac4f2201db332b417e126489d304 | 07338bb1cf93091a36c047407c0af87438023d25 | fix: `window.open` popups are always resizable (#47540)
fix: window.open popups are always resizable
Closes https://github.com/electron/electron/issues/43591.
Per current WHATWG spec, the `window.open` API should always
create a resizable popup window. This change updates the
`parseFeaturesString` function to ensure... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -21,6 +21,23 @@ macOS 11 (Big Sur) is no longer supported by [Chromium](https://chromium-review.\n Older versions of Electron will continue to run on Big Sur, but macOS 12 (Monterey)\n or later will be required to run Electron v38.0.0 and higher.\n \n+### B... | 2025-07-02T13:02:59 |
rust-lang/rust | 381e582ab8e6dee93eadd75b7a52c56d3813058e | 10855fe406410786cac6cca33496cea4ccdce801 | fix: Improve inserted order for trait_impl_redundant_assoc_item
Example
---
```rust
trait Marker {
fn foo();
fn baz();
}
impl Marker for Foo {
fn foo() {}
fn missing() {}$0
fn baz() {}
}
```
**Before this PR**
```rust
trait Marker {
fn missing();
fn foo();
fn baz();
}
impl Marker for ... | [
{
"path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/trait_impl_redundant_assoc_item.rs",
"patch": "@@ -5,8 +5,10 @@ use ide_db::{\n label::Label,\n source_change::SourceChangeBuilder,\n };\n-use syntax::ToSmolStr;\n-use syntax::ast::edit::AstNodeEdit;\n+use syntax::{\n+ AstNode... | 2026-02-22T09:55:34 |
vercel/next.js | bb41cbd6ee5516b95030c2d7921fa7aa98527850 | cf7cfe27ecbfdec8ae95188bc16685772a2b2945 | Apply server actions transform to `node_modules` in route handlers (#89316)
The server actions transform, which handles the `'use cache'` directive,
was not being applied to `node_modules` when imported from route
handlers. This caused `'use cache'` functions from dependencies to fail
with errors like `"cacheLife() ca... | [
{
"path": "crates/next-core/src/next_server/context.rs",
"patch": "@@ -859,6 +859,7 @@ pub async fn get_server_module_options_context(\n \n next_server_rules.extend(common_next_server_rules.iter().cloned());\n internal_custom_rules.extend(common_next_server_rules);\n+ fore... | 2026-01-30T23:03:29 |
golang/go | cd873cf7e98c3fd3e8138e9d97d6a974a1ee0b53 | 550c0c898b61628aed108aca7d8dbef32458bc09 | crypto/internal/fips140/aes/gcm: don't panic on bad nonces out of FIPS 140-3 mode
The enforcement is good beyond compliance if it is correct, but I am
more nervous about accidental DoS due to mismatches between how the
caller calculates a nonce and how the enforcement expects it to be
calculated.
We need to have this... | [
{
"path": "src/crypto/cipher/gcm_fips140v2.0_test.go",
"patch": "@@ -8,15 +8,32 @@ package cipher_test\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/cryptotest\"\n \t\"crypto/internal/fips140\"\n \tfipsaes \"crypto/internal/fips140/aes\"\n \t\"crypto/internal/fips140/aes/gcm\"\n \t\"encoding/bin... | 2025-12-08T23:47:26 |
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 |
electron/electron | f7138344d82a95dd4659dbb80f19a5a73ffca7dd | b9248e6782e4dcd1088c7972a59b74c5827b235f | docs: discoverability of chromium switches (#44947)
* docs: document discoverability of chromium switches
* docs: fixed typo
* docs: reference chromium endorsed list of swithes
* docs: reorder command-line-switches
* fix: address review
* fix: typo
* fix: wording
* Update command-line-switches.md
fix: lint spa... | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -331,6 +331,22 @@ Affects the default output directory of [v8.setHeapSnapshotNearHeapLimit](https:\n \n Disable exposition of [Navigator API][] on the global scope from Node.js.\n \n+## Chromium Flags\n+\n+There isn't a documented list of all Chrom... | 2025-07-01T21:31:49 |
rust-lang/rust | 0e4a7595012bc71ccbb28a117e2fcf35e833cedb | 34ef9a6146a26d3c3cfef42202b0f1d6dd2fe053 | Fix `link_ordinal` test | [
{
"path": "tests/ui/linkage-attr/raw-dylib/windows/link-ordinal-multiple.rs",
"patch": "@@ -1,11 +1,11 @@\n //@ only-windows\n #[link(name = \"foo\", kind = \"raw-dylib\")]\n extern \"C\" {\n- #[link_ordinal(1)] //~ ERROR multiple `link_ordinal` attributes\n- #[link_ordinal(2)]\n+ #[link_ordinal(1)... | 2026-03-23T13:00:22 |
vercel/next.js | 479877d6d7a6fef89938a3217780f8663126a49a | 80ace0fe9e4d4dd95ba13a3d4622b84b34487ef7 | Improve consistency of how Flag typed fields are handled in the macro to more structurally prevent bugs like what was fixed in #89228 (#89255)
# Fix inconsistencies in flag handling
## What?
This PR refactors the task flags bitfield implementation to properly separate flags by category (meta vs data) during serializa... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/storage_schema.rs",
"patch": "@@ -785,8 +785,6 @@ mod tests {\n .aggregated_dirty_containers_mut()\n .insert(TaskId::new(50).unwrap(), 2);\n \n- // Set flags (persisted)\n- original.flags.set_immutable(true);\n... | 2026-01-30T19:35:15 |
nodejs/node | 2869c1255b99ffad2232f9ce5a2b3f05779fb37e | 05aa3a1c70b55d51ecca2cb2692b65c66ebc4d28 | src: correct the error handling in StatementExecutionHelper
Error handling logic was flawed in StatementExecutionHelper
methods.
PR-URL: https://github.com/nodejs/node/pull/60040
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -26,6 +26,7 @@ using v8::ConstructorBehavior;\n using v8::Context;\n using v8::DictionaryTemplate;\n using v8::DontDelete;\n+using v8::EscapableHandleScope;\n using v8::Exception;\n using v8::Function;\n using v8::FunctionCallback;\n@@ -2209,12 +2210,13 @@ Maybe<... | 2025-09-27T21:58:11 |
facebook/react | 8570116bd1ba872537132de42b997ec56c726659 | 4f1d2ddf95906e9a3436552c524410e9d39f48ca | [compiler] Fix for uncalled functions that are known-mutable
If a function captures a mutable value but never gets called, we don't infer a mutable range for that function. This means that we also don't alias the function with its mutable captures.
This case is tricky, because we don't generally know for sure what is... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InerAliasForUncalledFunctions.ts",
"patch": "@@ -0,0 +1,134 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root director... | 2025-05-03T00:15:32 |
golang/go | 36bca3166e18db52687a4d91ead3f98ffe6d00b8 | b9693a2d9a89168b86cf01033b8420bf8db652d6 | cmd: fix some issues in the comments
Change-Id: Id2c4152b43c7ee1a687e49da7dda5a690e554231
Reviewed-on: https://go-review.googlesource.com/c/go/+/727900
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI... | [
{
"path": "src/cmd/compile/internal/inline/inlheur/analyze_func_params.go",
"patch": "@@ -122,9 +122,9 @@ func (pa *paramsAnalyzer) findParamIdx(n *ir.Name) int {\n \n type testfType func(x ir.Node, param *ir.Name, idx int) (bool, bool)\n \n-// paramsAnalyzer invokes function 'testf' on the specified expres... | 2025-12-08T04:18:59 |
vercel/next.js | abfd99455120c5636238ddebb63636b19011e556 | eb828c684e9aa964b1545f064b17af5ef36079aa | Fix/zlib mem node (#89099)
- What?
Fixes zlib memory leak in Node.js 24 when requests are aborted.
- Why?
Compression streams weren't cleaned up on abort, causing memory to
accumulate.
- How?
Destroy the response on request abort/close to clean up compression
streams.
Closes NEXT-
fixes: #89091 | [
{
"path": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -262,6 +262,12 @@ export async function initialize(opts: {\n if (compress) {\n // @ts-expect-error not express req/res\n compress(req, res, () => {})\n+\n+ // Only on client abort: destroy response so compression st... | 2026-01-30T19:17:09 |
electron/electron | 4f69c5835e7217deb57913817359ff2b37b9bb80 | fa153325877f1aa01c15b857f72f1da4ae564feb | chore: bump chromium to 140.0.7261.0 (main) (#47561)
* chore: bump chromium in DEPS to 140.0.7259.0
* chore: update patches
* Add fade in animation to Picture-in-Picture windows
https://chromium-review.googlesource.com/c/chromium/src/+/6538268
* [v8] Use V8 Apis that don't return JSGlobalObject
Refs https://issue... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '139.0.7256.0',\n+ '140.0.7261.0',\n 'node_version':\n 'v22.17.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2025-06-30T16:30:05 |
facebook/react | 73d7e816b7746c700ab843964aaf11c17351fac1 | ac2cae524576b8091a6d78d9ab05627053949df1 | [compiler] ValidatePreservedManualMemoization reports detailed errors
This pass didn't previously report the precise difference btw inferred/manual dependencies unless a debug flag was set. But the error message is really good (nice job mofeiz): the only catch is that in theory the inferred dep could be a temporary th... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -141,14 +141,14 @@ function getCompareDependencyResultDescription(\n ): string {\n switch (result) {\n case CompareDependencyResult.Ok:\n- return 'dependencies equal';\n+ ... | 2025-05-03T00:09:34 |
nodejs/node | 0a870841500551502aae43a81f68e2cd75bfbc67 | 7dd49d7da4ef1b4e732f149e7cc9e0398771285d | test: update cppgc-object addon config
Set `win_delay_load_hook` to `false` to avoid linker error.
PR-URL: https://github.com/nodejs/node/pull/59805
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ih... | [
{
"path": "test/addons/cppgc-object/binding.gyp",
"patch": "@@ -3,6 +3,7 @@\n {\n 'target_name': 'binding',\n 'sources': [ 'binding.cc' ],\n+ 'win_delay_load_hook': 'false',\n 'includes': ['../common.gypi'],\n }\n ]",
"additions": 1,
"deletions": 0,
"language": "... | 2025-09-26T12:10:18 |
golang/go | b9693a2d9a89168b86cf01033b8420bf8db652d6 | 1274d58dacc92204f5bb233b22a93c30a37f34e5 | runtime: on AIX check isarchive before calling libpreinit
On AIX, all externally linked programs call _rt0_ppc64_aix_lib,
as seen in runtime/cgo/gcc_aix_ppc64.c. The idea is that we
only do the library initialization is isarchive is set.
However, before this CL, AIX programs would call libpreinit
before checking isarc... | [
{
"path": "src/runtime/asm_ppc64x.s",
"patch": "@@ -30,9 +30,6 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\t$runtime·reginit(SB), R12\n \tMOVD\tR12, CTR\n \tBL\t(CTR)\n-\tMOVD\t$runtime·libpreinit(SB), R12\n-\tMOVD\tR12, CTR\n-\tBL\t(CTR)\n \n #ifdef GOOS_aix\n \t// See runtime/cgo/gcc_aix_ppc64... | 2025-12-07T06:00:20 |
facebook/react | ac2cae524576b8091a6d78d9ab05627053949df1 | 66de8e5a9975a4b53734ebed8a1c1f07892426a8 | [compiler] Fix for string attribute values with emoji
If a JSX attribute value is a string that contains unicode or other characters that need special escaping, we wrap the attribute value in an expression container. However, our unicode to detect this only handled the basic unicode character plane, not the "astral" p... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2327,9 +2327,12 @@ function codegenInstructionValue(\n * u0080 to u009F: C1 control codes\n * u00A0 to uFFFF: All non-basic Latin characters\n * https://en.wikipedia.org/wiki/List_of_Uni... | 2025-05-03T00:07:50 |
electron/electron | fa153325877f1aa01c15b857f72f1da4ae564feb | e299a1d098598f3884da7a5358be6ceab86d651c | docs: update automated-testing.md (#47017)
* Update automated-testing.md
* fixed lint error | [
{
"path": "docs/tutorial/automated-testing.md",
"patch": "@@ -74,46 +74,22 @@ describe('keyboard input', () => {\n Furthermore, WebdriverIO allows you to access Electron APIs to get static information about your application:\n \n ```js @ts-nocheck\n-import { browser, $, expect } from '@wdio/globals'\n-\n-de... | 2025-06-30T08:56:48 |
vercel/next.js | e3e6f3586ee6bc0576a592793c8ca9ca3cead5d3 | 99eae38f38549e030247c3f3ec59c09c5aedc5cb | Add experimental.varyParams feature flag (#89307)
## Summary
- Adds `experimental.varyParams` feature flag (defaults to `false`)
- When disabled, the client skips vary params rekeying and treats params
as unknown
- Allows internal rollout with easy revert if regressions occur during
dogfooding
The flag only gates th... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -359,6 +359,7 @@ export function getDefineEnv({\n config.experimental.gestureTransition ?? false,\n 'process.env.__NEXT_OPTIMISTIC_ROUTING':\n config.experimental.optimisticRouting ?? false,\n+ 'process.env.__NEXT_VARY_PARAMS... | 2026-01-30T19:05:02 |
nodejs/node | 37a3df3556121917df9769daaba9407bd27dd1d0 | 308de27255235ef11d21b9ccd3b35709c89db280 | src: fix calls to v8::Object::wrap
PR-URL: https://github.com/nodejs/node/pull/59805
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/cppgc_helpers-inl.h",
"patch": "@@ -15,7 +15,8 @@ void CppgcMixin::Wrap(T* ptr, Realm* realm, v8::Local<v8::Object> obj) {\n v8::Isolate* isolate = realm->isolate();\n ptr->traced_reference_ = v8::TracedReference<v8::Object>(isolate, obj);\n // Note that ptr must be of concrete type T i... | 2025-08-12T05:43:59 |
golang/go | 1274d58dacc92204f5bb233b22a93c30a37f34e5 | 9e0981230803265f3245193e1d61cc3599c9ca54 | go/types, types2: add check for finite size at value observance
Each type must be representable by a finite amount of Go source code
after replacing all alias type names, value names, and embedded
interfaces (per #56103) with the RHS from their respective declarations
("expansion"); otherwise the type is invalid.
Fur... | [
{
"path": "src/cmd/compile/internal/types2/cycles.go",
"patch": "@@ -102,3 +102,43 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n \t\t}\n \t}\n }\n+\n+// TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n+\n+// finiteSize returns wheth... | 2025-12-03T20:14:22 |
facebook/react | 26ecc98a0014700524e78d938e3654c73213cf3b | f0ca53d1337780ccfd49c132170d378c789cb463 | [mcp] Prompt improvements for smarter tool composition (#33108)
Our runtime results are still bogus, but so far this tweak let's the llm
use the tools a little more intelligently.
example:
---
```js
import React from 'react';
function App() {
const [count, setCount] = React.useState(0);
const [data, setData] = ... | [
{
"path": "compiler/packages/react-mcp-server/src/index.ts",
"patch": "@@ -29,7 +29,7 @@ const server = new McpServer({\n \n server.tool(\n 'query-react-dev-docs',\n- 'This tool lets you search for official docs from react.dev. This always has the most up to date information on React. You can look for do... | 2025-05-02T21:50:39 |
rust-lang/rust | e66f61fe070e741cadba7dc7bb9cbb8548c8e9cd | d5671962a0d06cc2860020389a072a2013177277 | Fix indent for trait_impl_redundant_assoc_item
Example
---
```rust
trait Foo {
}
impl Foo for () {
$0fn foo<T: Copy>(&self);
}
```
**Before this PR**:
```rust
trait Foo {
fn foo<T>(&self)
where
T: Copy,;
}
impl Foo for () {
fn foo<T: Copy>(&self);
}
```
**After this PR**:
```rust
trait Foo {
fn... | [
{
"path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/trait_impl_redundant_assoc_item.rs",
"patch": "@@ -6,6 +6,7 @@ use ide_db::{\n source_change::SourceChangeBuilder,\n };\n use syntax::ToSmolStr;\n+use syntax::ast::edit::AstNodeEdit;\n \n use crate::{Diagnostic, DiagnosticCode, Diagn... | 2025-09-15T07:27:19 |
vercel/next.js | af18c32bc81e500f748f18c23e47f7329d5684d9 | 7517e3ec264e26fdc34c39d5669912c8d9a2d6db | Improve lock dir error message (#89119) | [
{
"path": "crates/napi/src/lockfile.rs",
"patch": "@@ -1,5 +1,6 @@\n use std::{\n fs::{File, OpenOptions},\n+ io::Write,\n mem::ManuallyDrop,\n sync::Mutex,\n };\n@@ -24,10 +25,10 @@ pub struct LockfileInner {\n }\n \n #[napi(ts_return_type = \"{ __napiType: \\\"Lockfile\\\" } | null\")]\n-pu... | 2026-01-30T15:38:25 |
electron/electron | 5e862f398ecf2a8b564ec9c6da5ef9960e850cc7 | 61c245761cadbc0847f19b017b220e1d36cdcb42 | fix: Reland "[accessibility] Platform node lifetime cleanups" (#47590)
Reland "[accessibility] Platform node lifetime cleanups"
https://chromium-review.googlesource.com/c/chromium/src/+/6462552 | [
{
"path": "shell/browser/ui/webui/accessibility_ui.cc",
"patch": "@@ -306,7 +306,8 @@ std::string RecursiveDumpAXPlatformNodeAsString(\n return \"\";\n }\n std::string str(2 * indent, '+');\n- std::string line = node->GetDelegate()->GetData().ToString();\n+ ui::AXPlatformNodeDelegate* const node_d... | 2025-06-29T19:57:48 |
nodejs/node | cf5cb81556917478c392160436ba59aa497f085f | b3238442d8129570ccbf4577092f58f912a0760a | deps: support madvise(3C) across ALL illumos revisions
In illumos, madvise(3C) now takes `void *` for its first argument
post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will
detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so
builds can work either way.
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2025-08-07T14:14:08 |
facebook/react | e39b380a21aa4ef48d5880aa2c800ec5b1b044bd | 9de0304ad72bc3f8a77d2d84efa530b8051d1c15 | [mcp] Fix unresolved imports (#33105)
We need to explicitly import the modules so they'll be inlined correctly
into the bundle. | [
{
"path": "compiler/packages/react-mcp-server/src/tools/runtimePerf.ts",
"patch": "@@ -1,5 +1,11 @@\n import * as babel from '@babel/core';\n import puppeteer from 'puppeteer';\n+// @ts-ignore\n+import * as babelPresetTypescript from '@babel/preset-typescript';\n+// @ts-ignore\n+import * as babelPresetEnv f... | 2025-05-02T20:54:17 |
electron/electron | 61c245761cadbc0847f19b017b220e1d36cdcb42 | 7c55b24be25d6df7ee6de51bdbec4c8215425273 | test: fix nan tests on macOS (#47583) | [
{
"path": "script/nan-spec-runner.js",
"patch": "@@ -46,20 +46,23 @@ async function main () {\n const platformFlags = [];\n if (process.platform === 'darwin') {\n const sdkPath = path.resolve(BASE, 'out', outDir, 'sdk', 'xcode_links');\n- const sdks = (await fs.promises.readdir(sdkPath)).filter(f... | 2025-06-29T19:57:44 |
nodejs/node | c0b8c80164cd8acb31da4fc72d57d01a64621bac | 2a1da3260d5648d30c7f25365789c47c07a048f7 | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-12-16T10:11:22 |
vercel/next.js | 64328fe985ed806be588b7e40dcd32b484b9125e | 0ed1edd852600de49f1c1cfb3a43a5428dc10dfb | Track vary params during static prerendering (#89267)
During prerendering, track which route params each segment accesses.
Params that are NOT accessed can be omitted from the client router's
cache key for that segment, allowing it to be shared across multiple
pages and reducing the number of prefetch requests.
For e... | [
{
"path": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -7,6 +7,10 @@ import type {\n CacheNodeSeedData,\n Segment as FlightRouterStateSegment,\n } from '../../../shared/lib/app-router-types'\n+import {\n+ readVaryParams,\n+ type VaryParams,\n+} from '../../../shared/lib/s... | 2026-01-30T14:48:32 |
facebook/react | e5f0315efa60a76332b32f21e495e36b26bdd36e | f739642745577a8e4dcb9753836ac3589b9c590a | [mcp] Fix package.json (#33101)
Since we use esbuild we need to correctly move dependencies that are
required at runtime into `dependencies` and other packages that are only
used in development in to `devDependencies`. This ensures the correct
packages are included in the build.
---
[//]: # (BEGIN SAPLING FOOTER)
Stac... | [
{
"path": "compiler/packages/react-mcp-server/package.json",
"patch": "@@ -15,25 +15,22 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.26.0\",\n \"@babel/parser\": \"^7.26\",\n- \"@babel/plugin-syntax-typescript\": \"^7.25.9\",\n+ \"@babel/preset-env\": \"^7.26.9\",\n+ \"@babel/preset-r... | 2025-05-02T17:56:01 |
golang/go | a33bbf1988685215cdf300feb47d2e356e459b3e | a88a96330f312d08f5d191c66a463b165ac1b96d | weak: fix weak pointer test to correctly iterate over weak pointers after GC
This change fixes a bug in the weak pointer test where the loop was
attempting to iterate over a nil slice (bt) instead of the weak
pointer slice (wt).
After setting bt to nil and running GC, the test should iterate over
the weak pointers to... | [
{
"path": "src/weak/pointer_test.go",
"patch": "@@ -110,7 +110,7 @@ func TestPointerEquality(t *testing.T) {\n \tbt = nil\n \t// bt is no longer referenced.\n \truntime.GC()\n-\tfor i := range bt {\n+\tfor i := range wt {\n \t\tst := wt[i].Value()\n \t\tif st != nil {\n \t\t\tt.Fatalf(\"expected weak pointe... | 2025-11-24T06:38:30 |
nodejs/node | 6f941fcfba50fe7c3a342ed2066770aecaaa9b5a | 60f1a5d07714ce1062e1ed6f41b5cca7bc5d0bbf | lib: implement passive listener behavior per spec
Implements the WHATWG DOM specification for passive event listeners,
ensuring that calls to `preventDefault()` are correctly ignored within
a passive listener context.
An internal `kInPassiveListener` state is added to the Event object
to track when a passive listener... | [
{
"path": "lib/internal/event_target.js",
"patch": "@@ -76,6 +76,7 @@ const { now } = require('internal/perf/utils');\n \n const kType = Symbol('type');\n const kDetail = Symbol('detail');\n+const kInPassiveListener = Symbol('kInPassiveListener');\n \n const isTrustedSet = new SafeWeakSet();\n const isTrust... | 2025-10-04T03:17:35 |
vercel/next.js | 0ed1edd852600de49f1c1cfb3a43a5428dc10dfb | 91bf04930da717ff167f9bb12e704436613c6316 | Turbopack: refactor extend transforms (#89116)
### What?
Stop rules when module type is set.
Apply ecmascript transforms before module type is set. (no more errors when trying to apply a transform on non-ecmascript type)
Fix ordering of transform apply.
Reorder module rules to match previous order. They are applied i... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -327,6 +327,7 @@ pub async fn get_client_module_options_context(\n ecmascript: EcmascriptOptionsContext {\n esm_url_rewrite_behavior: Some(UrlRewriteBehavior::Relative),\n enable_typeof_window_inlining: Som... | 2026-01-30T14:32:35 |
facebook/react | 0ed6ceb9f6c19f28c504cf46193cef40166a61f6 | ee7fee8f8875052afde53c5bfc8aedad43ff9d8e | [Fizz] Add "Queued" Status to SSR:ed Suspense Boundaries (#33087)
Stacked on #33076.
This fixes a bug where we used the "complete" status but the
DOMContentLoaded event. This checks for not "loading" instead.
We also add a new status where the boundary has been marked as complete
by the server but has not yet flushe... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -238,14 +238,15 @@ const ACTIVITY_END_DATA = '/&';\n const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n+const SUSPENSE_QUEUED_START_DATA = '$~';\n const SUSPE... | 2025-05-01T20:11:54 |
electron/electron | 4dccccadbb9b011d3a212cfbc592eb2d0ed81aad | 79cd6a261415c3a60b1b52d79f6e2c21d68398d0 | chore: bump node to v22.17.0 (main) (#47557)
* chore: bump node in DEPS to v22.17.0
* build: use //third_party/simdutf by default in GN
https://github.com/nodejs/node/pull/58115
* chore: adjust crypto specs:
- https://github.com/nodejs/node/pull/58117
- https://github.com/nodejs/node/pull/58387
* deps: update lib... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '139.0.7256.0',\n 'node_version':\n- 'v22.16.0',\n+ 'v22.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-06-28T14:33:09 |
golang/go | 276cc4d3dbbf413be008113e6c88ffb3df2de4d6 | f2d96272cb1b695dfddcd5b80dfed2ad2ee6db59 | cmd/link: fix AIX builds after recent linker changes
This updates XCOFF-specific code for the recent addition
of funcdata to pclntab.
Because XCOFF puts separate symbols into separate csects,
each with their own alignment, it's important to tell the
external linker the expected alignment of each part of pclntab.
Othe... | [
{
"path": "src/cmd/link/internal/ld/pcln.go",
"patch": "@@ -55,13 +55,20 @@ type pclntab struct {\n \n // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.\n // It is the caller's responsibility to save the symbol in state.\n-func (state *pclntab) addGeneratedSym(ctxt *Link, name st... | 2025-12-02T00:25:56 |
nodejs/node | 60f1a5d07714ce1062e1ed6f41b5cca7bc5d0bbf | ffb25b8ce27013492c56e53013819b09abf9761b | process: fix wrong asyncContext under unhandled-rejections=strict
Fixes: https://github.com/nodejs/node/issues/60034
PR-URL: https://github.com/nodejs/node/pull/60103
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Revi... | [
{
"path": "lib/internal/process/promises.js",
"patch": "@@ -281,7 +281,7 @@ function strictUnhandledRejectionsMode(promise, promiseInfo, promiseAsyncId) {\n reason : new UnhandledPromiseRejection(reason);\n // This destroys the async stack, don't clear it after\n triggerUncaughtException(err, true /... | 2025-10-04T02:12:19 |
vercel/next.js | 91bf04930da717ff167f9bb12e704436613c6316 | 5eb6eefdafd594cddf2da15b9a4aefc90d67a137 | docs: Rename Error component to ErrorPage (#89284) | [
{
"path": "docs/01-app/01-getting-started/10-error-handling.mdx",
"patch": "@@ -206,7 +206,7 @@ Create an error boundary by adding an [`error.js`](/docs/app/api-reference/file-\n \n import { useEffect } from 'react'\n \n-export default function Error({\n+export default function ErrorPage({\n error,\n re... | 2026-01-30T12:43:57 |
facebook/react | ee7fee8f8875052afde53c5bfc8aedad43ff9d8e | ee077b6ccddd916440bb7570ba6f53673d920700 | [Fizz] Batch Suspense Boundary Reveal with Throttle (#33076)
Stacked on #33073.
React semantics is that Suspense boundaries reveal with a throttle
(300ms). That helps avoid flashing reveals when a stream reveals many
individual steps back to back. It can also improve overall performance
by batching the layout and pai... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -81,6 +81,7 @@ import {\n completeBoundaryWithStyles as styleInsertionFunction,\n completeSegment as completeSegmentFunction,\n formReplaying as formReplayingRuntime,\n+ markShellTime,\n } from './fizz-instruction-... | 2025-05-01T20:09:37 |
electron/electron | 79cd6a261415c3a60b1b52d79f6e2c21d68398d0 | 2ba8fe914056452ec6f8b949ab2844afac59e73c | refactor: sync IsKillURL() with upstream impl in extension_tab_util.cc (#47580)
Use base::MakeFixedFlatSet() | [
{
"path": "shell/browser/extensions/api/tabs/tabs_api.cc",
"patch": "@@ -11,7 +11,7 @@\n #include <vector>\n \n #include \"base/command_line.h\"\n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/strings/pattern.h\"\n #include \"base/types/expected_ma... | 2025-06-27T20:49:41 |
nodejs/node | f468b6c72b5c505de0d1db417325c6a86859df18 | 36b1cc2fcf9e05e558fc6364a957f41be2f81bc3 | build: update minimum Xcode version to 16.4
Refs: https://github.com/nodejs/build/issues/4083
Closes: https://github.com/nodejs/node/issues/58069
PR-URL: https://github.com/nodejs/node/pull/60079
Fixes: https://github.com/nodejs/node/issues/58069
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By... | [
{
"path": "BUILDING.md",
"patch": "@@ -157,7 +157,7 @@ Depending on the host platform, the selection of toolchains may vary.\n | ---------------- | -------------------------------------------------------------- |\n | Linux | GCC >= 12.2 or Clang >= 19.1 |\n | Win... | 2025-10-03T07:26:26 |
vercel/next.js | 5eb6eefdafd594cddf2da15b9a4aefc90d67a137 | c6de62407adfe01849d9c0ff9d3bbc199ac20665 | Revert "fix(router): support BigInt in query parameters" (#89283) | [
{
"path": "packages/next/src/shared/lib/router/utils/querystring.ts",
"patch": "@@ -24,8 +24,7 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean' ||\n- typeof param === 'bigint'\n+ typeof param... | 2026-01-30T10:32:59 |
facebook/react | ee077b6ccddd916440bb7570ba6f53673d920700 | bb57fa7351776a86448c1a094bea8108fd6b34ff | [Fizz] Don't handle errors in completeBoundary instruction (#33073)
Stacked on #33066 and #33068.
Currently we're passing `errorDigest` to `completeBoundary` if there is
a client side error (only CSS loading atm). This only exists because of
`completeBoundaryWithStyles`. Normally if there's a server-side error
we'd e... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -4482,14 +4482,14 @@ export function writeCompletedSegmentInstruction(\n }\n }\n \n+const completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(\n+ completeBoundaryFunction,\n+);\n const completeBoundaryScript1... | 2025-05-01T19:44:17 |
electron/electron | 7a274a711cf28bfc569c1d4c07f8c8bb329de0d9 | bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d | fix: revert upstream MacOS mouse event routing (#47560)
* fix: revert upstream MacOS mouse event routing
* fix: reduce patch surface area
* chore: update patches | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -133,3 +133,4 @@ fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n revert_views_remove_desktopwindowtreehostwin_window_enlargement.patch\n+build_par... | 2025-06-26T09:41:11 |
golang/go | 144cf17d2c444a530d7c08c5870dc8e70bec2c72 | 3417b48b17d01cf170317d679aef10984cc1a4d0 | [dev.simd] simd, cmd/compile: move "simd" to "simd/archsimd"
Also removes a few leftover TODOs and scraps of commented-out code
from simd development.
Updated etetest.sh to make it behave whether amd64 implies the
experiment, or not.
Fixes #76473.
Change-Id: I6d9792214d7f514cb90c21b101dbf7d07c1d0e55
Reviewed-on: ht... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -445,7 +445,7 @@ type hairyVisitor struct {\n \n func isDebugFn(fn *ir.Func) bool {\n \t// if n := fn.Nname; n != nil {\n-\t// \tif n.Sym().Name == \"Int32x8.Transpose8\" && n.Sym().Pkg.Path == \"simd\" {\n+\t// \tif n.Sym().Name == \"Int32x8.... | 2025-12-08T18:24:12 |
facebook/react | e9db3cc2d4175849578418a37f33a6fde5b3c6d8 | d8074cbc798a500a5e76d19fe0c17edec22b2593 | [compiler] PruneNonEscapingScopes understands terminal operands
We weren't treating terminal operands as eligible for memoization in PruneNonEscapingScopes, which meant that they could end up un-memoized. Terminal operands can also be compound ReactiveValues like SequenceExpressions, so part of the fix is to make sure... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction.ts",
"patch": "@@ -255,6 +255,12 @@ function writeReactiveValue(writer: Writer, value: ReactiveValue): void {\n }\n }\n \n+export function printReactiveTerminal(terminal: ReactiveTerminal): string {\n+ const... | 2025-05-01T03:41:26 |
nodejs/node | 0eda17ba20a9b0aa2b354cd9df797ad28955df1f | 5ac8f26ede517f045d22c275376c03a2129e3cf4 | build: fix flags for ngtcp2 on IBM i
PR-URL: https://github.com/nodejs/node/pull/60073
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Abdirahim Musse <abdirahim.musse@ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "deps/ngtcp2/ngtcp2.gyp",
"patch": "@@ -272,7 +272,7 @@\n 'HAVE_NETINET_IP_H',\n ],\n 'conditions': [\n- ['OS==\"aix\" or OS==\"win\"', {\n+ ['OS==\"aix\" or OS==\"win\" or OS==\"os400\"', {\n # AIX does not support some of the networking features used i... | 2025-10-02T16:57:48 |
vercel/next.js | a1e958980d953a2d59f7c6a65000633e55425b59 | 16087898734a7f048ee4a9225036eb22f0d389d2 | fix(router): support BigInt in query parameters (#89213)
**What changed?**
`stringifyUrlQueryParam` now handles `bigint` type properly.
**Why?**
BigInt is a valid JavaScript primitive but was being converted to empty
string:
Before:
```js
stringifyUrlQueryParam(123n) // '' ❌
```
After:
```js
stringifyUrlQueryParam(... | [
{
"path": "packages/next/src/shared/lib/router/utils/querystring.ts",
"patch": "@@ -24,7 +24,8 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean'\n+ typeof param === 'boolean' ||\n+ typeof para... | 2026-01-30T00:17:54 |
electron/electron | bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d | 0a74e91580984c14e73e868b2874347824d786f0 | docs: fix `--experimental-network-inspection` spelling (#47565)
doc: fix `--experimental-network-inspection` spelling | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -292,7 +292,7 @@ Specify ways of the inspector web socket url exposure.\n \n By default inspector websocket url is available in stderr and under /json/list endpoint on `http://host:port/json/list`.\n \n-### `--experimental-network-inspector`\n+### ... | 2025-06-26T09:40:55 |
golang/go | 4837bcc92c27e72c157e2c7b7e098dd91fa36fd3 | b5f6816cea5b195e583c60e97a519d5d4ad5793f | internal/trace: skip tests for alloc/free experiment by default
These tests are just too flaky and I don't have the time to fix them
right now. I also am thinking to just change how trace experiments work,
so it may not be worth taking the time to fix them.
For #70838.
Change-Id: Ia896215a0cbeccac99b73fefc836088f435... | [
{
"path": "src/internal/trace/reader_test.go",
"patch": "@@ -20,6 +20,7 @@ import (\n var (\n \tlogEvents = flag.Bool(\"log-events\", false, \"whether to log high-level events; significantly slows down tests\")\n \tdumpTraces = flag.Bool(\"dump-traces\", false, \"dump traces even on success\")\n+\tallocFre... | 2025-12-08T17:48:53 |
facebook/react | d8074cbc798a500a5e76d19fe0c17edec22b2593 | 71797c871b6bfa45988cba38f3388bac095b26cf | [mcp] Make tool more reliable and fix integration issues with babel (#33074)
## Summary
Fix babel presets, and add a bit more context to the tool so that it is
more reliable
## How did you test this change?
Manually tested the mcp integrated with claude desktop | [
{
"path": "compiler/packages/react-mcp-server/src/index.ts",
"patch": "@@ -356,7 +356,14 @@ Server Components - Shift data-heavy logic to the server whenever possible. Brea\n \n server.tool(\n 'review-react-runtime',\n- 'Review the runtime of the code and get performance data to evaluate the proposed sol... | 2025-04-30T22:42:00 |
nodejs/node | 69144e96c2686d3ecc73b0423dcf163a40bfc7a0 | 23b834058cc341d14496cc8eb8686ad3c0a5dc89 | module: use sync cjs when importing cts
PR-URL: https://github.com/nodejs/node/pull/60072
Fixes: https://github.com/nodejs/node/issues/59963
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -504,7 +504,9 @@ class ModuleLoader {\n const loadResult = this.#loadSync(url, { format, importAttributes });\n \n // Use the synchronous commonjs translator which can deal with cycles.\n- const finalFormat = loadResult.format === 'comm... | 2025-10-02T03:49:26 |
vercel/next.js | 516b2ea3b28f2b44487551ab79ff39d5318f457a | d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5 | fix(build): format runAfterProductionCompile duration as human-readable time (#89232)
This change should unifiy the runAfterProductionCompile output to follow
the same style as other times printed in the build logs.
Currently build logs look like
```
✓ Compiled successfully in 89s
Running next.config.js provided ru... | [
{
"path": "packages/next/src/build/after-production-compile.ts",
"patch": "@@ -6,6 +6,7 @@ import createSpinner from './spinner'\n import isError from '../lib/is-error'\n import type { Telemetry } from '../telemetry/storage'\n import { EVENT_BUILD_FEATURE_USAGE } from '../telemetry/events/build'\n+import { ... | 2026-01-29T23:57:13 |
golang/go | b5f6816cea5b195e583c60e97a519d5d4ad5793f | 44a39c9dacdb3378197b9515add22d292dd71af9 | cmd/link: generate DWARF for moduledata
Fixes #76731
Change-Id: I5c686c91af8543b57880a89d30393912ef1958ad
Reviewed-on: https://go-review.googlesource.com/c/go/+/727760
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com>
Reviewed-by: Florian Lehner <lehner.flo... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -156,10 +156,102 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\tif !strings.HasSuffix(line.File.Name, wantFile) || line.Line != wantLine {\n \t\t\t\tt.Errorf(\"%#x is %s:%d, want %s:%d\", addr, line.File.Name, l... | 2025-12-06T23:06:11 |
facebook/react | 71797c871b6bfa45988cba38f3388bac095b26cf | 9d795d3808f3202b36740a7a8eb60567bd7f6d90 | [Fizz] Ignore error if content node is gone (#33068)
We normally expect the segment to exist whatever the client does while
streaming. However, when hydration errors at the root of the shell for a
whole document render, then we clear nodes from body which can include
our segments. We don't need them anymore because we... | [
{
"path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js",
"patch": "@@ -4,7 +4,7 @@\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c... | 2025-04-30T21:51:39 |
nodejs/node | b8ea0e8e8505fa68f1fb7ae6af78c1ba9190e455 | c08164d016bafa162be02a294f74d6b0fdbe3c1a | process: fix default `env` for `process.execve`
The `env` parameter for `process.execve` is documented to default
to `process.env`.
PR-URL: https://github.com/nodejs/node/pull/60029
Refs: https://github.com/nodejs/build/pull/4156
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonma... | [
{
"path": "lib/internal/process/per_thread.js",
"patch": "@@ -279,7 +279,7 @@ function wrapProcessMethods(binding) {\n return true;\n }\n \n- function execve(execPath, args = [], env) {\n+ function execve(execPath, args = [], env = process.env) {\n emitExperimentalWarning('process.execve');\n \n... | 2025-10-01T12:47:07 |
electron/electron | 035879357ecdaa60b9e06185fca5375d161542fd | e4c37e4b38195bd0cf7f0ae8257ac6d7fd5e4603 | chore: bump chromium to 139.0.7256.0 (main) (#47481)
* chore: bump chromium in DEPS to 139.0.7242.0
* chore: update render_widget_host_view_mac.patch
no code changes; just updating patch context
Do a cleanup pass on the history swiper code | https://chromium-review.googlesource.com/c/chromium/src/+/6604367
* chore... | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -57,8 +57,19 @@ runs:\n sudo rm -rf $TMPDIR/del-target\n \n sudo rm -rf /Applications/Safari.app\n+ sudo rm -rf /Applications/Xcode_16.1.app\n+ sudo rm -rf /Applications/Xcode_16.3.app\n+ sudo rm -rf /... | 2025-06-25T15:12:49 |
vercel/next.js | d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5 | 59c48b73b4a01b4b5b9277eff1e62d75097ba812 | fix: CSRF origin matching should be case-insensitive (#89127)
## Summary
This PR fixes ~two~ one bug~s~ in the `isCsrfOriginAllowed` function used for
Server Actions CSRF protection:
1. **Case sensitivity bug**: Domain matching was case-sensitive, but DNS
names are case-insensitive per [RFC
1035](https://datatracker... | [
{
"path": "packages/next/src/server/app-render/csrf-protection.test.ts",
"patch": "@@ -77,4 +77,13 @@ describe('isCsrfOriginAllowed', () => {\n expect(isCsrfOriginAllowed('vercel.com', ['*'])).toBe(false)\n expect(isCsrfOriginAllowed('vercel.com', ['**'])).toBe(false)\n })\n+\n+ it('should match ... | 2026-01-29T23:49:55 |
golang/go | 4122d3e9ea55c8d2293e0a0c59cd6e467021c9e0 | 34397865b1174f4d4b33941877a5906e50965b3b | runtime: use atomic C types with atomic C functions
Mark types as _Atomic - fixes breakage introduced in CL 726964
across most LLVM based platforms/builders.
Change-Id: I5e64b9ccb0cf5244977a787a52ee124bc03c10de
Reviewed-on: https://go-review.googlesource.com/c/go/+/728040
LUCI-TryBot-Result: Go LUCI <golang-scoped@lu... | [
{
"path": "src/runtime/testdata/testprogcgo/notingo.go",
"patch": "@@ -14,8 +14,8 @@ package main\n \n extern void Ready();\n \n-static int spinning;\n-static int released;\n+static _Atomic int spinning;\n+static _Atomic int released;\n \n static void* enterGoThenSpinTwice(void* arg __attribute__ ((unused))... | 2025-12-08T13:11:55 |
facebook/react | 9d795d3808f3202b36740a7a8eb60567bd7f6d90 | 12f4cb85c5847758ece81fc95b7eaedc1fb9ebd0 | [compiler][bugfix] expand StoreContext to const / let / function variants (#32747)
```js
function Component() {
useEffect(() => {
let hasCleanedUp = false;
document.addEventListener(..., () => hasCleanedUp ? foo() : bar());
// effect return values shouldn't be typed as frozen
return () => {
has... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -3609,31 +3609,40 @@ function lowerAssignment(\n \n let temporary;\n if (builder.isContextIdentifier(lvalue)) {\n- if (kind !== InstructionKind.Reassign && !isHoistedIdentifier) {\n- if (k... | 2025-04-30T21:18:58 |
electron/electron | 51fbc964a65455e1f7533538bdafd2a1c896faef | 3e8e87d186ab3b7c79d2b96b931e2bf98fda3f26 | fix: ensure `/dev/null` fd is closed on failure (#47525)
* fix: ensure /dev/null fd is closed on failure
* chore: ignore closehandle for windows
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/api/electron_api_utility_process.cc",
"patch": "@@ -78,6 +78,9 @@ UtilityProcessWrapper::UtilityProcessWrapper(\n base::FileHandleMappingVector fds_to_remap;\n #endif\n for (const auto& [io_handle, io_type] : stdio) {\n+ if (io_handle == IOHandle::STDIN)\n+ continue;\n+\... | 2025-06-24T15:44:50 |
nodejs/node | 2e2f4cd095ff932789ed5fbdbe871babae6833b7 | 0cc1304489a1bccd204ff0a30c6b020b3b8d10de | src: remove unnecessary `std::string` error messages
If we can just use the classic `THROW_...()` methods directly,
without needing to allocate an `std::string` for the message/format
parameter, let's just do so.
PR-URL: https://github.com/nodejs/node/pull/60057
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed... | [
{
"path": "src/node_file.cc",
"patch": "@@ -3260,24 +3260,25 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n if (!error_code) {\n // Check if src and dest are identical.\n if (std::filesystem::equivalent(src_path, dest_path)) {\n- std::string message = \"src and d... | 2025-09-28T03:08:59 |
vercel/next.js | 59c48b73b4a01b4b5b9277eff1e62d75097ba812 | dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a | test: add resume-data-cache failing deploy test (#89243)
This deployment test has been failing very recently. This PR adds the test case to the deployment test manifest to unblock sync. Will continue deflaking at this PR at https://github.com/vercel/next.js/pull/89187
x-ref: [Datadog](https://app.datadoghq.com/ci/t... | [
{
"path": "test/deploy-tests-manifest.json",
"patch": "@@ -86,6 +86,11 @@\n },\n \"test/e2e/middleware-rewrites/test/index.test.ts\": {\n \"failed\": [\"Middleware Rewrite should handle catch-all rewrite correctly\"]\n+ },\n+ \"test/e2e/app-dir/resume-data-cache/resume-data-cache.test.ts... | 2026-01-29T23:37:16 |
golang/go | 34397865b1174f4d4b33941877a5906e50965b3b | d4972f6295aede2ddc35bcb1da5f6351623e9e4d | runtime: deflake TestProfBufWakeup
If CI infrastructure is oversubscribed, the profile buffer reader can be
blocked long enough for the status in the traceback to be something like
"[syscall, 3 minutes]", rather than the "[syscall]" we are looking for.
Tweak the regexp to look for the expected state at the beginning o... | [
{
"path": "src/runtime/profbuf_test.go",
"patch": "@@ -232,11 +232,14 @@ func TestProfBufWakeup(t *testing.T) {\n \t// The reader shouldn't wake up for this\n \tb.Write(nil, 1, []uint64{1, 2}, []uintptr{3, 4})\n \n-\t// The reader should still be blocked\n-\t//\n-\t// TODO(nick): this is racy. We could Gosc... | 2025-12-06T15:09:38 |
facebook/react | 12f4cb85c5847758ece81fc95b7eaedc1fb9ebd0 | 90a124a9802a5ab6509d5838e65b9f4d4fbbc16b | [compiler][bugfix] Returned functions are not always frozen (#33047)
Fixes an edge case in React Compiler's effects inference model.
Returned values should only be typed as 'frozen' if they are (1) local
and (2) not a function expression which may capture and mutate this
function's outer context. See test fixtures fo... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -111,7 +111,10 @@ export default function inferReferenceEffects(\n * Initial state contains function params\n * TODO: include module declarations here as well\n */\n- const initialState =... | 2025-04-30T19:50:54 |
vercel/next.js | dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a | 1565d63467e140d874fd28dd0842e2966dff8208 | test: add client-cache.defaults failing deploy test (#89242)
This deployment test has been failing very recently since the first
attempt of
[v16.1.5](https://github.com/vercel/next.js/actions/runs/21373599266/attempts/2).
Tried deflaking at https://github.com/vercel/next.js/pull/87412, but
seems to have no effect. Thi... | [
{
"path": "test/deploy-tests-manifest.json",
"patch": "@@ -3,7 +3,8 @@\n \"suites\": {\n \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n \"failed\": [\n- \"app dir client cache semantics (default semantics) prefetch={true} should re-use the cache for the full page... | 2026-01-29T23:36:38 |
electron/electron | 93d5152a25eeb74e7bee54b228aaa998acafe391 | fb651242348cb3931534993124d2c334156bf9c5 | fix: `chrome://accessibility` loading correctly (#47497)
fix: chrome://accessibility loading correctly | [
{
"path": "shell/browser/ui/webui/accessibility_ui.cc",
"patch": "@@ -41,6 +41,7 @@\n #include \"shell/browser/window_list.h\"\n #include \"ui/accessibility/accessibility_features.h\"\n #include \"ui/accessibility/ax_updates_and_events.h\"\n+#include \"ui/accessibility/platform/ax_platform.h\"\n #include \"... | 2025-06-23T12:38:29 |
nodejs/node | 3c36ad0b7c65afca7ba085d4292b90de9aab6b7e | c2536adc287d4c9af36ed6f4e79a96a24e214fba | deps: update amaro to 1.1.4
PR-URL: https://github.com/nodejs/node/pull/60044
Fixes: https://github.com/nodejs/node/issues/60007
Fixes: https://github.com/nodejs/node/issues/59737
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Colin Ihrig <cjihr... | [
{
"path": "deps/amaro/dist/package.json",
"patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.13.5\",\n+ \"version\": \"1.13.20\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",",
"add... | 2025-09-29T07:35:13 |
facebook/react | 62960c67c84da7e85d7515ef8447cea0ba0824a6 | cd4e4d759975916a503d14abe46052f9f5826048 | Run Component Track Logs in the console.createTask() of the Fiber (#32809)
Stacked on #32736.
That way you can find the owner stack of each component that rerendered
for context.
In addition to the JSX callsite tasks that we already track, I also
added tracking of the first `setState` call before rendering.
We then... | [
{
"path": "packages/react-client/src/ReactFlightPerformanceTrack.js",
"patch": "@@ -78,14 +78,30 @@ export function logComponentRender(\n : 'error';\n const entryName =\n isPrimaryEnv || env === undefined ? name : name + ' [' + env + ']';\n- console.timeStamp(\n- entryName,\n- ... | 2025-04-30T02:17:17 |
golang/go | d4972f6295aede2ddc35bcb1da5f6351623e9e4d | 0d0d5c9a827bac4da9cf20da351791d217e84ebb | runtime: mark getfp as nosplit
When compiling with -l, we can't take a stack split here.
Fixes #76702
Change-Id: Ieab1225c6259c7f16bb5188aa84bff615d9db2e5
Reviewed-on: https://go-review.googlesource.com/c/go/+/728060
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submi... | [
{
"path": "src/runtime/os_wasm.go",
"patch": "@@ -142,6 +142,8 @@ func preemptM(mp *m) {\n \n // getfp returns the frame pointer register of its caller or 0 if not implemented.\n // TODO: Make this a compiler intrinsic\n+//\n+//go:nosplit\n func getfp() uintptr { return 0 }\n \n func setProcessCPUProfiler(h... | 2025-12-08T14:21:39 |
vercel/next.js | 1565d63467e140d874fd28dd0842e2966dff8208 | 2b0edf628e201b56bdeacc62a5fb3d2597132761 | refactor: Improve templates layout flexibility (#89245)
### What
Switches the `create-next-app` templates (`app-tw`, `app`) to flex-based
layouts instead of `min-height: 100vh`.
### Why
At Clerk, we ship a template on top of `create-next-app` that adds a
header with sign-in/sign-up links to the root layout. The cur... | [
{
"path": "packages/create-next-app/templates/app-tw/js/app/layout.js",
"patch": "@@ -18,9 +18,9 @@ export const metadata = {\n \n export default function RootLayout({ children }) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" className=\"h-full\">\n <body\n- className={`${geis... | 2026-01-29T23:33:26 |
electron/electron | fb651242348cb3931534993124d2c334156bf9c5 | 93f4b3cf9ff4087ffdd1b6ce6e11df4f1de27013 | chore: fix nightly issues getting unsupported label comment (#47503)
* chore: fix nightly issues getting unsupported label comment
* chore: address review feedback | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -60,6 +60,8 @@ jobs:\n // It's possible for multiple versions to be listed -\n // for now check for comma or space separated version.\n const versions = electronVersion.split(/, | /);\n+ let h... | 2025-06-23T12:22:41 |
nodejs/node | 413693481fbe29d712da9de38051ed4e6874aaf1 | 075936b4133ec0d2cdb06ae21beed62edb2edf5f | sqlite: replace `ToLocalChecked` and improve filter error handling
PR-URL: https://github.com/nodejs/node/pull/60028
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -1763,21 +1763,27 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo<Value>& args) {\n \n Local<Function> filterFunc = filterValue.As<Function>();\n \n- context.filterCallback = [env,\n- filterFunc](std::stri... | 2025-09-26T17:04:05 |
facebook/react | cd4e4d759975916a503d14abe46052f9f5826048 | 18212ca960ee2f0acf538c2198f7ba36c3042ecd | Use console.timeStamp instead of performance.measure in Component Performance Track (#32736)
This is a new extension that Chrome added to the existing
`console.timeStamp` similar to the extensions added to
`performance.measure`. This one should be significantly faster because
it doesn't have the extra object indirecti... | [
{
"path": "packages/react-client/src/ReactFlightPerformanceTrack.js",
"patch": "@@ -7,52 +7,35 @@\n * @flow\n */\n \n+/* eslint-disable react-internal/no-production-logging */\n+\n import type {ReactComponentInfo} from 'shared/ReactTypes';\n \n import {enableProfilerTimer} from 'shared/ReactFeatureFlags';... | 2025-04-30T01:40:10 |
golang/go | c270e7183582600aa54dcc8bb14aeecf61fc4275 | 745349712e837ef77eb7b5a21c4d4e5c7ca0371a | cmd/go/internal/vet: skip -fix on pkgs from vendor or non-main mod
This change causes go fix (and go vet -fix) to skip applying fixes
to any package in the vendor/ tree, including the GOROOT vendor
packages that are part of std, and to any package from a non-main
module (since these usually come from the readonly modu... | [
{
"path": "src/cmd/go/internal/vet/vet.go",
"patch": "@@ -262,6 +262,15 @@ func run(ctx context.Context, cmd *base.Command, args []string) {\n \t// will only be executed in VetxOnly mode, for facts but not\n \t// diagnostics.\n \tfor _, p := range pkgs {\n+\t\t// Don't apply fixes to vendored packages, incl... | 2025-12-05T17:41:21 |
vercel/next.js | b0ebf2a822dd82283d2122323c3d51682dbcb13b | 0e457e95a96089eea85159635d7b75838699dd87 | fix: fully static pages should emit & serve static rsc payloads (#89202)
This restores fast navigations to fully static PPR routes in Cache
Components, even when prefetch hasn’t completed or `prefetch={false}` is
used. In legacy versions of PPR, the `prefetchDataRoute` entries would
be populated with `.prefetch.rsc` v... | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -1233,6 +1233,7 @@ export async function handleBuildComplete({\n initialHeaders,\n initialStatus,\n dataRoute,\n+ prefetchDataRoute,\n renderingMode,\n allowHeader,\n ... | 2026-01-29T22:26:40 |
electron/electron | 90a14299fd34d7c70b14e74dddb4ffb5d754c0e2 | 60924690d9a8f872a2890d1c98f245f954d55ad5 | ci: fix sending Slack message in CI audit workflow (#47494) | [
{
"path": ".github/workflows/audit-branch-ci.yml",
"patch": "@@ -136,7 +136,7 @@ jobs:\n \n await core.summary.write();\n - name: Send Slack message if errors\n- if: ${{ steps.audit-errors.outputs.errorsFound && github.ref == 'refs/heads/main' }}\n+ if: ${{ always() && steps.... | 2025-06-23T09:23:39 |
nodejs/node | b51fd73e105ec8a5df10298eb980e5fcfba61f0d | 9ac571d0d5b33706329ea26daac5e82c1f050897 | test: fix typo of test-benchmark-readline.js
"bechmark" -> "benchmark" in test-benchmark-readline.js.
And fix test name in test-benchmark-validators.js.
PR-URL: https://github.com/nodejs/node/pull/59993
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Uli... | [
{
"path": "test/benchmark/test-benchmark-validators.js",
"patch": "@@ -2,7 +2,7 @@\n \n require('../common');\n \n-// Minimal test for assert benchmarks. This makes sure the benchmarks aren't\n+// Minimal test for validators benchmarks. This makes sure the benchmarks aren't\n // completely broken but nothin... | 2025-09-23T15:22:19 |
golang/go | 745349712e837ef77eb7b5a21c4d4e5c7ca0371a | f3d572d96a25d1a0956ef828c0ff510ebf214d22 | runtime: don't count nGsyscallNoP for extra Ms in C
In #76435, it turns out that the new metric
/sched/goroutines/not-in-go:goroutines counts C threads that have called
into Go before (on Linux) as not-in-go goroutines. The reason for this
is that the M is still attached to the C thread on Linux as an
optimization, so... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -1584,3 +1584,18 @@ func TestReadMetricsSched(t *testing.T) {\n \t\tt.Fatalf(\"output:\\n%s\\n\\nwanted:\\n%s\", output, want)\n \t}\n }\n+\n+func TestNotInGoMetricCallback(t *testing.T) {\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\t... | 2025-12-04T23:27:03 |
facebook/react | 18212ca960ee2f0acf538c2198f7ba36c3042ecd | 88b976740467f9dfabae03c79a8eff9033c35050 | [Fizz] Outline if a boundary would add too many bytes to the next completion (#33029)
Follow up to #33027.
This enhances the heuristic so that we accumulate the size of the
currently written boundaries. Starting from the size of the root (minus
preamble) for the shell.
This ensures that if you have many small bounda... | [
{
"path": "fixtures/ssr/server/render.js",
"patch": "@@ -19,7 +19,7 @@ class ThrottledWritable extends Writable {\n constructor(destination) {\n super();\n this.destination = destination;\n- this.delay = 150;\n+ this.delay = 10;\n }\n \n _write(chunk, encoding, callback) {\n@@ -49,10 +49... | 2025-04-29T23:13:28 |
rust-lang/rust | 304a197ba5d18bf837f822f8f9d7a7a3f3e3c897 | e613b82e4eaed11edddfc90024a5e51c807ece42 | Revert "fixup span in obligation cause"
This reverts commit 2d411a0faad447b5bfc968b954fd3e9c10596325. | [
{
"path": "compiler/rustc_trait_selection/src/solve.rs",
"patch": "@@ -57,7 +57,7 @@ fn try_eagerly_normalize_alias<'a, 'tcx>(\n let obligation = Obligation::new(\n tcx,\n // we ignore the error anyway\n- ObligationCause::dummy_with_span(span),\n+ ObligationCause::dummy(),\... | 2026-03-23T11:09:34 |
electron/electron | 626895848eecd40ead822ad0ed47aab125fedba8 | 3536d4976a3e42f1b96210b77b12d2545cd4b08c | fix: utilityProcess running user script after process.exit is called (#47469)
* fix: utilityProcess running user script after process.exit is called
* docs: update breaking changes
* chore: update spec
* chore: update spec/api-utility-process-spec.ts
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
* chore... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -36,6 +36,16 @@ process.on('unhandledRejection', () => {\n })\n ```\n \n+### Behavior Changed: `process.exit()` kills utility process synchronously\n+\n+Calling `process.exit()` in a utility process will now kill the utility process synchronously.\n+This br... | 2025-06-17T19:36:22 |
nodejs/node | d3ee5d9b2bc48643b16f87f4a55e198e751260d5 | 3312e4e946795dab00ccbab093f8b9897a355c7a | doc: fix typo of built-in module specifier in worker_threads
node:: -> node:
PR-URL: https://github.com/nodejs/node/pull/59992
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -1990,10 +1990,10 @@ worker.on('online', async () => {\n `await using` example.\n \n ```cjs\n-const { Worker } = require('node::worker_threads');\n+const { Worker } = require('node:worker_threads');\n \n const w = new Worker(`\n- const { parentPort } = re... | 2025-09-25T15:31:20 |
vercel/next.js | f17694d61ff6b980721746ac6c9efa224ea01316 | 0e1b6d6afcd3a265392b5559ff15491ea4b3fb9f | Optimistic routing: client-side route prediction (#88965)
Based on:
- https://github.com/vercel/next.js/pull/88834
- https://github.com/vercel/next.js/pull/88989
- https://github.com/vercel/next.js/pull/88998
---
Adds optimistic routing, enabling the client to predict route structure
for URLs that haven't been pref... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -357,6 +357,8 @@ export function getDefineEnv({\n config.experimental.transitionIndicator ?? false,\n 'process.env.__NEXT_GESTURE_TRANSITION':\n config.experimental.gestureTransition ?? false,\n+ 'process.env.__NEXT_OPTIMISTI... | 2026-01-29T22:05:28 |
facebook/react | 88b976740467f9dfabae03c79a8eff9033c35050 | 0038c501a307e5ddc0cb80027e55740ddda09520 | Hack to recover from reading the wrong Fiber (#33055)
`requestFormReset` incorrectly tries to get the current dispatch queue
from the Fiber. However, the Fiber might be the workInProgress which is
an inconsistent state.
This hack just tries the other Fiber if it detects one of the known
inconsistent states but there ... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -3355,8 +3355,16 @@ export function requestFormReset(formFiber: Fiber) {\n );\n }\n \n- const stateHook = ensureFormComponentIsStateful(formFiber);\n+ let stateHook: Hook = ensureFormComponentIsStateful(formFiber);\n const ... | 2025-04-29T17:36:19 |
rust-lang/rust | 5f2790c3412994b7aaef5ccf350030cd6c4a6ede | bbe853615821442ef11d6cd42a30a73432b38d89 | using rustc in the middle of an attrpath errors | [
{
"path": "tests/ui/attributes/rustc-in-attr-path.rs",
"patch": "@@ -0,0 +1,9 @@\n+mod rustc {\n+ pub use std::prelude::v1::test;\n+}\n+\n+#[crate::rustc::test]\n+//~^ ERROR: attributes starting with `rustc` are reserved for use by the `rustc` compiler\n+fn foo() {}\n+\n+fn main() {}",
"additions": 9... | 2026-03-07T09:16:12 |
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.