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
rust-lang/rust
daad0fb3566048becf39b466a87bdbe2fd300960
e492d022858076a414ad42139e05cb43e0d238b6
fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops fix(explicit_counter_loop): suggest `.take(n)` for `for _ in 0..n` counter loops
[ { "path": "clippy_lints/src/loops/explicit_counter_loop.rs", "patch": "@@ -2,6 +2,7 @@ use std::borrow::Cow;\n \n use super::{EXPLICIT_COUNTER_LOOP, IncrementVisitor, InitializeVisitor, make_iterator_snippet};\n use clippy_utils::diagnostics::span_lint_and_then;\n+use clippy_utils::higher::Range;\n use clip...
2026-03-03T12:38:44
nodejs/node
9495906f8b17d6db3b849a6bd8c8f2d2ef9ee09e
c2d14c15149bfed367eeb3857408cc1e7a1e2105
debugger: fix event listener leak in the run command It should remove both the error and the ready event listeners attached when either of them fires, instead of removing only the one whose corresponding event fires, otherwise the other event listener will always get leaked. PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "lib/internal/debugger/inspect_client.js", "patch": "@@ -13,7 +13,7 @@ const {\n const Buffer = require('buffer').Buffer;\n const crypto = require('crypto');\n const { ERR_DEBUGGER_ERROR } = require('internal/errors').codes;\n-const { EventEmitter } = require('events');\n+const { EventEmitter, onc...
2025-11-07T13:28:03
vercel/next.js
6df0b7b905d298c4d47c7be389267cb0893f6343
d45f83fbc5f9a808b28f56e0bf1c3692ef7f1702
Turbopack: Fix flake in task_statistics unit test (#89981) If we don't explicitly return a `Vc::cell(())` here, then `<() as dyn turbo_tasks::vc::default::ValueDefault>::value_default` gets called in a non-deterministic way. That's not something we care about testing here, so just add a an explicit `Vc::cell(())` c...
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/task_statistics.rs", "patch": "@@ -362,7 +362,9 @@ fn inline_definitions() -> Result<Vc<()>> {\n #[turbo_tasks::value_trait]\n trait Trait {\n #[turbo_tasks::function]\n- fn trait_fn(&self) {}\n+ fn trait_fn(&self) -> Vc<()>...
2026-02-13T21:57:18
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
golang/go
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
2dcaaa751295597e1f603b7488c4624db6a84d2b
archive/zip: reduce CPU usage in index construction Constructing the zip index (which is done once when first opening a file in an archive) can consume large amounts of CPU when processing deeply-nested directory paths. Switch to a less inefficient algorithm. Thanks to Jakub Ciolek for reporting this issue. goos: ...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -834,7 +834,16 @@ func (r *Reader) initFileList() {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor dir := path.Dir(name); dir != \".\"; dir = path.Dir(dir) {\n+\t\t\tdir := name\n+\t\t\tfor {\n+\t\t\t\tif idx := strings.LastIndex(dir, \"/\"); idx < 0 {\n+\t\t...
2025-11-05T01:00:33
nodejs/node
525c4fb316a8074bea4e4aad358c3b376e99826c
b4b141377938dbc5705a20389e87f337991e3d87
repl: fix pasting after moving the cursor to the left Fixes: https://github.com/nodejs/node/issues/60446 PR-URL: https://github.com/nodejs/node/pull/60470 Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -659,7 +659,17 @@ class Interface extends InterfaceConstructor {\n [kInsertString](c) {\n this[kBeforeEdit](this.line, this.cursor);\n if (!this.isCompletionEnabled) {\n- this.line += c;\n+ if (this.cursor < this.line.length) {...
2025-11-05T20:36:59
vercel/next.js
ba08f5fef6c71735a7d4b77d05e00fea9eeae62a
740d55cdcefe5e62a2e0f6d65cd543d4b24423cc
Fix parallel routes with deferred entries (#89967) These were being filtered unexpectedly causing build failures with the deferredEntries flag. x-ref: [slack thread](https://vercel.slack.com/archives/C09125LC4AX/p1771010370849309?thread_ts=1770975846.539109&cid=C09125LC4AX)
[ { "path": "packages/next/src/build/turbopack-build/impl.ts", "patch": "@@ -26,6 +26,7 @@ import { isCI } from '../../server/ci-info'\n import { backgroundLogCompilationEvents } from '../../shared/lib/turbopack/compilation-events'\n import { getSupportedBrowsers, printBuildErrors } from '../utils'\n import {...
2026-02-13T19:49:11
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
rust-lang/rust
298c251f9178dc39768356a9a90f4853134a7dde
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
large_enums mir pass: fix is_enabled logic
[ { "path": "compiler/rustc_mir_transform/src/large_enums.rs", "patch": "@@ -32,8 +32,8 @@ impl<'tcx> crate::MirPass<'tcx> for EnumSizeOpt {\n fn is_enabled(&self, sess: &Session) -> bool {\n // There are some differences in behavior on wasm and ARM that are not properly\n // understood, s...
2026-03-25T15:33:59
golang/go
2dcaaa751295597e1f603b7488c4624db6a84d2b
5e1ad12db93611b13d2be176fdc276330dc52b98
net/url: add urlmaxqueryparams GODEBUG to limit the number of query parameters net/url does not currently limit the number of query parameters parsed by url.ParseQuery or URL.Query. When parsing a application/x-www-form-urlencoded form, net/http.Request.ParseForm will parse up to 10 MB of query parameters. An input c...
[ { "path": "doc/godebug.md", "patch": "@@ -163,6 +163,13 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlmaxqueryparams` settin...
2025-11-03T22:28:47
nodejs/node
fa9918e4120d126f333bcd796c2b8556811bf7a8
8511902b55c131f42ba9f3be135bbc16a75d6edf
test: add more logs to test-esm-loader-hooks-inspect-wait This provides a bit more information about where & when the child processes crashes when it crashes / flakes in the CI. PR-URL: https://github.com/nodejs/node/pull/60466 Refs: https://github.com/nodejs/node/issues/54346 Reviewed-By: Luigi Pinca <luigipinca@gma...
[ { "path": "test/parallel/test-esm-loader-hooks-inspect-wait.js", "patch": "@@ -12,6 +12,7 @@ const { NodeInstance } = require('../common/inspector-helper.js');\n \n async function runTest() {\n const main = fixtures.path('es-module-loaders', 'register-loader.mjs');\n+ process.env.NODE_DEBUG = 'esm,async_...
2025-11-05T13:10:06
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
vercel/next.js
af4ceab6d4e177a01f3d4de0dbd7dd005712e9b7
e9b96b4128ef8fa19fc523aa262be5459428c806
Enable backtraces in turbopack integration tests (#89935) ## Enable Rust backtraces in CI tests ### What? Added `RUST_BACKTRACE=1` environment variable to all Turbopack-related test workflows. ### Why? This change enables detailed Rust backtraces when Turbopack encounters errors during CI tests, making it easier to ...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -256,6 +256,7 @@ jobs:\n export NEXT_TEST_MODE=dev\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n export __NEXT_EXPERIMENTAL_STRICT_ROUTE_TYPES=true\n+ export RUST_BACKTRACE=1\n \n node run-test...
2026-02-13T16:10:20
golang/go
5e1ad12db93611b13d2be176fdc276330dc52b98
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
cmd/go/internal/work: sanitize flags before invoking 'pkg-config' The addition of CgoPkgConfig allowed execution with flags not matching the safelist. In order to prevent potential arbitrary code execution at build time, ensure that flags are validated prior to invoking the 'pkg-config' binary. Thank you to RyotaK (h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1788,6 +1788,14 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t\treturn nil, nil, fmt.Errorf(\"invalid pkg-config package name: %s\", pkg)\n \t\t\t}\n \t\t}\n+\n+\t\t// Running 'pkg-config' can cause exe...
2025-12-04T17:30:39
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
nodejs/node
76027d83e975c2d66d15ed2575b3718f45319ab2
cfa11ba893f5905840049b0bfe33653bbfd718a8
test: split test-esm-wasm.js The test has been flaking due to either timeout or calling uv_async_send on a closing/closed handle. As the test squeezes too many independent test cases in one file, split it up to avoid timing out on slower machines and aid debugging. PR-URL: https://github.com/nodejs/node/pull/60491 Re...
[ { "path": "test/es-module/test-esm-wasm-escape-import-names.mjs", "patch": "@@ -0,0 +1,10 @@\n+// Test that import names are properly escaped\n+import '../common/index.mjs';\n+import { spawnSyncAndAssert } from '../common/child_process.js';\n+import * as fixtures from '../common/fixtures.js';\n+\n+spawnSync...
2025-11-05T10:36:31
golang/go
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
bba24719a4cad5cc8d771fc9cfff5a38019d554a
cmd/go: update VCS commands to use safer flag/argument syntax In various situations, the toolchain invokes VCS commands. Some of these commands take arbitrary input, either provided by users or fetched from external sources. To prevent potential command injection vulnerabilities or misinterpretation of arguments as fl...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -328,7 +328,10 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \n // parsePathVersion parses -flag=arg expecting arg to be path@version.\n func parsePathVersion(flag, arg string) (path, version string) {\n-\tbefore, afte...
2025-12-10T13:13:07
vercel/next.js
e9b96b4128ef8fa19fc523aa262be5459428c806
b737b04638b03c202288819c0fabd3dde344fbe4
Build with dev runtimes when `--debug-prerender` is set (#89834) When running `next build --debug-prerender`, React owner stacks are now captured and displayed in prerender error output. This makes it much easier to diagnose which component triggered uncached I/O or accessed request data without Suspense. Previously, ...
[ { "path": "AGENTS.md", "patch": "@@ -246,6 +246,13 @@ See [Codebase structure](#codebase-structure) above for detailed explanations.\n - Use `DEBUG=next:*` for debug logging\n - Use `NEXT_TELEMETRY_DISABLED=1` when testing locally\n \n+### `NODE_ENV` vs `__NEXT_DEV_SERVER`\n+\n+Both `next dev` and `next bui...
2026-02-13T15:29:10
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
rust-lang/rust
91e4524bfe66a33d1a572750504cd5ac006d9b5e
1174f784096deb8e4ba93f7e4b5ccb7bb4ba2c55
Link from `assert_matches` to `debug_assert_matches` This resolves a FIXME which was added in https://github.com/rust-lang/rust/pull/151423.
[ { "path": "library/core/src/macros/mod.rs", "patch": "@@ -124,8 +124,6 @@ macro_rules! assert_ne {\n };\n }\n \n-// FIXME add back debug_assert_matches doc link after bootstrap.\n-\n /// Asserts that an expression matches the provided pattern.\n ///\n /// This macro is generally preferable to `assert!(m...
2026-03-26T04:33:33
nodejs/node
f4145f04518f6da697344029a963e24b95ef4276
53c4a39fec941e04150554fdd3e654b48f2e1b31
doc: fix typo in http.md PR-URL: https://github.com/nodejs/node/pull/59354 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: theanarkh <theratliter@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/http.md", "patch": "@@ -639,7 +639,7 @@ added: v0.3.6\n -->\n \n Emitted when the request has been sent. More specifically, this event is emitted\n-when the last segment of the response headers and body have been handed off to\n+when the last segment of the request headers and body have b...
2025-11-04T22:37:12
electron/electron
5d5e672f17248519b3c7bbdf27cb803c481c4d07
e39943bf4578e91da598923fd60f87a0a562c522
chore: bump chromium to 141.0.7361.0 (main) (#48054) * chore: bump chromium in DEPS to 141.0.7352.0 * chore: update patches * 6830573: Revert 'Migrate WrappableWithNamedPropertyInterceptor to gin::Wrappable' | https://chromium-review.googlesource.com/c/chromium/src/+/6830573 * chore: bump chromium in DEPS to 141.0....
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -15,7 +15,7 @@ runs:\n git config --global core.preloadindex true\n git config --global core.longpaths true\n fi\n- export BUILD_TOOLS_SHA=8559e5d325d61f195a255f41077ffc9e5b70b0e5\n+ export BUILD_TOOLS_S...
2025-08-29T03:31:47
golang/go
bba24719a4cad5cc8d771fc9cfff5a38019d554a
9ef26e96e3ae1e3a3d5e01a9b7fd1fa4dc5d6dd5
crypto/tls: don't copy auto-rotated session ticket keys in Config.Clone Once a tls.Config is used, it is not safe to mutate. We provide the Clone method in order to allow users to copy and modify a Config that is in use. If Config.SessionTicketKey is not populated, and if Config.SetSessionTicketKeys has not been call...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -980,6 +980,10 @@ const maxSessionTicketLifetime = 7 * 24 * time.Hour\n \n // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone a [Config] that is\n // being used concurrently by a TLS client or server.\n+//\n+// If Config.SessionTi...
2026-01-06T22:36:01
vercel/next.js
b05a35a79fb3bd0b802d3a8d8b1c07d3c7fc7649
fe39a3c440fa1463935403bdaabeaf9f509ea131
Turbopack: Move turbopackIgnoreIssue from experimental to turbopack.ignoreIssue (#89817) ## What? Moves the `turbopackIgnoreIssue` config from `experimental` to the stable `turbopack` config as `turbopack.ignoreIssue`. ## Why? Reviewers on #89682 agreed the API is stable enough to graduate from experimental. Also a...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1087,7 +1087,7 @@ impl Project {\n }\n \n /// Build the `IssueFilter` for this project, incorporating any\n- /// `experimental.turbopackIgnoreIssue` rules from the Next.js config.\n+ /// `turbopack.ignoreIssue` rules from the Next.js co...
2026-02-13T13:56: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
rust-lang/rust
a7331929804d44db4ec13206477f3a2df558b891
80d0e4be6f15899649ba31669077c59a986f96cc
Make `rustc_hir_analysis` not depend on `rustc_lint`. `rustc_hir_analysis` depends on `rustc_lint` in just a single function: `emit_delayed_lint`, which is used by the "emit_ast_lowering_delayed_lints" checking section within `rustc_hir_analysis::check_crate`. This commit moves that function and section to out of `ru...
[ { "path": "Cargo.lock", "patch": "@@ -4021,7 +4021,6 @@ dependencies = [\n \"rustc_hir\",\n \"rustc_index\",\n \"rustc_infer\",\n- \"rustc_lint\",\n \"rustc_lint_defs\",\n \"rustc_macros\",\n \"rustc_middle\",", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "co...
2026-03-24T19:58:13
nodejs/node
c9578dc557ef767eb8204a9d0d7731a599213028
be3fc1f7296f831a49b7c538b503684c7c6ca7b8
crypto: fix argument validation in crypto.timingSafeEqual fast path A regression introduced by https://github.com/nodejs/node/commit/0136bb0ee807b9789bf69e8d87e7a98e1b15f217 made it possible for the fast path to be hit with non-array-buffer arguments despite that the fast paths could only deal with array buffer argume...
[ { "path": "src/crypto/crypto_timing.cc", "patch": "@@ -56,6 +56,20 @@ bool FastTimingSafeEqual(Local<Value> receiver,\n // NOLINTNEXTLINE(runtime/references)\n FastApiCallbackOptions& options) {\n HandleScope scope(options.isolate);\n+ if (!IsAnyBufferSou...
2025-11-03T22:18:51
electron/electron
e39943bf4578e91da598923fd60f87a0a562c522
f331606e0718a291d14d21ec3218b21543b90d8d
fix: BrowserWindow add the same BrowserView (#48053) fix: BrowserWindow add the same BrowserView (#48057)
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -199,7 +199,14 @@ BrowserWindow.prototype.setBackgroundThrottling = function (allowed: boolean) {\n };\n \n BrowserWindow.prototype.addBrowserView = function (browserView: BrowserView) {\n- if (browserView.ownerWindow) { browserView.ownerWindow.re...
2025-08-28T08:31:41
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
fe39a3c440fa1463935403bdaabeaf9f509ea131
5c589abdf42d768654bc2a07a6a9614a0f617e80
fix: support multiple icon formats with same base name (icon.png + icon.svg) (#89504) ## What? Fixes a crash in Turbopack and incorrect behavior in Webpack when users have multiple icon files with the same base name but different extensions (e.g., `icon.png` and `icon.svg`) in their app directory. ## Why? This is a...
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -201,9 +201,13 @@ async fn static_route_source(mode: NextMode, path: FileSystemPath) -> Result<Vc<\n original_file_content_b64 = StringifyJs(&original_file_content_b64),\n };\n \n+ // Use full filename (stem + extension...
2026-02-13T12:55:27
golang/go
e2429619605951b137e25f6a51fbc39d9f0f1e9b
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
simd/archsimd: 128- and 256-bit FMA operations do not require AVX-512 Currently, all FMA operations are marked as requiring AVX512, even on smaller vector widths. This is happening because the narrower FMA operations are marked as extension "FMA" in the XED. Since this extension doesn't start with "AVX", we filter the...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1959,23 +1959,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256load,\n \t\tssa.OpAMD64VPERMI2PD512load,\n \t\tssa.OpAMD64VPERMI2Q512load,\n-\t\tssa.OpAMD64VFMADD213PS128load,\n-\t\tssa.OpAMD64VFM...
2026-01-13T19:18:14
nodejs/node
4346c0f7a7fe67e4ed2d5c0bf7b5815957a8abf4
f9a83ffcd904a563bd74e27253fe265d36b1c03a
http: fix handling of HTTP upgrades with bodies Previously, we ignored all indicators of the body (content-length or transfer-encoding headers) and treated any information following the headers as part of the upgraded stream. We now fully process the requests bodies separately instead, allowing us to automatically han...
[ { "path": "doc/api/http.md", "patch": "@@ -745,7 +745,7 @@ added: v0.1.94\n -->\n \n * `response` {http.IncomingMessage}\n-* `socket` {stream.Duplex}\n+* `stream` {stream.Duplex}\n * `head` {Buffer}\n \n Emitted each time a server responds to a request with an upgrade. If this\n@@ -768,13 +768,13 @@ const s...
2025-11-03T17:19:33
electron/electron
bf29d2f0bdde2718da082e848ab17bd86de74cad
fea1a2a9876ac9fdfc268ea4fce249935b6ef8b6
docs: fix some module headings (#48177)
[ { "path": "docs/api/menu-item.md", "patch": "@@ -1,3 +1,5 @@\n+# MenuItem\n+\n ## Class: MenuItem\n \n > Add items to native application menus and context menus.", "additions": 2, "deletions": 0, "language": "Markdown" }, { "path": "docs/api/service-worker-main.md", "patch": "@@ -1,1...
2025-08-27T21:52:26
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
vercel/next.js
5c589abdf42d768654bc2a07a6a9614a0f617e80
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
docs: document cacheLife expire omission behavior and fix default preset value (#89913) ## Summary - Add note that omitting `expire` in `cacheLife` results in cache never expiring - Fix `default` preset table: `expire` was documented as "1 year" but actual code uses `INFINITE_CACHE` (never) - Add mention of expire omi...
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -93,6 +93,8 @@ Cache profiles control caching behavior through three timing properties:\n \n During this time, the client-side router displays cached content immediately without any network request. After this period expires, ...
2026-02-13T12:52:38
golang/go
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
e2fef50def98b87107ab963f657d43d7869b8463
simd/archsimd/_gen/simdgen: feature implications This simplifies our handling of XED features, adds a table of which features imply which other features, and adds this information to the documentation of the CPU features APIs. As part of this we fix an issue around the "AVXAES" feature. AVXAES is defined as the combi...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -189,6 +189,7 @@ type X86Features struct {}\n var X86 X86Features\n \n {{range .}}\n+{{$f := .}}\n {{- if eq .Feature \"AVX512\"}}\n // {{.Feature}} returns whether the CPU supports the AVX512F+CD+BW+DQ+VL features.\n //\n@@ -199,11 +...
2026-01-13T14:34:53
nodejs/node
e40b9b98bb50e40de8996aac46e6c1fa2702df76
21b0fe4b28d2972fa96e535106e607666d33bc5b
tls: fix leak on invalid protocol method PR-URL: https://github.com/nodejs/node/pull/60427 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -1351,7 +1351,6 @@ SecureContext* SecureContext::Create(Environment* env) {\n SecureContext::SecureContext(Environment* env, Local<Object> wrap)\n : BaseObject(env, wrap) {\n MakeWeak();\n- env->external_memory_accounter()->Increase(env->isolate(...
2025-11-03T16:35:56
electron/electron
52ed4646d9b33245835517077eba2d8b8ea44237
68098c317f772f9d9b8327b7f4be98e66b70f5c9
chore: remove upstream OSR temp fix (#48162)
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -332,9 +332,7 @@ void OffScreenRenderWidgetHostView::Hide() {\n return;\n \n if (render_widget_host_) {\n- // TODO(codebytere) - remove when CL:6250383 is released.\n- if (render_widget_host_->delegate())\n- render_w...
2025-08-26T20:22:45
rust-lang/rust
99e378390fd7b3f5f20af8d1dbdc55a1914a0aa1
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct internal error message for ptr_guaranteed_cmp shim The missing-args branch reused the wrapping_add error string. Assisted by an AI coding tool (see CONTRIBUTING.md).
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/mir/eval/shim.rs", "patch": "@@ -843,7 +843,7 @@ impl<'db> Evaluator<'db> {\n // cases.\n let [lhs, rhs] = args else {\n return Err(MirEvalError::InternalError(\n- \"wrapping_add a...
2026-03-26T01:58:04
vercel/next.js
9e4e6d6f2057d6823ee8debcfa227085b4fdb67a
1fac9a1b7ec514a15b8b2a922efcdd3600e567e6
Turbopack: fix CSS dependency locations (#89761) For some locations LightningCSS is 1-indexed (but not all of them, the rustdoc describes it though) IssueSource is always 0-indexed Previously, it looked like this ``` Error: Turbopack build failed with 1 errors: ./bench/basic-app/app/[variants]/styles.css:7:12 Module ...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -1508,10 +1508,10 @@ describe('ReactRefreshLogBox app', () => {\n \"description\": \"Module not found: Can't resolve './boom.css'\",\n \"environmentLabel\": null,\n \"label\": \"Build Error\",\n- ...
2026-02-13T11:01:32
golang/go
e2fef50def98b87107ab963f657d43d7869b8463
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
runtime: rename mallocTiny* to mallocgcTinySize* This makes it easier to identify which functions are used for memory allocation by looking for functions that start with mallocgc. The Size suffix is added so that the isSpecializedMalloc function in cmd/compile/internal/ssa can distinguish between the generated functio...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -480,7 +480,7 @@ func isSpecializedMalloc(aux Aux) bool {\n \tname := fn.String()\n \treturn strings.HasPrefix(name, \"runtime.mallocgcSmallNoScanSC\") ||\n \t\tstrings.HasPrefix(name, \"runtime.mallocgcSmallScanNoHeaderSC\") ||\n-\t\tstrings...
2026-01-12T19:37:39
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
rust-lang/rust
ecdb237fd5423452c80f926d32311fc6afda829d
eb7bfb8a533840794ee113e9db0cdd26e73b7102
fix: Correct type_or_const param index bound in debug_assert local_id is used as an index into type/const params; valid indices are 0..len_type_or_consts(). The previous <= check incorrectly allowed idx == len. Assisted by an AI coding tool (see CONTRIBUTING.md).
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/generics.rs", "patch": "@@ -185,7 +185,7 @@ impl Generics {\n if param.parent == self.def {\n let idx = param.local_id.into_raw().into_u32() as usize;\n debug_assert!(\n- idx <= self.params.len_type_or_consts...
2026-03-26T01:56:37
nodejs/node
0de8425dc9d8926d543fe517843f31567a6b6154
c586449f0661534c5dbd16dc219f37871d4258cc
doc: instantiate resolver object PR-URL: https://github.com/nodejs/node/pull/60476 Fixes: https://github.com/nodejs/node/issues/60455 Refs: https://nodejs.org/api/stream.html#readabletoarrayoptions Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -2315,6 +2315,8 @@ import { Resolver } from 'node:dns/promises';\n \n await Readable.from([1, 2, 3, 4]).toArray(); // [1, 2, 3, 4]\n \n+const resolver = new Resolver();\n+\n // Make dns queries concurrently using .map and collect\n // the results into an array usi...
2025-11-02T19:09:37
electron/electron
68098c317f772f9d9b8327b7f4be98e66b70f5c9
52e0307cc1e969a8d61649ccd870f57ba76388c6
build: remove no longer needed arg for siso (#48164) * build: remove no longer needed arg for siso * chore: test ffmpeg zip * build: fix ffmpeg build with siso * Revert "chore: test ffmpeg zip" This reverts commit 2bbcc86039eca435b4ab9ced6fd59f761fee2fd5.
[ { "path": ".github/actions/build-electron/action.yml", "patch": "@@ -202,7 +202,7 @@ runs:\n if: ${{ inputs.is-release == 'true' }}\n run: |\n cd src\n- gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n+ gn gen...
2025-08-25T20:46:36
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
vercel/next.js
43c9a4915a8297db488ffdedc7b560660dbff55d
55046e234fa815b53db29953e6d6e2ac60c05387
docs: improve next/image localPatterns error page (#89914) Align with https://nextjs.org/docs/messages/next-image-unconfigured-host Closes: https://linear.app/vercel/issue/DOC-5850/feedback-image-configuration-it-doesn-t-work-my-pattern-is-defined-as
[ { "path": "errors/next-image-unconfigured-localpatterns.mdx", "patch": "@@ -4,27 +4,76 @@ title: '`next/image` Un-configured localPatterns'\n \n ## Why This Error Occurred\n \n-One of your pages that leverages the `next/image` component, passed a `src` value that uses a URL that isn't defined in the `images...
2026-02-13T10:18:04
golang/go
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
c16402d15b42cf494774796e606aba66c90d3d6b
all: fix misspellings in comments Change-Id: I121847e7f68c602dd8e9ecddfc41b547f8a86f10 Reviewed-on: https://go-review.googlesource.com/c/go/+/734361 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Junyang Shao <shaoju...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -7795,7 +7795,7 @@ func AddrAuto(a *obj.Addr, v *ssa.Value) {\n // Call returns a new CALL instruction for the SSA value v.\n // It uses PrepareCall to prepare the call.\n func (s *State) Call(v *ssa.Value) *obj.Prog {\n-\tpPosIsStmt := s.pp.P...
2026-01-07T05:46:43
electron/electron
0917ed5f6f7f862f044e1b3097ce1becc0107670
a67aad0f50c34fe9a55a9dd3fb4ab1dcbc7c6835
fix: snapped restoration after minimization (#48142)
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -323,6 +323,9 @@ class NativeWindowViews : public NativeWindow,\n // Whether the window is currently being moved.\n bool is_moving_ = false;\n \n+ // Whether or not the window was previously snapped e.g. before minimizing.\n+ bool was_snapp...
2025-08-22T18:37:45
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
vercel/next.js
dbb7791e8ff732f30f3ce8e599e2274d4848b4a5
5070ad0df4f7fa9b448516035cdea4738814706b
Turbopack hmr: fix missing factories (#89934) This fixes a bug introduced in d77eb04091 where installCompressedModuleFactories would skip installing factories for an entire group of module IDs if any ID in the group already had a factory registered. Test Plan: build https://github.com/vercel/workflow/tree/main/workbe...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime/runtime-utils.ts", "patch": "@@ -564,26 +564,20 @@ function installCompressedModuleFactories(\n throw new Error('malformed chunk format, expected a factory function')\n }\n \n- // Check if ANY of the module IDs in th...
2026-02-13T03:18:12
golang/go
b7e6d8b923ad06538c800d635d3ede90d3d0b782
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
os/exec_test: fix test on Plan 9 Error strings vary across OSes when trying to execute a file that does not exist. Since matching them is not the point of the test, ignore them. Fixes #76965 Change-Id: I6d220bc2d0289070f3441adb48983c13b2a3e597 Reviewed-on: https://go-review.googlesource.com/c/go/+/732940 LUCI-TryBot...
[ { "path": "src/os/exec/exec_test.go", "patch": "@@ -1845,23 +1845,13 @@ func TestStart_twice(t *testing.T) {\n \ttestenv.MustHaveExec(t)\n \n \tcmd := exec.Command(\"/bin/nonesuch\")\n-\tfor i, want := range []string{\n-\t\tcond(runtime.GOOS == \"windows\",\n-\t\t\t`exec: \"/bin/nonesuch\": executable file ...
2025-12-28T00:08:26
electron/electron
ceb6d28fd3af745c49a65ffc06bd0533a9607595
e12ab6708e0f4b06d806a1d290cd6c18800c2c85
fix: webContent.fromId should be number instead of string (#48059)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -882,7 +882,7 @@ export function create (options = {}): Electron.WebContents {\n return new (WebContents as any)(options);\n }\n \n-export function fromId (id: string) {\n+export function fromId (id: number) {\n return binding.fromId(id);\n }\n "...
2025-08-22T15:40:10
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
vercel/next.js
02f2183d6a0ebefb4ba7346e76c133df1ee91d22
ea8651a7c4f9f5249dc2f8c82b16700f676eae9c
docs: adapterPath amends (#89930) - use experimental versioning - fix spacing for graphs - spacing in [!NOTE]
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/adapterPath.mdx", "patch": "@@ -1,13 +1,11 @@\n ---\n-title: experimental.adapterPath\n+title: adapterPath\n description: Configure a custom adapter for Next.js to hook into the build process with modifyConfig and onBuildComplete callbacks....
2026-02-13T00:14:00
golang/go
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
30d0b4026410da3486ba841bb7f13c1d9074e91d
net: fix socket duplication error handling on Windows Calls to dupSocket may fail, but the error is not properly handled because the surrounding code incorrectly checks for nil error instead of non-nil error. I'm not aware of any code paths that would trigger this error, and I haven't been able to create a test case ...
[ { "path": "src/net/fd_windows.go", "patch": "@@ -248,7 +248,7 @@ func (fd *netFD) dup() (*os.File, error) {\n \terr := fd.pfd.RawControl(func(fd uintptr) {\n \t\th, syserr = dupSocket(syscall.Handle(fd))\n \t})\n-\tif err != nil {\n+\tif err == nil {\n \t\terr = syserr\n \t}\n \tif err != nil {", "addit...
2026-01-08T14:50:15
electron/electron
e12ab6708e0f4b06d806a1d290cd6c18800c2c85
610102536857f5370c76aa1284e79bdba1a2fc93
chore: improve failed notification error messages on Windows (#48131)
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -13,6 +13,7 @@\n #include <shlobj.h>\n #include <wrl\\wrappers\\corewrappers.h>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"base/hash/hash.h\"\n #include \"base/logging.h\"\n #include \"base/strings/s...
2025-08-22T15:35: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
vercel/next.js
462b116ad3b4977e2336f26e20af3f72139e1391
190f5077ea36476a86e07385b04d2173b0fdf022
Add a better error message for when turbopack cannot be loaded (#89633) Add a more direct error message when next is running on a platform that turbopack doesn't support document supported turbopack platforms ## Testing To test i just set `NEXT_TEST_WASM=1` and ran a build ``` Error: Turbopack is not supported on ...
[ { "path": "docs/01-app/03-api-reference/08-turbopack.mdx", "patch": "@@ -16,6 +16,24 @@ We built Turbopack to push the performance of Next.js, including:\n - **Incremental Computation:** Turbopack parallelizes work across cores and **caches** results down to the function level. Once a piece of work is done,...
2026-02-12T23:23:58
nodejs/node
8f66bec900e65479b03cb5715f17bcb68ea35a7f
24bebd01a72a30743a35d7c7c12c559a77464995
deps: V8: cherry-pick 7ef6a001762 Origin commit message: [loong64] Fix no pointer compression build 1. Fix a typo that breaks no static root build. 2. Use less scratch regs in some compare and branch functions. This bug is triggered by Node.js loong64 port. Change-Id: If251906cc07feca237c75f0b6...
[ { "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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-11-02T13:17:53
golang/go
30d0b4026410da3486ba841bb7f13c1d9074e91d
5741608de26f06488e771fd7b3b35ca2ca4c93a6
net: don't ignore getsockname errors in newFileFD newFileFD is called when creating a net FD from an existing socket handle. That socket might not be bound yet, in which case getsockname returns a useful error that is currently ignored and replaced with a potentially misleading EPROTONOSUPPORT error later on. Updates...
[ { "path": "src/net/file_posix.go", "patch": "@@ -23,7 +23,11 @@ func newFileFD(f *os.File) (*netFD, error) {\n \t\tpoll.CloseFunc(s)\n \t\treturn nil, os.NewSyscallError(\"getsockopt\", err)\n \t}\n-\tlsa, _ := syscall.Getsockname(s)\n+\tlsa, err := syscall.Getsockname(s)\n+\tif err != nil {\n+\t\tpoll.Clos...
2026-01-08T14:44:51
electron/electron
610102536857f5370c76aa1284e79bdba1a2fc93
97b0280ad43289156f2cabca0806f6740210701e
fix: `net.isOnline` always true in utility processes (#48111) * fix: net.isOnline always true in utilityProcesses * Update shell/services/node/node_service.cc Co-authored-by: Robo <hop2deep@gmail.com> --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -12,6 +12,7 @@\n #include \"base/process/process.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"electron/mas.h\"\n+#include \"net/base/network_change_notifier.h\"\n #include \"services/network/public/cpp/wrapper_shared_url_...
2025-08-22T12:30:41
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
vercel/next.js
b3774eaefbfcf88d357cb512dd4c614988df09cd
8266e03ac994419e53f42fb9ee0fe6c168b60c0c
Trace upload: include experimental flag states (#89845) This includes the set of experimental flag states in events sent to the trace upload receiver when `--experimental-trace-upload` is set. It only includes a subset of experimental flags (so things like the trace upload flag itself isn't meaninglessly sent). Since...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -914,7 +914,8 @@ export default async function build(\n bundler = Bundler.Turbopack,\n experimentalBuildMode: 'default' | 'compile' | 'generate' | 'generate-env',\n traceUploadUrl: string | undefined,\n- debugBuildPaths: { app: string[]; page...
2026-02-12T20:47:05
nodejs/node
fa33ba3f76cc0bf3d4ab8eda11b45eb3b08626e2
e1e0830ae519765d7f0f941feb4f52b44a5adefc
test: fix flaky test-watch-mode-kill-signal-* After the write triggers a restart of the grandchild, the newly spawned second grandchild can post another 'script ready' message before the stdout from the first grandchild is relayed by the watcher and processed by this parent process to kill the watcher. If we write aga...
[ { "path": "test/fixtures/kill-signal-for-watch.js", "patch": "@@ -1,4 +1,10 @@\n-process.on('SIGTERM', () => { console.log('__SIGTERM received__'); process.exit(); });\n-process.on('SIGINT', () => { console.log('__SIGINT received__'); process.exit(); });\n-process.send('script ready');\n+process.on('SIGTERM...
2025-11-01T11:15:52
golang/go
5741608de26f06488e771fd7b3b35ca2ca4c93a6
df6c351aa4bbc8805406bfef979e62f59fc76da9
net: don't ignore errors in TestUnixUnlink TestUnixUnlink calls some functions and methods that can fail, but it ignores the returned errors. This test is flaky on Windows, and those errors should be checked to help diagnose the problem. Updates #75282 Updates #76582 Updates #77038 Change-Id: Ia868762a4c0b94a7255d57...
[ { "path": "src/net/unixsock_test.go", "patch": "@@ -375,6 +375,17 @@ func TestUnixUnlink(t *testing.T) {\n \t\t}\n \t\treturn l.(*UnixListener)\n \t}\n+\tfileListener := func(t *testing.T, l *UnixListener) (*os.File, Listener) {\n+\t\tf, err := l.File()\n+\t\tif err != nil {\n+\t\t\tt.Fatal(err)\n+\t\t}\n+\...
2026-01-08T09:25:44
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
electron/electron
cadba1108879ae9e23e47603d24067202a424574
8aeee3f714c0c1b1c1ff36d32d0a71a2ff58cd7d
build: fixup docs only condition (#48128)
[ { "path": ".github/workflows/build.yml", "patch": "@@ -86,7 +86,7 @@ jobs:\n \n # Docs Only Jobs\n docs-only:\n- needs: checkout-linux\n+ needs: [setup, checkout-linux]\n if: ${{ needs.setup.outputs.docs-only == 'true' }}\n uses: ./.github/workflows/pipeline-electron-docs-only.yml\n wi...
2025-08-20T16:58:54
vercel/next.js
8266e03ac994419e53f42fb9ee0fe6c168b60c0c
f9d5df3b9c5cac5f8e37da57fe83979e07100f1f
Fix memory leak in dev mode caused by fast-set-immediate (#89779) ## Summary Fixes dev-time memory retention in `fast-set-immediate` caused by module re-evaluation chaining patched globals. ## Root Cause In dev/HMR, `fast-set-immediate.external` can be re-evaluated multiple times. On each evaluation, it captured `g...
[ { "path": "packages/next/src/server/node-environment-extensions/fast-set-immediate.external.test.ts", "patch": "@@ -3,6 +3,7 @@ import { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolv\n import {\n DANGEROUSLY_runPendingImmediatesAfterCurrentTask,\n expectNoPendingImmediates,\n+ ...
2026-02-12T20:18:01
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
golang/go
fed3b0a298464457c58d1150bdb3942f22bd6220
55ab5bba17a5221a51df244c8a3aeb1898cbdf1a
cmd/dist: fix goroot typo in panic message Change-Id: I636a029eedaab0967b774648670710d1303a1f7c GitHub-Last-Rev: 519faedc5b8327696efeeb431ef66e9fd29f0db7 GitHub-Pull-Request: golang/go#77081 Reviewed-on: https://go-review.googlesource.com/c/go/+/734080 Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result...
[ { "path": "src/cmd/dist/imports.go", "patch": "@@ -259,6 +259,6 @@ func resolveVendor(imp, srcDir string) string {\n \t} else if strings.HasPrefix(srcDir, filepath.Join(goroot, \"src\")) {\n \t\treturn path.Join(\"vendor\", imp)\n \t} else {\n-\t\tpanic(fmt.Sprintf(\"srcDir %q not in GOOROT/src\", srcDir))\...
2026-01-05T22:59:29
electron/electron
83a5ba1e2c37a99d72bd81dedf53cba2a96e513e
13d955a73ec8836e0a3aa43aa53680a4a0e663be
feat: add `fileBacked` and `purgeable` fields to `process.getSystemMemoryInfo()` for macOS (#47628) * fix: Optimize the value of memory.free in the return data of getSystemMemoryInfo(). * fix: Improve the value of memory in the return data of getSystemMemoryInfo(). * fix: complete API doc. * Update docs/api/process...
[ { "path": "docs/api/process.md", "patch": "@@ -211,6 +211,10 @@ Returns `Object`:\n system.\n * `free` Integer - The total amount of memory not being used by applications or disk\n cache.\n+* `fileBacked` Integer _macOS_ - The amount of memory that currently has been paged out to storage.\n+ Includes m...
2025-08-20T07:49:41
nodejs/node
e1e0830ae519765d7f0f941feb4f52b44a5adefc
3c248c35562389d13057927f11a90b1671cf85ca
tools: fix update-icu script Closes: https://github.com/nodejs/node/issues/60506 PR-URL: https://github.com/nodejs/node/pull/60521 Fixes: https://github.com/nodejs/node/issues/60506 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "tools/dep_updaters/update-icu.sh", "patch": "@@ -32,15 +32,11 @@ CURRENT_VERSION=\"$(grep \"#define U_ICU_VERSION \" \"$ICU_VERSION_H\" | cut -d'\"' -f\n # This function exit with 0 if new version and current version are the same\n compare_dependency_version \"icu-small\" \"$NEW_VERSION\" \"$CURR...
2025-11-01T08:34:43
vercel/next.js
f9d5df3b9c5cac5f8e37da57fe83979e07100f1f
1486592094760fd4c5b3632177b055402961f835
[Instant] Fix crash with search params (#89922) In dev validation, we're disassembling a payload from a dynamic render. If the request had search params, page segments in the router state will have them attached: `__PAGE__?{"q":"123"}`. In `findNavigationsToValidate`, we do the equivalent of constructing a flightRoute...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -4178,7 +4178,8 @@ async function validateInstantConfigs(\n try {\n init = await findNavigationsToValidate(\n ctx.componentMod.routeModule.userland.loaderTree,\n- ctx.getDynamicParamFromSegment\n+ ctx.getDynam...
2026-02-12T19:31:18
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
golang/go
108b333d510c1f60877ac917375d7931791acfe6
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
cmd/go: only use check cache action's dependencies to build vet config We manipulate the dependencies of the build action when adding the non-test variant of the package being tested as a dependency for the test, so the set of deps of the build package doesn't correctly represent the dependencies of the package that h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -627,7 +627,7 @@ func (b *Builder) checkCacheForBuild(a, buildAction *Action, covMetaFileName str\n \t// If we are going to do a full build anyway,\n \t// we're going to regenerate the files in the build action anyway.\n \tif need == needVet {\n-\t\...
2026-01-08T17:45:34
electron/electron
13d955a73ec8836e0a3aa43aa53680a4a0e663be
fdf29ce83870109d403f5c23ae529dbd0e8f4fee
fix: system accent color parsing hex order (#48085) fix: system accent color parsing
[ { "path": "shell/common/color_util.cc", "patch": "@@ -12,6 +12,8 @@\n \n #if BUILDFLAG(IS_WIN)\n #include <dwmapi.h>\n+\n+#include \"base/win/registry.h\"\n #endif\n \n namespace {\n@@ -68,12 +70,18 @@ std::string ToRGBAHex(SkColor color, bool include_hash) {\n \n #if BUILDFLAG(IS_WIN)\n std::optional<DWORD...
2025-08-19T08:01:41
nodejs/node
3c248c35562389d13057927f11a90b1671cf85ca
3e31baeda6cf597ab3804dd8ca6f049a1d126940
tools: fix linter for semver-major release proposals PR-URL: https://github.com/nodejs/node/pull/60481 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -23,8 +23,9 @@ const commitListingStart = changelog.indexOf('\\n### Commits\\n');\n let commitList;\n if (commitListingStart === -1) {\n // We're preparing a semver-major release.\n- commitList = changelog.replace(/(^.+\\n### S...
2025-11-01T07:11:01
vercel/next.js
1486592094760fd4c5b3632177b055402961f835
002f5197c80da62ef0b796ffddb3cb158a18941b
Change UrlBehavior.static_suffix to ResolvedVc<Option<RcStr>> (#89921) ## Summary Changes `UrlBehavior.static_suffix` from `Option<RcStr>` to `ResolvedVc<Option<RcStr>>` so that `css_url_suffix` stays as a Vc longer instead of being eagerly resolved at the call site. This improves caching behavior by keeping the valu...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -475,7 +475,6 @@ pub async fn get_client_chunking_context(\n should_use_absolute_url_references,\n css_url_suffix,\n } = options;\n- let css_url_suffix = css_url_suffix.owned().await?;\n \n let next_mode = mode....
2026-02-12T17:52:36
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
golang/go
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
runtime/trace: fix documentation comment Correct documentation comment for mul function Change-Id: I8b90f02bf0aaba9bb5813833d1b9dd1ebb7d71f4 GitHub-Last-Rev: e91af64af9bad9cd2574dc3dd7ed88123a288be8 GitHub-Pull-Request: golang/go#77082 Reviewed-on: https://go-review.googlesource.com/c/go/+/734100 Reviewed-by: Michael...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64\n // frequency is nanoseconds per timestamp unit.\n type frequency float64\n \n-// mul multiplies an unprocessed to produce a time in nanoseconds.\n+// mul multiplies an unprocessed timestamp to prod...
2026-01-05T23:08:44
electron/electron
fdf29ce83870109d403f5c23ae529dbd0e8f4fee
3770bb31a7aabd20457d73ad7610dc3b9b6d3d3d
fix: ensure snapshot is valid (#48101)
[ { "path": "BUILD.gn", "patch": "@@ -518,6 +518,10 @@ source_set(\"electron_lib\") {\n \"//v8:v8_libplatform\",\n ]\n \n+ if (v8_use_external_startup_data && use_v8_context_snapshot) {\n+ deps += [ \":mksnapshot_checksum_gen\" ]\n+ }\n+\n public_deps = [\n \"//base\",\n \"//base:i18n\",\...
2025-08-18T21:35:58
vercel/next.js
9b0277f02cab76f011790b9453123ef684979254
662773452238531de43482f7db102d5ba14c9cd7
Turbopack: Pass asset_suffix_path as Vc (#89899) ## Summary - Pass `asset_suffix_path` as `Vc<Option<RcStr>>` instead of eagerly resolving it to `Option<RcStr>` in the chunking context option structs - Add filesystem cache size growth assertions to e2e tests to detect unbounded cache growth regressions ## Why Previo...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1440,12 +1440,7 @@ impl Project {\n pub(super) async fn client_chunking_context(\n self: Vc<Self>,\n ) -> Result<Vc<Box<dyn ChunkingContext>>> {\n- let css_url_suffix = self\n- .next_config()\n- .asset_suf...
2026-02-12T16:45:50
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, "language": "Ja...
2025-06-20T12:21:57
nodejs/node
3e31baeda6cf597ab3804dd8ca6f049a1d126940
943b1edb3cc2e4e34979ef27173f59674508d15f
esm: use sync loading/resolving on non-loader-hook thread ESM resolution and loading is now always synchronous from a non-loader-hook thread. If no asynchrnous loader hooks are registered, the resolution/loading is entirely synchronous. If asynchronous loader hooks are registered, these would be synchronous on the non...
[ { "path": "doc/api/errors.md", "patch": "@@ -703,6 +703,13 @@ by the `node:assert` module.\n An attempt was made to register something that is not a function as an\n `AsyncHooks` callback.\n \n+<a id=\"ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED\"></a>\n+\n+### `ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`\n+\n+An op...
2025-10-31T20:45:10
golang/go
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
cmd/go: remove user-content from doc strings in cgo ASTs. Thank you to RyotaK (https://ryotak.net) of GMO Flatt Security Inc. for reporting this issue. Updates golang/go#76697 Fixes CVE-2025-61732 Change-Id: I1121502f1bf1e91309eb4bd41cc3a09c39366d36 Reviewed-on: https://go-review.googlesource.com/c/go/+/734220 Revie...
[ { "path": "src/cmd/cgo/ast.go", "patch": "@@ -301,17 +301,12 @@ func (f *File) saveExport(x any, context astContext) {\n \t\t\terror_(c.Pos(), \"export comment has wrong name %q, want %q\", name, n.Name.Name)\n \t\t}\n \n-\t\tdoc := \"\"\n-\t\tfor _, c1 := range n.Doc.List {\n-\t\t\tif c1 != c {\n-\t\t\t\td...
2026-01-06T21:09:19
electron/electron
3770bb31a7aabd20457d73ad7610dc3b9b6d3d3d
ed4a99ba5b0fcea170dd71dd840b19538a440be2
fix: avoid deprecated login item methods (#48090)
[ { "path": "shell/browser/browser_mac.mm", "patch": "@@ -426,19 +426,18 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n #else\n // If the app was previously set as a LoginItem with the deprecated API,\n // we should report its LoginItemSettings via the old API.\n- LoginItemSettings settings_de...
2025-08-18T05:00:52
vercel/next.js
d41c50b82833a4c53a726e1e2044bb453db9e9f6
5415c3f32203587a1aac969428cb81d9ff0515f2
Turbopack: Store task error as pointer to the source error (#89293) Store task error as pointer to the source error <!-- 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 che...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -37,8 +37,8 @@ use tracing_subscriber::{Registry, layer::SubscriberExt, util::SubscriberInitExt\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n Effects, FxIndexSet, NonLocalValue, OperationValue, OperationVc, PrettyPri...
2026-02-12T05:37:38
facebook/react
a947eba4f2c8741d2c61a3b33fd79cf13bf9f39d
374dfe8edf8beef62e5bb312f99c600a232f353f
Fix CI (#33578)
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -301,10 +301,12 @@ jobs:\n path: |\n **/node_modules\n key: runtime-and-compiler-node_modules-v6-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock', 'compiler/yarn.lock') }}\n- restore-...
2025-06-19T21:40:59
nodejs/node
684c3b31f066cb3506315f721070c11a9a788116
fbef1cf438ad27ce04d679aa3384e5e291d20474
test: capture stack trace in debugger timeout errors Otherwise when the expected prompt does not show up in the session and the debugger tests time out, there is not enough information to figure out exactly which line in the test is causing the timeout. PR-URL: https://github.com/nodejs/node/pull/60457 Reviewed-By: E...
[ { "path": "test/common/debugger.js", "patch": "@@ -88,12 +88,12 @@ function startCLI(args, flags = [], spawnOpts = {}, opts = { randomPort: true })\n reject(new Error(message));\n }\n \n+ // Capture stack trace here to show where waitFor was called from when it times out.\n+ ...
2025-10-31T13:18:50
electron/electron
0e6c26096f857ad4e8cc4c5eb312096538213a76
7792ed1efa6bb8a71f328af378b8694ae17cc227
fix: `shell.openPath` should be non-blocking (#48079) fix: shell.openPath should be non-blocking
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -342,7 +342,7 @@ void ShowItemInFolder(const base::FilePath& full_path) {\n \n void OpenPath(const base::FilePath& full_path, OpenCallback callback) {\n // This is async, so we don't care about the return value.\n- XDGOpen(full_path.DirName(),...
2025-08-15T20:55:31
golang/go
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
8ac4477d83672af8c3d39399685731ee6b81ce2f
lib/fips140: freeze v1.26.0 FIPS 140-3 module Fixes #76770 Change-Id: Ia617f01ea9be0d1759147b6cca0403c56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731840 Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,4 +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\n+v1.26.0.zip 9b28f847fdf...
2025-12-19T22:14:36
facebook/react
2bee34867d30083ce01232baccb72b6fa696456b
d37faa041bce86c1cbb05fdbc839440c9d9de9cf
[compiler] Cleanup debugging code (#33571) Removes unnecessary debugging code in the new inference passes now that they've stabilized more. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33571). * _...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -57,7 +57,6 @@ import {\n import {\n printAliasingEffect,\n printAliasingSignature,\n- printFunction,\n printIdentifier,\n printInstruction,\n printInstructionValue,\n@@ -194,19 +...
2025-06-18T23:00:55
vercel/next.js
51d97c8bdcb2ccdf30207eac1331665a1bc2756f
b6cf46a851e75001026592c6c0c14d84d558246f
test: allow query suffix in related media URL e2e assertions (#89872) ## Summary - apply the same deploy query-suffix tolerance (`(?:\?.*)?`) to related e2e background-image URL assertions - update SCSS URL tests (`url-global-partial`, `url-global-asset-prefix-1`, `url-global-asset-prefix-2`) and `url-imports` CSS bac...
[ { "path": "test/e2e/app-dir/scss/url-global-asset-prefix-1/url-global-asset-prefix-1.test.ts", "patch": "@@ -34,7 +34,7 @@ describe.skip('SCSS Support loader handling', () => {\n .elementByCss('.red-text')\n .getComputedCss('background-image')\n expect(background).toMatch(\n- ...
2026-02-12T01:28:47
nodejs/node
fbef1cf438ad27ce04d679aa3384e5e291d20474
0981426d3c37891fcf03a1bba5611bcd2cd5ba22
util: fix stylize of special properties in inspect Previously, formatExtraProperties applied ctx.stylize to the entire '[key]: value' string. This caused the colon and space to be styled, making the output inconsistent with normal object properties. Now, only the key itself is stylized, and the colon and space remain...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -2520,7 +2520,8 @@ function formatExtraProperties(ctx, value, recurseTimes, key, typedArray) {\n ctx.indentationLvl -= 2;\n \n // These entries are mainly getters. Should they be formatted like getters?\n- return ctx.stylize(`[${key}]: ${str}`, 'st...
2025-10-31T08:33:38
electron/electron
68e7b38c05fe4df862df3bf537f2ded5854ecab5
a051c7c2747719de9068e00db707853296a6aa07
build: use quick tunnels for ssh debugging (#47938) * build: use dynamic local tunnels for ssh debugging * weeee * that'll do * chore: pretty output * build: allow ssh input --------- Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
[ { "path": ".github/actions/ssh-debug/action.yml", "patch": "@@ -6,10 +6,10 @@ inputs:\n required: true\n default: 'false'\n timeout:\n- description: 'SSH session timeout in minutes'\n+ description: 'SSH session timeout in seconds'\n required: false\n type: number\n- default: 60\n+...
2025-08-14T11:41:07
golang/go
874d8b98eba8129559b97d2fdfa02ddeb88b95f9
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
cmd/go/internal/work: decrement concurrentProcesses when action finishes This fixes a bug where we only incremented concurrentProcesses but never decremented it, causing us to run out of tokens and give all compiles -c=1 after a point. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-l...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -248,6 +248,11 @@ func (b *Builder) Do(ctx context.Context, root *Action) {\n \n \twg.Wait()\n \n+\tif tokens != totalTokens || concurrentProcesses != 0 {\n+\t\tbase.Fatalf(\"internal error: tokens not restored at end of build: tokens: %d, totalToke...
2026-01-06T22:18:48
facebook/react
3a2ff8b51b5ab54c22f55a5f826c53419f718887
cc3806377a43f0bd339d54ceaf2e1e16b0b113bf
[compiler] Fix <ValidateMemoization> (#33547) By accident we were only ever checking the compiled output, but the intention was in general to be able to compare memoization with/without forget. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](h...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/todo-control-flow-sensitive-mutation.expect.md", "patch": "@@ -23,14 +23,9 @@ function Component({a, b, c}: {a: number; b: number; c: number}) {\n \n return (\n <>\n- <ValidateMemoization input...
2025-06-18T23:00:36
vercel/next.js
b6cf46a851e75001026592c6c0c14d84d558246f
317b7d26df367c242e107333ef322849666c0c3c
Allow sitemap.ts and sitemap/page.tsx to coexist in Turbopack (#89789) Solves #78609 Today, Turbopack maps `app/sitemap.ts` to an AppPage of `/sitemap/route`, and `app/sitemap/page.tsx` maps to `/sitemap/page`, which leads to a conflict. This treats sitemap.xml the same way as robots.txt and site.webmanifest, an...
[ { "path": "crates/next-core/src/next_app/metadata/mod.rs", "patch": "@@ -332,6 +332,8 @@ pub fn normalize_metadata_route(mut page: AppPage) -> Result<AppPage> {\n route += \".txt\"\n } else if route == \"/manifest\" {\n route += \".webmanifest\"\n+ } else if route.ends_with(\"/sitemap...
2026-02-12T00:30:29
electron/electron
53003d7af9e8e15d6b9883ab1928fe0c1d50a168
63d7f609cdafcc6602bf2b81d719e18c9a77cd7a
fix: `app.accessibilitySupportEnabled` (#48041) fix: app.accessibilitySupportEnabled on macOS
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1159,7 +1159,8 @@ void App::DisableDomainBlockingFor3DAPIs(gin_helper::ErrorThrower thrower) {\n \n bool App::IsAccessibilitySupportEnabled() {\n auto* ax_state = content::BrowserAccessibilityState::GetInstance();\n- return ax_state->GetAcc...
2025-08-12T20:51:27