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
dcf83f7c2db2de64ec370df73294cedb658bd896
94fce500bcd314ea19c5c89c6385be6e62397c09
Disable ScrollTimeline in Safari (#33499) Stacked on #33501. This disables the use of ScrollTimeline when detected in Safari in the recommended SwipeRecognizer approach. I'm instead using a polyfill using touch events on iOS. Safari seems set to [release ScrollTimeline soon](https://webkit.org/blog/16993/news-from-w...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -6,6 +6,14 @@ import React, {\n } from 'react';\n \n import ScrollTimelinePolyfill from 'animation-timelines/scroll-timeline';\n+import TouchPanTimeline from 'animation-timelines/touch-pan-timeline';\n+\n+const ua = typeof ...
2025-07-02T21:01:49
vercel/next.js
469e513c5f2179ecd8292be7f0855f28acd6e7d8
2842212c29afc5fd296ab2317f61131d7c57ddf6
Require explicit `cacheLife` on outer `"use cache"` when nesting short-lived caches (#89481) This PR adds error handling for nested `"use cache"` where the inner cache has a very short lifetime (zero `revalidate` or `expire` under 5 minutes) but the outer cache doesn't have an explicit `cacheLife()` call. Short-lived...
[ { "path": "docs/01-app/01-getting-started/06-cache-components.mdx", "patch": "@@ -310,6 +310,8 @@ export default async function Page() {\n }\n ```\n \n+> **Good to know:** A cache is considered \"short-lived\" when it uses the `seconds` profile, `revalidate: 0`, or `expire` under 5 minutes. Short-lived cach...
2026-02-05T15:39:08
rust-lang/rust
be8dee11410ade2cd2f2f0ced7b9885aeebaa4c1
e52f547ed4bc554e40ab63b264e8697b8e3c5e09
interpret/validity: remove unreachable error kind
[ { "path": "compiler/rustc_const_eval/src/interpret/validity.rs", "patch": "@@ -128,7 +128,6 @@ enum ExpectedKind {\n Reference,\n Box,\n RawPtr,\n- InitScalar,\n Bool,\n Char,\n Float,\n@@ -143,7 +142,6 @@ impl fmt::Display for ExpectedKind {\n ExpectedKind::Reference ...
2026-03-22T16:36:39
facebook/react
508f7aa78ff53d058ee1151505efd5c4a4aefa01
e104795f635e2bb423fe9264b1cfdfff15f551e5
[Fiber] Switch back to using performance.measure for trigger logs (#33659) Stacked on #33658. Unfortunately `console.timeStamp` has the same bug that `performance.measure` used to have where equal start/end times stack in call order instead of reverse call-order. We rely on that in general so we should really switch ...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -101,28 +101,22 @@ function logComponentTrigger(\n trigger: string,\n ) {\n if (supportsUserTiming) {\n+ reusableComponentOptions.start = startTime;\n+ reusableComponentOptions.end = endTime;\n+ reusableCompon...
2025-07-02T20:10:52
rust-lang/rust
8946711b25d0e7f76f0a517fe0636c74666ccdc9
562dee4820c458d823175268e41601d4c060588a
tidy-alphabetical: fix line number in error message
[ { "path": "src/tools/tidy/src/alphabetical.rs", "patch": "@@ -215,7 +215,11 @@ fn check_lines<'a>(path: &Path, content: &'a str, tidy_ctx: &TidyCtx, check: &mu\n // oh nyooo :(\n if sorted != section {\n if !tidy_ctx.is_bless_enabled() {\n- ...
2026-03-22T12:24:11
golang/go
8f45611e78095c05075b4cc49e44aabde064e134
34af879dde2cfc2688b486399e9fc7e60d1e96fc
runtime/pprof: deflake TestGoroutineLeakProfileConcurrency Issue #76540 reports failures in this test from the leaked goroutine count being too small. The test makes an effort to wait for the goroutines to leak, but there's no guarantee. This change instead changes TestGoroutineLeakProfileConcurrency to wait for the ...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1590,14 +1590,30 @@ func TestGoroutineLeakProfileConcurrency(t *testing.T) {\n \tgoroutineProf := Lookup(\"goroutine\")\n \tgoroutineLeakProf := goroutineLeakProfile\n \n-\t// Check that a profile with debug information contains\n-\tincludesLeak := ...
2025-12-11T17:19:19
vercel/next.js
5c1b54115b746c769e72a7a2bd689ca7ffe1cc14
f91113d7b3dc586b815ae3d163c79c619031bc18
Clarify type checking error message (#89525) Previously: ``` pnpm next build ▲ Next.js 16.2.0-canary.28 (Turbopack) Creating an optimized production build ... ✓ Compiled successfully in 5.7s Running TypeScript ... Failed to compile. ./app/page.tsx:3:5 Type error: Type 'string' is not assignable to type 'number'...
[ { "path": "packages/next/src/lib/verify-typescript-setup.ts", "patch": "@@ -241,7 +241,7 @@ export async function verifyTypeScriptSetup({\n } catch (err) {\n // These are special errors that should not show a stack trace:\n if (err instanceof CompileError) {\n- console.error(red('Failed to co...
2026-02-05T13:21:06
nodejs/node
2869c1255b99ffad2232f9ce5a2b3f05779fb37e
05aa3a1c70b55d51ecca2cb2692b65c66ebc4d28
src: correct the error handling in StatementExecutionHelper Error handling logic was flawed in StatementExecutionHelper methods. PR-URL: https://github.com/nodejs/node/pull/60040 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -26,6 +26,7 @@ using v8::ConstructorBehavior;\n using v8::Context;\n using v8::DictionaryTemplate;\n using v8::DontDelete;\n+using v8::EscapableHandleScope;\n using v8::Exception;\n using v8::Function;\n using v8::FunctionCallback;\n@@ -2209,12 +2210,13 @@ Maybe<...
2025-09-27T21:58:11
rust-lang/rust
9677d7a5872c5c98c73f04afa028e147b983c6f6
562dee4820c458d823175268e41601d4c060588a
debuginfo: emit DW_TAG_call_site entries
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/mod.rs", "patch": "@@ -471,7 +471,7 @@ impl<'ll, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'ll, 'tcx> {\n // FIXME(eddyb) does this need to be separate from `loc.line` for some reason?\n let scope_line = loc.line;\n \n- let ...
2026-03-20T21:20:06
nodejs/node
0a870841500551502aae43a81f68e2cd75bfbc67
7dd49d7da4ef1b4e732f149e7cc9e0398771285d
test: update cppgc-object addon config Set `win_delay_load_hook` to `false` to avoid linker error. PR-URL: https://github.com/nodejs/node/pull/59805 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ih...
[ { "path": "test/addons/cppgc-object/binding.gyp", "patch": "@@ -3,6 +3,7 @@\n {\n 'target_name': 'binding',\n 'sources': [ 'binding.cc' ],\n+ 'win_delay_load_hook': 'false',\n 'includes': ['../common.gypi'],\n }\n ]", "additions": 1, "deletions": 0, "language": "...
2025-09-26T12:10:18
golang/go
e8a83788a475544ab9a153bad4be4b796bc77ccc
927c89bbc5cc7366e86ecbb0f77267435b1d6d2c
go/doc: reuse import name logic for examples Examples resolved imports based on just the path name, but this doesn't work for go-name or modules on v2+. Updates #12794 Fixes #45110 Fixes #56740 Fixes #62059 Change-Id: I8c71b1e5311df04bccbdf319d759d3176a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/72...
[ { "path": "src/go/doc/example.go", "patch": "@@ -11,7 +11,6 @@ import (\n \t\"go/ast\"\n \t\"go/token\"\n \t\"internal/lazyregexp\"\n-\t\"path\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -221,7 +220,7 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t\t\t// because the package sy...
2025-12-08T20:48:09
electron/electron
603cafad7e82aa33485fb31e179ae0f116e26c7b
09f269426e71950cf982f7fe00a26da9fb9dfe43
chore: bump chromium to 140.0.7281.0 (main) (#47616) * chore: bump chromium in DEPS to 140.0.7269.2 * chore: bump chromium in DEPS to 140.0.7270.0 * chore: bump chromium in DEPS to 140.0.7271.0 * chore: bump chromium in DEPS to 140.0.7273.0 * 6516731: [ExclusiveAccessForAndroid] remove unneeded includes & deps | h...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7261.0',\n+ '140.0.7281.0',\n 'node_version':\n 'v22.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2025-07-14T20:42:37
vercel/next.js
812996cc60f2753905c3b1e9a1e15c0c8d71b5bc
12f8545000b5234d6561ef3b65fb9caa888c7362
[CC] Rename "unstable_prefetch" to "unstable_instant" (#89448) Mostly mechanical rename. Also changes the error page to `errors/invalid-instant-configuration`. I'm not really worried about dangling links here because this is a new API and we don't expect anyone to be using it yet.
[ { "path": "errors/invalid-instant-configuration.mdx", "patch": "@@ -1,26 +1,26 @@\n ---\n-title: Invalid Prefetch Configuration\n+title: Invalid Instant Configuration\n ---\n \n ## Why This Message Occurred\n \n-You provided an invalid configuration for `export const unstable_prefetch` in a Layout or Page f...
2026-02-04T21:03:38
golang/go
89614ad264803558cfa36d460d431f7cbd4bae47
bb2337f24c8d774ef122e2251f02c5e512c77a55
runtime/trace: fix broken TestSubscribers Currently we don't break out of the loop on a failure. This is leading to timeouts trying to parse a broken trace over and over, forever. But there's another issue where when we try to dump the trace, we pass only the unread portion of the bytes.Buffer. Change-Id: I1a338eea0...
[ { "path": "src/runtime/trace/subscribe_test.go", "patch": "@@ -16,15 +16,15 @@ import (\n )\n \n func TestSubscribers(t *testing.T) {\n-\tvalidate := func(t *testing.T, source string, tr *bytes.Buffer) {\n+\tvalidate := func(t *testing.T, source string, tr []byte) {\n \t\tdefer func() {\n \t\t\tif t.Failed(...
2025-12-11T18:02:36
nodejs/node
37a3df3556121917df9769daaba9407bd27dd1d0
308de27255235ef11d21b9ccd3b35709c89db280
src: fix calls to v8::Object::wrap PR-URL: https://github.com/nodejs/node/pull/59805 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "src/cppgc_helpers-inl.h", "patch": "@@ -15,7 +15,8 @@ void CppgcMixin::Wrap(T* ptr, Realm* realm, v8::Local<v8::Object> obj) {\n v8::Isolate* isolate = realm->isolate();\n ptr->traced_reference_ = v8::TracedReference<v8::Object>(isolate, obj);\n // Note that ptr must be of concrete type T i...
2025-08-12T05:43:59
electron/electron
4a89068fb70c475cb7bc9fa09d1559a0ef1b52c9
137d4ec32969b03eca63a41fb3cecd858bb4cf25
ci: add `kTCCServiceAppleEvents` perm override to fix AppleScript errors (#47726) ci: add kTCCServiceAppleEvents perm override to fix AppleScript errors
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -103,6 +103,7 @@ jobs:\n \"'kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159\"\n \"'kTCCServiceCamera','/usr/local/opt/runner/provisione...
2025-07-13T19:05:52
vercel/next.js
99c8038e3309863f385ed983fd72081c813c1941
49e0a8a8c0ca200a71e224fc9fabd4313e110afa
Include owner stack for forwarded errors if available (#89493) For forwarded logs, we can also attach the owner stack if it's available, then we can see the proper errors trace shown in the terminal. In this way agent can directly detect where the error is happening from reading terminal log, and fix it | After | Be...
[ { "path": "packages/next/src/next-devtools/userspace/app/errors/stitched-error.ts", "patch": "@@ -17,7 +17,13 @@ export function coerceError(value: unknown): Error {\n export function setOwnerStackIfAvailable(error: Error): void {\n // React 18 and prod does not have `captureOwnerStack`\n if ('captureOw...
2026-02-04T18:05:28
golang/go
bb2337f24c8d774ef122e2251f02c5e512c77a55
2622d2955bf1753f548c6ff46d471478933012d5
cmd/go: set GOOS in vet_asm test Not every OS (e.g. aix) supports ARCH=amd64. Fixes #76792 Change-Id: Id92cd247f1e36574192a6079990c686f9ab55910 Reviewed-on: https://go-review.googlesource.com/c/go/+/729220 Commit-Queue: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Reviewed-by:...
[ { "path": "src/cmd/go/testdata/script/vet_asm.txt", "patch": "@@ -2,6 +2,7 @@\n \n env GO111MODULE=off\n env GOARCH=amd64\n+env GOOS=linux\n \n ! go vet -asmdecl a\n stderr 'f: invalid MOVW of x'", "additions": 1, "deletions": 0, "language": "Plain Text" } ]
2025-12-11T14:45:33
nodejs/node
cf5cb81556917478c392160436ba59aa497f085f
b3238442d8129570ccbf4577092f58f912a0760a
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2025-08-07T14:14:08
facebook/react
91d097b2c588a0977a7a10ed12512dc8a34e3a5b
7216c0f002222cdee3075410f7432d64724640cc
fix: rename bottom stack frame (#33680) `react-stack-bottom-frame` -> `react_stack_bottom_frame`. This survives `@babel/plugin-transform-function-name`, but now frames will be displayed as `at Object.react_stack_bottom_frame (...)` in V8. Checks that were relying on exact function name match were updated to use eithe...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2947,7 +2947,7 @@ function buildFakeTask(\n }\n \n const createFakeJSXCallStack = {\n- 'react-stack-bottom-frame': function (\n+ react_stack_bottom_frame: function (\n response: Response,\n stack: ReactStackTrace,\n envi...
2025-07-01T17:06:26
rust-lang/rust
b31dc4ab495c0297c4f09324094e9c8e62d52977
ac7f9ec7da74d37fd28667c86bf117a39ba5b02a
diagnostics: avoid ICE for undeclared generic parameter in impl Avoid an ICE for: struct A; impl A<B> {} The compiler no longer panics and can proceed to emit existing diagnostics. Adds `tests/ui/missing/undeclared-generic-parameter.rs`. Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_resolve/src/late/diagnostics.rs", "patch": "@@ -3381,7 +3381,7 @@ impl<'ast, 'ra, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {\n && def_id.is_local()\n && let Some(local_def_id) = def_id.as_local()\n && let Some(struct_generics) = self.r.st...
2026-03-21T16:15:57
vercel/next.js
9e63d487945c77e1d9054827670ee44cd3de629b
1ac8cb06e37b3ece6d6efbbb2ca8f29105fe1f34
docs: Fix syntax in proxy example code (#89395) Fixes syntax for the code sample found on https://nextjs.org/docs/pages/guides/multi-zones#routing-requests-using-proxy --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/multi-zones.mdx", "patch": "@@ -104,9 +104,9 @@ Routing requests through [`rewrites`](/docs/app/api-reference/config/next-config\n \n ```js filename=\"proxy.js\"\n export async function proxy(request) {\n- const { pathname, search } = req.nextUrl;\n+ const { pathname, sear...
2026-02-04T15:56:53
electron/electron
137d4ec32969b03eca63a41fb3cecd858bb4cf25
624d0856324c20699ae0f3a60a2a34d1cc2bc8a1
build: cleanup symlinks in cache (#47727) * build: cleanup symlinks in cache * build: ignore broken links * try --ignore-failed-read * build: dont deref symlinks * build: add flag to 7zip to resolve symlink error Needed to ignore Dangerous symbolic link path was ignored errors * Revert "build: cleanup symlinks i...
[ { "path": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -96,7 +96,7 @@ runs:\n \n $TEMP_DIR=New-Item -ItemType Directory -Path temp-cache\n $TEMP_DIR_PATH = $TEMP_DIR.FullName\n- C:\\ProgramData\\Chocolatey\\bin\\7z.exe -y x $src_cache -o\"$TEMP_DIR_PATH\"\n+ C:\\Prog...
2025-07-11T20:13:12
facebook/react
7216c0f002222cdee3075410f7432d64724640cc
6a3d16ca74acd28632dabccc142d42ce411a811b
[Flight] Don't assume _debugStack and _owner is defined for prod elements (#33675) We generally treat these types of fields as optional on ReactDebugInfo and should on ReactElement too. That way we can consume prod payloads from third parties.
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -928,8 +928,8 @@ function createElement(\n type: mixed,\n key: mixed,\n props: mixed,\n- owner: null | ReactComponentInfo, // DEV-only\n- stack: null | ReactStackTrace, // DEV-only\n+ owner: ?ReactComponentInfo, // DEV-only\n+...
2025-06-30T20:15:19
rust-lang/rust
deeb45a5debda9f607753d444bb8e3cd4c6b799e
b4f2c8a08e8752f016978b96d09d473bc7bc1a7b
style: fix rustfmt
[ { "path": "src/tools/unstable-book-gen/src/tests.rs", "patch": "@@ -54,10 +54,7 @@ fn parser_accepts_optional_trailing_metadata() {\n \n let features = parse_compiler_flags(options_rs, Path::new(\"options/unstable.rs\"));\n assert_eq!(features[\"deprecated_flag\"].description.as_deref(), Some(\"depr...
2026-03-21T15:57:31
electron/electron
f2429c31c127f95c6bc2691c96f65c4283e9045d
fbb83be785bcb36047c4052099f0886e19bdcf82
build: ask bug reporters to check if it is a Chromium issue (#47702) * build: ask bug reporters to check if it is a Chromium issue Inspiration: https://github.com/electron/electron/issues/47672#issuecomment-3051298922 * build: fix options
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -58,6 +58,15 @@ body:\n label: Last Known Working Electron version\n description: What is the last version of Electron this worked in, if applicable?\n placeholder: 16.0.0\n+- type: dropdown\n+ attributes:\n+ label: Does the iss...
2025-07-10T15:47:04
vercel/next.js
44ab1be4d078fb61fbeb3743810a828bb8731f07
5fbb9aa954c45ed0811201e9e727f14a8affa627
Support MPA navigations in `instant()` (#89469) Based on: - https://github.com/vercel/next.js/pull/89465 --- The `instant()` testing API allows e2e tests to assert on prefetched UI before dynamic data streams in. This extends it to handle full page navigations: page reloads, plain anchor clicks, and browser back/fo...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -37,6 +37,7 @@ import {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n+ NEXT_INSTANT_TEST_COOKIE,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n@@ -350,1...
2026-02-04T13:17:31
golang/go
5818c9d714f1a8abeb76ec5d75ad0e0560e8d780
9de6468701f4def1bbdc737e8ad1327f2cfaecc8
encoding/json/jsontext: add symbolic Kind constants Add constants for each possible Kind value (KindNull, KindTrue, etc.). Leave the values unchanged ('n', 't', etc.). Update documentation to reference the symbols. Fixes #71756 Change-Id: Ib33b2ad9ee55f6f547d9e6a1c5a7f00c8400d3d3 Reviewed-on: https://go-review.googl...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -306,7 +306,7 @@ func (d *decodeBuffer) PreviousTokenOrValue() []byte {\n \n // PeekKind retrieves the next token kind, but does not advance the read offset.\n //\n-// It returns 0 if an error occurs. Any such error is cached until\n+// It retur...
2025-12-08T22:22:12
facebook/react
3cfcdfb30720a5b8de0e981c8fdabec1abb61588
9c2a8dd5f87266308a8a8e55fb7f029ba530d36a
[Flight] Resolve Deep Cycles (#33664) Stacked on #33666. If we ever get a future reference to a cycle and that reference gets eagerly parsed before the target has loaded then we can end up with a cycle that never gets resolved. That's because our cycle resolution only works if the cyclic future reference is created s...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -165,16 +165,16 @@ const HALTED = 'halted'; // DEV-only. Means it never resolves even if connection\n \n type PendingChunk<T> = {\n status: 'pending',\n- value: null | Array<(T) => mixed>,\n- reason: null | Array<(mixed) => mixed>,...
2025-06-29T14:56:16
rust-lang/rust
83a21a5e7129b62e4c1944affb906c0751a6cfaf
a22e9e0e026bd1d2da24041b40a4227a0b7d6616
fix: move tests to separate file and avoid tidy markers in strings
[ { "path": "src/tools/unstable-book-gen/src/main.rs", "patch": "@@ -664,96 +664,4 @@ fn main() {\n }\n \n #[cfg(test)]\n-mod tests {\n- use std::path::{Path, PathBuf};\n-\n- use super::{parse_compiler_flags, parse_one_entry, skip_ws_comments_and_attrs};\n-\n- #[test]\n- fn parses_unstable_options...
2026-03-19T01:59:48
electron/electron
31bc5ca903b35016649727326bf443ef11cc6e62
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
fix: default to system accent color on invalid user color (#47660) fix: default to system accent color on invalid user color"
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -656,7 +656,7 @@ bool BaseWindow::IsTabletMode() const {\n }\n \n void BaseWindow::SetBackgroundColor(const std::string& color_name) {\n- SkColor color = ParseCSSColor(color_name);\n+ SkColor color = ParseCSSColor(color_name).value_or...
2025-07-08T09:15:13
vercel/next.js
178a4c719f193e1f3a4c4131e2862909fadb9716
43136958b40d05c7d45efe8d65bbe516a58df607
fix: use signal-based exit codes to prevent inspector blocking exit (#89351) ## What? Use signal-based exit codes when shutting down the Next.js server to prevent the process from waiting for the debugger to disconnect. ## Why? When Node.js devtools are attached (via `--inspect` flag or the Next.js DevTools "Attach...
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -382,7 +382,7 @@ export async function startServer(\n try {\n let cleanupStarted = false\n let closeUpgraded: (() => void) | null = null\n- const cleanup = () => {\n+ const cleanup = (signal: 'SIGINT' ...
2026-02-04T11:07:41
golang/go
00642ee23b614d5314604b6b4d25c671f82c26b2
7b60d0673910a6527eb3d401b8a4e90c59cf70bd
encoding/json: report true from v2 Decoder.More when an error is pending Historically, Decoder.More reports true when the next read will return an error. Adjust the v2 Decoder to follow this behavior. Fixes #76467 Change-Id: I03bfa391e4e89ada8ca869db43c1d0bb63cc0413 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -459,6 +459,9 @@ func TestDecodeInStream(t *testing.T) {\n \t\t{CaseName: Name(\"\"), json: ` \\a`, expTokens: []any{\n \t\t\t&SyntaxError{\"invalid character '\\\\\\\\' looking for beginning of value\", 1},\n \t\t}},\n+\t\t{CaseName: Name(\"\"), js...
2025-12-08T21:09:05
nodejs/node
c0b8c80164cd8acb31da4fc72d57d01a64621bac
2a1da3260d5648d30c7f25365789c47c07a048f7
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
facebook/react
bfc8801e0f0bfacb46bc71244e8244736bd995f4
d2a288febf61a1755b78ce98b3cb17dd412b81e3
[Flight] Write Debug Info to Separate Priority Queue (#33654) This writes all debug info to a separate priority queue. In the future I'll put this on a different channel. Ideally I think we'd put it in the bottom of the stream but because it actually blocks the elements from resolving anyway it ends up being better t...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -764,6 +764,78 @@ function getTaskName(type: mixed): string {\n }\n }\n \n+function initializeElement(response: Response, element: any): void {\n+ if (!__DEV__) {\n+ return;\n+ }\n+ const stack = element._debugStack;\n+ const ...
2025-06-27T13:45:11
vercel/next.js
446e1112a6af484042f2f0d196965e680430e89d
c2214e7aae0b6ef98b122fea7efc3675a5473182
Fix indentation of types of tests in docs (#89409) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/testing/index.mdx", "patch": "@@ -8,8 +8,8 @@ In React and Next.js, there are a few different types of tests you can write, ea\n ## Types of tests\n \n - **Unit Testing** involves testing individual units (or blocks of code) in isolation. In React, a unit can be a single fun...
2026-02-03T20:48:44
electron/electron
03a02fc31ec6f0ce535f4696e190272c08f8e2b3
5ef6897bc73fa0301df583717be8bc53485dc239
fix: fullscreen for windows without rounded corners (#47664)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -175,6 +175,8 @@ class NativeWindowMac : public NativeWindow,\n // cleanup in destructor.\n void Cleanup();\n \n+ void SetBorderless(bool borderless);\n+\n void UpdateVibrancyRadii(bool fullscreen);\n \n void UpdateWindowOriginalFrame();",...
2025-07-08T09:14:14
rust-lang/rust
aed54f219eccbd4f3cb3ecd89acdc0d9eeb2bceb
bfc05d6b072585dfd0c792ec1b8728c08a3511fe
tests/ui/async-await/gat-is-send-across-await.rs: New regression test The test began passing in `nightly-2025-10-16`. Probably by c50aebba787 because it fixed two "does not live long enough" errors. The test fails to compile with `nightly-2025-10-15` with such an error: $ rustc +nightly-2025-10-15 --edition 2018 ...
[ { "path": "tests/ui/async-await/gat-is-send-across-await.rs", "patch": "@@ -0,0 +1,23 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/111852>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(unused)]\n+\n+trait G: Send {\n+ type Gat<'l>: Send\n+ where\n+ Self: 'l;\n+...
2026-03-21T15:00:51
nodejs/node
6f941fcfba50fe7c3a342ed2066770aecaaa9b5a
60f1a5d07714ce1062e1ed6f41b5cca7bc5d0bbf
lib: implement passive listener behavior per spec Implements the WHATWG DOM specification for passive event listeners, ensuring that calls to `preventDefault()` are correctly ignored within a passive listener context. An internal `kInPassiveListener` state is added to the Event object to track when a passive listener...
[ { "path": "lib/internal/event_target.js", "patch": "@@ -76,6 +76,7 @@ const { now } = require('internal/perf/utils');\n \n const kType = Symbol('type');\n const kDetail = Symbol('detail');\n+const kInPassiveListener = Symbol('kInPassiveListener');\n \n const isTrustedSet = new SafeWeakSet();\n const isTrust...
2025-10-04T03:17:35
golang/go
1de9585be24aaa11ecc79a5fe976713b8e7fd446
e38c38f0e539f599216247b5293d5c78aa82468b
runtime: prevent calls to GOMAXPROCS while clearing P trace state Currently, between the forEachP that ensures every P has a status in the trace and readying dead Ps for the next generation, there's a big window where GOMAXPROCS could run and change the number of Ps. In such circumstances, P state will not get properl...
[ { "path": "src/runtime/trace.go", "patch": "@@ -440,11 +440,6 @@ func StartTrace() error {\n \n \t// Record the heap goal so we have it at the very beginning of the trace.\n \ttl.HeapGoal()\n-\n-\t// Make sure a ProcStatus is emitted for every P, while we're here.\n-\tfor _, pp := range allp {\n-\t\ttl.writ...
2025-12-11T02:51:27
facebook/react
d2a288febf61a1755b78ce98b3cb17dd412b81e3
4db4b21c63ebc4edc508c5f7674f9df50d8f9744
Include Component Props in Performance Track (#33655) Similar to how we can include a Promise resolved value we can include Component Props. For now I left out props for Client Components for perf unless they error. I'll try it for Client Components in general in a separate PR. <img width="730" alt="Screenshot 2025-...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -100,7 +100,7 @@ import {getOwnerStackByComponentInfoInDev} from 'shared/ReactComponentInfoStack'\n \n import {injectInternals} from './ReactFlightClientDevToolsHook';\n \n-import {OMITTED_PROP_ERROR} from './ReactFlightPropertyAccess'...
2025-06-27T12:45:56
vercel/next.js
b08049ccf54ecd95033d89f82b1261e4142a2dbc
fe174a322fd65f61b51efc7525c605334b93c30f
[Codemod] Fix agents-md on Windows (#89319) Fixes #89240 The `agents-md` codemod failed on Windows because it assumed forward slashes in file paths. This caused the doc tree builder to skip files, resulting in an empty index being injected into `AGENTS.md`. The path handling code used string operations like `.split(...
[ { "path": "packages/next-codemod/lib/__tests__/agents-md-e2e.test.js", "patch": "@@ -0,0 +1,294 @@\n+/* global jest */\n+jest.autoMockOff()\n+\n+const fs = require('fs')\n+const path = require('path')\n+const os = require('os')\n+const { runAgentsMd } = require('../../bin/agents-md')\n+\n+/**\n+ * TRUE E2E ...
2026-02-03T18:21:05
electron/electron
5ef6897bc73fa0301df583717be8bc53485dc239
bc585b6a3f8b0b8ce680636f3e27aced04d435b4
fix: accent color should reflect system settings without restart (#47629) fix: accentColor should reflect system settings without restart
[ { "path": "shell/browser/native_window_views.h", "patch": "@@ -319,7 +319,7 @@ class NativeWindowViews : public NativeWindow,\n // Whether the window is currently being moved.\n bool is_moving_ = false;\n \n- std::variant<bool, SkColor> accent_color_ = true;\n+ std::variant<std::monostate, bool, SkCol...
2025-07-03T16:13:39
nodejs/node
60f1a5d07714ce1062e1ed6f41b5cca7bc5d0bbf
ffb25b8ce27013492c56e53013819b09abf9761b
process: fix wrong asyncContext under unhandled-rejections=strict Fixes: https://github.com/nodejs/node/issues/60034 PR-URL: https://github.com/nodejs/node/pull/60103 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Revi...
[ { "path": "lib/internal/process/promises.js", "patch": "@@ -281,7 +281,7 @@ function strictUnhandledRejectionsMode(promise, promiseInfo, promiseAsyncId) {\n reason : new UnhandledPromiseRejection(reason);\n // This destroys the async stack, don't clear it after\n triggerUncaughtException(err, true /...
2025-10-04T02:12:19
golang/go
e38c38f0e539f599216247b5293d5c78aa82468b
c0ba519764536b8ce7ba2a7fe3748f07672f7b6e
internal/trace: correctly handle GoUndetermined for GoroutineSummary Currently the trace summarization incorrectly handles GoUndetermined by treating it too much like GoNotExist. In particular, it should be accumulating all the time since the start of the trace in a particular bucket, but it doesn't, so that instead g...
[ { "path": "src/internal/trace/summary.go", "patch": "@@ -321,16 +321,47 @@ func (s *Summarizer) Event(ev *Event) {\n \t\t\t// Handle transition out.\n \t\t\tg := s.gs[id]\n \t\t\tswitch old {\n-\t\t\tcase GoUndetermined, GoNotExist:\n+\t\t\tcase GoUndetermined:\n \t\t\t\tg = &GoroutineSummary{ID: id, gorout...
2025-12-10T02:50:56
facebook/react
4db4b21c63ebc4edc508c5f7674f9df50d8f9744
31d91651e042e4939021f21a3d8799c13684a84b
Fix typo "Complier" to "Compiler" and remove duplicate issue reference (#33653) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitt...
[ { "path": "CHANGELOG.md", "patch": "@@ -19,11 +19,11 @@ An Owner Stack is a string representing the components that are directly respons\n * Updated `useId` to use valid CSS selectors, changing format from `:r123:` to `«r123»`. [#32001](https://github.com/facebook/react/pull/32001)\n * Added a dev-only warn...
2025-06-26T15:34:45
vercel/next.js
e6b92947a86e3e2173fccdaab0deadc5d3bcca39
2f2a71d6f53d4d18cc81eac6fa25c7e160555bc9
Rename CACHE_ONE_YEAR for clarity and fix usage (#89450) This renames the variable for clarity as we've had issues with unit mismatch with this constant specifically. Also fixes usage which was working accidentally because we converted it to a negative unit which is always in the past. x-ref: [slack thread](https://v...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -33,7 +33,7 @@ import type {\n } from '..'\n \n import {\n- CACHE_ONE_YEAR,\n+ CACHE_ONE_YEAR_SECONDS,\n HTML_CONTENT_TYPE_HEADER,\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n@@ -2012,7 +2012,7 @@ export async functio...
2026-02-03T17:58:09
electron/electron
4c460df0a4edd91df2429384d1d5e97bfc262dff
cf193b279b47f367b9d5199644d304fa11aa1e6c
ci: fix audit workflow alerting on stale results (#47643)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -101,7 +101,6 @@ jobs:\n }\n \n if (runsWithErrors.length > 0) {\n- core.setOutput('errorsFound', true);\n core.summary.addHeading('⚠️ Runs with Errors');\n core.summary.addTable(...
2025-07-03T12:42:04
rust-lang/rust
125cefc89ae8e55d8b1a2635ab4d5c653490f9d9
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
freebsd sync: fix _umtx_time flags check to use bitwise operation. The `_umtx_time` flags check in `read_umtx_time` used equality (`flags == abs_time`) instead of bitwise AND (`flags & abs_time != 0`) to detect `UMTX_ABSTIME`. While functionally equivalent for current valid inputs (0 or `UMTX_ABSTIME` alone), the equa...
[ { "path": "src/tools/miri/src/shims/unix/freebsd/sync.rs", "patch": "@@ -216,7 +216,12 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \n let flags_place = this.project_field(ut, FieldIdx::from_u32(1))?;\n let flags = this.read_scalar(&flags_place)?.to_u32()?;\n- l...
2026-03-21T06:45:55
golang/go
f105dfd048ce6ca9a8115d7fdd7a4cb60e84ba40
af14f6791108ece9661590cbf922806492954ea6
lib/fips140: freeze v1.1.0-rc1 FIPS 140 module zip file Fixes #76769 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest Change-Id: I16b0e9463e2e10ee5a6f20967fb6377b6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,3 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n+v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e", "additions": 1, ...
2025-12-10T21:49:31
nodejs/node
f468b6c72b5c505de0d1db417325c6a86859df18
36b1cc2fcf9e05e558fc6364a957f41be2f81bc3
build: update minimum Xcode version to 16.4 Refs: https://github.com/nodejs/build/issues/4083 Closes: https://github.com/nodejs/node/issues/58069 PR-URL: https://github.com/nodejs/node/pull/60079 Fixes: https://github.com/nodejs/node/issues/58069 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By...
[ { "path": "BUILDING.md", "patch": "@@ -157,7 +157,7 @@ Depending on the host platform, the selection of toolchains may vary.\n | ---------------- | -------------------------------------------------------------- |\n | Linux | GCC >= 12.2 or Clang >= 19.1 |\n | Win...
2025-10-03T07:26:26
facebook/react
9894c488e0d9a4d9759d80ba8666d4d094b894e9
cee7939b0017ff58230e19663c22393bfd9025ef
[compiler] Fix bug with reassigning function param in destructuring (#33624) Closes #33577, a bug with ExtractScopeDeclarationsFromDestructuring and codegen when a function param is reassigned. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](h...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -349,11 +349,9 @@ function codegenReactiveFunction(\n fn: ReactiveFunction,\n ): Result<CodegenFunction, CompilerError> {\n for (const param of fn.params) {\n- if (param.kind === 'Ide...
2025-06-25T18:10:09
vercel/next.js
7437fed8bf2551298c8273cb247dd3ba71267581
b91cf900ed2fac0bbaae17d1bbee8d8eb650a2f1
Snippet multi package syntax (#89381) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improvin...
[ { "path": "docs/01-app/02-guides/package-bundling.mdx", "patch": "@@ -29,10 +29,22 @@ The Next.js Bundle Analyzer is integrated with Turbopack's module graph. You can\n \n To get started, run the following command and open up the interactive view in your browser.\n \n-```bash filename=\"Terminal\"\n+```bash...
2026-02-03T00:56:05
electron/electron
cf193b279b47f367b9d5199644d304fa11aa1e6c
655037fbdf87ac4f2201db332b417e126489d304
fix: crash on source capture with empty thumbnail size (#47641)
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -236,7 +236,8 @@ DesktopCapturer::DesktopListListener::~DesktopListListener() = default;\n \n void DesktopCapturer::DesktopListListener::OnDelegatedSourceListSelection() {\n if (have_thumbnail_) {\n- std::move(update_callback_...
2025-07-03T12:41:19
golang/go
72c83bcc80d0a195269b168423446476808a11e8
b2a697bd06e01abade1d436f01be7186b1c38842
go/types, types2: put Named.finite behind Named.mu This change adds another leaf state to named types which indicates whether the type's size finiteness is known. Without this, writes to Named.finite can result in a clobbered value. While benign in terms of functionality, it triggers the race detector. Fixes #76773 ...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -106,17 +106,13 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n // TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n \n // finiteSize returns whether a type has finite...
2025-12-10T18:29:01
nodejs/node
0eda17ba20a9b0aa2b354cd9df797ad28955df1f
5ac8f26ede517f045d22c275376c03a2129e3cf4
build: fix flags for ngtcp2 on IBM i PR-URL: https://github.com/nodejs/node/pull/60073 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Abdirahim Musse <abdirahim.musse@ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "deps/ngtcp2/ngtcp2.gyp", "patch": "@@ -272,7 +272,7 @@\n 'HAVE_NETINET_IP_H',\n ],\n 'conditions': [\n- ['OS==\"aix\" or OS==\"win\"', {\n+ ['OS==\"aix\" or OS==\"win\" or OS==\"os400\"', {\n # AIX does not support some of the networking features used i...
2025-10-02T16:57:48
facebook/react
cee7939b0017ff58230e19663c22393bfd9025ef
b42341ddc757129db062298f9fe3ad041c580d2a
[Fizz] Push a stalled await from debug info to the ownerStack/debugTask (#33634) If an aborted task is not rendering, then this is an async abort. Conceptually it's as if the abort happened inside the async gap. The abort reason's stack frame won't have that on the stack so instead we use the owner stack and debug tas...
[ { "path": "packages/react-server/src/ReactFizzComponentStack.js", "patch": "@@ -7,7 +7,7 @@\n * @flow\n */\n \n-import type {ReactComponentInfo} from 'shared/ReactTypes';\n+import type {ReactComponentInfo, ReactAsyncInfo} from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\...
2025-06-25T15:14:49
electron/electron
655037fbdf87ac4f2201db332b417e126489d304
07338bb1cf93091a36c047407c0af87438023d25
fix: `window.open` popups are always resizable (#47540) fix: window.open popups are always resizable Closes https://github.com/electron/electron/issues/43591. Per current WHATWG spec, the `window.open` API should always create a resizable popup window. This change updates the `parseFeaturesString` function to ensure...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -21,6 +21,23 @@ macOS 11 (Big Sur) is no longer supported by [Chromium](https://chromium-review.\n Older versions of Electron will continue to run on Big Sur, but macOS 12 (Monterey)\n or later will be required to run Electron v38.0.0 and higher.\n \n+### B...
2025-07-02T13:02:59
golang/go
c39fe18fea16d6bdbd5526a7b7d7b59e84ae0144
db0ab834d67131676ab2001ab8e72b197b22ce54
crypto/mlkem/mlkemtest: error out in fips140=only mode Updates #70514 Change-Id: I1d1a0b4a2c7ee4cb6e8e0700dd3463a46a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/728502 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golan...
[ { "path": "src/crypto/mlkem/mlkemtest/mlkemtest.go", "patch": "@@ -7,6 +7,7 @@ package mlkemtest\n \n import (\n \tfips140mlkem \"crypto/internal/fips140/mlkem\"\n+\t\"crypto/internal/fips140only\"\n \t\"crypto/mlkem\"\n \t\"errors\"\n )\n@@ -20,6 +21,9 @@ func Encapsulate768(ek *mlkem.EncapsulationKey768, ...
2025-12-08T23:39:54
nodejs/node
69144e96c2686d3ecc73b0423dcf163a40bfc7a0
23b834058cc341d14496cc8eb8686ad3c0a5dc89
module: use sync cjs when importing cts PR-URL: https://github.com/nodejs/node/pull/60072 Fixes: https://github.com/nodejs/node/issues/59963 Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -504,7 +504,9 @@ class ModuleLoader {\n const loadResult = this.#loadSync(url, { format, importAttributes });\n \n // Use the synchronous commonjs translator which can deal with cycles.\n- const finalFormat = loadResult.format === 'comm...
2025-10-02T03:49:26
facebook/react
e67b4fe22e0c3c267303ee6737aec1db48055022
4a523489b7dc64cd397f619e50223edda1b9a321
[Flight] Emit Partial Debug Info if we have any at the point of aborting a render (#33632) When we abort a render we don't really have much information about the task that was aborted. Because before a Promise resolves there's no indication about would have resolved it. In particular we don't know which I/O would've u...
[ { "path": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -75,6 +75,7 @@ import type {\n AsyncSequence,\n IONode,\n PromiseNode,\n+ UnresolvedPromiseNode,\n } from './ReactFlightAsyncSequence';\n \n import {\n@@ -734,6 +735,12 @@ function serializeDebugThenable(\n }\n }\n \n+ if...
2025-06-24T20:36:21
electron/electron
f7138344d82a95dd4659dbb80f19a5a73ffca7dd
b9248e6782e4dcd1088c7972a59b74c5827b235f
docs: discoverability of chromium switches (#44947) * docs: document discoverability of chromium switches * docs: fixed typo * docs: reference chromium endorsed list of swithes * docs: reorder command-line-switches * fix: address review * fix: typo * fix: wording * Update command-line-switches.md fix: lint spa...
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -331,6 +331,22 @@ Affects the default output directory of [v8.setHeapSnapshotNearHeapLimit](https:\n \n Disable exposition of [Navigator API][] on the global scope from Node.js.\n \n+## Chromium Flags\n+\n+There isn't a documented list of all Chrom...
2025-07-01T21:31:49
golang/go
cd873cf7e98c3fd3e8138e9d97d6a974a1ee0b53
550c0c898b61628aed108aca7d8dbef32458bc09
crypto/internal/fips140/aes/gcm: don't panic on bad nonces out of FIPS 140-3 mode The enforcement is good beyond compliance if it is correct, but I am more nervous about accidental DoS due to mismatches between how the caller calculates a nonce and how the enforcement expects it to be calculated. We need to have this...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -8,15 +8,32 @@ package cipher_test\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/cryptotest\"\n \t\"crypto/internal/fips140\"\n \tfipsaes \"crypto/internal/fips140/aes\"\n \t\"crypto/internal/fips140/aes/gcm\"\n \t\"encoding/bin...
2025-12-08T23:47:26
nodejs/node
b8ea0e8e8505fa68f1fb7ae6af78c1ba9190e455
c08164d016bafa162be02a294f74d6b0fdbe3c1a
process: fix default `env` for `process.execve` The `env` parameter for `process.execve` is documented to default to `process.env`. PR-URL: https://github.com/nodejs/node/pull/60029 Refs: https://github.com/nodejs/build/pull/4156 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonma...
[ { "path": "lib/internal/process/per_thread.js", "patch": "@@ -279,7 +279,7 @@ function wrapProcessMethods(binding) {\n return true;\n }\n \n- function execve(execPath, args = [], env) {\n+ function execve(execPath, args = [], env = process.env) {\n emitExperimentalWarning('process.execve');\n \n...
2025-10-01T12:47:07
facebook/react
4a523489b7dc64cd397f619e50223edda1b9a321
94cf60bede7cd6685e07a4374d1e3aa90445130b
Get Server Component Function Location for Parent Stacks using Child's Owner Stack (#33629) This is using the same trick as #30798 but for runtime code too. It's essential zero cost. This lets us include a source location for parent stacks of Server Components when it has an owned child's location. Either from JSX or...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2739,9 +2739,15 @@ function initializeFakeStack(\n // $FlowFixMe[cannot-write]\n debugInfo.debugStack = createFakeJSXCallStackInDEV(response, stack, env);\n }\n- if (debugInfo.owner != null) {\n+ const owner = debugInfo.ow...
2025-06-24T20:35:28
golang/go
36bca3166e18db52687a4d91ead3f98ffe6d00b8
b9693a2d9a89168b86cf01033b8420bf8db652d6
cmd: fix some issues in the comments Change-Id: Id2c4152b43c7ee1a687e49da7dda5a690e554231 Reviewed-on: https://go-review.googlesource.com/c/go/+/727900 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/compile/internal/inline/inlheur/analyze_func_params.go", "patch": "@@ -122,9 +122,9 @@ func (pa *paramsAnalyzer) findParamIdx(n *ir.Name) int {\n \n type testfType func(x ir.Node, param *ir.Name, idx int) (bool, bool)\n \n-// paramsAnalyzer invokes function 'testf' on the specified expres...
2025-12-08T04:18:59
vercel/next.js
286e2431764add1ba9d51f74f215b54b5da76945
151b415c9df66847936e66421bae463a83e173b8
Restore default-enabled Server Function logging (#89407) Restores Server Function logging to be enabled by default during development, as originally implemented in #88277. The change to opt-in in #89321 was overly conservative. The implicit default in #88277 was an intentional design decision. Users can still opt out...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/logging.mdx", "patch": "@@ -35,17 +35,17 @@ module.exports = {\n \n ### Server Functions\n \n-You can enable logging of [Server Function](https://react.dev/reference/rsc/server-functions) invocations during development by setting `logging.s...
2026-02-02T18:13:51
nodejs/node
2e2f4cd095ff932789ed5fbdbe871babae6833b7
0cc1304489a1bccd204ff0a30c6b020b3b8d10de
src: remove unnecessary `std::string` error messages If we can just use the classic `THROW_...()` methods directly, without needing to allocate an `std::string` for the message/format parameter, let's just do so. PR-URL: https://github.com/nodejs/node/pull/60057 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed...
[ { "path": "src/node_file.cc", "patch": "@@ -3260,24 +3260,25 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n if (!error_code) {\n // Check if src and dest are identical.\n if (std::filesystem::equivalent(src_path, dest_path)) {\n- std::string message = \"src and d...
2025-09-28T03:08:59
electron/electron
4f69c5835e7217deb57913817359ff2b37b9bb80
fa153325877f1aa01c15b857f72f1da4ae564feb
chore: bump chromium to 140.0.7261.0 (main) (#47561) * chore: bump chromium in DEPS to 140.0.7259.0 * chore: update patches * Add fade in animation to Picture-in-Picture windows https://chromium-review.googlesource.com/c/chromium/src/+/6538268 * [v8] Use V8 Apis that don't return JSGlobalObject Refs https://issue...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '139.0.7256.0',\n+ '140.0.7261.0',\n 'node_version':\n 'v22.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2025-06-30T16:30:05
golang/go
b9693a2d9a89168b86cf01033b8420bf8db652d6
1274d58dacc92204f5bb233b22a93c30a37f34e5
runtime: on AIX check isarchive before calling libpreinit On AIX, all externally linked programs call _rt0_ppc64_aix_lib, as seen in runtime/cgo/gcc_aix_ppc64.c. The idea is that we only do the library initialization is isarchive is set. However, before this CL, AIX programs would call libpreinit before checking isarc...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -30,9 +30,6 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\t$runtime·reginit(SB), R12\n \tMOVD\tR12, CTR\n \tBL\t(CTR)\n-\tMOVD\t$runtime·libpreinit(SB), R12\n-\tMOVD\tR12, CTR\n-\tBL\t(CTR)\n \n #ifdef GOOS_aix\n \t// See runtime/cgo/gcc_aix_ppc64...
2025-12-07T06:00:20
facebook/react
94cf60bede7cd6685e07a4374d1e3aa90445130b
bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36
[compiler] New inference repros/fixes (#33584) Substantially improves the last major known issue with the new inference model's implementation: inferring effects of function expressions. I knowingly used a really simple (dumb) approach in InferFunctionExpressionAliasingEffects but it worked surprisingly well on a ton ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1770,6 +1770,10 @@ export function isUseStateType(id: Identifier): boolean {\n return id.type.kind === 'Object' && id.type.shapeId === 'BuiltInUseState';\n }\n \n+export function isJsxType(type: Type): boolean {\n+ re...
2025-06-24T17:01:58
vercel/next.js
151b415c9df66847936e66421bae463a83e173b8
0fca1fa062316d34144e6c50b0bcf65182213c43
docs: Fix custom server code snippets (#89400) I noticed the snippets were slightly broken when copying them to an app. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right...
[ { "path": "docs/01-app/02-guides/custom-server.mdx", "patch": "@@ -17,7 +17,6 @@ Take a look at the [following example](https://github.com/vercel/next.js/tree/ca\n \n ```ts filename=\"server.ts\" switcher\n import { createServer } from 'http'\n-import { parse } from 'url'\n import next from 'next'\n \n cons...
2026-02-02T18:12:59
nodejs/node
3c36ad0b7c65afca7ba085d4292b90de9aab6b7e
c2536adc287d4c9af36ed6f4e79a96a24e214fba
deps: update amaro to 1.1.4 PR-URL: https://github.com/nodejs/node/pull/60044 Fixes: https://github.com/nodejs/node/issues/60007 Fixes: https://github.com/nodejs/node/issues/59737 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Colin Ihrig <cjihr...
[ { "path": "deps/amaro/dist/package.json", "patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.13.5\",\n+ \"version\": \"1.13.20\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",", "add...
2025-09-29T07:35:13
electron/electron
fa153325877f1aa01c15b857f72f1da4ae564feb
e299a1d098598f3884da7a5358be6ceab86d651c
docs: update automated-testing.md (#47017) * Update automated-testing.md * fixed lint error
[ { "path": "docs/tutorial/automated-testing.md", "patch": "@@ -74,46 +74,22 @@ describe('keyboard input', () => {\n Furthermore, WebdriverIO allows you to access Electron APIs to get static information about your application:\n \n ```js @ts-nocheck\n-import { browser, $, expect } from '@wdio/globals'\n-\n-de...
2025-06-30T08:56:48
vercel/next.js
b0facee66d1802a9d11bf7f1fc190e4f5cd096d8
d77e3d4cf3ba60457c5f764c4f73bebcb57c800f
Turbopack: Move PrettyPrintError to turbo_tasks and add tests (#89280) ### What? Move the error printing logic to turbo_tasks and add test cases for it
[ { "path": "Cargo.lock", "patch": "@@ -9431,6 +9431,7 @@ dependencies = [\n \"futures\",\n \"hashbrown 0.14.5\",\n \"indexmap 2.9.0\",\n+ \"indoc\",\n \"lmdb-rkv\",\n \"lzzzz\",\n \"once_cell\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-napi-b...
2026-02-02T07:56:53
facebook/react
bbc13fa17be8eebef3e6ee47f48c76c0c44e2f36
12eaef7ef5fbf6c9d7ec6e16a04bc207a1a68b91
[Flight] Add Debug Channel option for stateful connection to the backend in DEV (#33627) This adds plumbing for opening a stream from the Flight Client to the Flight Server so it can ask for more data on-demand. In this mode, the Flight Server keeps the connection open as long as the client is still alive and there's ...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -104,6 +104,9 @@ async function renderApp(req, res, next) {\n if (req.headers['cache-control']) {\n proxiedHeaders['Cache-Control'] = req.get('cache-control');\n }\n+ if (req.get('rsc-request-id')) {\n+ proxiedHeaders['rsc-request-id'] =...
2025-06-24T15:16:09
nodejs/node
413693481fbe29d712da9de38051ed4e6874aaf1
075936b4133ec0d2cdb06ae21beed62edb2edf5f
sqlite: replace `ToLocalChecked` and improve filter error handling PR-URL: https://github.com/nodejs/node/pull/60028 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1763,21 +1763,27 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo<Value>& args) {\n \n Local<Function> filterFunc = filterValue.As<Function>();\n \n- context.filterCallback = [env,\n- filterFunc](std::stri...
2025-09-26T17:04:05
golang/go
1274d58dacc92204f5bb233b22a93c30a37f34e5
9e0981230803265f3245193e1d61cc3599c9ca54
go/types, types2: add check for finite size at value observance Each type must be representable by a finite amount of Go source code after replacing all alias type names, value names, and embedded interfaces (per #56103) with the RHS from their respective declarations ("expansion"); otherwise the type is invalid. Fur...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -102,3 +102,43 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n \t\t}\n \t}\n }\n+\n+// TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n+\n+// finiteSize returns wheth...
2025-12-03T20:14:22
electron/electron
5e862f398ecf2a8b564ec9c6da5ef9960e850cc7
61c245761cadbc0847f19b017b220e1d36cdcb42
fix: Reland "[accessibility] Platform node lifetime cleanups" (#47590) Reland "[accessibility] Platform node lifetime cleanups" https://chromium-review.googlesource.com/c/chromium/src/+/6462552
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -306,7 +306,8 @@ std::string RecursiveDumpAXPlatformNodeAsString(\n return \"\";\n }\n std::string str(2 * indent, '+');\n- std::string line = node->GetDelegate()->GetData().ToString();\n+ ui::AXPlatformNodeDelegate* const node_d...
2025-06-29T19:57:48
vercel/next.js
9d2d2421adfd903de2c487164fdfc71de664d6b0
ef6ac79d0b4cfb0055ee1aa9b1f30bdc144c297f
Revert "Fix/zlib mem node" (#89322) Reverts vercel/next.js#89099 Apparently this did not solve the user's memory leak issue: https://github.com/vercel/next.js/issues/89091#issuecomment-3826050800
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -262,12 +262,6 @@ export async function initialize(opts: {\n if (compress) {\n // @ts-expect-error not express req/res\n compress(req, res, () => {})\n-\n- // Only on client abort: destroy response so compression st...
2026-01-31T00:50:24
facebook/react
fa3feba6720c96ca10fb42d5f53a9b4fa9aa6ccd
2a911f27dd99c46778c27ba004f9d8fe898efd21
Fix prelease workflows for `dry: false` (#33582) ## Summary Follow-up to https://github.com/facebook/react/pull/33525 Fixes `Unsupported tag: "false"` (https://github.com/facebook/react/actions/runs/15773778995/job/44463562733#step:13:12) which also affects nightly releases. ## How did you test this change? - [x] ...
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -85,7 +85,7 @@ jobs:\n --skipTests \\\n --tags=${{ inputs.dist_tag }} \\\n --onlyPackages=${{ inputs.only_packages }} ${{ (inputs.dry && '') || '\\'}}\n- ${{ inputs.dry && '--dry'}}\n+ ...
2025-06-23T15:47:07
nodejs/node
b51fd73e105ec8a5df10298eb980e5fcfba61f0d
9ac571d0d5b33706329ea26daac5e82c1f050897
test: fix typo of test-benchmark-readline.js "bechmark" -> "benchmark" in test-benchmark-readline.js. And fix test name in test-benchmark-validators.js. PR-URL: https://github.com/nodejs/node/pull/59993 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Uli...
[ { "path": "test/benchmark/test-benchmark-validators.js", "patch": "@@ -2,7 +2,7 @@\n \n require('../common');\n \n-// Minimal test for assert benchmarks. This makes sure the benchmarks aren't\n+// Minimal test for validators benchmarks. This makes sure the benchmarks aren't\n // completely broken but nothin...
2025-09-23T15:22:19
electron/electron
61c245761cadbc0847f19b017b220e1d36cdcb42
7c55b24be25d6df7ee6de51bdbec4c8215425273
test: fix nan tests on macOS (#47583)
[ { "path": "script/nan-spec-runner.js", "patch": "@@ -46,20 +46,23 @@ async function main () {\n const platformFlags = [];\n if (process.platform === 'darwin') {\n const sdkPath = path.resolve(BASE, 'out', outDir, 'sdk', 'xcode_links');\n- const sdks = (await fs.promises.readdir(sdkPath)).filter(f...
2025-06-29T19:57:44
vercel/next.js
ef6ac79d0b4cfb0055ee1aa9b1f30bdc144c297f
a4c1a0cd72e0cfbe4d62fe244364a98fa209d463
feat: detect @typescript/native-preview as alternative TypeScript compiler (#89149) ## What? This PR adds support for detecting `@typescript/native-preview` as an alternative TypeScript compiler. When installed, Next.js will no longer automatically install the `typescript` package. ## Why? Fixes #88580 Users who w...
[ { "path": "packages/next/src/lib/verify-typescript-setup.ts", "patch": "@@ -2,7 +2,10 @@ import { bold, cyan, red, yellow } from './picocolors'\n import path, { join } from 'path'\n \n import { hasNecessaryDependencies } from './has-necessary-dependencies'\n-import type { NecessaryDependencies } from './has...
2026-01-30T23:38:14
nodejs/node
d3ee5d9b2bc48643b16f87f4a55e198e751260d5
3312e4e946795dab00ccbab093f8b9897a355c7a
doc: fix typo of built-in module specifier in worker_threads node:: -> node: PR-URL: https://github.com/nodejs/node/pull/59992 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -1990,10 +1990,10 @@ worker.on('online', async () => {\n `await using` example.\n \n ```cjs\n-const { Worker } = require('node::worker_threads');\n+const { Worker } = require('node:worker_threads');\n \n const w = new Worker(`\n- const { parentPort } = re...
2025-09-25T15:31:20
facebook/react
2a911f27dd99c46778c27ba004f9d8fe898efd21
18ee505e7791f2bb55f0e520667c51588df7ba48
[Flight] Send the awaited Promise to the client as additional debug information (#33592) Stacked on #33588, #33589 and #33590. This lets us automatically show the resolved value in the UI. <img width="863" alt="Screenshot 2025-06-22 at 12 54 41 AM" src="https://github.com/user-attachments/assets/a66d1d5e-0513-4767-9...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -33,12 +33,22 @@ function Foo({children}) {\n return <div>{children}</div>;\n }\n \n+async function delayedError(text, ms) {\n+ return new Promise((_, reject) =>\n+ setTimeout(() => reject(new Error(text)), ms)\n+ );\n+}\n+\n async function delay(t...
2025-06-23T14:12:45
golang/go
a33bbf1988685215cdf300feb47d2e356e459b3e
a88a96330f312d08f5d191c66a463b165ac1b96d
weak: fix weak pointer test to correctly iterate over weak pointers after GC This change fixes a bug in the weak pointer test where the loop was attempting to iterate over a nil slice (bt) instead of the weak pointer slice (wt). After setting bt to nil and running GC, the test should iterate over the weak pointers to...
[ { "path": "src/weak/pointer_test.go", "patch": "@@ -110,7 +110,7 @@ func TestPointerEquality(t *testing.T) {\n \tbt = nil\n \t// bt is no longer referenced.\n \truntime.GC()\n-\tfor i := range bt {\n+\tfor i := range wt {\n \t\tst := wt[i].Value()\n \t\tif st != nil {\n \t\t\tt.Fatalf(\"expected weak pointe...
2025-11-24T06:38:30
electron/electron
4dccccadbb9b011d3a212cfbc592eb2d0ed81aad
79cd6a261415c3a60b1b52d79f6e2c21d68398d0
chore: bump node to v22.17.0 (main) (#47557) * chore: bump node in DEPS to v22.17.0 * build: use //third_party/simdutf by default in GN https://github.com/nodejs/node/pull/58115 * chore: adjust crypto specs: - https://github.com/nodejs/node/pull/58117 - https://github.com/nodejs/node/pull/58387 * deps: update lib...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '139.0.7256.0',\n 'node_version':\n- 'v22.16.0',\n+ 'v22.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-06-28T14:33:09
nodejs/node
e4e86ea3ef8c6800d3bb52c461e6f98a491a4973
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
typings: update 'types' binding - Adds: - isGeneratorObject - isProxy - isSharedArrayBuffer - isSymbolObject - Removes: - isTypedArray - Fixes: - isDate - isNativeError - isRegExp - Improves: - isArgumentsObject - isExternal PR-URL: https://github.com/nodejs/node/pull/59692 Reviewed-By: Daeyeon Je...
[ { "path": "src/node_types.cc", "patch": "@@ -14,31 +14,31 @@ namespace node {\n namespace {\n \n #define VALUE_METHOD_MAP(V) \\\n- V(External) \\\n- V(Date) ...
2025-09-24T14:11:47
vercel/next.js
f9173727f7ed4913133ffb58db60e09f768e5d70
bb41cbd6ee5516b95030c2d7921fa7aa98527850
[test] Deflake `browser-log-forwarding verbose level` test suite (#89324) [flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22browser-log-forwarding%20verbose%20level%20should%20forward%20all%20logs%20to%20te...
[ { "path": "test/development/app-dir/browser-log-forwarding/fixtures/verbose-level/verbose-level.test.ts", "patch": "@@ -12,10 +12,10 @@ describe('browser-log-forwarding verbose level', () => {\n \n await retry(() => {\n const output = next.cliOutput.slice(outputIndex)\n- expect(output).toCont...
2026-01-30T23:07:14
facebook/react
18ee505e7791f2bb55f0e520667c51588df7ba48
1d1b26c701893f4821ebdc6547bcd1efc392f679
[Flight] Support classes in renderDebugModel (#33590) This adds better support for serializing class instances as Debug values. It adds a new marker on the object `{ "": "$P...", ... }` which indicates which constructor's prototype to use for this object's prototype. It doesn't encode arbitrary prototypes and it does...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1430,6 +1430,17 @@ function createFormData(\n return formData;\n }\n \n+function applyConstructor(\n+ response: Response,\n+ model: Function,\n+ parentObject: Object,\n+ key: string,\n+): void {\n+ Object.setPrototypeOf(parentO...
2025-06-22T22:00:08
rust-lang/rust
e897b4ea51835a9fae8bb12766363e7b55b41838
bfc05d6b072585dfd0c792ec1b8728c08a3511fe
tests/ui/async-await/drop-option-future.rs: New regression test The test began compiling with `nightly-2022-11-25`, and more specifically 9f36f988ad873f5. The test fails to compile with `nightly-2022-11-24`: $ rustc +nightly-2022-11-24 --edition 2018 tests/ui/async-await/drop-option-future.rs error[E0597]: `v...
[ { "path": "tests/ui/async-await/drop-option-future.rs", "patch": "@@ -0,0 +1,16 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/98077>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(dead_code)]\n+#![allow(unused_assignments)]\n+\n+async fn foo() {\n+ let mut f = None;\n+ ...
2026-03-20T19:56:17
nodejs/node
8ca5fec567a38119ffc21e9e9e1904b2c2cc1a7e
4f4d5b348c89aad13da3b435c4c11ee882601ec7
timers: fix binding fast call signatures PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/timers.cc", "patch": "@@ -53,9 +53,8 @@ void BindingData::SlowScheduleTimer(const FunctionCallbackInfo<Value>& args) {\n }\n }\n \n-void BindingData::FastScheduleTimer(Local<Object> unused,\n- Local<Object> receiver,\n- i...
2025-07-13T20:38:50
electron/electron
79cd6a261415c3a60b1b52d79f6e2c21d68398d0
2ba8fe914056452ec6f8b949ab2844afac59e73c
refactor: sync IsKillURL() with upstream impl in extension_tab_util.cc (#47580) Use base::MakeFixedFlatSet()
[ { "path": "shell/browser/extensions/api/tabs/tabs_api.cc", "patch": "@@ -11,7 +11,7 @@\n #include <vector>\n \n #include \"base/command_line.h\"\n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/strings/pattern.h\"\n #include \"base/types/expected_ma...
2025-06-27T20:49:41
vercel/next.js
bb41cbd6ee5516b95030c2d7921fa7aa98527850
cf7cfe27ecbfdec8ae95188bc16685772a2b2945
Apply server actions transform to `node_modules` in route handlers (#89316) The server actions transform, which handles the `'use cache'` directive, was not being applied to `node_modules` when imported from route handlers. This caused `'use cache'` functions from dependencies to fail with errors like `"cacheLife() ca...
[ { "path": "crates/next-core/src/next_server/context.rs", "patch": "@@ -859,6 +859,7 @@ pub async fn get_server_module_options_context(\n \n next_server_rules.extend(common_next_server_rules.iter().cloned());\n internal_custom_rules.extend(common_next_server_rules);\n+ fore...
2026-01-30T23:03:29
rust-lang/rust
577dba9093034117b63e4c29147d29ceae1c32c6
1e2183119f0ee19cc26df899e26b04ad0de3475d
Skip stack_start_aligned for immediate-abort This improves startup performance by 16%, shown by an optimized hello-world program. glibc's `pthread_getattr_np` performs expensive syscalls when reading `/proc/self/maps`. That is all wasted with `panic = immediate-abort` active because `init()` immediately discards the r...
[ { "path": "library/std/src/sys/pal/unix/stack_overflow.rs", "patch": "@@ -429,6 +429,11 @@ mod imp {\n \n #[forbid(unsafe_op_in_unsafe_fn)]\n unsafe fn install_main_guard_linux(page_size: usize) -> Option<Range<usize>> {\n+ // See the corresponding conditional in init().\n+ // Avoid st...
2026-03-16T02:00:52
facebook/react
1d1b26c701893f4821ebdc6547bcd1efc392f679
fe3f0ec0374b7323bf259e4154eb4ee739caac7b
[Flight] Serialize already resolved Promises as debug models (#33588) We already support serializing the values of instrumented Promises as debug values such as in console logs. However, we don't support plain native promises. This waits a microtask to see if we can read the value within a microtask and if so emit it...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -155,6 +155,7 @@ const RESOLVED_MODEL = 'resolved_model';\n const RESOLVED_MODULE = 'resolved_module';\n const INITIALIZED = 'fulfilled';\n const ERRORED = 'rejected';\n+const HALTED = 'halted'; // DEV-only. Means it never resolves eve...
2025-06-22T21:51:31
nodejs/node
4f4d5b348c89aad13da3b435c4c11ee882601ec7
5ac6ee7716d7694fe4afd75f579837660445f36b
wasi: fix WasiFunction fast call signature PR-URL: https://github.com/nodejs/node/pull/59600 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_wasi.cc", "patch": "@@ -266,7 +266,6 @@ inline void EinvalError() {}\n \n template <typename FT, FT F, typename R, typename... Args>\n R WASI::WasiFunction<FT, F, R, Args...>::FastCallback(\n- Local<Object> unused,\n Local<Object> receiver,\n Args... args,\n // NOLINTNEXTL...
2025-07-13T20:23:11
electron/electron
7a274a711cf28bfc569c1d4c07f8c8bb329de0d9
bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d
fix: revert upstream MacOS mouse event routing (#47560) * fix: revert upstream MacOS mouse event routing * fix: reduce patch surface area * chore: update patches
[ { "path": "patches/chromium/.patches", "patch": "@@ -133,3 +133,4 @@ fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n revert_views_remove_desktopwindowtreehostwin_window_enlargement.patch\n+build_par...
2025-06-26T09:41:11
rust-lang/rust
3b27a3660185f7644e1fbf1582637947e36036fa
d48e699b6cdcf76590a141ccf9fde84adb297176
Suggest appropriate spaces around `=` in `let` binding parse error
[ { "path": "compiler/rustc_parse/src/parser/stmt.rs", "patch": "@@ -1133,11 +1133,11 @@ impl<'a> Parser<'a> {\n } else {\n false\n };\n- if suggest_eq {\n+ ...
2026-03-20T19:45:29