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
golang/go
fdf3bee34261f383e394a06b1e4cf87fff684c1b
0856d46fd1f5d882e9033af813b0e2acfc31889f
net: treat EPERM/EACCES in IPv6 probe as supported When a BPF/seccomp filter denies the bind in the IPv6 capability probe with EPERM or EACCES, the probe incorrectly reports IPv6 as unsupported even though socket creation and setsockopt succeeded. This causes Listen on [::] to silently fall back to IPv4-only. Treat E...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -70,7 +70,13 @@ func (p *ipStackCapabilities) probe() {\n \t\t\tcontinue\n \t\t}\n \t\tif err := syscall.Bind(s, sa); err != nil {\n-\t\t\tcontinue\n+\t\t\t// If the bind was denied by a security policy (BPF, seccomp,\n+\t\t\t// SELinux, etc.), the kernel st...
2026-02-07T19:39:15
facebook/react
a757cb76671863071cf3672401ce1cbdcf040a85
d74f061b6908e4841b2eb09c296ca4658dbdd38e
Fix DevTools fixture crash due to usage of renamed APIs (#34682)
[ { "path": "packages/react-devtools-shell/src/app/InspectableElements/UseEffectEvent.js", "patch": "@@ -1,6 +1,8 @@\n import * as React from 'react';\n \n-const {experimental_useEffectEvent, useState, useEffect} = React;\n+const {useState, useEffect} = React;\n+const useEffectEvent =\n+ React.useEffectEvent...
2025-10-02T12:43:02
vercel/next.js
1ead596c5189720ace061f4760a814dc2e76baaf
3ba53df7463a7226eccb6952e13773080b12dd6a
Turbopack: don't panic due to eventual consistency in module merging (#91088) Turn into bail to handle eventual consistency more gracefully
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -1525,16 +1525,17 @@ async fn merge_modules(\n }\n };\n \n- debug_assert!(\n- inserted.len() == contents.len(),\n- \"Not all merged modules were inserted: {:?}\",\n- contents\n- .iter()\...
2026-03-09T09:21:03
rust-lang/rust
750e57819573e16cb6c6578e41d0cbb547e4e5f8
c07baa4cc921e5606ae9ef846b8c187d65bf9c83
clippy_dev/new_lint: fix path to the file where MSRVs reside
[ { "path": "clippy_dev/src/new_lint.rs", "patch": "@@ -319,7 +319,7 @@ fn get_lint_file_contents(lint: &LintData<'_>, enable_msrv: bool) -> String {\n \n impl {pass_type}{pass_lifetimes} for {name_camel} {{{extract_msrv}}}\n \n- // TODO: Add MSRV level to `clippy_config/src/msrvs.rs` i...
2026-04-02T19:24:00
facebook/react
d74f061b6908e4841b2eb09c296ca4658dbdd38e
f7254efc5c43ebae57afa32a52d4653878ef23d0
[Fiber] Clean up ViewTransition when it fails to start (#34676) The View Transition docs were unclear about this but apparently the `finished` promise never settles if the animation never started. So if there's an error that rejects the `ready` promise, we'll never run the clean up which can cause it to stall. Fixes ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2279,6 +2279,11 @@ export function startViewTransition(\n spawnedWorkCallback();\n };\n const handleError = (error: mixed) => {\n+ // $FlowFixMe[prop-missing]\n+ if (ownerDocument.__reactViewTran...
2025-10-02T01:58:13
electron/electron
e033c1007562eb3b79ef827a7e797848dfe93e10
64872a6cb8572f15af8a6ce43a6b6cb852195ec7
fix: issues with xdg activation on Linux (#49499)
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -7,7 +7,9 @@\n #include <fcntl.h>\n \n #include <stdio.h>\n+#include <memory>\n #include <optional>\n+#include <queue>\n #include <string>\n #include <vector>\n \n@@ -27,8 +29,13 @@\n #include \"base/run_loop.h\"\n #include \"base/strings/escape....
2026-01-30T15:53:04
golang/go
0856d46fd1f5d882e9033af813b0e2acfc31889f
a7958c664fbb6c292783372a1bc6d2997f17d604
doc/go_spec: add max and min to forbidden expression statements list The expression statements section omitted max and min from the list of built-ins that are not permitted in statement context. Fixes #77896 Change-Id: I1f3d4b1d2465bde156ff751a9a7b5a212509e9a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/7...
[ { "path": "doc/go_spec.html", "patch": "@@ -6046,7 +6046,7 @@ <h3 id=\"Expression_statements\">Expression statements</h3>\n </p>\n \n <pre>\n-append cap complex imag len make new real\n+append cap complex imag len make max min new real\n unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice u...
2026-03-03T06:01:06
rust-lang/rust
35693778e81a0e94e13a5a48809657c6b05f7f42
e6b64a2f4c696b840f8a384ec28690eed6a5d267
Fix ICE in unsafe binder discriminant queries Forward discriminant-related queries through `ty::UnsafeBinder` to the erased inner type, matching the existing layout behavior.
[ { "path": "compiler/rustc_middle/src/ty/sty.rs", "patch": "@@ -1630,6 +1630,9 @@ impl<'tcx> Ty<'tcx> {\n TyKind::Coroutine(def_id, args) => {\n Some(args.as_coroutine().variant_range(*def_id, tcx))\n }\n+ TyKind::UnsafeBinder(bound_ty) => {\n+ ...
2026-04-02T15:15:28
vercel/next.js
3ba53df7463a7226eccb6952e13773080b12dd6a
5e965bbb2d85a851c84b9c5ee20c34ff2814021f
Fix pr-status script missing failed jobs on page 2+ of API results (#91087) ## Summary `getFailedJobs()` in `scripts/pr-status.js` used jq's `select(.conclusion == "failure")` filter during GitHub API pagination. When a page had 100 jobs but none were failures, jq returned empty output, and the `if (!output.trim()) b...
[ { "path": "scripts/pr-status.js", "patch": "@@ -217,34 +217,14 @@ function getRunMetadata(runId) {\n }\n \n function getFailedJobs(runId) {\n- const failedJobs = []\n- let page = 1\n-\n- while (true) {\n- const jqQuery = '.jobs[] | select(.conclusion == \"failure\") | {id, name}'\n- let output\n- ...
2026-03-09T09:20:47
facebook/react
f7254efc5c43ebae57afa32a52d4653878ef23d0
79ca5ae8557e903f225c9ae61fa4db981ac87dfa
[playground] Persist open tabs on compiler error (#34673) This change allows it so that tabs that were open before a compiler error are automatically opened again when the error is resolved. Quality of life change for those especially working with the advanced view of the playground. https://github.com/user-attachme...
[ { "path": "compiler/apps/playground/components/AccordionWindow.tsx", "patch": "@@ -23,6 +23,7 @@ export default function AccordionWindow(props: {\n tabsOpen: Set<string>;\n setTabsOpen: (newTab: Set<string>) => void;\n changedPasses: Set<string>;\n+ isFailure: boolean;\n }): React.ReactElement {\n ...
2025-10-02T01:26:16
electron/electron
64872a6cb8572f15af8a6ce43a6b6cb852195ec7
d74fcfcecb3f99c98def1b8b6bbb23b6bd59ea68
fix: macOS menu item accelerators when item disabled (#49553) fix: macOS menu item acceerators when item disabled
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -484,8 +484,11 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n if (index < 0 || index >= count)\n return;\n \n+ // When the menu is closed, we need to allow shortcuts to be triggered even\n+ // if the menu item is dis...
2026-01-30T09:07:16
rust-lang/rust
edb93228ce910aa1073c42d4ef4807c983968df1
eb20cada00d0623dc0fd367e24f29384d29c472a
fix doc in rustc_attr_parsing::context
[ { "path": "compiler/rustc_attr_parsing/src/context.rs", "patch": "@@ -399,11 +399,11 @@ impl Stage for Late {\n }\n }\n \n-/// used when parsing attributes for miscellaneous things *before* ast lowering\n+/// Used when parsing attributes for miscellaneous things *before* ast lowering\n pub struct Early ...
2026-04-02T13:52:23
vercel/next.js
5e965bbb2d85a851c84b9c5ee20c34ff2814021f
fda324e206c6d364af11864d7cd6088b0292202a
Add script to patch project with preview tarball URLs (#91057) ### What? Adds a new script `scripts/patch-preview-tarball.mjs` that patches a target project's `package.json` to use Next.js preview tarballs from `vercel-packages.vercel.app`. ### Why? When testing unreleased Next.js changes against external projects ...
[ { "path": "scripts/patch-preview-tarball.mjs", "patch": "@@ -0,0 +1,233 @@\n+import { execSync } from 'node:child_process'\n+import fs from 'node:fs/promises'\n+import path from 'node:path'\n+import { parseArgs } from 'node:util'\n+\n+const BASE_URL = 'https://vercel-packages.vercel.app/next/commits'\n+\n+c...
2026-03-09T09:13:48
golang/go
a7958c664fbb6c292783372a1bc6d2997f17d604
1a0e1fb616c997ffdb10b30a1c51397d803616da
time: mention Reset in Ticker.Stop doc Fixes #72968 Change-Id: Ia7bab559738ff66e19a030e031c157d344a35036 Reviewed-on: https://go-review.googlesource.com/c/go/+/659695 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Revi...
[ { "path": "src/time/tick.go", "patch": "@@ -47,8 +47,9 @@ func NewTicker(d Duration) *Ticker {\n }\n \n // Stop turns off a ticker. After Stop, no more ticks will be sent.\n-// Stop does not close the channel, to prevent a concurrent goroutine\n-// reading from the channel from seeing an erroneous \"tick\"....
2025-03-20T18:35:23
rust-lang/rust
69148fd1900f0d2cbbb02a8ffed38b4ad014565b
b3b29ede805f7865f4d1e48f01219cabbb0ede4b
add mgca fixme
[ { "path": "compiler/rustc_next_trait_solver/src/solve/assembly/mod.rs", "patch": "@@ -1335,6 +1335,7 @@ where\n TypeFlags::HAS_PLACEHOLDER | TypeFlags::HAS_INFER | TypeFlags::HAS_ALIAS,\n ) =>\n {\n+ // FIXME(mgca): we should also check the recursion li...
2026-04-02T10:33:14
electron/electron
d74fcfcecb3f99c98def1b8b6bbb23b6bd59ea68
92a3f7d6c104dc98956bf2a12e226e358a9ee0ee
feat: msix auto-updater (#49230) * feat: native auto updater for MSIX on Windows * doc: added MSIX debug documentation * fix: allow downgrade with json release file and emit update-available * test: msix auot-update tests * doc: API documentation * test: add package version validation * fix: docs typo * fix: do...
[ { "path": "docs/api/auto-updater.md", "patch": "@@ -32,9 +32,19 @@ update process. Apps that need to disable ATS can add the\n \n ### Windows\n \n-On Windows, you have to install your app into a user's machine before you can\n-use the `autoUpdater`, so it is recommended that you use\n-[electron-winstaller][...
2026-01-29T21:38:26
golang/go
aa80d7a7e6bf97aa27a74cc5056ef270a2a0c2f4
ba057f7950f93a7cbd249ad79ed763a526a9cbbf
cmd/compile, simd/archsimd: add VPSRL immeidate peepholes Before this CL, the simdgen contains a sign check to selectively enable such rules for deduplication purposes. This left out `VPSRL` as it's only available in unsigned form. This CL fixes that. It looks like the previous documentation fix to SHA instruction mi...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -1067,14 +1067,23 @@\n (ShiftAllRightInt64x8 ...) => (VPSRAQ512 ...)\n (VPSRAQ512 x (MOVQconst [c])) => (VPSRAQ512const [uint8(c)] x)\n (ShiftAllRightUint16x8 ...) => (VPSRLW128 ...)\n+(VPSRLW128 x (MOVQconst [c])) => (VPSRLW128cons...
2026-02-24T22:34:44
facebook/react
7f9d99749c95d69b23efaa328c4388d73a39bf50
aef8b1b562ed7db87ae9552e44168a54af84aaf8
Land enableHiddenSubtreeInsertionEffectCleanup (#34372) Fixes a bug where insertion effects were not cleaned up if a hidden Activity is unmounted.
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -166,7 +166,7 @@ export const renameElementSymbol: boolean = true;\n /**\n * Enables a fix to run insertion effect cleanup on hidden subtrees.\n */\n-export const enableHiddenSubtreeInsertionEffectCleanup: boolean = false;\n+export const enabl...
2025-10-01T20:31:30
vercel/next.js
60f903c7664b4c3f2fe66c1125cbdf369c5e6a20
1287f9a02737e664bcc7c2460983f4d7e85fdd41
Improve webpack loader error messages and handling (#89698) ## What? This PR improves error reporting for webpack loaders by: 1. **Preserving loader paths in error messages**: Modified the webpack message formatter to rewrite "Module build failed" headers to preserve the loader path information while removing the ve...
[ { "path": "packages/next/src/shared/lib/format-webpack-messages.ts", "patch": "@@ -86,9 +86,20 @@ function formatMessage(\n }\n let lines = message.split('\\n')\n \n- // Strip Webpack-added headers off errors/warnings\n+ // Extract loader paths from Webpack-added headers and move them to end.\n+ // O...
2026-03-09T09:11:54
golang/go
ba057f7950f93a7cbd249ad79ed763a526a9cbbf
cc1241f353abbac2df2baf7abe09506be27782e8
cmd/compile: add concurrency-ok property to some compiler debug flags The property was missing from some flags that we potentially care about. This change only affects flags supplied in the command line (not explicitly changed within the compiler) but nonetheless it seems like a good idea to get them right -- we migh...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -12,6 +12,8 @@ var Debug DebugFlags\n // DebugFlags defines the debugging configuration values (see var Debug).\n // Each struct field is a different value, named for the lower-case of the field name.\n // Each field must be an int or string a...
2022-11-22T21:59:43
electron/electron
92a3f7d6c104dc98956bf2a12e226e358a9ee0ee
0e161c18eb8e3ec227bf3a90c01ba2683bf86842
ci: add workflow for commenting with new 'ai-pr' label (#49564) * add workflow for commenting with new 'ai-pr' label * Update .github/workflows/pull-request-labeled.yml Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * add pr autoclose * replace with specific secret Co-authored-by: David Sanders <dsanders...
[ { "path": ".github/workflows/pull-request-labeled.yml", "patch": "@@ -44,3 +44,34 @@ jobs:\n project-number: 94\n field: Status\n field-value: ✅ Reviewed\n+ pull-request-labeled-ai-pr:\n+ name: ai-pr label added\n+ if: github.event.label.name == 'ai-pr'\n+ runs-on: ub...
2026-01-29T18:12:42
facebook/react
67e24bc5279204108b749fe48b4d395ef9e49e67
bbc2d596fa48b64d359b96e167403693caaaabd9
Improve lint error messages for useEffectEvent (#34669) Called Before: > `logEvent` is a function created with React Hook "useEffectEvent", and can only be called from the same component. Called After: > `logEvent` is a function created with React Hook "useEffectEvent", and can only be called from Effects and Effec...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -1637,17 +1637,32 @@ const allTests = {\n const onClick = useEffectEvent(() => {\n showNotification(theme);\n });\n+ // error message 1\n const onClick2 = () =...
2025-10-01T19:17:08
vercel/next.js
1287f9a02737e664bcc7c2460983f4d7e85fdd41
34d0bcb94234db1615662cc77a5204f3a6d22cb5
Turbopack: show specific SWC error messages as error titles (#91022) ### What? Changes Turbopack's error overlay to show specific SWC diagnostic messages as the error title instead of generic messages like "Parsing ecmascript source code failed" or "Ecmascript file had an error". ### Why? Previously, all SWC parse/...
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -281,11 +281,11 @@ describe('ReactRefreshLogBox app', () => {\n if (isTurbopack) {\n await expect(browser).toDisplayRedbox(`\n {\n- \"description\": \"Parsing ecmascript source code failed\",\n+ ...
2026-03-09T07:00:37
golang/go
cc1241f353abbac2df2baf7abe09506be27782e8
a5f474fc062a3b9140febc802b6cc38cbebdd973
runtime: fix printfloat, printcomplex buffer sizes The buffers added in CL 716002 for printfloat64 and printcomplex128 are too small to fit the longest formatted values. For values that are too long, AppendFloat allocates, which may cause a crash for prints in places in the runtime where allocation is not allowed. Fi...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2084,6 +2084,24 @@ func DumpPrintQuoted(s string) string {\n \treturn string(buf)\n }\n \n+// DumpPrint returns the output of print(v).\n+func DumpPrint[T any](v T) string {\n+\tgp := getg()\n+\tgp.writebuf = make([]byte, 0, 2048)\n+\tprint(v)\n+\tbuf :=...
2026-02-27T19:57:48
rust-lang/rust
3d55f38a7f40c71b07283efc204fa8c658d2201b
80ad55752e5ae6c2d1bc143b819eb8d1c00167d1
fix compilation of time/hermit.rs https://github.com/rust-lang/rust/pull/154518 has broken compiling std for Hermit by unwrapping an `i32`. This commit converts the `i32` to an `io::Result` before unwrapping.
[ { "path": "library/std/src/sys/time/hermit.rs", "patch": "@@ -1,12 +1,13 @@\n use hermit_abi::{self, CLOCK_MONOTONIC, CLOCK_REALTIME};\n \n use crate::io;\n+use crate::sys::cvt;\n use crate::sys::pal::time::Timespec;\n use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespe...
2026-04-02T08:37:15
electron/electron
82d350524e181241b2437e914a794c5ab13a48f0
e6be04a7a0774eae527f5aba981c4ab7eaeabc74
test: fix flaky `BrowserView` test (#49316) * test: fix flaky BrowserWindow test * fix: improved as per review
[ { "path": "spec/api-browser-view-spec.ts", "patch": "@@ -90,7 +90,7 @@ describe('BrowserView module', () => {\n w.show();\n w.setBounds(display.bounds);\n w.setBackgroundColor(WINDOW_BACKGROUND_COLOR);\n- await w.loadURL('about:blank');\n+ await w.loadURL('data:text/html,<html></...
2026-01-28T19:54:35
facebook/react
1f460f31ee277c4f62d352bbad48977b976ad8a8
2f0649a0b27516eaab549b18af15eed0420e3446
[DevTools] Fix host instance highlighting (#34661)
[ { "path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -115,7 +115,7 @@ export default function setupHighlighter(\n const nodes = renderer.findHostInstancesForElementID(id);\n if (nodes != null) {\n for (let i = 0; i < nodes.length; i++) {\n- con...
2025-10-01T15:32:34
vercel/next.js
b7b58b22117807d3695285579ba334d4d1313118
6155ca1722c8a1b4197bfa23638dea99aa3587d0
Fix next-routing header interpolation (#91010) ## Summary - interpolate source and `has` captures in `@next/routing` route headers anywhere destinations are already interpolated - make `onMatch` headers respect route matching and capture interpolation instead of applying unconditionally - keep middleware and initial r...
[ { "path": "packages/next-routing/src/__tests__/captures.test.ts", "patch": "@@ -563,6 +563,137 @@ describe('Has Condition Captures in Destination', () => {\n expect(result.redirect).toBeDefined()\n expect(result.redirect?.url.pathname).toBe('/es/home')\n })\n+\n+ it('should interpolate source and...
2026-03-07T02:53:48
golang/go
a5f474fc062a3b9140febc802b6cc38cbebdd973
094aacdb047e716ea5598514222bc8c70843d49e
runtime: skip futex_time64 and timer_settime64 on 32-bit Android In Android versions 8.0-10 (API levels 26-29), futex_time64 and timer_settime64 are not in the allowlist of the seccomp filter and will lead to a runtime crash. Fixes #77621 Change-Id: I99607d7128c395edf93738440c2928b6819d8a21 Reviewed-on: https://go-r...
[ { "path": "src/runtime/os_linux32.go", "patch": "@@ -21,7 +21,12 @@ var isFutexTime32bitOnly atomic.Bool\n \n //go:nosplit\n func futex(addr unsafe.Pointer, op int32, val uint32, ts *timespec, addr2 unsafe.Pointer, val3 uint32) int32 {\n-\tif !isFutexTime32bitOnly.Load() {\n+\t// In Android versions 8.0-10 ...
2026-02-27T18:01:24
facebook/react
7bccdbd765f03254658da9086e9c5763842aa3ed
5667a41fe4d81aa806f6c1e8814b17975e33b317
Fix "Consecutive" Event Logs in Performance Track (#34659) Reset EventTime when clearing timers. We need to track repeat updates separately. Typically we always reset all timers when we've logged an update. The same update shouldn't be logged again. I was trying to be clever and not reset the XEventTime because we a...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -281,7 +281,7 @@ import {\n blockingUpdateComponentName,\n blockingEventTime,\n blockingEventType,\n- blockingEventIsRepeat,\n+ blockingEventRepeatTime,\n blockingSuspendedTime,\n gestureClampTime,\n gestureUpdateTim...
2025-10-01T14:53:08
golang/go
a6a4a41e225096a2599762d95af9c32d944a15e2
5c595a811eec69761f288b0affeeacdcaf1e5e86
all: test: remove unneeded loop variables This CL follows from the abandoned CL 722961. Alan Donovan asked if modernize would catch these changes; it does in part. Here is how modernize was used: 1. Build the Go compiler from latest master 2. Clone x/tools and build modernize with the newest compiler 3. Then, do: ...
[ { "path": "src/cmd/api/api_test.go", "patch": "@@ -232,7 +232,6 @@ var warmupCache = sync.OnceFunc(func() {\n \t// Warm up the import cache in parallel.\n \tvar wg sync.WaitGroup\n \tfor _, context := range contexts {\n-\t\tcontext := context\n \t\twg.Add(1)\n \t\tgo func() {\n \t\t\tdefer wg.Done()", "...
2026-02-24T01:22:37
electron/electron
e6be04a7a0774eae527f5aba981c4ab7eaeabc74
a7de47084bbd03e921df58a2e50ac01e72fb597a
fix: chrome://accessibility drift (#49547) https://chromium-review.googlesource.com/c/chromium/src/+/6870052
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -49,6 +49,10 @@\n #include \"ui/views/widget/widget.h\"\n #include \"ui/views/widget/widget_delegate.h\"\n \n+#if BUILDFLAG(IS_WIN)\n+#include \"ui/accessibility/platform/ax_platform_node_win.h\"\n+#endif\n+\n namespace {\n \n constexpr st...
2026-01-28T11:07:14
vercel/next.js
6155ca1722c8a1b4197bfa23638dea99aa3587d0
65fe53d421d0a8c73975c9c28c6fae93f3a41d6e
docs: large page data error (#90920) <!-- CURSOR_AGENT_PR_BODY_BEGIN --> <!-- 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:...
[ { "path": "errors/large-page-data.mdx", "patch": "@@ -4,18 +4,48 @@ title: Large Page Data\n \n ## Why This Error Occurred\n \n-One of your pages includes a large amount of page data (>= 128kB). This can negatively impact performance since page data must be parsed by the client before the page is hydrated.\...
2026-03-07T00:53:53
golang/go
d51d4d75a67a5c0228ed55107a809f8f377c5949
425a88193ca39e82dc3dbcae22b98dbdfd98a04c
cmd/compile: (wasm) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: Ia5233c2b6c5f4439e269950efdd851e72e8e7ff6 Reviewed-on: https://go-review.googlesource.com/c/go/+/730160 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -349,6 +349,9 @@\n (Abs ...) => (F64Abs ...)\n (Copysign ...) => (F64Copysign ...)\n \n+(F32DemoteF64 (F64(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) (F64PromoteF32 x))) => (F32(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) x)\n+(F32DemoteF64 (F64Copysign ...
2025-12-11T19:27:10
rust-lang/rust
c9d3a00cd1a0a445a4563fd2ff3a7677cc783e1d
7e46c5f6fb87f8cf4353e058479cef15d1d952b4
Revert "Fix: On wasm targets, call `panic_in_cleanup` if panic occurs in cleanup" This reverts commit acbfd79acf662be04745dc0675558e75e0d30d87.
[ { "path": "compiler/rustc_codegen_gcc/src/builder.rs", "patch": "@@ -1656,10 +1656,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n unimplemented!();\n }\n \n- fn get_funclet_cleanuppad(&self, _funclet: &Funclet) -> RValue<'gcc> {\n- unimplemented!();\...
2026-04-02T02:29:42
facebook/react
a55e98f738f4a7ab7196a4c4210cbc6e82ec9b0c
063394cf821e5082e834c72ffb9cf6f8575c9b34
[playground] ViewTransition on internals toggle & tab expansion (#34597) <!-- 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 submitting a p...
[ { "path": "compiler/apps/playground/components/AccordionWindow.tsx", "patch": "@@ -6,7 +6,14 @@\n */\n \n import {Resizable} from 're-resizable';\n-import React, {useCallback} from 'react';\n+import React, {\n+ useCallback,\n+ useId,\n+ unstable_ViewTransition as ViewTransition,\n+ unstable_addTransiti...
2025-09-30T19:25:10
vercel/next.js
c7df8e99205e1f84c4d27ffaee55a4137f76e308
d843c9f11364a4899d5ee253f9e291cba5c456fb
fix: trigger MPA navigation for server action redirects with build ID mismatch (#89946) ## Summary - Fixes cross-zone server action redirect failure where `redirect()` inside a server action produces a blank page when the target path is served by a different Next.js zone (separate Vercel project, same domain) - Adds ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -1251,7 +1251,9 @@ export async function handler(\n // Set the build ID header for RSC navigation requests when deploymentId is configured. This\n // corresponds with maybeAppendBuildIdToRSCPayload in app-render.tsx which om...
2026-03-06T22:17:36
rust-lang/rust
23b1e78028a57a55acffb93588dcba4cbf3457a3
3888a633b7d594dc77c63854daaa7ef5f754b7d4
rustdoc: When collecting `Deref` impls with their targets, skip the negative ones rustdoc assumed every `Deref` impl has an associated `Target` type, but negative impls (e.g. `impl !Deref for T {}`) have none. Skip them in both the trait-impl collection pass and the HTML render pass to avoid panicking on the missing T...
[ { "path": "src/librustdoc/html/render/mod.rs", "patch": "@@ -1517,8 +1517,9 @@ fn render_assoc_items_inner(\n }\n \n if !traits.is_empty() {\n- let deref_impl =\n- traits.iter().find(|t| t.trait_did() == cx.tcx().lang_items().deref_trait());\n+ let deref_impl = traits.iter()...
2026-03-26T22:05:05
golang/go
425a88193ca39e82dc3dbcae22b98dbdfd98a04c
7336381cd16f81b7e34a8e8592a200b916989988
cmd/compile: (arm64) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: Ifca03975023e4e5d0ffa98d1f877314a1a291be0 Reviewed-on: https://go-review.googlesource.com/c/go/+/729161 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keit...
[ { "path": "src/cmd/compile/internal/arm64/ssa.go", "patch": "@@ -963,6 +963,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tcase ssa.OpARM64MVN,\n \t\tssa.OpARM64NEG,\n \t\tssa.OpARM64FABSD,\n+\t\tssa.OpARM64FABSS,\n \t\tssa.OpARM64FMOVDfpgp,\n \t\tssa.OpARM64FMOVDgpfp,\n \t\tssa.OpARM64FMOVSfpgp...
2025-12-10T21:50:21
electron/electron
3820d3ae6c8d0da9945a999c808b0d778250088e
8364b62f681574bd5d94207a0f433aa83b6a7a74
test: fix flaky `BrowserWindow` test (#49364) test: fix flaky BrowserWindow test
[ { "path": "spec/api-browser-window-spec.ts", "patch": "@@ -6933,7 +6933,7 @@ describe('BrowserWindow module', () => {\n hasShadow: false\n });\n \n- await backgroundWindow.loadURL('about:blank');\n+ await backgroundWindow.loadURL('data:text/html,<html></html>');\n \n const fore...
2026-01-28T05:47:02
facebook/react
3580584ba2bdce17572aa356da1d6a09a2d2e3b3
319a7867d0e19481a60a6ed931a5f97ae6691572
[playground] ViewTransition on tab switch (#34596) <!-- 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 submitting a pull request, please ma...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -24,7 +24,11 @@ import BabelPluginReactCompiler, {\n printFunctionWithOutlined,\n type LoggerEvent,\n } from 'babel-plugin-react-compiler';\n-import {useDeferredValue, useMemo} from 'react';\n+import {\n+ useDeferredVal...
2025-09-29T18:40:33
vercel/next.js
a6f9167c2de0a93f7e907a6c76ca257874a2fd36
6e894cfc85f3811a6a9fdd4d84d92895a92d30c8
Bump Node heap limit for lint-no-typescript to avoid OOM in CI (#90996) The `lint` job in CI has been hitting `FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory` during `lint-eslint`. `lint-no-typescript` runs `prettier-check`, `lint-eslint .`, and `lint-language...
[ { "path": "package.json", "patch": "@@ -71,7 +71,7 @@\n \"lint-typescript\": \"turbo run typescript\",\n \"lint-eslint\": \"eslint --config eslint.cli.config.mjs\",\n \"lint-ast-grep\": \"ast-grep scan\",\n- \"lint-no-typescript\": \"run-p prettier-check \\\"lint-eslint .\\\" lint-language\",...
2026-03-06T20:05:41
golang/go
7336381cd16f81b7e34a8e8592a200b916989988
831c489f9cb9afa560ac3c5b79acc8ea5a62e414
cmd/compile: (amd64) optimize float32(round64(float64(x))) Not a fix because there are other architectures still to be done. Updates #75463. Change-Id: I3d7754ce4a26af0f5c4ef0be1254d164e68f8442 Reviewed-on: https://go-review.googlesource.com/c/go/+/729160 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1491,7 +1491,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpAMD64LoweredRound32F, ssa.OpAMD64LoweredRound64F:\n \t\t// input is already rounded\n-\tcase ssa.OpAMD64ROUNDSD:\n+\tcase ssa.OpAMD64ROUNDSD, ssa.OpAMD6...
2025-12-10T21:05:55
facebook/react
319a7867d0e19481a60a6ed931a5f97ae6691572
d15d7fd79e00fe095a70d8855562172cd46187b4
[playground] ViewTransition on config expand (#34595) <!-- 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 submitting a pull request, please...
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -23,7 +23,8 @@ function formatPrint(data: Array<string>): Promise<string> {\n \n async function expandConfigs(page: Page): Promise<void> {\n const expandButton = page.locator('[title=\"Expand config editor\"]');\n- expandButton...
2025-09-29T18:09:37
electron/electron
8364b62f681574bd5d94207a0f433aa83b6a7a74
441729c3a0b6f546382f52554e8891dbb4476a96
fix: potential dangling pointer in api::Screen (#49536) fixes a regression from #49506
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -70,16 +70,26 @@ void DelayEmitWithMetrics(Screen* screen,\n screen->Emit(name, display, metrics);\n }\n \n+// Calls the one-liner `display::Screen::Get()` to get ui's global screen.\n+// NOTE: during shutdown, that screen can be destroyed...
2026-01-27T21:27:38
nodejs/node
a5ae2b2879d9c381d21b74e5a56c3604a0458c9c
42d94e0623a02c1581b008176e4815c8ae619e5e
doc: remove Windows Dev Home instructions from BUILDING PR-URL: https://github.com/nodejs/node/pull/61434 Fixes: https://github.com/nodejs/node/issues/61424 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Michaël Zasso <targos@prot...
[ { "path": "BUILDING.md", "patch": "@@ -791,14 +791,6 @@ To install Node.js prerequisites from PowerShell Terminal:\n winget configure .\\.configurations\\configuration.dsc.yaml\n ```\n \n-Alternatively, you can use [Dev Home](https://learn.microsoft.com/en-us/windows/dev-home/)\n-to install the prerequisite...
2026-01-21T07:19:17
rust-lang/rust
7199a0bb9a730d253542d50fcf91bfeedeb5531f
cf7da0b7277cad05b79f91b60c290aa08a17a6f0
rustdoc: fix href of extern crates in search results
[ { "path": "src/librustdoc/html/render/search_index.rs", "patch": "@@ -13,6 +13,7 @@ use ::serde::{Deserialize, Serialize};\n use rustc_ast::join_path_syms;\n use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};\n use rustc_data_structures::thin_vec::ThinVec;\n+use rustc_hir::def_id::LOCAL_CRAT...
2026-04-01T20:12:16
golang/go
011e98af3b254cb78f7765aff5410fd085cf3e81
ad168c5131c83981daefdb0db8a45d1d3315c388
test: skip TestScanAllocIssue77573 with asan mode In ASAN mode, extra memory allocations alter the object size and impact the scansize computation. Skip this test when ASAN is enabled. Fixes #77857. Fixes #77858. Fixes #77859. Change-Id: I21027ff20c411a0fda7a50446b2202871baa2262 Reviewed-on: https://go-review.google...
[ { "path": "src/runtime/malloc_test.go", "patch": "@@ -854,6 +854,9 @@ func TestMkmalloc(t *testing.T) {\n }\n \n func TestScanAllocIssue77573(t *testing.T) {\n+\tif asan.Enabled {\n+\t\tt.Skip(\"extra allocations with -asan causes this to fail\")\n+\t}\n \tverifyScanAlloc := func(t *testing.T, f func(), exp...
2026-02-28T02:28:16
facebook/react
d15d7fd79e00fe095a70d8855562172cd46187b4
8674c3ba28314c3a666144145a6758e07ed69ad6
[DevTools] Double click a Suspense Rect to jump to its position in the timeline (#34642) When you double click it will hide or show by jumping to the selected index or one step before the selected. Let's you go from a suspense boundary into the timeline to find its position. I also highlight the step in the timeline ...
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.js", "patch": "@@ -98,13 +98,29 @@ function SuspenseRects({\n });\n }\n \n+ function handleDoubleClick(event: SyntheticMouseEvent) {\n+ if (event.defaultPrevented) {\n+ // Already clicked on an inner rect\n...
2025-09-29T14:43:01
vercel/next.js
f27b49280d56f70f2efee78e1e6afe30c61c2789
2c2dd5fe8657c29922d8c97d3289b2403eb4de3d
fix: Don't fall through to catch-all when static child subtree doesn't match (#90957) When matching a URL against the known route trie, if a URL part matches a static child but the remaining parts don't resolve within that child's subtree, the algorithm incorrectly falls back to a dynamic catch-all sibling at the same...
[ { "path": "packages/next/src/client/components/segment-cache/optimistic-routes.ts", "patch": "@@ -644,8 +644,12 @@ function matchKnownRoutePart(\n if (match !== null) {\n return match\n }\n- // Static child exists but didn't match (e.g., wrong depth).\n- // Fall through to try ...
2026-03-06T17:21:16
rust-lang/rust
94e58c09796d793427079f639a5a576e47304479
dadf2eef344d5124ee0671ce0b9e8ff65da72eb0
fix fudging
[ { "path": "compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs", "patch": "@@ -215,6 +215,29 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n self.check_place_expr_if_unsized(fn_input_ty, arg_expr);\n }\n \n+ let formal_input_tys_ns;\n+ let formal_input_tys = if self.next_trait_solver() ...
2025-12-16T14:14:29
electron/electron
c521c2b86824726f990f5516f3d5125a9ef14ac2
b2c50935424f99337c164893c2149b78c8e675ec
test: update/fix Node.js disabled specs (#49467)
[ { "path": "patches/node/fix_crypto_tests_to_run_with_bssl.patch", "patch": "@@ -10,18 +10,6 @@ This should be upstreamed in some form, though it may need to be tweaked\n before it's acceptable to upstream, as this patch comments out a couple\n of tests that upstream probably cares about.\n \n-diff --git a/t...
2026-01-27T10:03:09
nodejs/node
42d94e0623a02c1581b008176e4815c8ae619e5e
488aaee51f0098565128ce842bcf561d539295ed
doc: clarify TypedArray properties on Buffer "properties" is a more generic wording which also includes non-method properties like `byteLength`. Fixes: https://github.com/nodejs/node/issues/34946 PR-URL: https://github.com/nodejs/node/pull/61355 Refs: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/...
[ { "path": "doc/api/buffer.md", "patch": "@@ -243,7 +243,7 @@ changes:\n -->\n \n `Buffer` instances are also JavaScript {Uint8Array} and {TypedArray}\n-instances. All {TypedArray} methods are available on `Buffer`s. There are,\n+instances. All {TypedArray} methods and properties are available on `Buffer`s. ...
2026-01-20T21:42:19
golang/go
244b156e67635f83a13b113c61f7729a79e06056
a48829de1e7d51e31bb9e28c1b386ba5b796b76f
cmd/compile: fix internal compiler error: bad write barrier type This change fixes an issue where the compiler panics with 'bad write barrier type' for zero-sized arrays. The loops in storeTypeScalars and storeTypePtrs erroneously processed zero-sized arrays causing invalid operations. This ignores them. Fixes #77815...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -5671,7 +5671,7 @@ func (s *state) storeTypeScalars(t *types.Type, left, right *ssa.Value, skip ski\n \t\t\tval := s.newValue1I(ssa.OpStructSelect, ft, int64(i), right)\n \t\t\ts.storeTypeScalars(ft, addr, val, 0)\n \t\t}\n-\tcase t.IsArray() ...
2026-02-26T11:01:01
rust-lang/rust
98688ef1f93ede0a6f0b71287f6c16e1b114a61e
2bd7a97871a74d4333bd3edb6564136167ac604b
Simplify feature gating checks & macros * utilize Kleene `?` two avoid having two macro matchers with almost identical body * inline `gate_legacy` since it only has one use and since it shouldn't be used anywhere else anyway * remove unnecessary explicit borrows of the visitor * replace `if let Some(spans) = spans...
[ { "path": "compiler/rustc_ast_passes/src/feature_gate.rs", "patch": "@@ -14,31 +14,22 @@ use crate::errors;\n \n /// The common case.\n macro_rules! gate {\n- ($visitor:expr, $feature:ident, $span:expr, $explain:expr) => {{\n+ ($visitor:expr, $feature:ident, $span:expr, $explain:expr $(, $help:expr)?)...
2026-04-01T15:01:56
nodejs/node
93eaba8e1d673c0f0019e6ba332f31abda562092
3ecd33944f4d7bb4031942ec6349fa0b6385aeef
lib: fix typo in `util.js` comment Fix typo: 'explictly' -> 'explicitly' in getCallSites function comment. PR-URL: https://github.com/nodejs/node/pull/61365 Reviewed-By: Qingyu Deng <i@ayase-lab.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihri...
[ { "path": "lib/util.js", "patch": "@@ -453,7 +453,7 @@ function getCallSites(frameCount = 10, options) {\n \n // Using kDefaultMaxCallStackSizeToCapture as reference\n validateNumber(frameCount, 'frameCount', 1, 200);\n- // If options.sourceMaps is true or if sourceMaps are enabled but the option.sourc...
2026-01-20T11:05:26
vercel/next.js
0921733a94720e342244dac63b9a749b47707b5a
af48a183680b3716a99ccab00b05f1c70c350124
[Evals] Standardize Evals in Next.js (#90883) Fixtures now live next to the code they test, like e2e. `pnpm eval <name>` packs the local `next` build, generates baseline + agents-md experiment configs on the fly, and runs both in a sandbox. The agents-md variant drops an `AGENTS.md` that points the agent at the bundle...
[ { "path": ".config/eslintignore.mjs", "patch": "@@ -56,4 +56,8 @@ export default globalIgnores([\n 'test/e2e/app-dir/app-external/app/mixed/import/mixed-mod.mjs',\n 'turbopack/crates/*/tests/**/*',\n 'turbopack/crates/*/js/src/compiled',\n+ // Eval fixtures are deliberately imperfect code for agents ...
2026-03-06T17:05:36
electron/electron
b847299f19539043970817339ce9726d93bc1251
67663431736ea446869d2582c2c931786920c1ff
chore: bump chromium to 146.0.7650.0 (main) (#49496) * chore: bump chromium in DEPS to 146.0.7650.0 * 7496671: WaaP: Control hung delay for Initial WebUI Refs https://chromium-review.googlesource.com/c/chromium/src/+/7496671 * 7494302: [//media] Rename renderable_gpu_memory_buffer_video_frame_pool* Refs https://ch...
[ { "path": "BUILD.gn", "patch": "@@ -502,6 +502,7 @@ source_set(\"electron_lib\") {\n \"//third_party/blink/public/platform/media\",\n \"//third_party/boringssl\",\n \"//third_party/electron_node:libnode\",\n+ \"//third_party/highway:libhwy\",\n \"//third_party/inspector_protocol:crdtp\",\...
2026-01-26T19:18:09
golang/go
93b78326c30afe7a49b50c3c1614799ee5b41b97
c4de16a714d67c31c80285a4cb82069a6fa8718c
cmd/compile: use OpMove instead of memmove more on loong64 OpMove is faster for small moves of fixed size. goos: linux goarch: loong64 pkg: runtime cpu: Loongson-3A6000 @ 2500.00MHz | old.txt | new.txt | | sec/op | ...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -1484,11 +1484,13 @@ func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {\n \t\treturn sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))\n \tcase \"arm64\":\n \t\treturn sz <= 64 || (sz <= 1024 && disjoint(dst, sz, src, sz...
2026-02-12T06:09:27
rust-lang/rust
99d0c359275b180801ecb15eaebc5c333efa96d8
789fc4abfa131184be9db129c7ed7774c63bea84
Fix rustc-pull CI workflow
[ { "path": "src/tools/rust-analyzer/.github/workflows/rustc-pull.yml", "patch": "@@ -12,6 +12,7 @@ jobs:\n uses: rust-lang/josh-sync/.github/workflows/rustc-pull.yml@main\n with:\n github-app-id: ${{ vars.APP_CLIENT_ID }}\n+ pr-author: \"workflows-rust-analyzer[bot]\"\n zulip-stream-...
2026-04-01T11:56:21
golang/go
83b4c5d233b1df459fbbd12bfda1194f567a422f
f5479628d36e6cdd63c39784b58fa7241abd3295
runtime/cgo: avoid unused parameter warning Annotate the unused parameter with `__attribute__((unused))` to avoid build failures in environments that treat unused parameters as errors. We see this when using `rules_go`: ``` @@rules_go+//:stdlib builder failed: error executing GoStdlib command (from stdlib rule target...
[ { "path": "src/runtime/cgo/gcc_clearenv.c", "patch": "@@ -10,7 +10,7 @@\n \n /* Stub for calling clearenv */\n void\n-x_cgo_clearenv(void **_unused)\n+x_cgo_clearenv(void **env __attribute__((unused)))\n {\n \t_cgo_tsan_acquire();\n \tclearenv();", "additions": 1, "deletions": 1, "language": "C"...
2026-02-27T15:14:25
facebook/react
8309724cb4a497383cc7b3267483ab5c65dad7d6
09d3cd8fb55f7d13b9d58495367a4b9660451c1c
[Fiber][DevTools] Add scheduleRetry to DevTools Hook (#34635) When forcing suspense/error we're doing that by scheduling a sync update on the fiber. Resuspending a Suspense boundary can only happen sync update so that makes sense. Erroring also forces a sync commit. This means that no View Transitions fire. However, ...
[ { "path": "packages/react-debug-tools/src/__tests__/ReactDevToolsHooksIntegration-test.js", "patch": "@@ -17,6 +17,7 @@ describe('React hooks DevTools integration', () => {\n let act;\n let overrideHookState;\n let scheduleUpdate;\n+ let scheduleRetry;\n let setSuspenseHandler;\n let waitForAll;\...
2025-09-28T17:51:35
electron/electron
75be2fe8d651828091e6c2e7645a591e7dc91c2a
30f365d9d8b554107e5c5f7a624c3c8984f3b00d
docs: add type reference links in Menu and MenuItem API documentation (#49437) * docs: add type reference links in Menu and MenuItem API documentation * docs: revert type links in Menu return types to fix parser
[ { "path": "docs/api/menu-item.md", "patch": "@@ -17,7 +17,7 @@ See [`Menu`](menu.md) for examples.\n * `options` Object\n * `click` Function (optional) - Will be called with\n `click(menuItem, window, event)` when the menu item is clicked.\n- * `menuItem` MenuItem\n+ * `menuItem` [MenuItem](menu...
2026-01-26T11:22:28
golang/go
5055a181560b09170a23be81612ee849e47b0a30
76222756d9674a41b01a11d123ce39a7b26eb7fc
cmd/go/internal/doc: support @version suffix on first argument This change allows `go doc` to display documentation for packages outside the workspace by explicitly providing a version (e.g., `go doc pkg@version`) or by inferring it from an installed command. Therefore, all of the following are now valid: ``` go doc...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -151,7 +151,7 @@ func runDoc(ctx context.Context, cmd *base.Command, args []string) {\n \tlog.SetPrefix(\"doc: \")\n \tdirsInit()\n \tvar flagSet flag.FlagSet\n-\terr := do(os.Stdout, &flagSet, args)\n+\terr := do(ctx, os.Stdout, &flagSet, args)\n \ti...
2026-02-20T05:24:55
facebook/react
c552618a8203866a8bf80324f6efa708d4bdb146
df38ac9a3b9a5ea43c1d07c00d090a448acfd56c
flags: make enableAsyncDebugInfo dynamic for www (#34430) As titled. This adds dev-only debugging information to Fizz / Flight that could be used for tracking Promise's stack traces in "suspended by" section of DevTools.
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -3021,7 +3021,8 @@ describe('ReactFlightDOM', () => {\n expect(getMeaningfulChildren(container)).toEqual(<div>loading...</div>);\n });\n \n- // @gate enableHalt\n+ // This could be a bug. Discovered whil...
2025-09-26T18:43:03
vercel/next.js
cb54d203ea7275d63807fd5680de39cba0ee8017
d2525d765a3006b1519adb4f41ce755b9567caac
preserve allowQuery for partial fallback shells (#90887) Analogous change to https://github.com/vercel/vercel/pull/15338, but for the new Next.js adapter API. This updates only allowQuery for fallback HTML when the route is a true partialFallback (PPR fallback with postponed state) and cache components is enabled. ...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1601,14 +1601,22 @@ export async function handleBuildComplete({\n if (typeof fallback === 'string') {\n if (fallbackRootParams && fallbackRootParams.length > 0) {\n htmlAllowQuery = fallbackRootParams ...
2026-03-06T16:16:40
rust-lang/rust
20ce0f0488a57fe748c4c4187c11deb431eb86a1
c29def2a1e83cd32f5582b12eeb58482fd89ac25
Fix rustc-pull CI workflow
[ { "path": "src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml", "patch": "@@ -12,6 +12,7 @@ jobs:\n uses: rust-lang/josh-sync/.github/workflows/rustc-pull.yml@main\n with:\n github-app-id: ${{ vars.APP_CLIENT_ID }}\n+ pr-author: \"workflows-rustc-dev-guide[bot]\"\n zulip-strea...
2026-04-01T11:53:40
nodejs/node
13acafb2821c1b06038f5c9120b768cfec4338fd
973e119d22f234492884f779fcd8b4c24e7a4ddc
test: reveal wpt evaluation errors in status files PR-URL: https://github.com/nodejs/node/pull/61358 Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/common/wpt.js", "patch": "@@ -712,7 +712,7 @@ class WPTRunner {\n spec,\n {\n status: NODE_UNCAUGHT,\n- name: 'evaluation in WPTRunner.runJsTests()',\n+ name: `${err}`,\n message: err.message,\n stack...
2026-01-19T18:01:44
electron/electron
d5de8883a26553e9e2b469f881acd7a36af0c52d
8a11d5afb1c2381670da72227d757c745c382afb
feat: add `focusOnNavigation` flag to WebPreferences (#49425) * feat: add focusOnNavigation webPreference * WebContentsView tests * fix * fix
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -157,6 +157,8 @@\n `WebContents` when the preferred size changes. Default is `false`.\n * `transparent` boolean (optional) - Whether to enable background transparency for the guest page. Default is `true`. **Note:** The guest page's text and...
2026-01-23T19:29:34
golang/go
76222756d9674a41b01a11d123ce39a7b26eb7fc
f2633386e0d2f692b4363134626f472fc95b9858
cmd/compile: gate instrumentEnterExit on NoRaceFunc check The NoRaceFunc flag is meant to suppress racefuncenter/racefuncexit instrumentation for packages like internal/runtime/atomic. However, instrumentEnterExit was set unconditionally when -race was enabled, outside the NoRaceFunc guard. This caused generic functio...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -341,9 +341,9 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \tif base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {\n \t\tif !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg...
2026-02-23T19:53:35
facebook/react
8bb7241f4c773376893701bfe8b8ff03687342a0
8d557a638ef8caf9bddfc6c7541b58b8b59259f9
Bump useEffectEvent to Canary (#34610) Bumps `useEffectEvent` from `@experimental` to `@canary`. Removes the `experimental_` prefix from the export. ## TODO - [ ] Update useEffectEvent reference page and Canary badging in docs: https://github.com/reactjs/react.dev/pull/8025
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6514,7 +6514,7 @@ describe('ReactDOMFizzServer', () => {\n const ref = React.createRef();\n function App() {\n const [count, setCount] = React.useState(0);\n- const onClick = React.experimental_...
2025-09-26T15:51:30
vercel/next.js
87a8fb2f8fff5a30257396168acb61e4c3645f83
07df7fa0284c8fbdd51d00e7a12a1ac5ccc1125d
Fix preview version in `window.next.version` for PR builds (#90937) Preview builds served via `vercel-packages.vercel.app` were showing the published canary version instead of the PR-specific preview version. This happened because `create-preview-tarballs.js` updated `package.json` after the build, but the version was...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -113,6 +113,12 @@ jobs:\n \n - run: pnpm install\n \n+ - name: Set preview version\n+ if: ${{ contains(fromJSON('[\"automated-preview\",\"force-preview\"]'), needs.deploy-target.outputs.value) }}\n+ run: |\n+ ...
2026-03-06T11:30:19
rust-lang/rust
0f9a616ce608dd1c3115a6a2f80140337f855012
74fa516573f711e80266598c13f9eed9f0faf9f0
fix: handle `ParenExpr` correctly
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/attrs.rs", "patch": "@@ -852,6 +852,9 @@ fn expand_doc_expr_via_macro_pipeline<'db>(\n expr: ast::Expr,\n ) -> Option<String> {\n match expr {\n+ ast::Expr::ParenExpr(paren_expr) => {\n+ expand_doc_expr_via_macro_pipeline(expand...
2026-04-01T10:19:44
golang/go
f71432d223eeb2139b460957817400750fd13655
40a10063e89d4f0ae55631d1e50c31e3314fb812
cmd/compile: fix bloop test Not 100% sure this is right, but it seems to fix the issue. Fixes #77832 Change-Id: Ifa6eae61a5444f4fd88b310536b1caf7144e7797 Reviewed-on: https://go-review.googlesource.com/c/go/+/749660 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -86,7 +86,7 @@ func getKeepAliveNodes(pos src.XPos, n ir.Node) ir.Nodes {\n \tif name != nil {\n \t\tdebugName(name, pos)\n \t\treturn ir.Nodes{name}\n-\t} else if deref := n.(*ir.StarExpr); deref != nil {\n+\t} else if deref, ok := n.(*ir.St...
2026-02-27T03:48:46
nodejs/node
57a71cd50dc78657367eb822ec2a3bfe1c0ef54a
5f982e28793ed001f5adb8fabea1d2a1f3247c71
http2: validate initialWindowSize per HTTP/2 spec The HTTP/2 spec (RFC 7540) defines SETTINGS_INITIAL_WINDOW_SIZE maximum as 2^31-1. Values above this must be treated as a FLOW_CONTROL_ERROR. Previously, Node.js allowed values up to 2^32-1 which caused nghttp2_submit_settings() to return NGHTTP2_ERR_INVALID_ARGUMENT, ...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -230,6 +230,7 @@ function debugSessionObj(session, message, ...args) {\n \n const kMaxFrameSize = (2 ** 24) - 1;\n const kMaxInt = (2 ** 32) - 1;\n+const kMaxInitialWindowSize = (2 ** 31) - 1; // HTTP/2 spec maximum\n const kMaxStreams = (2 ** 32) - 1;\n...
2026-01-19T07:35:13
electron/electron
8a11d5afb1c2381670da72227d757c745c382afb
89963618d93ac3fd84ce45cf86a6606d04630ffd
fix: avoid startup crash when V8 sandbox is disabled (#49210) * fix: avoid startup crash when V8 sandbox is disabled * chore: update patch --------- Co-authored-by: David Franco <davidfrsan@gmail.com>
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -4,7 +4,7 @@ Date: Wed, 28 Jun 2023 21:11:40 +0900\n Subject: fix: harden blink::ScriptState::MaybeFrom\n \n NOTE: since https://chromium-review.googlesource.com/c/chromium/src/+/6973697\n-the patch is only needed for 32...
2026-01-23T16:49:15
facebook/react
250f1b20e0ac8e6c1ba03f2466ad63ff9b5104de
b0c1dc01ecbfaf81aa69f760b29dd76c02600792
[playground] Fix useEffect on tabify (#34594) There was a bug in the Compiler Playground related to the "Show Internals" toggle due to a useEffect that was causing the tab names to flicker from a rerender. Rewritten instead with a `<Suspense>` boundary + `use`.
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -19,19 +19,24 @@ import {\n import parserBabel from 'prettier/plugins/babel';\n import * as prettierPluginEstree from 'prettier/plugins/estree';\n import * as prettier from 'prettier/standalone';\n-import {memo, ReactNode, useEf...
2025-09-25T18:56:41
rust-lang/rust
2ca6c7d0b9fa8eae3750477ff6f229ce02814b30
4c22d0d87b2cb6cd44a55d594a0c2bfbf8ff4f00
chore: fix clippy
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/attrs.rs", "patch": "@@ -1041,7 +1041,7 @@ fn extract_docs<'a, 'db>(\n &mut indent,\n get_cfg_options,\n &mut cfg_options,\n- expander.as_deref_mut(),\n+ expander,\n inline_source_ctx....
2026-04-01T09:13:04
vercel/next.js
d08f4dc08ce9733aca052befbaaed34e730dddc0
73b44a185b8d390ec5bc89f58ffb37f73717e301
Add `experimental.cachedNavigations` feature flag (#90928) The recent Cached Navigations feature introduced navigation-level caching into the segment cache, where static and dynamic RSC data from navigations and initial HTML loads is cached so that repeat visits can be served instantly. This feature is currently gated...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -813,6 +813,7 @@ jobs:\n # Keep Next.js related env variables in sync with additionalEnv in next-deploy.ts\n afterBuild: |\n export __NEXT_CACHE_COMPONENTS=true\n+ export __NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS=true\n ...
2026-03-06T09:39:47
golang/go
40a10063e89d4f0ae55631d1e50c31e3314fb812
657ed934e85dc575aad51356c4b437961e7c1313
runtime: fix scan size calculation for small arrays of only pointers When allocating arrays, scan size should be the position of the last pointer in the last object. Small array allocations containing only pointers (for example, the backing store for a []*int) have a fast path in the allocator for unrolling their bits...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2083,3 +2083,8 @@ func DumpPrintQuoted(s string) string {\n \n \treturn string(buf)\n }\n+\n+func GetScanAlloc() uintptr {\n+\tc := getMCache(getg().m)\n+\treturn c.scanAlloc\n+}", "additions": 5, "deletions": 0, "language": "Go" }, { ...
2026-02-12T09:00:24
electron/electron
89963618d93ac3fd84ce45cf86a6606d04630ffd
8c5c6a6088835846487982d32e7a7c77a951fcdd
fix: second argument to `shell.writeShortcutLink` is optional (#49476) fix: second argument to shell.writeShortcutLink is optional
[ { "path": "shell/common/api/electron_api_shell.cc", "patch": "@@ -112,11 +112,20 @@ bool WriteShortcutLink(const base::FilePath& shortcut_path,\n gin::Arguments* const args) {\n base::win::ShortcutOperation operation =\n base::win::ShortcutOperation::kCreateAlways;\n- args->G...
2026-01-23T16:24:47
facebook/react
b0c1dc01ecbfaf81aa69f760b29dd76c02600792
6eb5d67e9c4c5c456783dbbd454d79016c43b07d
[Flight] Add approximate parent context for FormatContext (#34601) Flight doesn't have any semantically sound notion of a parent context. That's why we removed Server Context. Each root can really start anywhere in the tree when you refetch subtrees. Additionally when you dedupe elements they can end up in multiple di...
[ { "path": "packages/react-dom-bindings/src/server/ReactFlightServerConfigDOM.js", "patch": "@@ -61,3 +61,17 @@ export type Hints = Set<string>;\n export function createHints(): Hints {\n return new Set();\n }\n+\n+export opaque type FormatContext = null;\n+\n+export function createRootFormatContext(): For...
2025-09-25T16:05:47
nodejs/node
5f982e28793ed001f5adb8fabea1d2a1f3247c71
637bda02384ca846cc0eeba8d23917757511eb81
child_process: treat ipc length header as unsigned uint32 Fixes: https://github.com/nodejs/node/issues/61312 PR-URL: https://github.com/nodejs/node/pull/61344 Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "lib/internal/child_process/serialization.js", "patch": "@@ -74,12 +74,12 @@ const advanced = {\n while (messageBufferHead.length >= 4) {\n // We call `readUInt32BE` manually here, because this is faster than first converting\n // it to a buffer and using `readUInt32BE` on that.\n-...
2026-01-19T01:16:25
rust-lang/rust
94ee70ed59f72c70150eb93f436094f6f15668c4
7a092c466a4d5b4e1a57c0086e565dcec8ce51ba
borrowck: Don't mention unused vars in outlive errors When there is a lifetime error, the code does its best to find variables that correspond to the lifetimes involved. This commit stops mentioning arguments that are unused in closures, since they are not relevant. See the diff of the blessed test to get a good clue...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/var_name.rs", "patch": "@@ -1,12 +1,15 @@\n use rustc_index::IndexSlice;\n-use rustc_middle::mir::{Body, Local};\n+use rustc_middle::mir::visit::{PlaceContext, VisitPlacesWith, Visitor};\n+use rustc_middle::mir::{Body, Local, Place};\n use rustc_middle::ty:...
2026-04-01T09:25:51
golang/go
657ed934e85dc575aad51356c4b437961e7c1313
753022f82fc54dab5e348fac3706a9df8afc5cb5
os: avoid escape from Root via ReadDir or Readdir When reading the contents of a directory using File.ReadDir or File.Readdir, the os.FileInfo was populated on Unix platforms using lstat. This lstat call is vulnerable to a TOCTOU race and could escape the root. For example: - Open the directory "dir" within a Root....
[ { "path": "src/internal/poll/fstatat_unix.go", "patch": "@@ -0,0 +1,22 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build unix || wasip1\n+\n+package poll\n+\n+import (\n+\t\"...
2026-02-26T17:54:33
vercel/next.js
2544467b80f0fd1914c6630f11c9e64285b6b657
9d0fbf139d741e0b3e6f388e5de0fadbdddd9fd4
Prefix pr-status replies with :robot: emoji (#90943) ### What? Prefixes replies posted by `scripts/pr-status.js` with the `:robot:` (🤖) emoji. ### Why? When the pr-status script replies to PR review threads, there's no visual indicator that the reply was generated by AI rather than a human. Adding the robot emoji ...
[ { "path": "scripts/pr-status.js", "patch": "@@ -372,6 +372,7 @@ function getPRComments(prNumber) {\n // ============================================================================\n \n function replyToThread(threadId, body) {\n+ body = ':robot: ' + body\n const mutation = `\n mutation($threadId: ID!...
2026-03-05T20:18:24
facebook/react
ac2c1a5a5840d5e043d1d7a12a356f226e285c02
c44fbf43b1e05417619c3b9411d0559824739569
[Flight] Ensure blocked debug info is handled properly (#34524) This PR ensures that server components are reliably included in the DevTools component tree, even if debug info is received delayed, e.g. when using a debug channel. The fix consists of three parts: - We must not unset the debug chunk before all debug in...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -499,10 +499,44 @@ function createErrorChunk<T>(\n return new ReactPromise(ERRORED, null, error);\n }\n \n+function moveDebugInfoFromChunkToInnerValue<T>(\n+ chunk: InitializedChunk<T>,\n+ value: T,\n+): void {\n+ // Remove the de...
2025-09-25T13:13:15
nodejs/node
9bcfbeb236307c5a9cc558477598b4338ed398b6
04c88288638e6eb96ec4ac4977eade83a56b50c4
doc: refine WebAssembly error documentation Co-authored-by: Marco Ippolito <marcoippolito54@gmail.com> PR-URL: https://github.com/nodejs/node/pull/61382 Fixes: https://github.com/nodejs/node/issues/61353 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/api/errors.md", "patch": "@@ -3356,7 +3356,7 @@ The WASI instance has not been started.\n \n A feature requiring WebAssembly was used, but WebAssembly is not supported or\n has been disabled in the current environment (for example, when running with\n-`--jitless`). The error message specifies...
2026-01-15T09:59:49
rust-lang/rust
7a092c466a4d5b4e1a57c0086e565dcec8ce51ba
a40ea0af41c3462cc29f49158900915032ce4453
tests: Add borrowck/var-matching-lifetime-but-unused-not-mentioned.rs So that the impact of the commit that fixes the test can be seen clearly.
[ { "path": "tests/ui/borrowck/var-matching-lifetime-but-unused-not-mentioned.rs", "patch": "@@ -0,0 +1,17 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/113121>.\n+\n+#![allow(unused_variables)]\n+\n+fn consume<T: 'static>(_: T) {}\n+\n+fn foo<'a>(\n+ used_arg: &'a u8,\n+ unused...
2026-04-01T04:29:14
golang/go
89d92fc21166c27db7d4203d93019e33f8cb9695
b4ef60b9cb74c24108ad02cc11531c0f144bb77d
cmd/compile: ternary rewrite of rewrite should skip, not panic The panic was unnecessary, if there's nothing to rewrite, just do nothing. Added a debug message for this to help with testing; it seems (from accidentally perturbing the test away from failure) to be somewhat rare, so likely okay to mingle with the other...
[ { "path": "src/cmd/compile/internal/ssa/rewritetern.go", "patch": "@@ -5,7 +5,6 @@\n package ssa\n \n import (\n-\t\"fmt\"\n \t\"internal/goarch\"\n \t\"slices\"\n )\n@@ -175,7 +174,10 @@ func rewriteTern(f *Func) {\n \t\timm := computeTT(a0, vars0)\n \t\top := ternOpForLogical(a0.Op)\n \t\tif op == a0.Op {...
2026-02-25T20:56:36
electron/electron
24526ccd390664a005a93dd464cc774e6a868977
1134d95c6d927573f043a1762c0e49ad63e0ca76
docs: correct yarn part of `tutorial-5-packaging` (#49401) docs: fix yarn part of `tutorial-5-packaging` - adding electron forge
[ { "path": "docs/tutorial/tutorial-5-packaging.md", "patch": "@@ -44,11 +44,25 @@ have to worry about wiring them all together.\n You can install Electron Forge's CLI in your project's `devDependencies` and import your\n existing project with a handy conversion script.\n \n-```sh npm2yarn\n+<Tabs>\n+ <TabIt...
2026-01-23T10:14:19
vercel/next.js
9d0fbf139d741e0b3e6f388e5de0fadbdddd9fd4
73049d6f9015007557f89724b07e781a4784af2d
Turbopack: Annotate ReadVcFuture as must_use instead of annotating functions that return it (#90839) It's a little less error-prone if it's in one place (on the type) than in many (on the functions). I also added it to `ReadRawVcFuture`. https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-att...
[ { "path": "turbopack/crates/turbo-tasks/src/raw_vc.rs", "patch": "@@ -316,6 +316,7 @@ impl<F: Future> Future for SuppressTopLevelTaskCheckFuture<F> {\n }\n }\n \n+#[must_use]\n pub struct ReadRawVcFuture {\n current: RawVc,\n read_output_options: ReadOutputOptions,", "additions": 1, "del...
2026-03-05T19:51:30
facebook/react
c44fbf43b1e05417619c3b9411d0559824739569
8ad773b1f342d20e4773c8d086028c6927445a22
[DevTools] Fix instrumentation error when reconciling promise-as-a-child (#34587)
[ { "path": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -3107,4 +3107,45 @@ describe('Store', () => {\n await actAsync(() => render(<span />));\n expect(store).toMatchInlineSnapshot(`[root]`);\n });\n+\n+ // @reactVersion >= 19.0\n+ it('should reconcile promise-as-a-...
2025-09-24T20:50:12
nodejs/node
04c88288638e6eb96ec4ac4977eade83a56b50c4
79ddd1ba10322269777b9de0b9271794eade16cc
lib: fix TypeScript support check in jitless mode WebAssembly is disabled when Node.js is run with --jitless. The internal TypeScript stripper relies on WebAssembly, and previously failed obscurely with a ReferenceError in this mode. This commit adds an explicit check for WebAssembly support when loading the TypeScri...
[ { "path": "doc/api/errors.md", "patch": "@@ -3350,6 +3350,14 @@ The WASI instance has already started.\n \n The WASI instance has not been started.\n \n+<a id=\"ERR_WEBASSEMBLY_NOT_SUPPORTED\"></a>\n+\n+### `ERR_WEBASSEMBLY_NOT_SUPPORTED`\n+\n+A feature requiring WebAssembly was used, but WebAssembly is not...
2026-01-14T14:38:05
electron/electron
e3142865b2e3c8ae3e1c842135eb1a304e0419bf
1f8e4079cda5d62003ee68fa7d39683a074dc1a6
fix: offscreen rendering with correct screen info. (#48730) fix: osr use correct screen info.
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -94,6 +94,7 @@\n The actual output pixel format and color space of the texture should refer to [`OffscreenSharedTexture`](../structures/offscreen-shared-texture.md) object in the `paint` event.\n * `argb` - The requested output texture...
2026-01-22T19:58:54
facebook/react
58d17912e89b56067eeba08619fd7f7b6c813519
2c6d92fd80ec6917cb7387dbb771e35e82b0126d
Fix failing React DevTools regression tests (#34585)
[ { "path": "packages/react-devtools-shared/src/__tests__/TimelineProfiler-test.js", "patch": "@@ -130,24 +130,28 @@ describe('Timeline profiler', () => {\n // @reactVersion <= 18.2\n // @reactVersion >= 18.0\n it('should mark sync render without suspends or state updates', () => {\n+ ...
2025-09-24T17:08:13
vercel/next.js
73049d6f9015007557f89724b07e781a4784af2d
3beb4665730f2895d9534b089c240b873dc6c3f2
Turbopack: Fix some eventually consistent reads at the top level in dev-server and snapshot tests (#90792) This fixes ``` UPDATE=1 cargo test -p turbopack-tests ``` when a snapshot test output is modified or deleted. We must get the `Effects` inside of an operation, as that involves reading `Vc`s, but then we s...
[ { "path": "turbopack/crates/turbo-tasks/src/effect.rs", "patch": "@@ -16,12 +16,9 @@ use tokio::task_local;\n use tracing::Instrument;\n \n use crate::{\n- self as turbo_tasks, CollectiblesSource, NonLocalValue, ReadRef, ResolvedVc, TryJoinIterExt,\n- debug::ValueDebugFormat,\n- emit,\n+ self as...
2026-03-05T19:16:30
electron/electron
1f8e4079cda5d62003ee68fa7d39683a074dc1a6
bad88c6ed450dd87ce160bfaa54091db9f075714
test: fix version color output when running prebuilt Electron (#49491)
[ { "path": "script/spec-runner.js", "patch": "@@ -88,7 +88,7 @@ async function main () {\n }\n \n const versionString = `v${args.electronVersion}`;\n- console.log(`Running against Electron ${versionString.green}`);\n+ console.log(`Running against Electron ${chalk.green(versionString)}`);\n }\...
2026-01-22T15:17:56
vercel/next.js
747d3dc465b8cdcd94c7c9f2b17d2ca062936e9a
beb222e83637aed905339e8e2ebd81a923856d77
Fix prefetch inlining build failure with dynamic routes (#90899) When prefetchInlining is enabled, the segment data collection returns a special key for the inlined response. Previously this key was `/_inlined`, but the build validation code in `packages/next/src/build/index.ts` expects segment paths to contain `__PAG...
[ { "path": "packages/next/src/client/components/segment-cache/cache.ts", "patch": "@@ -2015,7 +2015,7 @@ export async function fetchInlinedSegmentsOnCacheMiss(\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n- [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]:...
2026-03-05T15:47:12
rust-lang/rust
253c03aa9d1e810cc4226fce7ccb1431dd4108d0
3ebe60c8c30d1175019dcbdb957441cd84aa1220
Add a test for a past ICE when calling a const fn with the wrong number of arguments
[ { "path": "tests/ui/consts/ice-extra-args-fn-abi-issue-127423.rs", "patch": "@@ -0,0 +1,18 @@\n+// #127423: ICE: assertion failed: sig.c_variadic || extra_args.is_empty()\n+// Calling a const fn with the wrong number of arguments where the function has\n+// an unresolved type should not trigger an ICE.\n+//...
2026-03-31T16:57:34