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
facebook/react
fe225e3a1fc3aefc97d5bc535aeae8ebae0666fb
0a76aecbfa3d493c6b97998d0444f6505f5e5365
[ci] Add devtools regression workflow More or less a straight copy from the circleci config. I spotted some inefficiencies but will fix those later to make reviewing this easier. ghstack-source-id: cb3456c602bf0bd3cb6ef5862ecac6b8d6e99e0b Pull Request resolved: https://github.com/facebook/react/pull/30406
[ { "path": ".github/workflows/devtools_regression_tests.yml", "patch": "@@ -0,0 +1,171 @@\n+name: (DevTools) Regression Tests\n+\n+on:\n+ schedule:\n+ - cron: 0 0 * * *\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required: false\n+\n+env:\n+ TZ: /usr/share/zoneinfo/Amer...
2024-07-25T21:20:16
vercel/next.js
0f09c40ac98d71179f974a74fde3797d46f38f11
700fecf2f21220b96f2eb2192af528196784cc3d
Turbopack: Better error for sassOptions.functions as it's unsupported (#85073) ## What? Implements an error for the case where Turbopack is used with sassOptions.functions. Fixes #65241
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/sassOptions.mdx", "patch": "@@ -43,4 +43,7 @@ const nextConfig = {\n module.exports = nextConfig\n ```\n \n-> **Good to know:** `sassOptions` are not typed outside of `implementation` because Next.js does not maintain the other possible pro...
2025-10-19T21:45:40
rust-lang/rust
20768d802e295ac3345dd05636ec168b3f0602bd
d9563937fa3b030c5845811113505070109414d2
fix(thir): Include NoneWithError in enum struct tail assertion
[ { "path": "compiler/rustc_mir_build/src/thir/cx/expr.rs", "patch": "@@ -645,6 +645,7 @@ impl<'tcx> ThirBuildCx<'tcx> {\n base,\n hir::StructTailExpr::None\n | hir::StructTailExpr::DefaultFields(_)...
2026-03-04T10:11:04
electron/electron
e2fe8f50e2e1e55d66dea70ea62e3952edb3ff26
8c5e7bbf6b8759488f01faa39c583e16966c81e2
fix: update `BrowserView#lastWindowSize` after window resize (#43463) fix: update BrowserView#lastWindowSize after window resize (#43462)
[ { "path": "lib/browser/api/browser-view.ts", "patch": "@@ -145,6 +145,12 @@ export default class BrowserView {\n if (this.#autoHorizontalProportion || this.#autoVerticalProportion) {\n this.#webContentsView.setBounds(newViewBounds);\n }\n+\n+ // Update #lastWindowSize value after browser wi...
2024-09-09T12:22:30
golang/go
fde10c4ce7f3b32acd886992450dd94cafb699a4
5d040df09271ad2f1b0f93abf94a1b2efc8871df
runtime: split gcMarkWorkAvailable into two separate conditions Right now, gcMarkWorkAvailable is used in two scenarios. The first is critical: we use it to determine whether we're approaching mark termination, and it's crucial to reaching a fixed point across the ragged barrier in gcMarkDone. The second is a heuristi...
[ { "path": "src/runtime/mcheckmark.go", "patch": "@@ -68,7 +68,7 @@ func startCheckmarks() {\n \n // endCheckmarks ends the checkmarks phase.\n func endCheckmarks() {\n-\tif gcMarkWorkAvailable(nil) {\n+\tif !gcIsMarkDone() {\n \t\tthrow(\"GC work not flushed\")\n \t}\n \tuseCheckmark = false", "addition...
2025-09-05T17:39:09
nodejs/node
24e4a5447197c1adaec1538b0d55732e21b11a87
538c813fa3efa84f6cb05497506c2a4f29b9987d
src,permission: make ERR_ACCESS_DENIED more descriptive This commit also adds a suggestion flag (if exists) when ERR_ACCESS_DENIED is thrown, so users don't need to jump into the documentation to see how to manage that permission error. PR-URL: https://github.com/nodejs/node/pull/57585 Reviewed-By: Matteo Collina <ma...
[ { "path": "src/permission/permission.cc", "patch": "@@ -59,15 +59,15 @@ static void Has(const FunctionCallbackInfo<Value>& args) {\n \n } // namespace\n \n-#define V(Name, label, _) \\\n+#define V(Name, label, _, __) ...
2025-04-03T22:24:39
facebook/react
c5fa460784c41a2e09e9ed1c4468f4f089e2a78b
e8df0cf9f7c7f641192f19841db9bf34b6a0abf7
[compiler] Add tests for incorrect global mutation detection If a function expression that mutates a global is passed as a prop, we don't throw an error as we assume it's not called in render. But if this function expression is captured in an object and passed down as prop, we throw an error. ghstack-source-id: 74ca...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.object-capture-global-mutation.expect.md", "patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Foo() {\n+ const x = () => {\n+ window.href = 'foo';\n+ };\n+ const y = {x};\n+ return <Bar ...
2024-07-25T13:06:30
vercel/next.js
700fecf2f21220b96f2eb2192af528196784cc3d
09772c3aa89d06f7d8c170e1614283f32b8bbbdf
cli: build partial entries --debug-build-paths arg (#85052) Add `--debug-build-paths` CLI option to next build for selective route building. This enables building only specific routes for faster development and debugging. ### Changes - Add `--debug-build-paths=<patterns>` CLI option - Support comma-separated paths...
[ { "path": "packages/next/errors.json", "patch": "@@ -888,5 +888,7 @@\n \"887\": \"`cacheLife()` is only available with the `cacheComponents` config.\",\n \"888\": \"Unknown \\\\`cacheLife()\\\\` profile \\\"%s\\\" is not configured in next.config.js\\\\nmodule.exports = {\\n cacheLife: {\\n \\\"%s\\...
2025-10-19T21:18:03
electron/electron
8c5e7bbf6b8759488f01faa39c583e16966c81e2
0d4d752c1bad2cdf05e56f7c32772e0adb1ab17b
fix: UvHandle move semantics (#43615) reassign the uv_handle_t of the source
[ { "path": "shell/common/node_bindings.h", "patch": "@@ -62,8 +62,17 @@ class UvHandle {\n UvHandle() : t_{new T} {}\n ~UvHandle() { reset(); }\n \n- UvHandle(UvHandle&&) = default;\n- UvHandle& operator=(UvHandle&&) = default;\n+ explicit UvHandle(UvHandle&& that) {\n+ t_ = that.t_;\n+ that.t_ ...
2024-09-09T12:13:39
golang/go
7e0251bf584c5fe79e95b9c460c7d60a7199d0ae
22ac328856ae4c0dcd3d770f50aac5a2df498989
runtime: don't report non-blocked goroutines as "(durable)" in stacks Only append the " (durable)" suffix to a goroutine's status when the goroutine is waiting. Avoids reporting a goroutine as "runnable (durable)". Change-Id: Id679692345afab6e63362ca3eeff16808367e50f Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1249,6 +1249,7 @@ func goroutineheader(gp *g) {\n \t\tprint(\" (scan)\")\n \t}\n \tif bubble := gp.bubble; bubble != nil &&\n+\t\tgpstatus == _Gwaiting &&\n \t\tgp.waitreason.isIdleInSynctest() &&\n \t\t!stringslite.HasSuffix(status, \"(durable)\") {\n \t\...
2025-09-22T22:15:40
nodejs/node
538c813fa3efa84f6cb05497506c2a4f29b9987d
264d03197e64cac6c86dc4351a220e10b1c831b6
src: fixup fs SyncCall to propagate errors correctly Propagate errors correctly in the SyncCall utility. Previously the test case would trigger a crash. PR-URL: https://github.com/nodejs/node/pull/57711 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/node_file-inl.h", "patch": "@@ -344,23 +344,29 @@ FSReqBase* AsyncCall(Environment* env,\n // creating an error in the C++ land.\n // ctx must be checked using value->IsObject() before being passed.\n template <typename Func, typename... Args>\n-int SyncCall(Environment* env, v8::Local<v8::Va...
2025-04-01T16:53:41
facebook/react
e8df0cf9f7c7f641192f19841db9bf34b6a0abf7
66968535c6e997405a1b1e6e491a48e25843d95f
Switch to binding the console with badging instead of calling it directly (#30461) This is a major nit but this avoids an extra stack frame when we're replaying logs. Normally the `printToConsole` frame doesn't show up because it'd be ignore listed. <img width="421" alt="Screenshot 2024-07-25 at 11 49 39 AM" ...
[ { "path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js", "patch": "@@ -20,21 +20,22 @@ const badgeStyle =\n const resetStyle = '';\n const pad = ' ';\n \n-export function printToConsole(\n+const bind = Function.prototype.bind;\n+\n+export function bindToConsole(\n methodName: string,\n ...
2024-07-25T16:32:16
vercel/next.js
fe1bcafd10b593af65af60336a4bb30ea7e5f437
6957fa4b573b51042140b0acfc49c9458447c98d
Turbopack: Implement next/font/local declarations option (#85051) ## What? Fixes #82822. Implements `declarations` which was missing in the implementation of `next/font/local`
[ { "path": "crates/next-core/src/next_font/local/options.rs", "patch": "@@ -9,6 +9,7 @@ use super::request::{\n AdjustFontFallback, NextFontLocalRequest, NextFontLocalRequestArguments, SrcDescriptor,\n SrcRequest,\n };\n+use crate::next_font::local::request::NextFontLocalDeclaration;\n \n /// A norma...
2025-10-19T02:28:32
golang/go
2b50ffe172ee638a88e2750481eaeeac7d3bedfa
2d8cb80d7c4af3dbcb507783938ceb0e071f64e3
[dev.simd] cmd/compile: remove stores to unread parameters Currently, we remove stores to local variables that are not read. We don't do that for arguments. But arguments and locals are essentially the same. Arguments are passed by value, and are not expected to be read in the caller's frame. So we can remove the writ...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F...
2025-09-22T14:57:29
nodejs/node
264d03197e64cac6c86dc4351a220e10b1c831b6
3b34fd77f27d074d606c95cda861e91d52deac84
src: fix inefficient usage of v8_inspector::StringView v8_inspector::StringView can either be one-byte or two-byte strings. Node has currently two places where it's unconditionally assumed that it's a two-byte StringView. This requires the upstream V8 inspector to unnecessarily create a copy of the string: https://s...
[ { "path": "src/inspector_js_api.cc", "patch": "@@ -23,7 +23,6 @@ using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n using v8::MaybeLocal;\n-using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Uint32;\n@@ -69,9 +68,8 @@ class JSBindingsConnection : public BaseObject {\n...
2025-04-03T19:38:27
facebook/react
e5d22459ffd094ffd71c3e8857b62b3c6754c58d
4b62400765b6412dd074526687ef447550b687d1
[Flight] Include environment name both in the virtual URL and findSourceMapURL (#30452) This way you can use the environment to know where to look for the source map in case you have multiple server environments. This becomes part of the public protocol since it's part of what you'll parse out of the `rsc://React...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -232,7 +232,10 @@ Chunk.prototype.then = function <T>(\n }\n };\n \n-export type FindSourceMapURLCallback = (fileName: string) => null | string;\n+export type FindSourceMapURLCallback = (\n+ fileName: string,\n+ environmentName: st...
2024-07-25T15:14:24
electron/electron
0d4d752c1bad2cdf05e56f7c32772e0adb1ab17b
0568686340ffdda30454dafe3270fc3a21b94096
build(deps): bump the npm_and_yarn group across 2 directories with 3 updates (#43511) * build(deps): bump the npm_and_yarn group across 2 directories with 3 updates Bumps the npm_and_yarn group with 1 update in the / directory: [braces](https://github.com/micromatch/braces). Bumps the npm_and_yarn group with 3 upd...
[ { "path": "spec/api-web-contents-spec.ts", "patch": "@@ -1,15 +1,16 @@\n import { expect } from 'chai';\n import { AddressInfo } from 'node:net';\n+import * as cp from 'node:child_process';\n import * as path from 'node:path';\n import * as fs from 'node:fs';\n import * as http from 'node:http';\n+import * ...
2024-09-09T09:49:43
vercel/next.js
43fd4bc19b73e5f4fb62d07f67318b7168b6e7e9
a83f3c061db42c13cd106344b1717c0e0d8cea0d
Turbopack: Remove unneeded warning for telemetry (#85039) ### What? * The information is only needed for telementry, we should not error when a module doesn't match the regexp. * Fix the regex to support json too. (it was missing a layer attribute)
[ { "path": "packages/next/src/client/dev/hot-reloader/turbopack-hot-reloader-common.ts", "patch": "@@ -142,11 +142,8 @@ function extractModulesFromTurbopackMessage(\n \n for (const mergedUpdate of update.instruction.merged) {\n for (const name of Object.keys(mergedUpdate.entries)) {\n- const...
2025-10-19T00:45:29
facebook/react
e4b4aac2a01b53f8151ca85148873096368a7de2
76002254b7e3270da199eec1e6f9a0577b988a36
Fix existing usage of names/type in build command (#30450) https://github.com/facebook/react/pull/30422 broke existing build shortcuts. Revert the usage of `names` (`_`) and `type` args. `yarn build-for-devtools` / `yarn build-for-devtools-dev` / `yarn build-for-devtools-prod` should all work again. Moved t...
[ { "path": "scripts/rollup/build-all-release-channels.js", "patch": "@@ -80,16 +80,12 @@ const argv = yargs.wrap(yargs.terminalWidth()).options({\n type: 'choices',\n choices: ['circleci', 'github'],\n },\n- bundle: {\n- describe: 'Build the given bundle type.',\n+ type: {\n+ describe: `Bui...
2024-07-25T11:44:57
nodejs/node
668a0b8c28c702d702e9f81483b64486750bd155
8360ce2abff6f7feef7335f5f144f4397584d83c
win: fix SIGQUIT on ClangCL PR-URL: https://github.com/nodejs/node/pull/57659 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node.h", "patch": "@@ -67,7 +67,8 @@\n #endif\n \n #ifdef _WIN32\n-# define SIGKILL 9\n+#define SIGQUIT 3\n+#define SIGKILL 9\n #endif\n \n #include \"v8.h\" // NOLINT(build/include_order)", "additions": 2, "deletions": 1, "language": "C/C++ Header" }, { "path": "test/par...
2025-04-03T16:40:13
electron/electron
44a4328ea8977b6f4b165e47ecaee54c23af7e97
18b1b33adcd921aaa3ffb0cf8d45792a26f4025a
refactor: take a `uint8_t` span in `ValidateIntegrityOrDie()` (#43592) refactor: take a uint8_t span in ValidateIntegrityOrDie() Doing some groundwork for fixing unsafe base::File() APIs: - Change ValidateIntegrityOrDie() to take a span<const uint8_t> arg. We'll need this to migrate asar's base::File API call...
[ { "path": "shell/common/asar/archive.cc", "patch": "@@ -251,9 +251,8 @@ bool Archive::Init() {\n // Currently we only support the sha256 algorithm, we can add support for\n // more below ensure we read them in preference order from most secure to\n // least\n- if (integrity.value().algorithm ...
2024-09-07T01:22:44
vercel/next.js
28a7e8b33be3ca54aae715b8c011dde29b6ae7c4
49fcbd93f2c579d79f2005dccf82a93686d6919a
[ci]: increase number of runners for test jobs (#85049) <!-- 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 Contribu...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -240,7 +240,7 @@ jobs:\n exclude:\n # Excluding React 18 tests unless on `canary` branch until budget is approved.\n - react: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.nam...
2025-10-18T23:04:10
facebook/react
76002254b7e3270da199eec1e6f9a0577b988a36
933b737f64808559272c822b80699f4db84773a4
Fix resolving of references to deduped props in lazy elements (#30441) When a model references a deduped object of a blocked element that has subsequently been turned into a lazy element, we need to wait for the lazy element's chunk to resolve before resolving the reference. Without the fix, the new test failed w...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -827,7 +827,7 @@ function getChunk(response: Response, id: number): SomeChunk<any> {\n }\n \n function waitForReference<T>(\n- referencedChunk: PendingChunk<T> | BlockedChunk<T>,\n+ referencedChunk: SomeChunk<T>,\n parentObject: Ob...
2024-07-24T23:34:41
electron/electron
fe0d4274e23663e2047cac8f18b3940142ad9cda
cc5aa65cb421ffa0df823cae09a3dacb0485e698
fix: confirm a `v8::Value` is a `v8::Object` before casting it (#43575) fix: confirm a v8::Value is a v8::Object before casting it
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -30,12 +30,12 @@ namespace electron {\n \n namespace {\n \n-bool IsValidWrappable(const v8::Local<v8::Value>& obj) {\n- v8::Local<v8::Object> port = v8::Local<v8::Object>::Cast(obj);\n-\n- if (!port->IsObject())\n+bool IsValidWrappable(const v8::...
2024-09-06T16:20:04
nodejs/node
771b6829e6eac1e2362a477a3c5a59b0de8a30cc
3984bc1a368ed473dccaa335c48c3227ace2f9ce
sqlite: refactor prepared statement iterator This commit refactors the StatementSync iterator implementation in two primary ways: - The iterator internal state is no longer exposed to JavaScript. - The iterator prevents the prepared statement from being GC'ed. Fixes: https://github.com/nodejs/node/issues/57493 PR-UR...
[ { "path": "src/env_properties.h", "patch": "@@ -448,6 +448,7 @@\n V(shutdown_wrap_template, v8::ObjectTemplate) \\\n V(socketaddress_constructor_template, v8::FunctionTemplate) \\\n V(sqlite_statement_sync_constructor_template, v8::FunctionTemplate) ...
2025-04-03T14:16:24
golang/go
63a09d6d3d68acedfc9e5fd2daf6febc35aca1d6
2ca96d218d2cbaad99ba807b3bddd90bbf6a5ba8
[dev.simd] cmd/compile: fix SIMD const rematerialization condition This CL fixes a condition for the previous fix CL 704056. Change-Id: I1f1f8c6f72870403cb3dff14755c43385dc0c933 Reviewed-on: https://go-review.googlesource.com/c/go/+/705499 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2576,22 +2576,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa...
2025-09-19T18:38:25
vercel/next.js
e46d8bef70ff2ecc7f7b0f558f9fd0c8cb3c68d4
0295842b7b0047af94f569f50269983e91a27b95
Turbopack: make tracing warning not fail build (#85032) It called "warning", but it had severity error.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/raw.rs", "patch": "@@ -304,7 +304,7 @@ impl Issue for TooManyMatchesWarning {\n }\n \n fn severity(&self) -> IssueSeverity {\n- IssueSeverity::Error\n+ IssueSeverity::Warning\n }\n \n #[turbo_tasks::function]", ...
2025-10-18T20:54:27
facebook/react
91e4f0712ec6da30b01054cab439d985798a9ebb
c0b76a68318687bf5260d623c7b70a8156be21d9
[compiler] Repro for outlining bug in funcexprs I discovered this compiler crash while trying to do an internal sync of the compiler. Any kind of outlining appears to crash the babel plugin when the component is a function expression. ghstack-source-id: 4f717674af91d4d4b730e64cbd7a144b9faab13e Pull Request resolved: ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.bug-outlining-in-func-expr.expect.md", "patch": "@@ -0,0 +1,24 @@\n+\n+## Input\n+\n+```javascript\n+const Component2 = props => {\n+ return (\n+ <ul>\n+ {props.items.map(item => (\n+ <li key={item...
2024-07-24T19:57:03
rust-lang/rust
db6ee18fd084381100899129cda2cfd050b77045
ddd36bd57051f796850345b76c17e9402e28a9e4
Fix multi-crate crash if dependency has enabled AsyncDrop
[ { "path": "compiler/rustc_hir_analysis/src/check/mod.rs", "patch": "@@ -133,7 +133,12 @@ fn adt_destructor(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Option<ty::Destructor>\n }\n \n fn adt_async_destructor(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Option<ty::AsyncDestructor> {\n- tcx.calculate_async_dtor(def_...
2026-03-04T08:40:47
electron/electron
cc5aa65cb421ffa0df823cae09a3dacb0485e698
25f4691e7864be7feb11df7fc4228480fff13960
fix: delete UvTaskRunner's timers only after they're closed (#43561) * fix: free UvTaskRunner timers only after they are closed * refactor: UvTaskRunner now holds UvHandles
[ { "path": "shell/app/uv_task_runner.cc", "patch": "@@ -2,31 +2,33 @@\n // Use of this source code is governed by the MIT license that can be\n // found in the LICENSE file.\n \n+#include \"shell/app/uv_task_runner.h\"\n+\n #include <utility>\n \n #include \"base/location.h\"\n #include \"base/time/time.h\"\...
2024-09-06T12:16:56
nodejs/node
10cff7b33d785c9e6034f3f0b65109fb902ebb69
657f81853253a16ed9557d67d17372498a419a9f
quic: fix debug log PR-URL: https://github.com/nodejs/node/pull/57689 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/quic/quic.js", "patch": "@@ -776,7 +776,7 @@ class QuicStream {\n [kSendHeaders](headers) {\n validateObject(headers, 'headers');\n if (this.pending) {\n- debug('pending stream enqueing headers', headers);\n+ debug('pending stream enqueuing headers', headers);\n ...
2025-04-03T10:36:56
golang/go
e23edf5e55703cc6ddbb86a198a35487b34d863b
177cd8d7633843c3eabf8f887381cadbeed3514b
runtime: don't re-read metrics before check in TestReadMetricsSched The two remaining popular flakes in TestReadMetricsSched are with waiting and not-in-go goroutines. I believe the reason for both of these is pollution due to other goroutines in the test binary, and we can be a little bit more robust to them. In par...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1760,8 +1760,6 @@ func TestReadMetricsSched(t *testing.T) {\n \t\t\tmetrics.Read(s[:])\n \t\t\treturn s[notInGo].Value.Uint64() >= count\n \t\t})\n-\n-\t\tmetrics.Read(s[:])\n \t\tlogMetrics(t, s[:])\n \t\tcheck(t, &s[notInGo], count, count+generalSlack...
2025-09-22T17:36:03
vercel/next.js
21cb611d24864cdb192d6ec63163faccdbee9907
6d9caf3e90be198e223ab2c39e4e0141d14faee7
Turbopack: fix race condition when adding dependencies (#84946) ### What? There is a race condition with the way we add the dependency backedges. We add the "dependent" edge first and in a separate lock the "dependency" edge. But if an invalidation happens just between these locks it do not invalidate the task as it'...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -467,7 +467,19 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.assert_not_persistent_calling_transient(reader, task_id, /* cell_id */ None);\n \n let mut ctx = self.execute_context(turbo_tasks);\n...
2025-10-18T16:03:20
facebook/react
ab2135c708b4da306c4c6c9958ce704bc14af460
e902c45caf7ca67810d3e53748a549bdcc36063b
[BE] enable prettier for flow fixtures (#30426) Since switching to `hermes-parser`, we can parse all flow syntax and no longer need to exclude these fixtures from prettier.
[ { "path": ".prettierignore", "patch": "@@ -18,7 +18,6 @@ packages/react-devtools-timeline/static\n # react compiler\n compiler/**/dist\n compiler/**/__tests__/fixtures/**/*.expect.md\n-compiler/**/__tests__/fixtures/**/*.flow.js\n compiler/**/.next\n \n # contains invalid graphql`...` which results in a pro...
2024-07-24T14:59:40
electron/electron
25f4691e7864be7feb11df7fc4228480fff13960
3fde574db1466772d7883303efada275eeb0ed48
fix: ensure version of `xdg-dialog-portal` with `defaultPath` support (#43570) fix: ensure version of xdg-dialog-portal with defaultPath support Closes https://github.com/electron/electron/issues/43310
[ { "path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch", "patch": "@@ -199,10 +199,21 @@ index 58985ce62dc569256bad5e94de9c0d125fc470d0..33436784b691c860d58f8b4dfcc6718e\n &SelectFileDialogLinuxKde::OnSelectSingleFolderDialogResponse, this,\n pa...
2024-09-06T09:12:16
nodejs/node
5a2614fd03b93da972c34c4842d3cb6bd12be65a
35188cd67780ed443d665b6cd50159d099e1df7d
test: fix dangling promise in test_runner no isolation test setup PR-URL: https://github.com/nodejs/node/pull/57595 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "test/fixtures/test-runner/no-isolation/global-hooks.cjs", "patch": "@@ -0,0 +1,6 @@\n+const test = require('node:test');\n+\n+test.before(() => console.log('before(): global'));\n+test.beforeEach(() => console.log('beforeEach(): global'));\n+test.after(() => console.log('after(): global'));\n+tes...
2025-04-02T19:30:53
golang/go
177cd8d7633843c3eabf8f887381cadbeed3514b
2353c1578596aae7128f028c75b52c6047f0b057
log/slog: use a pooled json encoder goos: linux goarch: amd64 pkg: log/slog/internal/benchmarks cpu: 12th Gen Intel(R) Core(TM) i7-1260P │ old.txt │ new.txt │ │ sec/op │ sec/op vs base │ Attrs/JS...
[ { "path": "src/log/slog/internal/benchmarks/benchmarks.go", "patch": "@@ -31,12 +31,19 @@ import (\n \n const testMessage = \"Test logging, but use a somewhat realistic message length.\"\n \n+type event struct {\n+\tID string\n+\tIndex int\n+\tFlag bool\n+}\n+\n var (\n \ttestTime = time.Date(2022, ...
2025-09-20T11:33:03
vercel/next.js
6d9caf3e90be198e223ab2c39e4e0141d14faee7
2f8b1ece6d87e8d476220da9c5e7d0b46427e2f4
fix: incorrect canonicalUrl set when using output: export (#85019) After the changes in https://github.com/vercel/next.js/commit/5ccc9078e094215e6c891c38a31fb94cda03456e, when in `output: 'export'` mode, the `canonicalUrl` value was getting corrupted to be set to one of the URLs of the RSC responses (eg `/another.txt`...
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -158,6 +158,10 @@ export async function fetchServerResponse(\n headers[NEXT_URL] = nextUrl\n }\n \n+ // In static export mode, we need to modify the URL to request the .txt file,\n+ // but we should...
2025-10-18T06:43:02
facebook/react
b943feba35476196fa674de276f2b87624086896
c08b51600796706d59c51cddd372720e07c6b24b
[compiler] Stop relying on identifier mutable ranges after constructing scopes Addresses discussion at https://github.com/facebook/react/pull/30399#discussion_r1684693021. Once we've constructed scopes it's invalid to use identifier mutable ranges. The only places we can do this which i can find are ValidateMemoizedEf...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildReactiveScopeTerminalsHIR.ts", "patch": "@@ -9,7 +9,6 @@ import {\n GotoVariant,\n HIRFunction,\n InstructionId,\n- makeInstructionId,\n ReactiveScope,\n ReactiveScopeTerminal,\n ScopeId,\n@@ -19,7 +18,6 @@ import {\n markP...
2024-07-24T00:14:23
rust-lang/rust
6b13e5ee3e0f9e73092222b794b4e6476f1d0ba7
debbabedb3637aa7643f012019e85a5c40fc43f8
Fix a bug in associated type lowering When rewriting assoc type shorthand lowering (`TypeParam::AssocType`), I took into account that if two traits have the same assoc type, even if one is a supertrait of the other, it's an error. However it turns out that assoc type predicates (`Trait<AssocType = Foo>`) uses the same...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -1680,10 +1680,16 @@ impl SupertraitsInfo {\n }\n }\n \n-#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]\n-enum TypeParamAssocTypeShorthandError {\n- AssocTypeNotFound,\n- AmbiguousAssocType,\n+#[derive(Debug, Clone, P...
2026-03-04T07:24:16
electron/electron
3fde574db1466772d7883303efada275eeb0ed48
eff862b0839473cb34a6be3a62d89826a3b57e25
fix: -Wunsafe-buffer-usage warnings in url-loader (#43564) Use v8::ArrayBufferView::CopyContents() instead of doing the pointer math + memcpy() ourselves. This not only solves the buffer warnings, but may also avoid some additional overhead: > Copy the contents of the ArrayBufferView's buffer to an > embedder de...
[ { "path": "shell/common/api/electron_api_url_loader.cc", "patch": "@@ -11,6 +11,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/check_op.h\"\n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/memory/raw_ptr.h\"\n #include \"base/no_destructor.h\"\n@@ -131,12 +132,21 @@ name...
2024-09-06T01:22:03
nodejs/node
2bfcc1cbba724e17d097224cc3386106f44c46be
2ff6c7e5236cd29ab7f47019e7dacd01c5af4038
2025-04-01, Version 23.11.0 (Current) Notable changes: assert: * (SEMVER-MINOR) implement partial error comparison (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370 crypto: * (SEMVER-MINOR) add optional callback to `crypto.diffieHellman` (Filip Skokan) https://github.com/nodejs/node/pull/57274 process...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.10.0\">23.10.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.11.0\">23.11.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V23.md#23.10....
2025-04-01T09:20:34
facebook/react
f987f1a05737dae85350f0d24937f95b26494f58
ca5fef0f4a7b5dfc48fe560206f7b1d3621966ac
[compiler] Maintain RPO and unique instruction ids when constructing scope terminals Later passes may rely on HIR invariants such as blocks being in RPO or instructions having unique, ascending InstructionIds. However, BuildReactiveScopeTerminalsHIR doesn't currently gurantee this. This PR updates that pass to first ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/AssertTerminalBlocksExist.ts", "patch": "@@ -39,6 +39,7 @@ export function assertTerminalPredsExist(fn: HIRFunction): void {\n [...eachTerminalSuccessor(predBlock.terminal)].includes(block.id),\n {\n reason: 'Terminal...
2024-07-23T01:07:52
golang/go
2353c1578596aae7128f028c75b52c6047f0b057
32dfd69282ac86b0ce49909d36e2a4e5797ad25c
cmd/cgo/internal/test: skip TestMultipleAssign when using UCRT on Windows The Universal C Runtime (UCRT) default behavior is to crash the program when strtol is called with an invalid base (that is, not 0 or 2..36). This an invalid base (that is, not 0 or 2..36). This changes the test to skip when running on Windows a...
[ { "path": "src/cmd/cgo/internal/test/test.go", "patch": "@@ -1096,6 +1096,12 @@ func testErrno(t *testing.T) {\n }\n \n func testMultipleAssign(t *testing.T) {\n+\tif runtime.GOOS == \"windows\" && usesUCRT(t) {\n+\t\t// UCRT's strtol throws an unrecoverable crash when\n+\t\t// using an invalid base (that i...
2025-09-19T10:18:26
rust-lang/rust
91c7627c0f9df9624af546440bbbd0c5ba0cd268
d9563937fa3b030c5845811113505070109414d2
Remove `cycle_fatal` query modifier This removes the `cycle_fatal` query modifier as it has no effect on its current users. The default `CycleErrorHandling::Error` mode does the same as `cycle_fatal` when the default impl of `FromCycleError` is used. The return types of queries using `cycle_fatal` however have no spe...
[ { "path": "compiler/rustc_macros/src/query.rs", "patch": "@@ -144,7 +144,6 @@ struct QueryModifiers {\n arena_cache: Option<Ident>,\n cache_on_disk_if: Option<CacheOnDiskIf>,\n cycle_delay_bug: Option<Ident>,\n- cycle_fatal: Option<Ident>,\n cycle_stash: Option<Ident>,\n depth_limit: ...
2026-03-02T08:08:05
vercel/next.js
d917d2e45fe952bba3aa235d1bdb047d863e1782
b4080311f4f806c26c71d99fa45687b84777d424
[turbopack] Prevent accidental access to `.next` (#84714) Certain patterns in source code cause turbopack to scan the project directories for resources. This can go wrong when one of those patterns can traverse into .next (oroborous!). There is no usecase for turbopack to read files from the distDir during analysis ...
[ { "path": "Cargo.lock", "patch": "@@ -9525,6 +9525,7 @@ dependencies = [\n \"turbo-tasks-env\",\n \"turbo-tasks-fs\",\n \"turbo-tasks-malloc\",\n+ \"turbo-unix-path\",\n \"turbopack\",\n \"turbopack-bench\",\n \"turbopack-browser\",", "additions": 1, "deletions": 0, "language": "Unknown" ...
2025-10-17T23:18:16
electron/electron
69df09dc90e990a6282992b1d25ac694a0187dc8
6aae1264ddf816731a80733c4d39c800757754c3
fix: Launch apps with XDG_ACTIVATION_TOKEN in ozone/wayland (#43480) * fix: Launch apps with XDG_ACTIVATION_TOKEN in ozone/wayland Ensure apps are launched with the activation token received from xdg_activation_v1 protocol. * add focus_launched_process option
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -23,6 +23,7 @@\n #include \"base/posix/eintr_wrapper.h\"\n #include \"base/process/kill.h\"\n #include \"base/process/launch.h\"\n+#include \"base/run_loop.h\"\n #include \"base/strings/escape.h\"\n #include \"base/strings/string_util.h\"\n #incl...
2024-09-05T18:07:10
facebook/react
7c7087811eaf7db5e783c35527be73bfb35b599e
da4abf0047cf6dc6d9bff505bd93815264c8c3b7
[compiler] printTerminal always prints instruction id Doing some debugging I noticed that a few of the newer terminals kinds weren't printing the instruction id. ghstack-source-id: e0e4c96aeefdfe09d3be1527fd7103b4e506eb8e Pull Request resolved: https://github.com/facebook/react/pull/30397
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -276,27 +276,29 @@ export function printTerminal(terminal: Terminal): Array<string> | string {\n break;\n }\n case 'unsupported': {\n- value = `Unsupported`;\n+ value = `[${terminal.id}] Unsup...
2024-07-23T01:07:49
nodejs/node
2ff6c7e5236cd29ab7f47019e7dacd01c5af4038
1c2d98d380951d654e290e7d79257534af58a75f
doc: classify Chrome DevTools Protocol as tier 2 Chrome DevTools Protocol is the de-facto debugger protocol for Node.js and is tested regularly in Node.js test suite / CI. It matches the tier 2 classification but lacks proper documentation in Node.js. Classify the Chrome DevTools Protocol as tier 2 with a target of t...
[ { "path": "doc/contributing/diagnostic-tooling-support-tiers.md", "patch": "@@ -100,9 +100,9 @@ The tools are currently assigned to Tiers as follows:\n \n ## Tier 2\n \n-| Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier |\n-| --------- | ------------- | ----...
2025-04-01T12:33:04
vercel/next.js
b4080311f4f806c26c71d99fa45687b84777d424
bbfcbe9611e1b1edacb266140bc992c3b527ea4a
[Breaking] Rename instrumentation onRequestError `context.routeType` from `middleware` to `proxy` (#85006) Follow up on https://github.com/vercel/next.js/pull/84710, `instrumentation` docs had `onRequestError` function's param `context.routeType` has value of `'middleware'`. As it's a user-facing value, update it to `...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/instrumentation.mdx", "patch": "@@ -93,7 +93,7 @@ export function onRequestError(\n context: {\n routerKind: 'Pages Router' | 'App Router' // the router type\n routePath: string // the route file path, e.g. /app/blog/[dynamic]\n- route...
2025-10-17T21:31:24
electron/electron
73d480d40171b101e37ad04d7195893f01c72052
2d868ecb8d0baecdda4fb2f80a0f3ef58690fb6c
build: fix telemetry error when using autoninja (#43563)
[ { "path": "appveyor-woa.yml", "patch": "@@ -95,6 +95,8 @@ for:\n - git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git\n - ps: New-Item -Name depot_tools\\.disable_auto_update -ItemType File\n - depot_tools\\bootstrap\\win_tools.bat\n+ - ps: |\n+ ...
2024-09-05T08:08:27
facebook/react
da4abf0047cf6dc6d9bff505bd93815264c8c3b7
e2cac6753340f950c592d97184e8c0bdd9d3a475
[Fiber] Call life-cycles with a react-stack-bottom-frame stack frame (#30429) Stacked on #30427. Most hooks and such are called inside renders which already have these on the stack but life-cycles that call out on them are useful to cut off too. Typically we don't create JSX in here so they wouldn't be part of...
[ { "path": "packages/react-devtools-shared/src/__tests__/console-test.js", "patch": "@@ -254,12 +254,12 @@ describe('console', () => {\n </Intermediate>\n );\n const Child = ({children}) => {\n- React.useLayoutEffect(() => {\n+ React.useLayoutEffect(function Child_useLayoutEffect() {\...
2024-07-23T22:49:42
golang/go
32dfd69282ac86b0ce49909d36e2a4e5797ad25c
7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e
cmd/dist: disable FIPS 140-3 mode when testing maphash with purego hash/maphash can't be built with FIPS 140-3 mode and the purego tag since CL 703095. That change precludes running "GODEBUG=fips140=on go dist test" with, as there is a test variant that tests maphash with the purego tag. Change-Id: Iaedfaf3bb79281a79...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -705,6 +705,7 @@ func (t *tester) registerTests() {\n \t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\ttags: []string{\"purego\"},\n \t\t\t\tpkg: \"hash/maphash\",\n+\t\t\t\tenv: []string{\"GODEBUG=fips140=off\"}, // FIPS 140-3 mode is incompatible with...
2025-09-22T10:59:20
nodejs/node
1c2d98d380951d654e290e7d79257534af58a75f
e5ff73133ae702ed96f8daf4a66f6eac1e1d79ef
module: improve typescript error message format PR-URL: https://github.com/nodejs/node/pull/57687 Fixes: https://github.com/nodejs/node/issues/56830 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "lib/internal/modules/typescript.js", "patch": "@@ -63,10 +63,14 @@ function parseTypeScript(source, options) {\n * It allows us to distinguish between invalid syntax and unsupported syntax.\n */\n switch (error?.code) {\n- case 'UnsupportedSyntax':\n- throw new ERR_UNSUP...
2025-03-23T18:17:55
rust-lang/rust
2c69534c684ba34f45dbcad4960a96cda8ef0551
debbabedb3637aa7643f012019e85a5c40fc43f8
Release a new smol-str minor version with borsh fix
[ { "path": "src/tools/rust-analyzer/Cargo.lock", "patch": "@@ -2635,7 +2635,7 @@ dependencies = [\n \n [[package]]\n name = \"smol_str\"\n-version = \"0.3.5\"\n+version = \"0.3.6\"\n dependencies = [\n \"arbitrary\",\n \"borsh\",", "additions": 1, "deletions": 1, "language": "Unknown" }, { ...
2026-03-04T06:27:38
vercel/next.js
bae8bf460672938c20c93cad96c6c8eab0609316
b3bc0d8c1a774204085e8e8e1f6ceec1ecb909f1
[Cache Components] fix docs for cacheLife("seconds") (#85004) Looks like this was missed in #82332, when we bumped the staletime to 30s.
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -70,15 +70,15 @@ Next.js provides a set of named cache profiles modeled on various timescales. If\n \n However, we recommend always adding a cache profile when using the `use cache` directive to explicitly define caching behav...
2025-10-17T21:09:58
golang/go
7f6ff5ec3edfa1ed82014ad53f6cad3dc023f48e
9693b94be057b58f35bcc4a81c937495b93d588e
cmd/compile: fix doc word "using" -> "uses" Change-Id: I2bcefc6128dafd4fd05d7ce291b1afb28465a25c GitHub-Last-Rev: bf9006eeb65c94a4e492be29f530f511a3d6ffc1 GitHub-Pull-Request: golang/go#75548 Reviewed-on: https://go-review.googlesource.com/c/go/+/705515 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith R...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -57,7 +57,7 @@ terms of these, so the next step after type checking is to convert the syntax\n and types2 representations to ir and types. This process is referred to as\n \"noding.\"\n \n-Noding using a process called Unified IR, which builds a node repre...
2025-09-19T21:59:21
electron/electron
94f2722fa38a6638bf95cdd81fc03adf097e1ad6
054cbcd6eb2885e91a61e491da5b38e1a5d25855
build: don't run symbol generation on PS (#43554) fix: don't run symbol generation on PS
[ { "path": "appveyor-woa.yml", "patch": "@@ -174,8 +174,8 @@ for:\n if ($env:GN_CONFIG -eq 'release') {\n # Needed for msdia140.dll on 64-bit windows\n $env:Path += \";$pwd\\third_party\\llvm-build\\Release+Asserts\\bin\"\n- autoninja -C out/Default electron:elect...
2024-09-04T16:18:57
rust-lang/rust
fe71b660c50d70d66b1f1617ec19bdfb8ebb1ba1
d933cf483edf1605142ac6899ff32536c0ad8b22
Fix comment on `is_horizontal_whitespace` The comment on `is_horizontal_whitespace` says "This is Pattern_White_Space", but the function matches only tab (U+0009) and space (U+0020) -- two of the eleven `Pattern_White_Space` code points. This has been the case since Rust PR 146106, which narrowed the set from full `Pa...
[ { "path": "compiler/rustc_lexer/src/lib.rs", "patch": "@@ -367,7 +367,8 @@ pub fn is_whitespace(c: char) -> bool {\n \n /// True if `c` is considered horizontal whitespace according to Rust language definition.\n pub fn is_horizontal_whitespace(c: char) -> bool {\n- // This is Pattern_White_Space.\n+ ...
2026-03-04T05:53:51
facebook/react
e2cac6753340f950c592d97184e8c0bdd9d3a475
942eb80381b96f8410eab1bef1c539bed1ab0eb1
[Flight] Prefix owner stacks added to the console.log with the current stack (#30427) The current stack is available in the native UI but that's hidden by default so you don't see the actual current component on the stack. This is unlike the native async stacks UI where they're all together. So we prefix the st...
[ { "path": "packages/react-devtools-shared/src/__tests__/componentStacks-test.js", "patch": "@@ -56,13 +56,13 @@ describe('component stack', () => {\n \n expect(mockError).toHaveBeenCalledWith(\n 'Test error.',\n- (supportsOwnerStacks ? '' : '\\n in Child (at **)') +\n+ '\\n in Chil...
2024-07-23T20:48:32
nodejs/node
e5ff73133ae702ed96f8daf4a66f6eac1e1d79ef
0d910706ef4efa3a20e86d320ac95dd79e2dc624
deps: update amaro to 0.5.0 PR-URL: https://github.com/nodejs/node/pull/57687 Fixes: https://github.com/nodejs/node/issues/56830 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "deps/amaro/README.md", "patch": "@@ -29,6 +29,7 @@ console.log(code); // \"const foo = 'bar';\"\n \n It is possible to use Amaro as an external loader to execute TypeScript files.\n This allows the installed Amaro to override the Amaro version used by Node.js.\n+In order to use Amaro as a...
2025-03-30T00:36:34
electron/electron
054cbcd6eb2885e91a61e491da5b38e1a5d25855
4c83016cf3637001d7a57450a4c49c09de8ce73d
fix: don't use deprecate-soon class v8::String::Value (#43518) * fix: remove use of deprecated v8::String::Value Upstream marked v8::String::Value as `V8_DEPRECATE_SOON` last month, so let's stop using it. The replacement code mostly does the same as v8::String::Value(); but since our test only cares about the...
[ { "path": "shell/common/gin_converters/file_path_converter.h", "patch": "@@ -23,9 +23,8 @@ struct Converter<base::FilePath> {\n if (val->IsNull())\n return true;\n \n- v8::String::Value str(isolate, val);\n- if (str.length() == 0) {\n- *out = base::FilePath();\n+ if (val->IsString() ...
2024-09-04T13:56:14
vercel/next.js
b3bc0d8c1a774204085e8e8e1f6ceec1ecb909f1
c56789599e706b64be3242f782236de222a9df29
Show relative path from cwd for Proxy Middleware file conflict error (#84993) Show the relative path from cwd when a Proxy Middleware file conflict error occurs to better inform the users. Also, good for double-checking the detection logic. Closes NEXT-4740
[ { "path": "packages/next/errors.json", "patch": "@@ -881,5 +881,6 @@\n \"880\": \"Config options `experimental.proxyPrefetch` and `experimental.middlewarePrefetch` cannot be set at the same time. Please use `experimental.proxyPrefetch` instead.\",\n \"881\": \"Invalid render stage: %s\",\n \"882\": \"...
2025-10-17T20:45:33
facebook/react
08b4ee83cce726998bb5845898a24bd280033d4e
fc74a3a3e6a3ec8340a6202f8d07bb422240836d
[compiler] Add babel-plugin-idx to snap To surface any potential conflicts with this plugin, let's install it into snap so we can surface any runtime errors after compilation ghstack-source-id: 545eee6fb7f6401e919422581cf64070da581d50 Pull Request resolved: https://github.com/facebook/react/pull/30434
[ { "path": "compiler/packages/snap/package.json", "patch": "@@ -24,6 +24,7 @@\n \"@babel/preset-typescript\": \"^7.18.6\",\n \"@parcel/watcher\": \"^2.1.0\",\n \"@testing-library/react\": \"^13.4.0\",\n+ \"babel-plugin-idx\": \"^3.0.3\",\n \"babel-plugin-syntax-hermes-parser\": \"^0.15.1\"...
2024-07-23T19:46:56
golang/go
9693b94be057b58f35bcc4a81c937495b93d588e
8616981ce691248dfa585918a108e5f32c9aacc5
runtime: include stderr when objdump fails If objdump panics, we want the panic included in the test log. Change-Id: I6a6a636c13c5ba08acaa1c6c8714541a8e91542b Reviewed-on: https://go-review.googlesource.com/c/go/+/704338 Reviewed-by: Florian Lehner <lehner.florian86@gmail.com> Auto-Submit: Michael Pratt <mpratt@googl...
[ { "path": "src/runtime/unsafepoint_test.go", "patch": "@@ -43,7 +43,7 @@ func TestUnsafePoint(t *testing.T) {\n \tcmd := exec.Command(testenv.GoToolPath(t), \"tool\", \"objdump\", \"-s\", \"setGlobalPointer\", os.Args[0])\n \tout, err := cmd.CombinedOutput()\n \tif err != nil {\n-\t\tt.Fatalf(\"can't objdum...
2025-09-16T19:07:08
nodejs/node
0d910706ef4efa3a20e86d320ac95dd79e2dc624
12b81dfc9336e79146b9709ef3f336a739808f61
tools: enable linter on some fixtures file PR-URL: https://github.com/nodejs/node/pull/57674 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "eslint.config.mjs", "patch": "@@ -14,6 +14,7 @@ import {\n } from './tools/eslint/eslint.config_utils.mjs';\n import nodeCore from './tools/eslint/eslint-plugin-node-core.js';\n \n+const { globalIgnores } = await importEslintTool('eslint/config');\n const { default: js } = await importEslintTool(...
2025-04-01T08:36:12
facebook/react
50640a1b884c8ab656c1cb0626bbbf5f39a574b7
9cc0f6e68de2b83b11d1fb2b514d2f508c2da6f7
[compiler][repro] Test fixture for fbt whitespace bug ghstack-source-id: 749feb2cb8026858b4c01a7405272a56c7bc382b Pull Request resolved: https://github.com/facebook/react/pull/30394
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/bug-fbt-preserve-whitespace-param.expect.md", "patch": "@@ -0,0 +1,100 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from 'fbt';\n+\n+/**\n+ * Currently fails with the following:\n+ * Found differences in evaluat...
2024-07-23T18:17:57
electron/electron
53dcda1fe942f5bbfa2abc660b92574ff9e0c019
635d421123b996086f459ec3c6f97513e2e358cf
fix: Use XDG_ACTIVATION_TOKEN in wayland when launched by other app (#43481) When an electron app is launched by another app ensure that the XDG_ACTIVATION_TOKEN env var is read and used for activation using xdg_activation_v1 protocol.
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -406,6 +406,11 @@ std::optional<int> ElectronMainDelegate::PreBrowserMain() {\n content::InitializeMojoCore();\n #if BUILDFLAG(IS_MAC)\n RegisterAtomCrApp();\n+#endif\n+#if BUILDFLAG(IS_LINUX)\n+ // Set the global activation token sent as an...
2024-09-04T10:54:00
vercel/next.js
1bb10fc51cf44be3062ae7821a5050827999c302
fa70898f0d74d106fbce9f315af71e42f9afa1c8
Turbopack: Track errored tasks as dependency when using untracked() (#84914) ### What? The pattern `some_operation().untracked().await?` is dangerous as it propages the error to the parent task. An untracked read accepts an incorrectness due to eventual consistency during an update. This might also cause eventual co...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -28,8 +28,8 @@ use tokio::time::{Duration, Instant};\n use tracing::{Span, field::Empty, info_span, trace_span};\n use turbo_tasks::{\n CellId, FxDashMap, FxIndexMap, KeyValuePair, RawVc, ReadCellOptions, ReadConsistency,\...
2025-10-17T19:11:06
golang/go
b8af74436000dcb370b41ec70acc8ab4632adf05
51dc5bfe6c1e8e71065401f12cf000b9941882fd
testing: fix example for unexported identifier Fixes #75540 Change-Id: I925f893d33660f0b08996d53cc9c564017232b39 Reviewed-on: https://go-review.googlesource.com/c/go/+/705456 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revie...
[ { "path": "src/testing/testing.go", "patch": "@@ -30,9 +30,9 @@\n //\timport \"testing\"\n //\n //\tfunc TestAbs(t *testing.T) {\n-//\t got := Abs(-1)\n+//\t got := abs(-1)\n //\t if got != 1 {\n-//\t t.Errorf(\"Abs(-1) = %d; want 1\", got)\n+//\t t.Errorf(\"abs(-1) = %d; want 1\", go...
2025-09-19T10:27:55
nodejs/node
12b81dfc9336e79146b9709ef3f336a739808f61
5812a61a68d50c65127beb68dd4dfb0242e3c5c9
crypto: fix output of privateDecrypt with zero-length data closes #57553 closes #57572 closes #57558 PR-URL: https://github.com/nodejs/node/pull/57575 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias Nieße...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -215,7 +215,7 @@ Buffer<void> DataPointer::release() {\n DataPointer DataPointer::resize(size_t len) {\n size_t actual_len = std::min(len_, len);\n auto buf = release();\n- if (actual_len == len_) return DataPointer(buf);\n+ if (actual_len == len_) ret...
2025-04-01T06:29:29
facebook/react
70484844bfd47382ad0011e0066ccf25d1a84464
f83615ad30aec0f8dcec37fc8424bdf2f7ecb3d4
[BE] switch to hermes parser for prettier (#30421) This will allow us to parse new flow syntax since the `flow` parser is no longer updated. I had to exclude some files and have them fall back to `flow` parser since they contain invalid graphql syntax that makes the plugin crash.
[ { "path": ".prettierignore", "patch": "@@ -21,11 +21,22 @@ compiler/**/__tests__/fixtures/**/*.expect.md\n compiler/**/__tests__/fixtures/**/*.flow.js\n compiler/**/.next\n \n+# contains invalid graphql`...` which results in a promise rejection error from `yarn prettier-all`.\n+compiler/packages/babel-plugi...
2024-07-22T23:16:13
golang/go
51dc5bfe6c1e8e71065401f12cf000b9941882fd
ee7bf06cb306ea9234fbc1501f3e0f3903ada427
Revert "cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist" This reverts commit c2d85eb999fcd428a1cd71ed93805cbde0c16eaa. Reason for revert: change was incorrect. ignores setting of CGO_ENABLED in some cases Change-Id: I8e6e68dd600be5306a247a3314f4b57175f1aa56 Reviewed-on: https://go-review.goog...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -145,8 +145,7 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t}\n-\tif runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctxt...
2025-09-19T16:25:20
electron/electron
635d421123b996086f459ec3c6f97513e2e358cf
b42c0ae00dd4c67c8a454e89662266a466d6b46e
fix: systemMediaPermissionDenied should not check camera perms when the request is asking for screen share (#43517) * fix: systemMediaPermissionDenied: should check for screen capture perms instead of camera * Revert "fix: systemMediaPermissionDenied: should check for screen capture perms instead of camera" This...
[ { "path": "shell/browser/web_contents_permission_helper.cc", "patch": "@@ -57,22 +57,23 @@ namespace {\n \n #if BUILDFLAG(IS_MAC)\n bool SystemMediaPermissionDenied(const content::MediaStreamRequest& request) {\n- if (request.audio_type != MediaStreamType::NO_SERVICE) {\n+ if (request.audio_type == MediaS...
2024-09-04T08:56:26
nodejs/node
eab0fe264bf5e7e105827651bbb6a895354aa9c3
e57841f87e4cc3f4393a1c14cd8ca71dde11b99e
tools: fix WPT update cron string The comment says every week, but the actual string defines every day. Let's set it to one week, as it is quite noisy at the moment. PR-URL: https://github.com/nodejs/node/pull/57665 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-...
[ { "path": ".github/workflows/update-wpt.yml", "patch": "@@ -3,7 +3,7 @@ name: WPT update\n on:\n schedule:\n # Run once a week at 12:00 AM UTC on Sunday.\n- - cron: 0 0 * * *\n+ - cron: 0 0 * * 0\n workflow_dispatch:\n inputs:\n subsystems:", "additions": 1, "deletions": 1, ...
2025-03-30T15:30:02
facebook/react
f83615ad30aec0f8dcec37fc8424bdf2f7ecb3d4
43dac1ee8d658d28af914f76c12ecc42865c3dd5
Reverse engineer original stack frames when virtual frames are re-serialized (#30416) Stacked on #30410. If we've parsed another RSC stream on the server from a different RSC server, while using `findSourceMapURL`, the Flight Client ends up adding a `rsc://React/` prefix and a numeric suffix to the URL. It's a vi...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -143,7 +143,14 @@ describe('ReactFlight', () => {\n this.props.expectedMessage,\n );\n expect(this.state.error.digest).toBe('a dev digest');\n- expect(this.state.error.environmentName)....
2024-07-22T22:50:14
electron/electron
b42c0ae00dd4c67c8a454e89662266a466d6b46e
90ba2df4fa43a3e6108b84b0e5e745a73acf3855
fix: -Wunsafe-buffer-usage warnings in IsUrlArg() (#43477) * fix: -Wunsafe-buffer-usage warnings in IsUrlArg() * chore: improve code comments for CheckCommandLineArguments() * chore: reduce diffs from main * refactor: CheckCommandLineArguments takes a StringVector arg Fixes another buffer warning!
[ { "path": "shell/app/command_line_args.cc", "patch": "@@ -4,53 +4,52 @@\n \n #include \"shell/app/command_line_args.h\"\n \n+#include <algorithm>\n #include <locale>\n \n #include \"sandbox/policy/switches.h\"\n #include \"shell/common/options_switches.h\"\n \n namespace {\n \n-bool IsUrlArg(const base::Com...
2024-09-04T01:51:39
vercel/next.js
bc59f210b02256e63b93d9f473c97ae130568e63
3129db08ad4ebc3221a0aff1965ea7330d9553ae
docs: Deprecation of Middleware (#84710) This PR removes middleware docs and adds a "Migration to Proxy" section to the Proxy docs, which explains the rationale for the renaming to Proxy and provides a migration guide. Did not remove `middleware-upgrade-docs` as it's an upgrade doc from the legacy middleware. Below ...
[ { "path": "docs/01-app/01-getting-started/02-project-structure.mdx", "patch": "@@ -29,15 +29,15 @@ Top-level folders are used to organize your application's code and static assets\n \n ### Top-level files\n \n-Top-level files are used to configure your application, manage dependencies, run middleware, integ...
2025-10-17T18:03:13
golang/go
ee7bf06cb306ea9234fbc1501f3e0f3903ada427
f9e61a9a32c8cbfd810ac9fec135b5c0911b8d69
time: improve ParseDuration performance for invalid input Add "parseDurationError" to reduce memory allocation in the error path of "ParseDuration" and delay the generation of error messages. This improves the performance when dealing with invalid input. The format of the error message remains unchanged. Benchmarks:...
[ { "path": "src/time/format.go", "patch": "@@ -1602,6 +1602,16 @@ func leadingFraction(s string) (x uint64, scale float64, rem string) {\n \treturn x, scale, s[i:]\n }\n \n+// parseDurationError describes a problem parsing a duration string.\n+type parseDurationError struct {\n+\tmessage string\n+\tvalue s...
2025-09-19T10:34:09
nodejs/node
186bbf7dfdce4e8b5963fce1ab9567ba0ce04488
4868ca4a809250cca736ecf092879b235b4d7b62
tools: remove stalled label on unstalled issues and PRs Fixes: https://github.com/nodejs/node/issues/54425 PR-URL: https://github.com/nodejs/node/pull/57630 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinc...
[ { "path": ".github/workflows/close-stalled.yml", "patch": "@@ -32,7 +32,5 @@ jobs:\n only-labels: stalled\n # max requests it will send per run to the GitHub API before it deliberately exits to avoid hitting API rate limits\n operations-per-run: 500\n- # deactivates au...
2025-03-26T01:12:36
facebook/react
43dac1ee8d658d28af914f76c12ecc42865c3dd5
b7e7f1a3fab87e8fc19e86a8088a9e0fe4710973
[DevTools] Implement Owner Stacks (#30417) Stacked on #30410. Use "owner stacks" as the appended component stack if it is available on the Fiber. This will only be available if the enableOwnerStacks flag is on. Otherwise it fallback to parent stacks. In prod, there's no owner so it's never added there. I was ...
[ { "path": "packages/react-devtools-extensions/package.json", "patch": "@@ -67,6 +67,6 @@\n \"workerize-loader\": \"^2.0.2\"\n },\n \"dependencies\": {\n- \"web-ext\": \"^4\"\n+ \"web-ext\": \"^8\"\n }\n }", "additions": 1, "deletions": 1, "language": "JSON" }, { "path": "...
2024-07-22T22:49:44
vercel/next.js
3129db08ad4ebc3221a0aff1965ea7330d9553ae
c27ac0dd3a73038ef63ec00ed53baa9af8f41d56
[turbopack] Allow withRspack to work even if you already have NEXT_RSPACK set (#84987) Fix an issue where if a user set `NEXT_RSPACK` as an environment variable then `next` would think it was using rspack but `withRspack` would think it was using `--webpack`. The issue is that the idempotency check was too strict. ...
[ { "path": "packages/next-rspack/index.js", "patch": "@@ -1,10 +1,10 @@\n Error.stackTraceLimit = 100\n module.exports = function withRspack(config) {\n- if (process.env.NEXT_RSPACK === 'true') {\n+ if (process.env.NEXT_RSPACK) {\n // we have already been called. This can happen when using build worke...
2025-10-17T17:18:38
electron/electron
41b8fdca5c53a41eabdad9a6a75b45bda4a6f37b
38512efd25a159ddc64a54c22ef9eb6dd60064ec
fix: devtools dock state with WCO on linux (#43490)
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -550,7 +550,7 @@ void InspectableWebContents::LoadCompleted() {\n prefs.FindString(\"currentDockState\");\n base::RemoveChars(*current_dock_state, \"\\\"\", &dock_state_);\n }\n-#if BUILDFLAG(IS_WIN)\n+#if BUILDFLAG(I...
2024-08-29T00:17:00
golang/go
3cf1aaf8b9c846c44ec8db679495dd5816d1ec30
0ab038af6290c7fb52d4c26949d735692781b3d1
runtime: use futexes with 64-bit time on Linux Linux introduced new syscalls to fix the year 2038 issue. To still be able to use the old ones, the Kconfig option COMPAT_32BIT_TIME would be necessary. Use the new syscall with 64-bit values for futex by default. Define _ENOSYS for detecting if it's not available. Add a...
[ { "path": "src/runtime/defs2_linux.go", "patch": "@@ -48,6 +48,7 @@ const (\n \tEINTR = C.EINTR\n \tEAGAIN = C.EAGAIN\n \tENOMEM = C.ENOMEM\n+\tENOSYS = C.ENOSYS\n \n \tPROT_NONE = C.PROT_NONE\n \tPROT_READ = C.PROT_READ", "additions": 1, "deletions": 0, "language": "Go" }, { "path": ...
2025-09-18T15:43:42
facebook/react
d7c4334ce91726ddff4b6ba84ff6bd81eb3a91d5
d025ddd3b954dfc52ad7e6a036913946a8ca2644
Add _debugStack and _debugTask under enableObjectFiber flag (#30337)
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -296,11 +296,15 @@ function createFiberImplObject(\n }\n \n if (__DEV__) {\n+ // This isn't directly used but is handy for debugging internals:\n fiber._debugInfo = null;\n fiber._debugOwner = null;\n+ if (enableOwnerSta...
2024-07-22T18:10:08
vercel/next.js
71ce95dffac4014105f7951d25b885dc46ec3739
fd8b4c5979c9254591dbbf49e08bef2be5fab36c
docs: Replace Middleware docs to Proxy (#84709) > [!NOTE] > Best reviewed by each commit for better diff view. This PR clones the Middleware docs for Proxy and removes the Middleware docs. Did not clone the list of docs: - `errors/middleware-upgrade.mdx` - It's a middleware upgrade guide from v12.2 - `error...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/functions/next-response\n ---\n \n-The `middleware.js|ts` file is used to write [Middleware](/docs/app/getting-started/route-handlers-and-middleware#middleware) and run c...
2025-10-17T14:13:26
golang/go
a58afe44fa3be498e213bafa77455ffdfe5e23e2
3203a5da290753e5c7aceb12f41f06b272356bd0
net: fix testHookCanceledDial race Loading and calling testHookCanceledDial in the function passed to context.AfterFunc is racey, because the function runs in a separate goroutine, and is not synchronized with the test code that restores the original testHookCanceledDial value. We could add a channel and wait for the...
[ { "path": "src/net/fd_unix.go", "patch": "@@ -82,6 +82,9 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \t\t\tdefer fd.pfd.SetWriteDeadline(noDeadline)\n \t\t}\n \n+\t\t// Load the hook function synchronously to prevent a race\n+\t\t// with test code that restores the ...
2025-09-16T20:25:53
nodejs/node
ffc1cf620550180b2192cba9a4785a06075e5b6f
ace5548ff0b82c08704f2bf812295aabf5748f30
sqlite: add support for unknown named parameters This commit adds a method for toggling support for unknown named parameters in prepared statements. Fixes: https://github.com/nodejs/node/issues/55533 PR-URL: https://github.com/nodejs/node/pull/57552 Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Jam...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -542,6 +542,17 @@ are several caveats to be aware of when enabling bare named parameters:\n statement will result in an exception as it cannot be determined how to bind\n a bare name.\n \n+### `statement.setAllowUnknownNamedParameters(enabled)`\n+\n+<!-- YAML\...
2025-03-22T01:38:34
electron/electron
38512efd25a159ddc64a54c22ef9eb6dd60064ec
7cea9929264a8fcd569a55a69aa0bfe785be67ab
chore: bump node to v20.17.0 (main) (#43428) * chore: bump node in DEPS to v20.17.0 * module: disallow CJS <-> ESM edges in a cycle from require(esm) https://github.com/nodejs/node/pull/52264 * src: expose LookupAndCompile with parameters https://github.com/nodejs/node/pull/53886 * src: fix -Wshadow war...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '130.0.6672.0',\n 'node_version':\n- 'v20.16.0',\n+ 'v20.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-08-26T19:09:33
facebook/react
06763852ded5c85d3f6b7a47f77a59d9336d45d7
b15c1983dcf96f19400b0ca7337be1e1fb1a8717
[Flight] Parse Stack on the Server and Transfer Structured Stack (#30410) Stacked on #30401. Previously we were transferring the original V8 stack trace string to the client and then parsing it there. However, really the server is the one that knows what format it is and it should be able to vary by server envir...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -12,6 +12,7 @@ import type {\n ReactDebugInfo,\n ReactComponentInfo,\n ReactAsyncInfo,\n+ ReactStackTrace,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -624,7 +625,7 @@ function ...
2024-07-22T15:18:55
rust-lang/rust
1b86d31ae236d7e7e1fd2ed46be491fd38af2b17
d9563937fa3b030c5845811113505070109414d2
Fix LegacyKeyValueFormat report from docker build: dist-x86_64
[ { "path": "src/ci/docker/host-x86_64/dist-x86_64-freebsd/Dockerfile", "patch": "@@ -35,10 +35,9 @@ ENV \\\n \n ENV HOSTS=x86_64-unknown-freebsd\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --enable-full-tools \\\n+ENV RUST_CONFIGURE_ARGS=\"--enable-full-tools \\\n --enable-extended \\\n --enable-profiler \...
2026-03-04T00:25:25
vercel/next.js
fd8b4c5979c9254591dbbf49e08bef2be5fab36c
332aaf393911b49b9774a94d021660e122c5dc78
docs: Split "Get Started: Route Handlers and Middleware" to Route Handlers and Proxy (#84708) This PR splits the route handlers and middleware to allow for separate onboarding docs, making it easier to migrate the docs from Middleware to Proxy. These PR stacks are to publish a full replacement of the docs for the Mid...
[ { "path": "docs/01-app/01-getting-started/15-route-handlers.mdx", "patch": "@@ -1,13 +1,12 @@\n ---\n-title: Route Handlers and Middleware\n-nav_title: Route Handlers and Middleware\n-description: Learn how to use Route Handlers and Middleware\n+title: Route Handlers\n+nav_title: Route Handlers\n+descriptio...
2025-10-17T14:00:14
golang/go
3203a5da290753e5c7aceb12f41f06b272356bd0
8ca209ec3962874ad1c15c22c86293edf428c284
net/http: avoid connCount underflow race Remove a race condition in counting the number of connections per host, which can cause a connCount underflow and a panic. The race occurs when: - A RoundTrip call attempts to use a HTTP/2 roundtripper (pconn.alt != nil) and receives an isNoCachedConn error. The call re...
[ { "path": "src/net/http/transport.go", "patch": "@@ -1382,7 +1382,10 @@ func (w *wantConn) cancel(t *Transport) {\n \tw.done = true\n \tw.mu.Unlock()\n \n-\tif pc != nil {\n+\t// HTTP/2 connections (pc.alt != nil) aren't removed from the idle pool on use,\n+\t// and should not be added back here. If the pco...
2025-09-15T22:18:57
nodejs/node
1b5b019de1be9259e4374ca1d6ee7b3b28c48856
8b2098f9c84c7f8fb22d424c1b5ac9989c60d475
child_process: deprecate passing `args` to `spawn` and `execFile` Accepting `args` gives the false impression that the args are escaped while really they are just concatenated. This makes it easy to introduce bugs and security vulnerabilities. PR-URL: https://github.com/nodejs/node/pull/57199 Fixes: https://github.co...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3859,13 +3859,16 @@ deprecated, as their values are guaranteed to be identical to that of `process.f\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/57199\n+ description: Runtime deprecation.\n - ver...
2025-03-21T16:15:18
facebook/react
b15c1983dcf96f19400b0ca7337be1e1fb1a8717
792f1921145e51bd06b836ffa0a16ecc39c8ee82
[Flight] Normalize Stack Using Fake Evals (#30401) Stacked on https://github.com/facebook/react/pull/30400 and https://github.com/facebook/react/pull/30369 Previously we were using fake evals to recreate a stack for console replaying and thrown errors. However, for owner stacks we just used the raw string that c...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -689,11 +689,21 @@ function createElement(\n value: null,\n });\n if (enableOwnerStacks) {\n+ let normalizedStackTrace: null | Error = null;\n+ if (stack !== null) {\n+ // We create a fake stack and then ...
2024-07-22T15:03:15
electron/electron
9ce0ca74c348d40de1aad417c1c163ac44ae5f09
3a5a1ea7bd1ff813c0dc62e3486c32f562dee612
build: remove fix_disable_scope_reuse_associated_dchecks.patch (#43441) chore: remove fix_disable_scope_reuse_associated_dchecks.patch
[ { "path": "patches/v8/.patches", "patch": "@@ -1,3 +1,2 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n deps_add_v8_object_setinternalfieldfornodecore.patch\n-fix_disable_scope_reuse_associated_dchecks.patch", "additions": 0, "deletions": 1, "language": "Unknown" }, { "...
2024-08-23T15:04:20
rust-lang/rust
e0637766029752d6d9a2aaf088edbc469b4f66a0
d9563937fa3b030c5845811113505070109414d2
Fix LegacyKeyValueFormat report from docker build: powerpc
[ { "path": "src/ci/docker/host-x86_64/dist-powerpc-linux/Dockerfile", "patch": "@@ -26,5 +26,5 @@ ENV \\\n \n ENV HOSTS=powerpc-unknown-linux-gnu\n \n-ENV RUST_CONFIGURE_ARGS --enable-extended --enable-profiler --disable-docs\n-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS\n+ENV RUST_CONFIGUR...
2026-03-04T00:00:11
golang/go
8ca209ec3962874ad1c15c22c86293edf428c284
3032894e045fd3628198061a44c56d4a1fb73d93
context: don't return a non-nil from Err before Done is closed The Context.Err documentation states that it returns nil if the context's done channel is not closed. Fix a race condition introduced by CL 653795 where Err could return a non-nil error slightly before the Done channel is closed. No impact on Err performa...
[ { "path": "src/context/context.go", "patch": "@@ -463,6 +463,8 @@ func (c *cancelCtx) Done() <-chan struct{} {\n func (c *cancelCtx) Err() error {\n \t// An atomic load is ~5x faster than a mutex, which can matter in tight loops.\n \tif err := c.err.Load(); err != nil {\n+\t\t// Ensure the done channel has ...
2025-09-18T18:15:47
vercel/next.js
7296aa624e6205def670b22bdc5681f8a42eb55a
8bc8dc343c30fdc263fcf719fbc99febe0fe4c93
Update prefetching.mdx providing more clarity on the usage of `router.prefetch()` (#84903) ## What Updated `prefetching.mdx` in the App Router documentation providing more clarity on the usage of `router.prefetch()`. ## Why We found the current section on `Manual Prefetching` to be lacking in detail and a bit mislead...
[ { "path": "docs/01-app/02-guides/prefetching.mdx", "patch": "@@ -58,16 +58,27 @@ Automatic prefetching runs only in production. Disable with `prefetch={false}` o\n \n ## Manual prefetch\n \n+To do manual prefetching, import the `useRouter` hook from `next/navigation`, and call `router.prefetch()` to warm ro...
2025-10-17T13:20:22
facebook/react
f603426f917314561c4289734f39b972be3814af
fac78affb0dd64537e6154cb36bc6f50f57eb049
[Flight] Consistently flag debugOwner field (#30400) This is available outside `enableOwnerStack` but we weren't consistently using it and so it has different hidden classes.
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -618,7 +618,7 @@ function serializeThenable(\n task.keyPath, // the server component sequence continues through Promise-as-a-child.\n task.implicitSlot,\n request.abortableTasks,\n- __DEV__ && enableOwnerStacks ? task.de...
2024-07-20T01:13:03