repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 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 |
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 |
rust-lang/rust | 05cd01b8879f599e064ffd7294a5ae09320e25b5 | 85de83b5b2485e4038c2cd8a168590e99b3cee0c | fix: verify NeverToAny adjustment in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -820,28 +820,17 @@ fn foo() -> i32 {\n \n #[test]\n fn binop_lhs_never_place_diverges() {\n- check_infer_with_mismatches(\n+ check_no_mismatches(\n r#\"\n //- minicore: sized, add\n fn foo() -> i32 {\n ... | 2026-02-16T12:59:04 |
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 | 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 |
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 |
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 |
rust-lang/rust | 04334f05157ce6f0d7898de357d9ddd37769f6ef | 1542d6405c144697cd9d5f50c5db55c0931651af | fix testing at lgammaf overflow threshold
The current implementation of lgammaf evaluates to f32::MAX at the first
input that would overflow if correctly rounded. This is still well within
allowed error, so special case it. | [
{
"path": "library/compiler-builtins/libm-test/src/precision.rs",
"patch": "@@ -222,6 +222,15 @@ impl MaybeOverride<(f32,)> for SpecialCase {\n return XFAIL_NOCHECK;\n }\n \n+ // the testing infrastructure doesn't account for allowed ulp in the case of overflow\n+ if matche... | 2026-02-16T02:36:15 |
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 | 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 |
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 |
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 | 47ed4526d9aa208e7a5c9249586d42784ff660da | 74dd36a934caddbfabe3a44694958e4d3b2c4af6 | Remove `DEP_NODE_DEBUG`.
Like the previous commit, it's no longer needed. | [
{
"path": "compiler/rustc_interface/src/callbacks.rs",
"patch": "@@ -11,8 +11,8 @@\n \n use std::fmt;\n \n-use rustc_errors::{DiagInner, TRACK_DIAGNOSTIC};\n-use rustc_middle::dep_graph::{DepNode, TaskDepsRef};\n+use rustc_errors::DiagInner;\n+use rustc_middle::dep_graph::TaskDepsRef;\n use rustc_middle::ty... | 2026-02-16T10:13:40 |
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 | 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 |
golang/go | 711ff943afc572c6b0e800aa1e73aaf336568c2d | e9d3b030ed6fe8380d9b0411ef06eff001769641 | testing: add Output method to TB
Updates #59928
Fixes #73937
Change-Id: Ibf7ec61758edccd245841c3acc9096563b44fcd2
Reviewed-on: https://go-review.googlesource.com/c/go/+/677875
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Rev... | [
{
"path": "api/go1.25.txt",
"patch": "@@ -101,6 +101,7 @@ pkg testing, method (*F) Output() io.Writer #59928\n pkg testing, method (*T) Attr(string, string) #43936\n pkg testing, method (*T) Output() io.Writer #59928\n pkg testing, type TB interface, Attr(string, string) #43936\n+pkg testing, type TB interf... | 2025-05-31T14:41:15 |
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 |
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 |
rust-lang/rust | 74dd36a934caddbfabe3a44694958e4d3b2c4af6 | 8d56cfe4c3dfec0a258b8371931c608fce4510bb | Remove `DEP_KIND_DEBUG`.
It's plumbing to work around lack of access to `rustc_middle`, which is
no longer a problem. | [
{
"path": "compiler/rustc_interface/src/callbacks.rs",
"patch": "@@ -12,8 +12,7 @@\n use std::fmt;\n \n use rustc_errors::{DiagInner, TRACK_DIAGNOSTIC};\n-use rustc_middle::dep_graph::dep_node::default_dep_kind_debug;\n-use rustc_middle::dep_graph::{DepKind, DepNode, TaskDepsRef};\n+use rustc_middle::dep_gr... | 2026-02-16T10:04:57 |
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 |
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 | 1947c4233a33953088468a23457f6779c34be2d1 | 8cd7f17248b9215530e9ce9ed7831fc24b5eeef7 | runtime: set HeapGoal to zero when the GC is disabled
When the GC is disabled, the tracer should emit a heap goal of 0. Not
setting the heap goal to 0 causes an inaccurate NextGC value to be
emmited.
Fixes #63864
Change-Id: Iecceaca86c0a43c1cc4d9433f1f9bb736f01ccbc
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/runtime/traceruntime.go",
"patch": "@@ -574,7 +574,9 @@ func (tl traceLocker) HeapAlloc(live uint64) {\n // HeapGoal reads the current heap goal and emits a HeapGoal event.\n func (tl traceLocker) HeapGoal() {\n \theapGoal := gcController.heapGoal()\n-\tif heapGoal == ^uint64(0) {\n+\t// The ... | 2025-01-02T19:41:59 |
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 |
rust-lang/rust | 1c462c2d502bf1252788149a5d791eaccea2a742 | b214aac14c02e1cdf6cec744b9c6a05682b427b7 | fix: complete derive helpers on empty nameref
Example
---
```rust
//- /mac.rs crate:mac
pub fn my_derive() {}
//- /lib.rs crate:lib deps:mac
pub struct Foo(#[$0] i32);
```
**Before this PR**
```text
...
at must_use
at no_mangle
...
```
**After this PR**
```text
...
at must_use
at my_cool_helper_attribute derive ... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs",
"patch": "@@ -1501,7 +1501,7 @@ fn classify_name_ref<'db>(\n | SyntaxKind::RECORD_FIELD\n )\n })\n- .and_then(|_| nameref.as_ref()?.syntax().ancestors().find_map(... | 2026-02-15T10:35:22 |
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 | 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 |
golang/go | 8cd7f17248b9215530e9ce9ed7831fc24b5eeef7 | 29782bd347a1c707b6804ea6ee7da3a70ba9fd4a | testing, testing/synctest: report correct duration after panics
Report the correct wall-clock test duration after handling a
panic in a synctest.Test bubble.
Fixes #73852
Change-Id: I053262e5eac2dd9d5938b17c3093cbc3fa115a0d
Reviewed-on: https://go-review.googlesource.com/c/go/+/676695
Auto-Submit: Damien Neil <dneil... | [
{
"path": "src/testing/synctest/synctest.go",
"patch": "@@ -273,13 +273,19 @@ import (\n // associated with the bubble.\n // - T.Run, T.Parallel, and T.Deadline must not be called.\n func Test(t *testing.T, f func(*testing.T)) {\n+\tvar ok bool\n \tsynctest.Run(func() {\n-\t\ttestingSynctestTest(t, f)... | 2025-05-23T23:21:19 |
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 |
rust-lang/rust | e12d83967e0537f4066f18a485d61e044f0314b6 | 9be3b21559a5de22ee3920dc91811d4f1c5ac65c | ci: Resolve an issue calculating workflow variables
PRs are now getting the following:
Traceback (most recent call last):
File "/home/runner/work/compiler-builtins/compiler-builtins/ci/ci-util.py", line 510, in <module>
main()
File "/home/runner/work/compiler-builtins/compiler-builtins/ci/ci-u... | [
{
"path": "library/compiler-builtins/ci/ci-util.py",
"patch": "@@ -71,19 +71,21 @@ def eprint(*args, **kwargs):\n print(*args, file=sys.stderr, **kwargs)\n \n \n-@dataclass(init=False)\n+@dataclass(kw_only=True)\n class PrCfg:\n \"\"\"Directives that we allow in the commit body to control test behav... | 2026-02-16T09:02:14 |
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 | 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 |
golang/go | 29782bd347a1c707b6804ea6ee7da3a70ba9fd4a | 78e86297f5cccb82a6a57081947fab8e8af32586 | os: add implementation of fs.ReadLinkFS to *rootFS
Fixes #73887
Change-Id: I43f3f4324d740b5381615bce864b7ec31415a635
Reviewed-on: https://go-review.googlesource.com/c/go/+/676135
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@google.com>
Revie... | [
{
"path": "src/os/root.go",
"patch": "@@ -352,8 +352,8 @@ func splitPathInRoot(s string, prefix, suffix []string) (_ []string, suffixSep s\n \n // FS returns a file system (an fs.FS) for the tree of files in the root.\n //\n-// The result implements [io/fs.StatFS], [io/fs.ReadFileFS] and\n-// [io/fs.ReadDir... | 2025-05-24T23:07:58 |
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 |
rust-lang/rust | 85de83b5b2485e4038c2cd8a168590e99b3cee0c | c5a613119e121d63e70c05de463d6226eb6146b8 | fix: use check_infer_with_mismatches in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -820,7 +820,7 @@ fn foo() -> i32 {\n \n #[test]\n fn binop_lhs_never_place_diverges() {\n- check_no_mismatches(\n+ check_infer_with_mismatches(\n r#\"\n //- minicore: sized, add\n fn foo() -> i32 {\n@@ -830... | 2026-02-16T09:52:32 |
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 | 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 |
golang/go | 9f3dd846e2ee6e8fcb2c673122d9d0c932e01b71 | 21b7e60c6b64dd3221ab5b95d164fb42492029e8 | cmd/internal/obj/s390x: fix potential recursive String call
This String method can potentially recurse infinitely, since %#x will
apparently call String if the method exists. This isn't well documented,
but cmd/vet will be updated soon to check this (when we update the
vendored x/tools dependency) so cut off the recur... | [
{
"path": "src/cmd/internal/obj/s390x/condition_code.go",
"patch": "@@ -122,7 +122,7 @@ func (c CCMask) String() string {\n \t}\n \n \t// invalid\n-\treturn fmt.Sprintf(\"Invalid (%#x)\", c)\n+\treturn fmt.Sprintf(\"Invalid (%#x)\", uint8(c))\n }\n \n func (CCMask) CanBeAnSSAAux() {}",
"additions": 1,
... | 2025-05-29T19:04:08 |
rust-lang/rust | e028e7848cc752a9e84b082e9ec888cd28982f62 | 417cc114f526a6be58faf6f90966381e366a7986 | Re-enable fixed rustc test | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -59,7 +59,6 @@ rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported\n rm tests/ui/asm/label-operand.rs # same\n rm tests/ui/asm/may_unwind.rs # asm unwinding not supported\n rm tests/ui/asm/aarch64/may_unwind.rs # same\n-rm tests/ui/asm/x86_6... | 2026-02-16T09:53:02 |
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 |
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 | 21b7e60c6b64dd3221ab5b95d164fb42492029e8 | 555d425d177db7fa7123779d253aee42980cb8a3 | runtime, testing/synctest: breaking bubble isolation with Cond is fatal
sync.Cond.Wait is durably blocking. Waking a goroutine out of Cond.Wait
from outside its bubble panics.
Make this panic a fatal panic, since it leaves the notifyList in an
inconsistent state. We could do some work to make this a recoverable
panic... | [
{
"path": "src/runtime/crash_test.go",
"patch": "@@ -1228,3 +1228,20 @@ func TestFinalizerOrCleanupDeadlock(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestSynctestCondSignalFromNoBubble(t *testing.T) {\n+\tfor _, test := range []string{\n+\t\t\"SynctestCond/signal/no_bubble\",\n+\t\t\"SynctestCond/broadca... | 2025-05-22T18:14:53 |
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 |
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 | 555d425d177db7fa7123779d253aee42980cb8a3 | f14f3aae1c3dc382c15d9c3174a037b7d3595009 | testing, testing/synctest: write bubble errors to parent test log
Ensure that log messages written to the testing.T created by
synctest.Test appear in the test output when a test fails.
Fixes #73902
Change-Id: Ie97f5efe54eb003e6c0a5394c2def4cac1520ecb
Reviewed-on: https://go-review.googlesource.com/c/go/+/676995
Rev... | [
{
"path": "src/testing/synctest/synctest_test.go",
"patch": "@@ -22,37 +22,56 @@ func TestSuccess(t *testing.T) {\n }\n \n func TestFatal(t *testing.T) {\n-\trunTest(t, func() {\n+\trunTest(t, nil, func() {\n \t\tsynctest.Test(t, func(t *testing.T) {\n \t\t\tt.Fatal(\"fatal\")\n \t\t})\n-\t}, `^=== RUN Te... | 2025-05-28T17:55:26 |
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 |
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 |
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 | 4878b4471bf1267a8f87b40ed49b36ab82b79d18 | 7b4d065267aec8f899a5c5423c1ac501d31807cc | slices: document and test nilness behavior of all functions
This change documents the current nilness behavior of all
functions in the package, and asserts each with a test.
There is no change to behavior, but the postcondition is
strengthened, so this may require a proposal.
Fixes #73604
Fixes #73048
Change-Id: Ie... | [
{
"path": "src/slices/iter.go",
"patch": "@@ -46,6 +46,7 @@ func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {\n \n // AppendSeq appends the values from seq to the slice and\n // returns the extended slice.\n+// If seq is empty, the result preserves the nilness of s.\n func AppendSeq[Slice ~[]E, E any](s... | 2025-05-12T17:16: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 |
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 | c5a613119e121d63e70c05de463d6226eb6146b8 | 23a3e642d7e245a7d65eb1ba5a4df3d089c39e6a | fix: use `ExprIsRead::Yes` for binary operator operands
both operands of binary operators (including compound assignments like
`+=`) were inferred with `ExprIsRead::No`, which prevented divergence
detection for place expressions of type `!`. this caused false type
mismatches when a function's return type depended on t... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/op.rs",
"patch": "@@ -178,9 +178,9 @@ impl<'a, 'db> InferenceContext<'a, 'db> {\n // trait matching creating lifetime constraints that are too strict.\n // e.g., adding `&'a T` and `&'b T`, given `&'x T: Add<&'x T>`, ... | 2026-02-16T07:47:46 |
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 |
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 |
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 |
golang/go | 3b77085b40bf0d53528d6852d07c00c81021c855 | f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71 | runtime: increment updatemaxprocs metric only when disabled
The updatemaxprocs metric logic is currently backwards. We only
increment the metric when we update GOMAXPROCS, but that only occurs if
updatemaxprocs is enabled.
Instead, the metric is supposed to increment when updatemaxprocs is
disabled and there would be... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -6567,6 +6567,22 @@ var (\n //\n // This is based on forcegchelper.\n func defaultGOMAXPROCSUpdateEnable() {\n+\tif debug.updatemaxprocs == 0 {\n+\t\t// Unconditionally increment the metric when updates are disabled.\n+\t\t//\n+\t\t// It would be more descriptiv... | 2025-05-28T18:34:52 |
rust-lang/rust | 25a71ea88818c2a364a915196e06e0bac39693dd | 88d951e25107a9c3e4291e999101e1130b550d86 | Fix predicates of builtin derive traits with two parameters defaulting to `Self`
I.e. `PartialEq` and `PartialOrd`. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/builtin_derive.rs",
"patch": "@@ -260,7 +260,22 @@ fn simple_trait_predicates<'db>(\n let param_idx =\n param_idx.into_raw().into_u32() + (generic_params.len_lifetimes() as u32);\n let param_ty = Ty::new_param(inter... | 2026-02-15T22:11:51 |
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 | 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 |
golang/go | f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71 | 263bc50c90ff8e0bcd55765819056807acfd20ab | go/doc: NewFromFiles: fix panic on Files with SkipObjectResolution
This CL fixes a panic in NewFromFiles when it is provided files
produced by the parser in SkipObjectResolution mode, which skips
the step of connecting ast.Idents to (deprecated) ast.Objects.
Instead of calling ast.NewPackage, which performs a number o... | [
{
"path": "src/go/doc/doc.go",
"patch": "@@ -188,6 +188,7 @@ func (p *Package) collectFuncs(funcs []*Func) {\n //\n // The package is specified by a list of *ast.Files and corresponding\n // file set, which must not be nil.\n+//\n // NewFromFiles uses all provided files when computing documentation,\n // so... | 2025-05-21T15:21:31 |
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 |
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 |
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 |
rust-lang/rust | 76c041c19a6c9e4c0a196c92afda2c82d1dc78be | f5161526e6315d3aeb0f89456de451c66f646017 | stdarch-gen-hexagon: Fix formatting | [
{
"path": "library/stdarch/crates/stdarch-gen-hexagon/src/main.rs",
"patch": "@@ -312,8 +312,13 @@ fn read_header(crate_dir: &Path) -> Result<String, String> {\n println!(\"Reading HVX header from: {}\", header_path.display());\n println!(\" (LLVM version: {})\", LLVM_VERSION);\n \n- std::fs::re... | 2026-02-15T18:18:19 |
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 |
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 |
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 | dbaa2d3e6525a29defdff16f354881a93974dd2e | 6160fa59b6523e781db47eb1ee8f929398f2bb78 | cmd/compile: do nil check before calling duff functions, on arm64 and amd64
On these platforms, we set up a frame pointer record below
the current stack pointer, so when we're in duffcopy or duffzero,
we get a reasonable traceback. See #73753.
But because this frame pointer record is below SP, it is vulnerable.
Anyth... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64Ops.go",
"patch": "@@ -897,8 +897,8 @@ func init() {\n \t\t\t\tinputs: []regMask{buildReg(\"DI\")},\n \t\t\t\tclobbers: buildReg(\"DI\"),\n \t\t\t},\n-\t\t\tfaultOnNilArg0: true,\n-\t\t\tunsafePoint: true, // FP maintenance around DUFFCOPY can be clobbe... | 2025-05-29T00:09:05 |
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 |
nodejs/node | 62383cd113bbb160924b0a8c65db0dc2296be490 | 4dfed556baf03117859143aee6ea23525313e82b | module: implement flushCompileCache()
This implements an API for users to intentionally flush the
accumulated compile cache instead of waiting until process
shutdown. It may be useful for application that loads dependencies
first and then either reload itself in other instances, or spawning
other instances that load a... | [
{
"path": "doc/api/module.md",
"patch": "@@ -199,6 +199,13 @@ Compilation cache generated by one version of Node.js can not be reused by a dif\n version of Node.js. Cache generated by different versions of Node.js will be stored\n separately if the same base directory is used to persist the cache, so they c... | 2024-09-04T18:18:12 |
golang/go | 18ad74dd36a9bbdc6a95a9de398b3cd8917898ae | 70109eb32625487d9c774d602a4fa2422e218f1b | go/types, types2: dump position stack for non-bailout panics
We make sure to dump to stderr since that's where the panic information
ends up. Long traces get truncated with a "..." in the middle. We pick
an arbitrary limit of 10 positions, but this could be changed.
For #51603
Change-Id: I02326a93181e94e1c48afc05684... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"go/constant\"\n \t. \"internal/types/errors\"\n+\t\"os\"\n \t\"sync/atomic\"\n )\n \n@@ -419,7 +420,24 @@ func (check *Checker) handleBailout(err *error) {\n \t\t// normal return or early exit\n \t\t... | 2025-05-28T15:10:53 |
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 |
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 |
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 | 4dfed556baf03117859143aee6ea23525313e82b | 9a73aa0d15b82c3e6730980fddcaccab1bbed34e | module: throw when invalid argument is passed to enableCompileCache()
PR-URL: https://github.com/nodejs/node/pull/54971
Fixes: https://github.com/nodejs/node/issues/54770
Fixes: https://github.com/nodejs/node/issues/54465
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.... | [
{
"path": "src/node_modules.cc",
"patch": "@@ -436,10 +436,13 @@ void BindingData::GetPackageScopeConfig(\n }\n \n void EnableCompileCache(const FunctionCallbackInfo<Value>& args) {\n- CHECK(args[0]->IsString());\n Isolate* isolate = args.GetIsolate();\n Local<Context> context = isolate->GetCurrentCont... | 2024-09-17T09:48:56 |
electron/electron | 7ab2a821669d4ce603a118b904f68e342ef3d807 | 5c821d33791345446eef3a90a6bea9c920d001d8 | chore: bump node to v18.18.1 (main) (#40174)
* chore: bump node in DEPS to v18.18.1
* Revert "deps: upgrade to libuv 1.46.0"
https://github.com/nodejs/node/pull/50036
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '119.0.6045.0',\n 'node_version':\n- 'v18.18.0',\n+ 'v18.18.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-10-12T07:53:37 |
golang/go | 70109eb32625487d9c774d602a4fa2422e218f1b | eff328804253e40a2de9c5d89cf7a7c1e23aa11d | cmd/link: allow linkname reference to a TEXT symbol regardless of size
In CL 660696, we made the linker to choose the symbol of the
larger size in case there are multiple contentless declarations of
the same symbol. We also made it emit an error in the case that
there are a contentless declaration of a larger size and... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -452,33 +452,50 @@ func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind in\n \tif oldsym.Dupok() {\n \t\treturn oldi\n \t}\n-\t// If one is a DATA symbol (i.e. has content, DataSize != 0)\n-\t// and the other is BSS, t... | 2025-05-21T18:32:21 |
vercel/next.js | f79cd752e3dea17562399d3760a8f15c923e58b7 | 0bd7423844e218b19537880a7fa4314749fdf57d | Turbopack: patch sourcemap crate (#82641)
The source content was somethings incorrect with scope hoisting on Turbopack:
<img width="2018" height="721" alt="image" src="https://github.com/user-attachments/assets/e2e1bf1c-2a84-4acb-8388-a809670b4902" />
Fix is in https://github.com/swc-project/swc-sourcemap/pull/7 | [
{
"path": "Cargo.lock",
"patch": "@@ -8246,8 +8246,7 @@ dependencies = [\n [[package]]\n name = \"swc_sourcemap\"\n version = \"9.3.3\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3cd6e0cad02163875258edaf9ae6004e2526be137bdde6a46c540515615949b1\"\n+source = \"git+http... | 2025-08-14T12:02:28 |
nodejs/node | 9a73aa0d15b82c3e6730980fddcaccab1bbed34e | f666a1b754a028652f167573d8c6b8d7b0ecc5c7 | module: write compile cache to temporary file and then rename it
This works better in terms of avoiding race conditions.
PR-URL: https://github.com/nodejs/node/pull/54971
Fixes: https://github.com/nodejs/node/issues/54770
Fixes: https://github.com/nodejs/node/issues/54465
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com... | [
{
"path": "src/compile_cache.cc",
"patch": "@@ -219,6 +219,8 @@ CompileCacheEntry* CompileCacheHandler::GetOrInsert(\n return loaded->second.get();\n }\n \n+ // If the code hash mismatches, the code has changed, discard the stale entry\n+ // and create a new one.\n auto emplaced =\n compiler... | 2024-09-04T18:09:56 |
electron/electron | 5c821d33791345446eef3a90a6bea9c920d001d8 | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | fix: `webContents.capturePage()` for hidden windows on Windows/Linux (#39730) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -469,9 +469,16 @@ base::IDMap<WebContents*>& GetAllWebContents() {\n void OnCapturePageDone(gin_helper::Promise<gfx::Image> promise,\n base::ScopedClosureRunner capture_handle,\n const SkBi... | 2023-10-12T07:35:23 |
facebook/react | ec05176fb3950f905f16616934c560d4150130d3 | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | Make string values for config case-insensitive
Fixes a tiny inconsistency with compiler options where one was all
uppercase and one all lowercase by normalizing to lowercase regardless
of the casing of the user's config.
ghstack-source-id: fe60a3259de89a1b3fdd7475950e16e96cc57f6b
Pull Request resolved: https://github... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin.ts",
"patch": "@@ -18,7 +18,7 @@ export function runReactForgetBabelPlugin(\n text: string,\n file: string,\n language: \"flow\" | \"typescript\",\n- options: PluginOptions | null,\n+ options: Partial<PluginOp... | 2024-04-11T14:45:35 |
golang/go | 11d2b28bffb82e0ad0bc102812bed86ce81a1959 | 04b1030ae488851278257bac66ccf9925f1b87fb | [dev.simd] cmd/compile: add and fix k register supports
This CL marks the "mask" ssa type as a simd type. This will make the
last return of `simdMov` reachable and the spilling of K register
correct.
This CL also makes `simdReg` able to return K registers.
Change-Id: Ia66230d3e5425d9e8bdd0081b008e098382d3827
Reviewe... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1671,6 +1671,8 @@ func simdReg(v *ssa.Value) int16 {\n \t\tpanic(\"simdReg: not a simd type\")\n \t}\n \tswitch t.Size() {\n+\tcase 8:\n+\t\treturn v.Reg() // K registers\n \tcase 16:\n \t\treturn v.Reg()\n \tcase 32:",
"additions": 2,
... | 2025-05-28T17:00:59 |
vercel/next.js | 3c142be74c73a675c24e12e8c7e39c33162d07a0 | 4a3383a25d3b7a17bdb4bd2c748c80834f1f497a | Turbopack: fix edge function name (#82617)
Edge functions with route `/` had `"name": "/"` in the `middleware-manifest.json`. When deploying to Vercel, this wouldn't work as the Vercel builder turned that into `"name": ""`.
For the root function, Webpack emits a name like `"app/page"` or `"pages/index"`.
This aligns T... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,7 +34,10 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{NextRuntime, module_styles_rule_condition, styles_rule_condition},\n+ ... | 2025-08-14T07:22:38 |
electron/electron | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | c892c61b901b760c83c81e21b2922b84c68e42ac | chore: formally deprecate `crashed` and `renderer-process-crashed` events (#40089) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -75,6 +75,34 @@ console.log(app.runningUnderRosettaTranslation)\n console.log(app.runningUnderARM64Translation)\n ```\n \n+### Deprecated: `renderer-process-crashed` event on `app`\n+\n+The `renderer-process-crashed` event on `app` has been deprecated.\n+Us... | 2023-10-10T23:49:01 |
nodejs/node | f666a1b754a028652f167573d8c6b8d7b0ecc5c7 | fd8c762fab00e21c520d6c2256e017f9933691c6 | tls: fix 'ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED' typo
Co-Authored-By: Fabian Iwand <mootari@users.noreply.github.com>
PR-URL: https://github.com/nodejs/node/pull/52627
Fixes: https://github.com/nodejs/node/issues/52448
Refs: https://github.com/nodejs/node/pull/23188
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewe... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2803,9 +2803,9 @@ event is emitted before continuing.\n Attempting to set a TLS protocol `minVersion` or `maxVersion` conflicts with an\n attempt to set the `secureProtocol` explicitly. Use one mechanism or the other.\n \n-<a id=\"ERR_TLS_PSK_SET_IDENTIY_HINT_FAI... | 2024-09-20T17:59:22 |
facebook/react | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | 200b0f233378f8450fc3078c6200d56cc720f2ea | Fix playground e2e test
ghstack-source-id: 3904ff9beea21ffbb79a6a15fcfbb72f04a2d170
Pull Request resolved: https://github.com/facebook/react-forget/pull/2842 | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/user-input.txt",
"patch": "@@ -0,0 +1,13 @@\n+function TestComponent(t0) {\n+ const $ = useMemoCache(2);\n+ const { x } = t0;\n+ let t1;\n+ if ($[0] !== x) {\n+ t1 = <Button>{x}</Button>;\n+ $[0] = x;\n+ $[1] = t1;\n+ ... | 2024-04-10T22:17:38 |
rust-lang/rust | d13828b2c7cedb6147999222118cd87bf4fe28cd | a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb | fix: re-format the changes | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -59,8 +59,8 @@ use rustc_hir::def_id::{DefId, DefIdSet};\n use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, StableSince};\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n-use rustc_... | 2026-02-15T14:34:53 |
golang/go | ed08d2ad0928c0fc77cc2053863616ffb58c5aac | fce9d4515defec0473ca3a685408ef5304d23aa9 | os: don't follow symlinks on Windows when O_CREATE|O_EXCL and read-only
Fix a bug in CL 672396, where we add FILE_FLAG_OPEN_REPARSE_POINT to
the attributes passed to CreateFile, but then overwrite the attributes
with FILE_ATTRIBUTE_READONLY when opening a file with a read-only
permissions mode.
For #73702
Change-Id:... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -2309,9 +2309,9 @@ func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n \t\tvar f *File\n \t\tvar err error\n \t\tif r == nil {\n-\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o666)\n+\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o444... | 2025-05-27T21:16:17 |
vercel/next.js | 3c9c995985a7631199b4ef4c57e4bd5bddfa9dd1 | 1b821389dce73a0e468dbb84318b91e41475b49f | docs: fix typos (#82503)
## Summary
Fix typos and spelling errors in various MDX documentation files to
improve clarity and consistency.
Documentation:
- Standardize 'cacheable' spelling across self-hosting guide
- Correct 'potentionally' to 'potentially' in image component references
- Fix 'unecessary' to 'unnecess... | [
{
"path": "docs/01-app/02-guides/self-hosting.mdx",
"patch": "@@ -215,7 +215,7 @@ module.exports = {\n \n ## Usage with CDNs\n \n-When using a CDN in front on your Next.js application, the page will include `Cache-Control: private` response header when dynamic APIs are accessed. This ensures that the result... | 2025-08-13T22:28:28 |
electron/electron | 86df4db6f10afbe5872f8ecbcbfe6191374fc1f7 | 563c370d51f302b6d4a7fee8b47e1cc3e1ca2fe3 | fix: crash when calling non-reentrant function in `loadURL` (#40143) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -33,6 +33,7 @@\n #include \"components/security_state/content/content_utils.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"content/browser/renderer_host/frame_tree_node.h\" // nogncheck\n+#include \"co... | 2023-10-10T10:46:04 |
nodejs/node | f79fd03f416130d61f739ebaefab3fa5b1641868 | 99433a2d7a7a7d73588afbd22c82aa21d2db610a | test_runner: add support for coverage via run()
PR-URL: https://github.com/nodejs/node/pull/53937
Fixes: https://github.com/nodejs/node/issues/53867
Refs: https://github.com/nodejs/node/issues/53924
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <m... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1246,6 +1246,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/53937\n+ description: Added coverage options.\n - version: v22.8.0\n pr-url: https://github.com/nodejs/node/pull/539... | 2024-09-20T13:20:45 |
facebook/react | 3f947b1b468a2a2a419227ce26842c4b6ba31082 | 870e4045ab67020e9cc0f0940d46db7bbbffad3b | [tests] Assert scheduler log empty in internalAct (#28737)
We should force `assertLog` to be called before each `act` block to
ensure the queue is empty.
Requires fixing tests:
- https://github.com/facebook/react/pull/28745
- https://github.com/facebook/react/pull/28758
- https://github.com/facebook/react/pull/... | [
{
"path": "packages/internal-test-utils/internalAct.js",
"patch": "@@ -19,6 +19,7 @@ import type {Thenable} from 'shared/ReactTypes';\n import * as Scheduler from 'scheduler/unstable_mock';\n \n import enqueueTask from './enqueueTask';\n+import {diff} from 'jest-diff';\n \n export let actingUpdatesScopeDept... | 2024-04-10T18:13:46 |
golang/go | b78e38065efd5f4079564b9e8e3529950ba0dd52 | 961818e0131aaa7468616a90ce9ebf00111ccdaa | runtime: define lock ranking between weak pointers and synctest
Fixes #73817
Change-Id: I0101bdc797237b4c7eb58b414c71b009b0b44447
Reviewed-on: https://go-review.googlesource.com/c/go/+/675176
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@g... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -9,11 +9,13 @@ import (\n \t\"internal/synctest\"\n \t\"iter\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\t\"weak\"\n )\n \n func TestNow(t *testing.T) {\n@@ -625,6 +627,17 @@ fu... | 2025-05-21T20:02:59 |
rust-lang/rust | a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb | 40a3ca1189940ad1805c8deb3ba60744fa16dc57 | fix: remove unused import | [
{
"path": "src/librustdoc/html/render/mod.rs",
"patch": "@@ -60,7 +60,7 @@ use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, Stable\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n use rustc_span::symbol::{Symbol, sym};\n-use rustc_span::{Byt... | 2026-02-15T14:26:54 |
vercel/next.js | 1b821389dce73a0e468dbb84318b91e41475b49f | e771609a7afff7139e279a9374c4a9c4988440ca | fix: use in operator to check dev indicator option when its obj (#82629) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -585,7 +585,8 @@ function assignDefaults(\n \n // Handle buildActivityPosition migration (needs to be done after merging with defaults)\n if (\n- result.devIndicators !== false &&\n+ result.devIndicators &&\n+ typeof result.devIndicat... | 2025-08-13T22:24:16 |
electron/electron | 47beca1d2af622ffe33a0c5261f1e54cae40cdbb | 925e4f7d7474204095b1e12bc8c281c4e7a63852 | docs: fix typo in session docs (#40138)
Fix typos for doc
Signed-off-by: zhangdiandian <1635468471@qq.com> | [
{
"path": "docs/api/session.md",
"patch": "@@ -1050,7 +1050,7 @@ To clear the handler, call `setDevicePermissionHandler(null)`.\n This handler can be used to provide default permissioning to devices without first calling for permission\n to devices (eg via `navigator.hid.requestDevice`). If this handler is... | 2023-10-10T10:43:18 |
nodejs/node | 2a1607cc2e9c42bb935b2e50c1635fd7f4a47c25 | a6ed2148a0744cb160d4e345f505f3a227b1133a | test: fix invalid wasm test
PR-URL: https://github.com/nodejs/node/pull/54935
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/es-module/test-esm-extensionless-esm-and-wasm.mjs",
"patch": "@@ -1,8 +1,8 @@\n // Flags: --experimental-wasm-modules\n-import { mustNotCall, spawnPromisified } from '../common/index.mjs';\n+import { spawnPromisified } from '../common/index.mjs';\n import * as fixtures from '../common/fixtur... | 2024-09-20T10:42:59 |
facebook/react | 2243b40abad449fe90a9af10f592d0c5c52591d5 | dfc64c6e31586f63703b81284b69b4ee5be82e5b | [tests] assertLog before act in useEffectEvent (#28763)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-reconciler/src/__tests__/useEffectEvent-test.js",
"patch": "@@ -742,7 +742,7 @@ describe('useEffectEvent', () => {\n await act(() =>\n ReactNoop.render(<ChatRoom roomId=\"general\" theme=\"light\" />),\n );\n- await act(() => jest.runAllTimers());\n+\n assertLo... | 2024-04-10T14:34:34 |
vercel/next.js | e771609a7afff7139e279a9374c4a9c4988440ca | 925f8a9446ca67551324825033febea3accd6419 | Fix generate-metadata.mdx typo (#82624)
<!-- 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
### Improv... | [
{
"path": "docs/01-app/03-api-reference/04-functions/generate-metadata.mdx",
"patch": "@@ -889,7 +889,7 @@ export const metadata = {\n \n ### `facebook`\n \n-You can connect a Facebook app or Facebook account to you webpage for certain Facebook Social Plugins [Facebook Documentation](https://developers.face... | 2025-08-13T21:58:12 |
electron/electron | a31deea1ba28335fb20f936a6dfd59b407ddca45 | 24bc0ee5c71a0ebf467c14ba0a11e872420cce96 | ci: fixup diagnose_goma_log.py call (#40131) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -754,8 +754,8 @@ step-show-goma-stats: &step-show-goma-stats\n command: |\n set +e\n set +o pipefail\n- $GOMA_DIR/goma_ctl.py stat\n- $GOMA_DIR/diagnose_goma_log.py\n+ python3 $GOMA_DIR/goma_ctl.py stat\n+ python3 $GOMA_... | 2023-10-09T13:19:21 |
nodejs/node | 636b3432d3b4cfe07ab9ee59ef861c9a96ea18fa | 4f701329728e6ee6da4e40176bdf8bb7694d1a41 | test: remove test-http-max-sockets flaky designation
There is no recent trace of failure for this test.
Fixes: https://github.com/nodejs/node/issues/47116
PR-URL: https://github.com/nodejs/node/pull/54976
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -14,8 +14,6 @@ test-watch-mode-inspect: PASS, FLAKY\n test-http2-large-file: PASS, FLAKY\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/47116\n-test-http-max-sockets: PASS, FLAKY\n # https://github.com/nodejs/node/issues/49630\n te... | 2024-09-20T09:57:06 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.