repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
5e4a54ea39a4433b066386f36cbf1c1c74d2ae7b
762bff650fc487a8aff0c99be3d18c6a5e12317c
docs(localFont): enhance details about using the localFont function (#88189) ### What? Enhance the documentation about how to use the `localFont` function. ### Why? The Next.js documentation about [local fonts](https://nextjs.org/docs/app/getting-started/fonts#local-fonts) has insufficient information about where to ...
[ { "path": "docs/01-app/01-getting-started/13-fonts.mdx", "patch": "@@ -305,7 +305,7 @@ export default function MyApp({ Component, pageProps }) {\n \n <AppOnly>\n \n-To use a local font, import your font from `next/font/local` and specify the [`src`](/docs/app/api-reference/components/font#src) of your local...
2026-03-09T12:20:31
golang/go
7aeb2f7e285006ad68789581dedf2b35ba444dbf
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
cmd/go: update go help entries to focus on modules Some of the go help entries, especially go help packages, primarily explained GOPATH mode behavior. While building legacy projects in GOPATH mode will continue to be supported by the go command, it is now a very niche use case, and the docs should focus on modules. Th...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -267,12 +267,14 @@\n // prints the disassembly for fmt and all its dependencies.\n //\n // For more about specifying packages, see 'go help packages'.\n-// For more about where packages and binaries are installed,\n-// run 'go help gopath'.\n+// For more about...
2025-04-07T20:35:52
rust-lang/rust
eca09dedef8d8d94a099f800045b013570d7569a
b17670d3de2f62acba94abf3560cd002a75db42f
fix tests
[ { "path": "src/etc/lldb_lookup.py", "patch": "@@ -91,7 +91,18 @@ def classify_rust_type(type: lldb.SBType, is_msvc: bool) -> RustType:\n \n def synthetic_lookup(valobj: lldb.SBValue, _dict: LLDBOpaque) -> object:\n \"\"\"Returns the synthetic provider for the given value\"\"\"\n- is_msvc = valobj.Get...
2025-11-15T10:28:56
electron/electron
f272723a33dcf1449527c56c8205ef1c6d4aa0bb
331d1e16f5b20cb453741af46842448383663a60
feat: Allow `View.setBounds` to animate (#48812) * feat: allow View::SetBounds to animate * fix: support width/height animations * fix: jumping on subsequent animations * fix: segfault race condition * fix: remove layer background * fix: layer clips not being reset * refactor: use gfx tween gin converter * fix:...
[ { "path": "docs/api/view.md", "patch": "@@ -62,9 +62,17 @@ it becomes the topmost view.\n \n If the view passed as a parameter is not a child of this view, this method is a no-op.\n \n-#### `view.setBounds(bounds)`\n+#### `view.setBounds(bounds[, options])`\n \n * `bounds` [Rectangle](structures/rectangle.m...
2026-01-30T20:18:56
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
facebook/react
2cfb221937eac48209d01d5dda5664de473b1953
58bdc0bb967098f14562cd76af0668f2056459a0
[Flight] Allow passing DEV only startTime as an option (#34912) When you use the `createFromFetch` API we assume that the start time of the request is the same time as when you call `createFromFetch` but in principle you could use it with a Promise that starts earlier and just happens to resolve to a `Response`. When...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -2561,6 +2561,7 @@ function ResponseInstance(\n findSourceMapURL: void | FindSourceMapURLCallback, // DEV-only\n replayConsole: boolean, // DEV-only\n environmentName: void | string, // DEV-only\n+ debugStartTime: void | number,...
2025-10-19T20:38:33
vercel/next.js
762bff650fc487a8aff0c99be3d18c6a5e12317c
1ead596c5189720ace061f4760a814dc2e76baaf
fix: run lerna on a branch (#91092) Trying to fix: `lerna ERR! ENOGIT Detached git HEAD, please checkout a branch to choose versions.` on `set-preview-version.js` [Slack thread](https://vercel.slack.com/archives/C02CDC2ALJH/p1773051154649349)
[ { "path": "scripts/set-preview-version.js", "patch": "@@ -31,6 +31,12 @@ async function main() {\n // 15.0.0 -> 15.0.0\n const [semverStableVersion] = lernaConfig.version.split('-')\n const version = `${semverStableVersion}-preview-${shortSha}-${dateString}`\n+ //\n+ // Lerna version requires a non-...
2026-03-09T12:09:47
golang/go
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
f4afab14d0375d93115134f19fb90006dd664682
cmd/go: revert update default go directive in mod or work init This restores the previous behavior of setting go directive to the toolchain's version as per #77653. Fixes #77653 Change-Id: Ie9d2de025a75f39fd8d6d01776d0cf4e5da954f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/749980 Reviewed-by: Dmitri Shur...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,7 +29,6 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n-\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -838,7 +837,7 @@ func...
2026-02-27T18:03:36
electron/electron
6825a522e9a535f421e102b4fce8463518429fd6
e033c1007562eb3b79ef827a7e797848dfe93e10
fix: duplicate fullscreen macOS menu item (#49074)
[ { "path": "shell/browser/mac/electron_application_delegate.mm", "patch": "@@ -56,11 +56,6 @@ - (void)willPowerOff:(NSNotification*)notify {\n }\n \n - (void)applicationWillFinishLaunching:(NSNotification*)notify {\n- // Don't add the \"Enter Full Screen\" menu item automatically.\n- [[NSUserDefaults stand...
2026-01-30T18:23:43
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
facebook/react
58bdc0bb967098f14562cd76af0668f2056459a0
bf11d2fb2f01174974b7e1fa5b1c01d34936724b
[Flight] Ignore bound-anonymous-fn resources as they're not considered I/O (#34911) When you create a snapshot from an AsyncLocalStorage in Node.js, that creates a new bound AsyncResource which everything runs inside of. https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/internal/async_...
[ { "path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js", "patch": "@@ -142,10 +142,28 @@ export function initAsyncDebugInfo(): void {\n }: UnresolvedPromiseNode);\n }\n } else if (\n- type !== 'Microtask' &&\n- type !== 'TickObject' &&\n- ...
2025-10-19T18:56:56
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
golang/go
f4afab14d0375d93115134f19fb90006dd664682
76ebf6330787131e68390699da11c1dfcf742194
cmd/link: support Mach-O UNSIGNED relocations for dynamic imports on darwin When internally linking darwin binaries, the linker rejected Mach-O UNSIGNED (pointer) relocations targeting dynamic import symbols, producing errors like: unexpected reloc for dynamic symbol _swift_FORCE_LOAD_$_swiftIOKit These relocati...
[ { "path": "src/cmd/cgo/internal/test/cgo_darwin_test.go", "patch": "@@ -8,4 +8,5 @@ package cgotest\n \n import \"testing\"\n \n-func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestGlobalDataDynimport(t *testing.T) { unsignedRelocDyni...
2026-02-13T11:26:12
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
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
facebook/react
ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4
40c7a7f6cac62bd6721328524cc787475ce026eb
Resolve the .default export of a React.lazy as the canonical value (#34906) For debug purposes this is the value that the `React.lazy` resolves to. It also lets us look at that value for descriptions like its name.
[ { "path": "packages/react/src/ReactLazy.js", "patch": "@@ -20,6 +20,8 @@ import {enableAsyncDebugInfo} from 'shared/ReactFeatureFlags';\n \n import {REACT_LAZY_TYPE} from 'shared/ReactSymbols';\n \n+import noop from 'shared/noop';\n+\n const Uninitialized = -1;\n const Pending = 0;\n const Resolved = 1;\n@@...
2025-10-19T18:56:25
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
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
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
ccc3c0116283371b0ae351a10f3fdbb3e3163805
a25435bcf7cfc9b953d356eda3a51db8da9e3386
Use `Hcx`/`hcx` consistently for `StableHashingContext`. The `HashStable` and `ToStableHashKey` traits both have a type parameter that is sometimes called `CTX` and sometimes called `HCX`. (In practice this type parameter is always instantiated as `StableHashingContext`.) Similarly, variables with these types are some...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -120,8 +120,8 @@ impl PartialEq<&[Symbol]> for Path {\n }\n }\n \n-impl<CTX: rustc_span::HashStableContext> HashStable<CTX> for Path {\n- fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {\n+impl<Hcx: rustc_span::HashStableContext...
2026-03-31T07:50:03
facebook/react
ef88c588d51366d16c5323dba4bd197aeb85e4ea
dc485c7303f0d7d10fdbd2ccd4a020574e679840
[DevTools] Tweak the rects design and create multi-environment color scheme (#34880) <img width="1011" height="811" alt="Screenshot 2025-10-16 at 2 20 46 PM" src="https://github.com/user-attachments/assets/6dea3962-d369-4823-b44f-2c62b566c8f1" /> The selection is now clearer with a wider outline which spans the bound...
[ { "path": "packages/react-devtools-shared/src/devtools/constants.js", "patch": "@@ -136,8 +136,6 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-timeline-text-dim-color': '#ccc',\n '--color-timeline-react-work-border': '#eeeeee',\n '--color-timebar-backgr...
2025-10-17T22:51:02
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
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
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
facebook/react
dc485c7303f0d7d10fdbd2ccd4a020574e679840
c35f6a3041816613e704772ca9dafb26568d9f89
[Flight] Fix detached `ArrayBuffer` error when streaming typed arrays (#34849) Using `renderToReadableStream` in Node.js with binary data from `fs.readFileSync` (or `Buffer.allocUnsafe`) could cause downstream consumers (like compression middleware) to fail with "Cannot perform Construct on a detached ArrayBuffer". T...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js", "patch": "@@ -10,11 +10,11 @@\n \n 'use strict';\n \n+import fs from 'fs';\n+import os from 'os';\n+import path from 'path';\n import {patchSetImmediate} from '../../../../scripts/jest/patchSetImmediate';\n \n-global.Rea...
2025-10-17T20:13:52
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
76ebf6330787131e68390699da11c1dfcf742194
c918cbd5561c14edc3caf04a007c4fabbbb896a1
syscall: make plan9 Errno implement the error interface The Errno type was added to plan9 in CL 750680 but without methods, so it didn't satisfy the error interface. Add Error, Temporary, and Timeout methods to match all other platforms and the Go 1 API contract (api/go1.txt's "pkg syscall, method (Errno) Error() stri...
[ { "path": "src/syscall/syscall_plan9.go", "patch": "@@ -14,6 +14,7 @@ package syscall\n import (\n \t\"errors\"\n \t\"internal/oserror\"\n+\t\"internal/strconv\"\n \t\"runtime\"\n \t\"unsafe\"\n )\n@@ -30,6 +31,10 @@ const bitSize16 = 2\n // without build-tagged files, using runtime.GOOS checks instead.\n t...
2026-03-03T18:05:17
nodejs/node
79ddd1ba10322269777b9de0b9271794eade16cc
24b16509d414cb2f48bb933109c4ac9c7303e0a9
test_runner: fix memory leaks in runner - Close readline interface after child process exits Prevents accumulation of event listeners on stderr stream - Extract watch mode event handler to named function Allows proper cleanup when watch mode is aborted These changes prevent unbounded memory growth in long-runnin...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -460,6 +460,9 @@ function runTestFile(path, filesWatcher, opts) {\n finished(child.stdout, { __proto__: null, signal: t.signal }),\n ]);\n \n+ // Close readline interface to prevent memory leak\n+ rl.close();\n+\n if (watchMode...
2025-11-27T09:30:51
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
c35f6a3041816613e704772ca9dafb26568d9f89
adbc32de32bc52f9014cedb5ff5a502be35aff51
[compiler] Optimize props spread for common cases (#34900) As part of the new inference model we updated to (correctly) treat destructuring spread as creating a new mutable object. This had the unfortunate side-effect of reducing precision on destructuring of props, though: ```js function Component({x, ...rest}) { ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -19,6 +19,7 @@ import {\n Environment,\n FunctionExpression,\n GeneratedSource,\n+ getHookKind,\n HIRFunction,\n Hole,\n IdentifierId,\n@@ -198,6 +199,7 @@ export function infer...
2025-10-17T18:59:17
golang/go
c918cbd5561c14edc3caf04a007c4fabbbb896a1
30d873462fd42c7fc940fe96ca68dfe396f350c7
runtime: fix value of ENOSYS on mips from 38 to 89 Fixes #77730 Change-Id: I8b68b2d4353344e70f970d48a2d50c1a3bd7f273 Reviewed-on: https://go-review.googlesource.com/c/go/+/747664 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Rev...
[ { "path": "src/runtime/defs_linux_mips64x.go", "patch": "@@ -12,7 +12,7 @@ const (\n \t_EINTR = 0x4\n \t_EAGAIN = 0xb\n \t_ENOMEM = 0xc\n-\t_ENOSYS = 0x26\n+\t_ENOSYS = 0x59\n \n \t_PROT_NONE = 0x0\n \t_PROT_READ = 0x1", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "s...
2026-02-22T00:47:45
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
nodejs/node
24b16509d414cb2f48bb933109c4ac9c7303e0a9
a00f5fea7029d3f0791ff6dddabc34b5a0ccf9b4
fs: fix errorOnExist behavior for directory copy in fs.cp PR-URL: https://github.com/nodejs/node/pull/60946 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.c...
[ { "path": "lib/internal/fs/cp/cp.js", "patch": "@@ -300,8 +300,17 @@ async function setDestTimestamps(src, dest) {\n return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime);\n }\n \n-function onDir(srcStat, destStat, src, dest, opts) {\n+async function onDir(srcStat, destStat, src, dest, opts) {\n...
2026-01-17T17:52:38
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
adbc32de32bc52f9014cedb5ff5a502be35aff51
1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9
[compiler] More fbt compatibility (#34887) In my previous PR I fixed some cases but broke others. So, new approach. Two phase algorithm: * First pass is forward data flow to determine all usages of macros. This is necessary because many of Meta's macros have variants that can be accessed via properties, eg you can do...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -83,21 +83,11 @@ export type ExternalFunction = z.infer<typeof ExternalFunctionSchema>;\n export const USE_FIRE_FUNCTION_NAME = 'useFire';\n export const EMIT_FREEZE_GLOBAL_GATING = '__DEV__';\n \n-export const Ma...
2025-10-17T18:37:28
golang/go
30d873462fd42c7fc940fe96ca68dfe396f350c7
0b9bcbc58c4cf127d5a42989d08cc0236faa71cc
image/jpeg: add support for non-standard chroma subsampling ratios Add "flex mode" decoding for JPEG images with non-standard YCbCr subsampling ratios that do not match the predefined YCbCrSubsampleRatio values. This includes cases where: 1. Cb and Cr components have different sampling factors 2. The Y component does ...
[ { "path": "src/image/jpeg/reader.go", "patch": "@@ -28,10 +28,12 @@ var errUnsupportedSubsamplingRatio = UnsupportedError(\"luma/chroma subsampling r\n \n // Component specification, specified in section B.2.2.\n type component struct {\n-\th int // Horizontal sampling factor.\n-\tv int // Vertical sa...
2026-01-22T07:04:46
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
nodejs/node
a00f5fea7029d3f0791ff6dddabc34b5a0ccf9b4
a3ddfbe19189efd1aa1b37edf3edae00c2eeab86
test_runner: fix coverage report when a directory is named file The coverage tree traversal checked `tree[key].file` to detect file entries. When a directory named "file" contained a file also named "file", this check incorrectly matched the child entry instead of file metadata, causing a TypeError when accessing `.pa...
[ { "path": "lib/internal/test_runner/utils.js", "patch": "@@ -551,7 +551,7 @@ function getCoverageReport(pad, summary, symbol, color, table) {\n \n function printCoverageBodyTree(tree, depth = 0) {\n for (const key in tree) {\n- if (tree[key].file) {\n+ if (tree[key].file?.path) {\n c...
2026-01-17T17:34:06
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
facebook/react
1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9
7f5ea1bf67a1a920919ebe2ae6657bdebe505aa0
[compiler] Cleanup and enable validateNoVoidUseMemo (#34882) This is a great validation, so let's enable by default. Changes: * Move the validation logic into ValidateUseMemo alongside the new check that the useMemo result is used * Update the lint description * Make the void memo errors lint-only, they don't require ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -988,7 +988,7 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n severity: ErrorSeverity.Error,\n name: 'void-use-memo',\n description:\n- 'Validates that useM...
2025-10-16T20:08:57
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
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
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
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
facebook/react
2381ecc290c588f6366bdcf377529668bb3cc360
5418d8bdc12ae00859029bcd2abc9eb65e8f4fb4
[ESLint] Disallow passing effect event down when inlined as a prop (#34820) ## Summary Fixes https://github.com/facebook/react/issues/34793. We are allowing passing down effect events when they are inlined as a prop. ``` <Child onClick={useEffectEvent(...)} /> ``` This seems like a case that someone not familiar w...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -1555,6 +1555,17 @@ const allTests = {\n `,\n errors: [useEffectEventError('onClick', false)],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because useEffectEvent is being pa...
2025-10-16T18:18:01
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
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
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
facebook/react
5418d8bdc12ae00859029bcd2abc9eb65e8f4fb4
ed1351c4fb92f84657a0c1a2af5ccef2484f7bd7
Fix changelog link (#34879) Closes https://github.com/reactjs/react.dev/issues/8081
[ { "path": "CHANGELOG.md", "patch": "@@ -9,7 +9,7 @@ Read the [React 19.2 release post](https://react.dev/blog/2025/10/01/react-19-2)\n - [`<Activity>`](https://react.dev/reference/react/Activity): A new API to hide and restore the UI and internal state of its children.\n - [`useEffectEvent`](https://react.d...
2025-10-16T17:40:26
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
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
facebook/react
ed1351c4fb92f84657a0c1a2af5ccef2484f7bd7
93f8593289538b0be7b0eefec85e9a6ca8f56738
[compiler] improve zod v3 backwards compat (#34877) ## Summary When upgrading to `babel-plugin-react-compiler@1.0.0` in a project that uses `zod@3` we are running into TypeScript errors like: ``` node_modules/babel-plugin-react-compiler/dist/index.d.ts:435:10 - error TS2694: Namespace '"/REDACTED/node_modules/zod/v3...
[ { "path": "compiler/packages/babel-plugin-react-compiler/package.json", "patch": "@@ -52,8 +52,8 @@\n \"react-dom\": \"0.0.0-experimental-4beb1fd8-20241118\",\n \"ts-jest\": \"^29.1.1\",\n \"ts-node\": \"^10.9.2\",\n- \"zod\": \"^3.22.4 || ^4.0.0\",\n- \"zod-validation-error\": \"^3.0.3 ||...
2025-10-16T16:46:55
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
nodejs/node
a3ddfbe19189efd1aa1b37edf3edae00c2eeab86
8365edcbd0d98fdd79993a61302e35d299c3d557
test_runner: print info when test restarts When using spec reporter and running test in watch mode, print an info message containing the current datetime when tests restart. Fixes: https://github.com/nodejs/node/issues/57206 PR-URL: https://github.com/nodejs/node/pull/61160 Reviewed-By: Colin Ihrig <cjihrig@gmail.com...
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -5,6 +5,8 @@ const {\n ArrayPrototypePush,\n ArrayPrototypeShift,\n ArrayPrototypeUnshift,\n+ Date,\n+ DatePrototypeToLocaleString,\n } = primordials;\n const assert = require('assert');\n const Transform = require('internal/streams...
2026-01-17T17:33:57
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
facebook/react
4e0074737826a1296eb028c53ce4f6b6db8d09ba
7bd8716acdd9a484e81addcaa923e0a69e61d533
[DevTools] Don't pluralize if already plural (#34870) In a demo today, `cookies()` showed up as `cookieses`. While adorable, is wrong.
[ { "path": "packages/react-devtools-shared/src/devtools/views/utils.js", "patch": "@@ -205,6 +205,27 @@ export function pluralize(word: string): string {\n return word;\n }\n \n+ // Bail out if it's already plural.\n+ switch (word) {\n+ case 'men':\n+ case 'women':\n+ case 'children':\n+ ...
2025-10-16T14:50:18
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
nodejs/node
8365edcbd0d98fdd79993a61302e35d299c3d557
13a662f55986717313bc5d66e9476e138b681cc8
test_runner: fix rerun ambiguous test failures PR-URL: https://github.com/nodejs/node/pull/61392 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
[ { "path": "lib/internal/test_runner/reporter/rerun.js", "patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const {\n+ ArrayPrototypeMap,\n ArrayPrototypePush,\n JSONStringify,\n } = primordials;\n@@ -11,19 +12,55 @@ function reportReruns(previousRuns, globalOptions) {\n return async function reporter(sou...
2026-01-17T14:02:35
facebook/react
85f415e33b95d65aaa29f92268b31d33060628ac
903366b8b1ee4206020492c6e8140645c0cb563e
[compiler] Fix fbt for the ∞th time (#34865) We now do a single pass over the HIR, building up two data structures: * One tracks values that are known macro tags or macro calls. * One tracks operands of macro-related instructions so that we can later group them. After building up these data structures, we do a pass o...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/MemoizeFbtAndMacroOperandsInSameScope.ts", "patch": "@@ -7,14 +7,17 @@\n \n import {\n HIRFunction,\n+ Identifier,\n IdentifierId,\n+ InstructionValue,\n makeInstructionId,\n MutableRange,\n Place,\n- ReactiveValue,\n+ ...
2025-10-15T23:23:31
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
nodejs/node
13a662f55986717313bc5d66e9476e138b681cc8
70ec5c009d87c93e4f9f8fb03b40897b4515f327
fs: fix ENOTDIR in globSync when file is treated as dir `fs.globSync` failed with `ENOTDIR` when a path component in a glob pattern was a file but used as a directory (e.g., 'foo{,/bar}' when 'foo' is a file). This change aligns `getDirentSync` with the asynchronous `getDirent` by wrapping the `lstatSync` call in a `...
[ { "path": "lib/internal/fs/glob.js", "patch": "@@ -65,8 +65,10 @@ async function getDirent(path) {\n * @returns {DirentFromStats|null}\n */\n function getDirentSync(path) {\n- const stat = lstatSync(path, { throwIfNoEntry: false });\n- if (stat === undefined) {\n+ let stat;\n+ try {\n+ stat = lstat...
2026-01-17T13:33:55
rust-lang/rust
25dbba03a273dbeb11c591dd7f49bb7fb2c37e1e
e5c6f7afcd3ce210c5c40b12cea2b5e93f93957e
Fix `mismatched_lifetime_syntaxes` suggestions for hidden path lifetimes
[ { "path": "compiler/rustc_lint/src/lifetime_syntax.rs", "patch": "@@ -387,26 +387,24 @@ fn emit_mismatch_diagnostic<'tcx>(\n build_mismatch_suggestion(info.lifetime.ident.as_str(), &suggest_change_to_explicit_bound)\n });\n \n- let is_bound_static = bound_lifetime.is_some_and(|info| info.life...
2026-03-30T13:46:47
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
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
nodejs/node
70ec5c009d87c93e4f9f8fb03b40897b4515f327
4f6759b738efe2ee16c210d7376e126c4f5dd27a
meta: fix typos in issue template config PR-URL: https://github.com/nodejs/node/pull/61399 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: R...
[ { "path": ".github/ISSUE_TEMPLATE/config.yml", "patch": "@@ -5,10 +5,10 @@ contact_links:\n about: Please file an issue in our help repo.\n - name: 📦 Have an issue with npm?\n url: https://github.com/npm/cli/issues\n- about: npm has a seperate issue tracker.\n+ about: npm has a separate iss...
2026-01-17T10:14:31
facebook/react
1873ad7960da8fd8d497d03da8050ad88b8bcacf
77b2f909f6261ec2c5de75dbe76287ec6fead0d0
[DevTools] The bridge event types should only be defined in one direction (#34859) This revealed that a lot of the event types were defined on the wrong end of the bridge. It was also a problem that events with the same name couldn't have different arguments.
[ { "path": "packages/react-devtools-shared/src/bridge.js", "patch": "@@ -217,10 +217,15 @@ export type BackendEvents = {\n selectElement: [number],\n shutdown: [],\n stopInspectingHost: [boolean],\n- syncSelectionFromBuiltinElementsPanel: [],\n syncSelectionToBuiltinElementsPanel: [],\n unsupporte...
2025-10-15T15:42:03
rust-lang/rust
1a67e2be36e50967ea962d90364b6b150055a966
cf7da0b7277cad05b79f91b60c290aa08a17a6f0
Fix AtomicPtr::update's cfg gate
[ { "path": "library/core/src/sync/atomic.rs", "patch": "@@ -2136,7 +2136,7 @@ impl<T> AtomicPtr<T> {\n /// ```\n #[inline]\n #[stable(feature = \"atomic_try_update\", since = \"1.95.0\")]\n- #[cfg(target_has_atomic = \"8\")]\n+ #[cfg(target_has_atomic = \"ptr\")]\n #[cfg_attr(miri, trac...
2026-03-31T01:33:53
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
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
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
facebook/react
e7984651e4f123d8112f5abab39782ee70d8f4aa
5f2b571878ec3b5884f5739915a974b98d7384d5
[playground] Allow accordion tabs to open on error (#34844) There was a bug where the other output passes (aside from the "Output" tab) were unable to open on compiler error. This PR still allows for the "Output" tab to automatically open on error, but also allows other tabs to be opened. https://github.com/user-att...
[ { "path": "compiler/apps/playground/components/AccordionWindow.tsx", "patch": "@@ -22,7 +22,6 @@ 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-14T19:07:27
nodejs/node
955d34788415738a0bdc7c91e61384bbf30fa5ac
aa98dd0b94d7a3f9baa11a883368773c1dd6fd99
assert,util: fix deep comparison for sets and maps with mixed types When comparing a Set or a Map and they contain primitives as keys as well as objects, the primitives would always be skipped. That is not correct, since that may only be skipped in case all keys are objects. Fixes: https://github.com/nodejs/node/issu...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -669,8 +669,10 @@ function setObjectEquiv(array, a, b, mode, memo) {\n if (b.has(val1)) {\n continue;\n }\n- } else if (mode !== kLoose || b.has(val1)) {\n+ } else if (b.has(val1)) {\n continue;\n+ } ...
2026-01-17T01:12:45
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
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
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
facebook/react
5f2b571878ec3b5884f5739915a974b98d7384d5
56e846921d600878ae0ab7bb400fdeba97d81827
[DevTools] Filter out built-in stack frames (#34828) Treat fake eval anonymous stacks as built-in. Hide built-in stack frames unless they're used to call into a non-ignored stack frame. The two main things to fix here is that 1) we're showing a linkified stack for fake anonymous and 2) we're showing only built-ins wh...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css", "patch": "@@ -2,13 +2,17 @@\n padding: 0.25rem;\n }\n \n-.CallSite, .IgnoredCallSite {\n+.CallSite {\n display: block;\n padding-left: 1rem;\n }\n \n-.IgnoredCallSite {\n- opacity: 0.5;\n+.IgnoredCallSite, .B...
2025-10-14T13:34:57
rust-lang/rust
2d87df126960770259499fffc0afcbc262c06944
cf7da0b7277cad05b79f91b60c290aa08a17a6f0
Add a test for a now fixed ICE with `offset_of!()`
[ { "path": "tests/ui/offset-of/offset-of-unsized-trait-object-missing-lifetime.rs", "patch": "@@ -0,0 +1,20 @@\n+//@ edition:2021\n+// Regression test for #125805.\n+// ICE when using `offset_of!` on a field whose type is a bare trait object\n+// with a missing lifetime parameter.\n+\n+trait X<'a> {}\n+\n+us...
2026-03-30T23:08:31
nodejs/node
aa98dd0b94d7a3f9baa11a883368773c1dd6fd99
e3071d52b6e8190d2158d7604161503a8b626b37
tools: fix vcbuild lint-js-build PR-URL: https://github.com/nodejs/node/pull/61318 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed...
[ { "path": "vcbuild.bat", "patch": "@@ -749,15 +749,15 @@ if errorlevel 1 goto exit\n goto lint-cpp\n \n :lint-cpp\n-if not defined lint_cpp goto lint-js\n+if not defined lint_cpp goto lint-js-build\n if defined NODEJS_MAKE goto run-make-lint\n where make > NUL 2>&1 && make -v | findstr /C:\"GNU Make\" 1> NU...
2026-01-16T22:00:45
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
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
rust-lang/rust
6cd26567db61c85479cdf6192a18f6d6bce43ca8
d24ebcb47c36519b259a706e0cf3d80bcd293aea
add more FIXMEs and details to `ui/README.md`
[ { "path": "tests/ui/README.md", "patch": "@@ -36,6 +36,8 @@ These tests exercise the [`annotate-snippets`]-based emitter implementation.\n \n [`annotate-snippets`]: https://github.com/rust-lang/annotate-snippets-rs\n \n+**FIXME**: merge this with `error-emitter`\n+\n ## `tests/ui/anon-params`\n \n These tes...
2026-03-30T20:40:27
nodejs/node
e3071d52b6e8190d2158d7604161503a8b626b37
53b3c83ed4c9ac7eb351606d1a1fd2707308dccd
test_runner: nix dead reporter code reporter/utils.js formatTestReport: 1. hasChildren and showErrorDetails are never both true in existing calls. 2. Thus if hasChildren is true, showErrorDetails is false. 3. So `|| data.details?.error?.failureType === 'subtestsFailed'` is irrelevant. 4. And `\n${error}` never o...
[ { "path": "lib/internal/test_runner/reporter/spec.js", "patch": "@@ -53,7 +53,7 @@ class SpecReporter extends Transform {\n }\n \n this.#failedTests = []; // Clean up the failed tests\n- return ArrayPrototypeJoin(results, '\\n'); ;\n+ return ArrayPrototypeJoin(results, '\\n');\n }\n #handl...
2026-01-16T17:48:44
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
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
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
rust-lang/rust
d29c4895994dae92c6e8e47aec08fd4c81fb5d54
c7b206bba4434ed928e9615f31082a9ef3f67c27
add self-referential param-env normalization regression avoid ICE on invalid param-env normalization remove 120033 crash test fix comments use rustc_no_implicit_bounds set #![allow(incomplete_features)]
[ { "path": "compiler/rustc_trait_selection/src/traits/mod.rs", "patch": "@@ -300,19 +300,14 @@ fn do_normalize_predicates<'tcx>(\n Ok(predicates) => Ok(predicates),\n Err(fixup_err) => {\n // If we encounter a fixup error, it means that some type\n- // variable wound up...
2026-03-08T16:41:56
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
nodejs/node
3da4dce29658f1371fc943bc6141159260582a28
ae001bb4b74007f66f60c7e051d1d285e7595355
test: split test-esm-loader-hooks Previously whenever one of the test case fails in the CI, it barely logged anything useful in the CI and it was difficult to nail down the specific failing case with a local reproduction, especially when the test fixutre is inline JavaScript. This patch: - Puts all the inline JavaScr...
[ { "path": "test/es-module/test-esm-loader-hooks.mjs", "patch": "@@ -1,860 +0,0 @@\n-import { spawnPromisified } from '../common/index.mjs';\n-import * as fixtures from '../common/fixtures.mjs';\n-import assert from 'node:assert';\n-import { execPath } from 'node:process';\n-import { describe, it } from 'nod...
2026-01-16T14:30:12
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
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
rust-lang/rust
fe4e53ebf240e2a0d06a02813bb9ba379080a90c
4cf5f9580233c36f6bc8db76e282ba8a1c1ea491
extract AttributeParseError rendering code into smaller subfunctions
[ { "path": "compiler/rustc_attr_parsing/src/session_diagnostics.rs", "patch": "@@ -594,19 +594,96 @@ pub(crate) struct AttributeParseError<'a> {\n pub(crate) suggestions: Vec<String>,\n }\n \n+impl<'a> AttributeParseError<'a> {\n+ fn render_expected_specific_argument<G>(\n+ &self,\n+ dia...
2026-03-29T10:03:53
facebook/react
03a62b20fddb197876ce20ac5ea34994b0e5b242
b9ec735de248f46da181afbc12aa906422be0dba
[Flight] Look for moved debugInfo when logging component performance track (#34839)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -4318,7 +4318,26 @@ function flushComponentPerformance(\n \n // First find the start time of the first component to know if it was running\n // in parallel with the previous.\n- const debugInfo = __DEV__ && root._debugInfo;\n+ le...
2025-10-14T11:21:12
nodejs/node
e74b42842e768489423b7bde0767109327dc4f54
8af64193958e41c24f1bfb3d58f2e35fc8aadf06
src: fix pointer alignment The NgLibMemoryManager::ReallocImpl method prefixes the allocated memory with its size, and returns a pointer to the region after it. This pointer can however no longer be suitably aligned. On Arm 32bits this resulted in unaligned accesses, since the NEON vst1.64 instruction was used with a...
[ { "path": "src/node_mem-inl.h", "patch": "@@ -8,6 +8,8 @@\n \n namespace node {\n namespace mem {\n+static constexpr size_t kReserveSizeAndAlign =\n+ std::max(sizeof(size_t), alignof(max_align_t));\n \n template <typename Class, typename AllocatorStruct>\n AllocatorStruct NgLibMemoryManager<Class, Alloca...
2026-01-16T11:45:08
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
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
facebook/react
b9ec735de248f46da181afbc12aa906422be0dba
47905a79507f9ae5fc1bf633f7cbbd1894b9523b
[Perf Tracks]: Clear potentially large measures (#34803) Fixes https://github.com/facebook/react/issues/34770. We need to clear measures at some point, otherwise all these copies of props that we end up recording will allocate too much memory in Chromium. This adds `performance.clearMeasures(...)` calls to such cases...
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -102,6 +102,7 @@ export function logComponentRender(\n const entryName =\n isPrimaryEnv || env === undefined ? name : name + ' [' + env + ']';\n const debugTask = componentInfo.debugTask;\n+ const measureName...
2025-10-13T21:42:13
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
rust-lang/rust
e61842d378622d3bbb9271b6edc9b01872c43665
4cf5f9580233c36f6bc8db76e282ba8a1c1ea491
Update `mir-opt` 64-bit panic-abort tests for `Alignment` rename These seem to have been missed when the PR originally merged.
[ { "path": "tests/mir-opt/dont_reset_cast_kind_without_updating_operand.test.GVN.64bit.panic-abort.diff", "patch": "@@ -51,7 +51,7 @@\n StorageLive(_12);\n StorageLive(_13);\n - _13 = boxed::box_new_uninit(const <() as std::mem::SizedTypeProperties>::LAYOUT) -> [return: bb2, unwin...
2026-03-30T10:54:46
nodejs/node
9b2ee5f197adca32b41182b0944236fba36c17ac
d73c49e8492d650266121e26c0adaef3cf4b9074
doc: added 'secure' event to tls.TLSSocket Fixes #61060 PR-URL: https://github.com/nodejs/node/pull/61066 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/tls.md", "patch": "@@ -952,6 +952,18 @@ The listener callback is passed a single argument when called:\n Typically, the `response` is a digitally signed object from the server's CA that\n contains information about server's certificate revocation status.\n \n+### Event: `'secure'`\n+\n+<!...
2026-01-16T01:13:29