repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
4669a15362b83ad974aaa9f8cec17664c46e9d02
b421c9ff93487ffc1b963ba5d2edfcc52155b975
fix(turbopack): webpack-loaders failed to resolve relative path (#82720) fixed: #82106 The error was cause by the follow reason, when pass: ```ts const nextConfig: NextConfig = { /* config options here */ turbopack: { rules: { '*.txt': { loaders: ['./test-file-loader.js'], as: '*.js', ...
[ { "path": "test/e2e/app-dir/webpack-loader-binary/next.config.js", "patch": "@@ -5,7 +5,7 @@ const nextConfig = {\n turbopack: {\n rules: {\n '*.txt': {\n- loaders: [require.resolve('./test-file-loader.js')],\n+ loaders: ['./test-file-loader.js'],\n as: '*.js',\n },\n...
2025-08-18T19:54:38
nodejs/node
0b9249e335e7d8f5ae14f8a62095e7d54c475026
773e7c67cf357a152770b12a294d93fefcd83f0c
module: implement the "module-sync" exports condition This patch implements a "module-sync" exports condition for packages to supply a sycnrhonous ES module to the Node.js module loader, no matter it's being required or imported. This is similar to the "module" condition that bundlers have been using to support `requi...
[ { "path": "doc/api/modules.md", "patch": "@@ -335,9 +335,12 @@ LOAD_PACKAGE_IMPORTS(X, DIR)\n 1. Find the closest package scope SCOPE to DIR.\n 2. If no scope was found, return.\n 3. If the SCOPE/package.json \"imports\" is null or undefined, return.\n-4. let MATCH = PACKAGE_IMPORTS_RESOLVE(X, pathToFileURL...
2024-09-25T06:35:26
electron/electron
30fbcfca7bb545023be8b1012bb54fed42fd3faa
3f92a983156daa4e4c4d8ab7c7df90d861da2374
chore: remove deprecated `gpu-process-crashed` event (#40255) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "docs/api/app.md", "patch": "@@ -377,20 +377,6 @@ page.\n \n Emitted whenever there is a GPU info update.\n \n-### Event: 'gpu-process-crashed' _Deprecated_\n-\n-Returns:\n-\n-* `event` Event\n-* `killed` boolean\n-\n-Emitted when the GPU process crashes or is killed.\n-\n-**Deprecated:** This eve...
2023-10-26T18:05:40
golang/go
db3e02994c98f1d6dc00f7df807579c4619885c7
db55b83ce437577c0738f56808853b078d656a0b
runtime/trace: fix flaky test for SetMinAge This change fixes the flaky test which expects setting SetMinAge to a small ammount. It expects two sync events but should realistically expect up to 3. Change-Id: Ibd02fe55ebca99eb880025eb968fcebae9cb09c9 Reviewed-on: https://go-review.googlesource.com/c/go/+/675597 Review...
[ { "path": "src/runtime/trace/flightrecorder_test.go", "patch": "@@ -170,7 +170,7 @@ func TestFlightRecorderLog(t *testing.T) {\n \t}\n }\n \n-func TestFlightRecorderOneGeneration(t *testing.T) {\n+func TestFlightRecorderGenerationCount(t *testing.T) {\n \ttest := func(t *testing.T, fr *trace.FlightRecorder)...
2025-05-22T17:33:28
facebook/react
fc7467ac0ed735aefbfdddc7889d9f1b7aefccf1
6bf64df5383113d71bf6ebc8823c6a3ef412e6d0
[dx] Update error messages for config parsing ghstack-source-id: 693a3526a73f1fbd25f4e59416f8c65a0f8f1235 Pull Request resolved: https://github.com/facebook/react-forget/pull/2857
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -299,7 +299,8 @@ export function compileProgram(\n */\n if (environment.isErr()) {\n CompilerError.throwInvalidConfig({\n- reason: \"Error in validating environment config\",\n+ ...
2024-04-18T01:16:32
nodejs/node
0e52836c35e71a11805852caa530aad2547bf29e
02571022996fa5951d8454a59f854538047f3417
stream: set stream prototype to closest transferable superclass PR-URL: https://github.com/nodejs/node/pull/55067 Fixes: https://github.com/nodejs/node/issues/54603 Refs: https://github.com/nodejs/node/pull/50107 Reviewed-By: Mattias Buelens <mattias@buelens.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -639,6 +639,7 @@ ObjectDefineProperties(ReadableStream, {\n });\n \n function InternalTransferredReadableStream() {\n+ ObjectSetPrototypeOf(this, ReadableStream.prototype);\n markTransferMode(this, false, true);\n this[kType] = 'Readab...
2024-09-24T21:18:29
vercel/next.js
a406b7a32076faf5ee3808a0beb90f4d9e668801
508b1a46a813a0469519b235f283af637ee1a4d5
Turbopack: use bail instead of panic (#82745) This behaves more gracefully due to eventual consistency
[ { "path": "turbopack/crates/turbopack-core/src/resolve/mod.rs", "patch": "@@ -2693,7 +2693,7 @@ async fn resolve_into_package(\n };\n \n let Some(path) = path.as_constant_string() else {\n- todo!(\"pattern into an exports field is not implemented yet\");\n+...
2025-08-18T17:46:05
electron/electron
3f92a983156daa4e4c4d8ab7c7df90d861da2374
621b3ba897031319c214246ef6291ad1d3523f07
fix: prevent `PopUpButtonHandler` premature dealloc (#40308) fix: prevent PopUpButtonHandler dealloc
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -66,14 +66,18 @@ - (void)selectFormat:(id)sender {\n \n // Manages the PopUpButtonHandler.\n @interface ElectronAccessoryView : NSView\n+@property(nonatomic, strong) PopUpButtonHandler* popUpButtonHandler;\n @end\n \n @implementation ElectronAcce...
2023-10-26T15:40:02
golang/go
db55b83ce437577c0738f56808853b078d656a0b
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
doc: fix TBD mark Change-Id: I2133e3c62b4de0cec08eeb120d593c644643a62c Reviewed-on: https://go-review.googlesource.com/c/go/+/675755 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,7 +38,7 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n-<!-- CLs 653856, 657937, 663795, TBD 664299 -->...
2025-05-22T22:17:37
facebook/react
da6ba53b10d8240fc251ba14a3e5878604d3dc7d
0c245df1dc162d387ce6f5483505921b6cd4cfe2
[UMD] Remove umd builds (#28735) In React 19 React will finally stop publishing UMD builds. This is motivated primarily by the lack of use of UMD format and the added complexity of maintaining build infra for these releases. Additionally with ESM becoming more prevalent in browsers and services like esm.sh which c...
[ { "path": ".eslintrc.js", "patch": "@@ -545,7 +545,6 @@ module.exports = {\n __EXTENSION__: 'readonly',\n __PROFILE__: 'readonly',\n __TEST__: 'readonly',\n- __UMD__: 'readonly',\n __VARIANT__: 'readonly',\n __unmockReact: 'readonly',\n gate: 'readonly',", "additions": 0, ...
2024-04-17T18:15:27
nodejs/node
29a4fcf918e783418e32efe30134cf861b495cd1
574f2dd517a0dbd2e85f8db067cc15822c772e85
tty: fix links for terminal colors PR-URL: https://github.com/nodejs/node/pull/54596 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/tty.js", "patch": "@@ -60,9 +60,9 @@ const TERM_ENVS = {\n 'mosh': COLORS_16m,\n 'putty': COLORS_16,\n 'st': COLORS_16,\n- // https://github.com/da-x/rxvt-unicode/tree/v9.22-with-24bit-color\n+ // http://lists.schmorp.de/pipermail/rxvt-unicode/2016q2/002261.html\n 'rxvt-uni...
2024-09-24T20:26:59
vercel/next.js
508b1a46a813a0469519b235f283af637ee1a4d5
43db9163e1fc253f9f91bf06534dc2b9485ebbca
[turbopack] Remove a debug assertions in client references endpoint (#82725) Remove a debug assertion code in the `GlobalBuildInformation` implementation that was validating client references for endpoints. This was inserted as a sanity check that two traversals were doing the same thing, but this is overkill and can...
[ { "path": "crates/next-api/src/module_graph.rs", "patch": "@@ -730,27 +730,7 @@ impl GlobalBuildInformation {\n let result = if let [graph] = &self.client_references[..] {\n // Just a single graph, no need to merge results This also naturally aggregates\n // serv...
2025-08-18T13:37:38
electron/electron
f66d4c7ee01578ecdd52af6af52ec81a8dfbf844
514a9319b9d81fa1f374a193ecfbb793b6de28ad
fix: make sure classes in lib correctly implement Electron interfaces (#40291)
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -100,7 +100,7 @@ longer than the maximum length will be truncated.\n \n ### `crashReporter.getLastCrashReport()`\n \n-Returns [`CrashReport`](structures/crash-report.md) - The date and ID of the\n+Returns [`CrashReport | null`](structures/crash-report.md)...
2023-10-25T18:02:15
golang/go
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
doc: mention stack allocation of variable-sized make calls Also mention the bisect tool and flag used to track down incorrect uses. Change-Id: Id36a236e1bb2733b8611b22a5b16916e7d9f5522 Reviewed-on: https://go-review.googlesource.com/c/go/+/666075 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith ...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,6 +38,18 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n+<!-- CLs 653856, 657937, 663795, TBD 664299 --...
2025-04-16T20:50:44
nodejs/node
04750afb1e2ada0c06bb5fc82396c086645f31e9
b8493a5789c178246fb214f9ca04f9b9840a443a
perf_hooks: add missing type argument to getEntriesByName Fixes: https://github.com/nodejs/node/issues/54766 PR-URL: https://github.com/nodejs/node/pull/54767 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/perf/performance.js", "patch": "@@ -97,13 +97,16 @@ class Performance extends EventTarget {\n return filterBufferMapByNameAndType();\n }\n \n- getEntriesByName(name) {\n+ getEntriesByName(name, type = undefined) {\n validateInternalField(this, kPerformanceBrand, 'Performa...
2024-09-24T19:39:51
facebook/react
0c245df1dc162d387ce6f5483505921b6cd4cfe2
f82051d7abf9a2137f62cb84f0dd3618397951bc
Complete the typo fix (#28856)
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -2146,7 +2146,7 @@ describe('ReactInternalTestUtils console assertions', () => {\n - Expected errors\n + Received errors\n \n- - This is a complete different message that happens to start w...
2024-04-17T18:04:22
vercel/next.js
43db9163e1fc253f9f91bf06534dc2b9485ebbca
2bddb9166e8549153d2f1ca9fb3682f40c6728e5
Turbopack: fix race condition in test case (#82728) ### What? Fixes a race condition in the test case. Since we are using a single value for multiple Vcs (via ReadRef::cell) the counter can have multiple invalidators.
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/read_ref_cell.rs", "patch": "@@ -2,7 +2,7 @@\n #![feature(arbitrary_self_types_pointers)]\n #![allow(clippy::needless_return)] // clippy bug causes false positive\n \n-use std::sync::Mutex;\n+use std::{collections::HashSet, mem::take, sync::Mutex};\n \n ...
2025-08-18T09:26:35
golang/go
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
bfbf736564925fd91701a08395f903955cb4cbc7
runtime: don't spin looking for a tiny alloc address with asan or race CL 674655 modified the checkfinalizers test to spin looking for an appropriate address to trip the detector, but this doesn't work with ASAN or in race mode, which both disable the tiny allocator. Fixes #73834. Change-Id: I27416da1f29cd9532716985...
[ { "path": "src/runtime/testdata/testprog/checkfinalizers.go", "patch": "@@ -5,6 +5,8 @@\n package main\n \n import (\n+\t\"internal/asan\"\n+\t\"internal/race\"\n \t\"runtime\"\n \t\"runtime/debug\"\n \t\"unsafe\"\n@@ -39,20 +41,25 @@ func DetectFinalizerAndCleanupLeaks() {\n \t\t**cNoLeak = x\n \t}, int(0)...
2025-05-22T00:29:14
nodejs/node
a1cd3c8777604fe3fc531186364ce9c2529f087b
02e89721694ed44adfb8b7cf0fb68174e1432277
build: update ruff and add `lint-py-fix` PR-URL: https://github.com/nodejs/node/pull/54410 Reviewed-By: Christian Clauss <cclauss@me.com>
[ { "path": "Makefile", "patch": "@@ -1536,17 +1536,22 @@ cpplint: lint-cpp\n # Try with '--system' if it fails without; the system may have set '--user'\n lint-py-build:\n \t$(info Pip installing ruff on $(shell $(PYTHON) --version)...)\n-\t$(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ...
2024-09-24T15:20:20
facebook/react
f82051d7abf9a2137f62cb84f0dd3618397951bc
4ca20fd36b2444a74279e7022f89894710b1daab
console test utils fix: match entire string, not just first letter (#28855) Fixes issue where if the first letter of the expected string appeared anywhere in actual message, the assertion would pass, leading to false negatives. We should check the entire expected string. --------- Co-authored-by: Ricky <rickha...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -2129,6 +2129,28 @@ describe('ReactInternalTestUtils console assertions', () => {\n `);\n });\n \n+ // @gate __DEV__\n+ it('regression: checks entire string, not just the first letter', async () =...
2024-04-17T17:04:54
golang/go
bfbf736564925fd91701a08395f903955cb4cbc7
b1f259b1b42f055863a67492e7815ec752eae56b
cmd/compile: do not shapify when reading reshaping expr Fixes #71184 Change-Id: I22e7ae5203311e86a90502bfe155b0597007887d Reviewed-on: https://go-review.googlesource.com/c/go/+/641955 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -49,6 +49,9 @@ type pkgReader struct {\n \t// but bitwise inverted so we can detect if we're missing the entry\n \t// or not.\n \tnewindex []index\n+\n+\t// indicates whether the data is reading during reshaping.\n+\treshaping bool\n }\n \n ...
2025-01-10T05:49:59
vercel/next.js
2bddb9166e8549153d2f1ca9fb3682f40c6728e5
97dbf5f2e1e2c9f71e0f610c9c0ce3cdfea0ce2f
Turbopack: Stop persisting background task correctly on stop (#82727) ### What? Fixes a race condition with the persisting background tasks when stopping the backend.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -2137,36 +2137,37 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n let until = last_snapshot + time;\n if until > Instant::now() {\n let mut stop_listener...
2025-08-18T08:13:11
electron/electron
be44a2c5b7a0647f2c3bb7c776c53257360f615e
54ff706b710363bac1e00a5316737805f4a57f4c
chore: bump chromium to 120.0.6078.0 (main) (#40114) * chore: bump chromium in DEPS to 120.0.6049.0 * chore: update patches * chore: bump chromium in DEPS to 120.0.6050.0 * chore: update patches * 4910494: Reland "[autopip] Show autopip UI for video pip" https://chromium-review.googlesource.com/c/chromi...
[ { "path": "BUILD.gn", "patch": "@@ -434,6 +434,7 @@ source_set(\"electron_lib\") {\n \"//chrome/app/resources:platform_locale_settings\",\n \"//components/autofill/core/common:features\",\n \"//components/certificate_transparency\",\n+ \"//components/compose:buildflags\",\n \"//components...
2023-10-24T15:24:20
nodejs/node
3c5ceff85fb90b265a85270bba38085f45c7f25e
ffe0dc5b87c54046927cb6f9b907b74697002227
test: deflake test-inspector-strip-types Use the `NodeRuntime.waitingForDebugger` event. Refs: https://github.com/nodejs/node/pull/51560 PR-URL: https://github.com/nodejs/node/pull/55058 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Chengzhong W...
[ { "path": "test/parallel/test-inspector-strip-types.js", "patch": "@@ -18,13 +18,14 @@ async function runTest() {\n \n const session = await child.connectInspectorSession();\n \n- const commands = [\n+ await session.send({ method: 'NodeRuntime.enable' });\n+ await session.waitForNotification('NodeRunti...
2024-09-24T05:53:45
golang/go
b1f259b1b42f055863a67492e7815ec752eae56b
155ba387a93fddbd6ced288fe539a55c31b2597e
cmd/compile: fix ICE with recursive alias type parameter CL 585399 fixed an initialization loop during IR contruction that involving alias type, by avoiding publishing alias declarations until the RHS type expression has been constructed. There's an assertion to ensure that the alias's type must be the same during th...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -762,7 +762,7 @@ func (pr *pkgReader) objIdxMayFail(idx index, implicits, explicits []*types.Type\n \t\tif hack {\n \t\t\tif sym.Def != nil {\n \t\t\t\tname = sym.Def.(*ir.Name)\n-\t\t\t\tassert(name.Type() == typ)\n+\t\t\t\tassert(types.Ide...
2025-04-25T12:13:52
vercel/next.js
df71f956e54e3c215387af0ab238faebf6c81d08
36458f9002dffb620b040958f5832477ac107dfe
fix: return plain text 404 for invalid static asset paths (#75111)
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -587,6 +587,36 @@ export async function initialize(opts: {\n 'private, no-cache, no-store, max-age=0, must-revalidate'\n )\n \n+ let realRequestPathname = parsedUrl.pathname ?? ''\n+ if (realRequestPathname) {\n+...
2025-08-16T07:46:20
facebook/react
7909d8eabb7a702618f51e16a351df41aa8da88e
13eb61d0566bdcb6e41a19e433f66ec2ebf62bde
[Flight] Encode ReadableStream and AsyncIterables (#28847) This adds support in Flight for serializing four kinds of streams: - `ReadableStream` with objects as a model. This is a single shot iterator so you can read it only once. It can contain any value including Server Components. Chunks are encoded as is so i...
[ { "path": ".eslintrc.js", "patch": "@@ -499,7 +499,12 @@ module.exports = {\n DOMHighResTimeStamp: 'readonly',\n EventListener: 'readonly',\n Iterable: 'readonly',\n+ AsyncIterable: 'readonly',\n+ $AsyncIterable: 'readonly',\n+ $AsyncIterator: 'readonly',\n Iterator: 'readonly',\n+ ...
2024-04-16T16:20:07
electron/electron
32a721fa2bdff874270d50b5609866bdb43ef3c4
e254593616e0c0ce8ae861ec860002ee14cb74f9
test: fix Node.js color edge snapshot stack traces (#40250)
[ { "path": "patches/node/.patches", "patch": "@@ -40,7 +40,6 @@ fix_do_not_resolve_electron_entrypoints.patch\n fix_ftbfs_werror_wextra-semi.patch\n fix_isurl_implementation.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n-chore_update_fixtures_errors_force_colors_snapshot.patch\n fix_assert_mod...
2023-10-18T19:39:53
nodejs/node
b64006c0ed3c996bbce19113c8f03168fe409bc9
96ec7eede945e63b3ce8bd20834f075979bd78a0
crypto: ensure invalid SubtleCrypto JWK data import results in DataError PR-URL: https://github.com/nodejs/node/pull/55041 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/crypto/aes.js", "patch": "@@ -295,7 +295,12 @@ async function aesImportKey(\n }\n \n const handle = new KeyObjectHandle();\n- handle.initJwk(keyData);\n+ try {\n+ handle.initJwk(keyData);\n+ } catch (err) {\n+ throw lazyDOMException(\n+ ...
2024-09-23T15:28:44
golang/go
155ba387a93fddbd6ced288fe539a55c31b2597e
ef3bb638de442dc41d1e34a32e893d2041731e8c
cmd/doc: properly set GOPROXY to avoid deprecation checks This change fixes a bug that was introduced in CL 675155. Instead of doing the two step download and run with GOPROXY=off, do the run with GOPROXY=<download cache>:$GOPROXY, so that we use the previously downloaded version of pkgsite as the latest. Fixes #7383...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -258,11 +258,22 @@ func doPkgsite(urlPath string) error {\n \t// exit before exiting ourselves.\n \tsignal.Ignore(signalsToIgnore...)\n \n+\t// Prepend the local download cache to GOPROXY to get around deprecation checks.\n+\tenv := os.Environ()\n+\tvars, err :=...
2025-05-22T16:40:51
vercel/next.js
36458f9002dffb620b040958f5832477ac107dfe
df9f3ba484bc2e8bf502cc117a6d29828e108123
Turbopack: refactor idle process queue and fix bugs and race conditions (#82630) ### What? Fixes a bug that breaks the pool after scaling down Closes PACK-5249
[ { "path": "turbopack/crates/turbopack-node/src/heap_queue.rs", "patch": "@@ -0,0 +1,87 @@\n+use std::{collections::BinaryHeap, sync::Arc};\n+\n+use parking_lot::Mutex;\n+use tokio::sync::{AcquireError, Semaphore};\n+\n+pub struct HeapQueue<T> {\n+ heap: Mutex<BinaryHeap<T>>,\n+ semaphore: Semaphore,\n...
2025-08-16T04:46:57
facebook/react
0347fcd0073cf529f67a05be86a0545c3efab8e2
c113503ad131101b19b4a5c1e4639b8588ecd993
Add on(Caught|Uncaught|Recoverable) opts to RN (#28836) ## Overview There's currently a bug in RN now that we no longer re-throw errors. The `showErrorDialog` function in React Native only logs the errors as soft errors, and never a fatal. RN was depending on the global handler for the fatal error handling and l...
[ { "path": "packages/react-native-renderer/src/ReactFabric.js", "patch": "@@ -101,11 +101,30 @@ function nativeOnCaughtError(\n defaultOnCaughtError(error, errorInfo);\n }\n \n+type NativeRenderOptions = {\n+ onUncaughtError?: (\n+ error: mixed,\n+ errorInfo: {+componentStack?: ?string},\n+ ) => vo...
2024-04-15T16:03:28
electron/electron
fd2861117e04a3c62bfab67a1b50cb9c3a55cd4d
5b105f911f7aa134ee44558fefaf171360d3d9d2
fix: correctly track receiver for methods called via ctx bridge (#39978) * fix: correctly track receiver for methods called via ctx bridge * spec: test for correct contextBridge passage --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -44,6 +44,8 @@ namespace api {\n namespace context_bridge {\n \n const char kProxyFunctionPrivateKey[] = \"electron_contextBridge_proxy_fn\";\n+const char kProxyFunctionReceiverPrivateKey[] =\n+ \"electron_contextBridge_proxy_fn_...
2023-10-18T14:21:42
golang/go
a0dc7bf08481d906cb7d65d86bb347a583d84fd0
53b9eae3875122a65b387adf18c5cb7a67e824d7
cmd/compile: fix ICE when transforming loopvar When transforming for loop variables, the compiler does roughly following steps: (1) prebody = {z := z' for z in leaked} ... (4) init' = (init : s/z/z' for z in leaked) However, the definition of z is not updated to `z := z'` statement, causing Reassign...
[ { "path": "src/cmd/compile/internal/loopvar/loopvar.go", "patch": "@@ -305,6 +305,7 @@ func ForCapture(fn *ir.Func) []VarAndLoop {\n \t\t\t\t\t\tas := ir.NewAssignStmt(x.Pos(), z, tz)\n \t\t\t\t\t\tas.Def = true\n \t\t\t\t\t\tas.SetTypecheck(1)\n+\t\t\t\t\t\tz.Defn = as\n \t\t\t\t\t\tpreBody.Append(as)\n \t...
2025-05-22T11:06:27
nodejs/node
4f881790e9a699630015616733c58b97472be0cf
8b70e6bdeec887c682e7f27d6d5864a8f3886630
test_runner: report error on missing sourcemap source Co-Authored-By: Jayden Seric <me@jaydenseric.com> Co-Authored-By: Colin Ihrig <cjihrig@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55037 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2573,6 +2573,12 @@ disconnected socket.\n \n A call was made and the UDP subsystem was not running.\n \n+<a id=\"ERR_SOURCE_MAP_MISSING_SOURCE\"></a>\n+\n+### `ERR_SOURCE_MAP_MISSING_SOURCE`\n+\n+A file imported from a source map was not found.\n+\n <a id=\"ERR_S...
2024-09-23T00:32:06
vercel/next.js
2ad342a069621fb698fa9b568930db887f8fafa8
56493beebeacfded3289a8c0909060cedabb7aa3
fix: use `turbopack.root` value for `outputFileTracingRoot` to have consistent tracing root (#82653) Regressed from https://github.com/vercel/next.js/pull/82164 Previously, `outputFileTracingRoot` was always set via `findRoot()` if the option was not explicitly given. However, https://github.com/vercel/next.js/pull/8...
[ { "path": "packages/next/errors.json", "patch": "@@ -779,5 +779,6 @@\n \"778\": \"`prerenderAndAbortInSequentialTasksWithStages` should not be called in edge runtime.\",\n \"779\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache\\\". Accessing dynamic request data inside a cache scope is not s...
2025-08-16T00:01:35
facebook/react
c113503ad131101b19b4a5c1e4639b8588ecd993
2d128ff041e4cd97f92c0dfe9ce5ab73eab27ae9
Flush direct streams in Bun (#28837) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure ...
[ { "path": "packages/react-server/src/ReactServerStreamConfigBun.js", "patch": "@@ -13,6 +13,7 @@ type BunReadableStreamController = ReadableStreamController & {\n end(): mixed,\n write(data: Chunk | BinaryChunk): void,\n error(error: Error): void,\n+ flush?: () => void,\n };\n export type Destination...
2024-04-15T15:25:08
rust-lang/rust
18a707fc8e8126917c74982954b07b1adacdde6b
3c9faa0d037b9eecda4a440cc482ff7f960fb8a5
Revert "Fix an ICE in the vtable iteration for a trait reference" The ICE fix appears to be unsound, causing a miscompilation involving `dyn Trait` and `async {}` which induces segfaults in safe Rust code. As the patch only hid an ICE, it does not seem worth the risk. This reverts commit 8afd63610b0a261d3c39e24140c6a...
[ { "path": "compiler/rustc_trait_selection/src/traits/vtable.rs", "patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::is_vtable_safe_method;\n+use crate::traits::{impossible_predicates, is_vtable_safe_method};\n \n #[derive...
2026-02-17T01:41:30
electron/electron
29270f3df5e7044c67eba80886234a58ceea4b9b
657e88b1731d4b0bb83558961a74f7ecd05f94f0
test: fixup node force colors test (#40241) * test: fixup node force colors test * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/node/chore_update_fixtures_errors_force_colors_snapshot.patch", "patch": "@@ -11,7 +11,7 @@ trying to see whether or not the lines are greyed out. One possibility\n would be to upstream a changed test that doesn't hardcode line numbers.\n \n diff --git a/test/fixtures/errors/force_colors....
2023-10-18T10:33:24
nodejs/node
7ecc48d06152051219179ff399bae073980d926a
12f92b04f4dc7f48b78c0b1ef81ed5bdb5791e1d
test: fix `test-vm-context-dont-contextify` when path contains a space Because of the double encoding, the test would fail as soon as the path contains a space or any other char that's already encoded by `pathToFileURL`. PR-URL: https://github.com/nodejs/node/pull/55026 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>...
[ { "path": "test/parallel/test-vm-context-dont-contextify.js", "patch": "@@ -176,7 +176,7 @@ function checkFrozen(context) {\n const namespace = await import(moduleUrl.href);\n // Check dynamic import works\n const context = vm.createContext(vm.constants.DONT_CONTEXTIFY);\n- const script = new...
2024-09-22T10:01:41
vercel/next.js
6c1f0ee4fa50905a742f13e269f62421ce8c3881
cbbc8f3e12d7957043bb7b0e591ea44db1e01fc8
Turbopack: Fix logic in HMR logging code that could emit a NaN build time (#82389) The goal of this module is to avoid logging no-op build events. Turbopack uses a bottom-up execution model which leads to a lot of really short no-op "building" events that we try to filter out. If `onBuilding` isn't called before `onB...
[ { "path": "packages/next/src/client/dev/hot-reloader/turbopack-hot-reloader-common.ts", "patch": "@@ -23,9 +23,11 @@ export class TurbopackHmr {\n #startMsSinceEpoch: number | undefined\n #lastUpdateMsSinceEpoch: number | undefined\n #deferredReportHmrStartId: ReturnType<typeof setTimeout> | undefined...
2025-08-15T22:03:30
facebook/react
2d128ff041e4cd97f92c0dfe9ce5ab73eab27ae9
d486051de7a77236e729d395a18acac2c5ece35f
React DevTools 5.0.2 -> 5.1.0 (#28840) Full list of changes: * Look for a ReactMemoCacheSentinel on state ([gsathya](https://github.com/gsathya) in [#28831](https://github.com/facebook/react/pull/28831)) * Use use() in the Cache if available ([sebmarkbage](https://github.com/sebmarkbage) in [#28793](https://gith...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.2\",\n+ \"version\": \"5.1.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-04-15T13:56:57
golang/go
53b9eae3875122a65b387adf18c5cb7a67e824d7
27ff0f249c33fdfa9c8e17a0367b46561236f36c
runtime: use the immortal weak handle map for sbrk mode Currently weak pointers break in sbrk mode. We can just use the immortal weak handle map for weak pointers in this case, since nothing is ever freed. Fixes #69729. Change-Id: Ie9fa7e203c22776dc9eb3601c6480107d9ad0c99 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/runtime/mheap.go", "patch": "@@ -2545,6 +2545,16 @@ func gcWakeAllStrongFromWeak() {\n \n // Retrieves or creates a weak pointer handle for the object p.\n func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {\n+\tif debug.sbrk != 0 {\n+\t\t// debug.sbrk never frees memory, so it'll nev...
2025-05-20T20:56:46
electron/electron
657e88b1731d4b0bb83558961a74f7ecd05f94f0
09bab60a9eb110b031330545885bf07205492a1c
chore: remove deprecated `crashed` and `renderer-process-crashed` events (#40115)
[ { "path": "docs/api/app.md", "patch": "@@ -391,21 +391,6 @@ which contains more information about why the child process disappeared. It\n isn't always because it crashed. The `killed` boolean can be replaced by\n checking `reason === 'killed'` when you switch to that event.\n \n-### Event: 'renderer-process...
2023-10-18T10:05:41
rust-lang/rust
d54a023c69d095d1185a7303456672656bda25f9
b28ebc87a8716c561cfbc1913e5c146975971d22
[cg_clif]: Fix codegen of f128 to i128 casts Correct name for intrinsic that converts f128 to u128 Use `to_signed` instead of `from_signed` to ensure proper intrinsic selected for u128/i128
[ { "path": "src/codegen_f16_f128.rs", "patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed { \"\" } else { \"un\" },\n+ ...
2026-02-12T20:38:13
vercel/next.js
cbbc8f3e12d7957043bb7b0e591ea44db1e01fc8
6eb32cf7e649600a3edadea6dbb23c52b07a7fb8
Remove stability disclamer on Node runtime in middleware (#82181) Follows https://github.com/vercel/next.js/pull/81907, removes an outdated disclaimer from the docs: https://nextjs.org/docs/app/api-reference/file-conventions/middleware#runtime <img width="1346" height="852" alt="Screenshot 2025-07-30 at 00 19 01" sr...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -194,8 +194,6 @@ export const config = {\n }\n ```\n \n-> **Note**: This feature is not yet recommended for production use. Therefore, Next.js will throw an error unless you are using the next@canary release instead of...
2025-08-15T20:29:59
nodejs/node
cfe58cfdc488da71e655d3da709292ce6d9ddb58
059e08bb21b2065cbc162c26746dadd1eff1c631
test: adjust tls-set-ciphers for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 The test failed as it was using AES128 which is not supported in OpenSSL32 due to default security level and because some error messages have changed. Adjusted to use AES256 where it made sense and not run tests on OpenSSL32...
[ { "path": "test/parallel/test-tls-set-ciphers.js", "patch": "@@ -79,6 +79,11 @@ function test(cciphers, sciphers, cipher, cerr, serr, options) {\n \n const U = undefined;\n \n+let expectedTLSAlertError = 'ERR_SSL_SSLV3_ALERT_HANDSHAKE_FAILURE';\n+if (common.hasOpenSSL(3, 2)) {\n+ expectedTLSAlertError = 'E...
2024-09-21T19:10:51
facebook/react
ed4023603632787db6416bee8e85e68d98ad29bd
ba1a9797eebee694f6872e425b3a697c39a17dfc
Fix mistaken "react-server" condition (#28835) This is a Fizz server.
[ { "path": "scripts/rollup/bundles.js", "patch": "@@ -293,7 +293,6 @@ const bundles = [\n bundleTypes: __EXPERIMENTAL__ ? [FB_WWW_DEV, FB_WWW_PROD] : [],\n moduleType: RENDERER,\n entry: 'react-server-dom-fb/src/ReactDOMServerFB.js',\n- condition: 'react-server',\n global: 'ReactDOMServerS...
2024-04-12T19:53:41
rust-lang/rust
7be024fc06538914615971c2c5b2c964dde5551f
67799c97393c82a6fd378e460cfd3996fc461020
[cg_clif]: Fix codegen of f128 to i128 casts Correct name for intrinsic that converts f128 to u128 Use `to_signed` instead of `from_signed` to ensure proper intrinsic selected for u128/i128
[ { "path": "compiler/rustc_codegen_cranelift/src/codegen_f16_f128.rs", "patch": "@@ -208,7 +208,7 @@ pub(crate) fn codegen_cast(\n let ret_ty = if to_ty.bits() < 32 { types::I32 } else { to_ty };\n let name = format!(\n \"__fix{sign}tf{size}i\",\n- sign = if from_signed...
2026-02-12T20:38:13
electron/electron
09bab60a9eb110b031330545885bf07205492a1c
666907d50d2d62e31e1c3e7329f45e8350fe73cd
docs: fix represented file fiddle (#40233)
[ { "path": "docs/fiddles/features/represented-file/main.js", "patch": "@@ -7,24 +7,24 @@ function createWindow () {\n height: 600\n })\n \n+ win.setRepresentedFilename(os.homedir())\n+ win.setDocumentEdited(true)\n+\n win.loadFile('index.html')\n }\n \n app.whenReady().then(() => {\n- const win = ...
2023-10-18T09:32:10
golang/go
27ff0f249c33fdfa9c8e17a0367b46561236f36c
d2db2372a2fd79d539719fa13422d83d6fdfcda1
cmd/compile/internal/ssa: eliminate string copies for calls to unique.Make unique.Make always copies strings passed into it, so it's safe to not copy byte slices converted to strings either. Handle this just like map accesses with string(b) as keys. This CL only handles unique.Make(string(b)), not nested cases like u...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2832,3 +2832,14 @@\n && clobber(sbts)\n && clobber(key)\n => (StaticLECall {f} [argsize] typ_ map_ (StringMake <typ.String> ptr len) mem)\n+\n+// Similarly to map lookups, also handle unique.Make for strings, which unique.Make wi...
2025-05-13T03:39:54
vercel/next.js
6eb32cf7e649600a3edadea6dbb23c52b07a7fb8
308520c2a41f96b999ca3ac9e6bb734b77b9b5bb
fix: memory leak from cloneResponse (#82678) repro info here: https://github.com/snyamathi/nextjs-mem-leak ## Background > The Fetch Standard allows users to skip consuming the response body by relying on garbage collection to release connection resources. Undici added support for this in https://github.com/nodejs/...
[ { "path": "packages/next/src/server/lib/clone-response.ts", "patch": "@@ -1,3 +1,16 @@\n+const noop = () => {}\n+\n+let registry: FinalizationRegistry<WeakRef<ReadableStream>> | undefined\n+\n+if (globalThis.FinalizationRegistry) {\n+ registry = new FinalizationRegistry((weakRef: WeakRef<ReadableStream>) =...
2025-08-15T19:46:31
facebook/react
ba1a9797eebee694f6872e425b3a697c39a17dfc
7625f0d501bea50efe1e3cfc7208329c18e3369e
Remove `flight-browser` fixture (#28828) The flight-browser fixtures doesn't make sense. It also uses UMD builds which are being removed so we'd have to make it use esm.sh or something and really it just won't work because it needs to be built by webpack to not error. We could potentially shim the webpack globals ...
[ { "path": "fixtures/flight-browser/index.html", "patch": "@@ -1,101 +0,0 @@\n-<!DOCTYPE html>\n-<html style=\"width: 100%; height: 100%; overflow: hidden\">\n- <head>\n- <meta charset=\"utf-8\">\n- <title>Flight Example</title>\n- </head>\n- <body>\n- <h1>Flight Example</h1>\n- <div id=\"cont...
2024-04-12T16:48:40
rust-lang/rust
67799c97393c82a6fd378e460cfd3996fc461020
71e00273c0921e1bc850ae8cc4161fbb44cfa848
core: Implement feature `float_exact_integer_constants` Implement accepted ACP for `MAX_EXACT_INTEGER` and `MIN_EXACT_INTEGER` on `f16`, `f32`, `f64`, and `f128` Add tests to `coretests/tests/floats/mod.rs` Disable doc tests for i586 since float<->int casts return incorrect results
[ { "path": "library/core/src/num/f128.rs", "patch": "@@ -275,6 +275,70 @@ impl f128 {\n #[unstable(feature = \"f128\", issue = \"116909\")]\n pub const NEG_INFINITY: f128 = -1.0_f128 / 0.0_f128;\n \n+ /// Maximum integer that can be represented exactly in an [`f128`] value,\n+ /// with no other...
2026-02-12T02:27:51
electron/electron
666907d50d2d62e31e1c3e7329f45e8350fe73cd
73a42d0b7bff9b381349c8c32a46623d63471572
fix: Windows Toast notification dismissal from Action Center (#40197) * fix: Windows Toast notification dismissal from Action Center * docs: note Toast behavior in event * chore: address feedback from review
[ { "path": "docs/api/notification.md", "patch": "@@ -85,6 +85,8 @@ Emitted when the notification is closed by manual intervention from the user.\n This event is not guaranteed to be emitted in all cases where the notification\n is closed.\n \n+On Windows, the `close` event can be emitted in one of three ways...
2023-10-17T23:33:00
golang/go
5e6a868b28d3e7a71fa328c18ff5e93d72a1fb67
8bf816ae6879fa4537cc6e6e292769df2d7dbb78
cmd/compile, unique: model data flow of non-string pointers Currently, hash/maphash.Comparable escapes its parameter if it contains non-string pointers, but does not escape strings or types that contain strings but no other pointers. This is achieved by a compiler intrinsic. unique.Make does something similar: it sto...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -84,15 +84,19 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t\targument(e.tagHole(ks, fn, param), arg)\n \t\t}\n \n-\t\t// hash/maphash.escapeForHash forces its argument to be on\n-\t\t// the heap, if it contains a non-string point...
2025-05-21T18:33:13
vercel/next.js
88b3223a97f7b952c6bb3c9a7120f3361c8aef1d
8c0737d76db690aeb79113f46a81917ffa1ebf28
docs: fix typo in vitest.mdx (#82690) Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/testing/vitest.mdx", "patch": "@@ -4,7 +4,7 @@ nav_title: Vitest\n description: Learn how to set up Vitest with Next.js for Unit Testing.\n ---\n \n-Vite and React Testing Library are frequently used together for **Unit Testing**. This guide will show you how to setup Vitest...
2025-08-15T14:32:46
facebook/react
435415962371adc69e6a7211f7c65a5d72fc609c
adb71739386c1d8800ee80d11713a401ccdc7af8
Backwards compatibility for string refs on WWW (#28826) Seeing errors with undefined string ref values when trying to sync https://github.com/facebook/react/pull/28473 Added a test that reproduces the failing pattern. @acdlite pushed https://github.com/facebook/react/pull/28826/commits/a786481ae5702f1966ecdb62...
[ { "path": "packages/react-dom/src/__tests__/ReactComponent-test.js", "patch": "@@ -129,6 +129,55 @@ describe('ReactComponent', () => {\n }\n });\n \n+ // @gate !disableStringRefs\n+ it('string refs do not detach and reattach on every render', async () => {\n+ spyOnDev(console, 'error').mockImplem...
2024-04-11T19:30:37
rust-lang/rust
7e14260fd1f4a9bea9d6078428cd18b58c7b93d9
71e00273c0921e1bc850ae8cc4161fbb44cfa848
`probe_op` silence ambiguity errors if tainted see the `proc-macro/quote/not-repeatable.rs` test for a case where this is useful
[ { "path": "compiler/rustc_hir_typeck/src/method/probe.rs", "patch": "@@ -490,6 +490,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n .unwrap_or_else(|_| span_bug!(span, \"instantiating {:?} failed?\", ty));\n let ty = self.resolve_vars_if_possible(ty.value);\n let...
2026-02-16T19:35:43
electron/electron
b6ec19a582579c8f7972a1c140b9404e8b2ccd87
f7b1c75c72a8dcab4157408f92bd3771606d8029
fix: support the throwIfNoEntry option to statSync and lstatSync in asar files (#40221)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -261,17 +261,31 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n fs.writeSync(logFDs.get(asarPath), `${offset}: ${filePath}\\n`);\n };\n \n+ const shouldThrowStatError = (options: any) => {\n+ if (options && typeof options === 'obje...
2023-10-16T16:35:25
facebook/react
adb71739386c1d8800ee80d11713a401ccdc7af8
a2582074b84e95f8e9be6d9f51c80f09dd620ad7
Fix nightly release job for real (#28825)
[ { "path": "scripts/release/publish-commands/publish-to-npm.js", "patch": "@@ -19,7 +19,7 @@ const run = async ({cwd, dry, tags, ci}, packageName, otp) => {\n // But for now the easiest way is just to ask if this is expected.\n const {status} = spawnSync('npm', ['view', `${packageName}@${version}`]);\n ...
2024-04-11T16:28:10
golang/go
7589e9604237ad94869c5803af3bf428f108fefa
edcde86990abd9d7336eee5115b63d8c0863a5dd
cmd/compile: fold negation into addition/subtraction on s390x Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 3909260 3909204 -56 -0.001% asm 6714513 6714505 -8 -0.000% buildid 3680344 3679504 -840 -0.023% cgo 6...
[ { "path": "src/cmd/compile/internal/ssa/_gen/S390X.rules", "patch": "@@ -1188,6 +1188,8 @@\n // TODO: more of this\n (ADD x (NEG y)) => (SUB x y)\n (ADDW x (NEGW y)) => (SUBW x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUBW x (NEGW y)) => (ADDW x y)\n (SUB x x) => (MOVDconst [0])\n (SUBW x x) => (MOVDconst [0])\...
2025-05-16T17:55:12
rust-lang/rust
3099121bb5fb7cd3d29ffbc4acced9e356dc5ad9
71e00273c0921e1bc850ae8cc4161fbb44cfa848
Rework explanation of CLI lint level flags I think the previous wording as either wrong or confusing. I would consider the CLI flags at a *lower* ranking, since source attributes are able to override the CLI flag.
[ { "path": "src/doc/rustc/src/lints/levels.md", "patch": "@@ -393,7 +393,7 @@ Here’s how these different lint controls interact:\n warning: 1 warning emitted\n ```\n \n-3. [CLI level flags](#via-compiler-flag) take precedence over attributes.\n+3. [CLI level flags](#via-compiler-flag) override the def...
2026-02-16T18:47:35
nodejs/node
5b3f3c5a3b9dc688c7afcb97b398a5969ae9455c
b23d1c37b9a9e803c50aff12b9f932610fbcf87b
zlib: throw brotli initialization error from c++ PR-URL: https://github.com/nodejs/node/pull/54698 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/errors.js", "patch": "@@ -1886,4 +1886,3 @@ E('ERR_WORKER_UNSERIALIZABLE_ERROR',\n 'Serializing an uncaught exception failed', Error);\n E('ERR_WORKER_UNSUPPORTED_OPERATION',\n '%s is not supported in workers', TypeError);\n-E('ERR_ZLIB_INITIALIZATION_FAILED', 'Initialization fai...
2024-09-01T16:49:20
electron/electron
f7b1c75c72a8dcab4157408f92bd3771606d8029
6d0d350e138494cd68dd3d4fa73b2719da4575bf
feat: update `app.{set|get}LoginItemSettings(settings)` (#37244) * feat: update app.{set|get}LoginItemSettings(settings) * test: fixup and add tests * docs: add type link * chore: name -> serviceName
[ { "path": "docs/api/app.md", "patch": "@@ -1278,28 +1278,22 @@ Returns `boolean` - Whether the current desktop environment is Unity launcher.\n ### `app.getLoginItemSettings([options])` _macOS_ _Windows_\n \n * `options` Object (optional)\n- * `path` string (optional) _Windows_ - The executable path to com...
2023-10-16T16:25:11
facebook/react
a2582074b84e95f8e9be6d9f51c80f09dd620ad7
608edcc90a9e1dcee896c6c93cb381d0a61aac37
Fix nightly release job (#28824)
[ { "path": "scripts/release/publish-commands/publish-to-npm.js", "patch": "@@ -2,10 +2,11 @@\n \n 'use strict';\n \n+const {spawnSync} = require('child_process');\n const {exec} = require('child-process-promise');\n const {readJsonSync} = require('fs-extra');\n const {join} = require('path');\n-const {confir...
2024-04-11T16:08:13
golang/go
edcde86990abd9d7336eee5115b63d8c0863a5dd
de457fc4ea50cc3ac9dd967161b8bc31b79a26dd
crypto,hash: add and implement hash.Cloner Fixes #69521 Co-authored-by: qiulaidongfeng <2645477756@qq.com> Change-Id: I6a6a465652f5ab7e6c9054e826e17df2b8b34e41 Reviewed-on: https://go-review.googlesource.com/c/go/+/675197 Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Filippo Valsorda <filippo@golang....
[ { "path": "api/next/69521.txt", "patch": "@@ -0,0 +1,9 @@\n+pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521\n+pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521\n+pkg hash, type Cloner interface, BlockSize() int #69521\n+pkg hash, type Cloner interface, ...
2025-05-21T21:55:43
nodejs/node
77ca5ca075f2ba67bbcbcd135b99bd4516ed8863
5116578b8ac8e77ccc04278e6352253fdab43c43
fs: convert to u8 string for filesystem path PR-URL: https://github.com/nodejs/node/pull/54653 Fixes: https://github.com/nodejs/node/issues/54476 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Jame...
[ { "path": "src/node_file.cc", "patch": "@@ -3130,22 +3130,24 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &src);\n THROW_IF_INSUFFICIENT_PERMISSIONS(\n env, permission::PermissionScope::kFileSystemRead, src.ToStringView());\n- auto src_path = ...
2024-09-20T04:46:47
golang/go
3cc8b532f9d561397dd0c66496e1e1a82667c926
763963505e39b753d820ee9aea4791ad5bcc0274
testing: add Attr Add a new Attr method to testing.TB that emits a test attribute. An attribute is an arbitrary key/value pair. Fixes #43936 Change-Id: I7ef299efae41f2cf39f2dc61ad4cdd4c3975cdb6 Reviewed-on: https://go-review.googlesource.com/c/go/+/662437 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/43936.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) Attr(string, string) #43936\n+pkg testing, method (*F) Attr(string, string) #43936\n+pkg testing, method (*T) Attr(string, string) #43936\n+pkg testing, type TB interface, Attr(string, string) #43936", "additions": 4, ...
2025-04-03T00:37:34
nodejs/node
d4736060404726a24d4e52647b8c9b88914b8ddf
a9677db91b0d95bf95f9897a913ca0a23cc20ebf
lib: propagate aborted state to dependent signals before firing events PR-URL: https://github.com/nodejs/node/pull/54826 Fixes: https://github.com/nodejs/node/issues/54466 Fixes: https://github.com/nodejs/node/issues/54601 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -4,9 +4,11 @@\n // in https://github.com/mysticatea/abort-controller (MIT license)\n \n const {\n+ ArrayPrototypePush,\n ObjectAssign,\n ObjectDefineProperties,\n ObjectDefineProperty,\n+ ObjectSetPrototypeOf,\n PromiseResolve,\n SafeFin...
2024-09-08T10:53:14
vercel/next.js
1abb6a3375cd9166b157c933737e8cd65a14f955
8606a9e4b04d9438aaec32d59993277de160e392
fix: Combine the hrtime tuple to get a better seconds representation (#82687) When building w/ webpack to calculate duration, we use `process.hrtime` which is a tuple of integers [seconds, nanoseconds] - which means that for sub second compiler runs, we end up showing total 0ms, or 1000ms (I think) - https://nodejs.o...
[ { "path": "packages/next/src/build/webpack-build/impl.ts", "patch": "@@ -44,6 +44,11 @@ import { durationToString } from '../duration-to-string'\n \n const debug = origDebug('next:build:webpack-build')\n \n+function hrtimeToSeconds(hrtime: [number, number]): number {\n+ // hrtime is a tuple of [seconds, na...
2025-08-15T12:43:49
facebook/react
608edcc90a9e1dcee896c6c93cb381d0a61aac37
da69b6af9697b8042834644b14d0e715d4ace18a
[tests] add `assertConsole<method>Dev` helpers (#28732) ## Overview **Internal React repo tests only** Depends on https://github.com/facebook/react/pull/28710 Adds three new assertions: - `assertConsoleLogDev` - `assertConsoleWarnDev` - `assertConsoleErrorDev` These will replace this pattern: ```js aw...
[ { "path": "packages/internal-test-utils/ReactInternalTestUtils.js", "patch": "@@ -10,8 +10,14 @@ import {diff} from 'jest-diff';\n import {equals} from '@jest/expect-utils';\n import enqueueTask from './enqueueTask';\n import simulateBrowserEventDispatch from './simulateBrowserEventDispatch';\n-\n+import {\...
2024-04-11T12:19:46
golang/go
0aeaa6a495b7273f7a2190bc9857710190808e54
88679da4a396de98e975deb0e007b1d888a55676
crypto/x509: use truncated SHA-256 for SubjectKeyId Fixes #71746 Change-Id: I6a6a46568b092933d8ac2039df99ee9f0edf6e56 Reviewed-on: https://go-review.googlesource.com/c/go/+/674477 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker <rolan...
[ { "path": "doc/godebug.md", "patch": "@@ -183,6 +183,9 @@ limits. The default value `updatemaxprocs=1` will enable periodic updates.\n Go 1.25 disabled SHA-1 signature algorithms in TLS 1.2 according to RFC 9155.\n The default can be reverted using the `tlssha1=1` setting.\n \n+Go 1.25 switched to SHA-256 t...
2025-05-20T18:51:11
nodejs/node
a9677db91b0d95bf95f9897a913ca0a23cc20ebf
beb1892036f2bc6165cac4ed6ee3d0f61d27cf4c
test: deflake test-http-header-overflow Skip the network and push the data directly to the receiving socket so that it is guaranteed to be received as a single chunk. Fixes: https://github.com/nodejs/node/issues/46291 PR-URL: https://github.com/nodejs/node/pull/54978 Reviewed-By: Robert Nagy <ronagy@icloud.com> Revie...
[ { "path": "test/parallel/test-http-header-overflow.js", "patch": "@@ -1,5 +1,3 @@\n-// Flags: --expose-internals\n-\n 'use strict';\n const { expectsError, mustCall } = require('../common');\n const assert = require('assert');\n@@ -10,11 +8,10 @@ const CRLF = '\\r\\n';\n const DUMMY_HEADER_NAME = 'Cookie: '...
2024-09-17T09:45:08
rust-lang/rust
b4e645fe5af113f6ec072e04d55b7eb742e236ca
2219766af622ad1f051ca96ae40650106b1bd9bd
Support JSON target specs in bootstrap JSON target specs were destabilized in https://github.com/rust-lang/rust/pull/150151 and https://github.com/rust-lang/rust/pull/151534. However, this broke trying to build rustc itself with a JSON target spec. This is because in a few places bootstrap is manually calling `rustc` ...
[ { "path": "src/bootstrap/src/core/build_steps/compile.rs", "patch": "@@ -543,6 +543,9 @@ pub fn std_cargo(\n // `MACOSX_DEPLOYMENT_TARGET`, `IPHONEOS_DEPLOYMENT_TARGET`, etc.\n let mut cmd = builder.rustc_cmd(cargo.compiler());\n cmd.arg(\"--target\").arg(target.rustc_target_arg());\...
2026-02-15T19:10:23
vercel/next.js
988507c36655de27ef0e82dc9ad1ba6fef73558b
33be76c69170621f81b894287f9f861aadaff138
fix: use .js extension for relative imports (#82669) <!-- 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 Contributor...
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -392,7 +392,9 @@ export function generateValidatorFile(\n : type\n return `// Validate ${filePath}\n {\n- const handler = {} as typeof import(${JSON.stringify(importPath)})\n+ const handler = {} as typeof im...
2025-08-14T22:12:03
electron/electron
f362e089b16252cb65bfb7fb44ee5ae88c1e4fcc
c9f6f15df63e80fa12afe5fb981d17faa1f9772e
fix: incorrect wco bounds in macOS fullscreen (#40179)
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -537,7 +537,7 @@ void NativeWindow::PreviewFile(const std::string& path,\n \n void NativeWindow::CloseFilePreview() {}\n \n-gfx::Rect NativeWindow::GetWindowControlsOverlayRect() {\n+absl::optional<gfx::Rect> NativeWindow::GetWindowControlsOverlayRect...
2023-10-16T09:18:31
golang/go
aab8552088ae06ee7d6515d0dfc9efa7979feb5c
59211acb5dbde14647e025eb7379675debcf3930
crypto/tls: use decode alert for handshake msg unmarshal err Previously if instances of the handshakeMessage interface returned false from unmarshal(), indicating an umarshalling error, the crypto/tls package would emit an unexpected_message alert. This commit changes to use a decode_error alert for this condition ins...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,20 +66,13 @@\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumption\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this should be fixed\",\n \"SupportedVersionSelection-TLS12\": \"TODO: first pass,...
2025-05-17T15:17:21
rust-lang/rust
32d32b68912a07b0b47705d05cc0031d8038c672
9d850a0e308e376f7baccc2566fa50e360d3b892
adjust clippy to fix some of the issues
[ { "path": "clippy_utils/src/higher.rs", "patch": "@@ -297,12 +297,12 @@ impl<'a> VecArgs<'a> {\n // `vec![elem; size]` case\n Some(VecArgs::Repeat(elem, size))\n },\n- (sym::slice_into_vec, [slice])\n- if let ExprKind:...
2025-11-09T11:55:51
vercel/next.js
33be76c69170621f81b894287f9f861aadaff138
0af39705695fbdb2b9f121b5fbd29208b61372b1
chore: Bump Turborepo (#82652) <!-- 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 ### Improving Docum...
[ { "path": "package.json", "patch": "@@ -267,7 +267,7 @@\n \"tree-kill\": \"1.2.2\",\n \"tsec\": \"0.2.1\",\n \"tsx\": \"4.19.2\",\n- \"turbo\": \"2.3.3\",\n+ \"turbo\": \"2.5.5\",\n \"typescript\": \"5.8.2\",\n \"unfetch\": \"4.2.0\",\n \"wait-port\": \"0.2.2\",", "addition...
2025-08-14T20:12:45
electron/electron
bbd2236bdd4fda6ab702c67fa9a5cec13cc6df01
5d6023ae0dfa289b8ce1427722b0a8c0ab24e648
fix: ensure MessagePorts get GCed when not referenced (#40189)
[ { "path": "patches/chromium/.patches", "patch": "@@ -135,3 +135,4 @@ fix_activate_background_material_on_windows.patch\n fix_move_autopipsettingshelper_behind_branding_buildflag.patch\n revert_remove_the_allowaggressivethrottlingwithwebsocket_feature.patch\n fix_handle_no_top_level_aura_window_in_webcontent...
2023-10-13T20:09:28
nodejs/node
6a52e81260087324010fe21e5200f3474df0facb
0c8c107aaafbd2e79074a5be755901bdbc4ee470
tools: update error message for ICU in license-builder PR-URL: https://github.com/nodejs/node/pull/54742 Reviewed-By: Steven R Loomis <srl295@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "tools/license-builder.sh", "patch": "@@ -24,7 +24,7 @@ ${licenseTextTrimmed}\n \n \n if ! [ -d \"${rootdir}/deps/icu/\" ] && ! [ -d \"${rootdir}/deps/icu-small/\" ]; then\n- echo \"ICU not installed, run configure to download it, e.g. ./configure --with-intl=small-icu --download=icu\"\n+ echo \...
2024-09-03T17:25:55
rust-lang/rust
e5ed8643b6983ff7ddbc3cb2a8712edb65115a87
5e65109f219f56b94544efdacf527bc2146a7f91
adjust clippy to fix some of the issues
[ { "path": "compiler/rustc_span/src/symbol.rs", "patch": "@@ -2181,7 +2181,6 @@ symbols! {\n slice_from_raw_parts_mut,\n slice_from_ref,\n slice_get_unchecked,\n- slice_into_vec,\n slice_iter,\n slice_len_fn,\n slice_patterns,", "additions": 0, "...
2025-11-09T11:55:51
golang/go
59211acb5dbde14647e025eb7379675debcf3930
4158ca8d7c521aee5cc48f285f559e74845e973c
crypto/tls: disable SHA-1 signature algorithms in TLS 1.2 This implements RFC 9155 by removing support for SHA-1 algorithms: - we don't advertise them in ClientHello and CertificateRequest (where supportedSignatureAlgorithms is used directly) - we don't select them in our ServerKeyExchange and CertificateVer...
[ { "path": "doc/godebug.md", "patch": "@@ -180,6 +180,9 @@ runtime will periodically update GOMAXPROCS for new CPU affinity or cgroup\n limits. The default value `updatemaxprocs=1` will enable periodic updates.\n `updatemaxprocs=0` will disable periodic updates.\n \n+Go 1.25 disabled SHA-1 signature algorith...
2025-03-15T14:12:39
electron/electron
5d6023ae0dfa289b8ce1427722b0a8c0ab24e648
dc4476d4802ca9b13d0a74e709831109d38c4a34
docs: fix some string union typings (#40180)
[ { "path": "docs/api/app.md", "patch": "@@ -1134,11 +1134,11 @@ indicates success while any other value indicates failure according to Chromium\n resolver will attempt to use the system's DNS settings to do DNS lookups\n itself. Enabled by default on macOS, disabled by default on Windows and\n Li...
2023-10-13T10:00:44
nodejs/node
0c8c107aaafbd2e79074a5be755901bdbc4ee470
4f1fe8a01553ecfe8e63a484165313fe3fd8c10e
test_runner: replace ansi clear with ansi reset PR-URL: https://github.com/nodejs/node/pull/55013 Fixes: https://github.com/nodejs/node/issues/55009 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <be...
[ { "path": "lib/internal/test_runner/reporter/dot.js", "patch": "@@ -12,10 +12,10 @@ module.exports = async function* dot(source) {\n const failedTests = [];\n for await (const { type, data } of source) {\n if (type === 'test:pass') {\n- yield `${colors.green}.${colors.clear}`;\n+ yield `${...
2024-09-21T13:42:14
facebook/react
dc6a7e01e1d2fa5eb4974f9bb66e9e8fb40f6ef8
3f947b1b468a2a2a419227ce26842c4b6ba31082
[Float] Don't preload images inside `<noscript>` (#28815) `<noscript>` scopes should be considered inert from the perspective of Fizz since we assume they'll only be used in rare and adverse circumstances. When we added preload support for img tags we did not include the noscript scope check in the opt-out for prel...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -2762,7 +2762,7 @@ function pushImg(\n props: Object,\n resumableState: ResumableState,\n renderState: RenderState,\n- pictureTagInScope: boolean,\n+ pictureOrNoScriptTagInScope: boolean,\n ): null {\n const {sr...
2024-04-10T19:15:04
vercel/next.js
0af39705695fbdb2b9f121b5fbd29208b61372b1
50524de08afc20984f24e68fa8de1e1c415ccc3c
[turbopack] Fix a bug where our `global` rewrite could introduce a TDZ issue (#82659) Change our `global` rewrite to use a non-shadowable property on `__turbopack_context__` The previous rewrite to `globalThis` would break if there was a local declaration of `let globalThis` which could either trigger a TDZ error or ...
[ { "path": "turbopack/crates/turbopack-ecmascript-runtime/js/src/shared/runtime-types.d.ts", "patch": "@@ -137,4 +137,5 @@ interface TurbopackBaseContext<M> {\n x: ExternalRequire\n y: ExternalImport\n z: CommonJsRequire\n+ g: typeof globalThis\n }", "additions": 1, "deletions": 0, "langua...
2025-08-14T19:34:50
rust-lang/rust
c259c4048a97329a70a7ec2dcd0e79fe2c36be68
e823167aa6f7f03aea8e91208ce9bace8ad9ebf2
compiletest: normalize stderr before SVG rendering Element position is hardcoded in the rendered SVG. This means that any change in element length (for instance, when substituting the path with the `rust` checkout with `$DIR`) would not change the position and result in buggy SVG being generated. Normalizing before SV...
[ { "path": "src/tools/compiletest/src/runtest.rs", "patch": "@@ -2379,15 +2379,22 @@ impl<'test> TestCx<'test> {\n _ => {}\n };\n \n- let stderr = if self.force_color_svg() {\n- anstyle_svg::Term::new().render_svg(&proc_res.stderr)\n- } else if explicit_format {\n...
2026-02-14T19:52:42
golang/go
eb4069127a7dbdaed480aed80ba6ed1b2ea27901
e90acc814de247f58330be1d8ba3b11c78c96077
crypto/ecdsa: add low-level encoding functions for keys Fixes #63963 Change-Id: I6a6a4656a729b6211171aca46bdc13fed5fc5643 Reviewed-on: https://go-review.googlesource.com/c/go/+/674475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@golan...
[ { "path": "api/next/63963.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/ecdsa, func ParseRawPrivateKey(elliptic.Curve, []uint8) (*PrivateKey, error) #63963\n+pkg crypto/ecdsa, func ParseUncompressedPublicKey(elliptic.Curve, []uint8) (*PublicKey, error) #63963\n+pkg crypto/ecdsa, method (*PrivateKey) Bytes() ...
2025-05-20T15:34:57
electron/electron
344f8fd384e6cbb8344bdcbde05cd36b62909d56
592a30aa0bdee49c8e76ac278a76fa443831e565
chore: formally deprecate `gpu-process-crashed` event (#40169)
[ { "path": "docs/breaking-changes.md", "patch": "@@ -103,6 +103,19 @@ win.webContents.on('render-process-gone', (event, details) => { /* ... */ })\n webview.addEventListener('render-process-gone', (event) => { /* ... */ })\n ```\n \n+### Deprecated: `gpu-process-crashed` event on `app`\n+\n+The `gpu-process-...
2023-10-12T18:53:52
nodejs/node
9be005785918cc145d1edeea2ced433d0cd8a162
29b9c72b05786061cde58a5ae11cfcb580ab6c28
test: fix `soucre` to `source` PR-URL: https://github.com/nodejs/node/pull/55038 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/fixtures/test-runner/coverage/index.test.js", "patch": "@@ -1,7 +1,7 @@\n 'use strict';\n \n const test = require('node:test');\n-test('no soucre map', () => {});\n+test('no source map', () => {});\n if (false) {\n console.log('this does not execute');\n }", "additions": 1, "deleti...
2024-09-21T08:27:56
facebook/react
c836a0158b8720fa368574068dfca925d28430b5
6e65445911e15e51a549fe456a428d342ba745e5
Fix usage of renamed React internals ghstack-source-id: d646c84815c324bd490584d34488a73f5e39d589 Pull Request resolved: https://github.com/facebook/react-forget/pull/2845
[ { "path": "compiler/packages/react-forget-runtime/src/index.ts", "patch": "@@ -9,14 +9,12 @@\n \n import * as React from \"react\";\n \n-const {\n- // @ts-ignore\n- __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: {\n- ReactCurrentDispatcher,\n- },\n- useRef,\n- useEffect,\n-} = React;\n+const { ...
2024-04-11T15:10:42
vercel/next.js
eaa1bbcf24824bdc5191d85e1e0e5b045994101d
88383fccf0e398ff341db66ba40d0ed500e98857
Fix request type in typed route validator (#82644)
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -431,6 +431,7 @@ export function generateValidatorFile(\n \n import type { AppRoutes, AppRouteHandlerRoutes, LayoutRoutes, ParamMap } from \"./routes.js\"\n import type { ResolvingMetadata, ResolvingViewport } from \"next/dist/li...
2025-08-14T15:47:42
golang/go
430a3dc4587a9a3f8696d6eb34c8265877022e34
e4216d54f58616b862013e2810436462db08b6ed
crypto/internal/cryptotest: test Armv8.2 on darwin/arm64 Fixes #69593 Cq-Include-Trybots: luci.golang.try:gotip-darwin-arm64_15 Change-Id: I6a6a4656302d65b582df582fa12bb72b88b0316d Reviewed-on: https://go-review.googlesource.com/c/go/+/667755 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -7,6 +7,7 @@ package cryptotest\n import (\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/impl\"\n+\t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n \t\"testing\"\n@@ -35,15 +36,14 @@ func TestAllImplement...
2025-04-23T21:15:51
electron/electron
3c31246343b3b4e9457d4672eebe46d64c673d0a
7ab2a821669d4ce603a118b904f68e342ef3d807
fix: store portal restore token under the right source ID (#40098) XDG Desktop Portal provides restore tokens to restore a previously selected PipeWire stream instead of prompting the user again. This restore token is single use only and it has to be replaced when the stream is completed/stopped. BaseCapturerPip...
[ { "path": "patches/webrtc/.patches", "patch": "@@ -1,3 +1,4 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch\n fix_check_pipewire_init_before_creating_generic_capturer.patch\n+pipewire_capturer_make_restore_tokens_re-usable_more_than_one...
2023-10-12T11:17:27
facebook/react
6e65445911e15e51a549fe456a428d342ba745e5
ec05176fb3950f905f16616934c560d4150130d3
Fix playground e2e test for real ghstack-source-id: 1b52cb312a5f26e8e058bfe4a29b586ffaeb25d7 Pull Request resolved: https://github.com/facebook/react-forget/pull/2843
[ { "path": "compiler/apps/playground/__tests__/e2e/page.spec.ts", "patch": "@@ -6,30 +6,44 @@\n */\n \n import { expect, test } from \"@playwright/test\";\n+import { encodeStore, type Store } from \"../../lib/stores\";\n \n-const delay = 50;\n+const STORE: Store = {\n+ source: `export default function Test...
2024-04-11T16:13:59
nodejs/node
81cc72996a1f7e8ca21881b5b3f70b01e97cb2d1
8b8fc53c9ae4ef6b0888672fa666fb7a849bae13
build: fix eslint makefile target PR-URL: https://github.com/nodejs/node/pull/54999 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "Makefile", "patch": "@@ -1388,19 +1388,19 @@ run-lint-js = tools/eslint/node_modules/eslint/bin/eslint.js --cache \\\n \t--max-warnings=0 --report-unused-disable-directives $(LINT_JS_TARGETS)\n run-lint-js-fix = $(run-lint-js) --fix\n \n-tools/eslint/node_modules: tools/eslint/package-lock.json\n...
2024-09-20T21:46:54
rust-lang/rust
33a8dc10cf4efe91874cf02dc24afb55448bcc09
fef627b1ebdc7369ddf8a4031a5d25733ac1fb34
Fix wrong par_slice implementation
[ { "path": "compiler/rustc_data_structures/src/sync/parallel.rs", "patch": "@@ -133,7 +133,7 @@ fn par_slice<I: DynSend>(\n rustc_thread_pool::scope(|s| {\n let proof = items.derive(());\n let group_size = std::cmp::max(items.len() / 128, 1);\n- for group in items.chunks_exact_mut(...
2026-02-16T14:49:42
vercel/next.js
88383fccf0e398ff341db66ba40d0ed500e98857
5d4e85d2c51b382d5a1d3cf2e6e5c2f68dba138c
Fix fetch logging after revalidation via server action (#82643) When revalidating a tag or path with a server action, we do want to log any fetches that are made during the subsequent rerendering, when [fetch logging](https://nextjs.org/docs/app/api-reference/config/next-config-js/logging#fetching) is enabled. This g...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -1454,7 +1454,6 @@ async function renderToHTMLOrFlightImpl(\n renderOpts: RenderOpts,\n workStore: WorkStore,\n parsedRequestHeaders: ParsedRequestHeaders,\n- requestEndedState: { ended?: boolean },\n postponedState: Postp...
2025-08-14T15:12:31