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 |
|---|---|---|---|---|---|
electron/electron | d920c82fc4603484f69c64d87a9baed2cc6af990 | d82b8f3b803999d56c49b24e0f4d03e97bb78beb | chore: bump chromium to 143.0.7451.0 (main) (#48362)
* chore: bump chromium in DEPS to 142.0.7429.0
* chore: bump chromium in DEPS to 142.0.7430.0
* 6954508: Reland Migrate WrappableWithNamedPropertyInterceptor to gin::Wrappable | https://chromium-review.googlesource.com/c/chromium/src/+/6954508
* https://chromium-... | [
{
"path": ".github/actions/free-space-macos/action.yml",
"patch": "@@ -17,28 +17,30 @@ runs:\n }\n \n strip_universal_deep() {\n- opwd=$(pwd)\n- cd $1\n- f=$(find . -perm +111 -type f)\n- for fp in $f\n- do\n- if [[ $(file \"$fp\") == *... | 2025-10-13T16:21:54 |
golang/go | 6aef900af4eeb4a35d3ff1237a41cf3f63c56c24 | 026fa9dc597ea8e5280d7531ce7f193ed157cad0 | runtime/metrics: fix panic in Read with empty slice
Calling Read with a nil or empty slice previously caused a panic with
"index out of range" because the function unconditionally accessed the
first element of the slice (via &m[0]) to pass the pointer to the
runtime.
This change adds a check for len(m) == 0 to return... | [
{
"path": "src/runtime/metrics/description_test.go",
"patch": "@@ -156,3 +156,10 @@ func TestDocs(t *testing.T) {\n \t\tfmt.Fprintf(os.Stderr, \"go test -generate: doc.go already up-to-date\\n\")\n \t}\n }\n+\n+func TestReadEmptySlice(t *testing.T) {\n+\t// Test that Read does not panic when given an empty ... | 2026-01-28T01:14:53 |
nodejs/node | 96f7a2be44182ce622d2b6aa28a105a16d3c7470 | ea1a240633b5834c0ba375d1c46e9d88c6997594 | deps: V8: backport 2e4c5cf9b112
Original commit message:
remove ppc and s390 from the host_arch list
We only support ppc64 and s390x.
Same changes is applied to depot_tools:
http://crrev.com/c/7100932
Change-Id: I1e4b660a1e46d1c609189301e8fd977fb7434748
Reviewed-on: https://chromium-review.g... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-11-11T12:18:04 |
facebook/react | 243a56b9a22a41b5b3df6668f9eb97b13cb41c3c | 83c7379b9601f25463826449256f0cd3d283702d | Update Flow to 0.246 (#34244)
Catching up Flow versions. Since there's plenty new errors, I'm taking
each version with breaking changes as a new PR. | [
{
"path": "package.json",
"patch": "@@ -72,8 +72,8 @@\n \"eslint-plugin-react-internal\": \"link:./scripts/eslint-rules\",\n \"fbjs-scripts\": \"^3.0.1\",\n \"filesize\": \"^6.0.1\",\n- \"flow-bin\": \"^0.245.2\",\n- \"flow-remove-types\": \"^2.245.2\",\n+ \"flow-bin\": \"^0.246\",\n+ ... | 2025-08-21T01:46:55 |
electron/electron | 52929c93dbf5898528094025cec8f5259cf1ced9 | dd25a6361bd48e665275f9c674c46c9668c0385a | build: fail publish when upload fatal errors (#48537)
We logged a fatal error but didn't exit with code 1 so the publish kept going. This was caught by a sanity check later down the release process but would have been quicker to fail out here.
Also adds some code to maybe workaround the underlying auth error | [
{
"path": "script/release/uploaders/upload-to-github.ts",
"patch": "@@ -48,7 +48,7 @@ const targetRepo = getRepo();\n const uploadUrl = `https://uploads.github.com/repos/electron/${targetRepo}/releases/${releaseId}/assets{?name,label}`;\n let retry = 0;\n \n-const octokit = new Octokit({\n+let octokit = new... | 2025-10-13T10:53:52 |
vercel/next.js | 2a9e7560a50ccf511d2eed38998e97cc78153267 | 9dad4cd9f0af904b9883895cbef9909c436cc979 | Turbopack: handle invalid RSC imports via importmap (#88146)
We have two lines of defense:
1. crates/next-custom-transforms/src/transforms/react_server_components.rs validates ESM imports of server-only and client-only and throws an issue if something is wrong. Notably, `require('server-only')` isn't caught by this
... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -50,10 +50,7 @@ use crate::{\n get_next_client_resolved_map,\n },\n next_shared::{\n- resolve::{\n- ModuleFeatureReportResolvePlugin, NextSharedRuntimeResolvePlugin,\n- get_invalid_server_only_... | 2026-02-18T13:06:18 |
golang/go | 134035855cbc84e25765c2a4af3d152aaf430c5c | f65fe3216ef67b4318f8da475ec59418dfc4fb5d | cmd/compile: simplify slice/array range loops on loong64
loong64 supports R+R addressing ({st,ld}x.{b,h,w,d} instructions)
and has implemented the relevant lowering rules (only width is 1).
Removes 1616 instructions from the go binary on loong64.
file before after Δ %
asm 575366 5... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -23,7 +23,7 @@ func cheapComputableIndex(width int64) bool {\n \t// MIPS does not have R+R addressing\n \t// Arm64 may lack ability to generate this code in our assembler,\n \t// but the architecture supports it.\n-\tcase sys.PPC64, sys.S390X:... | 2026-01-22T02:44:19 |
nodejs/node | 57b4a315cee0d7d04efc74b8f6342715f08dedd7 | 12fad1bd7bf2d2256701eaa6d44a4b96da838fe7 | tools: replace invalid expression in dependabot config
PR-URL: https://github.com/nodejs/node/pull/60649
Fixes: https://github.com/nodejs/node/issues/60637
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": ".github/dependabot.yml",
"patch": "@@ -10,10 +10,9 @@ updates:\n semver-major-days: 5\n semver-minor-days: 5\n semver-patch-days: 5\n-\n commit-message:\n prefix: meta\n- open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}}\n+ open-pull-requests-limit: 10\n \n ... | 2025-11-11T07:17:37 |
facebook/react | c2ac8b4f0e000e4e2000f0ea6d11673431191e4d | 03fda05d2c112a1fb829ef663ca4e98d540adc36 | [ci] Fix permissions for direct sync branch PRs workflow (#34241)
Because we sync built artifacts into Meta, we can't support edits from
inside www/fbsource to be synced back into OSS as it would cause merge
conflicts for future OSS PRs.
We have a workflow that should automatically catch and close these PRs,
but it l... | [
{
"path": ".github/workflows/shared_close_direct_sync_branch_prs.yml",
"patch": "@@ -18,6 +18,7 @@ jobs:\n permissions:\n # Used to create a review and close PRs\n pull-requests: write\n+ contents: write\n steps:\n - name: Close PR\n uses: actions/github-script@v7",
... | 2025-08-20T21:09:38 |
electron/electron | dd25a6361bd48e665275f9c674c46c9668c0385a | 16b5776b0170a501d8acb8105e14b15846533442 | fix: auth required websocket crash (#48510) | [
{
"path": "shell/browser/net/proxying_websocket.cc",
"patch": "@@ -401,7 +401,7 @@ void ProxyingWebSocket::OnHeadersReceivedCompleteForAuth(\n \n auto continuation = base::BindRepeating(\n &ProxyingWebSocket::OnAuthRequiredComplete, weak_factory_.GetWeakPtr());\n- auto auth_rv = AuthRequiredRespons... | 2025-10-13T08:13:32 |
vercel/next.js | 0a2bdd7fbf743fc080db184922565dfa74b23cf4 | 4f5da820804ec909d787149754f239ef634613a4 | Handle null history.state in client-side router popstate handler (#90083)
### What?
Handle `null` `history.state` in the client-side router's `popstate`
handler.
### Why?
When `pushState` or `replaceState` is called outside of Next.js with a
`null` state (or the initial history entry has no state), navigating
back/... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -362,7 +362,11 @@ function Router({\n */\n const onPopState = (event: PopStateEvent) => {\n if (!event.state) {\n- // TODO-APP: this case only happens when pushState/replaceState was called outside of Next.js.... | 2026-02-18T09:26:34 |
golang/go | a0796d8af67e147f54e06952272745aa3410c291 | 481ab86aafe0cac177df793c9946c5ef2126137c | reflect: allow conversions between slices of named {byte,rune} and string
So the reflect behavior matches that of the language.
These conversions are allowed:
[]myByte <-> string
[]myRune <-> string
[]myByte <-> myString
[]myRune <-> myString
And even if the left-hand-side is named, e.g.
myBytes([]myByte) <-> stri... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -4177,6 +4177,9 @@ type MyBytesArray [4]byte\n type MyRunes []int32\n type MyFunc func()\n type MyByte byte\n+type MyRune rune\n+type MyBytes2 []MyByte\n+type MyRunes2 []MyRune\n \n type IntChan chan int\n type IntChanRecv <-chan int\n@@ -4480,6 +4483,38 @@ ... | 2026-01-27T19:06:18 |
facebook/react | 03fda05d2c112a1fb829ef663ca4e98d540adc36 | 0bc71e67ab3d43c8c7eece258d4fdd085ee2244d | [DevTools] Fix display of stack frames with anonymous sources (#34237) | [
{
"path": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js",
"patch": "@@ -52,8 +52,8 @@ function parseStackTraceFromChromeStack(\n if (filename === '<anonymous>') {\n filename = '';\n }\n- const line = +(parsed[3] || parsed[6]);\n- const col = +(parsed[4] || parsed[7... | 2025-08-20T15:31:42 |
vercel/next.js | 4f5da820804ec909d787149754f239ef634613a4 | 2a2b7b175deac9b0241a378113d16be50a70c489 | segment cache: fix segment cache normalizer (#90111)
This fixes an issue where deploying an app that explicitly named a
catch-all segments as `[...segments]` or `[[...segments]]` would lead to
repeated ISR cache misses on that route, even if it was generated at
build time.
This is because the normalizer that is respo... | [
{
"path": "packages/next/src/server/normalizers/request/segment-prefix-rsc.test.ts",
"patch": "@@ -9,4 +9,28 @@ describe('SegmentPrefixRSCPathnameNormalizer', () => {\n segmentPath: '/_tree',\n })\n })\n+\n+ it('should extract segment prefetch paths for catch-all params named segments', () => {... | 2026-02-18T06:35:40 |
electron/electron | 16b5776b0170a501d8acb8105e14b15846533442 | cbf5c3331ffb03b5594819abd932ab9ef91b9103 | fix: launch crash when null device is disabled on Windows (#47870)
fix: fix launch crash when null device is disabled on Windows
add node flag node::ProcessInitializationFlags::kNoStdioInitialization
Co-authored-by: yangzuohui <yangzuohui@bytedance.com>
Co-authored-by: yangliu <yangliu.leo@bytedance.com> | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -193,6 +193,11 @@ Disables the Chromium [sandbox](https://www.chromium.org/developers/design-docum\n Forces renderer process and Chromium helper processes to run un-sandboxed.\n Should only be used for testing.\n \n+### --no-stdio-init\n+\n+Disable... | 2025-10-11T22:00:04 |
golang/go | 251f3aa6ee6fc3925fe8e64cd4b403bfa73b93ab | 5ec5fdc093979c55c9605931d668e209cc1e1b00 | os/exec: document blocking Stdin/Stdout/Stderr
WaitDelay only handles writes to Stdin and reads from Stdout/Stderr.
If Stdin is set to a blocking Reader, or Stdout/Stderr are set to
a blocking Writer, Wait can hang indefinitely. I don't see any way to
fix this with the current API, as there is no general way that the
... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -203,6 +203,11 @@ type Cmd struct {\n \t// stops copying, either because it has reached the end of Stdin\n \t// (EOF or a read error), or because writing to the pipe returned an error,\n \t// or because a nonzero WaitDelay was set and expired.\n+\t//\n+\t// Rega... | 2026-01-27T04:03:30 |
facebook/react | 0bc71e67ab3d43c8c7eece258d4fdd085ee2244d | 3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae | [Flight] Add `debugChannel` option to Edge and Node clients (#34236)
When a debug channel is used between the Flight server and a browser
Flight client, we want to allow the same RSC stream to be used for
server-side rendering. To support this, the Edge and Node Flight clients
also need to accept a `debugChannel` opti... | [
{
"path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js",
"patch": "@@ -56,8 +56,38 @@ export type Options = {\n findSourceMapURL?: FindSourceMapURLCallback,\n replayConsoleLogs?: boolean,\n environmentName?: string,\n+ // For the Node.js client we only support a single-direct... | 2025-08-20T14:46:34 |
vercel/next.js | 91f2f354b2c9ece2e1f47e069f421a850976f5ec | 86c3d3ee26980f70294e4cd857db312c01983e4f | refactor: fix non-determinism in resolve package (#90058)
Defer cell creation so it doesn't happen inside of async loops
There are a number of async functions in the resolve package that either directly construct ResolveResult or defer to a turbo task function, this leads to non-determinism when callers invoke these ... | [
{
"path": "crates/next-core/src/next_edge/unsupported.rs",
"patch": "@@ -52,7 +52,10 @@ impl ImportMappingReplacement for NextEdgeUnsupportedModuleReplacer {\n unsupported_module_source(lookup_path.root().owned().await?, module.clone())\n .to_resolved()\n ... | 2026-02-18T01:33:25 |
electron/electron | cbf5c3331ffb03b5594819abd932ab9ef91b9103 | 3359f903899dad09a05f9ed964658bb42b1c9fb8 | ci: fix release branch name in build stats script (#48533) | [
{
"path": "script/build-stats.mjs",
"patch": "@@ -45,7 +45,13 @@ async function main () {\n \n if (process.env.TARGET_ARCH) tags.push(`target-arch:${process.env.TARGET_ARCH}`);\n if (process.env.TARGET_PLATFORM) tags.push(`target-platform:${process.env.TARGET_PLATFORM}`);\n- if (process.env.GITHU... | 2025-10-11T05:28:09 |
golang/go | 0f72aff835111bb0e7998bdb6de3f02a1483afe7 | 03a6a2074086e186071fbc362bbb6c630f9bc84b | simd/archsimd: fix typo in the SHA256Message1 documentation string
Change-Id: I8bc5fec0475bfaebc0469d0efb2ba89af4b3f150
Reviewed-on: https://go-review.googlesource.com/c/go/+/738640
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml",
"patch": "@@ -95,7 +95,7 @@\n - go: SHA256Message1\n commutative: false\n documentation: !string |-\n- // NAME does the sigma and addtion of 1 in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME does the sigma and addition of 1... | 2026-01-22T22:34:17 |
facebook/react | 3e20dc8b9c4d335c77e246d114a1bcfd1b77aaae | ae5c2f82b3ff71e4c8808c4dc3ebe60b71a1d125 | [DevTools] Fix crash when inspecting Components suspended on data awaited in anonymous functions (#34234) | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -6,7 +6,7 @@\n *\n * @flow\n */\n-\n+import type {StackFrame as ParsedStackFrame} from 'error-stack-parser';\n import type {\n Awaited,\n ReactContext,\n@@ -844,7 +844,11 @@ export type HooksTree = Array<HooksNode>;\n \n let ... | 2025-08-20T07:34:06 |
vercel/next.js | db0ef2b233b4f0d7104d79bee7aa014bc5dd058c | 715103ad40762ce002b7b175854af35c2683c6cc | Reland "[turbopack] Fix some modification tracking bugs in TaskStorage" (#90098)
Reverts vercel/next.js#90096
* always `track_mutation()` before the mutation
* only `track_mutation()` if we are actually going to mutate
The previous attempt was reverted because we would call `track_modification` too often which lead ... | [
{
"path": "test/e2e/filesystem-cache/filesystem-cache.test.ts",
"patch": "@@ -97,6 +97,17 @@ for (const cacheEnabled of [false, true]) {\n )\n }\n \n+ // Ensure each test starts with a fresh server and no test leaks a\n+ // running server into the next one.\n+ beforeEach(async () => {\n+ ... | 2026-02-18T00:34:23 |
nodejs/node | 33f982e7ede58bda28abb3e703e04ea8eb8ef0e8 | 5e1ab9fffb8399fcc51ab1b592d0fffef4e418aa | test: deflake test-perf-hooks-timerify-histogram-sync
The previous busy loop wasn't robust enough in making sure
that the function runs for more than 1 nanosecond - and when it
runs faster than that on a fast machine, it measures to 0 for
nanosecond precision and throws a RangeErorr as histogram.record()
only takes po... | [
{
"path": "test/common/index.js",
"patch": "@@ -931,6 +931,12 @@ function expectRequiredTLAError(err) {\n }\n }\n \n+function sleepSync(ms) {\n+ const sab = new SharedArrayBuffer(4);\n+ const i32 = new Int32Array(sab);\n+ Atomics.wait(i32, 0, 0, ms);\n+}\n+\n const common = {\n allowGlobals,\n buil... | 2025-11-10T17:46:46 |
golang/go | 03a6a2074086e186071fbc362bbb6c630f9bc84b | ffb50fb7169f93c502e07868724b1f392267f696 | cmd/link: handle SRODATALRELRO in xcoffUpdateOuterSize
This is a followup to CL 723580. This fixes cgo builds on AIX.
For #76038
Change-Id: Idea959615891f3f6e33932fae7a9043778db3366
Reviewed-on: https://go-review.googlesource.com/c/go/+/738920
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/cmd/link/internal/ld/xcoff.go",
"patch": "@@ -583,7 +583,7 @@ func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {\n \tswitch stype {\n \tdefault:\n \t\tErrorf(\"unknown XCOFF outer symbol for type %s\", stype.String())\n-\tcase sym.SRODATA, sym.SFUNCTAB, sym.SSTRING:\n+\tca... | 2026-01-24T00:20:43 |
electron/electron | b992ead837179605c6384075cb863b31a27a4372 | 11f76118dbdf1f6ca9226790550f368e105799eb | fix: `dialog.showMessageBox` defaultid on Windows (#48216)
* fix: dialog.showMessageBox defaultid on Windows
* Update shell/browser/ui/message_box_win.cc
Co-authored-by: Robo <hop2deep@gmail.com>
---------
Co-authored-by: Robo <hop2deep@gmail.com> | [
{
"path": "shell/browser/ui/message_box_win.cc",
"patch": "@@ -163,8 +163,19 @@ DialogResult ShowTaskDialogWstr(gfx::AcceleratedWidget parent,\n config.dwFlags |= TDF_POSITION_RELATIVE_TO_WINDOW;\n }\n \n- if (default_id > 0)\n- config.nDefaultButton = kIDStart + default_id;\n+ if (default_id >= ... | 2025-10-10T13:39:23 |
facebook/react | 0bdb9206b77f334cc428958fc01aeea95355e8db | f508edc83fa1eb316a974c274b4411f081d6e94d | [Fizz] If we haven't painted yet, wait to reveal everything until next paint (#34230)
Before the first rAF, we don't know if there has been other paints
before this and if so when. (We could get from performance observer.) We
can assume that it's not earlier than 0 so we used delay up until the
throttle time starting ... | [
{
"path": "fixtures/ssr/src/components/LargeContent.js",
"patch": "@@ -1,8 +1,4 @@\n-import React, {\n- Fragment,\n- Suspense,\n- unstable_SuspenseList as SuspenseList,\n-} from 'react';\n+import React, {Suspense, unstable_SuspenseList as SuspenseList} from 'react';\n \n export default function LargeCont... | 2025-08-19T00:22:40 |
vercel/next.js | 3bd5d75c62eefa13cc5995a2726a35738a9d775c | d1d2912ec314a18f115e83040e84aca6f442988b | [turbopack] Fix concurrent task lock panic during error formatting (#90056)
The recent change to move task description formatting onto `TaskGuard`
introduced a subtle issue when formatting these rare error messages. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1643,21 +1643,24 @@ impl AggregationUpdateQueue {\n if result.is_err() {\n retry += 1;\n if retry > MAX_RETRIES {\n- panic!(\n- \"inne... | 2026-02-17T23:54:11 |
golang/go | 64e8b238a1e5ce4cc47eec561db0ccf904e29e50 | a977717393fd779921ca258988230dbc741f5912 | runtime: rename aeshashbody to runtime.aeshashbody
Currently this is a raw symbol name with no package component, which is
confusing when seen in profilers or similar tools.
This function does not follow a Go ABI, and thus should not have a Go
function declaration. go vet requires declaration for standard assembly
fu... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -954,7 +954,7 @@ TEXT runtime·memhash(SB),NOSPLIT,$0-16\n \tMOVL\tp+0(FP), AX\t// ptr to data\n \tMOVL\ts+8(FP), BX\t// size\n \tLEAL\tret+12(FP), DX\n-\tJMP\taeshashbody<>(SB)\n+\tJMP\truntime·aeshashbody<>(SB)\n noaes:\n \tJMP\truntime·memhashFallback(SB)\n ... | 2026-01-22T16:47:42 |
nodejs/node | 408aba6190367d15c34d0437c60c480fe022852d | 43eb6cb5819f08e35231c33fb2fc423f08543eb0 | deps: nghttp2: revert 7784fa979d0b
This commit reverts "Make error handling robust".
Without this revert, we are getting timeouts, crashes, and different
error codes in `parallel/test-http2-*`.
Refs: https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7
PR-URL: https://github.com/nodejs/n... | [
{
"path": "deps/nghttp2/lib/nghttp2_int.h",
"patch": "@@ -52,11 +52,7 @@ typedef enum {\n * Unlike NGHTTP2_ERR_IGN_HTTP_HEADER, this does not invoke\n * nghttp2_on_invalid_header_callback.\n */\n- NGHTTP2_ERR_REMOVE_HTTP_HEADER = -106,\n- /*\n- * Cancel pushed stream.\n- */\n- NGHTTP2_ERR_PU... | 2025-10-26T20:32:37 |
electron/electron | 11f76118dbdf1f6ca9226790550f368e105799eb | 37c7487600a8b61ea1b09eee1feebf3e1abad968 | fix: unexpected `openExternal` dialog on macOS Tahoe (#48502)
fix: unexpected openExternal dialog on macOS Tahoe | [
{
"path": "shell/common/platform_util_mac.mm",
"patch": "@@ -148,6 +148,12 @@ void OpenExternal(const GURL& url,\n return;\n }\n \n+ // Check this to prevent system dialog from popping up on macOS Tahoe.\n+ if (![[NSWorkspace sharedWorkspace] URLForApplicationToOpenURL:ns_url]) {\n+ std::move(cal... | 2025-10-10T10:48:44 |
facebook/react | 0c89b160f6382814aa02cc469a80f59c720ab6bb | 87a45ae37f4014b6df548a5d9b06bad5dc557992 | [Flight] Add DebugInfo for Bundler Chunks (#34226)
This adds a "suspended by" row for each chunk that is referenced from a
client reference. So when you select a client component, you can see
what bundles will block that client component when loading on the
client.
This is only done in the browser build since if we a... | [
{
"path": ".eslintrc.js",
"patch": "@@ -468,6 +468,7 @@ module.exports = {\n files: ['packages/react-server-dom-webpack/**/*.js'],\n globals: {\n __webpack_chunk_load__: 'readonly',\n+ __webpack_get_script_filename__: 'readonly',\n __webpack_require__: 'readonly',\n ... | 2025-08-18T15:34:00 |
vercel/next.js | d1d2912ec314a18f115e83040e84aca6f442988b | 4d3b25070277fba906917a90e0953f33a966151a | [devtools] Add support for error causes in the dev overlay (#90108) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/runtime-error/error-cause.tsx",
"patch": "@@ -0,0 +1,91 @@\n+import { useMemo } from 'react'\n+import React from 'react'\n+import { CodeFrame } from '../../components/code-frame/code-frame'\n+import { ErrorOverlayCallStack } from '../../compon... | 2026-02-17T23:33:11 |
nodejs/node | 60b9aaa3a95f48dc7a10e5bfbec4071fe04048cd | 38af5317b4c54a585f8899b2be7baeba1fe98bb7 | test: async iife in repl
PR-URL: https://github.com/nodejs/node/pull/44878
Fixes: https://github.com/nodejs/node/issues/38685
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Antoine du Hamel <duhamelantoin... | [
{
"path": "test/parallel/test-repl-async-iife.js",
"patch": "@@ -0,0 +1,10 @@\n+'use strict';\n+require('../common');\n+\n+// Note: This test ensures that async IIFE doesn't crash\n+// Ref: https://github.com/nodejs/node/issues/38685\n+\n+const repl = require('repl').start({ terminal: true });\n+\n+repl.wri... | 2025-11-08T22:03:18 |
golang/go | 2d1f571c6b420757b2a72b9e53d486840a1317f9 | f532f87a9895afc60b6ab17969c67e33d1ed1564 | cmd/compile, runtime: avoid improper control transfer instruction hints on riscv64
On RISC-V the JAL and JALR instructions provide Return Address
Stack(RAS) prediction hints based on the registers used (as per section
2.5.1 of the RISC-V ISA manual). When a JALR instruction uses X1 or X5
as the source register, it hin... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go",
"patch": "@@ -118,6 +118,7 @@ func init() {\n \tregCtxt := regNamed[\"X26\"]\n \tcallerSave := gpMask | fpMask | regNamed[\"g\"]\n \tr5toR6 := regNamed[\"X5\"] | regNamed[\"X6\"]\n+\tregX5 := regNamed[\"X5\"]\n \n \tvar (\n \t\tgpstore = regInfo{... | 2025-12-04T11:06:20 |
electron/electron | 37c7487600a8b61ea1b09eee1feebf3e1abad968 | 9e46efb8f704416f32ed0c1a1e4e44a678e7346f | fix: crash when inspector evaluates on provisional frames (#48503) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -143,3 +143,4 @@ revert_partial_remove_unused_prehandlemouseevent.patch\n allow_electron_to_depend_on_components_os_crypt_sync.patch\n disable_nsautofillheuristiccontroller_on_macos_26.patch\n expose_referrerscriptinfo_hostdefinedoptionsindex.patch\n+inspe... | 2025-10-10T09:34:09 |
facebook/react | 87a45ae37f4014b6df548a5d9b06bad5dc557992 | 01ed0e96427328780c8da4caa93377eb9746ff08 | [eslint-plugin-react-hooks][RulesOfHooks] handle React.useEffect in addition to useEffect (#34076)
## Summary
This is a fix for https://github.com/facebook/react/issues/34074
## How did you test this change?
I added tests in the eslint package, and ran `yarn jest`. After adding
the new tests, I have this:
On main ... | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -7735,6 +7735,9 @@ if (__EXPERIMENTAL__) {\n useEffect(() => {\n onStuff();\n }, []);\n+ React.useEffect(() => {\n+ onStuff();\n+ }, []);\n ... | 2025-08-18T13:12:49 |
vercel/next.js | 55ea60e6b7df89479c0da4f587c88546e0e7b617 | 2e5fc012d3dc4533d923980ebe46b0363a823c0c | [test] Replace flaky webpack snapshots in `cache-components-errors` (#90105) | [
{
"path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts",
"patch": "@@ -2567,22 +2567,12 @@ describe('Cache Components Errors', () => {\n }\n } else {\n if (isDebugPrerender) {\n- expect(output).toMatchInlineSnapshot(... | 2026-02-17T21:20:04 |
golang/go | cf0c42c2ca04c3ae9fa20ce9dd4f6bce301bd37b | bb221e8954b639e8790fd1d4a8cd35ff3a9340aa | cmd/compile/internal/reflectdata: fix divide by zero for zero-size array elements
When generating equality signatures for arrays with zero-size ASPECIAL
elements (e.g., [3]struct{_ [0]float64}), the compiler crashed with
a divide by zero error when computing the loop unroll factor.
Skip comparison code generation for... | [
{
"path": "src/cmd/compile/internal/reflectdata/alg.go",
"patch": "@@ -785,6 +785,9 @@ func (e *eqSigBuilder) build(t *types.Type) {\n \t\t\t// The generated loops are kind of inefficient as well,\n \t\t\t// so unroll the loop a bit.\n \t\t\tconst unrollSize = 32 // make loop body compare around this many b... | 2026-01-25T14:59:25 |
nodejs/node | 38af5317b4c54a585f8899b2be7baeba1fe98bb7 | b98ada27e7fe7f66c560fd5601ad243e1419b259 | doc: fix link in `--env-file=file` section
PR-URL: https://github.com/nodejs/node/pull/60563
Fixes: https://github.com/nodejs/node/issues/60562
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -4150,7 +4150,7 @@ node --stack-trace-limit=12 -p -e \"Error.stackTraceLimit\" # prints 12\n [debugging security implications]: https://nodejs.org/en/docs/guides/debugging-getting-started/#security-implications\n [deprecation warnings]: deprecations.md#list-of-deprec... | 2025-11-08T20:00:49 |
electron/electron | 3a53c71324106a49a2d915080f1389cd44093b79 | 0d478ec69cf5e7bc955cf799b764e7263769178b | fix: broken transparent window styles on resizable change (#48378)
* fix: wrong api call
* fix: consistency of the resize state
* fix: edge cases
* chore: add detailed comments
* fix: lint
* chore: only windows
* chore: use transparent | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -266,7 +266,7 @@ NativeWindowViews::NativeWindowViews(const gin_helper::Dictionary& options,\n params.remove_standard_frame = !has_frame() || has_client_frame();\n \n // If a client frame, we need to draw our own shadows.\n- if (IsTransluce... | 2025-10-09T07:49:20 |
golang/go | cc6923e839ff10581223a600fca805203d56acd5 | f809faeb8e2534da29e980ebd98dfbd4e8a7f4ba | cmd/compile: reduce lock/scheduler contention
During the parallel section of compilation, we limit the amount of
parallelism to prevent scheduler churn. We do this with a worker
scheduler, but it does not have insight on when a compilation is blocked
due to lock contention.
The symbol table was protected with a lock.... | [
{
"path": "src/cmd/compile/internal/gc/compile.go",
"patch": "@@ -142,73 +142,47 @@ func compileFunctions(profile *pgoir.Profile) {\n \t\t// Compile the longest functions first,\n \t\t// since they're most likely to be the slowest.\n \t\t// This helps avoid stragglers.\n+\t\t// Since we remove from the end ... | 2025-12-01T09:40:16 |
vercel/next.js | 2e5fc012d3dc4533d923980ebe46b0363a823c0c | b0595b17ae331a2e1cccff35da8d093f0636c8e1 | [Instant] test: remove unnecessary reactDebugChannel permutation (#90103)
This is already handled by our test sharding, we don't need to duplicate
it | [
{
"path": "test/e2e/app-dir/instant-validation-static-shells/fixtures/invalid-blocking-page-below-static/next.config.ts",
"patch": "@@ -5,7 +5,6 @@ const nextConfig: NextConfig = {\n productionBrowserSourceMaps: true,\n experimental: {\n prerenderEarlyExit: false,\n- reactDebugChannel: process.en... | 2026-02-17T20:40:21 |
nodejs/node | b98ada27e7fe7f66c560fd5601ad243e1419b259 | 828cd8ae6ad7c949559268277353ad75c9f6c553 | doc: fix linter issues
PR-URL: https://github.com/nodejs/node/pull/60636
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -253,19 +253,19 @@ added: v0.11.4\n \n Produces a socket/stream to be used for HTTP requests.\n \n-By default, this function behaves identically to [`net.createConnection(options)`][],\n+By default, this function behaves identically to [`net.createConnection()`][],\... | 2025-11-08T17:09:29 |
electron/electron | ea8f43f9b9e52c6d91d25bf6e839e10c4beedbb0 | e8e91c331a715126271b368782887c36a976dae1 | chore: bump node to v22.20.0 (main) (#48383)
* chore: bump node in DEPS to v22.20.0
* chore: fixup patches
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '142.0.7417.0',\n 'node_version':\n- 'v22.19.0',\n+ 'v22.20.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-10-08T13:19:08 |
golang/go | 30dff416e42b0bd44237b7658eafc7063dda6b63 | f8b72802d7a7dd2bcb81bdaead80be802e16351b | cmd/compile: redo how equality functions are generated
Instead of generating an equality function for each type that
needs it, generate one per "signature". A "signature" is a
summary of the comparisons needed to check a type for equality.
For instance, the type
type S struct {
i int32
j uint32
s str... | [
{
"path": "src/cmd/compile/internal/reflectdata/alg.go",
"patch": "@@ -6,6 +6,9 @@ package reflectdata\n \n import (\n \t\"fmt\"\n+\t\"go/constant\"\n+\t\"strconv\"\n+\t\"strings\"\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/compare\"\n@@ -14,7 +17,6 @@ import (\n \t\"cmd/compile/interna... | 2025-11-29T01:17:24 |
vercel/next.js | a7c61c10ad5f49a081b3bc1d53fefe6484700ff4 | 85d74bb4e254c51d7a609dc1f38cb8589f683a22 | [turbopack] Run the deployment tests for turbopack and webpack (#84360)
Fork the set of deployment tests so they run with both turbopack and
webpack. Now that turbopack is the default bundler we need this
coverage.
Because we are now running twice as many tests, decrease concurrency,
otherwise we hit rate limits on v... | [
{
"path": ".github/workflows/build_reusable.yml",
"patch": "@@ -114,7 +114,7 @@ env:\n VERCEL_ADAPTER_TEST_TOKEN: ${{ secrets.VERCEL_ADAPTER_TEST_TOKEN }}\n VERCEL_ADAPTER_TEST_TEAM: vtest314-next-adapter-e2e-tests\n VERCEL_TURBOPACK_TEST_TOKEN: ${{ secrets.VERCEL_TURBOPACK_TEST_TOKEN }}\n- VERCEL_TU... | 2026-02-17T19:52:10 |
nodejs/node | 828cd8ae6ad7c949559268277353ad75c9f6c553 | d13796978902e70a5b7e0ce25ab7b4cee9773d81 | doc: add missing history entry for `sqlite.md`
PR-URL: https://github.com/nodejs/node/pull/60607
Fixes: https://github.com/nodejs/node/issues/60601
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -4,6 +4,12 @@\n \n <!-- YAML\n added: v22.5.0\n+changes:\n+ - version:\n+ - v23.4.0\n+ - v22.13.0\n+ pr-url: https://github.com/nodejs/node/pull/55890\n+ description: SQLite is no longer behind `--experimental-sqlite` but still experimental.\n -->\n \... | 2025-11-08T16:56:14 |
rust-lang/rust | c03b20d198b910394b653f950618cb283fce08bc | be6df70d2548d90e7d18aba8ccc518d311a7a718 | fix: Turn back `TyLoweringContext.store` to self after lowering parent defaults | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -2411,10 +2411,11 @@ pub(crate) fn generic_defaults_with_diagnostics_query(\n }\n let resolver = def.resolver(db);\n \n+ let store_for_self = generic_params.store();\n let mut ctx = TyLoweringContext::new(\n ... | 2026-01-23T16:03:27 |
electron/electron | 6756974828edcda00829042b75bf96ef0e208d61 | d6dfd4ed7a8f3664e13da7e60eb39529820b72bd | build: fixup chromedriver and mksnapshot (#48470)
* build: update build tools to get proper exit codes from e build
xref: https://github.com/electron/build-tools/pull/759
* build: target zips directly
mksnapshot and chromedriver have issues with siso trying to run a separate build and zip step, so just target the z... | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -79,7 +79,7 @@ runs:\n shell: bash\n run: |\n cd src\n- e build --target electron:electron_mksnapshot\n+ e build --target electron:electron_mksnapshot_zip\n ELECTRON_DEPOT_TOOLS_DISABLE_LOG=1 e d gn... | 2025-10-07T03:22:55 |
golang/go | f8b72802d7a7dd2bcb81bdaead80be802e16351b | b408256be720c51ff1730d7a97389a975744a312 | encoding/json: fix typo in package doc.
Change-Id: Id5520757e4d73e56e533e4de4f5f303105c4339e
Reviewed-on: https://go-review.googlesource.com/c/go/+/738180
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: David Symonds <dsymonds@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Dav... | [
{
"path": "src/encoding/json/encode.go",
"patch": "@@ -26,7 +26,7 @@\n //\n // Due to the Go Backwards Compatibility promise (https://go.dev/doc/go1compat)\n // there are a number of behaviors this package exhibits that may cause\n-// interopability issues, but cannot be changed. In particular the following... | 2026-01-22T00:25:18 |
facebook/react | 431bb0bddb640d01d668448f1133e44bd3eb3e11 | 5063b3283fcae4bb43756d0d18d32008e3910bea | [DevTools] Mark Unknown Reasons for Suspending with a Note (#34200)
We currently only track the reason something might suspend in
development mode through debug info but this excludes some cases. As a
result we can end up with boundary that suspends but has no cause. This
tries to detect that and show a notice for why... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -15,6 +15,7 @@ import type {\n ReactIOInfo,\n ReactStackTrace,\n ReactCallSite,\n+ Wakeable,\n } from 'shared/ReactTypes';\n \n import type {HooksTree} from 'react-debug-tools/src/ReactDebugHooks';\n@@ -87,6 +88,10... | 2025-08-15T22:32:27 |
nodejs/node | 3dd26f32fb01a012f3d162b91e06ccc3770e3752 | 343689f975257853a8cc36bae33c1a1c0d706b42 | doc: recommend events.once to manage 'close' event
`events.once` is a great way to manage the `close` / `error` / `exit`
events of a child process. It creates a Promise that is fulfilled when
the EventEmitter emits the given event or that is rejected if the
EventEmitter emits 'error' while waiting.
I think a lot of p... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -29,6 +29,7 @@ ls.on('close', (code) => {\n \n ```mjs\n import { spawn } from 'node:child_process';\n+import { once } from 'node:events';\n const ls = spawn('ls', ['-lh', '/usr']);\n \n ls.stdout.on('data', (data) => {\n@@ -39,9 +40,8 @@ ls.stderr.on('data'... | 2025-11-08T15:04:44 |
vercel/next.js | 85d74bb4e254c51d7a609dc1f38cb8589f683a22 | 32b1479a8c6b44f96a0d6c1598731a733a0074af | [Instant] allow non-blocking dynamic holes and errors in shared parents (#89875)
Closes NAR-777 | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1052,5 +1052,11 @@\n \"1051\": \"Turbopack trace server is not supported on this platform (%s/%s) because native bindings are not available. Only WebAssembly (WASM) bindings were loaded, and Turbopack requires native bindings.\",\n \"1052\": \"Turbopa... | 2026-02-17T19:45:59 |
electron/electron | 715808ecbe2c726f2174853a2d2db2676ebbc0e9 | 01cab978f7359374efc5bd609da0448249fbcec3 | docs: mention that webUtils should be used via preload script (#45861)
* docs: mention that webUtils should be used via preload script
* docs: suppress lint errors
* docs: clarify webUtils usage scope
* docs: exclude potentially dangerous alert() in the example code
* docs: minor change
* docs: minor change
* do... | [
{
"path": "docs/api/web-utils.md",
"patch": "@@ -17,11 +17,27 @@ Returns `string` - The file system path that this `File` object points to. In th\n This method superseded the previous augmentation to the `File` object with the `path` property. An example is included below.\n \n ```js @ts-nocheck\n-// Befor... | 2025-10-03T20:07:38 |
golang/go | b408256be720c51ff1730d7a97389a975744a312 | 27fcec4d8f3041e845762303d85d868cc3e351e8 | cmd/compile: fix loopvar version detection with line directives
The Go loop variable semantics changed in Go 1.22: loop variables are now
created per-iteration instead of per-loop. The compiler decides which
semantics to use based on the Go version in go.mod.
When go.mod specifies go 1.21 and the code is built with a... | [
{
"path": "src/cmd/compile/internal/loopvar/loopvar_test.go",
"patch": "@@ -6,6 +6,7 @@ package loopvar_test\n \n import (\n \t\"internal/testenv\"\n+\t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"regexp\"\n@@ -381,3 +382,62 @@ func TestLoopVarVersionDisableGoBuild(t *testing.T) {\n \t\tt.Errorf(\"err... | 2026-01-21T06:57:14 |
facebook/react | 6ffcac8558efbd204c7df5d52787a90e507dd8d7 | 724b324b966343f08ff0cb16ec9d8013e3891dfd | [compiler] Add support for diagnostic hints (#34126)
Hints are meant as additional information to present to the developer
about an error. The first use-case here is for the suggestion to name
refs with "-Ref" if we encounter a mutation that looks like it might be
a ref. The original error printing used a second error... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -58,11 +58,15 @@ export type CompilerDiagnosticDetail =\n /**\n * A/the source of the error\n */\n- {\n- kind: 'error';\n- loc: SourceLocation | null;\n- message: string;\n- };\n+ | {\n+ kin... | 2025-08-15T22:09:27 |
nodejs/node | 887e3eca98afe6522e1d5098b938556fca36c463 | 8c32a71a7b9fc7755faf53887f0958378091c311 | doc: fix typo in `process.unref` documentation
PR-URL: https://github.com/nodejs/node/pull/59698
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -4337,7 +4337,7 @@ added:\n \n > Stability: 1 - Experimental\n \n-* `maybeUnfefable` {any} An object that may be \"unref'd\".\n+* `maybeRefable` {any} An object that may be \"unref'd\".\n \n An object is \"unrefable\" if it implements the Node.js \"Refable protoc... | 2025-11-08T14:55:15 |
rust-lang/rust | 2a543acbaf7739b547ca95c1d8d49758cfd510f4 | 1eeba934aef84cf5fe94df9b3c1ead8e19f18ff9 | Moved and rename issue-50411 to tests/ui/mir/inliner-double-elaborate
* Move issue-50411 to tests/ui/mir/inliner-double-elaborate
* Addded the link for the issue to inliner-double-elaborate.rs
* Fix tidy issues
* Renamed to inliner-double-elaborate.rs | [
{
"path": "tests/ui/mir/inliner-double-elaborate.rs",
"patch": "@@ -1,4 +1,4 @@\n-// Regression test for #50411: the MIR inliner was causing problems\n+// Regression test for https://github.com/rust-lang/rust/issues/50411: the MIR inliner was causing problems\n // here because it would inline promoted code ... | 2026-03-25T10:13:13 |
vercel/next.js | ffdf8fdeb0ab0eefe96b3a39f373b225d9e74fe1 | ce738b9f8c8e8b990bcd052f46463e04ccfdaa98 | next-stats-action: avoid pnpm EXDEV during stats installs (#90100)
## Summary
- fix flaky `pnpm install` failures in the stats action caused by
cross-device hardlinking (`ERR_PNPM_EXDEV`)
- force `pnpm` to use `--package-import-method=copy` for installs run in
temp repos
- apply the same setting in both install paths ... | [
{
"path": ".github/actions/next-stats-action/src/index.js",
"patch": "@@ -117,7 +117,9 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n usePnpm\n ? // --no-frozen-lockfile is used here to tolerate lockfile\n // changes from mergi... | 2026-02-17T19:05:43 |
golang/go | 27fcec4d8f3041e845762303d85d868cc3e351e8 | 478d86446e88dc9e0b46e08914cb564d7c705d1e | runtime: speed up cheaprand and cheaprand64
The current cheaprand performs 128-bit multiplication on 64-bit numbers
and truncate the result to 32 bits, which is inefficient.
A 32-bit specific implementation is more performant because it performs
64-bit multiplication on 32-bit numbers instead.
The current cheaprand6... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -273,6 +273,10 @@ func CountPagesInUse() (pagesInUse, counted uintptr) {\n \treturn\n }\n \n+func Blocksampled(cycles, rate int64) bool { return blocksampled(cycles, rate) }\n+\n+func Cheaprand() uint32 { return cheaprand() }\n+func Cheaprand64() ... | 2026-01-23T03:44:50 |
electron/electron | 01cab978f7359374efc5bd609da0448249fbcec3 | 7cb1552614a5b9e2b45b8135b7c04b0773937651 | refactor: remove `gin_helper::Arguments` (#48374)
* refactor: make api::Clipboard::GetClipboardBuffer() private
* refactor: move GetClipboadBuffer() into anonymous namespace
* refactor: use gin::Arguments in StopRecording()
* refactor: use gin::Arguments in ImageView::New()
* refactor: use gin::Arguments in Append... | [
{
"path": "filenames.gni",
"patch": "@@ -629,8 +629,6 @@ filenames = {\n \"shell/common/gin_converters/usb_device_info_converter.h\",\n \"shell/common/gin_converters/value_converter.cc\",\n \"shell/common/gin_converters/value_converter.h\",\n- \"shell/common/gin_helper/arguments.cc\",\n- \... | 2025-10-03T19:10:29 |
facebook/react | 724b324b966343f08ff0cb16ec9d8013e3891dfd | 45a6532a088432010c40cbcac1fb6b6f8d56dd69 | [compiler] Add hint to name variables with "Ref" suffix (#34125)
If you have a ref that the compiler doesn't know is a ref (say, a value
returned from a custom hook) and try to assign its `.current = ...`, we
currently fail with a generic error that hook return values are not
mutable. However, an assignment to `.curre... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AliasingEffects.ts",
"patch": "@@ -50,7 +50,7 @@ export type AliasingEffect =\n /**\n * Mutate the value and any direct aliases (not captures). Errors if the value is not mutable.\n */\n- | {kind: 'Mutate'; value: Place}\n+ | {... | 2025-08-15T22:05:29 |
nodejs/node | 4e7f9c997d93d07a7d11ba7f2ed86a074e1f49fe | 1727a8f1b2485ccf7468c4af21e083837f380488 | watch: fix interaction with multiple env files
PR-URL: https://github.com/nodejs/node/pull/60605
Fixes: https://github.com/nodejs/node/issues/60599
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.co... | [
{
"path": "lib/internal/main/watch_mode.js",
"patch": "@@ -34,7 +34,10 @@ markBootstrapComplete();\n \n const kKillSignal = convertToValidSignal(getOptionValue('--watch-kill-signal'));\n const kShouldFilterModules = getOptionValue('--watch-path').length === 0;\n-const kEnvFile = getOptionValue('--env-file')... | 2025-11-08T14:35:07 |
rust-lang/rust | 11a338deb6884f72f3d3558d810e9b025de23167 | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | Fix nested zero-args delegation ICE | [
{
"path": "compiler/rustc_ast_lowering/src/delegation.rs",
"patch": "@@ -432,6 +432,17 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n args.push(arg);\n }\n \n+ // If we have no params in signature function but user still wrote some code... | 2026-03-25T09:08:31 |
golang/go | 478d86446e88dc9e0b46e08914cb564d7c705d1e | 8f739162e6479e98b0950ac9dc2f69cd79031be2 | cmd/compile: on amd64 use 32bits copies for 64bits copies of 32bits values
Fixes #76449
This saves a single byte for the REX prefix per OpCopy it triggers on.
Change-Id: I1eab364d07354555ba2f23ffd2f9c522d4a04bd0
Reviewed-on: https://go-review.googlesource.com/c/go/+/731640
Reviewed-by: Michael Pratt <mpratt@google.c... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isGPReg(r int16) bool {\n+\treturn x86.REG_AL <= r && r <= x86.REG_R15\n+}\n+\n func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n... | 2025-12-20T13:11:35 |
vercel/next.js | ce738b9f8c8e8b990bcd052f46463e04ccfdaa98 | 7f60746e127f84982dfb9a4dd1be42fc606f2e85 | Disable jest cache for CI instead of wiping (#90097)
This is aiming to fix sporadic failures from jest transforms which is
most likely caused by the change to output to custom jest-cache folder
and wipe that between runs. Instead this disables the cache via
`--no-cache` flag and also fixes WASM bindings issue that sta... | [
{
"path": ".github/workflows/build_reusable.yml",
"patch": "@@ -322,7 +322,7 @@ jobs:\n # Jest has a global cache, so PRs that poison the cache can bring down CI\n - name: Clean up stray files\n if: ${{ always() }}\n- run: rm -f /tmp/package-lock.json .jest-cache\n+ run: rm... | 2026-02-17T18:34:54 |
electron/electron | 7cb1552614a5b9e2b45b8135b7c04b0773937651 | 49c37b4daa434048eda52cd9b4a8a07380e50d29 | fix: accentColor set distinguishes the frame (#48405)
* fix: accentColor set distinguishes the frame
* chore: invalid change
* fix: lint | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -31,15 +31,15 @@ namespace electron {\n \n namespace {\n \n-void SetWindowBorderAndCaptionColor(HWND hwnd, COLORREF color) {\n- if (base::win::GetVersion() < base::win::Version::WIN11)\n- return;\n-\n- HRESULT result =\n- DwmSetWin... | 2025-10-03T18:10:18 |
facebook/react | 2d98b45d92ee9adc5ec6dbd2a5a270e0fd2607a4 | 2ba7b07ce10448cc37d793a50d5ca0999e63aad8 | [DevTools] Fix Suspense boundaries always being marked as not suspended (#34206) | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -6071,6 +6071,11 @@ export function attach(\n nativeTag = getNativeTag(fiber.stateNode);\n }\n \n+ let isSuspended: boolean | null = null;\n+ if (tag === SuspenseComponent) {\n+ isSuspended = memoized... | 2025-08-15T17:39:59 |
rust-lang/rust | 08e064a9cb46008d72236dd83737f160afd67e99 | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | add regression test for 154189
fix ci errors | [
{
"path": "tests/ui/coherence/generalize-associated-type-alias.rs",
"patch": "@@ -0,0 +1,22 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/154189.\n+#![feature(unboxed_closures)]\n+\n+trait ToUnit<'a> {\n+ type Unit;\n+}\n+\n+impl ToUnit<'_> for *const u32 {\n+ type Unit = ();\n+... | 2026-03-25T07:48:57 |
nodejs/node | 6225189de90b64f374a8e93450c69e9c67cdccd8 | b8e264d3c36d2935f9a8d0426e9c9bc014ae089f | doc: fix pseudo code in modules.md
This problem was introduced in PR #38837.
PR-URL: https://github.com/nodejs/node/pull/57677
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -414,7 +414,7 @@ NODE_MODULES_PATHS(START)\n 4. while I >= 0,\n a. if PARTS[I] = \"node_modules\", GOTO d.\n b. DIR = path join(PARTS[0 .. I] + \"node_modules\")\n- c. DIRS = DIR + DIRS\n+ c. DIRS = DIRS + DIR\n d. let I = I - 1\n 5. return DIRS + GL... | 2025-11-08T14:34:49 |
vercel/next.js | 7f60746e127f84982dfb9a4dd1be42fc606f2e85 | 3badef4042944b3958783141547b1d64a1f18fed | Revert "[turbopack] Fix some modification tracking bugs in TaskStorage" (#90096)
Reverts vercel/next.js#89708
This is breaking the filesystem-caching-test
https://github.com/vercel/next.js/actions/runs/22089976734/job/63836669063#step:35:3409 | [
{
"path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs",
"patch": "@@ -1476,8 +1476,8 @@ fn generate_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n #check_access\n let current = self.typed().flags.#field_name();\n ... | 2026-02-17T18:29:40 |
electron/electron | 37a115b8fd02ba0bc89f7e76ff37700b4a0b5c19 | e7e29ea876894d603c2d3d58e7ba5c1cb71dc4f1 | fix: initialze featurelist before parsing features (#48411) | [
{
"path": "shell/app/electron_main_delegate.cc",
"patch": "@@ -13,10 +13,12 @@\n #include \"base/apple/bundle_locations.h\"\n #include \"base/base_switches.h\"\n #include \"base/command_line.h\"\n+#include \"base/debug/leak_annotations.h\"\n #include \"base/debug/stack_trace.h\"\n #include \"base/environmen... | 2025-10-02T23:18:14 |
facebook/react | a96a0f3903ea0a9d45ff7c30a3fd9efe830c4628 | 02a8811864caf09ed1229e939742f793a8ed5791 | Fix fragmentInstance#compareDocumentPosition nesting and portal cases (#34069)
Found a couple of issues while integrating
FragmentInstance#compareDocumentPosition into Fabric.
1. Basic checks of nested host instances were inaccurate. For example,
checking the first child of the first child of the Fragment would not
r... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -38,9 +38,16 @@ import hasOwnProperty from 'shared/hasOwnProperty';\n import {checkAttributeStringCoercion} from 'shared/CheckStringCoercion';\n import {REACT_CONTEXT_TYPE} from 'shared/ReactSymbols';\n import {\n- isFi... | 2025-08-15T16:14:23 |
nodejs/node | b8e264d3c36d2935f9a8d0426e9c9bc014ae089f | ca9196980842c76eb4b95ab0c7a63c1af68c43ca | src: tag v8 aligned pointer slots with embedder data type tags
PR-URL: https://github.com/nodejs/node/pull/60602
Fixes: https://github.com/nodejs/node/issues/60589
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: ... | [
{
"path": "src/README.md",
"patch": "@@ -126,10 +126,10 @@ Typical ways of working with internal fields are:\n * `obj->GetInternalField(i)` to get a JavaScript value from an internal field.\n * `obj->SetInternalField(i, v)` to store a JavaScript value in an\n internal field.\n-* `obj->GetAlignedPointerFro... | 2025-11-08T14:27:25 |
rust-lang/rust | 86aac98cfcc709b989d1355e48d6210dac5b2b08 | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | install-template.sh: Optimize by using Bourne shell builtins.
This replaces forking separate processes and using "cut" with Bourne
shell builtin operations for "remove largest suffix pattern" and
"remove smallest prefix pattern" operations. | [
{
"path": "src/tools/rust-installer/install-template.sh",
"patch": "@@ -433,8 +433,8 @@ uninstall_components() {\n local _directive\n while read _directive; do\n \n- local _command=`echo $_directive | cut -f1 -d:`\n- local _file=`echo $_directive | cut -f2 -d:`\... | 2026-03-25T07:30:12 |
electron/electron | e7e29ea876894d603c2d3d58e7ba5c1cb71dc4f1 | b40a4befd42255d731ec3f68a96e96c1b9b96cef | fix: snapped window restoring to correct position (#48296) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -509,7 +509,7 @@ void NativeWindowViews::HandleSizeEvent(WPARAM w_param, LPARAM l_param) {\n WINDOWPLACEMENT wp;\n wp.length = sizeof(WINDOWPLACEMENT);\n \n- if (GetWindowPlacement(GetAcceleratedWidget(), &wp)) {\n+ if ... | 2025-10-02T16:14:48 |
facebook/react | 379a083b9a95b0409cff4771bd9887e9e589777b | 534bed5fa7ea927b00c48b348bee9a8087b68f9c | Include stack of cause in React instrumentation errors (#34198) | [
{
"path": "packages/react-client/src/ReactFlightClientDevToolsHook.js",
"patch": "@@ -30,7 +30,7 @@ export function injectInternals(internals: Object): boolean {\n } catch (err) {\n // Catch all errors because it is unsafe to throw during initialization.\n if (__DEV__) {\n- console.error('Rea... | 2025-08-13T17:18:02 |
nodejs/node | 83c05d4304035222968cf00b10d609753b8a3784 | 622c3721bf61e0bda825bed821e316e19ba75eff | src: use CP_UTF8 for wide file names on win32
`src/node_modules.cc` needs to be consistent with `src/node_file.cc` in
how it translates the utf8 strings to `std::wstring` otherwise we might
end up in situation where we can read the source code of imported
package from disk, but fail to recognize that it is an ESM (or ... | [
{
"path": "src/compile_cache.cc",
"patch": "@@ -232,10 +232,8 @@ static std::string GetRelativePath(std::string_view path,\n // the paths to wide strings before using std::filesystem::path.\n // On other platforms, std::filesystem::path can handle UTF-8 directly.\n #ifdef _WIN32\n- std::filesystem::path mo... | 2025-11-08T03:41:44 |
vercel/next.js | 3b7dd788c086389540582eab06fce2c80769d5da | 77bb08d129a46eae14cd73c8f6286741153755f3 | Cache expected missing manifest read (#89908)
## What
Found a bug. When a manifest is expectedly missing (`handleMissing`
option) it would not hit the caching for manifest loading. Causing a
readFileSync that fails every time it's called and doesn't get cached.
## How
This PR resolves the issue by moving the handle... | [
{
"path": "packages/next/src/server/load-manifest.external.ts",
"patch": "@@ -30,22 +30,36 @@ export function loadManifest<T extends object>(\n ): DeepReadonly<T>\n export function loadManifest<T extends object>(\n path: string,\n- shouldCache?: true,\n+ shouldCache?: boolean,\n cache?: Map<string, un... | 2026-02-17T15:00:40 |
rust-lang/rust | 7553d6c7792e44b91101dd55203098331cb92f50 | c466d3d6516d053196eeccc269f9ee350e2c6568 | fix record_expr_field | [
{
"path": "src/tools/rust-analyzer/crates/syntax/src/ast/syntax_factory/constructors.rs",
"patch": "@@ -1496,7 +1496,20 @@ impl SyntaxFactory {\n if let Some(mut mapping) = self.mappings() {\n let mut builder = SyntaxMappingBuilder::new(ast.syntax().clone());\n \n- builder.map... | 2026-03-25T06:04:55 |
electron/electron | b40a4befd42255d731ec3f68a96e96c1b9b96cef | 61a730353175079c7ed2003fcc1968045dfaafc1 | docs: fix formatting in asar integrity (#48431) | [
{
"path": "docs/tutorial/asar-integrity.md",
"patch": "@@ -64,13 +64,10 @@ flipFuses(\n )\n ```\n \n-:::tip Fuses in Electron Forge\n-\n-With Electron Forge, you can configure your app's fuses with\n-[@electron-forge/plugin-fuses](https://www.electronforge.io/config/plugins/fuses)\n-in your Forge configurat... | 2025-10-02T05:27:28 |
facebook/react | 534bed5fa7ea927b00c48b348bee9a8087b68f9c | db06f6b75108a45c8b70e526de6db5bc774acca0 | Use `yarn run` in Flight fixture (#34197) | [
{
"path": "fixtures/flight/package.json",
"patch": "@@ -71,10 +71,10 @@\n \"scripts\": {\n \"predev\": \"cp -r ../../build/oss-experimental/* ./node_modules/ && rm -rf node_modules/.cache;\",\n \"prebuild\": \"cp -r ../../build/oss-experimental/* ./node_modules/ && rm -rf node_modules/.cache;\",\n... | 2025-08-13T13:49:44 |
golang/go | 3443ae086314e8cb7994166a5b63a8ab056b6c44 | ca5ffe0092363f21df2c57b50144ba056f260049 | net: fix some ineffectual assignments reported by ineffassign
Updates #35136
Change-Id: I5422a50dde51c0a57f135c83f4963053285a9bc2
GitHub-Last-Rev: 6db1a88da60fce3e4fd6697d5db75d55d53b2b49
GitHub-Pull-Request: golang/go#76704
Reviewed-on: https://go-review.googlesource.com/c/go/+/727080
Reviewed-by: Florian Lehner <le... | [
{
"path": "src/net/dial_test.go",
"patch": "@@ -1088,14 +1088,16 @@ func TestDialContext(t *testing.T) {\n \t\t\tvar c Conn\n \t\t\tswitch network {\n \t\t\tcase \"tcp\", \"tcp4\", \"tcp6\":\n-\t\t\t\traddr, err := netip.ParseAddrPort(ln.Addr().String())\n+\t\t\t\tvar raddr netip.AddrPort\n+\t\t\t\traddr, e... | 2025-12-06T01:35:22 |
nodejs/node | 622c3721bf61e0bda825bed821e316e19ba75eff | 7c85846cd9859eab15214c38fae85a4eb6ecea98 | benchmark: add per-suite setup option
This allows us to set up fixtures for the benchmark suite only
once, which can save quite a bit of time when running benchmarks
that require tens of thousands of fixture files or more (e.g.
the module benchmarks).
PR-URL: https://github.com/nodejs/node/pull/60574
Fixes: https://g... | [
{
"path": "benchmark/common.js",
"patch": "@@ -28,6 +28,7 @@ class Benchmark {\n const argv = process.argv.slice(2);\n const parsed_args = this._parseArgs(argv, configs, options);\n \n+ this.originalOptions = options;\n this.options = parsed_args.cli;\n this.extra_options = parsed_args.ex... | 2025-11-07T17:47:43 |
vercel/next.js | 77bb08d129a46eae14cd73c8f6286741153755f3 | 7bece27057791c5d5fb0029a4d462f2d8dbf5838 | Refactor factory not available error message generation (#89897)
## What?
Extracted the `factoryNotAvailableMessage` function to a shared location in the runtime utilities, moving it from being duplicated in browser-specific runtime code to the shared runtime module. Updated error handling in both browser and Node.js... | [
{
"path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/browser/runtime/base/runtime-base.ts",
"patch": "@@ -95,31 +95,6 @@ const availableModules: Map<ModuleId, Promise<any> | true> = new Map()\n \n const availableModuleChunks: Map<ChunkPath, Promise<any> | true> = new Map()\n \n-function factoryNo... | 2026-02-17T12:09:26 |
facebook/react | db06f6b75108a45c8b70e526de6db5bc774acca0 | 9433fe357aa5df277f0e509c1b8cf975afe9ec9a | [DevTools] Track virtual debug info from suspensey images (#34181)
Same as #34166 but for Suspensey images.
The trick here is to check the `SuspenseyImagesMode` since not all
versions of React and not all subtrees will have Suspensey images
enabled yet.
The other trick is to read back from `currentSrc` to get the im... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -367,6 +367,7 @@ export function getInternalReactConstants(version: string): {\n ReactPriorityLevels: ReactPriorityLevelsType,\n ReactTypeOfWork: WorkTagMap,\n StrictModeBits: number,\n+ SuspenseyImagesMode: number... | 2025-08-13T13:26:21 |
electron/electron | 6f9cd718c4aaf51464519d6a4da12f86a8da9c1c | a95180e0806f4adba8009f46124b6bb4853ac0a6 | fix: runtime JS error that crashes `GetPackageJSON` (#48293)
We overriden the `GetPackageJSON` in Node.js to let us read files
straight from the ASAR file instead of disk. The override works by
providing a JS method with the limitation that it should not throw a
runtime error. However, this invariant was accidentally ... | [
{
"path": "shell/common/api/electron_api_asar.cc",
"patch": "@@ -191,13 +191,15 @@ class Archive : public node::ObjectWrap {\n static void SplitPath(const v8::FunctionCallbackInfo<v8::Value>& args) {\n auto* isolate = args.GetIsolate();\n \n+ auto dict = gin_helper::Dictionary::CreateEmpty(isolate);\n+ ... | 2025-09-30T16:32:13 |
golang/go | b291c3c35c41ddd2db75c3b3ce8ae476fe11ea7b | d774ced6a97d3e354d92e874861fb24d7527e3cb | cmd/compile: fix typos in types2 api_test.go
Change-Id: Ifee1b0f590ebb6671efd61a289c8884a225f5d6b
GitHub-Last-Rev: 175ae95847b0108949459b881c2cd2144e74353e
GitHub-Pull-Request: golang/go#76782
Reviewed-on: https://go-review.googlesource.com/c/go/+/728980
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Auto-Submit: Jorrop... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -1015,13 +1015,13 @@ func (r *N[C]) n() { }\n \t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n \t}\n \tif gn != dn {\n-\t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n+\... | 2025-12-10T17:52:23 |
vercel/next.js | 7bece27057791c5d5fb0029a4d462f2d8dbf5838 | 663c9151cf2f75662cc1e8054b91409d8eea8cd1 | [turbopack] fix our verify features in turbo-tasks backend (#90013)
Some recent refactorings accidentally broke these features
Mostly it was small API deltas (e.g. moving `get_task_description` onto TaskGuard, renaming some of the `TaskStorage` apis), but the removal of the `stateful` flag was more interesting, so th... | [
{
"path": "turbopack/crates/turbo-tasks-backend/Cargo.toml",
"patch": "@@ -19,7 +19,7 @@ no_fast_stale = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []\n-verify_determinism = []\n+verify_determinism = [\"turbo-tasks/verify_determinism\"]\n trace_aggregation_update_que... | 2026-02-17T08:44:39 |
nodejs/node | 2703db7985fd5b192d0c9b435b7f1633c7dda627 | 368eb4c430d8d72440fc42e59313b5bcab8cb127 | src: show original file name in FileHandle GC close errors
Otherwise, it can be virtually impossible to debug where these types
of errors originate from.
PR-URL: https://github.com/nodejs/node/pull/60593
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-B... | [
{
"path": "src/dataqueue/queue.cc",
"patch": "@@ -916,6 +916,7 @@ class FdEntry final : public EntryImpl {\n fs::FileHandle::New(realm->GetBindingData<fs::BindingData>(),\n file,\n Local<Object>(),\n+ ... | 2025-11-07T15:57:05 |
rust-lang/rust | ffe74d68abe7d779b934cfef2cd517ceb389bca4 | 5c46f391074109a193fe92437c814252e22d62a0 | fix: wrap `Result<>` for desugar_try_expr_let_else
Example
---
```rust
fn test() {
let pat: bool = Ok(true)$0?;
}
```
**Before this PR**
```rust
fn test() {
let Ok(pat): Option<bool> = Ok(true) else {
return Err(todo!());
};
}
```
**After this PR**
```rust
fn test() {
let Ok(pat): Result<bo... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/desugar_try_expr.rs",
"patch": "@@ -116,7 +116,10 @@ pub(crate) fn desugar_try_expr(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let fill_expr = || crate::utils::expr_fill_default(ctx.config);\n let new... | 2026-03-24T09:53:31 |
electron/electron | d4a5fdc8fc5c969fe793e3b478834658018608f2 | 3a7c6dd4a551eebb6bd4581ad746ba38808049ac | fix: add missed enum `SaveRequestType` to PdfViewerPrivate function (#48372)
fix: add missed SaveRequestType enum to PdfViewerPrivate function | [
{
"path": "shell/common/extensions/api/pdf_viewer_private.idl",
"patch": "@@ -6,6 +6,15 @@\n // functionality that the PDF Viewer needs from outside the PDF plugin. This API\n // is exclusively for the PDF Viewer.\n namespace pdfViewerPrivate {\n+ // Must match `SaveRequestType` in `pdf/mojom/pdf.mojom` an... | 2025-09-26T20:34:06 |
golang/go | d774ced6a97d3e354d92e874861fb24d7527e3cb | 6d89ab44cc783abb68d511e88723c2b8ebf4ca3b | cmd/go/internal/vcs: support git worktrees
Fixes golang/go#58218
Change-Id: Ia155b26514557cf822caf37e727e5a410b0a36a6
Reviewed-on: https://go-review.googlesource.com/c/go/+/736260
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scop... | [
{
"path": "src/cmd/go/internal/vcs/vcs.go",
"patch": "@@ -35,10 +35,10 @@ import (\n // A Cmd describes how to use a version control system\n // like Mercurial, Git, or Subversion.\n type Cmd struct {\n-\tName string\n-\tCmd string // name of binary to invoke command\n-\tEnv []string ... | 2026-01-14T00:45:30 |
facebook/react | 0032b2a3eec4723c433c16a738cf17e33ad742c3 | 14c50e344c2f639a9e08cc03b16cc7fc6c1d194a | [Flight] Log error if prod elements are rendered (#34189) | [
{
"path": "packages/internal-test-utils/consoleMock.js",
"patch": "@@ -355,7 +355,7 @@ export function createLogAssertion(\n let argIndex = 0;\n // console.* could have been called with a non-string e.g. `console.error(new Error())`\n // eslint-disable-next-line react-internal/safe-s... | 2025-08-13T06:47:09 |
vercel/next.js | 326fb8131f3e2fcad8853f3341036771ccb5a91a | a8d460e90e431f0962325d27d82be37bd7668394 | [turbopack] Fix some modification tracking bugs in TaskStorage (#89708)
Fix a few cases we track modification _after_ making the mutation instead of before it.
For snapshotting to work correctly we need to snapshot the task before it is modified to provide a consistent view of the database (well a point in time consi... | [
{
"path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs",
"patch": "@@ -1476,8 +1476,8 @@ fn generate_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n #check_access\n let current = self.typed().flags.#field_name();\n ... | 2026-02-17T07:41:55 |
rust-lang/rust | 1e4c1d6f75937e27c9df81519634cd9f01d8d982 | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | Make PinCoerceUnsized require Deref
Also, delete impls on non-Deref types.
Pin doesn't do anything useful for non-Deref types, so PinCoerceUnsized
on such types makes no sense.
This is a breaking change, since stable code can observe the deleted
`PinCoerceUnsized` impls by uselessly coercing between such types
insid... | [
{
"path": "library/alloc/src/rc.rs",
"patch": "@@ -2424,9 +2424,6 @@ unsafe impl<T: ?Sized, A: Allocator> PinCoerceUnsized for Rc<T, A> {}\n #[unstable(feature = \"pin_coerce_unsized_trait\", issue = \"150112\")]\n unsafe impl<T: ?Sized, A: Allocator> PinCoerceUnsized for UniqueRc<T, A> {}\n \n-#[unstable(f... | 2025-11-22T15:58:39 |
nodejs/node | 368eb4c430d8d72440fc42e59313b5bcab8cb127 | ed6569c7538fed16356ae15fe218073e7c6bd18c | src: avoid C strings in more C++ exception throws
Similar to 2e2f4cd095ff93278, just missed them in that commit.
PR-URL: https://github.com/nodejs/node/pull/60592
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.... | [
{
"path": "src/debug_utils-inl.h",
"patch": "@@ -23,13 +23,26 @@ concept StringConvertible = requires(T a) {\n a.ToString()\n } -> std::convertible_to<std::string>;\n };\n+// For std::filesystem::path and similar typ... | 2025-11-07T15:56:54 |
electron/electron | 3a7c6dd4a551eebb6bd4581ad746ba38808049ac | 26e886c517bc57747081b6cc26380b03bc61654a | fix: MacOS 26 Tahoe - stop overriding private cornerMask API to fix WindowServer GPU load (#48376)
fix: macOS stop overriding private cornerMask API to fix WindowServer GPU load spike
Electron fetched a custom `_cornerMask` for `ElectronNSWindow` to smooth
vibrancy corners. On macOS 15 (Tahoe) that private hook force... | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1333,7 +1333,6 @@ static bool FromV8(v8::Isolate* isolate,\n maskImage.capInsets = NSEdgeInsetsMake(radius, radius, radius, radius);\n maskImage.resizingMode = NSImageResizingModeStretch;\n [vibrantView setMaskImage:maskImage];\... | 2025-09-26T19:41:16 |
golang/go | 021d5ca042775537d707c6f5ae2f53f57dac243f | c04335e33a6915ae4edc9c9f94a909a46557f99a | cmd/compile: avoid extending when already sufficiently shifted on loong64
This reduces 744 instructions from the go toolchain binary on loong64.
file before after Δ %
asm 599282 599222 -60 -0.0100%
cgo 513606 513534 -72 -0.0140%
compile 2939250 ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -843,6 +843,11 @@\n \n (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)\n \n+// Avoid extending when already sufficiently shifted.\n+(MOVBUreg x:(SRLconst [c] y)) && c >= 24 => x\n+(MOVHUreg x:(SRLconst [c] y)) && c >= 16 => x\n+(... | 2025-12-01T06:46:23 |
rust-lang/rust | 289932194af47f75359e3db05b910d9c9b9e9856 | 833bf3c375b2931826f65a8bad31658aa9b5ac5f | Avoid unnecessary qualification of `ErrorGuaranteed`.
It's imported and can be used directly within this file, and already is
in a few places. | [
{
"path": "compiler/rustc_middle/src/query/erase.rs",
"patch": "@@ -120,8 +120,8 @@ impl<T> Erasable for Result<&'_ T, traits::query::NoSolution> {\n type Storage = [u8; size_of::<Result<&'static (), traits::query::NoSolution>>()];\n }\n \n-impl<T> Erasable for Result<&'_ T, rustc_errors::ErrorGuarantee... | 2026-03-25T03:19:37 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.