repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
facebook/react
56408a5b12fa4099e9dbbeca7f6bc59e1307e507
c38e26897848374c34ac6b651fce4a9088ed4dd0
[Flight] Emit timestamps only in forwards advancing time in debug info (#33482) Previously you weren't guaranteed to have only advancing time entries, you could jump back in time, but now it omits unnecessary duplicates and clamps automatically if you emit a previous time entry to enforce forwards order only. The rea...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -37,8 +37,19 @@ async function delay(text, ms) {\n return new Promise(resolve => setTimeout(() => resolve(text), ms));\n }\n \n+async function delayTwice() {\n+ await delay('', 20);\n+ await delay('', 10);\n+}\n+\n+async function delayTrice() {\n+ co...
2025-06-10T15:03:20
rust-lang/rust
65335b65fe7611ca36a78e2a0eb6b6ee290d953e
55d9f7cb6c7880dc5e2b75f013666ad01e265d1f
Fix markdown warnings in ui/README.md
[ { "path": "tests/ui/README.md", "patch": "@@ -133,7 +133,7 @@ Runtime panics and error handling generate backtraces to assist in debugging and\n \n This directory was originally meant to contain tests related to time complexity and benchmarking.\n \n-However, only a single test was ever added to this catego...
2026-03-11T23:32:58
nodejs/node
100c255c99d9602396eb2e18f2b2d52d4c22d1db
af4eac574b26aa944d61ed703cb8d8d3bee49155
src: remove `std::array` overload of `FIXED_ONE_BYTE_STRING` This overload was only used in one place, in a cold path, and in particular in a place where the compiler would be able to generate the exact same code using just a call to `.size()`. PR-URL: https://github.com/nodejs/node/pull/59826 Reviewed-By: James M Sn...
[ { "path": "src/node_os.cc", "patch": "@@ -259,7 +259,7 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n result.emplace_back(OneByteString(isolate, ip));\n result.emplace_back(OneByteString(isolate, netmask));\n result.emplace_back(family);\n- result.emplace_ba...
2025-08-04T16:08:15
electron/electron
660623081321b4774cd8f7962d2b1654bba14917
a42afaa8665b6d1b3a344918c60853184a97060e
fix: silent printing of PDFs with `webContents.print` (#47378) fix: silent printing
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -666,7 +666,7 @@ index 6809c4576c71bc1e1a6ad4e0a37707272a9a10f4..3aad10424a6a31dab2ca393d00149ec6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/...
2025-06-06T18:19:08
golang/go
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
f3d572d96a25d1a0956ef828c0ff510ebf214d22
runtime: don't count nGsyscallNoP for extra Ms in C In #76435, it turns out that the new metric /sched/goroutines/not-in-go:goroutines counts C threads that have called into Go before (on Linux) as not-in-go goroutines. The reason for this is that the M is still attached to the C thread on Linux as an optimization, so...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1584,3 +1584,18 @@ func TestReadMetricsSched(t *testing.T) {\n \t\tt.Fatalf(\"output:\\n%s\\n\\nwanted:\\n%s\", output, want)\n \t}\n }\n+\n+func TestNotInGoMetricCallback(t *testing.T) {\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\t...
2025-12-04T23:27:03
facebook/react
c38e26897848374c34ac6b651fce4a9088ed4dd0
80c03eb7e0f05da5e0de6faebbe8dbb434455454
[Fiber] Fix hydration of useId in SuspenseList (#33491) Includes #31412. The issue is that `pushTreeFork` stores some global state when reconcile children. This gets popped by `popTreeContext` in `completeWork`. Normally `completeWork` returns its own `Fiber` again if it wants to do a second pass which will call `pus...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMUseId-test.js", "patch": "@@ -7,7 +7,6 @@\n * @emails react-core\n * @jest-environment ./scripts/jest/ReactDOMServerIntegrationEnvironment\n */\n-\n let JSDOM;\n let React;\n let ReactDOMClient;\n@@ -24,6 +23,8 @@ let buffer = '';\n let hasErrored = fal...
2025-06-09T23:37:49
rust-lang/rust
55d9f7cb6c7880dc5e2b75f013666ad01e265d1f
22e1148d97b791e90c53bfef2fc2810c5d6a8433
Fix typos and outdated comments
[ { "path": "compiler/rustc_attr_parsing/src/attributes/codegen_attrs.rs", "patch": "@@ -169,7 +169,7 @@ impl<S: Stage> SingleAttributeParser<S> for RustcObjcClassParser {\n return None;\n };\n let Some(classname) = nv.value_as_str() else {\n- // `#[rustc_objc_class = .....
2026-03-16T07:28:48
nodejs/node
7a205d0ac0bdbaebb908825791cb6c105ab3251a
33e3e423d9b1a29fc15d3add3a28f9885fa48920
crypto: use async functions for non-stub Promise-returning functions These were intended to mimic simple async functions, but exceptions thrown in the function body would be returned synchronously, not wrapped in a rejected Promise. PR-URL: https://github.com/nodejs/node/pull/59841 Reviewed-By: James M Snell <jasnell...
[ { "path": "lib/internal/crypto/aes.js", "patch": "@@ -5,7 +5,6 @@ const {\n ArrayBufferPrototypeSlice,\n ArrayFrom,\n ArrayPrototypePush,\n- PromiseReject,\n SafeSet,\n TypedArrayPrototypeSlice,\n } = primordials;\n@@ -144,7 +143,7 @@ function asyncAesKwCipher(mode, key, data) {\n getVariant(...
2025-09-09T20:57:38
electron/electron
a42afaa8665b6d1b3a344918c60853184a97060e
b1f0ab11c5c4511026a844f624bf93745896d3cc
chore: fix docs lint (#47389)
[ { "path": "docs/tutorial/native-code-and-electron-swift-macos.md", "patch": "@@ -1088,7 +1088,7 @@ NODE_API_MODULE(swift_addon, Init)\n You're so close! We now have working Objective-C, Swift, and thread-safe ways to expose methods and events to JavaScript. In this final step, let's create a JavaScript wrap...
2025-06-06T08:01:26
golang/go
f3d572d96a25d1a0956ef828c0ff510ebf214d22
76345533f70e149511b1f50dbee598d0980cf867
cmd/go: fix race applying fixes in fix and vet -fix modes Previously, the cmd/fix tool, which is analogous to a compiler in a "go fix" or "go vet -fix" build, applied its fixes directly to source files during the build. However, this led to races since the edits may in some cases occur concurrently with other build st...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1371,7 +1371,7 @@ func addTestVet(loaderstate *modload.State, b *work.Builder, p *load.Package, ru\n \t\treturn\n \t}\n \n-\tvet := b.VetAction(loaderstate, work.ModeBuild, work.ModeBuild, p)\n+\tvet := b.VetAction(loaderstate, work.ModeBuild, work...
2025-12-04T20:29:49
rust-lang/rust
caad6ee2404cbe49915052f342b6227437e4d2a9
1e2183119f0ee19cc26df899e26b04ad0de3475d
tests: Add regression test for async closures involving HRTBs I suspect the original code had several issues. The last one that made the code compile entered `nightly-2024-02-11`. The code fails to build with `nightly-2024-02-10`: $ rustc +nightly-2024-02-10 --edition 2018 tests/ui/async-await/async-closures/unif...
[ { "path": "tests/ui/async-await/async-closures/unifying-function-types-involving-hrtb.rs", "patch": "@@ -0,0 +1,33 @@\n+//! Regresssion test for <https://github.com/rust-lang/rust/issues/59337>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+use std::future::Future;\n+\n+trait Foo<'a> {\n+ type Future: Futu...
2026-03-19T18:10:21
facebook/react
b6c0aa88140bba2a61c1de16bda2505c89b26235
428ab8200128d9421828dbe644c3448d21ea8c45
[compiler]: fix link compiler & 4 broken tests from path containing spaces (#33409) ## Summary Problem #1: Running the `link-compiler.sh` bash script via `"prebuild"` script fails if a developer has cloned the `react` repo into a folder that contains _any_ spaces. 3 tests fail because of this. <img width="1003" alt=...
[ { "path": "compiler/apps/playground/scripts/link-compiler.sh", "patch": "@@ -8,8 +8,8 @@ set -eo pipefail\n \n HERE=$(pwd)\n \n-cd ../../packages/react-compiler-runtime && yarn --silent link && cd $HERE\n-cd ../../packages/babel-plugin-react-compiler && yarn --silent link && cd $HERE\n+cd ../../packages/rea...
2025-06-09T15:40:27
electron/electron
72340e79e8b0c5fa0201413650417f9b6fb31e00
7196a28d3a615f123b017b998d8db9ae48afac8d
docs: remove `electron-quick-start` from README (#47359) Refs https://github.com/electron/.permissions/pull/293 The repo was renamed to `minimal-repro` and is no longer intended to be used as a way to start new projects (see PR above). Since we really want bugs in `electron/electron` to be reported with a Fiddle...
[ { "path": "README.md", "patch": "@@ -44,29 +44,17 @@ Each Electron release provides binaries for macOS, Windows, and Linux.\n * Fedora 32 and newer\n * Debian 10 and newer\n \n-## Quick start & Electron Fiddle\n+## Electron Fiddle\n \n Use [`Electron Fiddle`](https://github.com/electron/fiddle)\n to bui...
2025-06-05T18:12:21
nodejs/node
94422e8a40bcb380d7f2633c4dde19839ba71d5e
22a864a2759b4904ec17c5cdd28fe3e7f1350e6d
src: add an option to make compile cache portable Adds an option (NODE_COMPILE_CACHE_PORTABLE) for the built-in compile cache to encode the hashes with relative file paths. On enabling the option, the source directory along with cache directory can be bundled and moved, and the cache continues to work. When enabled, ...
[ { "path": "doc/api/cli.md", "patch": "@@ -3341,6 +3341,11 @@ added: v22.1.0\n Enable the [module compile cache][] for the Node.js instance. See the documentation of\n [module compile cache][] for details.\n \n+### `NODE_COMPILE_CACHE_PORTABLE=1`\n+\n+When set to 1, the [module compile cache][] can be reuse...
2025-09-12T11:00:39
golang/go
76345533f70e149511b1f50dbee598d0980cf867
b133524c0f661b88fc31db0076a939e1466c8aad
runtime: expand Pinner documentation This change expands the Pinner documentation based on a few points of feedback. - We need a note that the Pinner has a finalizer. - We need a note that the Pinner is safe to reuse. I also added a note that the zero value is ready to use, and expanded upon the use-cases of a Pinner...
[ { "path": "src/runtime/pinner.go", "patch": "@@ -12,7 +12,25 @@ import (\n \n // A Pinner is a set of Go objects each pinned to a fixed location in memory. The\n // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned\n-// objects. See their comments for more information.\n+// objects...
2025-12-03T23:07:26
facebook/react
428ab8200128d9421828dbe644c3448d21ea8c45
4df098c4c2c51a033592ebc84abc47cc49a6bfb2
[Flight] Simulate fetch to third party in fixture (#33484) This adds some I/O to go get the third party thing to test how it overlaps. With #33482, this is what it looks like. The await gets cut off when the third party component starts rendering. I.e. after the latency to start. <img width="735" alt="Screenshot 202...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -43,7 +43,7 @@ async function Bar({children}) {\n }\n \n async function ThirdPartyComponent() {\n- return delay('hello from a 3rd party', 30);\n+ return await delay('hello from a 3rd party', 30);\n }\n \n let cachedThirdPartyStream;\n@@ -52,16 +52,35 @@...
2025-06-09T14:04:40
nodejs/node
071414dac81260d20c8885f9d285143301cfff4f
29738c7b42fff5937032fdfeb70600f70b235b10
doc: rephrase dynamic import() description The description is updated to clarify that dynamic import() is asynchronous, dynamic, and works in both CJS and ESM contexts. The new phrasing also avoids implying it is the only method for loading ES modules in CommonJS. Fixes: https://github.com/nodejs/node/issues/59077 PR...
[ { "path": "doc/api/esm.md", "patch": "@@ -334,8 +334,9 @@ fs.readFileSync === readFileSync;\n \n ## `import()` expressions\n \n-[Dynamic `import()`][] is supported in both CommonJS and ES modules. In CommonJS\n-modules it can be used to load ES modules.\n+[Dynamic `import()`][] provides an asynchronous way ...
2025-09-12T06:40:24
golang/go
96e142ba2bfe5fe483f5364df91222c19ac13c49
fe4952f1165c43dcd195ab8b024f79ac5beced8a
runtime: skip TestArenaCollision if we run out of hints This seems failure mode seems to have become more common on Windows. I suspect the randomized heap base address has something to do with it, but I'm not 100% sure. What's definitely certain is that we're running out of hints, since we're seeing failures that mhe...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -551,8 +551,11 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \treturn\n }\n \n-func GetNextArenaHint() uintptr {\n-\treturn mheap_.arenaHints.addr\n+func NextArenaHint() (uintptr, bool) {\n+\tif mheap_.arenaHints == nil {\n+\t\treturn 0, fa...
2025-12-03T23:22:18
electron/electron
53fd879043c576fb68f6905678d3984246e8ea41
5f5e8d012d7bbcce794802f662679707e9557376
chore: bump chromium to 138.0.7190.0 (main) (#47107) * chore: bump chromium in DEPS to 138.0.7180.0 * 6546797: Add a metric for the overall success of the "safe storage" item retrieval. Refs https://chromium-review.googlesource.com/c/chromium/src/+/6546797 * 6548078: extensions: Fix TODO in ScriptInjectionTracker f...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7178.0',\n+ '138.0.7190.0',\n 'node_version':\n 'v22.16.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/.patches", "...
2025-06-03T15:19:20
facebook/react
911dbd9e34048b21e96f24acb837b926687aa939
c0b5a0cad32cbf237d4c0134bef702d6ba3e393c
feat(ReactNative): prioritize attribute config `process` function to allow processing function props (#32119) ## Summary In react-native props that are passed as function get converted to a boolean (`true`). This is the default pattern for event handlers in react-native. However, there are reasons for why you might w...
[ { "path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js", "patch": "@@ -254,14 +254,17 @@ function diffProperties(\n prevProp = prevProps[propKey];\n nextProp = nextProps[propKey];\n \n- // functions are converted to booleans as markers that the associated\n- // even...
2025-06-09T09:55:28
vercel/next.js
edf903eb169442ed9e6b7693914bfdee7bf73dcc
59db275d982c054615b7e71988c31ae400967ac6
Improve no response route handler error (#89036) ## Improve route handler "no response" error message for debugging ### What? Improves the error message thrown when an app route handler doesn't return a `Response` object to include additional debugging information: - **The actual type received** - Shows whether it ...
[ { "path": "packages/next/errors.json", "patch": "@@ -982,5 +982,6 @@\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",...
2026-01-27T09:03:51
golang/go
fe4952f1165c43dcd195ab8b024f79ac5beced8a
8947f092a8427674b7628003b873f57d3b6cdd83
runtime: relax threadsSlack in TestReadMetricsSched runtime.GC is called in the test and may spin up GOMAXPROCS (proportional to the initial count) new threads. We need to be robust to this, and it happens relatively frequently on some platforms. We didn't notice this earlier since the heap is so miniscule that runti...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -91,8 +91,10 @@ func SchedMetrics() {\n \t// threads through frequent scheduling, like mayMoreStackPreempt.\n \t// A slack of 5 is arbitrary but appears to be enough to cover\n \t// the leftovers plus any inflation from scheduling-heavy...
2025-12-03T23:13:36
nodejs/node
d35bd2088e2daa001edabeb030de59f20ec6d8e9
a2a77b2b66b742d05c53aaa10841cbaf22fe5c00
lib,src: refactor assert to load error source from memory The source code is available from V8 API and assert can avoid reading the source file from the filesystem and parse the file again. PR-URL: https://github.com/nodejs/node/pull/59751 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "lib/internal/assert/utils.js", "patch": "@@ -1,38 +1,21 @@\n 'use strict';\n \n const {\n- ArrayPrototypeShift,\n Error,\n ErrorCaptureStackTrace,\n- FunctionPrototypeBind,\n- RegExpPrototypeSymbolReplace,\n- SafeMap,\n StringPrototypeCharCodeAt,\n- StringPrototypeIncludes,\n StringP...
2025-09-02T10:31:09
facebook/react
c0b5a0cad32cbf237d4c0134bef702d6ba3e393c
e4b88ae4c6c30791b6c1c2794d5a8e32ed19c931
[Flight] Use Web Streams APIs for 3rd-party component in Flight fixture (#33481)
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -1,6 +1,6 @@\n import * as React from 'react';\n-import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n-import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {renderToReadableStream} from 'react-server-dom-webpa...
2025-06-08T04:33:25
electron/electron
5f5e8d012d7bbcce794802f662679707e9557376
508c60199643b0033c31ea706cf9a2979941236a
fix: add back fallback wasm-trap handling (#47186) * fix: add back fallback wasm-trap handling Refs https://chromium-review.googlesource.com/c/chromium/src/+/5372409 This change sets up wasm-trap handling for the case where content_shell has not enabled crash reporting but moves the responsibility to ElectronRendere...
[ { "path": "patches/chromium/.patches", "patch": "@@ -75,7 +75,6 @@ build_make_libcxx_abi_unstable_false_for_electron.patch\n make_gtk_getlibgtk_public.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n-disable_freezing_flags_after_in...
2025-06-03T13:31:23
vercel/next.js
7b2c80e24ab4609041bd9b2f31a2bc76e3ebca01
8003df97c9ab9eb04ec8c52d6941370d6670ec3d
Revert "Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping" (#89073) Reverts vercel/next.js#88775 This is breaking the v0 marketing site, reverting to unblock.
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1566,6 +1566,8 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n+ *module_graphs.full,\n+ ...
2026-01-27T00:02:34
rust-lang/rust
05834b2d6b8c584314dcc7d91d638bd376ce267c
8b86f48958be8c3473c979e0b5504c2d2e0fd4fd
improve validation error messages: show surrounding type, and more info on dyn-downcast
[ { "path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs", "patch": "@@ -425,7 +425,7 @@ fn const_validate_mplace<'tcx>(\n cid: GlobalId<'tcx>,\n ) -> Result<(), ErrorHandled> {\n let alloc_id = mplace.ptr().provenance.unwrap().alloc_id();\n- let mut ref_tracking = RefTracking::new(mpl...
2026-03-19T14:39:20
golang/go
44cb82449e7f24530fe0fe0bf8261ba9e0e4e7d8
435e61c80141653c22e29d81447e4c6e4033f768
runtime/race: set missing argument frame for ppc64x atomic And/Or wrappers The ppc64x TSAN wrappers for atomic And/Or did not initialize R6 with the Go argument frame before calling racecallatomic. Since racecallatomic expects R6 to point to the argument list and dereferences it unconditionally, this led to a nil-poin...
[ { "path": "src/runtime/race_ppc64le.s", "patch": "@@ -329,11 +329,13 @@ TEXT\tsync∕atomic·AddUintptr(SB), NOSPLIT, $0-24\n TEXT\tsync∕atomic·AndInt32(SB), NOSPLIT, $0-20\n \tGO_ARGS\n \tMOVD\t$__tsan_go_atomic32_fetch_and(SB), R8\n+\tADD $32, R1, R6\n \tBR\tracecallatomic<>(SB)\n \n TEXT\tsync∕atomic·An...
2025-11-06T19:43:45
nodejs/node
d58343ec482319e3d9846d4785df3c962364f077
96a749b7b3b9dfe982d8d0056122d0d601af6cf7
src: correctly report memory changes to V8 Call `V8::ExternalMemoryAccounter::Update` instead of `V8::ExternalMemoryAccounter::Increase` to report memory difference to V8 Calling `V8::ExternalMemoryAccounter::Increase` with a signed integer on 32-bit platforms causes instances where GC inside GC takes place leading t...
[ { "path": "src/node_mem-inl.h", "patch": "@@ -59,7 +59,7 @@ void* NgLibMemoryManager<Class, T>::ReallocImpl(void* ptr,\n // Environment*/Isolate* parameter and call the V8 method transparently.\n const int64_t new_size = size - previous_size;\n manager->IncreaseAllocatedSize(new_size);\n- man...
2025-09-09T12:17:47
vercel/next.js
d224a56201d64a49e9d25237136fa7104d263a5c
e8ef2305b5a69a1711d5b84ed003591e4db761d3
Fix reset deploy project script (#89001) This script has been quietly failing on cron occasionally, this updates to ensure it shows as failing when the inner requests fail and also adds back-off logic for re-creating the project after deleting the previous. x-ref: https://github.com/vercel/next.js/actions/runs/213273...
[ { "path": "scripts/reset-project.mjs", "patch": "@@ -4,14 +4,62 @@ export const TEST_PROJECT_NAME = 'vtest314-e2e-tests'\n export const TEST_TEAM_NAME = process.env.VERCEL_TEST_TEAM\n export const TEST_TOKEN = process.env.VERCEL_TEST_TOKEN\n \n+/**\n+ * Retry a fetch request with exponential backoff\n+ * @p...
2026-01-26T23:18:41
facebook/react
6c8bcdaf1b0c3340150e174a342429d94e729fbb
b367b60927dd85239852bfee60715034c7ca97ba
[Flight] Clarify Semantics for Awaiting Cached Data (#33438) Technically the async call graph spans basically all the way back to the start of the app potentially, but we don't want to include everything. Similarly we don't want to include everything from previous components in every child component. So we need some h...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2826,46 +2826,46 @@ describe('ReactFlight', () => {\n expect(getDebugInfo(thirdPartyChildren[0])).toEqual(\n __DEV__\n ? [\n- {time: 14},\n+ {time: 22}, // Clamped to the star...
2025-06-07T21:26:36
electron/electron
508c60199643b0033c31ea706cf9a2979941236a
158176f0f3940c325eaa70473a1ef3c85335515d
fix: do not load source for `electron` module in ESM loader synchronous flow (#46810)
[ { "path": "patches/node/fix_do_not_resolve_electron_entrypoints.patch", "patch": "@@ -5,19 +5,6 @@ Subject: fix: do not resolve electron entrypoints\n \n This wastes fs cycles and can result in strange behavior if this path actually exists on disk\n \n-diff --git a/lib/internal/modules/esm/load.js b/lib/int...
2025-06-03T10:50:17
nodejs/node
cc89e4cff86ce0b3b130a38ebc35576e6bda117a
4302d247ad5d8a51973ae9ebf7aca727db190a74
src: fixup node_messaging error handling Replace ToLocalChecked uses PR-URL: https://github.com/nodejs/node/pull/59792 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -328,6 +328,7 @@ class SerializerDelegate : public ValueSerializer::Delegate {\n if (JSTransferable::IsJSTransferable(env_, context_, object)) {\n BaseObjectPtr<JSTransferable> js_transferable =\n JSTransferable::Wrap(env_, object);\n+ ...
2025-09-09T03:30:43
rust-lang/rust
9ce6863063006951d678d0ec8a9e037731478609
adacd90f29c381c2e3876f356dda7575a96ffef5
merge `die-macro` tests into `panic-macro-basic.rs`
[ { "path": "tests/ui/macros/die-macro-2.rs", "patch": "@@ -1,7 +0,0 @@\n-//@ run-fail\n-//@ error-pattern:test\n-//@ needs-subprocess\n-\n-fn main() {\n- panic!(\"test\");\n-}", "additions": 0, "deletions": 7 }, { "path": "tests/ui/macros/die-macro-pure.rs", "patch": "@@ -1,11 +0,0 @@\...
2026-03-19T14:40:33
facebook/react
b367b60927dd85239852bfee60715034c7ca97ba
9666605abfee7e525a22931ce38d40bb29ddc8a5
[Flight] Add "use ..." boundary after the change instead of before it (#33478) I noticed that the ThirdPartyComponent in the fixture was showing the wrong stack and the `"use third-party"` is in the wrong location. <img width="628" alt="Screenshot 2025-06-06 at 11 22 11 PM" src="https://github.com/user-attachments/as...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -33,20 +33,26 @@ function Foo({children}) {\n return <div>{children}</div>;\n }\n \n+async function delay(text, ms) {\n+ return new Promise(resolve => setTimeout(() => resolve(text), ms));\n+}\n+\n async function Bar({children}) {\n- await new Promise...
2025-06-07T15:28:57
electron/electron
158176f0f3940c325eaa70473a1ef3c85335515d
d1e64c37a25b8bde07456417fac8e5742f8f32fd
fix: addChildView() crashes when adding a closed WebContentsView (#47099) fix: addChildView() crashes when add a closed WebContentsView
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -216,6 +216,12 @@ void View::AddChildViewAt(gin::Handle<View> child,\n if (!view_)\n return;\n \n+ if (!child->view()) {\n+ gin_helper::ErrorThrower(isolate()).ThrowError(\n+ \"Can't add a destroyed child view to a parent view...
2025-06-03T08:53:25
golang/go
435e61c80141653c22e29d81447e4c6e4033f768
54e5540014f7aa7c85a3a5988259ef40637d541a
runtime: reject any goroutine leak test failure that failed to execute This is far more general than the regexp, which was necessary only because runTestProg doesn't return the error. This change makes runTestProg a wrapper function around a function that *does* return the error. For #76526. Change-Id: Ib3daa75eb0fe...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -97,6 +97,13 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {\n \tt.Helper()\n \n+\tout, _ := runBuiltTestProgErr(t, exe, name, env...)\n+\treturn...
2025-12-03T22:29:19
nodejs/node
670d7ab7f2267de7ff0673741edece29efd0e254
26607a650e7a99b2e1f021c8e0864be4e8b205b4
util: fix numericSeparator with negative fractional numbers Fix util.inspect() formatting bug where negative fractional numbers between -1 and 0 lost their minus sign when numericSeparator was true. Fixed formatNumber function to preserve sign by using original string representation. Also corrected test expectations f...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -2103,23 +2103,28 @@ function formatNumber(fn, number, numericSeparator) {\n }\n return fn(`${number}`, 'number');\n }\n+\n+ const numberString = String(number);\n const integer = MathTrunc(number);\n- const string = String(integer);\n+\n ...
2025-09-08T20:10:50
vercel/next.js
9e5759deedb143bfc37baaa30056558c439d6207
b690af094678622f03670348e627d6f9f53ff036
fix: ensure LRU cache items have minimum size of 1 to prevent unbounded growth (#89040) ### What? Prevent LRU cache unbounded growth by requiring `calculateSize` to return values > 0. ### Why? When `calculateSize` returned 0 (e.g., for `null` values in the filesystem route cache), items were never evicted because t...
[ { "path": "packages/next/errors.json", "patch": "@@ -981,5 +981,6 @@\n \"980\": \"Failed to load client middleware manifest\",\n \"981\": \"resolvedPathname must be set in request metadata\",\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n- \"983\": \"Invariant: glo...
2026-01-26T21:00:19
facebook/react
b3d5e9078685c000e7e9ee3668a7a4b4f3256b1f
280ff6fed2a84b6ad7588c72d3e66b20f0f3c91a
[Fizz] Include unit of threshold in rel=expect deopt error (#33476)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerEdge-test.js", "patch": "@@ -138,7 +138,7 @@ describe('ReactDOMFizzServerEdge', () => {\n if (gate(flags => flags.enableFizzBlockingRender)) {\n expect(errors.length).toBe(1);\n expect(errors[0].message).toContain(\n- 'This...
2025-06-07T00:11:33
golang/go
54e5540014f7aa7c85a3a5988259ef40637d541a
9616c332956589c86a8366dc42f324108e6b88a4
runtime: print output in case of segfault in goroutine leak tests For #76526. Change-Id: I017e5d4c06e5de23cccc59c4c347599fecdece03 Reviewed-on: https://go-review.googlesource.com/c/go/+/726524 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,9 +487,9 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic|DATA RACE`...
2025-12-03T22:21:07
nodejs/node
6cf64af44d368f7874d06092481c9ef2ba1bb025
3c461fa4a0b3f5cc9734dc72a6d9d2a3c4f9729a
repl: do not cause side effects in tab completion A number of recent changes to the REPL tab completion logic have introduced the ability for completion to cause side effects, specifically, calling arbitrary functions or variable assignments/updates. This was first introduced in 07220230d9 and the problem exacerbated...
[ { "path": "lib/repl.js", "patch": "@@ -1762,10 +1762,25 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(argumentCode);\n }\n \n+ // Walk the AST for the current block of code, and check whether it contains any\n+ // statement or expression type that would poten...
2025-09-08T13:54:45
electron/electron
82a59d989425dc9d58e561325e955b826d12044c
55006fe9a837bf11088704455c0706904937a37e
chore: bump node to v22.16.0 (main) (#47217) * chore: bump node in DEPS to v22.16.0 * crypto: remove BoringSSL dh-primes addition https://github.com/nodejs/node/pull/57023 * tools: enable linter in test/fixtures/test\-runner/output https://github.com/nodejs/node/pull/57698 * src: improve thread safety of TaskQueu...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.1',\n+ 'v22.16.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "p...
2025-06-02T21:30:15
golang/go
f84f8d86beb08631217e77d725a4b6528ed91dc2
a70addd3b31ccb685f48867e24c6c2b4dc364a11
cmd/compile: fix mis-infer bounds in slice len/cap calculations CL 704875 enhanced prove to infer bounds when index have a relationship with len(A) - K. However, the change incorrectly infer "K - len(A)" case, causing wrong bounds information. Fixing this by matching exactly "len(A) - K" case. Fixes #76709 Change-I...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2119,7 +2119,10 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\tif bound := ow.Args[0]; (bound.Op == OpSliceLen || bound.Op == OpStringLen) && bound.Args[0] == slice {\n \t\t\tlenOffset = ow.Args[1]\n \t\t} else if bound := o...
2025-12-05T14:49:53
vercel/next.js
b690af094678622f03670348e627d6f9f53ff036
bb88ea523d4d44aa1a1e93cdda9bbfb413e47536
Reapply "[turbopack] Add bundling support for worker_threads" (#88725) (#88967) ## What? This PR reapplies #87746 which adds bundling support for Node.js `worker_threads` in Turbopack. ## Why? The original PR (#87746) was reverted in #88725 because it broke builds that use packages like `pino` with transports. Thes...
[ { "path": ".rustfmt.toml", "patch": "@@ -1,3 +1,4 @@\n+edition = \"2024\"\n max_width = 100\n \n comment_width = 100", "additions": 1, "deletions": 0 }, { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -14,10 +14,7 @@ use turbo_tasks::{Completion, ResolvedVc, Vc};\n use turbo_...
2026-01-26T20:42:15
nodejs/node
072da1ad2a30823d438cf6ac44ff5102e4920999
b4af64792088f892be1df4dcfbb69c725e5704de
doc: update OpenSSL default security level to 2 The default OpenSSL security level changed from 1 to 2 in OpenSSL 3.2, which was included in Node.js 24.5. This change enforces stricter cryptographic requirements. Fixes: https://github.com/nodejs/node/issues/59715 PR-URL: https://github.com/nodejs/node/pull/59723 Revi...
[ { "path": "doc/api/tls.md", "patch": "@@ -454,7 +454,7 @@ are not enabled by default since they offer less security.\n The OpenSSL library enforces security levels to control the minimum acceptable\n level of security for cryptographic operations. OpenSSL's security levels range\n from 0 to 5, with each lev...
2025-09-08T07:57:40
electron/electron
dc5efca0f6b4cd8541b4404582d855f6808a7225
cf6c6627022b320f27bdc17ccbad93cc71608716
feat: [net] add "priority" option to net.request (#42628) document the default value of priority option Update the priority test to not use the httpbin.org as server Fixed the lint errors Fixed the build error
[ { "path": "docs/api/client-request.md", "patch": "@@ -60,6 +60,10 @@ following properties:\n `strict-origin-when-cross-origin`.\n * `cache` string (optional) - can be `default`, `no-store`, `reload`,\n `no-cache`, `force-cache` or `only-if-cached`.\n+ * `priority` string (optional) - can be `thro...
2025-05-30T19:28:13
vercel/next.js
b3f776364d444ce261e219c9f6d6d4a7daa1bec6
cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743
Fix chunk loading when using `__turbopack_load_by_url__` with query (#88899) - if you `await __turbopack_load_by_url__ `, it waits for the exact chunk url you passed in to load - but when that chunk actually loads, it registers itself with `stripQuery(chunkurl)+CHUNK_SUFFIX` so there was mismatch if you load a chu...
[ { "path": "test/e2e/app-dir/segment-cache/deployment-skew/app/dynamic-page/page.jsx", "patch": "@@ -2,5 +2,10 @@ import { connection } from 'next/server'\n \n export default async function TargetPage() {\n await connection()\n- return <div id=\"build-id\">Build ID: {process.env.NEXT_PUBLIC_BUILD_ID}</div...
2026-01-26T14:30:56
golang/go
a70addd3b31ccb685f48867e24c6c2b4dc364a11
93b49f773d1a4b706f5352dffb912c259c15dc4f
all: fix some comment issues Change-Id: I5dec35b1432705b3a52859c38e758220282226af Reviewed-on: https://go-review.googlesource.com/c/go/+/726700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Dmitri Shuralyov <dmitshur@golang...
[ { "path": "src/crypto/md5/gen.go", "patch": "@@ -153,7 +153,7 @@ var data = Data{\n \t\t0x8d2a4c8a,\n \t},\n \tTable3: []uint32{\n-\t\t// round3\n+\t\t// round 3\n \t\t0xfffa3942,\n \t\t0x8771f681,\n \t\t0x6d9d6122,", "additions": 1, "deletions": 1 }, { "path": "src/crypto/tls/ticket.go", ...
2025-12-04T03:39:53
nodejs/node
cd9fd09a2730c07c22f030d4df3db6972298ffda
a6c5d27739976664a55152b6bffa8b4fb296d014
quic: multiple fixups and updates Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/59342 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "configure.py", "patch": "@@ -852,12 +852,6 @@\n \n # End dummy list.\n \n-parser.add_argument('--with-quic',\n- action='store_true',\n- dest='quic',\n- default=None,\n- help='build with QUIC support')\n-\n parser.add_argument('--without-ssl',\n action='store_true',\n dest='wit...
2025-08-03T13:16:03
facebook/react
142aa0744d0e73dc5390bc19d4d41dd8aeda2b19
6ccf328499f06c140ffe96a096744c22319394cc
[Fizz] Support deeply nested Suspense inside fallback (#33467) When deeply nested Suspense boundaries inside a fallback of another boundary resolve it is possible to encounter situations where you either attempt to flush an aborted Segment or you have a boundary without any root segment. We intended for both of these ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -88,6 +88,7 @@ describe('ReactDOMFizzServer', () => {\n setTimeout(cb);\n container = document.getElementById('container');\n \n+ CSPnonce = null;\n Scheduler = require('scheduler');\n React = require(...
2025-06-06T18:59:15
golang/go
91267f0a709191d8f1e3f4fa805c9d88856f9957
a753a9ed54c7ead93e56e5b183b743877b7695a6
all: update vendored x/tools Pull in the following x/tools changes: - CL 726000: go/analysis/passes/modernize: omitzero: suppress on kubebuilder - CL 726621: internal/refactor/inline: built-ins may affect inference - CL 727041: go/analysis/passes/modernize: fix stringscut false positives - CL 727040: go/analysis/unit...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.1-0.20251125153526-08e54827f670\n \tgolang.org/x/telemetry v0.0.0-20251128220624-abf20d0e57ec\n \tgolang.org/x/term v0.37.0\n-\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713\n+\tgolang.org/x/tools v0.39.1...
2025-12-04T22:57:40
vercel/next.js
cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743
e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b
refactor: consume global-error from loader tree (#88437)
[ { "path": "crates/next-core/src/app_page_loader_tree.rs", "patch": "@@ -419,15 +419,6 @@ impl AppPageLoaderTreeBuilder {\n let loader_tree = &*loader_tree.await?;\n \n let modules = &loader_tree.modules;\n- // load global-error module\n- if let Some(global_error) = &modules.glo...
2026-01-26T13:54:35
nodejs/node
f855cda2a248dacae27696cd001e48515c72ac2f
ce08561b6777f6c433b37bffad13901d7630270c
fs: fix wrong order of file names in cpSync error message PR-URL: https://github.com/nodejs/node/pull/59775 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.co...
[ { "path": "src/node_file.cc", "patch": "@@ -3270,7 +3270,7 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n std::string message =\n \"Cannot overwrite non-directory %s with directory %s\";\n return THROW_ERR_FS_CP_DIR_TO_NON_DIR(\n- env, message.c_s...
2025-09-07T18:15:13
facebook/react
6ccf328499f06c140ffe96a096744c22319394cc
a374e0ec87ec1d45a94b69e26c747529ea5dbab0
[Fizz] Shorten throttle to hit a specific target metric (#33463) Adding throttling or delaying on images, can obviously impact metrics. However, it's all in the name of better actual user experience overall. (Note that it's not strictly worse even for metric. Often it's actually strictly better due to less work being ...
[ { "path": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js", "patch": "@@ -6,9 +6,9 @@ export const markShellTime =\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"...
2025-06-06T18:01:15
golang/go
1681c3b67fe5f95377fd33b98dc1f7007cf28acf
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
crypto: use rand.IsDefaultReader instead of comparing to boring.RandReader Several crypto functions accepting a rand parameter skip calling boringcrypto when the rand is not boring.RandReader. The new crypto/internal/rand package currently defines its own Reader that wraps boring.RandReader. That will unintentionally...
[ { "path": "src/crypto/ecdh/nist.go", "patch": "@@ -27,7 +27,7 @@ func (c *nistCurve) String() string {\n }\n \n func (c *nistCurve) GenerateKey(r io.Reader) (*PrivateKey, error) {\n-\tif boring.Enabled && r == boring.RandReader {\n+\tif boring.Enabled && rand.IsDefaultReader(r) {\n \t\tkey, bytes, err := bo...
2025-12-03T10:20:41
vercel/next.js
e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b
cabe5458a86ccf63fc3134f99041798bb1380261
Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping (#88775) ## What? Fixes a bug where `react-loadable-manifest.json` in Turbopack dev mode contained references to chunk files with wrong hashes, causing 404 errors when loading dynamic imports. ## Why? When using `next/dynamic` with n...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1566,8 +1566,6 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n- *module_graphs.full,\n- ...
2026-01-26T12:32:30
nodejs/node
ce08561b6777f6c433b37bffad13901d7630270c
4d5792a66c372f07777ba14759b9788a80e7fe60
lib: fix isReadable and isWritable return type value PR-URL: https://github.com/nodejs/node/pull/59089 Fixes: https://github.com/nodejs/node/issues/59006 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: ...
[ { "path": "doc/api/stream.md", "patch": "@@ -3084,10 +3084,17 @@ changes:\n -->\n \n * `stream` {Readable|Duplex|ReadableStream}\n-* Returns: {boolean}\n+* Returns: {boolean|null} - Only returns `null` if `stream` is not a valid `Readable`, `Duplex` or `ReadableStream`.\n \n Returns whether the stream is re...
2025-09-07T14:50:36
facebook/react
a374e0ec87ec1d45a94b69e26c747529ea5dbab0
ab859e31be5db56106161060033109c9f2d26eca
[ci] Fix missing permissions for stale job (#33466) Missed these the last time.
[ { "path": ".github/workflows/shared_stale.yml", "patch": "@@ -6,7 +6,10 @@ on:\n - cron: '0 * * * *'\n workflow_dispatch:\n \n-permissions: {}\n+permissions:\n+ # https://github.com/actions/stale/tree/v9/?tab=readme-ov-file#recommended-permissions\n+ issues: write\n+ pull-requests: write\n \n env:\...
2025-06-06T17:32:51
golang/go
7b67b68a0da091be2d7dc3e69c4df9a1a080d0de
2b62144069a130cc469f33009c0c392cc6de8810
cmd/compile: use isUnsignedPowerOfTwo rather than isPowerOfTwo for unsigneds Fixes #76688 Change-Id: Icb8dab54a5ce7d83b656d50d5ea605d2a62b96f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/726680 Auto-Submit: Jorropo <jorropo.pgm@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2885,9 +2885,9 @@ func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {\n \t\t\txl := ft.limits[x.ID]\n \t\t\ty := v.Args[1]\n \t\t\tyl := ft.limits[y.ID]\n-\t\t\tif xl.umin == xl.umax && isPowerOfTwo(int64(xl.umin)) ||\n+\t\t\tif xl...
2025-12-04T03:17:58
vercel/next.js
cabe5458a86ccf63fc3134f99041798bb1380261
b9ee1db28318f6d5ffa7b8749c1a9cc8dd56f89e
docs: fix typos in `README.md`s (#89022) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impro...
[ { "path": "packages/next/src/next-devtools/README.md", "patch": "@@ -31,7 +31,7 @@ This will start the Storybook server at `http://localhost:6006`.\n \n ### Styling\n \n-Next.js direcly injects CSS into the DOM via `<style>` tag. The styles will not affect the user's application as the [styles are encapsula...
2026-01-26T12:23:30
electron/electron
83524adf1792d2dbcf4dc4914b647131bc3c22f0
14b3183eb584611723d4a2160dd13fd7a0e94ceb
chore: fix lint for ImageView doc (#47304)
[ { "path": "docs/api/image-view.md", "patch": "@@ -14,6 +14,7 @@ Note that `ImageView` is experimental and may be changed or removed in the futur\n \n ```js\n const { BaseWindow, ImageView, nativeImage, WebContentsView } = require('electron')\n+\n const path = require('node:path')\n \n const win = new BaseWi...
2025-05-29T21:10:41
nodejs/node
840d05f8ffb5e7026e5af73e9214e17acbb3c1a7
14c68e3b536798e25f810ed7ae180a5cde9e47d3
tools: improve error handling in node_mksnapshot PR-URL: https://github.com/nodejs/node/pull/59437 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/snapshot/node_mksnapshot.cc", "patch": "@@ -66,8 +66,16 @@ int BuildSnapshot(int argc, char* argv[]) {\n std::vector<std::string>(argv, argv + argc),\n node::ProcessInitializationFlags::kGeneratePredictableSnapshot);\n \n+ if (result->exit_code() != 0) {\n+ for (cons...
2025-09-07T12:34:36
facebook/react
d177272802b7f86a847312c23b7e60a6f56434de
22b929156c325eaf52c375f0c62801831951814a
[Fizz] Error and deopt from rel=expect for large documents without boundaries (#33454) We want to make sure that we can block the reveal of a well designed complete shell reliably. In the Suspense model, client transitions don't have any way to implicitly resolve. This means you need to use Suspense or SuspenseList to...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -5465,7 +5465,7 @@ export function writePreambleStart(\n destination: Destination,\n resumableState: ResumableState,\n renderState: RenderState,\n- skipExpect?: boolean, // Used as an override by ReactFizzConfigMar...
2025-06-06T14:29:48
electron/electron
4e61f5b26fb16176f7b7aa062a9cbd15e8d6ad0f
5b5f900e34c9ca4ed1ffddbf25a8e7ba9660d976
fix: Squirrel.Mac crash when zip extraction fails (#47271) * fix: Squirrel.Mac crash when zip extraction process fails to launch * chore: add end-to-end test
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -7,3 +7,4 @@ fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n feat_add_ability_to_prevent_version_downgrades.patch\n refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors...
2025-05-29T17:31:46
vercel/next.js
93bb2799fe43cf7b2967569f78ed3e7a2438dbf1
f4c2d5461af31f0eef95759533b18b7a8ea005e7
Apply fixes for onBuildComplete and route module (#88831) This applies fixes for outputs in `onBuildComplete` with various slight differences from expected values. This also applies some fixes in the route-module interface to ensure we install the process handlers for PPR since currently that was done in `next-server`...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -90,6 +90,33 @@ jobs:\n runs_on_labels: '[\"ubuntu-latest\"]'\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n+ test-deploy-adapter:\n+ name: Run Deploy Adapter Tests\n+ needs: setup\n+ uses: ....
2026-01-26T02:59:20
facebook/react
22b929156c325eaf52c375f0c62801831951814a
a3be6829c6425f306a8bef9f7dba72d1347a64b3
[Fizz] Suspensey Images for View Transition Reveals (#33433) Block the view transition on suspensey images Up to 500ms just like the client. We can't use `decode()` because a bug in Chrome where those are blocked on `startViewTransition` finishing we instead rely on sync decoding but also that the image is live when ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -4860,8 +4860,9 @@ export function writeCompletedSegmentInstruction(\n const completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(\n completeBoundaryFunction,\n );\n-const completeBoundaryUpgradeToViewTransitio...
2025-06-06T14:14:13
rust-lang/rust
9975d4760d1888a7cbd4bd9acfd26101792a3bcf
fd0c901b00ee1e08a250039cdb90258603497e20
Reorder inline asm operands in pretty printer to satisfy grammar constraints After macro expansion, named `asm!` operands are converted to positional operands and the template string uses numeric indices. However, the pretty printer previously emitted operands in their original AST order, which could place positional ...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -1620,8 +1620,86 @@ impl<'a> State<'a> {\n Options(InlineAsmOptions),\n }\n \n- let mut args = vec![AsmArg::Template(InlineAsmTemplatePiece::to_string(&asm.template))];\n- args.extend(asm.operands.iter(...
2026-03-19T10:27:36
electron/electron
3a32f257502cc951d81cc1bdc59d9a22427a0604
f6b8ee073185d13a2ed1c334444045ad24c29ae8
ci: audit important branches for CI errors (#47207) * ci: audit important branches for CI errors * chore: move message to Slack workflow
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -0,0 +1,137 @@\n+name: Audit CI on Branches\n+\n+on:\n+ workflow_dispatch:\n+ schedule:\n+ # Run every 2 hours\n+ - cron: '0 */2 * * *'\n+\n+permissions: {}\n+\n+jobs:\n+ audit_branch_ci:\n+ name: Audit CI on Branches\n+ runs-on:...
2025-05-27T15:35:33
facebook/react
b1759882c0b8045aff27fa9e41600534d396f69c
dddcae7a11b8241cbd6e2de55f9e68881baea458
[Flight] Bypass caches in Flight fixture if requested (#33445)
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -101,6 +101,9 @@ async function renderApp(req, res, next) {\n } else if (req.get('Content-type')) {\n proxiedHeaders['Content-type'] = req.get('Content-type');\n }\n+ if (req.headers['cache-control']) {\n+ proxiedHeaders['Cache-Control']...
2025-06-06T04:42:58
vercel/next.js
7eb2ea491ea89ea753eb2e636edf87bad67574f2
1637d61731065b5ad5705c159967f213c3cf624d
[Reapply] Add `useEffectEvent` to disallowed React APIs in Server Components (#88985) <!-- 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 y...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -633,6 +633,7 @@ impl ReactServerComponentValidator {\n \"PureComponent\",\n \"useDeferredValue\",\n \"useEffect\",\n+ ...
2026-01-25T21:11:23
rust-lang/rust
e9740a4be5cf4e89accacae0bd868557d942d247
fd0c901b00ee1e08a250039cdb90258603497e20
Insert space after float literal ending with `.` in pretty printer The pretty printer was collapsing unsuffixed float literals (like `0.`) with adjacent dot tokens, producing ambiguous or invalid output: - `0. ..45.` (range) became `0...45.` - `0. ..=360.` (inclusive range) became `0...=360.` - `0. .to_string()` (met...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs", "patch": "@@ -260,12 +260,15 @@ impl<'a> State<'a> {\n //\n // loop { break x; }.method();\n //\n- self.print_expr_cond_paren(\n- receiver,\n- receiver.precedence() < ExprPrecedence::Unam...
2026-03-19T10:27:40
electron/electron
5ccbfa2faf705ff4cc8ba2c1891e4129ff142ae6
f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea
fix: regression with directory selection in macOS dialogs (#47259)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -321,7 +321,7 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL is_package_as_directory =\n [[NSWorkspace sharedWorkspace] isFilePackageAtPath:path] &&\n [dialog treatsFilePackagesAsDirectories];\n- i...
2025-05-27T10:08:11
facebook/react
b4477d3800ccb0bdf26670cd1f021d094159c38f
93f1668045b924294f5832d5044fa049cd7af16e
[Flight] Add a cached 3rd-party component to the Flight fixture (#33443) This should allow us to visualize what https://github.com/facebook/react/pull/33438 is trying to convey. An uncached 3rd-party component is displayed like this in the dev tools: <img width="1072" alt="Screenshot 2025-06-05 at 12 57 32" src="htt...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -1,4 +1,7 @@\n import * as React from 'react';\n+import {renderToPipeableStream} from 'react-server-dom-webpack/server';\n+import {createFromNodeStream} from 'react-server-dom-webpack/client';\n+import {PassThrough, Readable} from 'stream';\n \n import Co...
2025-06-05T15:19:54
vercel/next.js
39ce0124e4af8c32c5bf8dae05c801fac17a2954
f51e3acf961c9bbcab68aab6078c9267d230db21
Improve agents-md prompt to force doc retrieval (#88997) ## Summary Updates the instruction in `agents-md` [CLAUDE.md](http://CLAUDE.md) output to force LLMs to actually read the docs instead of relying on stale pre-training knowledge. **Before:** ``` IMPORTANT: Prefer retrieval-led reasoning over pre-training-led ...
[ { "path": "packages/next-codemod/lib/agents-md.ts", "patch": "@@ -10,7 +10,7 @@ import fs from 'fs'\n import path from 'path'\n import os from 'os'\n \n-export interface NextjsVersionResult {\n+interface NextjsVersionResult {\n version: string | null\n error?: string\n }\n@@ -68,13 +68,13 @@ function ve...
2026-01-25T11:22:46
golang/go
32a9804c7ba3f4a0e0bd26cc24b9204860a49ec8
509ddf38689c10643d89c464e8386f53364635e8
cmd/link: don't update offset of existing ELF section name Fixes #76656 Change-Id: If2e823ba1577700af00f5883e4ea5c139e4749c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/726100 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Stapelberg <stapelberg...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"cmd/internal/hash\"\n \t\"cmd/link/internal/ld\"\n \t\"debug/elf\"\n+\t\"encoding/binary\"\n \t\"fmt\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n@@ -22,6 +23,7 @@ import (\n \t\"sync\"\n \t\"testing\"\n \t\"text/templ...
2025-12-03T01:01:57
rust-lang/rust
c77768590dbc2e63acf853ab86177de3fb4e5bfb
fd0c901b00ee1e08a250039cdb90258603497e20
Fix whitespace after fragment specifiers in macro pretty printing When a macro-generating-macro captures fragment specifier tokens (like `$x:ident`) as `tt` metavariables and replays them before a keyword (like `where`), the pretty printer concatenates them into an invalid fragment specifier (e.g. `$x:identwhere` inst...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -329,6 +329,19 @@ fn print_crate_inner<'a>(\n /// - #63896: `#[allow(unused,` must be printed rather than `#[allow(unused ,`\n /// - #73345: `#[allow(unused)]` must be printed rather than `# [allow(unused)]`\n ///\n+/// Returns `true` i...
2026-03-19T10:27:40
nodejs/node
57bc1778a3758d1a8a1bc2884c0de0b564d6c577
0f58a3d0cbe2e6c17325665359b6b56a4d52f351
repl: fix REPL completion under unary expressions PR-URL: https://github.com/nodejs/node/pull/59744 Fixes: https://github.com/nodejs/node/issues/59735 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/repl.js", "patch": "@@ -1744,6 +1744,16 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(lastDeclarationInitCode);\n }\n \n+ // If the last statement is an expression statement with a unary operator (delete, typeof, etc.)\n+ // we want to extract ...
2025-09-05T17:37:04
vercel/next.js
d8a0f6caa3a774320c8841a69805f3b9f25c1fd5
89cddc26da7627d668a6469c1a36d87b3bc3b3b2
docs: Update Partytown URLs and package reference (#88928) - Update Partytown documentation links from `builder.io` to `qwik.dev`. - Update Partytown installation package reference in the guide. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possibl...
[ { "path": "docs/01-app/02-guides/scripts.mdx", "patch": "@@ -127,7 +127,7 @@ Refer to the [`next/script`](/docs/app/api-reference/components/script#strategy)\n \n > **Warning:** The `worker` strategy is not yet stable and does not yet work with the App Router. Use with caution.\n \n-Scripts that use the `wo...
2026-01-24T15:51:37
electron/electron
f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea
c6f368acc6e4a9d9847fecf1db0d382ae06f5adc
fix: titlebar showing in content protected window (#47241) Closes https://github.com/electron/electron/issues/47152.
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -143,11 +143,33 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n void ElectronDesktopWindowTreeHostWin::HandleVisibilityChanged(bool visible) {\n if (native_window_view_->widget())\...
2025-05-26T07:46:04
facebook/react
37054867c15a7381abe0f73d98f3fecd06da52da
d742611ce40545127032f4e221c78bf9f70eb437
[Flight] Forward debugInfo from awaited instrumented Promises (#33415) Stacked on #33403. When a Promise is coming from React such as when it's passed from another environment, we should forward the debug information from that environment. We already do that when rendered as a child. This makes it possible to also `...
[ { "path": ".eslintrc.js", "patch": "@@ -561,6 +561,7 @@ module.exports = {\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n AnimationFrameID: 'readonly',\n+ WeakRef: 'readonly',\n // For Flow type annotation. Only `BigInt` ...
2025-06-04T04:49:03
rust-lang/rust
e15897f6c4bd948526b8f43d3ea8874075eccab9
fd0c901b00ee1e08a250039cdb90258603497e20
Parenthesize or-patterns in prefix pattern positions in pretty printer The AST pretty printer was dropping parentheses around or-patterns when they appeared inside `@` bindings, `&` references, or `box` patterns. For example: - `v @ (1 | 2 | 3)` was printed as `v @ 1 | 2 | 3` - `&(1 | 2 | 3)` was printed as `&1 | 2 |...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -1749,6 +1749,23 @@ impl<'a> State<'a> {\n }\n }\n \n+ /// Print a pattern, parenthesizing it if it is an or-pattern (`A | B`).\n+ ///\n+ /// Or-patterns have the lowest precedence among patterns, so they need\n+ ...
2026-03-19T10:27:40
nodejs/node
8e2b093c0793768498db6fa6f73da13d88db78c1
fdef0725de03a719c78757bd9aae2b01e4bc7863
url: add err.input to ERR_INVALID_FILE_URL_PATH Otherwise there's no information from the error about what exactly is the invalid URL. PR-URL: https://github.com/nodejs/node/pull/59730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/errors.md", "patch": "@@ -1996,6 +1996,9 @@ A Node.js API that consumes `file:` URLs (such as certain functions in the\n [`fs`][] module) encountered a file URL with an incompatible path. The exact\n semantics for determining whether a path can be used is platform-dependent.\n \n+The thro...
2025-09-05T17:03:16
golang/go
509ddf38689c10643d89c464e8386f53364635e8
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
cmd/compile: ensure bloop only kept alive addressable nodes Fixes #76636 Change-Id: I881f88dbf62a901452c1d77e6ffca651451c7790 Reviewed-on: https://go-review.googlesource.com/c/go/+/725420 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -73,6 +73,14 @@ func getNameFromNode(n ir.Node) *ir.Name {\n \treturn nil\n }\n \n+// getAddressableNameFromNode is like getNameFromNode but returns nil if the node is not addressable.\n+func getAddressableNameFromNode(n ir.Node) *ir.Name {\n...
2025-12-01T09:54:54
facebook/react
154008172573d64519ebbc23da611a27073b0a8c
9cc74fec749bcca2e0f5d1e41aa612b2135641ff
[Flight] Encode Async I/O Tasks using the Enclosing Line/Column (#33403) Stacked on #33402. There's a bug in Chrome Performance tracking which uses the enclosing line/column instead of the callsite in stacks. For our fake eval:ed functions that represents functions on the server, we can position the enclosing functi...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -813,7 +813,13 @@ function createElement(\n console,\n getTaskName(type),\n );\n- const callStack = buildFakeCallStack(response, stack, env, createTaskFn);\n+ const callStack = buildFakeCallStack(\n+ ...
2025-06-03T21:30:31
electron/electron
c6f368acc6e4a9d9847fecf1db0d382ae06f5adc
5e3b5ef04cc646c629ad383432fa70cefc65e40e
chore: debug crash on DevTools SetOwnerWindow (#47243)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2147,8 +2147,11 @@ void WebContents::DevToolsOpened() {\n // Inherit owner window in devtools when it doesn't have one.\n auto* devtools = inspectable_web_contents_->GetDevToolsWebContents();\n bool has_window = devtools->GetUse...
2025-05-26T07:45:43
vercel/next.js
5c70b4beaa80ec7031284153ba012b243788ef1e
1a2eccf30e4c210c910178228c51bc16385a8c90
Turbopack: add `?dpl=` to all asset urls returned by Turbopack (#88828) ### What? Closes PACK-6554 All asset urls returned by Turbopack should include a `?dpl` suffix.
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -11,12 +11,12 @@ use turbopack::module_options::{\n side_effect_free_packages_glob,\n };\n use turbopack_browser::{\n- BrowserChunkingContext, ChunkSuffix, ContentHashing, CurrentChunkMethod,\n+ BrowserChunkingContext, ContentHa...
2026-01-23T21:38:24
rust-lang/rust
082cdf7c48245088b3384e8a573e60b8dda14d9d
fd0c901b00ee1e08a250039cdb90258603497e20
Preserve braces around `self` in use tree pretty printing The AST pretty printer strips braces from single-item `use` sub-groups, simplifying `use foo::{Bar}` to `use foo::Bar`. However, when the single item is `self`, this produces `use foo::self` which is not valid Rust (E0429) — the grammar requires `use foo::{self...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/item.rs", "patch": "@@ -881,7 +881,13 @@ impl<'a> State<'a> {\n }\n if items.is_empty() {\n self.word(\"{}\");\n- } else if let [(item, _)] = items.as_slice() {\n+ } else i...
2026-03-19T10:27:40
golang/go
7cab1b1b26e49512a1ae56916ee39a6cc10dab46
1a64db3a4b3fc328f945d8271c0b98923526255d
doc: pre-announce removal of gotypesalias and asynctimerchan GODEBUG flags This announcement follows the policy outlined in #76163. For #76472. Change-Id: I4299e7f474e314810883dc4f50be6afba8c3e3e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/726020 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by...
[ { "path": "doc/godebug.md", "patch": "@@ -306,7 +306,7 @@ Go 1.23 changed the channels created by package time to be unbuffered\n and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.\n The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.\n There are no runtime metrics...
2025-12-02T19:58:29
nodejs/node
cfcb355ee0311afd4794b57161e4859709476119
538186b84fb45ed725ea3d6353ec2353253e3ccd
doc: fix missing links in the `errors` page PR-URL: https://github.com/nodejs/node/pull/59427 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2183,8 +2183,8 @@ contains the URL that failed to parse.\n \n ### `ERR_INVALID_URL_PATTERN`\n \n-An invalid URLPattern was passed to the [WHATWG][WHATWG URL API] \\[`URLPattern`\n-constructor]\\[`new URLPattern(input)`] to be parsed.\n+An invalid URLPattern was p...
2025-09-05T04:38:43
facebook/react
2e9f8cd3e031212bc507e31e2888f8f96b1de138
65a46c7eebb731ba5c1602afef87365491beb75d
Clear bundler cache before bundling fixtures (#33426)
[ { "path": "fixtures/fizz/package.json", "patch": "@@ -28,8 +28,8 @@\n \"prettier\": \"1.19.1\"\n },\n \"scripts\": {\n- \"predev\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n- \"prestart\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n+ \"predev\": \"cp -r ../...
2025-06-03T19:10:13
rust-lang/rust
4a60dae793e07440c32ec2d5ef71bf58cf1df7a9
cec0a68d6a69a9c29efc4055f7215dff1c9de103
Add UI tests for path resolution errors of `impl` restrictions
[ { "path": "tests/ui/impl-restriction/restriction_resolution_errors.rs", "patch": "@@ -0,0 +1,85 @@\n+#![feature(impl_restriction)]\n+#![expect(incomplete_features)]\n+\n+pub mod a {\n+ pub enum E {}\n+ pub mod d {}\n+ pub mod b {\n+ pub mod c {}\n+\n+ // We do not use crate-relative p...
2026-03-19T09:43:32
vercel/next.js
1a2eccf30e4c210c910178228c51bc16385a8c90
1fbb35f2037c944823d5875a12fcbf717f7cc04b
Improve performance and token usage of `/ci-failures` command (#88960) Improve performance and token usage of `/ci-failures` command include type in failure table, provide more instructions use subagents <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly...
[ { "path": ".claude/commands/ci-failures.md", "patch": "@@ -1,91 +1,76 @@\n # Check CI Failures\n \n-Analyze failing tests from PR CI runs with parallel subagent log analysis.\n+Analyze failing tests from PR CI runs.\n \n ## Usage\n \n ```\n-/ci-failures [pr-number]\n+/ci-failures\n ```\n \n-If no PR number ...
2026-01-23T21:37:19
nodejs/node
3ffc3d73ac75cf85f2c2ab57fa8361431ca07102
2258f22672a084ea1de6354bbc3b69c218654e20
esm: fix missed renaming in ModuleJob.runSync https://redirect.github.com/nodejs/node/pull/59675 missed a case when renaming .async to .hasAsyncGraph. This fixes that and add a test that would previously crash with the missed rename. PR-URL: https://github.com/nodejs/node/pull/59724 Refs: https://github.com/nodejs/no...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -335,7 +335,7 @@ class ModuleJob extends ModuleJobBase {\n const parentFilename = urlToFilename(parent?.filename);\n this.module.hasAsyncGraph ??= this.module.isGraphAsync();\n \n- if (this.module.async && !getOptionValue('--e...
2025-09-04T10:01:32
electron/electron
5e3b5ef04cc646c629ad383432fa70cefc65e40e
ac5e3c76f3128eff3866d0f358e68ec1bfda7af3
chore: update @electron/lint-roller to 3.1.1 (#47202) * chore: update @electron/lint-roller to 3.1.1 * docs: fix broken link in breaking-changes.md * chore: fix for Node.js versions without require(esm)
[ { "path": "docs/breaking-changes.md", "patch": "@@ -141,7 +141,7 @@ On Linux, the required portal version for file dialogs has been reverted\n to 3 from 4. Using the `defaultPath` option of the Dialog API is not\n supported when using portal file chooser dialogs unless the portal\n backend is version 4 or h...
2025-05-25T12:58:55
golang/go
1a64db3a4b3fc328f945d8271c0b98923526255d
2e06fa6b68bf5fff7f2dd1ba55dba6fc1d206ebf
spec: remove restriction on channel element types for close built-in (bug fix) The spec states that if the argument type for close is a type parameter, it's type set must only contain channels and they must all have the same element type. This latter requirement (all must have the same element type) was never enforced...
[ { "path": "doc/go_spec.html", "patch": "@@ -7496,7 +7496,7 @@ <h3 id=\"Close\">Close</h3>\n <p>\n If the type of the argument to <code>close</code> is a\n <a href=\"#Type_parameter_declarations\">type parameter</a>,\n-all types in its type set must be channels with the same element type.\n+all types in its ...
2025-12-02T22:32:13
facebook/react
3fb17d16a4838e132d0d6dbb08f91b7e7da691eb
acee65d6d031697ab8c71932a5b028351cbc3b03
[Flight] Encode ReactIOInfo as its own row type (#33390) Stacked on #33388. This encodes the I/O entries as their own row type (`"J"`). This makes it possible to parse them directly without first parsing the debug info for each component. E.g. if you're just interested in logging the I/O without all the places it was...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -13,6 +13,7 @@ import type {\n ReactComponentInfo,\n ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactIOInfo,\n ReactTimeInfo,\n ReactStackTrace,\n ReactFunctionLocation,\n@@ -47,6 +48,7 @@ import {\n enablePostpone,\n ...
2025-06-03T18:16:34
rust-lang/rust
74776c4008a668e70733e16d8cf8519f3551e388
fd0c901b00ee1e08a250039cdb90258603497e20
Rewrite `query_ensure_result`. It currently uses chaining which is concise but hard to read. There are up to four implicit matches occurring after the call to `execute_query_fn`. - The first `map` on `Option<Erased<Result<T, ErrorGuaranteed>>>`. - The second `map` on `Option<Result<T, ErrorGuaranteed>>`. - The third `...
[ { "path": "compiler/rustc_middle/src/query/inner.rs", "patch": "@@ -77,23 +77,34 @@ where\n C: QueryCache<Value = Erased<Result<T, ErrorGuaranteed>>>,\n Result<T, ErrorGuaranteed>: Erasable,\n {\n+ let convert = |value: Erased<Result<T, ErrorGuaranteed>>| -> Result<(), ErrorGuaranteed> {\n+ ...
2026-03-19T00:06:21
vercel/next.js
20be9bb47a69e850ec474e0a60ea9e6d8e998d8a
2b3d4f815bff3ef3a12f3ca5d787032dd6123769
[turbopack] add task type infromation to the print_cache_item_size feature (#88925) Enhance our debugging output to include information about TaskType values example output: ``` Task type cache stats: 337.82MiB (364.22MiB) 49.98MiB (53.43MiB) <ModuleAssetContext as AssetContext>::resolve_asset x 417238 avg 125B (1...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1177,14 +1177,28 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .into_iter()\n .collect::<Vec<_>>();\n if !task_cache_stats.is_empty() {\n+ ...
2026-01-23T18:15:11
electron/electron
2248de847d23a99779e73d93f9610c1e4cbe8e8a
38e7ff944ed8239d2130c284e4b63e749b2cfe7c
refactor: use `base::fixed_flat_set` in `NativeWindowViews::SetAlwaysOnTop()` (#47201) refactor: use base::fixed_flat_set in NativeWindowViews::SetAlwaysOnTop()
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -20,7 +20,7 @@\n #include <utility>\n #include <vector>\n \n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/memory/raw_ref.h\"\n #include \"base/numerics/ranges.h\"\n #include \"base/str...
2025-05-22T23:20:39