repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
golang/go
d00e96d3aeccb11c373d125418316f0b019f4fb0
cfc024daebb84b1864f538d60659691ccf3acf30
internal/cpu: repair VNNI feature check This is a pain to test. Also the original test was never executed, because it was wrong. It looks like processors that might lack this features include Intel 11th generation and AMD Zen 4. These might or might not have bit 2 set in the 7th cpuid "leaf" (SM4) which is what the ...
[ { "path": "src/internal/cpu/cpu_x86.go", "patch": "@@ -219,7 +219,7 @@ func doinit() {\n \tif eax7 >= 1 {\n \t\teax71, _, _, _ := cpuid(7, 1)\n \t\tif X86.HasAVX {\n-\t\t\tX86.HasAVXVNNI = isSet(4, eax71)\n+\t\t\tX86.HasAVXVNNI = isSet(eax71, cpuid_AVXVNNI)\n \t\t}\n \t}\n ", "additions": 1, "deleti...
2025-12-18T18:18:14
facebook/react
bfc8801e0f0bfacb46bc71244e8244736bd995f4
d2a288febf61a1755b78ce98b3cb17dd412b81e3
[Flight] Write Debug Info to Separate Priority Queue (#33654) This writes all debug info to a separate priority queue. In the future I'll put this on a different channel. Ideally I think we'd put it in the bottom of the stream but because it actually blocks the elements from resolving anyway it ends up being better t...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -764,6 +764,78 @@ function getTaskName(type: mixed): string {\n }\n }\n \n+function initializeElement(response: Response, element: any): void {\n+ if (!__DEV__) {\n+ return;\n+ }\n+ const stack = element._debugStack;\n+ const ...
2025-06-27T13:45:11
electron/electron
09ab71de4325b1f2521b16fc43eddacc09af6096
21b325b0348098ec5bc4b267c37a9f4e14ee7bec
fix: deprecation warning crash when no Node.js environment available (#47700)
[ { "path": "shell/common/node_util.cc", "patch": "@@ -66,8 +66,13 @@ void EmitWarning(const std::string_view warning_msg,\n void EmitWarning(v8::Isolate* isolate,\n const std::string_view warning_msg,\n const std::string_view warning_type) {\n- node::ProcessEmitWarningGener...
2025-07-16T10:45:59
vercel/next.js
446e1112a6af484042f2f0d196965e680430e89d
c2214e7aae0b6ef98b122fea7efc3675a5473182
Fix indentation of types of tests in docs (#89409) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/testing/index.mdx", "patch": "@@ -8,8 +8,8 @@ In React and Next.js, there are a few different types of tests you can write, ea\n ## Types of tests\n \n - **Unit Testing** involves testing individual units (or blocks of code) in isolation. In React, a unit can be a single fun...
2026-02-03T20:48:44
golang/go
b8c4cc63e77bd457dffa6ec83a3ff65382dac94b
8564fede8929df5bbf9f10d35ff9d3620683ca80
runtime: keep track of secret allocation size During a naive attempt to test the new runtime/secret package, I tried wrapping the entire handshake in a secret.Do call. This lead to a panic because some of the allocator logic had been previously untested. freeSpecial takes p and size, but they can be misleading. They ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1213,7 +1213,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tif goexperiment.RuntimeSecret && gp.secret > 0 {\n \t\t// Mark any object allocated while in secret mode as secret.\n \t\t// This ensures we zero it immediately when...
2025-12-16T13:50:57
facebook/react
d2a288febf61a1755b78ce98b3cb17dd412b81e3
4db4b21c63ebc4edc508c5f7674f9df50d8f9744
Include Component Props in Performance Track (#33655) Similar to how we can include a Promise resolved value we can include Component Props. For now I left out props for Client Components for perf unless they error. I'll try it for Client Components in general in a separate PR. <img width="730" alt="Screenshot 2025-...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -100,7 +100,7 @@ import {getOwnerStackByComponentInfoInDev} from 'shared/ReactComponentInfoStack'\n \n import {injectInternals} from './ReactFlightClientDevToolsHook';\n \n-import {OMITTED_PROP_ERROR} from './ReactFlightPropertyAccess'...
2025-06-27T12:45:56
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
b08049ccf54ecd95033d89f82b1261e4142a2dbc
fe174a322fd65f61b51efc7525c605334b93c30f
[Codemod] Fix agents-md on Windows (#89319) Fixes #89240 The `agents-md` codemod failed on Windows because it assumed forward slashes in file paths. This caused the doc tree builder to skip files, resulting in an empty index being injected into `AGENTS.md`. The path handling code used string operations like `.split(...
[ { "path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js", "patch": "@@ -0,0 +1,294 @@\n+/* global jest */\n+jest.autoMockOff()\n+\n+const fs = require('fs')\n+const path = require('path')\n+const os = require('os')\n+const { runAgentsMd } = require('../../bin/agents-md')\n+\n+/**\n+ * TRUE E2E ...
2026-02-03T18:21:05
electron/electron
cc9ca4bee2ad3035b2400e10d4ba4f64b8c4662b
17dba93587360ea398cd1a3b2bc6407c20e31a95
docs: add `Menu` module tutorials (#47268) * docs: add `Menu` module tutorials * link API docs to new tutorials * removed unreferenced fiddles * add wording for new types * fix import sort errors * delete accelerator.md * fixes
[ { "path": ".markdownlint-cli2.jsonc", "patch": "@@ -21,7 +21,9 @@\n \"ul\",\n \"unknown\",\n \"Tabs\",\n- \"TabItem\"\n+ \"TabItem\",\n+ \"DocCardList\",\n+ \"kbd\"\n ]\n },\n \"no-newline-in-links\": true", "additions": 3, "deletions...
2025-07-15T22:09:32
golang/go
8564fede8929df5bbf9f10d35ff9d3620683ca80
eecdb61eebabc083f588a349d4ce5ac2defaf2ca
cmd/go: remove reference to no longer existing -i flag The flag was removed in CL 416094. Fixes #76850 Change-Id: Ia219b4d2d8391f08487b4ff1bbec43766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/730721 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1954,7 +1954,7 @@\n //\n //\t-o file\n //\t Save a copy of the test binary to the named file.\n-//\t The test still runs (unless -c or -i is specified).\n+//\t The test still runs (unless -c is specified).\n //\t If file ends in a slash or names a...
2025-12-17T16:30:52
facebook/react
4db4b21c63ebc4edc508c5f7674f9df50d8f9744
31d91651e042e4939021f21a3d8799c13684a84b
Fix typo "Complier" to "Compiler" and remove duplicate issue reference (#33653) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitt...
[ { "path": "CHANGELOG.md", "patch": "@@ -19,11 +19,11 @@ An Owner Stack is a string representing the components that are directly respons\n * Updated `useId` to use valid CSS selectors, changing format from `:r123:` to `«r123»`. [#32001](https://github.com/facebook/react/pull/32001)\n * Added a dev-only warn...
2025-06-26T15:34:45
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
e6b92947a86e3e2173fccdaab0deadc5d3bcca39
2f2a71d6f53d4d18cc81eac6fa25c7e160555bc9
Rename CACHE_ONE_YEAR for clarity and fix usage (#89450) This renames the variable for clarity as we've had issues with unit mismatch with this constant specifically. Also fixes usage which was working accidentally because we converted it to a negative unit which is always in the past. x-ref: [slack thread](https://v...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -33,7 +33,7 @@ import type {\n } from '..'\n \n import {\n- CACHE_ONE_YEAR,\n+ CACHE_ONE_YEAR_SECONDS,\n HTML_CONTENT_TYPE_HEADER,\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n@@ -2012,7 +2012,7 @@ export async functio...
2026-02-03T17:58:09
electron/electron
17dba93587360ea398cd1a3b2bc6407c20e31a95
603cafad7e82aa33485fb31e179ae0f116e26c7b
fix: missing SQLite builtin support in Node.js (#47706) https://github.com/nodejs/node/pull/58122
[ { "path": "patches/node/build_add_gn_build_files.patch", "patch": "@@ -24,7 +24,7 @@ index 4560bac7b8e3c707ecea5a425f642efb9de9ed36..e9c2a4391f4058a21a259cacaac4fde5\n o['variables']['v8_enable_external_code_space'] = 1 if options.enable_pointer_compression else 0\n o['variables']['v8_enable_31bit_smi...
2025-07-15T13:39:16
golang/go
516699848b7c19b2b7f80de82c66012719f6835b
8c28ab936a1042fad8531583ff7737aa361e324a
runtime/secret: warn users about allocations, loosen guarantees The discussion at #76477 warranted some stronger documentation about what is expected from users of the secret package. In addition, #76764 presented a problem about when a user can expect their secrets to be deleted. Fix by loosening the guarantee to wh...
[ { "path": "src/runtime/secret/doc.go", "patch": "@@ -0,0 +1,15 @@\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 goexperiment.runtimesecret\n+\n+// Package secret contains he...
2025-12-10T10:13:05
facebook/react
9894c488e0d9a4d9759d80ba8666d4d094b894e9
cee7939b0017ff58230e19663c22393bfd9025ef
[compiler] Fix bug with reassigning function param in destructuring (#33624) Closes #33577, a bug with ExtractScopeDeclarationsFromDestructuring and codegen when a function param is reassigned. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](h...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -349,11 +349,9 @@ function codegenReactiveFunction(\n fn: ReactiveFunction,\n ): Result<CodegenFunction, CompilerError> {\n for (const param of fn.params) {\n- if (param.kind === 'Ide...
2025-06-25T18:10:09
vercel/next.js
7437fed8bf2551298c8273cb247dd3ba71267581
b91cf900ed2fac0bbaae17d1bbee8d8eb650a2f1
Snippet multi package syntax (#89381) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improvin...
[ { "path": "docs/01-app/02-guides/package-bundling.mdx", "patch": "@@ -29,10 +29,22 @@ The Next.js Bundle Analyzer is integrated with Turbopack's module graph. You can\n \n To get started, run the following command and open up the interactive view in your browser.\n \n-```bash filename=\"Terminal\"\n+```bash...
2026-02-03T00:56:05
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
golang/go
8c28ab936a1042fad8531583ff7737aa361e324a
65b71c11d469029f755328c5e51742139f6b8686
cmd/cgo: don't emit C local if it is not used Fixes #76861 Change-Id: Icc8452e48ed736e8240f8afea18637c33b8e3ef8 Reviewed-on: https://go-review.googlesource.com/c/go/+/730600 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed...
[ { "path": "src/cmd/cgo/internal/test/issue76861.go", "patch": "@@ -0,0 +1,12 @@\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 cgo\n+\n+package cgotest\n+\n+// Issue 43639: N...
2025-12-17T00:00:36
facebook/react
cee7939b0017ff58230e19663c22393bfd9025ef
b42341ddc757129db062298f9fe3ad041c580d2a
[Fizz] Push a stalled await from debug info to the ownerStack/debugTask (#33634) If an aborted task is not rendering, then this is an async abort. Conceptually it's as if the abort happened inside the async gap. The abort reason's stack frame won't have that on the stack so instead we use the owner stack and debug tas...
[ { "path": "packages/react-server/src/ReactFizzComponentStack.js", "patch": "@@ -7,7 +7,7 @@\n * @flow\n */\n \n-import type {ReactComponentInfo} from 'shared/ReactTypes';\n+import type {ReactComponentInfo, ReactAsyncInfo} from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\...
2025-06-25T15:14:49
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
golang/go
65b71c11d469029f755328c5e51742139f6b8686
ea1aa765540e17043f817919febad262cf061ad8
crypto/internal/fips140only: test fips140=only mode Fixes #70514 Updates #70878 Change-Id: I6a6a46561d872c8f7e9ea333ff208064b0bd44c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/728506 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <fi...
[ { "path": "src/crypto/internal/fips140only/fips140only_test.go", "patch": "@@ -0,0 +1,408 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package fips140only_test\n+\n+import (\n+\t\"...
2024-12-28T21:32:59
facebook/react
e67b4fe22e0c3c267303ee6737aec1db48055022
4a523489b7dc64cd397f619e50223edda1b9a321
[Flight] Emit Partial Debug Info if we have any at the point of aborting a render (#33632) When we abort a render we don't really have much information about the task that was aborted. Because before a Promise resolves there's no indication about would have resolved it. In particular we don't know which I/O would've u...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -75,6 +75,7 @@ import type {\n AsyncSequence,\n IONode,\n PromiseNode,\n+ UnresolvedPromiseNode,\n } from './ReactFlightAsyncSequence';\n \n import {\n@@ -734,6 +735,12 @@ function serializeDebugThenable(\n }\n }\n \n+ if...
2025-06-24T20:36:21
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
golang/go
ea1aa765540e17043f817919febad262cf061ad8
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
go/doc: exclude examples with results Fixes #36185 Change-Id: I7634744e62e00023367ed48a4700b61a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729902 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by...
[ { "path": "src/go/doc/example.go", "patch": "@@ -74,6 +74,9 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif params := f.Type.Params; len(params.List) != 0 {\n \t\t\t\tcontinue // function has params; not a valid example\n \t\t\t}\n+\t\t\tif results := f.Type.Results; results != nil && len(r...
2025-12-14T20:02:33
facebook/react
4a523489b7dc64cd397f619e50223edda1b9a321
94cf60bede7cd6685e07a4374d1e3aa90445130b
Get Server Component Function Location for Parent Stacks using Child's Owner Stack (#33629) This is using the same trick as #30798 but for runtime code too. It's essential zero cost. This lets us include a source location for parent stacks of Server Components when it has an owned child's location. Either from JSX or...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2739,9 +2739,15 @@ function initializeFakeStack(\n // $FlowFixMe[cannot-write]\n debugInfo.debugStack = createFakeJSXCallStackInDEV(response, stack, env);\n }\n- if (debugInfo.owner != null) {\n+ const owner = debugInfo.ow...
2025-06-24T20:35:28
vercel/next.js
286e2431764add1ba9d51f74f215b54b5da76945
151b415c9df66847936e66421bae463a83e173b8
Restore default-enabled Server Function logging (#89407) Restores Server Function logging to be enabled by default during development, as originally implemented in #88277. The change to opt-in in #89321 was overly conservative. The implicit default in #88277 was an intentional design decision. Users can still opt out...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/logging.mdx", "patch": "@@ -35,17 +35,17 @@ module.exports = {\n \n ### Server Functions\n \n-You can enable logging of [Server Function](https://react.dev/reference/rsc/server-functions) invocations during development by setting `logging.s...
2026-02-02T18:13:51
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
rust-lang/rust
e897b4ea51835a9fae8bb12766363e7b55b41838
bfc05d6b072585dfd0c792ec1b8728c08a3511fe
tests/ui/async-await/drop-option-future.rs: New regression test The test began compiling with `nightly-2022-11-25`, and more specifically 9f36f988ad873f5. The test fails to compile with `nightly-2022-11-24`: $ rustc +nightly-2022-11-24 --edition 2018 tests/ui/async-await/drop-option-future.rs error[E0597]: `v...
[ { "path": "tests/ui/async-await/drop-option-future.rs", "patch": "@@ -0,0 +1,16 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/98077>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(dead_code)]\n+#![allow(unused_assignments)]\n+\n+async fn foo() {\n+ let mut f = None;\n+ ...
2026-03-20T19:56:17
golang/go
5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
crypto/tls: reject trailing messages after client/server hello For TLS 1.3, after procesesing the server/client hello, if there isn't a CCS message, reject the trailing messages which were appended to the hello messages. This prevents an on-path attacker from injecting plaintext messages into the handshake. Additiona...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -224,6 +224,9 @@ func (hc *halfConn) changeCipherSpec() error {\n \treturn nil\n }\n \n+// setTrafficSecret sets the traffic secret for the given encryption level. setTrafficSecret\n+// should not be called directly, but rather through the Conn setWriteTraffi...
2025-11-24T22:03:10
electron/electron
603cafad7e82aa33485fb31e179ae0f116e26c7b
09f269426e71950cf982f7fe00a26da9fb9dfe43
chore: bump chromium to 140.0.7281.0 (main) (#47616) * chore: bump chromium in DEPS to 140.0.7269.2 * chore: bump chromium in DEPS to 140.0.7270.0 * chore: bump chromium in DEPS to 140.0.7271.0 * chore: bump chromium in DEPS to 140.0.7273.0 * 6516731: [ExclusiveAccessForAndroid] remove unneeded includes & deps | h...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7261.0',\n+ '140.0.7281.0',\n 'node_version':\n 'v22.17.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "build/args/all.gn", "patch": ...
2025-07-14T20:42:37
facebook/react
94cf60bede7cd6685e07a4374d1e3aa90445130b
bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36
[compiler] New inference repros/fixes (#33584) Substantially improves the last major known issue with the new inference model's implementation: inferring effects of function expressions. I knowingly used a really simple (dumb) approach in InferFunctionExpressionAliasingEffects but it worked surprisingly well on a ton ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1770,6 +1770,10 @@ export function isUseStateType(id: Identifier): boolean {\n return id.type.kind === 'Object' && id.type.shapeId === 'BuiltInUseState';\n }\n \n+export function isJsxType(type: Type): boolean {\n+ re...
2025-06-24T17:01:58
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
vercel/next.js
151b415c9df66847936e66421bae463a83e173b8
0fca1fa062316d34144e6c50b0bcf65182213c43
docs: Fix custom server code snippets (#89400) I noticed the snippets were slightly broken when copying them to an app. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right...
[ { "path": "docs/01-app/02-guides/custom-server.mdx", "patch": "@@ -17,7 +17,6 @@ Take a look at the [following example](https://github.com/vercel/next.js/tree/ca\n \n ```ts filename=\"server.ts\" switcher\n import { createServer } from 'http'\n-import { parse } from 'url'\n import next from 'next'\n \n cons...
2026-02-02T18:12:59
rust-lang/rust
577dba9093034117b63e4c29147d29ceae1c32c6
1e2183119f0ee19cc26df899e26b04ad0de3475d
Skip stack_start_aligned for immediate-abort This improves startup performance by 16%, shown by an optimized hello-world program. glibc's `pthread_getattr_np` performs expensive syscalls when reading `/proc/self/maps`. That is all wasted with `panic = immediate-abort` active because `init()` immediately discards the r...
[ { "path": "library/std/src/sys/pal/unix/stack_overflow.rs", "patch": "@@ -429,6 +429,11 @@ mod imp {\n \n #[forbid(unsafe_op_in_unsafe_fn)]\n unsafe fn install_main_guard_linux(page_size: usize) -> Option<Range<usize>> {\n+ // See the corresponding conditional in init().\n+ // Avoid st...
2026-03-16T02:00:52
golang/go
3f6eabdf09cd660c7881b75c5dfaef09609ba7e6
a4b5b92055d24da007ae13c4586aa0a229fa337b
cmd/compile: use unsigned constant when folding loads for SIMD ops with constants When folding loads into a SIMD op with a constant, in the SSA rules we use makeValAndOff to create an AuxInt for the constant and the offset. For the SIMD ops of concern (for now), the constants are always unsigned. So pass the constant ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -2511,30 +2511,30 @@\n (VPANDNQMasked128 x l:(VMOVDQUload128 {sym} [off] ptr mem) mask) && canMergeLoad(v, l) && clobber(l) => (VPANDNQMasked128load {sym} [off] x ptr mask mem)\n (VPANDNQMasked256 x l:(VMOVDQUload256 {sym} [off] ptr...
2025-12-16T16:16:47
electron/electron
4a89068fb70c475cb7bc9fa09d1559a0ef1b52c9
137d4ec32969b03eca63a41fb3cecd858bb4cf25
ci: add `kTCCServiceAppleEvents` perm override to fix AppleScript errors (#47726) ci: add kTCCServiceAppleEvents perm override to fix AppleScript errors
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -103,6 +103,7 @@ jobs:\n \"'kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159\"\n \"'kTCCServiceCamera','/usr/local/opt/runner/provisione...
2025-07-13T19:05:52
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
b0facee66d1802a9d11bf7f1fc190e4f5cd096d8
d77e3d4cf3ba60457c5f764c4f73bebcb57c800f
Turbopack: Move PrettyPrintError to turbo_tasks and add tests (#89280) ### What? Move the error printing logic to turbo_tasks and add test cases for it
[ { "path": "Cargo.lock", "patch": "@@ -9431,6 +9431,7 @@ dependencies = [\n \"futures\",\n \"hashbrown 0.14.5\",\n \"indexmap 2.9.0\",\n+ \"indoc\",\n \"lmdb-rkv\",\n \"lzzzz\",\n \"once_cell\",", "additions": 1, "deletions": 0 }, { "path": "crates/next-napi-bindings/src/next_api/projec...
2026-02-02T07:56:53
rust-lang/rust
3b27a3660185f7644e1fbf1582637947e36036fa
d48e699b6cdcf76590a141ccf9fde84adb297176
Suggest appropriate spaces around `=` in `let` binding parse error
[ { "path": "compiler/rustc_parse/src/parser/stmt.rs", "patch": "@@ -1133,11 +1133,11 @@ impl<'a> Parser<'a> {\n } else {\n false\n };\n- if suggest_eq {\n+ ...
2026-03-20T19:45:29
electron/electron
137d4ec32969b03eca63a41fb3cecd858bb4cf25
624d0856324c20699ae0f3a60a2a34d1cc2bc8a1
build: cleanup symlinks in cache (#47727) * build: cleanup symlinks in cache * build: ignore broken links * try --ignore-failed-read * build: dont deref symlinks * build: add flag to 7zip to resolve symlink error Needed to ignore Dangerous symbolic link path was ignored errors * Revert "build: cleanup symlinks i...
[ { "path": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -96,7 +96,7 @@ runs:\n \n $TEMP_DIR=New-Item -ItemType Directory -Path temp-cache\n $TEMP_DIR_PATH = $TEMP_DIR.FullName\n- C:\\ProgramData\\Chocolatey\\bin\\7z.exe -y x $src_cache -o\"$TEMP_DIR_PATH\"\n+ C:\\Prog...
2025-07-11T20:13:12
facebook/react
bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36
12eaef7ef5fbf6c9d7ec6e16a04bc207a1a68b91
[Flight] Add Debug Channel option for stateful connection to the backend in DEV (#33627) This adds plumbing for opening a stream from the Flight Client to the Flight Server so it can ask for more data on-demand. In this mode, the Flight Server keeps the connection open as long as the client is still alive and there's ...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -104,6 +104,9 @@ async function renderApp(req, res, next) {\n if (req.headers['cache-control']) {\n proxiedHeaders['Cache-Control'] = req.get('cache-control');\n }\n+ if (req.get('rsc-request-id')) {\n+ proxiedHeaders['rsc-request-id'] =...
2025-06-24T15:16:09
golang/go
9ba0948172cbb05308fb2a9db823a720f8ffb9ad
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
cmd/link: don't create __x86.get_pc_thunk symbol if it already exists On 386, in some build modes we need to create the __x86.get_pc_thunk symbols, to support PC-relative addressing. In some situation the thunk symbols may already exist, e.g. loaded from a C object in internal linking mode. In this case, we should use...
[ { "path": "src/cmd/link/internal/x86/asm.go", "patch": "@@ -72,6 +72,9 @@ func gentext(ctxt *ld.Link, ldr *loader.Loader) {\n \t\t{\"di\", 7},\n \t} {\n \t\tthunkfunc := ldr.CreateSymForUpdate(\"__x86.get_pc_thunk.\"+r.name, 0)\n+\t\tif t := thunkfunc.Type(); t != 0 && t != sym.SXREF && t != sym.SDYNIMPORT ...
2025-12-15T18:45:28
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
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
rust-lang/rust
d48e699b6cdcf76590a141ccf9fde84adb297176
244322f0be1296f5ac4d6fc0dcc603b5ccab2832
Emit fewer errors for incorrect rtn and `=` -> `:` typos in bindings Stash parse errors when pasing rtn that doesn't use `(..)`. Emit single error on `Foo::bar(qux)` that looks like rtn in incorrect position and suggest `Foo::bar(..)`. ``` error: return type notation not allowed in this position yet --> $DIR/let-bin...
[ { "path": "compiler/rustc_ast_lowering/src/path.rs", "patch": "@@ -1,6 +1,7 @@\n use std::sync::Arc;\n \n use rustc_ast::{self as ast, *};\n+use rustc_errors::StashKey;\n use rustc_hir::def::{DefKind, PartialRes, PerNS, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::{self as hir, GenericArg};\n@@ -2...
2026-03-20T19:33:05
facebook/react
fa3feba6720c96ca10fb42d5f53a9b4fa9aa6ccd
2a911f27dd99c46778c27ba004f9d8fe898efd21
Fix prelease workflows for `dry: false` (#33582) ## Summary Follow-up to https://github.com/facebook/react/pull/33525 Fixes `Unsupported tag: "false"` (https://github.com/facebook/react/actions/runs/15773778995/job/44463562733#step:13:12) which also affects nightly releases. ## How did you test this change? - [x] ...
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -85,7 +85,7 @@ jobs:\n --skipTests \\\n --tags=${{ inputs.dist_tag }} \\\n --onlyPackages=${{ inputs.only_packages }} ${{ (inputs.dry && '') || '\\'}}\n- ${{ inputs.dry && '--dry'}}\n+ ...
2025-06-23T15:47:07
electron/electron
f2429c31c127f95c6bc2691c96f65c4283e9045d
fbb83be785bcb36047c4052099f0886e19bdcf82
build: ask bug reporters to check if it is a Chromium issue (#47702) * build: ask bug reporters to check if it is a Chromium issue Inspiration: https://github.com/electron/electron/issues/47672#issuecomment-3051298922 * build: fix options
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -58,6 +58,15 @@ body:\n label: Last Known Working Electron version\n description: What is the last version of Electron this worked in, if applicable?\n placeholder: 16.0.0\n+- type: dropdown\n+ attributes:\n+ label: Does the iss...
2025-07-10T15:47:04
golang/go
b7944a5f80b5aa7ad43730064cf4ebc8c473df47
6713f46426c70f601ac33471d16be7b0e1aae349
text/template: fix slice builtin for pointers to arrays The slice function now properly handles pointers to arrays by calling indirect() to dereference pointers, matching the behavior of the index function. Fixes #39596 Change-Id: Id4920edbfd8fd3df3a181b59a61733f88b0f104d Reviewed-on: https://go-review.googlesource....
[ { "path": "src/text/template/exec_test.go", "patch": "@@ -43,7 +43,8 @@ type T struct {\n \tSIEmpty []int\n \tSB []bool\n \t// Arrays\n-\tAI [3]int\n+\tAI [3]int\n+\tPAI *[3]int // pointer to array\n \t// Maps\n \tMSI map[string]int\n \tMSIone map[string]int // one element, for deterministic ou...
2025-12-05T20:50:24
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
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
electron/electron
31bc5ca903b35016649727326bf443ef11cc6e62
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
fix: default to system accent color on invalid user color (#47660) fix: default to system accent color on invalid user color"
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -656,7 +656,7 @@ bool BaseWindow::IsTabletMode() const {\n }\n \n void BaseWindow::SetBackgroundColor(const std::string& color_name) {\n- SkColor color = ParseCSSColor(color_name);\n+ SkColor color = ParseCSSColor(color_name).value_or...
2025-07-08T09:15:13
facebook/react
2a911f27dd99c46778c27ba004f9d8fe898efd21
18ee505e7791f2bb55f0e520667c51588df7ba48
[Flight] Send the awaited Promise to the client as additional debug information (#33592) Stacked on #33588, #33589 and #33590. This lets us automatically show the resolved value in the UI. <img width="863" alt="Screenshot 2025-06-22 at 12 54 41 AM" src="https://github.com/user-attachments/assets/a66d1d5e-0513-4767-9...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -33,12 +33,22 @@ function Foo({children}) {\n return <div>{children}</div>;\n }\n \n+async function delayedError(text, ms) {\n+ return new Promise((_, reject) =>\n+ setTimeout(() => reject(new Error(text)), ms)\n+ );\n+}\n+\n async function delay(t...
2025-06-23T14:12:45
golang/go
6713f46426c70f601ac33471d16be7b0e1aae349
388eb10f50f2b693fb68897dd0ddf627b512a885
archive/tar, compress/bzip2: base64 some troublesome testdata files This avoids complaints from scanners that look for and open tar and bz2 files, and complain if they look weird. In this case, they do look weird, because they are intentionally strange. This kind of thing shouldn't be necessary, but we already have th...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"hash/crc32\"\n+\t\"internal/obscuretestdata\"\n \t\"io\"\n \t\"maps\"\n \t\"math\"\n@@ -25,10 +26,11 @@ import (\n \n func TestReader(t *testing.T) {\n \tvectors := []struct {\n-\t\tfile stri...
2025-12-12T22:18:13
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
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
rust-lang/rust
3ea7d1ece76c0d207f3c7754140b07c2b7f5e549
4e446d55a40cae05284fc4118b18373e7dd71f02
fixing seperate empty arm and doc comment
[ { "path": "compiler/rustc_attr_parsing/src/attributes/stability.rs", "patch": "@@ -367,7 +367,7 @@ pub(crate) fn parse_stability<S: Stage>(\n }\n }\n \n-// Read the content of a `unstable`/`rustc_const_unstable`/`rustc_default_body_unstable`\n+/// Read the content of a `unstable`/`rustc_const_unstable`/...
2026-03-20T16:14:41
electron/electron
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
5ef6897bc73fa0301df583717be8bc53485dc239
fix: fullscreen for windows without rounded corners (#47664)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -175,6 +175,8 @@ class NativeWindowMac : public NativeWindow,\n // cleanup in destructor.\n void Cleanup();\n \n+ void SetBorderless(bool borderless);\n+\n void UpdateVibrancyRadii(bool fullscreen);\n \n void UpdateWindowOriginalFrame();",...
2025-07-08T09:14:14
facebook/react
18ee505e7791f2bb55f0e520667c51588df7ba48
1d1b26c701893f4821ebdc6547bcd1efc392f679
[Flight] Support classes in renderDebugModel (#33590) This adds better support for serializing class instances as Debug values. It adds a new marker on the object `{ "": "$P...", ... }` which indicates which constructor's prototype to use for this object's prototype. It doesn't encode arbitrary prototypes and it does...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1430,6 +1430,17 @@ function createFormData(\n return formData;\n }\n \n+function applyConstructor(\n+ response: Response,\n+ model: Function,\n+ parentObject: Object,\n+ key: string,\n+): void {\n+ Object.setPrototypeOf(parentO...
2025-06-22T22:00:08
golang/go
388eb10f50f2b693fb68897dd0ddf627b512a885
1b291b70dff51732415da5b68debe323704d8e8d
cmd/go: show comparable in go doc interface output The go doc command now displays the comparable constraint when embedded in an interface, matching the existing behavior for the error type. Previously, when an interface embedded comparable, it was not shown in the documentation and incorrectly triggered the "Has une...
[ { "path": "src/cmd/go/internal/doc/doc_test.go", "patch": "@@ -629,6 +629,35 @@ var tests = []test{\n \t\t\t`Has unexported methods`,\n \t\t},\n \t},\n+\t// Interface with comparable constraint.\n+\t{\n+\t\t\"interface type with comparable\",\n+\t\t[]string{p, `ExportedComparableInterface`},\n+\t\t[]string{...
2025-12-05T08:25:33
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
rust-lang/rust
c614e3d216b26052d0badfeb5c33f095b4ced1f3
ed6a6fddb440f2b19d55530a07df0c7c94391ad8
linting, moving error to session diagnostics
[ { "path": "compiler/rustc_attr_parsing/src/attributes/stability.rs", "patch": "@@ -452,16 +452,14 @@ pub(crate) fn parse_unstability<S: Stage>(\n \n match (feature, issue) {\n (Ok(feature), Ok(_)) => {\n- // Validate that unstable attributes don't use already-stable language features\...
2026-03-13T20:38:15
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
electron/electron
5ef6897bc73fa0301df583717be8bc53485dc239
bc585b6a3f8b0b8ce680636f3e27aced04d435b4
fix: accent color should reflect system settings without restart (#47629) fix: accentColor should reflect system settings without restart
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -319,7 +319,7 @@ class NativeWindowViews : public NativeWindow,\n // Whether the window is currently being moved.\n bool is_moving_ = false;\n \n- std::variant<bool, SkColor> accent_color_ = true;\n+ std::variant<std::monostate, bool, SkCol...
2025-07-03T16:13:39
facebook/react
1d1b26c701893f4821ebdc6547bcd1efc392f679
fe3f0ec0374b7323bf259e4154eb4ee739caac7b
[Flight] Serialize already resolved Promises as debug models (#33588) We already support serializing the values of instrumented Promises as debug values such as in console logs. However, we don't support plain native promises. This waits a microtask to see if we can read the value within a microtask and if so emit it...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -155,6 +155,7 @@ const RESOLVED_MODEL = 'resolved_model';\n const RESOLVED_MODULE = 'resolved_module';\n const INITIALIZED = 'fulfilled';\n const ERRORED = 'rejected';\n+const HALTED = 'halted'; // DEV-only. Means it never resolves eve...
2025-06-22T21:51:31
golang/go
63fced531c0d702554fcfda41f9016701a6859c6
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
runtime/secret: restore goroutine behavior to proposal During review of CL 704615, a suggestion was made that spawning a goroutine inside a call to secret.Do result in a panic. I agreed with this at the time, but had missed that this had been extensively discussed on the proposal. Revert the behavior back to what was ...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5286,10 +5286,6 @@ func malg(stacksize int32) *g {\n // The compiler turns a go statement into a call to this.\n func newproc(fn *funcval) {\n \tgp := getg()\n-\tif goexperiment.RuntimeSecret && gp.secret > 0 {\n-\t\tpanic(\"goroutine spawned while running in s...
2025-12-10T10:07:56
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
e4e86ea3ef8c6800d3bb52c461e6f98a491a4973
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
typings: update 'types' binding - Adds: - isGeneratorObject - isProxy - isSharedArrayBuffer - isSymbolObject - Removes: - isTypedArray - Fixes: - isDate - isNativeError - isRegExp - Improves: - isArgumentsObject - isExternal PR-URL: https://github.com/nodejs/node/pull/59692 Reviewed-By: Daeyeon Je...
[ { "path": "src/node_types.cc", "patch": "@@ -14,31 +14,31 @@ namespace node {\n namespace {\n \n #define VALUE_METHOD_MAP(V) \\\n- V(External) \\\n- V(Date) ...
2025-09-24T14:11:47
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
facebook/react
fe3f0ec0374b7323bf259e4154eb4ee739caac7b
d70ee32b8867f6cf99b1787f8adb4f3705756805
[Flight] Don't use object property initializer for async iterable (#33591) It turns out this was being compiled to a `_defineProperty` helper by Babel or Closure. We're supposed to have it error the build when we use features like this that might get compiled. We should stick to simple ES5 features.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2077,32 +2077,34 @@ function startAsyncIterable<T>(\n }\n },\n };\n- const iterable: $AsyncIterable<T, T, void> = {\n- [ASYNC_ITERATOR](): $AsyncIterator<T, T, void> {\n- let nextReadIndex = 0;\n- return crea...
2025-06-22T14:40:56
golang/go
6455afbc6f93e7ddc5ffde38b563c4e1a6821d22
8f45611e78095c05075b4cc49e44aabde064e134
runtime: dropg after emitting trace event in preemptPark Because we dropg before emitting a trace event in preemptPark, we end up failing to emit a status for the goroutine if this happens to be the first event for it in the generation. We only really see this with multiple subscribers in TestSubscribers. This is for...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4385,7 +4385,6 @@ func preemptPark(gp *g) {\n \t// up. Hence, we set the scan bit to lock down further\n \t// transitions until we can dropg.\n \tcasGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)\n-\tdropg()\n \n \t// Be careful about ownership as we trace t...
2025-12-11T19:23:19
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
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
nodejs/node
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
4f4d5b348c89aad13da3b435c4c11ee882601ec7
timers: fix binding fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/timers.cc", "patch": "@@ -53,9 +53,8 @@ void BindingData::SlowScheduleTimer(const FunctionCallbackInfo<Value>& args) {\n }\n }\n \n-void BindingData::FastScheduleTimer(Local<Object> unused,\n- Local<Object> receiver,\n- i...
2025-07-13T20:38:50
rust-lang/rust
910d0d7a7779ee7e620ec420f0a324b99f0d3c7a
1111eb599e6ce93acfd854961749bebb3b0664e5
Fix calling custom call conv functions from inline asm
[ { "path": "example/std_example.rs", "patch": "@@ -167,6 +167,9 @@ fn main() {\n \n rust_call_abi();\n \n+ // #[cfg(target_arch = \"x86_64\")]\n+ // inline_asm_call_custom_abi();\n+\n const fn no_str() -> Option<Box<str>> {\n None\n }\n@@ -678,3 +681,18 @@ fn map(a: Option<(u8, Box<...
2026-03-20T10:37:33
golang/go
8f45611e78095c05075b4cc49e44aabde064e134
34af879dde2cfc2688b486399e9fc7e60d1e96fc
runtime/pprof: deflake TestGoroutineLeakProfileConcurrency Issue #76540 reports failures in this test from the leaked goroutine count being too small. The test makes an effort to wait for the goroutines to leak, but there's no guarantee. This change instead changes TestGoroutineLeakProfileConcurrency to wait for the ...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1590,14 +1590,30 @@ func TestGoroutineLeakProfileConcurrency(t *testing.T) {\n \tgoroutineProf := Lookup(\"goroutine\")\n \tgoroutineLeakProf := goroutineLeakProfile\n \n-\t// Check that a profile with debug information contains\n-\tincludesLeak := ...
2025-12-11T17:19:19
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
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
nodejs/node
4f4d5b348c89aad13da3b435c4c11ee882601ec7
5ac6ee7716d7694fe4afd75f579837660445f36b
wasi: fix WasiFunction fast call signature PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_wasi.cc", "patch": "@@ -266,7 +266,6 @@ inline void EinvalError() {}\n \n template <typename FT, FT F, typename R, typename... Args>\n R WASI::WasiFunction<FT, F, R, Args...>::FastCallback(\n- Local<Object> unused,\n Local<Object> receiver,\n Args... args,\n // NOLINTNEXTL...
2025-07-13T20:23:11
golang/go
e8a83788a475544ab9a153bad4be4b796bc77ccc
927c89bbc5cc7366e86ecbb0f77267435b1d6d2c
go/doc: reuse import name logic for examples Examples resolved imports based on just the path name, but this doesn't work for go-name or modules on v2+. Updates #12794 Fixes #45110 Fixes #56740 Fixes #62059 Change-Id: I8c71b1e5311df04bccbdf319d759d3176a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/72...
[ { "path": "src/go/doc/example.go", "patch": "@@ -11,7 +11,6 @@ import (\n \t\"go/ast\"\n \t\"go/token\"\n \t\"internal/lazyregexp\"\n-\t\"path\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -221,7 +220,7 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t\t\t// because the package sy...
2025-12-08T20:48:09
facebook/react
d70ee32b8867f6cf99b1787f8adb4f3705756805
6c7b1a1d9898025bb087a3b97d875091e4f67cf3
[Flight] Eagerly parse stack traces in DebugNode (#33589) There's a memory leak in DebugNode where the `Error` objects that we instantiate retains their callstacks which can have Promises on them. In fact, it's very likely since the current callsite has the "resource" on it which is the Promise itself. If those Promis...
[ { "path": "packages/react-server/src/ReactFlightAsyncSequence.js", "patch": "@@ -7,7 +7,11 @@\n * @flow\n */\n \n-import type {ReactDebugInfo, ReactComponentInfo} from 'shared/ReactTypes';\n+import type {\n+ ReactDebugInfo,\n+ ReactComponentInfo,\n+ ReactStackTrace,\n+} from 'shared/ReactTypes';\n \n e...
2025-06-22T14:40:33
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
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
golang/go
89614ad264803558cfa36d460d431f7cbd4bae47
bb2337f24c8d774ef122e2251f02c5e512c77a55
runtime/trace: fix broken TestSubscribers Currently we don't break out of the loop on a failure. This is leading to timeouts trying to parse a broken trace over and over, forever. But there's another issue where when we try to dump the trace, we pass only the unread portion of the bytes.Buffer. Change-Id: I1a338eea0...
[ { "path": "src/runtime/trace/subscribe_test.go", "patch": "@@ -16,15 +16,15 @@ import (\n )\n \n func TestSubscribers(t *testing.T) {\n-\tvalidate := func(t *testing.T, source string, tr *bytes.Buffer) {\n+\tvalidate := func(t *testing.T, source string, tr []byte) {\n \t\tdefer func() {\n \t\t\tif t.Failed(...
2025-12-11T18:02:36
nodejs/node
5ac6ee7716d7694fe4afd75f579837660445f36b
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
process: fix hrtime fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_process.h", "patch": "@@ -3,6 +3,7 @@\n \n #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS\n \n+#include \"node_debug.h\"\n #include \"node_snapshotable.h\"\n #include \"v8-fast-api-calls.h\"\n #include \"v8.h\"\n@@ -72,23 +73,23 @@ class BindingData : public SnapshotableObject {...
2025-07-13T20:10:18
facebook/react
6c7b1a1d9898025bb087a3b97d875091e4f67cf3
ed077194b5b76df6f8fdbf805e1b895e2deb5a07
Rename serializeConsoleMap/Set to serializeDebugMap/Set (#33587) Follow up to #33583. I forgot to rename these too.
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2435,7 +2435,7 @@ function serializeSet(request: Request, set: Set<ReactClientValue>): string {\n return '$W' + id.toString(16);\n }\n \n-function serializeConsoleMap(\n+function serializeDebugMap(\n request: Request,\n counter:...
2025-06-21T14:36:07
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
nodejs/node
e9a0912848cf15be8a6b8d1887d7dc700cf9fdec
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
perf_hooks: fix histogram fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/histogram.cc", "patch": "@@ -2,6 +2,7 @@\n #include \"base_object-inl.h\"\n #include \"histogram-inl.h\"\n #include \"memory_tracker-inl.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"util.h\"\n@@ -11,10 +12,8 @@ namespace no...
2025-07-09T21:29:43
golang/go
bb2337f24c8d774ef122e2251f02c5e512c77a55
2622d2955bf1753f548c6ff46d471478933012d5
cmd/go: set GOOS in vet_asm test Not every OS (e.g. aix) supports ARCH=amd64. Fixes #76792 Change-Id: Id92cd247f1e36574192a6079990c686f9ab55910 Reviewed-on: https://go-review.googlesource.com/c/go/+/729220 Commit-Queue: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Reviewed-by:...
[ { "path": "src/cmd/go/testdata/script/vet_asm.txt", "patch": "@@ -2,6 +2,7 @@\n \n env GO111MODULE=off\n env GOARCH=amd64\n+env GOOS=linux\n \n ! go vet -asmdecl a\n stderr 'f: invalid MOVW of x'", "additions": 1, "deletions": 0 } ]
2025-12-11T14:45:33
facebook/react
ed077194b5b76df6f8fdbf805e1b895e2deb5a07
643257ca52c92d74ef7b7c7b474e5cae9e5451e4
[Flight] Dedupe objects serialized as Debug Models in a separate set (#33583) Stacked on #33539. Stores dedupes of `renderConsoleValue` in a separate set. This allows us to dedupe objects safely since we can't write objects using this algorithm if they might also be referenced by the "real" serialization. Also renam...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -266,7 +266,11 @@ ReactPromise.prototype.then = function <T>(\n initializeModuleChunk(chunk);\n break;\n }\n- if (__DEV__ && enableAsyncDebugInfo) {\n+ if (\n+ __DEV__ &&\n+ enableAsyncDebugInfo &&\n+ (typeof r...
2025-06-20T17:36:39
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 }, { "path": "chromium_src/BUILD.gn", "patc...
2025-06-30T16:30:05
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
golang/go
5818c9d714f1a8abeb76ec5d75ad0e0560e8d780
9de6468701f4def1bbdc737e8ad1327f2cfaecc8
encoding/json/jsontext: add symbolic Kind constants Add constants for each possible Kind value (KindNull, KindTrue, etc.). Leave the values unchanged ('n', 't', etc.). Update documentation to reference the symbols. Fixes #71756 Change-Id: Ib33b2ad9ee55f6f547d9e6a1c5a7f00c8400d3d3 Reviewed-on: https://go-review.googl...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -306,7 +306,7 @@ func (d *decodeBuffer) PreviousTokenOrValue() []byte {\n \n // PeekKind retrieves the next token kind, but does not advance the read offset.\n //\n-// It returns 0 if an error occurs. Any such error is cached until\n+// It retur...
2025-12-08T22:22:12
facebook/react
643257ca52c92d74ef7b7c7b474e5cae9e5451e4
06e89951be5b4b23ca343d02721521fe392e94c5
[Flight] Serialize functions by reference (#33539) On pages that have a high number of server components (e.g. common when doing syntax highlighting), the debug outlining can produce extremely large RSC payloads. For example a documentation page I was working on had a 13.8 MB payload. I noticed that a majority of this...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -3276,6 +3276,7 @@ describe('ReactFlight', () => {\n expect(typeof loggedFn2).toBe('function');\n expect(loggedFn2).not.toBe(foo);\n expect(loggedFn2.toString()).toBe(foo.toString());\n+ expect(loggedFn2).toBe(l...
2025-06-20T17:36:07
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
nodejs/node
f5e2ecc41b0d9fdd2067ea15dd9fa0cce4ac21f4
f46444d8b7333248da8adf143eee9feb3f00fe9e
2025-09-24, Version 22.20.0 'Jod' (LTS) Notable changes: crypto: * update root certificates to NSS 3.114 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/59571 deps: * fix OpenSSL security level at 1 (Richard Lau) https://github.com/nodejs/node/pull/59859 * upgrade openssl sources to openssl-3.5.2 (Node...
[ { "path": "CHANGELOG.md", "patch": "@@ -53,7 +53,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.19.0\">22.19.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.20.0\">22.20.0...
2025-09-22T16:13:25
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
golang/go
00642ee23b614d5314604b6b4d25c671f82c26b2
7b60d0673910a6527eb3d401b8a4e90c59cf70bd
encoding/json: report true from v2 Decoder.More when an error is pending Historically, Decoder.More reports true when the next read will return an error. Adjust the v2 Decoder to follow this behavior. Fixes #76467 Change-Id: I03bfa391e4e89ada8ca869db43c1d0bb63cc0413 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -459,6 +459,9 @@ func TestDecodeInStream(t *testing.T) {\n \t\t{CaseName: Name(\"\"), json: ` \\a`, expTokens: []any{\n \t\t\t&SyntaxError{\"invalid character '\\\\\\\\' looking for beginning of value\", 1},\n \t\t}},\n+\t\t{CaseName: Name(\"\"), js...
2025-12-08T21:09:05
rust-lang/rust
de1b0ac73a5701f1c3916e27938df22139e7b939
76be1cc4eef94daeab731ed9395a317b34d89d63
fix: guard paren-sugar pretty-printing on short trait args
[ { "path": "compiler/rustc_middle/src/ty/print/pretty.rs", "patch": "@@ -3314,7 +3314,8 @@ define_print_and_forward_display! {\n TraitRefPrintSugared<'tcx> {\n if !with_reduced_queries()\n && p.tcx().trait_def(self.0.def_id).paren_sugar\n- && let ty::Tuple(args) = self.0.ar...
2026-03-20T10:02:43
facebook/react
06e89951be5b4b23ca343d02721521fe392e94c5
79d9aed7edb52e89b3ef9ba3d6b480b04180b664
[Fizz] Ignore error if content node is gone before reveal (#33531)
[ { "path": "fixtures/view-transition/src/components/App.js", "patch": "@@ -4,7 +4,6 @@ import React, {\n useEffect,\n useState,\n unstable_addTransitionType as addTransitionType,\n- use,\n } from 'react';\n \n import Chrome from './Chrome';", "additions": 0, "deletions": 1 }, { "path":...
2025-06-20T12:21:57