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
facebook/react
3e79c386048c4fe569afb023d85b71ed2ffe5b8e
af1aa8d0d31ffac773dd6d4081fcd64beac22919
More useCallback with ref fixtures
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-useCallback-accesses-ref-mutated-later-via-function-preserve-memoization.expect.md", "patch": "@@ -0,0 +1,42 @@\n+\n+## Input\n+\n+```javascript\n+// @enablePreserveExistingMemoizationGuarantees\n+import { useC...
2023-12-16T00:59:19
rust-lang/rust
dd1b72a0d8eacf5f774b0fcb34d86d772892a748
30bd49283c4e8f50182de032f05c7b0a0395b70d
Fix typos and grammar in documentation - Readme.md: add missing "you" ("If don't" → "If you don't") - Readme.md: fix wrong preposition ("without this backend" → "with this backend") - Readme.md: fix double space - doc/errors.md: fix transposed letters ("libgccijt" → "libgccjit") - doc/debugging.md: remove extra word (...
[ { "path": "Readme.md", "patch": "@@ -45,12 +45,12 @@ The default configuration (see below in the [Quick start](#quick-start) section)\n ./y.sh test --release\n ```\n \n-If don't need to test GCC patches you wrote in our GCC fork, then the default configuration should\n+If you don't need to test GCC pa...
2026-02-10T15:50:57
nodejs/node
973144b7c6ce60da2f51c43ac9b65e7de25e54f2
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
lib: convert signals to array before validation Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54714 Fixes: https://github.com/nodejs/node/issues/54674 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Rev...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -39,6 +39,10 @@ const {\n ERR_INVALID_THIS,\n },\n } = require('internal/errors');\n+const {\n+ converters,\n+ createSequenceConverter,\n+} = require('internal/webidl');\n \n const {\n validateAbortSignal,\n@@ -225,15 +229,19 @@ class Abor...
2024-09-06T17:40:21
vercel/next.js
e9eddf01e8b4bf1d2cb37e47beb9ade82f512187
1964b17e20b52144d4ecd0a8d66a19924f7159e5
Turbopack: Make turbo-tasks-fetch a bit more OOP-like (#81995) This was a request from @lukesandberg to make this API a bit more object-oriented: https://github.com/vercel/next.js/pull/81818#discussion_r2223136594 - `ReqwestClientConfig` is now just `FetchClient`. - `fetch` is a method on `FetchClient` instead of a f...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -9,7 +9,7 @@ use turbo_tasks::{\n trace::TraceRawVcs,\n };\n use turbo_tasks_env::{EnvMap, ProcessEnv};\n-use turbo_tasks_fetch::ReqwestClientConfig;\n+use turbo_tasks_fetch::FetchClient;\n use turbo_tasks_fs::FileSystemPath;\n use turbopack:...
2025-07-24T22:15:23
golang/go
698f86139bf72bcf7cbf08accc1c34394cb57acb
8d189f188e225e4919b34c0c097e75dfda255949
crypto: limit md5 or sha256 blocks processed at once in assembly This change limits the amount of data that can be hashed at once - the assembly routines are not preemptible and can result in large latency outliers when part of a larger system. Benchmarks for sha256 (on an arm64 M1): name old speed ...
[ { "path": "src/crypto/internal/fips140/sha256/sha256.go", "patch": "@@ -21,6 +21,11 @@ const size224 = 28\n // The block size of SHA-256 and SHA-224 in bytes.\n const blockSize = 64\n \n+// The maximum number of bytes that can be passed to block(). The limit exists\n+// because implementations that rely on ...
2025-05-13T00:45:25
electron/electron
1eb6e45a365fd7b73b23302662f29e465a698719
2e0517c0addc05678e59906d91d72cc8f4860547
ci: fix hang when validating AppVeyor artifacts (#39362)
[ { "path": "appveyor-woa.yml", "patch": "@@ -189,6 +189,31 @@ for:\n 7z a pdb.zip out\\Default\\*.pdb\n }\n - python3 electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest\n+ - ps: |\n+ ...
2023-08-07T07:51:53
facebook/react
0b32173d0995ad581513ff5d226b010fd117395c
721b6a4f91b883f353217f42e5d90f4e4efbf1da
More fixtures for useCallback with refs Extra fixture confirming that some usage of refs can break memoization, both in normal mode and in preserve-existing-memo mode.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/useCallback-set-ref-nested-property-dont-preserve-memoization.expect.md", "patch": "@@ -0,0 +1,67 @@\n+\n+## Input\n+\n+```javascript\n+// @enablePreserveExistingMemoizationGuarantees:false\n+import { useCallback, useRef ...
2023-12-16T00:22:13
nodejs/node
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
buffer: fix out of range for toString Co-authored-by: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54553 Fixes: https://github.com/nodejs/node/issues/52298 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/buffer.js", "patch": "@@ -843,12 +843,12 @@ Buffer.prototype.toString = function toString(encoding, start, end) {\n else if (start >= len)\n return '';\n else\n- start |= 0;\n+ start = MathTrunc(start) || 0;\n \n if (end === undefined || end > len)\n end = len;\n else\n-...
2024-09-06T17:39:24
vercel/next.js
1964b17e20b52144d4ecd0a8d66a19924f7159e5
329bcdc7ae9f327c44a024eff2de6d46b36518b0
[Segment Cache] Fix: Key by rewritten search (#81986) When a request URL is rewritten, the resulting data must be keyed by its rewritten search params — the ones that were used by the server to render the page — not the original search params. This works in most places by encoding the rewritten search params into page...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache-key.ts", "patch": "@@ -1,3 +1,6 @@\n+import { NEXT_REWRITTEN_QUERY_HEADER } from '../app-router-headers'\n+import type { RSCResponse } from '../router-reducer/fetch-server-response'\n+\n // TypeScript trick to simulate opaque types, lik...
2025-07-24T18:29:16
golang/go
8d189f188e225e4919b34c0c097e75dfda255949
a2fbb50322e716f75e9c4707afd2de725a95e14b
testing: add Output Output is a method on T, B and F. It provides an io.Writer that writes to the same test output stream as TB.Log. The new output writer is used to refactor the implementation of Log. It maintains the formatting provided by Log while making call site information optional. Additionally, it provides bu...
[ { "path": "api/next/59928.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg testing, method (*B) Output() io.Writer #59928\n+pkg testing, method (*F) Output() io.Writer #59928\n+pkg testing, method (*T) Output() io.Writer #59928", "additions": 3, "deletions": 0, "language": "Plain Text" }, { "path":...
2025-05-12T19:23:41
facebook/react
c6200d1a2bdfaee1b91f9a6364e7eecc060d5989
6747d4e33c1ea25612f475be2153f666b55c2b93
Fix comments, extend fixtures
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts", "patch": "@@ -130,12 +130,12 @@ export function dropManualMemoization(func: HIRFunction): void {\n * $1 = LoadGlobal useMemo // load the useMemo global (dead code)\n ...
2023-12-15T23:19:41
electron/electron
c5b9f766f373f4d403a8af2f75e28ca2d901cc32
6d0e8044ebca06a3de8d7063a0aa989735bab343
chore: bump chromium to 117.0.5923.0 (main) (#39304) * chore: bump chromium in DEPS to 117.0.5921.0 * chore: update chromium patches * 4721409: Remove redundant ARC configuration in /components | https://chromium-review.googlesource.com/c/chromium/src/+/4721409 * 4643750: Add V8_LOW_PRIORITY_TQ for main threa...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5911.0',\n+ '117.0.5921.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2023-08-04T08:47:29
nodejs/node
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
test: fix `test-process-load-env-file` when path contains `'` If the repo is cloned on a path that contains a quote, the test should not fail. PR-URL: https://github.com/nodejs/node/pull/54511 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-process-load-env-file.js", "patch": "@@ -8,7 +8,7 @@ const { join } = require('node:path');\n \n const basicValidEnvFilePath = fixtures.path('dotenv/basic-valid.env');\n const validEnvFilePath = fixtures.path('dotenv/valid.env');\n-const missingEnvFile = fixtures.path('dotenv/n...
2024-09-06T17:38:42
vercel/next.js
329bcdc7ae9f327c44a024eff2de6d46b36518b0
504fa32ae6276f15e2662f52f9ba8203362f227c
[devtools] Fix "open in editor" for locations in stackframes (#82013)
[ { "path": "packages/next/src/next-devtools/server/launch-editor.ts", "patch": "@@ -27,6 +27,7 @@ import fs from 'fs'\n import fsp from 'fs/promises'\n import os from 'os'\n import path from 'path'\n+import { fileURLToPath } from 'url'\n import shellQuote from 'next/dist/compiled/shell-quote'\n \n function i...
2025-07-24T12:41:03
golang/go
a2fbb50322e716f75e9c4707afd2de725a95e14b
1e436ba668f5988ca8fbeb68734800b9dcf33dbc
cmd/link: ignore mapping symbols on riscv64 Specified in RISC-V ELF psABI[1], mapping symbols are symbols starting with "$d" or "$x" with STT_NOTYPE, STB_LOCAL and zero sizes, indicating boundaries between code and data in the same section. Let's simply ignore them as they're only markers instead of real symbols. Thi...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -602,6 +602,14 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\t\t// See https://sourceware.org/bugzilla/show_bug.cgi?id=21809\n \t\t\t\t\tcontinue\n \t\t\t\t}\n+\n+\t\t\t\tif arch.Family == sys.RISC...
2025-05-09T15:09:39
facebook/react
723b616c6778fa46fb817e2e4e000fdc7fd1b46d
ec27708024d134ee13fbd11bfe4043b4cdda148b
enablePreserveMemo treats memo deps as frozen See discussion on #2448 for full context. In the new `@enablePreserveExistingMemoizationGuarantees` mode, the goal is to preserve the existing referential equality guarantees from the original code. #2448 lays the groundwork by explicitly marking the _output_ of each u...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -494,6 +494,8 @@ export function printInstructionValue(instrValue: ReactiveValue): string {\n }\n case \"ObjectMethod\":\n case \"FunctionExpression\": {\n+ const kind =\n+ instrValue.kind === \...
2023-12-15T21:47:22
electron/electron
6d0e8044ebca06a3de8d7063a0aa989735bab343
f8b05bc127a0bdca54ecf0ef004d07ceab782a80
fix: update `chrome.tabs` for Manifest v3 (#39317)
[ { "path": "shell/common/extensions/api/tabs.json", "patch": "@@ -3,13 +3,23 @@\n \"namespace\": \"tabs\",\n \"description\": \"Use the <code>chrome.tabs</code> API to interact with the browser's tab system. You can use this API to create, modify, and rearrange tabs in the browser.\",\n \"types\"...
2023-08-03T16:34:02
rust-lang/rust
fcb881244ba9b1b807a22999dc33b423ade01674
b1e033649cd6de95e6d045244ca808f11efd86ed
align_strange_enum_discriminant_offset: fix accidentally unused variable
[ { "path": "src/tools/miri/tests/pass/align_strange_enum_discriminant_offset.rs", "patch": "@@ -1,5 +1,4 @@\n-#![allow(unused)]\n-\n+#[allow(unused)]\n #[repr(u16)]\n enum DeviceKind {\n Nil = 0,\n@@ -19,5 +18,5 @@ fn main() {\n let x = None::<(DeviceInfo, u8)>;\n let y = None::<(DeviceInfo, u16)...
2026-02-11T21:43:14
vercel/next.js
b05d6d764216ffe22b0c802384fdda26f8841d6e
9d45ade9f66d31bed46cd020b6e254d5dae2747c
Turbopack: Move fs watcher anyhow::Context import inline to fix compilation warnings (#81997) I broke this in my previous PR https://github.com/vercel/next.js/pull/81909/files#r2225998847
[ { "path": "turbopack/crates/turbo-tasks-fs/src/watcher.rs", "patch": "@@ -10,7 +10,7 @@ use std::{\n time::Duration,\n };\n \n-use anyhow::{Context, Result};\n+use anyhow::Result;\n use notify::{\n Config, EventKind, PollWatcher, RecommendedWatcher, RecursiveMode, Watcher,\n event::{MetadataKind...
2025-07-24T03:26:58
nodejs/node
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
bec80892b324f55e030b354c87bfb011f28fff62
test: refactor fs-watch tests due to macOS issue In `macOS`, fsevents generated immediately before start watching may leak into the event callback. See: https://github.com/nodejs/node/issues/54450 for an explanation. This might be fixed at some point in `libuv` though it may take some time (see: https://github.com/lib...
[ { "path": "test/parallel/test-fs-promises-watch.js", "patch": "@@ -8,6 +8,7 @@ const { watch } = require('fs/promises');\n const fs = require('fs');\n const assert = require('assert');\n const { join } = require('path');\n+const { setTimeout } = require('timers/promises');\n const tmpdir = require('../commo...
2024-09-06T17:38:28
golang/go
ef58ec2b5a35f7b11a5bc0632cb156c5bcf56632
ac992f2614ee3abef8eb01ed8b7d5b4024cda48f
text/template: clone options when cloning templates Fixes #43022 Change-Id: I727b86ea0ebfff06f82c909457479c2afb9106dc Reviewed-on: https://go-review.googlesource.com/c/go/+/671615 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Rob Pike <r@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI...
[ { "path": "src/text/template/multi_test.go", "patch": "@@ -210,6 +210,7 @@ const (\n \tcloneText2 = `{{define \"b\"}}b{{end}}`\n \tcloneText3 = `{{define \"c\"}}root{{end}}`\n \tcloneText4 = `{{define \"c\"}}clone{{end}}`\n+\tcloneText5 = `{{define \"e\"}}{{.Foo}}{{end}}`\n )\n \n func TestClone(t *testing....
2025-05-10T11:18:32
facebook/react
fc3604301983d8adcd1b5c4b8dce4ece48d4f615
873a286029b86a9696b4f4fae9e465e8ace6d44f
Fixture for pruning unmemoized nonreactive deps Adds a fixture for our existing behavior that reactive scope dependencies exclude values which are non-reactive. The idea is that regardless of whether the value may actually get recreated over time or not, a "nonreactive" value cannot semantically change and therefo...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/unmemoized-nonreactive-dependency-is-pruned-as-dependency.expect.md", "patch": "@@ -0,0 +1,55 @@\n+\n+## Input\n+\n+```javascript\n+import { mutate, useNoAlias } from \"shared-runtime\";\n+\n+function Component(props) {\n...
2023-12-14T20:05:25
electron/electron
e96b1613a4dd9bfa1d47e9a493727fc0f385db9a
fe93f69e5a3f5d8f28b9834329590dce9a5c97f5
fix: destroy message port backend when JS env exits (#39335)
[ { "path": "shell/browser/api/message_port.h", "patch": "@@ -11,6 +11,7 @@\n #include \"gin/wrappable.h\"\n #include \"mojo/public/cpp/bindings/connector.h\"\n #include \"mojo/public/cpp/bindings/message.h\"\n+#include \"shell/common/gin_helper/cleaned_up_at_exit.h\"\n #include \"third_party/blink/public/com...
2023-08-03T12:30:19
rust-lang/rust
809af1f6353ceb0fef375c2ea89623deef07e8c4
e4b746486c91de2a50eafadb9be71512aa149e73
Fix clippy warnings
[ { "path": "src/builder.rs", "patch": "@@ -1495,6 +1495,8 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n \n #[cfg(not(feature = \"master\"))]\n fn extract_element(&mut self, vec: RValue<'gcc>, idx: RValue<'gcc>) -> RValue<'gcc> {\n+ use crate::context::new_arr...
2026-01-30T16:37:19
vercel/next.js
e506cab3727d48e6a942b7c308a26ec55feb0479
b8f43dd7ab625e8185f3c9b7219edcfe143fcf2b
Turbopack: Update bundled webpki-roots (#81906) - It makes sense to update these certs periodically. The long-term solution would be to stop shipping certs once https://github.com/seanmonstar/reqwest/issues/2159 is fixed. - ~`webpki-roots 0.26.11` is just a dumb re-export of `1.x`, so this avoids shipping the CA roots...
[ { "path": "Cargo.lock", "patch": "@@ -11114,9 +11114,9 @@ dependencies = [\n \n [[package]]\n name = \"webpki-roots\"\n-version = \"1.0.0\"\n+version = \"1.0.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cf...
2025-07-24T01:40:55
facebook/react
a6e65e83e8b0fb8407509e994a85422a9d3f933d
afbaa8d3caf2bd2be72b5c5dbe2280808b4c4b20
Prefer reporting conditional hook violations over "hook as value" violations After running the latest hook validation internally, I found some cases where there was a violation but the error message was not ideal. For example on this code: ```javascript usePossiblyNullHook?.(); ``` We reported a "hooks can'...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateHooksUsage.ts", "patch": "@@ -17,6 +17,7 @@ import {\n HIRFunction,\n IdentifierId,\n Place,\n+ SourceLocation,\n getHookKind,\n } from \"../HIR/HIR\";\n import {\n@@ -109,32 +110,47 @@ export function validateHooksUsage(...
2023-12-13T00:42:51
nodejs/node
e4fdd0b492f6a022a7a2bc63190dc6764a6ec7d6
94419bf64de32d27f9d3b693abd9924a56d8799d
test: refactor `test-esm-type-field-errors` Co-Authored-By: Jacob Smith <jacob@frende.me> PR-URL: https://github.com/nodejs/node/pull/54368 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/es-module/test-esm-type-field-errors.js", "patch": "@@ -2,6 +2,7 @@\n const common = require('../common');\n const assert = require('assert');\n const exec = require('child_process').execFile;\n+const { describe, it } = require('node:test');\n \n const mjsFile = require.resolve('../fixtures/...
2024-09-06T08:29:26
golang/go
ac992f2614ee3abef8eb01ed8b7d5b4024cda48f
8cfcad8da82a01296cfcdb8c6ab7b0b726534e21
testing: limit TempDir name length Fixes #71742 Change-Id: Ibef8f7f0a36b25f181062c4d2f84279a97e467a4 Reviewed-on: https://go-review.googlesource.com/c/go/+/671577 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael ...
[ { "path": "src/testing/testing.go", "patch": "@@ -1244,6 +1244,11 @@ func (c *common) TempDir() string {\n \tif nonExistent {\n \t\tc.Helper()\n \n+\t\tpattern := c.Name()\n+\t\t// Limit length of file names on disk.\n+\t\t// Invalid runes from slicing are dropped by strings.Map below.\n+\t\tpattern = patte...
2025-05-11T21:36:58
rust-lang/rust
f1c80f598826f9cbb7471939d46869314c86744e
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
reduce the amount of panics in `{TokenStream, Literal}::from_str` calls
[ { "path": "compiler/rustc_errors/src/diagnostic.rs", "patch": "@@ -1378,6 +1378,13 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {\n drop(self);\n }\n \n+ /// Cancels this diagnostic and returns its first message, if it exists.\n+ pub fn cancel_into_message(self) -> Option<String> {\n+ ...
2026-01-26T10:56:29
electron/electron
303b707fbf8ba15c12db9350b91b0a4e0cb90052
aaae2abf20dfd3d5c6c550f4e131bbbc7dc3a46c
fix: update `chrome.i18n` for Manifest v3 (#39291) fix: update chrome.i18n for Manifest v3
[ { "path": "shell/common/extensions/api/i18n.json", "patch": "@@ -1,4 +1,4 @@\n-// Copyright (c) 2012 The Chromium Authors. All rights reserved.\n+// Copyright 2012 The Chromium Authors\n // Use of this source code is governed by a BSD-style license that can be\n // found in the LICENSE file.\n \n@@ -18,15 +...
2023-08-02T09:02:16
facebook/react
afbaa8d3caf2bd2be72b5c5dbe2280808b4c4b20
06376b906d173ee03e49bbbb6277393b9015cf0a
Add a reason to ValueKind for better error messages (#2447)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts", "patch": "@@ -942,6 +942,33 @@ export type Identifier = {\n type: Type;\n };\n \n+export type AbstractValue = {\n+ kind: ValueKind;\n+ reason: ReadonlySet<ValueReason>;\n+};\n+\n+/**\n+ * The reason for the kind of a value.\n+ */\n+...
2023-12-15T15:20:14
vercel/next.js
56fed4d6b489b9b60cd3b7647b21597f09768be9
7a183a0f3f035d4e31bfa66f1c5ab037d56adec2
Turbopack: Add an option to use system TLS certificates (fixes #79060, fixes #79059) (#81818) It's common in enterprise environments for employers to MITM all HTTPS traffic on employee machines to enforce network policies or to detect and block malware. For this to work, they install custom CA roots into the system st...
[ { "path": ".changeset/silent-houses-lay.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'@next/swc': patch\n+---\n+\n+Added an experimental option for using the system CA store for fetching Google Fonts in Turbopack", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "Cargo.lock...
2025-07-24T01:02:54
nodejs/node
94419bf64de32d27f9d3b693abd9924a56d8799d
13d6950a6c5a17ae078f8f8d32a8ac1338efbb4a
typings: fix TypedArray to a global type PR-URL: https://github.com/nodejs/node/pull/54063 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "typings/globals.d.ts", "patch": "@@ -19,19 +19,6 @@ import { WASIBinding } from './internalBinding/wasi';\n import { WorkerBinding } from './internalBinding/worker';\n import { ModulesBinding } from './internalBinding/modules';\n \n-declare type TypedArray =\n- | Uint8Array\n- | Uint8ClampedArr...
2024-09-06T08:29:11
golang/go
8cfcad8da82a01296cfcdb8c6ab7b0b726534e21
18431a1c8f7d19410fcd3fe6638cfe1cd4bd7179
net: don't test with leading 0 in ipv4 addresses Updates #30999 Fixes #73378 Change-Id: I6a96581e78678518473626aa5d108428cfad6619 Reviewed-on: https://go-review.googlesource.com/c/go/+/671795 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou...
[ { "path": "src/net/external_test.go", "patch": "@@ -90,7 +90,6 @@ var (\n \t\t\"www.google.com:80\",\n \t\t\"%d.%d.%d.%d:http\",\n \t\t\"www.google.com:http\",\n-\t\t\"%03d.%03d.%03d.%03d:0080\",\n \t\t\"[::ffff:%d.%d.%d.%d]:80\",\n \t\t\"[::ffff:%02x%02x:%02x%02x]:80\",\n \t\t\"[0:0:0:0:0000:ffff:%d.%d.%d....
2025-05-11T20:22:47
rust-lang/rust
c89a89bb14697732aab746bda058c67d0eba4f5f
8340622e14324d0090a6edf42fce44fea3d7824f
Fix multi-cgu+debug builds using autodiff by delaying autodiff till lto
[ { "path": "compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp", "patch": "@@ -812,12 +812,12 @@ extern \"C\" LLVMRustResult LLVMRustOptimize(\n auto ThinLTOBuffer = std::make_unique<LLVMRustThinLTOBuffer>();\n raw_string_ostream ThinLTODataOS(ThinLTOBuffer->data);\n raw_string_ostream ThinLinkDataOS(Thi...
2026-02-11T19:08:56
electron/electron
0eef6c67d15564b78a9c356955d92dac53ec5cb3
1f19a744176a2407d9b970e8946d30e9a6507078
docs: fix return type for ipcMain handle functions (#39237)
[ { "path": "docs/api/ipc-main.md", "patch": "@@ -72,7 +72,7 @@ Removes listeners of the specified `channel`.\n ### `ipcMain.handle(channel, listener)`\n \n * `channel` string\n-* `listener` Function<Promise\\<void&#62; | any&#62;\n+* `listener` Function<Promise\\<any&#62; | any&#62;\n * `event` [IpcMainInv...
2023-08-01T08:02:20
facebook/react
12de013aa4b75dbe1251f816bcb16d0a2869f7bd
0966480d169efa261d4116162c9a1dda15e80c5f
[patch] ObjectMethods should have the same scope as their parent ObjectExpressions --- Currently, we're removing all reactive scopes containing object methods. This could produce incorrect output as object method instructions may still be included in other reactive scopes (and will lose their dependencies).
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -35,6 +35,7 @@ import {\n } from \"../Optimization\";\n import {\n CodegenFunction,\n+ alignObjectMethodScopes,\n alignReactiveScopesToBlockScopes,\n assertScopeInstructionsWithinScopes,\n buildReactive...
2023-12-12T22:44:01
vercel/next.js
7a183a0f3f035d4e31bfa66f1c5ab037d56adec2
63dba672268b8ab57e93cac59c64b2b0e6ba597d
Fix: Unresolved param in x-nextjs-rewritten-query (#81991) Fixes an issue with the x-nextjs-rewritten-query header where it responded without the dynamic parts of the URL filled in. For example, when rewriting to `/hello?id=123` to `/hello/123`: - Before: `x-nextjs-rewritten-query: id=__ESC_COLON_id` - After: `x-next...
[ { "path": "packages/next/src/server/lib/router-utils/resolve-routes.ts", "patch": "@@ -33,7 +33,6 @@ import { addRequestMeta } from '../../request-meta'\n import {\n compileNonPath,\n matchHas,\n- parseDestination,\n prepareDestination,\n } from '../../../shared/lib/router/utils/prepare-destination'\...
2025-07-24T00:45:00
golang/go
18431a1c8f7d19410fcd3fe6638cfe1cd4bd7179
41bd52b3fa2ac77e0180f29777309f65fda9fad0
net: fix deadlock in lookupProtocol on Windows If the context expires before acquireThread(ctx) succeeds, then the goroutine can block like: net.lookupProtocol.func1() src/net/lookup_windows.go:58 +0x105 created by net.lookupProtocol in goroutine 2834 src/net/lookup_windows.go:56 +0xda We saw this in our UTs with ...
[ { "path": "src/net/lookup_windows.go", "patch": "@@ -52,7 +52,7 @@ func lookupProtocol(ctx context.Context, name string) (int, error) {\n \t\tproto int\n \t\terr error\n \t}\n-\tch := make(chan result) // unbuffered\n+\tch := make(chan result, 1) // buffer so that next goroutine never blocks\n \tgo func()...
2025-04-17T06:55:10
nodejs/node
5fb9083b1a3bd2b89d9c013f11bb4ad0f69b8cc3
9441ce1c905df5584eeeabc0a5f069360eb42686
doc: fix typo in module.md PR-URL: https://github.com/nodejs/node/pull/54794 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -171,7 +171,7 @@ changes:\n -->\n \n The module compile cache can be enabled either using the [`module.enableCompileCache()`][]\n-method or the [`NODE_COMPILE_CACHE=dir`][] environemnt variable. After it's enabled,\n+method or the [`NODE_COMPILE_CACHE=dir`][] envi...
2024-09-05T23:11:54
electron/electron
1f19a744176a2407d9b970e8946d30e9a6507078
c8f7a0e0522b0527082a23438da11bf6f148825c
fix: potential crash calling `tray.popUpContextMenu()` (#39231) fix: potential crash calling tray.popUpContextMenu
[ { "path": "shell/browser/api/electron_api_tray.cc", "patch": "@@ -342,7 +342,9 @@ void Tray::PopUpContextMenu(gin::Arguments* args) {\n }\n }\n }\n- tray_icon_->PopUpContextMenu(pos, menu.IsEmpty() ? nullptr : menu->model());\n+\n+ tray_icon_->PopUpContextMenu(\n+ pos, menu.IsEmpty() ? nu...
2023-08-01T06:07:30
facebook/react
c01ac689e9628c952761ba0583d6c00ba5521c6a
0cdfef19b96cc6202d48e0812b5069c286d12b04
convert circleci worklfow fuzz_tests to github actions (#27801) ## Summary This pull request converts the CircleCI workflows to GitHub actions workflows. [Github Actions Importer](https://github.com/github/gh-actions-importer) was used to convert the workflows initially, then I edited them manually to correct e...
[ { "path": ".github/workflows/fuzz_tests.yml", "patch": "@@ -0,0 +1,32 @@\n+name: facebook/react/fuzz_tests\n+on:\n+ schedule:\n+ - cron: 0 * * * *\n+ push:\n+ branches:\n+ - main\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required: false\n+jobs:\n+ test_fuzz:\n...
2023-12-12T19:55:43
vercel/next.js
63dba672268b8ab57e93cac59c64b2b0e6ba597d
1937a19fb9f342b0f5a4b982b88dff8971a27e38
Turbopack: update mimalloc (#81993) ### What? This fixes a bug where memory is not released back to the OS.
[ { "path": "Cargo.lock", "patch": "@@ -3655,9 +3655,9 @@ dependencies = [\n \n [[package]]\n name = \"libmimalloc-sys\"\n-version = \"0.1.38\"\n+version = \"0.1.43\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0e7bb23d733dfcc8af652a78b7bf232f0e967710d044732185e561e47c0...
2025-07-24T00:23:21
golang/go
41bd52b3fa2ac77e0180f29777309f65fda9fad0
176a2154aa185c6ab15d88f32d9c28dd3b5e5dd8
os: remove NewFile socket detection on Windows NewFile was recently updated (in CL 668195) to detect whether the handle is a socket or not. This special case is not really necessary, given that socket handles can be used as if they were normal file handles on all functions supported by os.File (see https://learn.micro...
[ { "path": "src/os/file_windows.go", "patch": "@@ -82,49 +82,14 @@ func newConsoleFile(h syscall.Handle, name string) *File {\n \treturn newFile(h, name, \"console\", false)\n }\n \n-var wsaLoaded atomic.Bool\n-\n-// isWSALoaded returns true if the ws2_32.dll module is loaded.\n-func isWSALoaded() bool {\n-\...
2025-05-09T14:55:00
nodejs/node
24302c9fe94e1dd755ac8a8cc1f6aa4444f75cb3
26eb062a9b9c0ae8cee9cb5c378e43bca363207c
doc: fix typo in CppgcMixin docs PR-URL: https://github.com/nodejs/node/pull/54762 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/README.md", "patch": "@@ -1013,7 +1013,7 @@ A `cppgc`-managed native wrapper should look something like this:\n // CPPGC_MIXIN is a helper macro for inheriting from cppgc::GarbageCollected,\n // cppgc::NameProvider and public CppgcMixin. Per cppgc rules, it must be\n // placed at the left-mos...
2024-09-05T17:45:26
facebook/react
4c2b89288f3613a66996ec50826cc3d448db1223
bfa0aa2813a03ffc98dd8ec4b602bac77d6cde97
[be][fixtures] Pass message directly instead of overwriting Error object --- Started getting crashes in watch mode from trying to overwrite `error.message` (invalid setter or frozen object). This should fix
[ { "path": "compiler/packages/fixture-test-utils/src/output-utils.ts", "patch": "@@ -20,7 +20,7 @@ ${s}\n export function writeOutputToString(\n input: string,\n output: string | null,\n- error: Error | null\n+ errorMessage: string | null\n ) {\n // leading newline intentional\n let result = `\n@@ ...
2023-12-12T03:59:33
electron/electron
c8f7a0e0522b0527082a23438da11bf6f148825c
b2c62d6ad1fb0745544a20c85abef312c7196d14
fix: Chrome Extensions service worker host registration (#39290)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -162,6 +162,7 @@\n #include \"extensions/browser/guest_view/mime_handler_view/mime_handler_view_guest.h\"\n #include \"extensions/browser/process_manager.h\"\n #include \"extensions/browser/process_map.h\"\n+#include \"extensions/browser/ser...
2023-08-01T06:04:38
vercel/next.js
08ee5f678fe57860ad02afc8e349200ecf6be958
d5f6c11ab0f85fdc0acf78fcdb3459ee945c0ad0
Fix dynamicParams false layout case in dev (#81990) This ensures we don't consider a path as ISR in development when it will be dynamic during a build due to no `generateStaticParams` being fully generated for a path. Fixes: https://github.com/vercel/next.js/issues/81976 Closes: NEXT-4650
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -1240,7 +1240,7 @@ export async function handler(\n }\n } catch (err) {\n // if we aren't wrapped by base-server handle here\n- if (!activeSpan) {\n+ if (!activeSpan && !(err instanceof NoFallbackError)) {\n await ...
2025-07-23T21:36:43
golang/go
176a2154aa185c6ab15d88f32d9c28dd3b5e5dd8
e513cd4e409f1d42df02a42b43eceb87473b229a
cmd/link: use >4GB base address for 64-bit PE binaries Windows prefers 64-bit binaries to be loaded at an address above 4GB. Having a preferred base address below this boundary triggers a compatibility mode in Address Space Layout Randomization (ASLR) on recent versions of Windows that reduces the number of locations...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -894,10 +894,15 @@ func windynrelocsym(ctxt *Link, rel *loader.SymbolBuilder, s loader.Sym) error {\n \t\t\t\trel.AddUint8(0x90)\n \t\t\t\trel.AddUint8(0x90)\n \t\t\tcase sys.AMD64:\n+\t\t\t\t// The relocation symbol might be at an absolute offset\n...
2025-05-09T15:42:48
nodejs/node
65b4fb840ed7ae80fdca5d2c92dd647590d99686
a48852be17422c1e10766fb12cecbb13c66a7fe7
crypto: return a clearer error when loading an unsupported pkcs12 PR-URL: https://github.com/nodejs/node/pull/54485 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -1148,6 +1148,16 @@ void SecureContext::LoadPKCS12(const FunctionCallbackInfo<Value>& args) {\n if (!ret) {\n // TODO(@jasnell): Should this use ThrowCryptoError?\n unsigned long err = ERR_get_error(); // NOLINT(runtime/int)\n+\n+#if OPENSSL_...
2024-09-05T14:15:01
facebook/react
fa8f47eb4167cdafb3bba325f2f0a05ff280eca1
9be2efdc57d84f8bb202c8e4c290ed76afbeb82a
InferReactivePlaces understands setState type I realized this while working on Forest. When computing the dependencies of a reactive scope we can omit setState functions in the general case (exception described below). Currently that's implemented in PruneNonReactiveDependencies. However, this causes us to miss so...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts", "patch": "@@ -15,6 +15,7 @@ import {\n Place,\n computePostDominatorTree,\n getHookKind,\n+ isSetStateType,\n } from \"../HIR\";\n import { PostDominator } from \"../HIR/Dominator\";\n import {\n@@ -191,6 +1...
2023-12-11T19:34:24
electron/electron
b2c62d6ad1fb0745544a20c85abef312c7196d14
cfc0826b65a4be795daa59c74e76cd2e6b22f45f
fix: initial dark mode title bar on Windows 10 (#39287)
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -8,6 +8,7 @@\n #include \"electron/buildflags/buildflags.h\"\n #include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"shell/browser/win/dark_mode.h\"\n+#include \"third_party/abseil-cpp/absl/types/optional.h\"...
2023-08-01T05:02:23
vercel/next.js
d5f6c11ab0f85fdc0acf78fcdb3459ee945c0ad0
3fe3fb79d6efb69d227fef8d0576ec753112cf10
[docs] fix rewrites example wording (#81985) This PR fixes a small grammatical error in the Next.js rewrites documentation. <!-- 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 r...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/rewrites.mdx", "patch": "@@ -34,7 +34,7 @@ module.exports = {\n }\n ```\n \n-Rewrites are applied to client-side routing, a `<Link href=\"/about\">` will have the rewrite applied in the above example.\n+Rewrites are applied to client-side r...
2025-07-23T20:51:11
golang/go
e513cd4e409f1d42df02a42b43eceb87473b229a
e666f1dabf5174710919ab7cff3e8afefd9ac049
net/http: add missing ServeTLS on the comment of http.Server.Shutdown A sentinel error http.ErrServerClosed is returned after Server.Shutdown and Server.Close but it is not documented on the Server.Shutdown while other methods such as Server.Serve are documented on it. Change-Id: Id82886d9d6a1474a514d62e9169b35f3579a...
[ { "path": "src/net/http/server.go", "patch": "@@ -3154,7 +3154,7 @@ const shutdownPollIntervalMax = 500 * time.Millisecond\n // Shutdown returns the context's error, otherwise it returns any\n // error returned from closing the [Server]'s underlying Listener(s).\n //\n-// When Shutdown is called, [Serve], [...
2025-05-10T23:43:40
nodejs/node
a48852be17422c1e10766fb12cecbb13c66a7fe7
0debdac9da67d744f4706a1c8ccb537b44ce3647
fs: respect dereference when copy symlink directory Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54732 Fixes: https://github.com/nodejs/node/issues/54730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3155,7 +3155,9 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n \n bool dest_exists = !error_code && dest_status.type() !=\n std::filesystem::file_type::not_found;\n- bool src_is_dir = src_stat...
2024-09-05T13:54:49
facebook/react
5bcade5fcf5610e82e7cda05cc6de574bdace0c7
8ff2c236a233a78c18d6f524dd74baec9153fd37
[Flight] Support postponing through a serialized promise (#27818) Postponing in a promise that is being serialized to the client from the server should be possible however prior to this change Flight treated this case like an error rather than a postpone. This fix adds support for postponing in this position and ad...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -32,6 +32,7 @@ let ReactDOMClient;\n let ReactServerDOMServer;\n let ReactServerDOMClient;\n let ReactDOMFizzServer;\n+let ReactDOMStaticServer;\n let Suspense;\n let ErrorBoundary;\n let JSDOM;\n@@ -71,6 +72,7 ...
2023-12-08T19:05:32
vercel/next.js
b54282280e6e551334703e7a0ca7523b76f3bc81
ae2d1099eafbde1091ef77750897cc025f790716
Turbopack: fix scope hoisting variable renaming bug (#81640)
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2062,7 +2062,7 @@ fn hygiene_rename_only(\n }\n // Copied from `hygiene_with_config`'s HygieneRenamer, but added an `preserved_exports`\n impl swc_core::ecma::transforms::base::rename::Renamer for HygieneRenamer<'_> {\n-...
2025-07-23T15:32:19
golang/go
e666f1dabf5174710919ab7cff3e8afefd9ac049
343e486bfdbf9ca614d3e197afd79ad7ed5fef3e
runtime: add goschedIfBusy to bgsweep to prevent livelock after inlining gcMarkTermination() ensures that all caches are flushed before continuing the GC cycle, thus preempting all goroutines. However, inlining calls to lock() in bgsweep makes it non-preemptible for most of the time, leading to livelock. This change a...
[ { "path": "src/runtime/mgcsweep.go", "patch": "@@ -313,6 +313,10 @@ func bgsweep(c chan int) {\n \t\t\t// gosweepone returning ^0 above\n \t\t\t// and the lock being acquired.\n \t\t\tunlock(&sweep.lock)\n+\t\t\t// This goroutine must preempt when we have no work to do\n+\t\t\t// but isSweepDone returns fal...
2025-04-25T11:28:52
nodejs/node
dc74f17f6c37b1bb2d675216066238f33790ed29
2bd6a57b7b934afcaf437a90e2abebcb79c13acf
buffer: re-enable Fast API for Buffer.write Re-enables fast Fast API for Buffer.write after fixing UTF8 handling. Fixes: https://github.com/nodejs/node/issues/54521 PR-URL: https://github.com/nodejs/node/pull/54526 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Re...
[ { "path": "src/node_buffer.cc", "patch": "@@ -22,6 +22,7 @@\n #include \"node_buffer.h\"\n #include \"node.h\"\n #include \"node_blob.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n@@ -1442,6 +1443,79 @@ void CopyArrayBuffer(...
2024-09-04T22:34:29
facebook/react
d3ed07bce036df61fbce52151f1531a5762ba6d6
f193213d29e7fabf68b21951c4b96701aeaecbf8
[ci] try to fix commit_artifacts step (#27817) Tries to fix the failure from https://github.com/facebook/react/actions/runs/7142005723/job/19450371514 I think it failed because we cannot `mv` into a folder with existing files or folders.
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -119,26 +119,25 @@ jobs:\n build/oss-experimental/react-refresh/cjs/react-refresh-babel.development.js\n - name: Move relevant files for React in www into compiled\n run: |\n- mkdir -p ./compiled\n- ...
2023-12-08T17:38:35
electron/electron
cfc0826b65a4be795daa59c74e76cd2e6b22f45f
8e5bb4949b5e978feb804450bc5ea0a4eb29e6d4
chore: bump chromium to 117.0.5913.0 (main) (#39172) * chore: bump chromium in DEPS to 117.0.5899.0 * 4686653: webui: Filter out non-chrome scheme URLs in WebUIConfigMap https://chromium-review.googlesource.com/c/chromium/src/+/4686653 * 4696355: Remove deprecated version of base::CommandLine::CopySwitchesFro...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5897.0',\n+ '117.0.5911.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2023-07-31T17:47:32
vercel/next.js
5ed2b9840a882dc05877325d51458869a8a372c0
e414623cc0d01e4f7dc8f540c5089c1dd3571308
fix(Turbopack): Remove the duplicate SlowFilesystem warning (#81972) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ##...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -568,14 +568,6 @@ async fn benchmark_file_io(\n \n let duration = Instant::now().duration_since(start);\n if duration > SLOW_FILESYSTEM_THRESHOLD {\n- println!(\n- \"Slow filesystem detected. The benchmark took {}ms. If ...
2025-07-23T13:58:49
golang/go
238d273da4859fe4be5db019879fdb886a547350
c0eb7ab3062fae802639545770f6a897d75b0085
bytes, strings: rename parameters in ExampleCut{Pre,Suf}fix The old parameter name sep was probably copied from ExampleCut. Change the parameter names to prefix and suffix, respectivly to make the examples a bit more readable. Change-Id: Ie14b0050c2fafe3301c5368efd548a1629a7545f Reviewed-on: https://go-review.googles...
[ { "path": "src/bytes/example_test.go", "patch": "@@ -245,9 +245,9 @@ func ExampleCut() {\n }\n \n func ExampleCutPrefix() {\n-\tshow := func(s, sep string) {\n-\t\tafter, found := bytes.CutPrefix([]byte(s), []byte(sep))\n-\t\tfmt.Printf(\"CutPrefix(%q, %q) = %q, %v\\n\", s, sep, after, found)\n+\tshow := fu...
2025-05-08T12:13:16
facebook/react
f193213d29e7fabf68b21951c4b96701aeaecbf8
a3aae7fb01ecf4ac12a8ba53abcf0403a4c7c3f8
Add a regression test for an infinite suspense + Fix (#27703) Add a regression test for the [minimal repro](https://codesandbox.io/s/react-18-suspense-state-never-resolving-bug-hmlny5?file=/src/App.js) from @kassens And includes the fix from @acdlite: > This is another place we special-case Retry lanes to opt t...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -423,7 +423,9 @@ export function markStarvedLanesAsExpired(\n // We exclude retry lanes because those must always be time sliced, in order\n // to unwrap uncached promises.\n // TODO: Write a test for this\n- let lanes = pendin...
2023-12-08T17:21:36
electron/electron
8e5bb4949b5e978feb804450bc5ea0a4eb29e6d4
724f90a2a72c5e3f68b75d24c7584820f0757660
fix: skip artifact validation for doc-only PRs (#39296)
[ { "path": "appveyor-woa.yml", "patch": "@@ -74,8 +74,10 @@ for:\n - ps: |\n node script/yarn.js install --frozen-lockfile\n node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER\n+ $env:SHOULD_SKIP_ARTIFACT_VALIDATION = \"false\"\n if ($LAST...
2023-07-31T13:59:51
nodejs/node
03fe00e3da29cfe7340fd70423cb271bc5bf296f
b7b96282b212a2274b9db605ac29d388246754de
benchmark: adds groups to better separate benchmarks Fixes: https://github.com/nodejs/node/issues/26425 Co-Authored-By: Yaman Kassir <mestery@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54393 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "benchmark/common.js", "patch": "@@ -22,27 +22,36 @@ class Benchmark {\n this.name = require.main.filename.slice(__dirname.length + 1);\n \n // Execution arguments i.e. flags used to run the jobs\n- this.flags = process.env.NODE_BENCHMARK_FLAGS ?\n- process.env.NODE_BENCHMARK_FLAGS...
2024-09-04T03:26:53
golang/go
c0eb7ab3062fae802639545770f6a897d75b0085
c57b0d6c7e54284c8967530153774dbc62190b00
bytes, strings: micro-optimize EqualFold The first loop leaves the lengths of the two arguments unchanged. Take advantage of this invariant in the loop's condition. Here are some benchmark results (no change to allocations): goos: darwin goarch: amd64 pkg: strings cpu: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz ...
[ { "path": "src/bytes/bytes.go", "patch": "@@ -1228,7 +1228,7 @@ func ReplaceAll(s, old, new []byte) []byte {\n func EqualFold(s, t []byte) bool {\n \t// ASCII fast path\n \ti := 0\n-\tfor ; i < len(s) && i < len(t); i++ {\n+\tfor n := min(len(s), len(t)); i < n; i++ {\n \t\tsr := s[i]\n \t\ttr := t[i]\n \t\...
2025-05-12T12:40:36
vercel/next.js
e414623cc0d01e4f7dc8f540c5089c1dd3571308
4cf2da98ba5f9d997088b90c18a248354024871b
Bump to swc_sourcemap 9.3.3 (#81971) Pull in https://github.com/swc-project/swc-sourcemap/pull/4 to fix source maps
[ { "path": "Cargo.lock", "patch": "@@ -8241,9 +8241,9 @@ dependencies = [\n \n [[package]]\n name = \"swc_sourcemap\"\n-version = \"9.3.2\"\n+version = \"9.3.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"9755c673c6a83c461e98fa018f681adb8394a3f44f89a06f27e80fd4fe4fa1e...
2025-07-23T13:49:53
facebook/react
a3aae7fb01ecf4ac12a8ba53abcf0403a4c7c3f8
af1fc87b54686d5e15204cd588e2227a92ae40ac
feat:-added tests for more coverage in reactDom-input and reactText-area (#27796) Small test similar to few tests added in #27740 , the `reactDom-input` error message was just modified to match the error message, and the `reactDomTextarea-test.js` has tests added to ensure more coverage.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMInput-test.js", "patch": "@@ -110,23 +110,32 @@ describe('ReactDOMInput', () => {\n expect(() => {\n ReactDOM.render(<input type=\"text\" value={0} />, container);\n }).toErrorDev(\n- 'Warning: You provided a `value` prop to a form field...
2023-12-08T13:34:09
electron/electron
724f90a2a72c5e3f68b75d24c7584820f0757660
68701c4c3c158e30d26738629ffabeffa404ad96
refactor: throw errors directly in async functions (#39233)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -211,28 +211,28 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.landscape !== undefined) {\n if (typeof options.landscape !== 'boolean') {\n- return Promise.reject(new Error('landscape must be a Boolean'))...
2023-07-31T08:39:37
nodejs/node
01c88f913601bc43c149d76a70e95df77d23dc1b
9e5d2b74fb22fa23b57653c08c2bd58c2971f852
meta: fix links in `SECURITY.md` PR-URL: https://github.com/nodejs/node/pull/54696 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "SECURITY.md", "patch": "@@ -222,6 +222,6 @@ Security notifications will be distributed via the following methods.\n \n ## Comments on this policy\n \n-If you have suggestions on how this process could be improved please submit a\n-[pull request](https://github.com/nodejs/nodejs.org) or\n-[file an...
2024-09-03T16:38:27
golang/go
e282cbb11256db717b95f9d8cf8c050cd4c4f7c2
fd605450a7be429efe68aed2271fbd3d40818f8e
crypto/tls: handle client hello version too high If the client hello legacy version is >= TLS 1.3, and no supported_versions extension is sent, negotiate TLS 1.2 or lower when supported. On the topic of supported version negotiation RFC 8446 4.2.1 indicates TLS 1.3 implementations MUST send a supported_versions exten...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,11 +66,8 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this sho...
2025-05-08T21:33:15
vercel/next.js
ac6ec259988405f4b1411779e5b11a81879e4091
9672bdc4a724c31b493d98e57122c90d50a66b7e
Turbopack: Use workaround for rustc miscompilation bug on macos intel (#81950) Uses https://github.com/hyperium/hyper/pull/3908 cherry-picked on top of hyper v1.6.0 to work around https://github.com/hyperium/hyper/issues/3902 and https://github.com/rust-lang/rust/issues/140686 - Git Branch: https://github.com/bgw/hyp...
[ { "path": "Cargo.lock", "patch": "@@ -2809,8 +2809,7 @@ dependencies = [\n [[package]]\n name = \"hyper\"\n version = \"1.6.0\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80\"\n+source = \"git+https://gith...
2025-07-22T22:52:17
facebook/react
995f4b0528430c6d37e03e0726fbd22ea8273cf7
d3e84d4dffdbcea8d2d8371d056f1cb670a045d5
[bugfix] Fix constant propagation to ObjectMethods
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Optimization/ConstantPropagation.ts", "patch": "@@ -434,6 +434,7 @@ function evaluateInstruction(\n }\n return placeValue;\n }\n+ case \"ObjectMethod\":\n case \"FunctionExpression\": {\n constantPropagationImpl(value.lo...
2023-12-06T18:20:50
electron/electron
2b283724ce689a680b20c9b922384bec854415f6
6df392162f1d29155e6d8d6f755de7e48c18e709
docs: fix some string union type (#39258) * docs: fix some string union types Improve Type Union Typings in the Docs * test: add smoke tests * test: update `ses.clearStorageData` test case * test: update `ses.clearStorageData` test case --------- Co-authored-by: mhli <mhli@hillinsight.com>
[ { "path": "docs/api/desktop-capturer.md", "patch": "@@ -91,7 +91,7 @@ The `desktopCapturer` module has the following methods:\n \n * `options` Object\n * `types` string[] - An array of strings that lists the types of desktop sources\n- to be captured, available types are `screen` and `window`.\n+ to...
2023-07-31T08:32:59
nodejs/node
981c7014009eee456bdc70adf4d9d5c89211cafe
3d954dcf812bb500a77913ffd5ebec76235714f0
lib: ensure no holey array in fixed_queue Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54537 Fixes: https://github.com/nodejs/node/issues/54472 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin...
[ { "path": "lib/internal/fixed_queue.js", "patch": "@@ -2,6 +2,7 @@\n \n const {\n Array,\n+ ArrayPrototypeFill,\n } = primordials;\n \n // Currently optimal queue size, tested on V8 6.0 - 6.6. Must be power of two.\n@@ -17,18 +18,18 @@ const kMask = kSize - 1;\n // +-----------+ <-----\\ +---------...
2024-09-02T01:42:44
facebook/react
d3e84d4dffdbcea8d2d8371d056f1cb670a045d5
7e9f6ecfea52a750077cc36c869185123bcd635e
[repro] repro for ContextVariable bug (ObjectMethod) Found from eslint validator on www after doing a local sync + RunForget test of #2432 P898168203 > New Errors: > no-undef:'VARIABLE_NAME' is not defined.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-context-vars-in-object-method.expect.md", "patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+function Foo() {\n+ const CONSTANT = 1;\n+ const x = {\n+ ...
2023-12-06T18:20:49
golang/go
fd605450a7be429efe68aed2271fbd3d40818f8e
97eab214d14054d9f174ab8b02ec3f7adb9cb2f9
crypto/tls: fix TLS <1.3 client cert required alert Previously for protocol versions older than TLS 1.3 our server handshake implementation sent an alertBadCertificate alert in the case where the server TLS config indicates a client cert is required and none was received. This commit updates the relevant logic to ins...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -60,16 +60,12 @@\n \"CurveID-Resume*\": \"unexposed curveID is not stored in the ticket yet\",\n \"BadRSAClientKeyExchange-4\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comme...
2025-05-08T19:22:41
rust-lang/rust
f48448e9031a659e21ef9783dcb1591bafc3927b
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
fix issue#152482
[ { "path": "src/bootstrap/bootstrap.py", "patch": "@@ -1316,7 +1316,7 @@ def bootstrap(args):\n # Give a hard error if `--config` or `RUST_BOOTSTRAP_CONFIG` are set to a missing path,\n # but not if `bootstrap.toml` hasn't been created.\n if not using_default_path or os.path.exists(toml_path):\n-...
2026-02-11T12:48:15
vercel/next.js
22d0b54d4cc6b7ec0fd5e9f785049d5c32431d09
b50c15e0b0cca101d97b086a48693ac708c956a8
Turbopack: Update notify-rs crate, remove workaround for fixed bug (#81909) 8.0.0 had a bug that was fixed in 8.1.0 that required a workaround for error codes: https://github.com/notify-rs/notify/issues/685 Tested on Linux with ``` rm -rf /tmp/fuzz && RUST_BACKTRACE=1 cargo run --release -p turbo-tasks-fuzz -- fs-wa...
[ { "path": "Cargo.lock", "patch": "@@ -3454,9 +3454,9 @@ dependencies = [\n \n [[package]]\n name = \"kqueue\"\n-version = \"1.0.8\"\n+version = \"1.1.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c\"\n+c...
2025-07-22T19:59:15
nodejs/node
2f0b3713efd1f8f06a38115393cee8531803ce43
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
meta: fix `contributing` codeowners PR-URL: https://github.com/nodejs/node/pull/54641 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": ".github/CODEOWNERS", "patch": "@@ -15,7 +15,7 @@\n /.github/ISSUE_TEMPLATE/* @nodejs/tsc\n /CODE_OF_CONDUCT.md @nodejs/tsc\n /CONTRIBUTING.md @nodejs/tsc\n-/doc/contributing/*.md @nodejs/tsc\n+/doc/contributing/**/* @nodejs/tsc\n /GOVERNANCE.md @nodejs/tsc\n /SECURITY.md @nodejs/tsc\n /LICENSE @n...
2024-08-31T17:33:24
electron/electron
6df392162f1d29155e6d8d6f755de7e48c18e709
c9bae5da8ef280e310d4c1d03ee94a169c704357
fix: `pageVisibility` state when `backgroundThrottling` disabled (#39223) fix: pageVisibility state when backgroundThrottling disabled
[ { "path": "patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch", "patch": "@@ -33,6 +33,21 @@ index 180abdc9f983887c83fd9d4a596472222e9ab472..00842717a7570561ee9e3eca11190ab5\n void SendWebPreferencesToRenderer();\n void SendRendererPreferencesToRenderer(\n const bl...
2023-07-28T08:48:25
facebook/react
7e9f6ecfea52a750077cc36c869185123bcd635e
01c1b16db45b5894d248363fcc7c15874448c284
[patch] Make holey array handling compatible with older babel versions --- Copied from comments Older versions of babel have a validation bug fixed by - https://github.com/babel/babel/pull/10917 - (code pointer) https://github.com/babel/babel/commit/e7b80a2cb93cf28010207fc3cdd19b4568ca35b9#diff-19b555d2f3904...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1456,14 +1456,6 @@ function lowerExpression(\n elements.push({\n kind: \"Hole\",\n });\n- if (builder.environment.config.bailoutOnHoleyArrays) {\n- builder.errors.pu...
2023-12-06T18:20:49
golang/go
97eab214d14054d9f174ab8b02ec3f7adb9cb2f9
45f27826178981400f6d083fd087d20d0abb02d2
crypto/tls: enable more large record bogo tests Previously a handful of large record tests were in the bogo config ignore list. The ignored tests were failing because they used insecure ciphersuites that aren't enabled by default. This commit adds the non-default insecure ciphersuites to the bogo TLS configuration an...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -67,15 +67,6 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this sho...
2025-04-29T21:41:53
vercel/next.js
4b27fb7bec79ba42df63682887fbcb00c6689422
0c0dc4865ef8a9923ed1b94a2bc5e91d92d625f5
Fix an issue in how css references are collected under `next build --turbopack` (#81704) ## Fix how client references are discovered during `next build --turbopack` To correctly serve js and css resources during server side rendering we construct a client manifest that lists all the server components and their requ...
[ { "path": "Cargo.lock", "patch": "@@ -4262,6 +4262,7 @@ dependencies = [\n \"indexmap 2.9.0\",\n \"next-core\",\n \"regex\",\n+ \"roaring\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_json\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", ...
2025-07-22T17:30:28
electron/electron
8dea7838058dae356a664be01285b46bc641c8d1
695fcf3cb265aa2b635e9bfdad4e0affe527c917
fix: do not resolve electron entrypoints on disk (#39247)
[ { "path": "patches/node/.patches", "patch": "@@ -37,3 +37,4 @@ chore_remove_--no-harmony-atomics_related_code.patch\n fix_account_for_createexternalizablestring_v8_global.patch\n fix_wunreachable-code_warning_in_ares_init_rand_engine.patch\n fix_-wshadow_warning.patch\n+fix_do_not_resolve_electron_entrypoin...
2023-07-27T05:10:58
nodejs/node
a1ffa644e923b0006010c5c4be8ef55e3e6921fb
4c844a2f307fc758b0c50b99e830ea90d41c4acc
doc: fix typo name used instructions differed that what is in the code Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/54640 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Richard Lau <rlau@redha...
[ { "path": "doc/contributing/maintaining/maintaining-dependencies.md", "patch": "@@ -110,7 +110,7 @@ shared library is available can added by:\n Support for an externalizable dependency with JavaScript code\n can be added by:\n \n-* adding an entry to the `sharable_builtins` map in\n+* adding an entry to the...
2024-08-31T17:33:09
facebook/react
346350f77d2aa73ee7b93edbee2c2b3a4afddfab
1d36764ca9dbf8bd1683c0431ee669f72fab7747
Revert: revert tsconfig module change for rollup --- Currently on main, rollup does not inline source files ```js // in packages/babel-plugin-react-forget // $yarn build // output var CompilerError_1 = require("./CompilerError"); Object.defineProperty(exports, "CompilerError", { enumerable: true, get: ...
[ { "path": "compiler/packages/babel-plugin-react-forget/tsconfig.json", "patch": "@@ -1,7 +1,6 @@\n {\n \"extends\": \"@tsconfig/node18-strictest/tsconfig.json\",\n \"compilerOptions\": {\n- \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"declaration\": true,\n \"declar...
2023-12-05T22:22:37
rust-lang/rust
14527b257fdee2b86569b6014754d3452c85b3c4
e4e725aec63cc773acf74b27e91dfc0630a8724f
Move target machine factory error reporting into codegen backend
[ { "path": "src/lib.rs", "patch": "@@ -374,7 +374,7 @@ impl ExtraBackendMethods for GccCodegenBackend {\n _features: &[String],\n ) -> TargetMachineFactoryFn<Self> {\n // TODO(antoyo): set opt level.\n- Arc::new(|_| Ok(()))\n+ Arc::new(|_, _| ())\n }\n }\n \n@@ -421,7 +4...
2026-02-11T10:53:38
golang/go
00b63486583ef8055c821fa16a87017e04dc2920
992d1547178fe0d18c2827e34d62fbc545ace64c
crypto/tls: err for unsupported point format configs If a client or server explicitly offers point formats, and the point formats don't include the uncompressed format, then error. This matches BoringSSL and Rustls behaviour and allows enabling the PointFormat-Client-MissingUncompressed bogo test. Updates #72006 Cha...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -131,7 +131,6 @@\n \"SendClientVersion-RSA\": \"TODO: first pass, this should be fixed\",\n \"NoCommonCurves\": \"TODO: first pass, this should be fixed\",\n \"PointFormat-EncryptedExtensions-TLS13\": \"TODO: first pass, this ...
2025-04-29T21:39:08
vercel/next.js
4699f8416eb33b285399369b4001e8b019e80201
ae6604994c3ec6587036d949e046b1fe52e9e8a4
[test] Add dedicated test for error when client functions are called from server components (#81930) We have a more specific one for `use cache`. This is the counterpart for the default environment.
[ { "path": "test/development/app-dir/source-mapping/app/server-client/client.js", "patch": "@@ -0,0 +1,5 @@\n+'use client'\n+\n+export function useClient() {\n+ return 'client function'\n+}", "additions": 5, "deletions": 0, "language": "JavaScript" }, { "path": "test/development/app-dir/...
2025-07-22T16:07:41
electron/electron
695fcf3cb265aa2b635e9bfdad4e0affe527c917
fa5b1be6f3d6631c0404097b69ea81b4a1eab7f7
fix: reparenting after `BrowserWindow.destroy()` (#39062) fix: reparenting after BrowserWindow.destroy()
[ { "path": "shell/browser/native_window.h", "patch": "@@ -149,6 +149,7 @@ class NativeWindow : public base::SupportsUserData,\n virtual std::string GetAlwaysOnTopLevel() = 0;\n virtual void SetActive(bool is_key) = 0;\n virtual bool IsActive() const = 0;\n+ virtual void RemoveChildFromParentWindow() =...
2023-07-26T14:47:32
facebook/react
c29ca23af91d8aeb9e175c08a0866ba54286f0f3
5ab6bbb4b058e22658fc6d4734db5acfbf393345
fix: add isChildPublicInstance to ReactNativeTypes (#27788) Follow-up on https://github.com/facebook/react/pull/27783. React Native is actually using `ReactNativeTypes`, which are synced from this repo. In order to make `isChildPublicInstance` visible for renderers inside React Native repository, we need to list ...
[ { "path": "packages/react-native-renderer/src/ReactNativePublicCompat.js", "patch": "@@ -8,8 +8,6 @@\n */\n \n import type {Node, HostComponent} from './ReactNativeTypes';\n-import type {PublicInstance as FabricPublicInstance} from './ReactFiberConfigFabric';\n-import type {PublicInstance as PaperPublicIns...
2023-12-05T13:00:59
rust-lang/rust
2d07e81a5c5d2062d54b80530ab98bb6fa776322
70587ce07cbf41b0e1f753038ff132d4ab0b7dd0
Move target machine factory error reporting into codegen backend
[ { "path": "compiler/rustc_codegen_gcc/src/lib.rs", "patch": "@@ -374,7 +374,7 @@ impl ExtraBackendMethods for GccCodegenBackend {\n _features: &[String],\n ) -> TargetMachineFactoryFn<Self> {\n // TODO(antoyo): set opt level.\n- Arc::new(|_| Ok(()))\n+ Arc::new(|_, _| ())\n...
2026-02-11T10:53:38
nodejs/node
d6f523480b1ce7e4440be04018b731a8232434a4
0b120af159d3f049e9886a01b281824eedf1e9a0
deps: fix sign-compare warning in ncrypto PR-URL: https://github.com/nodejs/node/pull/54624 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -1194,7 +1194,7 @@ DataPointer DHPointer::computeSecret(const BignumPointer& peer) const {\n \n // The size of the computed key can be smaller than the size of the DH key.\n // We want to make sure that the key is correctly padded.\n- if (size < dp.size...
2024-08-31T02:10:36
golang/go
992d1547178fe0d18c2827e34d62fbc545ace64c
d382f1467960d67a6b5eb25447f689a0ccac371e
crypto/tls: update TLS 1.3 client compression validation Unlike in earlier TLS versions, in TLS 1.3 when processing a server hello the legacy_compression_method MUST have the value 0. It is no longer a parameter that offers a choice of compression method. With this in mind, it seems more appropriate to return a decod...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -64,7 +64,6 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this shou...
2025-04-29T19:10:10
vercel/next.js
ae6604994c3ec6587036d949e046b1fe52e9e8a4
1e5888b210c25d1d36e007dde8d21a99b927c4cf
[router-act] Fixes related to segment inlining (#81896) While working on a feature called segment inlining, I had to make some changes to the internal `act` function we use for testing the Next.js client. Descriptions are given in each commit message.
[ { "path": "test/e2e/app-dir/segment-cache/router-act.ts", "patch": "@@ -8,7 +8,8 @@ type Batch = {\n }\n \n type PendingRSCRequest = {\n- route: Playwright.Route\n+ url: string\n+ route: Playwright.Route | null\n result: Promise<{\n text: string\n body: any\n@@ -153,6 +154,7 @@ export function ...
2025-07-22T15:13:48
rust-lang/rust
70587ce07cbf41b0e1f753038ff132d4ab0b7dd0
d34f1f931489618efffc4007e6b6bdb9e10f6467
Remove a couple of unused errors
[ { "path": "compiler/rustc_codegen_llvm/src/errors.rs", "patch": "@@ -101,8 +101,6 @@ pub enum LlvmError<'a> {\n CreateTargetMachine { triple: SmallCStr },\n #[diag(\"failed to run LLVM passes\")]\n RunLlvmPasses,\n- #[diag(\"failed to serialize module {$name}\")]\n- SerializeModule { name:...
2026-02-11T10:39:48
facebook/react
d7b45ec9b765575e63e034fb7d844027a323b06c
108fd8cab015688e6e8e57956c2f1ed1a0c054f2
Bump @adobe/css-tools from 4.0.1 to 4.3.2 in /fixtures/flight (#27766) Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.0.1 to 4.3.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/adobe/css-tools/blob/main/History.md"><code>@​adobe/css-tools</code>'s ch...
[ { "path": "fixtures/flight/yarn.lock", "patch": "@@ -3,9 +3,9 @@\n \n \n \"@adobe/css-tools@^4.0.1\":\n- version \"4.0.1\"\n- resolved \"https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.0.1.tgz#b38b444ad3aa5fedbb15f2f746dcd934226a12dd\"\n- integrity sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigem...
2023-12-01T19:56:14
electron/electron
fa5b1be6f3d6631c0404097b69ea81b4a1eab7f7
38c3d8df2970821f582d7adc6c3ecd400ef265df
fix: delete desktop capturers when they're not needed (#39194) * fix: delete desktop capturers when they're not needed Delete desktop capturer objects by resetting the DesktopMediaList objects that own them after the sources have been collected. Capturers that are not delegated are already being reset via a patch...
[ { "path": "patches/webrtc/.patches", "patch": "@@ -1 +1,2 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n+fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "patches/webrtc/fix_mark_pipewire_capture...
2023-07-26T08:40:19