repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
0a3f1e45f4896626c5691330bf69b246a3f2911c
400b82cb45f70352fc803c1227261b92e62113c0
Rename "blocking route" error docs page (#85189) The content needs to be updated, too, but for now this just fixes the link and title so it matches the updated error message in #85087.
[ { "path": "errors/blocking-route.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: Cannot access data, headers, params, searchParams, or a short-lived cache a Suspense boundary nor a `\"use cache\"` above it.\n+title: Uncached data was accessed outside of `<Suspense>`\n ---\n \n ## Why This Error Occurred", ...
2025-10-21T19:43:36
nodejs/node
32e5e815efbec2842c2889489ac5b163e5dc323d
870dec25f793bb6422369eb617f9959bd30dc19f
src: fix kill signal 0 on Windows This special case was missed in the previous changes to this file. Refs: https://github.com/nodejs/node/pull/55514 Refs: https://github.com/nodejs/node/issues/42923 Fixes: https://github.com/nodejs/node/issues/57669 PR-URL: https://github.com/nodejs/node/pull/57695 Reviewed-By: Luigi...
[ { "path": "src/process_wrap.cc", "patch": "@@ -385,7 +385,7 @@ class ProcessWrap : public HandleWrap {\n }\n #ifdef _WIN32\n if (signal != SIGKILL && signal != SIGTERM && signal != SIGINT &&\n- signal != SIGQUIT) {\n+ signal != SIGQUIT && signal != 0) {\n signal = SIGKILL;\n ...
2025-04-04T06:52:52
facebook/react
654e387d7eac113ddbf85f8a9029d1af7117679e
326832a56d41b4462919f9efe69916712ca87a95
[Flight] Serialize Server Components Props in DEV (#31105) This allows us to show props in React DevTools when inspecting a Server Component. I currently drastically limit the object depth that's serialized since this is very implicit and you can have heavy objects on the server. We previously was using the ge...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2640,11 +2640,22 @@ function processFullStringRow(\n }\n case 68 /* \"D\" */: {\n if (__DEV__) {\n- const debugInfo: ReactComponentInfo | ReactAsyncInfo = parseModel(\n- response,\n- row,\n- ...
2024-10-01T05:39:20
electron/electron
53e89b565d9aac1d8229c7f948263e98a24d3e22
6aa6bada795c7cf6a9968b44e7cc76c1becaacae
fix: -Wunsafe-buffer-usage warnings in Clipboard::WriteBuffer() (#43795) * fix: -Wunsafe-buffer-usage warnings in Clipboard::WriteBuffer() * chore: add a DCHECK to confirm the BigBuffer is full
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -111,12 +111,16 @@ void Clipboard::WriteBuffer(const std::string& format,\n return;\n }\n \n+ CHECK(buffer->IsArrayBufferView());\n+ v8::Local<v8::ArrayBufferView> buffer_view = buffer.As<v8::ArrayBufferView>();\n+ const size_t n_...
2024-09-20T04:10:35
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
vercel/next.js
7a8019599e22cd0967310ef1a0938b0525341b2c
6c105133e7dc0534630b666897391ea0da95bc37
Update routes generation for build-complete (#85017) ## Summary - Adds comprehensive route generation and normalization for build-complete adapter hooks - Enhances adapter output types with additional metadata fields (`sourcePage`, `wasmAssets`, `pprChain`, `parentFallbackMode`) - Improves middleware matcher handling...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/adapterPath.mdx", "patch": "@@ -128,12 +128,17 @@ Called after the build process completes with detailed information about routes\n **Parameters:**\n \n - `routes`: Object containing route manifests for headers, redirects, rewrites, and dyn...
2025-10-21T17:21:25
golang/go
fbba93027174956a57c8b4493cbf0d0521b65774
92e093467f3ca3e348b2c933c24d1803efe4c006
image/jpeg: replace fdct.go and idct.go with new implementation in dct.go The fdct.go and idct.go files were derived from the MPEG-SSG and JPEG-IJG reference code and therefore carry licenses specific to those groups. Various license checkers flag these files as potentially problematic. The code is also not terribly w...
[ { "path": "src/image/decode_example_test.go", "patch": "@@ -70,22 +70,22 @@ func Example() {\n \t}\n \t// Output:\n \t// bin red green blue alpha\n-\t// 0x0000-0x0fff: 364 790 7242 0\n-\t// 0x1000-0x1fff: 645 2967 1039 0\n-\t// 0x2000-0x2fff: 1072 2299 979 ...
2025-09-18T16:27:06
facebook/react
326832a56d41b4462919f9efe69916712ca87a95
c67e241c1656dea4ece22a4ee5c25b6b36d0ca75
[Flight] Serialize Error Values (#31104) The idea is that the RSC protocol is a superset of Structured Clone. #25687 One exception that we left out was serializing Error objects as values. We serialize "throws" or "rejections" as Error (regardless of their type) but not Error values. This fixes that by serializi...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1287,6 +1287,21 @@ function parseModelString(\n createFormData,\n );\n }\n+ case 'Z': {\n+ // Error\n+ if (__DEV__) {\n+ const ref = value.slice(2);\n+ return getOutlinedMod...
2024-09-30T19:45:13
rust-lang/rust
866975f8a88eea5e8d6d92541e65dcd33dd9c684
390f683cfca9e3c39d73e9df776a65ec0f141290
std: move SOLID error converting out of `pal::os`
[ { "path": "library/std/src/sys/pal/solid/error.rs", "patch": "@@ -3,6 +3,14 @@ use super::{abi, itron};\n use crate::io;\n use crate::sys::net;\n \n+// SOLID directly maps `errno`s to μITRON error codes.\n+impl SolidError {\n+ #[inline]\n+ pub(crate) fn as_io_error(self) -> crate::io::Error {\n+ ...
2026-03-02T11:58:59
electron/electron
6aa6bada795c7cf6a9968b44e7cc76c1becaacae
d10092128930c590c408971123055820f679bc9b
fix: third time screen sharing on macOS (#43767) Because we used decrementing negative source ids for fake video id when instantating a native macOS screen share picker, we eventually hit the `DesktopMediaID::kFakeId = -3` in Chromium source code which displayed a test green screen. In this change we reserve our...
[ { "path": "lib/browser/api/session.ts", "patch": "@@ -3,14 +3,16 @@ import { net } from 'electron/main';\n const { fromPartition, fromPath, Session } = process._linkedBinding('electron_browser_session');\n const { isDisplayMediaSystemPickerAvailable } = process._linkedBinding('electron_browser_desktop_captu...
2024-09-20T01:28:28
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
c67e241c1656dea4ece22a4ee5c25b6b36d0ca75
2cbea245cca4044f02c4c231a7f86c8062074579
[compiler] Renames and no-op refactor for next PR Rename for clarity: - `CollectHoistablePropertyLoads:Tree` -> `CollectHoistablePropertyLoads:PropertyPathRegistry` - `getPropertyLoadNode` -> `getOrCreateProperty` - `getOrCreateRoot` -> `getOrCreateIdentifier` - `PropertyLoadNode` -> `PropertyPathNode` Refact...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -4,6 +4,7 @@ import {Set_intersect, Set_union, getOrInsertDefault} from '../Utils/utils';\n import {\n BasicBlock,\n BlockId,\n+ DependencyPathEntry,\n GeneratedSource,\n HIRFunction,\n ...
2024-09-30T16:24:24
golang/go
92e093467f3ca3e348b2c933c24d1803efe4c006
27c7bbc51c812570e534d0aa0a8dc8733e5e3abf
image/jpeg: correct and test reference slowFDCT and slowIDCT The reference implementations slowFDCT and slowIDCT were not rounding correctly, making the test not as good as it could be. Before, the real implementations were required to always produce values within ±2 of the reference; now, with no changes, the real im...
[ { "path": "src/image/jpeg/dct_test.go", "patch": "@@ -7,6 +7,7 @@ package jpeg\n import (\n \t\"fmt\"\n \t\"math\"\n+\t\"math/big\"\n \t\"math/rand\"\n \t\"strings\"\n \t\"testing\"\n@@ -29,11 +30,37 @@ func BenchmarkIDCT(b *testing.B) {\n \tbenchmarkDCT(b, idct)\n }\n \n+const testSlowVsBig = true\n+\n fun...
2025-09-19T15:36:11
vercel/next.js
6c105133e7dc0534630b666897391ea0da95bc37
08d679c23d6934b317dbd7b8d5554aa297580c32
Fix: CSS asset URLs broken with `experimental.inlineCss` (#85140) This PR fixes a critical issue with the `experimental.inlineCss` feature where CSS `url()` references to fonts and other assets would break when CSS was inlined into `<style>` tags instead of being loaded via external `<link>` tags. The problem occurred...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1078,6 +1078,7 @@ impl Project {\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n debug_ids: self.next_config().turbopack_debug_ids(),\n+ ...
2025-10-21T17:13:36
electron/electron
855f2193011370f9dac6ebc54af5f7ac12c10ed6
0ac8ff6439a5448d5f883ef6656a3e9be753a7e2
chore: fix compile issue about ambiguous error of multiple methods named 'highlight'. (#43773) chore: fix ambiguous error of multiple methods named 'highlight'
[ { "path": "shell/browser/ui/message_box_mac.mm", "patch": "@@ -81,7 +81,7 @@\n \n // TODO(@codebytere): This behavior violates HIG & should be deprecated.\n if (settings.cancel_id == settings.default_id) {\n- [[ns_buttons objectAtIndex:settings.default_id] highlight:YES];\n+ [(NSButton*)[n...
2024-09-19T11:01:36
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
2cbea245cca4044f02c4c231a7f86c8062074579
5d12e9e10b9957bc131ec77e013e1a76e4f32eb6
[compiler][fixtures] Patch error-handling edge case in snap evaluator Fix edge case in which we incorrectly returned a cached exception instead of trying to rerender with new props. ghstack-source-id: 843fb85df4a2ae7a88f296104fb16b5f9a34c76e Pull Request resolved: https://github.com/facebook/react/pull/31082
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reduce-reactive-deps/jump-unpoisoned/throw-before-scope-starts.expect.md", "patch": "@@ -75,7 +75,7 @@ export const FIXTURE_ENTRYPOINT = {\n \n ### Eval output\n (kind: ok) [[ (exception in render) Error: throw wi...
2024-09-30T16:24:23
golang/go
f15cd63ec4860c4f2c23cc992843546e0265c332
371c1d2fcb48fa79ac30812231ecef0e26f539dc
cmd/compile: don't rely on loop info when there are irreducible loops Loop information is sketchy when there are irreducible loops. Sometimes blocks inside 2 loops can be recorded as only being part of the outer loop. That causes tighten to move values that want to move into such a block to move out of the loop altoge...
[ { "path": "src/cmd/compile/internal/ssa/tighten.go", "patch": "@@ -123,18 +123,21 @@ func tighten(f *Func) {\n \n \t\t// If the target location is inside a loop,\n \t\t// move the target location up to just before the loop head.\n-\t\tfor _, b := range f.Blocks {\n-\t\t\torigloop := loops.b2l[b.ID]\n-\t\t\t...
2025-09-23T23:31:26
vercel/next.js
782d04db1f7c62892a8b76374c07b639ac50c13f
04c962cfe1e806963e7e348d9bf8cfc8828ef906
Update blocking prerender error message (#85087)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-message/error-message.tsx", "patch": "@@ -1,31 +1,38 @@\n import { useState, useRef, useLayoutEffect } from 'react'\n+import type { ErrorType } from '../error-type-label/error-type-label'\n \n export type ErrorMessageType = React...
2025-10-21T15:50:35
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
facebook/react
5d12e9e10b9957bc131ec77e013e1a76e4f32eb6
58a3ca3b47f6a51cea48ea95ded26c9887baca38
[compiler] repro for dep merging edge case (non-hir) Found when writing #31037, summary copied from comments: This is an extreme edge case and not code we'd expect any reasonable developer to write. In most cases e.g. `(a?.b != null ? a.b : DEFAULT)`, we do want to take a dependency on `a?.b`. I found this trying to...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/reduce-reactive-deps/bug-merge-uncond-optional-chain-and-cond.expect.md", "patch": "@@ -0,0 +1,88 @@\n+\n+## Input\n+\n+```javascript\n+import {identity} from 'shared-runtime';\n+\n+/**\n+ * Evaluator failure:\n+ * Foun...
2024-09-30T16:24:22
golang/go
d7a38adf4c81f0fa83203e37844192182b22680a
7bc1935db55c9d182617aba074f048f9c7573680
runtime: eliminate global span queue [green tea] This change removes the locked global span queue and replaces the fixed-size local span queue with a variable-sized local span queue. The variable-sized local span queue grows as needed to accomodate local work. With no global span queue either, GC workers balance work ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1289,30 +1289,6 @@ func MSpanCountAlloc(ms *MSpan, bits []byte) int {\n \treturn result\n }\n \n-type MSpanQueue mSpanQueue\n-\n-func (q *MSpanQueue) Size() int {\n-\treturn (*mSpanQueue)(q).n\n-}\n-\n-func (q *MSpanQueue) Push(s *MSpan) {\n-\t(*mSpanQue...
2025-08-15T17:09:05
vercel/next.js
e8185694db53abe6937d03d7b19456a0d258aa4a
5b5830526a0e2333282f19152503f795996d4dd5
[test] Fix test-dev with --projects (#85167)
[ { "path": "jest.config.js", "patch": "@@ -5,7 +5,7 @@ const createJestConfig = nextJest()\n // Any custom config you want to pass to Jest\n /** @type {import('jest').Config} */\n const customJestConfig = {\n- displayName: process.env.TURBOPACK ? 'turbopack' : 'default',\n+ displayName: process.env.IS_WEBP...
2025-10-21T13:19:53
rust-lang/rust
b89deb41bfe08cc0b463d93f8690494ad6f160c4
ba1567989ee7774a1fb53aa680a8e4e8daa0f519
Fix LegacyKeyValueFormat report from docker build: arm
[ { "path": "src/ci/docker/host-x86_64/arm-android/Dockerfile", "patch": "@@ -32,9 +32,9 @@ ENV PATH=$PATH:/android/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin\n \n ENV TARGETS=arm-linux-androideabi\n \n-ENV RUST_CONFIGURE_ARGS --android-ndk=/android/ndk/\n+ENV RUST_CONFIGURE_ARGS=\"--android-ndk=/android/n...
2026-03-03T23:24:56
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
facebook/react
1a779207a7b85314e16d410b185d427702f22ebc
943e45e910d1a125f2be431c2b66f22a035ea0c9
[compiler][test fixtures] Add enablePropagateDepsInHIR to forked tests Annotates fixtures added in #31030 with `@enablePropagateDepsInHIR` to fork behavior (and commit snapshot differences) ghstack-source-id: e423e8c42db62f1bb87562b770761be09fc8ffc6 Pull Request resolved: https://github.com/facebook/react/pull/31031
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/propagate-scope-deps-hir-fork/conditional-break-labeled.expect.md", "patch": "@@ -2,6 +2,7 @@\n ## Input\n \n ```javascript\n+// @enablePropagateDepsInHIR\n /**\n * props.b *does* influence `a`\n */\n@@ -29,13 +30,19 ...
2024-09-30T16:24:20
golang/go
74cc463f9e0ce37f1e3b24a0dbe3cdbba29efb89
902dc27ae9b0670cc35ca972dfe1a5f45b66eb9e
go/token: add TestRemovedFileFileReturnsNil test While debugging test issue in the previous CL i noted that we don't have a proper test for RemoveFile. Change-Id: I6a6a6964426ed3cf6725a58ec377686c2900c626 Reviewed-on: https://go-review.googlesource.com/c/go/+/705757 Reviewed-by: Alan Donovan <adonovan@google.com> LUC...
[ { "path": "src/go/token/position_test.go", "patch": "@@ -621,3 +621,25 @@ func TestRemoveFileRace(t *testing.T) {\n \t\tstart <- struct{}{}\n \t}\n }\n+\n+func TestRemovedFileFileReturnsNil(t *testing.T) {\n+\tfset := NewFileSet()\n+\n+\t// Create bunch of files.\n+\tvar files []*File\n+\tfor i := range 100...
2025-09-22T08:54:29
vercel/next.js
5b5830526a0e2333282f19152503f795996d4dd5
3dafab91ce5a249f3527b08ff9969ab9af787d4f
Update Activity names given to routes (#85155) In practical terms, clicking the name of a route segment in the Suspense DevTools should select the child slots of that layout, because when you focus on it, what you're interested in debugging are navigations that occur within the shared layout. So the name we apply to ...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -435,6 +435,9 @@ function Router({\n parentCacheNode: cache,\n parentSegmentPath: null,\n parentParams: {},\n+ // This is the <Activity> \"name\" that shows up in the Suspense DevTools.\n+ // It represen...
2025-10-21T09:58:38
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
facebook/react
943e45e910d1a125f2be431c2b66f22a035ea0c9
2d16326d9a3f45260aa80bcae78745ab2f199138
[compiler][test fixtures] Fork more fixtures for hir-rewrite Followup from #30894 , not sure how these got missed. Note that this PR just copies the fixtures without adding `@enablePropagateDepsInHIR`. #31032 follows and actually enables the HIR-version of propagateScopeDeps to run. I split this out into two PRs to ma...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/propagate-scope-deps-hir-fork/conditional-break-labeled.expect.md", "patch": "@@ -0,0 +1,65 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * props.b *does* influence `a`\n+ */\n+function Component(props) {\n+ const a = [...
2024-09-30T16:24:19
vercel/next.js
38b9a5e408b09e2f4c4e173ca881f3c42787c6d9
daf8b06f68a75ef4df34ef92ecb5f4a9b947a4c2
Bump swc to v45 (#85143) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentati...
[ { "path": "Cargo.lock", "patch": "@@ -322,9 +322,9 @@ dependencies = [\n \n [[package]]\n name = \"ast_node\"\n-version = \"3.0.4\"\n+version = \"4.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0a184645bcc6f52d69d8e7639720699c6a99efb711f886e251ed1d16db8dd90e\"\n+c...
2025-10-21T04:54:53
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
facebook/react
2d16326d9a3f45260aa80bcae78745ab2f199138
db240980a3aeae65f148b1edf5a1187a2331307e
fix[scripts/devtools/publish-release]: parse version list instead of handling 404 (#31087) Discovered yesterday while was publishing a new release. NPM `10.x.x` changed the text for 404 errors, so this check was failing. Instead of handling 404 as a signal, I think its better to just parse the whole list of versi...
[ { "path": "scripts/devtools/publish-release.js", "patch": "@@ -82,18 +82,13 @@ async function publishToNPM() {\n // If so we might be resuming from a previous run.\n // We could infer this by comparing the build-info.json,\n // But for now the easiest way is just to ask if this is expected.\n- ...
2024-09-30T16:07:54
vercel/next.js
23034d4ea997bdeed1708b7263cf9791da229bc6
fbbd5380362c0a4b247a47cbe1fdfec9413be826
Pass `startTime` to initial RSC payload stream (#85144) `startTime: 0` tells React to align the debug start time of the initial RSC stream (i.e. the one used for hydration) to the start of the document navigation. In other words, the timing information will now include the network latency of the HTML document request.
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -175,7 +175,13 @@ if (\n \n const initialServerResponse = createFromReadableStream<InitialRSCPayload>(\n readable,\n- { callServer, findSourceMapURL, debugChannel }\n+ {\n+ callServer,\n+ findSourceMapURL,\n+ debugChannel,\n+ /...
2025-10-21T02:33:50
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
facebook/react
3edc000d7717027a1ce23611070a56358040a554
d34da5cdb9266ba7928f78107c87383ae211f0f9
[compiler] Fix broken tests ghstack-source-id: 000a37ae1f819eef676dcd52410d5231cd2d50fe Pull Request resolved: https://github.com/facebook/react/pull/31078
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/meta-isms/repro-cx-namespace-assigned-to-temporary.expect.md", "patch": "@@ -19,15 +19,17 @@ function Component() {\n );\n }\n \n-function cx(obj) {\n- const classes = [];\n- for (const [key, value] of Object.entrie...
2024-09-26T21:34:28
electron/electron
4bcbc955dd87df5f87137eee065c2e989a173537
de33cc68f6a59efeb009b09ec4c7211b99e8dce0
chore: bump chromium to 130.0.6695.0 (main) (#43454) * chore: bump chromium in DEPS to 130.0.6673.0 * chore: bump chromium in DEPS to 130.0.6675.0 * chore: bump chromium in DEPS to 130.0.6677.2 * chore: bump chromium in DEPS to 130.0.6679.0 * 5802981: [Partitioned Popins] UKM https://chromium-review.goo...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '130.0.6672.0',\n+ '130.0.6695.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-09-18T01:12:11
vercel/next.js
fbbd5380362c0a4b247a47cbe1fdfec9413be826
2cc5f0227b5d9e01b9bbe4699b22877e470ffadf
[BF Cache]: skip lazyData fetch logic for inactive segments (#85142) When `routerBfCache` is enabled, React's Activity API renders inactive route segments offscreen to enable instant back/forward navigation. However, the layout-router's lazy data fetching logic was incorrectly triggering fetchServerResponse calls for ...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -437,6 +437,8 @@ function Router({\n // Root node always has `url`\n // Provided in AppTreeContext to ensure it can be overwritten in layout-router\n url: canonicalUrl,\n+ // Root segment is always active\n+ ...
2025-10-21T02:28:08
facebook/react
d34da5cdb9266ba7928f78107c87383ae211f0f9
67fee58b1f72754cc77488c40c44e786572ef954
[ci] Fix incorrect sha / commit messages in manual Meta builds ghstack-source-id: 0790b32d293f7b528e458cb4b8718d8c2c422dab Pull Request resolved: https://github.com/facebook/react/pull/31083
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -82,7 +82,7 @@ jobs:\n working-directory: scripts/release\n - name: Download artifacts for base revision\n run: |\n- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${...
2024-09-26T21:28:01
golang/go
902dc27ae9b0670cc35ca972dfe1a5f45b66eb9e
a13d085a5b66e4d9f3ecfae91c40f62034cfb481
go/token: clear cache after grabbing the mutex in RemoveFile This fixes a race, that was possible to hit in RemoveFile. The file cache could have been populated concurrently just before grabbing of the mutex. Change-Id: I6a6a696452d8bd79ac4ac6574297390978353444 Reviewed-on: https://go-review.googlesource.com/c/go/+/7...
[ { "path": "src/go/token/position.go", "patch": "@@ -531,11 +531,11 @@ func (s *FileSet) AddExistingFiles(files ...*File) {\n //\n // Removing a file that does not belong to the set has no effect.\n func (s *FileSet) RemoveFile(file *File) {\n-\ts.last.CompareAndSwap(file, nil) // clear last file cache\n-\n ...
2025-09-22T08:54:29
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
electron/electron
f987f8ad839e9f0732b55c8a8107ef354c045520
cf4ab2186c6266d0942f3f91349ccbf49e76f14b
build: improve logging on http errors during release process (again, but more) (#43758)
[ { "path": "script/release/release.js", "patch": "@@ -401,7 +401,7 @@ async function verifyDraftGitHubReleaseAssets (release) {\n throwHttpErrors: false\n });\n \n- if (response.statusCode !== 200) {\n+ if (response.statusCode !== 302 && response.statusCode !== 301) {\n console.error('F...
2024-09-17T22:01:02
vercel/next.js
2cc5f0227b5d9e01b9bbe4699b22877e470ffadf
a95f8612bcf08dbc52cc4b06e88b43d48f4429e7
Add Learn more docs to Middleware deprecation warning (#84711) This PR adds an error doc for the Middleware deprecation warning that it can refer to. - Explain why this error occurred - Provide migration guide - Explain the rationale for the renaming to Proxy --------- Co-authored-by: Joseph <joseph.chamochum...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx", "patch": "@@ -690,7 +690,7 @@ Learn how to [configure Proxy](/docs/app/guides/self-hosting#proxy) when self-ho\n \n ### Why the Change\n \n-The reason behind the renaming of `middleware` is that the term \"middleware can often be confus...
2025-10-21T02:26:30
golang/go
61bf26a9eef5e0c1a5c319f60dfe1e3c51766474
4b787c8c2bc8c9e774bf7836adb7877e3698f9d4
cmd/link: fix Macho-O X86_64_RELOC_SUBTRACTOR in internal linking X86_64_RELOC_SUBTRACTOR is handled as a generic R_PCREL relocations, which gets the relocation size subtracted from the relocated value. This is not supposed to happen for this particular relocation, so compensate by adding the size to the addend. Cq-...
[ { "path": "src/cmd/link/internal/amd64/asm.go", "patch": "@@ -208,7 +208,7 @@ func adddynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loade\n \t\t}\n \t\t// The second relocation has the target symbol we want\n \t\tsu.SetRelocType(rIdx+1, objabi.R_PCREL)\n-\t\tsu.SetRelocAdd(rIdx+1, r.Add...
2025-09-15T12:23:44
facebook/react
b091ef7e0be078de64721e72b8dc8d7bc33dad29
b90e440231d3c18a3d9ebbd6a74555e82a16f666
fix: update release scripts for react devtools (#31069) This has been broken since the migration to GitHub actions. Previously, we've been using `buildId` as an identifier from CircleCI. I've decided to use a commit hash as an identifier, because I don't know if there is a better option, and `scripts/release/dow...
[ { "path": "scripts/devtools/build-and-test.js", "patch": "@@ -50,13 +50,13 @@ async function main() {\n });\n \n const archivePath = await archiveGitRevision();\n- const buildID = await downloadLatestReactBuild();\n+ const currentCommitHash = await downloadLatestReactBuild();\n \n await buildAndTest...
2024-09-26T14:42:59
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
a95f8612bcf08dbc52cc4b06e88b43d48f4429e7
55f619705506b78c6edc7ce4ab9fa891fc480008
Turbopack: Disable LightningCSS MediaRangeSyntax feature (#85086) ## What? Always downlevels MediaRangeSyntax to ensure max-width doesn't get upleveled to MediaRangeSyntax which is shorter but doesn't work with Chrome devtools `show media queries` feature. Fixes #72559
[ { "path": "test/e2e/app-dir/css-media-query/app/layout.tsx", "patch": "@@ -0,0 +1,10 @@\n+import { ReactNode } from 'react'\n+import './styles.css'\n+\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", ...
2025-10-21T02:23:12
electron/electron
cf4ab2186c6266d0942f3f91349ccbf49e76f14b
10ba87a85efb5afe8269977298529a2ffd11b884
build: improve logging on http errors during release process (again) (#43757)
[ { "path": "script/release/get-asset.js", "patch": "@@ -26,9 +26,9 @@ async function getAssetContents (repo, assetId) {\n throwHttpErrors: false\n });\n \n- if (response.status !== 302 && response.status !== 301) {\n+ if (response.statusCode !== 302 && response.statusCode !== 301) {\n console.err...
2024-09-17T21:49:59
facebook/react
b90e440231d3c18a3d9ebbd6a74555e82a16f666
0e9ccde185d0556f8d672689d937b5423476beff
[dependabot] Ignore all fixture directories Seems like we can specify a wildcard dependency name to ignore all dependencies from being updated. As I understand it dependabot will still run monthly but no PRs will be generated. ghstack-source-id: 64b76bd532663cdc4db10ba6299e791b5908d5b1 Pull Request resolved: https://...
[ { "path": ".github/dependabot.yml", "patch": "@@ -1,97 +1,10 @@\n version: 2\n updates:\n - package-ecosystem: \"npm\"\n- directory: \"/fixtures/art\"\n+ directories:\n+ - \"/fixtures/*\"\n schedule:\n- interval: \"weekly\"\n- open-pull-requests-limit: 0\n- - package-ecosystem: \"n...
2024-09-26T14:22:38
golang/go
3df27cd21aab3d3bcdc8ac56e7653ab023dc1112
684e8d336356b122554f1170a130ab22a7212e6c
cmd/compile: fix typo in comment Fix typo for omitted. Change-Id: Ia633abe7f3d28f15f1f538425cdce9e6d9ef48c0 Reviewed-on: https://go-review.googlesource.com/c/go/+/705735 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewe...
[ { "path": "src/cmd/compile/internal/noder/doc.go", "patch": "@@ -87,7 +87,7 @@ constant for file bases and hence not encoded.\n [ Sync ]\n StringRef // the (absolute) file name for the base\n Bool // true if a file base, else a line base\n- ...
2025-09-20T11:32:29
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
vercel/next.js
200268146e11d737e2930472b6f69064c61b4d66
07a415f5f37ed849d23c5375a7a0906254a07c12
Fix subtree layout alignment for route summary in `next build` (#85137)
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -430,7 +430,7 @@ export async function printTreeView(\n \n if (pageInfo?.ssgPageRoutes?.length) {\n const totalRoutes = pageInfo.ssgPageRoutes.length\n- const contSymbol = i === arr.length - 1 ? ' ' : '├'\n+ const contSym...
2025-10-21T01:45:04
electron/electron
10ba87a85efb5afe8269977298529a2ffd11b884
233724fe00b25a1515fb011ca2b3052cf6f5620a
build: improve logging on http errors during release process (#43756)
[ { "path": "script/release/get-asset.js", "patch": "@@ -22,14 +22,29 @@ async function getAssetContents (repo, assetId) {\n const response = await got(url, {\n followRedirect: false,\n method: 'HEAD',\n- headers\n+ headers,\n+ throwHttpErrors: false\n });\n+\n+ if (response.status !== 3...
2024-09-17T21:30:51
golang/go
a5866ebe40207c4c64f0522721825b10887356e0
a27261c42fcebf601587725714b9ef53c47b06b3
cmd/compile: prevent shapifying of pointer shape type CL 641955 changes the Unified IR reader to not doing shapify when reading reshaping expression, prevent losing of the original type. This is an oversight, as the main problem isn't about shaping during the reshaping process itself, but about the specific case of s...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -49,9 +49,6 @@ type pkgReader struct {\n \t// but bitwise inverted so we can detect if we're missing the entry\n \t// or not.\n \tnewindex []index\n-\n-\t// indicates whether the data is reading during reshaping.\n-\treshaping bool\n }\n \n ...
2025-09-15T10:31:46
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
vercel/next.js
b3959cdcbfe9be4029ff015f4450f613c872fb71
3cd8a234464f761f26c45a955da3cbd373e0f198
test: Fix and update recursive-delete benchmarks (#84875) PR created with claude code, with some manual review. - Update benchmark scripts to work, given my recent code changes - Include a native nodejs benchmark - Use rimraf's `manual` implementation (tries to use node's native version) - Tried to clean up the code ...
[ { "path": "bench/recursive-delete/README.md", "patch": "@@ -0,0 +1,7 @@\n+# Recursive Delete Benchmark\n+\n+```bash\n+pnpm bench\n+```\n+\n+Run `pnpm bench --help` for options.", "additions": 7, "deletions": 0, "language": "Markdown" }, { "path": "bench/recursive-delete/nodejs-rm.js", ...
2025-10-21T00:52:34
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
233724fe00b25a1515fb011ca2b3052cf6f5620a
4dc923a327bfa6d5ee5744787ad2b284311f69e5
chore: iwyu mojom-forward header files (#43741) * chore: iwyu mojom.h headers * fixup! chore: iwyu mojom.h headers make previously-indirect include dependency direct * fixup! fixup! chore: iwyu mojom.h headers make previously-indirect include dependency direct
[ { "path": "shell/browser/api/electron_api_cookies.h", "patch": "@@ -12,6 +12,8 @@\n #include \"base/values.h\"\n #include \"shell/browser/event_emitter_mixin.h\"\n \n+class GURL;\n+\n namespace gin {\n template <typename T>\n class Handle;", "additions": 2, "deletions": 0, "language": "C/C++ Hea...
2024-09-17T19:58:56
facebook/react
64be7b4dccb7b19404b94afdfab955e1c73796df
db320ea4d910d360ccb83850ccdbc464a77fc1c5
[ci] Fix missing values during manual workflow dispatch It seems like the github.event.workflow_run payload is only populated for non manual runs of the workflow, so this would crash the manual dispatch Test plan: https://github.com/facebook/react/actions/runs/11017512571 completes ghstack-source-id: fce02b17f85ac47...
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -82,7 +82,7 @@ jobs:\n working-directory: scripts/release\n - name: Download artifacts for base revision\n run: |\n- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${...
2024-09-26T13:55:36
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
electron/electron
5a76655fb8fe8ea98bf98dd66143b8651b80b86b
aa719a4066a858c92c4b358351ab6f6a2053ea89
fix: in `Emit()`, don't leak converted Arg `Local<Values>` into caller's scope (#43729) fix: Emit() should not leak converted arg handles into caller's HandleScope
[ { "path": "shell/common/gin_helper/event_emitter_caller.h", "patch": "@@ -44,11 +44,13 @@ v8::Local<v8::Value> EmitEvent(v8::Isolate* isolate,\n v8::Local<v8::Object> obj,\n const StringType& name,\n Args&&... args)...
2024-09-17T14:00:52
golang/go
e93f439ac4160baf9992f059d2bfb511e23f63c9
69e74b0aacc1de59b618bbb9789a2e7e0cd806b5
runtime/cgo: retry when CreateThread fails with ERROR_ACCESS_DENIED _cgo_beginthread used to retry _beginthread only when it failed with EACCESS, but CL 651995 switched to CreateThread and incorrectly mapped EACCESS to ERROR_NOT_ENOUGH_MEMORY. The correct mapping is ERROR_ACCESS_DENIED. Fixes #72814 Fixes #75381 Cha...
[ { "path": "src/runtime/cgo/gcc_libinit_windows.c", "patch": "@@ -145,7 +145,7 @@ void _cgo_beginthread(unsigned long (__stdcall *func)(void*), void* arg) {\n \n \tfor (tries = 0; tries < 20; tries++) {\n \t\tthandle = CreateThread(NULL, 0, func, arg, 0, NULL);\n-\t\tif (thandle == 0 && GetLastError() == ERR...
2025-09-23T08:46:46
vercel/next.js
3cd8a234464f761f26c45a955da3cbd373e0f198
3f8febe2b5f5d4c08b4580854ed81baf70f75c97
feat(cache-components): require non-empty generateStaticParams for validation (#85135) ### What? This PR adds build-time validation that requires `generateStaticParams` to return at least one result when Cache Components (experimental `cacheComponents` feature) is enabled. ### Why? Previously, users could return an...
[ { "path": "errors/empty-generate-static-params.mdx", "patch": "@@ -0,0 +1,69 @@\n+---\n+title: Empty generateStaticParams with Cache Components\n+---\n+\n+## Why This Error Occurred\n+\n+You're using [Cache Components](https://nextjs.org/docs/beta/app/api-reference/config/next-config-js/cacheComponents) in ...
2025-10-21T00:22:42
facebook/react
db320ea4d910d360ccb83850ccdbc464a77fc1c5
f7aff7f15c451dc78eb967c726be4f612bcaf966
Bump rollup from 3.20.0 to 3.29.5 (#31072) Bumps [rollup](https://github.com/rollup/rollup) from 3.20.0 to 3.29.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rollup/rollup/releases">rollup's releases</a>.</em></p> <blockquote> <h2>v3.29.4</h2> <h2>3.29.4</h2> <p...
[ { "path": "package.json", "patch": "@@ -89,7 +89,7 @@\n \"random-seed\": \"^0.3.0\",\n \"react-lifecycles-compat\": \"^3.0.4\",\n \"rimraf\": \"^3.0.0\",\n- \"rollup\": \"^3.17.1\",\n+ \"rollup\": \"^3.29.5\",\n \"rollup-plugin-prettier\": \"^4.1.1\",\n \"rollup-plugin-strip-banner...
2024-09-26T13:56:33
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
electron/electron
aa719a4066a858c92c4b358351ab6f6a2053ea89
c1c8fbfd9ab6e8fadeb250e866d675b46a66b5b8
fix: resizing border on Linux WCO caption buttons (#43724) Closes https://github.com/electron/electron/issues/43714. Fixes an issue where the resizing border was not being handled correctly on Linux WCO caption buttons. This is now taken into account as a part of the NonClientHitTest.
[ { "path": "shell/browser/ui/views/opaque_frame_view.cc", "patch": "@@ -135,6 +135,11 @@ gfx::Rect OpaqueFrameView::GetWindowBoundsForClientBounds(\n \n int OpaqueFrameView::NonClientHitTest(const gfx::Point& point) {\n if (window()->IsWindowControlsOverlayEnabled()) {\n+ // Ensure support for resizing ...
2024-09-17T09:56:43
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
vercel/next.js
5c34f87bbe507adc7c07a9f9cd1095d8e2c5be2f
76a9a1de28e384a65dbee4578787e2a775610494
chore: update formatted duration string magnitude for millisconds <-> microseconds (#85136) ## Why? This PR refines the duration formatting logic in the build process: 1. Changed the millisecond threshold from 1ms to 2ms for better readability 2. Fixed comparison operators from `>` to `>=` to ensure consistent behav...
[ { "path": "packages/next/src/build/duration-to-string.ts", "patch": "@@ -13,7 +13,7 @@ const NANOSECONDS_IN_MINUTE = 60_000_000_000 // 60 * 1_000_000_000\n const MINUTES_THRESHOLD_NANOSECONDS = 120_000_000_000 // 2 minutes in nanoseconds\n const SECONDS_THRESHOLD_HIGH_NANOSECONDS = 40_000_000_000 // 40 seco...
2025-10-20T23:50:23
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
facebook/react
f7aff7f15c451dc78eb967c726be4f612bcaf966
f04b8fc88e83c3cbe670bf6ec46d27cfcb3f52e9
Bump express from 4.18.2 to 4.21.0 (#30980) Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.21.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/expressjs/express/releases">express's releases</a>.</em></p> <blockquote> <h2>4.21.0</h2> <h2>What...
[ { "path": "yarn.lock", "patch": "@@ -5031,21 +5031,21 @@ bluebird@~3.7:\n resolved \"https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f\"\n integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==\n \n-body...
2024-09-26T13:56:24
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
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
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
vercel/next.js
42b02b0771f4aa8d6e1c269b1a906b77344fb517
df102ae33ed4839f140ddbdc2df6aaa9eda24735
[Cache Components] fix env labels in perf track test (#85132) We updated the label for the Runtime stage to `Prefetchable` in #85076, and #85111 wasn't rebased on top of that
[ { "path": "test/development/app-dir/react-performance-track/react-performance-track.test.ts", "patch": "@@ -61,7 +61,7 @@ describe('react-performance-track', () => {\n expect(track).toEqual(\n expect.arrayContaining([\n {\n- name: '\\u200bparams [Prefetch]',\n+ name: '\\u...
2025-10-20T22:13:12
electron/electron
05dfd14913403fd9b41fa0c934d8cdaf58d13dae
7d4f202c1c03655cd58411f07853eef772c3316b
refactor: add `EmitWarning(v8::Isolate*)` helper (#43722) * refactor: add EmitWarning(Isolate*, ...) warning * chore: remove EmitWarning(node::Environment*, ...) * chore: add code comments * fixup! refactor: add EmitWarning(Isolate*, ...) warning * chore: remove unused node #includes
[ { "path": "shell/browser/api/electron_api_debugger.cc", "patch": "@@ -18,7 +18,6 @@\n #include \"shell/browser/javascript_environment.h\"\n #include \"shell/common/gin_converters/value_converter.h\"\n #include \"shell/common/gin_helper/promise.h\"\n-#include \"shell/common/node_includes.h\"\n \n using conte...
2024-09-16T20:53:04
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
f04b8fc88e83c3cbe670bf6ec46d27cfcb3f52e9
d0772d586650baa5cf5c676ab1092a075ffdf831
Bump ws from 6.2.2 to 6.2.3 in /scripts/release (#30463) Bumps [ws](https://github.com/websockets/ws) from 6.2.2 to 6.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>6.2.3</h2> <h1>Bug fixes</h1...
[ { "path": "scripts/release/yarn.lock", "patch": "@@ -910,9 +910,9 @@ wrappy@1:\n integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=\n \n ws@^6.1.0:\n- version \"6.2.2\"\n- resolved \"https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e\"\n- integrity sha512-zmhltoSR8u1cnDsD4...
2024-09-26T13:56:10
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
vercel/next.js
df102ae33ed4839f140ddbdc2df6aaa9eda24735
98adcb3f86e198265b8f72f2b133aa22564e250b
[Turbopack] dedupe build errors (#85062) When we run the RSC validation transform, we might take multiple passes on the same file if the edge runtime is used: once at the RSC layer, another in the edge RSC layer. This means we'll have reported the error twice for the same file. This dedupes errors by tracking the seen...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -200,21 +200,41 @@ export function printBuildErrors(\n // Issues that are warnings but should not affect the running of the build\n const topLevelWarnings = []\n \n+ // Track seen formatted error messages to avoid duplicates\n+ const seenFatal...
2025-10-20T21:57:59
electron/electron
f84ffc8fc835dcc96a78c9039db4e3576f20d34b
8f0dffea9ed0a77b63ba5263adf58e1bad049d18
fix: prevent loading spinner when launching utility process on Windows (#43657) fix: prevent spinning cursor when launching utility process on Windows
[ { "path": "patches/chromium/feat_configure_launch_options_for_service_process.patch", "patch": "@@ -6,8 +6,9 @@ Subject: feat: configure launch options for service process\n - POSIX:\n Allows configuring base::LaunchOptions::fds_to_remap when launching the child process.\n - Win:\n- Allows configuring ba...
2024-09-16T18:20:42
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
facebook/react
d0772d586650baa5cf5c676ab1092a075ffdf831
9927ab238bde0a2dcadc881e56d6a87208e93e45
Bump axios from 1.7.1 to 1.7.4 in /compiler (#30694) Bumps [axios](https://github.com/axios/axios) from 1.7.1 to 1.7.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p> <blockquote> <h2>Release v1.7.4</h2> <h2>Releas...
[ { "path": "compiler/yarn.lock", "patch": "@@ -3679,9 +3679,9 @@ axe-core@^4.6.2:\n integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==\n \n axios@^1.6.1:\n- version \"1.7.1\"\n- resolved \"https://registry.yarnpkg.com/axios/-/axios-1.7.1.tgz#52214562...
2024-09-26T13:51:12
electron/electron
3c8321a9878a402395bb3f61d4817d3951988b4f
74b54278bf8e601f9ac7bc3585e99c6438e16d8b
fix: EyeDropper working in devtools (#43685)
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -784,6 +784,7 @@ void InspectableWebContents::SetEyeDropperActive(bool active) {\n if (delegate_)\n delegate_->DevToolsSetEyeDropperActive(active);\n }\n+\n void InspectableWebContents::ZoomIn() {\n double new_level = GetNextZoom...
2024-09-12T13:40:56
vercel/next.js
167608775cbd0ac089c29ec68d538e7f214f2bed
2346cfd67d8d25d32c79fc2efc318344aee36308
fix(experimental.lockDistDir): Acquire the lock in dev earlier (#85116) Apparently I grabbed the lock too late, which led to the second process still managing the `distDir` before exiting... https://vercel.slack.com/archives/C03EWR7LGEN/p1760910025067089 This moves the acquisition earlier for dev, and extends the e2e...
[ { "path": "packages/next/src/server/dev/hot-reloader-turbopack.ts", "patch": "@@ -121,6 +121,7 @@ import { handlePageMetadataResponse } from '../mcp/tools/get-page-metadata'\n import { setStackFrameResolver } from '../mcp/tools/utils/format-errors'\n import { getFileLogger } from './browser-logs/file-logger...
2025-10-20T21:25:51
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
9927ab238bde0a2dcadc881e56d6a87208e93e45
f8024b0686c87634b233262e8a05e4a37a292e87
Bump rollup from 4.13.2 to 4.22.4 in /compiler (#31039) Bumps [rollup](https://github.com/rollup/rollup) from 4.13.2 to 4.22.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rollup/rollup/releases">rollup's releases</a>.</em></p> <blockquote> <h2>v4.22.4</h2> <h2>4....
[ { "path": "compiler/package.json", "patch": "@@ -43,7 +43,7 @@\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-hermes-parser\": \"^0.23.0\",\n \"prompt-promise\": \"^1.0.3\",\n- \"rollup\": \"^4.13.2\",\n+ \"rollup\": \"^4.22.4\",\n \"rollup-plugin-banner2\": \"^1.2.3\",\n \"rollup...
2024-09-26T13:45:02
electron/electron
74b54278bf8e601f9ac7bc3585e99c6438e16d8b
dea6a4e5fbe8c1c917b36136ad417d33cae4a10c
fix: native `View` wrapper crash missing when adding child view (#43638) fix: native View wrapper crash missing when adding child view
[ { "path": "shell/browser/ui/cocoa/delayed_native_view_host.mm", "patch": "@@ -15,13 +15,9 @@\n \n void DelayedNativeViewHost::ViewHierarchyChanged(\n const views::ViewHierarchyChangedDetails& details) {\n- // NativeViewHost doesn't expect to have children, so filter the\n- // ViewHierarchyChanged even...
2024-09-12T08:01:05
vercel/next.js
58989c7630546f5a30d3422a40f5f6122c954ef3
ca7f57ee2de6e46828fa9bfba85a540a1bc74aaf
Await initial Flight response before hydrating (#85124) When hydrating on the client, we can await the promise for the initial Flight response before we call hydrateRoot. Previously we would unwrap this promise inside a component with `use`, which caused it to be treated as a suspense "dependency" in the Suspense DevT...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -1,6 +1,6 @@\n import './app-globals'\n import ReactDOMClient from 'react-dom/client'\n-import React, { use } from 'react'\n+import React from 'react'\n // TODO: Explicitly import from client.browser\n // eslint-disable-next-line import/no-ext...
2025-10-20T21:01:27
nodejs/node
56d8dc120c4bd3178c9855cd97216b37a3f6821a
a46af03e244bfe9bf9149054bcfe870290c55167
lib: add warning when binding inspector to public IP Add `isLoopback` function to `internal/net` module to check if a given host is a loopback address. Add a warning when binding the inspector to a public IP with an open port, as it allows external hosts to connect to the inspector. Fixes: https://github.com/nodejs/...
[ { "path": "lib/inspector.js", "patch": "@@ -18,6 +18,8 @@ const {\n ERR_INSPECTOR_NOT_WORKER,\n } = require('internal/errors').codes;\n \n+const { isLoopback } = require('internal/net');\n+\n const { hasInspector } = internalBinding('config');\n if (!hasInspector)\n throw new ERR_INSPECTOR_NOT_AVAILABLE...
2024-11-05T22:22:58
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
facebook/react
f8024b0686c87634b233262e8a05e4a37a292e87
d66fa02a303fc53d901bdb0d7bbdaec3e6774b19
refactor: allow custom impl of backend realod-to-profile support check (#31048) <!-- 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 s...
[ { "path": "packages/react-devtools-core/src/backend.js", "patch": "@@ -13,7 +13,10 @@ import {installHook} from 'react-devtools-shared/src/hook';\n import {initBackend} from 'react-devtools-shared/src/backend';\n import {__DEBUG__} from 'react-devtools-shared/src/constants';\n import setupNativeStyleEditor ...
2024-09-26T11:39:28
vercel/next.js
ca7f57ee2de6e46828fa9bfba85a540a1bc74aaf
20cf4c07dad6fae2d319cad7ee6bea8ef626fab8
Docs: Add version history for `next lint` deprecation and update error message (#85100) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/03-api-reference/05-config/03-eslint.mdx", "patch": "@@ -363,3 +363,7 @@ export default eslintConfig\n The `next` configuration already handles setting default values for the `parser`, `plugins` and `settings` properties. There is no need to manually re-declare any of these properties...
2025-10-20T19:58:07
electron/electron
dea6a4e5fbe8c1c917b36136ad417d33cae4a10c
90fbf3049114d44f92fecb0765fa586dee542fda
fix: ensure `SetPluginCanSave` updated in PDFs (#43667) fix: ensure SetPluginCanSave updated in PDFs
[ { "path": "shell/browser/electron_pdf_document_helper_client.cc", "patch": "@@ -4,8 +4,14 @@\n \n #include \"shell/browser/electron_pdf_document_helper_client.h\"\n \n+#include \"chrome/browser/pdf/pdf_viewer_stream_manager.h\"\n+#include \"chrome/common/content_restriction.h\"\n+#include \"components/pdf/b...
2024-09-11T13:25:05
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
nodejs/node
afe3909483a2d5ae6b847055f544da40571fb28d
96403793a183c1e6a369a694e1b252e197f268cb
util: avoid run debug when enabled is false it can improve performace 700x faster PR-URL: https://github.com/nodejs/node/pull/57494 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -62,7 +62,7 @@ function lazyUtilColors() {\n return utilColors;\n }\n \n-function debuglogImpl(enabled, set, args) {\n+function debuglogImpl(enabled, set) {\n if (debugImpls[set] === undefined) {\n if (enabled) {\n const pid = process.pid...
2025-03-21T00:00:52
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
facebook/react
d66fa02a303fc53d901bdb0d7bbdaec3e6774b19
778e1ed2e5ec22d4bac48e14167d3b4a6b28e8b8
fix: use public instance in Fiber renderer and expose it from getInspectorDataForViewAtPoint (#31068) React DevTools no longer operates with just Fibers, it now builds its own Shadow Tree, which represents the tree on the Host (Fabric on Native, DOM on Web). We have to keep track of public instances for a select-...
[ { "path": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -763,16 +763,30 @@ const hostResourceToDevToolsInstanceMap: Map<\n Set<DevToolsInstance>,\n > = new Map();\n \n+// Ideally, this should be injected from Reconciler config\n function getPublicInstance(instance: HostInsta...
2024-09-26T09:17:16
vercel/next.js
43eeb928e6450c6a34220aefa524ee4f405a9c3e
c3cdef982638871bdbced0436a462c2443566400
docs: Update to Zod v4 syntax (#84807) ### What? Updated Zod syntax to v4 conventions in documentation examples. ### Why? Zod 4 deprecates `message` parameter in favor of `error`, and string format methods like `.email()` in favor of top-level functions like `z.email()`. ### How? - Replaced `{ message: '...' }` with...
[ { "path": "docs/01-app/02-guides/authentication.mdx", "patch": "@@ -103,21 +103,21 @@ Use the Server Action to validate the form fields on the server. If your authent\n Using Zod as an example, you can define a form schema with appropriate error messages:\n \n ```ts filename=\"app/lib/definitions.ts\" switc...
2025-10-20T19:26:52
electron/electron
309d5dade36c391183adef14f36f631524155d66
a3df9502812e6741bc722648719708edab87ee46
feat: add support for system picker in setDisplayMediaRequestHandler (#43581) * tmp * feat: add support for system picker in setDisplayMediaRequestHandler * oops * Apply suggestions from code review Co-authored-by: Erick Zhao <erick@hotmail.ca> * stuff * well... * seems legit * chore: update pa...
[ { "path": "docs/api/desktop-capturer.md", "patch": "@@ -20,7 +20,11 @@ app.whenReady().then(() => {\n // Grant access to the first screen found.\n callback({ video: sources[0], audio: 'loopback' })\n })\n- })\n+ // If true, use the system picker if available.\n+ // Note: this is curre...
2024-09-10T23:05: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