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 |
|---|---|---|---|---|---|
golang/go | 03ad694dcbe8d981d644c9878326bd086d056af0 | 9d1cd0b8816654ac36f2122b52dd8335aae86b26 | runtime: update skips for TestGdbBacktrace
We encountered a new type of "no such process" error on loong64, it's like this
"Couldn't get NT_PRSTATUS registers: No such process.", I checked the source code
of gdb, NT_PRSTATUS is not fixed, it may be another name, so I use regular
expression here to match possible cases... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -528,11 +528,12 @@ func TestGdbBacktrace(t *testing.T) {\n \tgot, err := cmd.CombinedOutput()\n \tt.Logf(\"gdb output:\\n%s\", got)\n \tif err != nil {\n+\t\tnoProcessRE := regexp.MustCompile(`Couldn't get [a-zA-Z_ -]* ?registers: No such process\\.`... | 2025-06-13T03:48:44 |
vercel/next.js | 90c0dcec0bfb00af298a5d179bba8b3125756632 | 1a5ef158f0905c599f84a5c12495307d13d8620f | Update middleware node version history with latest stable release (#83166)
<!-- 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 makin... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx",
"patch": "@@ -680,6 +680,7 @@ Learn how to [configure Middleware](/docs/app/guides/self-hosting#middleware) wh\n \n | Version | Changes |\n | -... | 2025-08-28T11:52:12 |
facebook/react | 91f7bc8be7837ded7664220a30e447a8aae5b87b | fbd68eef7f8fad5dd1fdceb0fb79162c3d972e59 | Ensure valid mutable ranges for all scopes; fix ranges for context vars
Our current validation fails to detect some invalid cases of mutable ranges —
namely, ranges that are fully or partially uninitialized, with start or
start+end still set to zero.
This PR fixes these cases, starting by validating that the rang... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts",
"patch": "@@ -633,10 +633,14 @@ function isMutable(range: MutableRange): boolean {\n }\n \n function printMutableRange(identifier: Identifier): string {\n- const range =\n- identifier.scope !== null\n- ? identifier.scope.r... | 2024-03-26T20:29:24 |
electron/electron | 3dafb318a864b76fbe6412e00965af867da05b25 | 7e6fb97a2f4659d1416300a1c38f7294af081fb2 | test: fixup assertNotWindows (#41045)
* chore: fixup assertNotWindows
* remove logging | [
{
"path": "spec/lib/window-helpers.ts",
"patch": "@@ -29,13 +29,19 @@ export const closeWindow = async (\n await ensureWindowIsClosed(window);\n \n if (assertNotWindows) {\n- const windows = BaseWindow.getAllWindows();\n- try {\n- expect(windows).to.have.lengthOf(0);\n- } finally {\n- ... | 2024-01-18T19:04:43 |
nodejs/node | be5a500ae39baba2747be1b94972ef8d224fcb49 | b52a49bfb1871181b6160606b1a434373602fcbe | doc: fix history info for `URL.prototype.toJSON`
PR-URL: https://github.com/nodejs/node/pull/55818
Fixes: https://github.com/nodejs/node/issues/55806
Refs: https://github.com/nodejs/node/pull/11236
Refs: https://github.com/nodejs/node/pull/17365
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi ... | [
{
"path": "doc/api/url.md",
"patch": "@@ -600,6 +600,12 @@ value returned is equivalent to that of [`url.href`][] and [`url.toJSON()`][].\n \n #### `url.toJSON()`\n \n+<!-- YAML\n+added:\n+ - v7.7.0\n+ - v6.13.0\n+-->\n+\n * Returns: {string}\n \n The `toJSON()` method on the `URL` object returns the seri... | 2024-11-13T16:47:28 |
golang/go | acb914f2c2a3ec3dd227812ba6b119480d6400cd | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | cmd/doc: fix -http on Windows
On Windows, GOMODCACHE almost never starts with a slash, and
"go doc -http" constructs a GOPROXY URL by doing "file://" + GOMODCACHE,
resulting in an invalid file URI.
For example, if GOMODCACHE is "C:\foo", then the file URI should be
"file:///C:/foo", but it becomes "file://C:/foo" ins... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -405,6 +405,8 @@\n //\n //\tgo doc\n //\t\tShow documentation for current package.\n+//\tgo doc -http\n+//\t\tServe HTML documentation over HTTP for the current package.\n //\tgo doc Foo\n //\t\tShow documentation for Foo in the current package.\n //\t\t(Foo s... | 2025-06-27T10:45:22 |
vercel/next.js | 91601608af4d1da55e4652e8304426d2882cece3 | ada23ff30cd3dfce2c1156f5b8d71447314985a2 | [metadata] refine metadata image error for webpack (#83139) | [
{
"path": "packages/next/src/build/webpack/loaders/next-metadata-image-loader.ts",
"patch": "@@ -126,14 +126,17 @@ async function nextMetadataImageLoader(\n }`\n }\n \n+ let imageError\n const imageSize: { width?: number; height?: number } = await getImageSize(\n content\n- ).catch((err) => er... | 2025-08-28T11:35:08 |
electron/electron | 7e6fb97a2f4659d1416300a1c38f7294af081fb2 | df7f07a8af35a7b96c892374f0b51f3d432fc705 | fix: crash when `dialog.showMessageBoxSync` with missing buttons (#40996)
* fix: crash when dialog.showMessageBoxSync missing buttons
* chore: feedback from review | [
{
"path": "shell/browser/ui/message_box_mac.mm",
"patch": "@@ -76,15 +76,16 @@\n [[ns_buttons objectAtIndex:settings.default_id] setKeyEquivalent:@\"\\r\"];\n }\n \n- // Bind cancel id button to escape key if there is more than one button\n- if (button_count > 1 && settings.cancel_id >= 0 &&\n- ... | 2024-01-18T12:21:15 |
nodejs/node | bd0c4f80e4a7e54070f991bc6d1a7bf03f0ac4fc | 2310409a89d2d76fdc87289b99011750203b79fb | test: fix permission fixtures lint
PR-URL: https://github.com/nodejs/node/pull/55819
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/fixtures/permission/main-module.js",
"patch": "@@ -1 +1 @@\n-require('./required-module');\n\\ No newline at end of file\n+require('./required-module');",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/fixtures/permission/main-module.mjs",
... | 2024-11-12T16:39:24 |
golang/go | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | runtime: remove arbitrary 5-second timeout in TestNeedmDeadlock
The NeedmDeadlock test program currently has a 5-second timeout,
which is sort of arbitrary. It is long enough in regular mode
(which usually takes 0.0X seconds), but not quite so for
configurations like ASAN. Instead of using an arbitrary timeout,
just u... | [
{
"path": "src/runtime/testdata/testprogcgo/needmdeadlock.go",
"patch": "@@ -70,8 +70,6 @@ import \"C\"\n \n import (\n \t\"fmt\"\n-\t\"os\"\n-\t\"time\"\n )\n \n func init() {\n@@ -84,12 +82,8 @@ func GoNeedM() {\n \n func NeedmDeadlock() {\n \t// The failure symptom is that the program hangs because of a\... | 2025-06-27T23:45:22 |
vercel/next.js | 678f1052d3653c0a897cb943f95c3c4d26ec6f19 | 5146e4c5024ef3a0b677bd9f48bbf64d9fd5e455 | [Cache Components] Don't propagate tags/life for omitted caches (#82884)
Caches with staleness/expiration below certain thresholds are not
included in static prerenders and are treated as dynamic. However, the
logic for propagating life/tags did not factor this in, meaning that a
prerender could get `cacheLife("second... | [
{
"path": "packages/next/src/export/routes/app-page.ts",
"patch": "@@ -244,7 +244,10 @@ export async function exportAppPage(\n cacheControl,\n fetchMetrics,\n renderResumeDataCache: renderResumeDataCache\n- ? await stringifyResumeDataCache(renderResumeDataCache)\n+ ? await st... | 2025-08-28T10:23:17 |
electron/electron | df7f07a8af35a7b96c892374f0b51f3d432fc705 | f97d8719e6071722c67d2a1ac371f80faee78b0e | fix: modal rounding on nonmodal windows (#41003)
* fix: modal rounding on nonmodal windows
* chore: feedback from review | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1402,14 +1402,15 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (vibrantView != nil && !vibrancy_type_.empty()) {\n const bool no_rounded_corner = !HasStyleMask(NSWindowStyleMaskTitled);\n const i... | 2024-01-18T08:59:54 |
nodejs/node | 2310409a89d2d76fdc87289b99011750203b79fb | 03d414ed9add84541e71d180fed1b7b0609ff6c8 | report: fix network queries in getReport libuv with exclude-network
PR-URL: https://github.com/nodejs/node/pull/55602
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Vinícius Lourenço Claro Cardoso <cont... | [
{
"path": "doc/api/report.md",
"patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 3,\n+ \"reportVersion\": 4,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"... | 2024-11-12T15:57:59 |
golang/go | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | e81c624656e415626c7ac3a97768f5c2717979a4 | reflect: fix TypeAssert on nil interface values
In the Go language a type assertion of a nil interface value
will always report false:
var err error
v, ok := err.(error) // always reports (nil, false)
Consequently, assertion on a reflect.Value.Interface()
will also report false:
var err error
rv := ValueOf(&err... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -8719,6 +8719,11 @@ func TestTypeAssert(t *testing.T) {\n \ttestTypeAssert(t, any(int(1)), int(1), true)\n \ttestTypeAssert(t, any(int(1)), byte(0), false)\n \ttestTypeAssert(t, fmt.Stringer(vv), vv, true)\n+\n+\ttestTypeAssert(t, any(nil), any(nil), false)\... | 2025-06-27T17:59:44 |
vercel/next.js | 69af581db3095c9ef5636e6296395b303fbf1fdf | 4914f32baeb8c6f991a2baf1dcd59bf5957e0e2e | Remove pages export as it is unused (#82990)
## What?
As far as I can tell there's no usage of this variable. No TS errors and
all tests pass. | [
{
"path": "crates/next-core/src/app_page_loader_tree.rs",
"patch": "@@ -27,7 +27,6 @@ use crate::{\n pub struct AppPageLoaderTreeBuilder {\n base: BaseLoaderTreeBuilder,\n loader_tree_code: String,\n- pages: Vec<FileSystemPath>,\n /// next.config.js' basePath option to construct og metadata.\... | 2025-08-28T08:17:56 |
electron/electron | f97d8719e6071722c67d2a1ac371f80faee78b0e | 021592200e4bcc0127ad6aebcee3caa578fb77f4 | fix: use `HasStyleMask(NSWindowStyleMaskResizable)` instead of `IsResizable()` for enabling/disabling window maximize button (#40994) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -916,7 +916,8 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n \n void NativeWindowMac::UpdateZoomButton() {\n [[window_ standardWindowButton:NSWindowZoomButton]\n- setEnabled:IsResizable() && (CanMaximize... | 2024-01-17T17:23:41 |
facebook/react | c3048aab4c3346dca90ab0052a89fdb48450570f | 75de4ff72aa8b53a0af1f6b1f23e338329069c74 | Fix tests on main (#28643)
Not sure how these broke when merging
https://github.com/facebook/react/pull/28299 and
https://github.com/facebook/react/pull/28361 | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js",
"patch": "@@ -453,17 +453,17 @@ describe('ReactDOMServerPartialHydration', () => {\n // Client rendered - suspense comment nodes removed.\n expect(container.innerHTML).toBe('Hello<article>Mismatch</arti... | 2024-03-26T15:26:42 |
golang/go | e81c624656e415626c7ac3a97768f5c2717979a4 | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | os: use minimal file permissions when opening parent directory in RemoveAll
On Windows, the process might not have read permission on the parent
directory, but still can delete files in it. This change allows
RemoveAll to open the parent directory with minimal permissions, which
is sufficient for deleting child files.... | [
{
"path": "src/os/removeall_at.go",
"patch": "@@ -8,6 +8,7 @@ package os\n \n import (\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n@@ -34,7 +35,15 @@ func removeAll(path string) error {\n \t// its parent directory\n \tparentDir, base := splitPath(path)\n \n-\tparent, err := Open(parentDir)\n+\tflag :... | 2025-06-27T09:16:54 |
vercel/next.js | 4914f32baeb8c6f991a2baf1dcd59bf5957e0e2e | 070ae8a76562dd0ff85e33012ef3b4090a598b14 | Turbopack: persist when stopping (after build) (#83014)
### What?
Fixes persistent caching with next build.
Need to investigate how this regression passes the test cases... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1231,6 +1231,9 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n self.is_idle.store(false, Ordering::Release);\n self.verify_aggregation_graph(turbo_tasks, false);\n }\n+ if self.... | 2025-08-28T08:07:23 |
nodejs/node | 07e2819d5d3f9c1f0b71696a77cea3c6fc6f5c15 | 8531e072f3c70e26a4ba6fecd6ed0e099a898410 | esm: fix import.meta.resolve crash
PR-URL: https://github.com/nodejs/node/pull/55777
Fixes: https://github.com/nodejs/node/issues/55518
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_modules.cc",
"patch": "@@ -412,7 +412,10 @@ void BindingData::GetPackageScopeConfig(\n }\n \n auto file_url = url::FileURLToPath(realm->env(), *package_json_url);\n- CHECK(file_url);\n+ if (!file_url) {\n+ url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std... | 2024-11-11T16:29:16 |
facebook/react | 75de4ff72aa8b53a0af1f6b1f23e338329069c74 | 07def0cc5a377fc36c410b85112fdc51485ecc11 | fix[devtools/ci]: split profiling cache test for different react versions and toEqual checker (#28628)
This should fix the failing backwards-compatibility tests on CI:
-
https://app.circleci.com/pipelines/github/facebook/react/51347/workflows/9d319db5-7a29-4e9a-a3a0-8d49a24ee9bd/jobs/809381
-
https://app.circleci.... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -310,7 +310,8 @@ describe('ProfilingCache', () => {\n });\n \n // @reactVersion >= 16.9\n- it('should record changed props/state/context/hooks', () => {\n+ // @reactVersion <= 18.2\n+ it('should record chang... | 2024-03-26T10:55:07 |
electron/electron | 6803624576dc0086b83bdf50051a0dfd96f71401 | 4949c4c4e130e63b861adfc0093453c510579000 | fix: check for Node.js-created module when `contextIsolation` disabled (#40993) | [
{
"path": "patches/node/chore_expose_importmoduledynamically_and.patch",
"patch": "@@ -87,7 +87,7 @@ index 52c30dcb47d1faba0c2267e4381a624e450baa02..ba4c1a0d5a987e4d410b49f5c4716694\n \n MaybeLocal<Value> ModuleWrap::SyntheticModuleEvaluationStepsCallback(\n diff --git a/src/module_wrap.h b/src/module_wra... | 2024-01-16T13:29:00 |
golang/go | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | 742fda95246958076e439bbcf71fedda43a894bb | encoding/json: add security section to doc
Add a section to the package doc which details the security
considerations of using encoding/json, in particular with respect to
parser misalignment issues.
Additionally, clarify previously ambiguous statement in the Unmarshal
doc about how case is used when matching keys in... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -43,11 +43,14 @@ import (\n // and the input is a JSON quoted string, Unmarshal calls\n // [encoding.TextUnmarshaler.UnmarshalText] with the unquoted form of the string.\n //\n-// To unmarshal JSON into a struct, Unmarshal matches incoming object\n-// ke... | 2025-06-26T19:19:23 |
vercel/next.js | 28802386cac905047600f36b6cca9565c1a7f288 | 970a0554bfb6cecd9ec2af61257c1acc7193f80e | fix: validation return types of pages API routes (#83069)
## For Contributors
### Fixing a bug
- Updates the (previously incorrect) API route handler type definition
in the validator
- Changes the return type from `Promise<Response | void> | Response |
void` to `unknown | Promise<unknown>`
- Updates the test route e... | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -565,7 +565,7 @@ export function generateValidatorFile(\n \n if (pagesApiRouteValidations) {\n typeDefinitions += `type ApiRouteConfig = {\n- default: (req: any, res: any) => Promise<Response | void> | Response | void\n+ ... | 2025-08-27T23:02:40 |
facebook/react | fbd68eef7f8fad5dd1fdceb0fb79162c3d972e59 | 48ecaf92d51813a1b1f1bcba1cdcbf48a501f2c6 | Fix for invalid mutable range in phi with backedge
Fixes the repro added in 947832009997bf9149e88e583c46cc39f6a6136c - previously
when computing mutable ranges of phis, we didn't check that all operands had
been visited. This meant that a backedge could allow a phi's mutable range to
start at 0. Then in PropagateS... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferMutableLifetimes.ts",
"patch": "@@ -5,7 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { CompilerError } from \"../CompilerError\";\n import {\n Effect,\n HIRFunction,\n@@ -102,22 +101,30 @@... | 2024-03-26T04:36:33 |
nodejs/node | 7bcc250799443dc955618d5e0ec1c4cbc6bfaed7 | 69f8794cbea5813ff9abb490c2cd875b8332f605 | tools: fix exclude labels for commit-queue
The `gh` cli doesn't recognise `--no-label`. Instead exclude labels
via the `--search` flag.
Refs: https://github.com/nodejs/node/pull/55781#issuecomment-2466782441
Refs: https://github.com/cli/cli/discussions/4142
PR-URL: https://github.com/nodejs/node/pull/55809
Reviewed-B... | [
{
"path": ".github/workflows/commit-queue.yml",
"patch": "@@ -37,17 +37,16 @@ jobs:\n --repo ${{ github.repository }} \\\n --base ${{ github.ref_name }} \\\n --label 'commit-queue' \\\n- --no-label 'blocked' \\\n --json... | 2024-11-10T15:59:05 |
rust-lang/rust | 918214c19ae9f44eaca32d03f4a4cb10cc6089e9 | 2a3d765883f559d9e626cce2edda17418fd212ac | style: fix rustfmt formatting | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs",
"patch": "@@ -1370,10 +1370,8 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- sema.ancestors_with_macros(name_ref.synta... | 2026-02-18T20:44:34 |
electron/electron | 4949c4c4e130e63b861adfc0093453c510579000 | 61f619a5e66601f33ac698027d3581e933a46f39 | chore: fix building blink_tests target (#40982) | [
{
"path": "patches/chromium/fix_return_v8_value_from_localframe_requestexecutescript.patch",
"patch": "@@ -203,6 +203,18 @@ index fa65331f40b90d812b71a489fd560e9359152d2b..390714d631dc88ef92d59ef9618a5706\n base::TimeTicks start_time_;\n const mojom::blink::UserActivationOption user_activation_option_... | 2024-01-16T11:24:14 |
golang/go | fdc076ce762326fc19ef1b6de01da6ce50f55926 | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | net/http: fix RoundTrip context cancellation for js/wasm
The existing js/wasm implementation of RoundTrip calls abort() on the
fetch() call when the context is canceled but does not wait for for the
resulting promise to be rejected. The result is the failure callback for the
promise will be called at some later point ... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -236,6 +236,14 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tif !ac.IsUndefined() {\n \t\t\t// Abort the Fetch request.\n \t\t\tac.Call(\"abort\")\n+\n+\t\t\t// Wait for fetch promise to be rejected prior to exiting. See\n+\t... | 2025-06-10T15:09:35 |
vercel/next.js | 2b5c714b577031840b1ecec6ea59c4ab591a169b | a4fe3db9337aa46615330a919b3268472d34cdff | fix: use ESM import instead of triple-slash reference for routes.d.ts (#82867)
## What?
Replace `/// <reference path="./.next/types/routes.d.ts" />` with
`import type {} from './.next/types/routes.d.ts'` in generated
`next-env.d.ts` files.
## Why?
The current implementation uses triple-slash reference directives wh... | [
{
"path": "packages/create-next-app/templates/app-api/ts/next-env.d.ts",
"patch": "@@ -1,6 +1,6 @@\n /// <reference types=\"next\" />\n /// <reference types=\"next/image-types/global\" />\n-/// <reference path=\"./.next/types/routes.d.ts\" />\n+import \"./.next/types/routes.d.ts\";\n \n // NOTE: This file s... | 2025-08-27T21:57:43 |
facebook/react | 67e6fa6d17b52e0f7d759e6079b49b9b164cf9ba | d3037405c4c9ce8158ef9017e960ec97fb089df4 | Test for suspending with modern strict mode (#28513)
## Overview
Adds a test to show the cause of an infinite loop in Relay related to
[these effects in
Relay](https://github.com/facebook/relay/blob/448aa67d2a11e7d45cd7b4492b9f599b498cb39e/packages/react-relay/relay-hooks/useLazyLoadQueryNode.js#L77-L104)
and `u... | [
{
"path": "packages/react-reconciler/src/__tests__/StrictEffectsMode-test.js",
"patch": "@@ -772,4 +772,177 @@ describe('StrictEffectsMode', () => {\n 'useEffect unmount',\n ]);\n });\n+\n+ // @gate __DEV__\n+ it('should double invoke effects after a re-suspend', async () => {\n+ // Not usi... | 2024-03-26T04:02:16 |
rust-lang/rust | 4a0f916e3388a4efa92e11805d5cb35332befcab | c043085801b7a884054add21a94882216df5971c | fix stale comments left over from ed3711e | [
{
"path": "library/core/src/str/iter.rs",
"patch": "@@ -99,9 +99,6 @@ impl<'a> Iterator for Chars<'a> {\n #[inline]\n fn size_hint(&self) -> (usize, Option<usize>) {\n let len = self.iter.len();\n- // `(len + 3)` can't overflow, because we know that the `slice::Iter`\n- // belo... | 2026-02-18T20:30:59 |
electron/electron | b3e01220cb8511790d45ec3759faae1289ad197d | 80b220d2140ad46e276176b72c5afd44fe27b0c9 | refactor: fix deprecated base::Base64Encode() API calls (#40962)
* refactor: replace deprecated Base64Encode() usage in IWC::NetworkResourceLoader::OnDataReceived()
* refactor: replace deprecated Base64Encode() usage EncodeToken(const base::UnguessableToken& token) | [
{
"path": "shell/browser/serial/serial_chooser_context.cc",
"patch": "@@ -38,11 +38,8 @@ const char kUsbDriverKey[] = \"usb_driver\";\n std::string EncodeToken(const base::UnguessableToken& token) {\n const uint64_t data[2] = {token.GetHighForSerialization(),\n token.GetLowForS... | 2024-01-15T10:01:35 |
nodejs/node | 069ec1b983f65b1003a19e82612f7db402213cbe | 58a8eb4e1c722d319dc4f2325d9c7b9da2bd587f | doc: consolidate history table of CustomEvent
PR-URL: https://github.com/nodejs/node/pull/55758
Fixes: https://github.com/nodejs/node/issues/55733
Refs: https://github.com/nodejs/node/issues/55733
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> | [
{
"path": "doc/api/events.md",
"patch": "@@ -2427,11 +2427,17 @@ added:\n - v18.7.0\n - v16.17.0\n changes:\n+ - version: v23.0.0\n+ pr-url: https://github.com/nodejs/node/pull/52723\n+ description: No longer experimental.\n - version:\n - v22.1.0\n - v20.13.0\n pr-url: https://gith... | 2024-11-09T02:47:32 |
golang/go | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | 0f8ab2db177baee7b04182f5641693df3b212aa9 | encoding/json: fix typo in hotlink for jsontext.PreserveRawStrings
Updates #71845
Change-Id: Ie099e7ac77293696fd9e69559487e27f4b70ab3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684416
Auto-Submit: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia... | [
{
"path": "src/encoding/json/v2_options.go",
"patch": "@@ -221,7 +221,7 @@ type Options = jsonopts.Options\n // - [jsontext.AllowInvalidUTF8]\n // - [jsontext.EscapeForHTML]\n // - [jsontext.EscapeForJS]\n-// - [jsontext.PreserveRawString]\n+// - [jsontext.PreserveRawStrings]\n //\n // All other b... | 2025-06-27T01:18:32 |
vercel/next.js | a4fe3db9337aa46615330a919b3268472d34cdff | 70e5f225721125f2f45615dabc10102345ccc5f3 | fix: relative paths in dev in validator.ts (#83073)
Fixes #83063
- **Problem**: `next dev` produced overly deep relative imports in
`validator.ts` that differed from `next typegen`/`next build`.
- **Cause**: Dev pre-relativized page file paths and didn’t pass
`validatorFilePath`, causing incorrect relative path comp... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -576,10 +576,7 @@ async function startWatcher(\n ''\n )\n ),\n- filePath: path.relative(\n- path.dirname(validatorFilePath),\n- ... | 2025-08-27T21:02:56 |
facebook/react | d3037405c4c9ce8158ef9017e960ec97fb089df4 | 5a75f9e78544fa6d052aff7fe99607e48f35b979 | Test showing mismatches after suspending force fallbacks to be shown (#28299)
While investigating https://github.com/facebook/react/issues/28285 I
found a possible bug in handling Suspense and mismatches. As the tests
show, if the first sibling in a boundary suspends, and the second has a
mismatch, we will NOT show... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js",
"patch": "@@ -366,6 +366,775 @@ describe('ReactDOMServerPartialHydration', () => {\n }\n });\n \n+ it('does not show a fallback if mismatch is after suspending', async () => {\n+ // We can't use the toErr... | 2024-03-26T00:33:31 |
rust-lang/rust | 2a3d765883f559d9e626cce2edda17418fd212ac | ffc185a5db9e52f1d32fa48cd0eb80b317ddfe49 | fix: exclude macro refs in tests when excludeTests is enabled | [
{
"path": "src/tools/rust-analyzer/crates/ide-db/src/search.rs",
"patch": "@@ -1370,8 +1370,10 @@ fn is_name_ref_in_import(name_ref: &ast::NameRef) -> bool {\n }\n \n fn is_name_ref_in_test(sema: &Semantics<'_, RootDatabase>, name_ref: &ast::NameRef) -> bool {\n- name_ref.syntax().ancestors().any(|node| ... | 2026-02-18T20:21:08 |
electron/electron | 80b220d2140ad46e276176b72c5afd44fe27b0c9 | 57b29903e30a7bdb32776e248d25750b0953777a | refactor: use base::NoDestructor instead of base::LazyInstance (#40947)
* refactor: use NoDestructor for g_io_thread_application_locale
* refactor: use NoDestructor for ExtensionActionAPI::GetFactoryInstance()
* refactor: use NoDestructor for ElectronExtensionsClient::GetPermissionMessageProvider()
* refactor... | [
{
"path": "patches/chromium/feat_add_support_for_overriding_the_base_spellchecker_download_url.patch",
"patch": "@@ -9,15 +9,22 @@ production use cases. This is unlikely to be upstreamed as the change\n is entirely in //chrome.\n \n diff --git a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc... | 2024-01-12T13:50:29 |
nodejs/node | e0ef622c54e49f9d3ae1be2f4631154d90272915 | 37c941be052a8b98eb6066cc38f8e30603e4c5d8 | fs: fix bufferSize option for opendir recursive
The bufferSize option was not respected in recursive mode. This PR
implements a naive solution to fix this issue until a better
implementation can be designed.
Fixes: https://github.com/nodejs/node/issues/48820
PR-URL: https://github.com/nodejs/node/pull/55744
Reviewed-... | [
{
"path": "lib/internal/fs/dir.js",
"patch": "@@ -164,12 +164,16 @@ class Dir {\n return;\n }\n \n- const result = handle.read(\n+ // Fully read the directory and buffer the entries.\n+ // This is a naive solution and for very large sub-directories\n+ // it can even block the event loo... | 2024-11-08T16:03:55 |
golang/go | 0f8ab2db177baee7b04182f5641693df3b212aa9 | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | cmd/link: permit a larger size BSS reference to a smaller DATA symbol
Currently, if there is a BSS reference and a DATA symbol
definition with the same name, we pick the DATA symbol, as it
contains the right content. In this case, if the BSS reference
has a larger size, we error out, because it is not safe to access
a... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -42,6 +42,8 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan_global3_fail.go\", memoryAccessError: \"global-buffer-overflow\", errorLocation: \"asan_global3_fail.go:13\"},\n \t\t{src: \"asan_global4_fail.go\", memoryAccessError: \... | 2025-06-26T19:46:31 |
facebook/react | 29ab0f835e199d8f943b8a68634533c24fe74324 | e6ce5e49229ac410b35809a37b209ef3bd747202 | Repro for scopes from AnalyzeFunction influencing outer compilation
We share identifiers between outer functions and inner function expressions,
which means that scopes inferred during AnalyzeFunctions can be retained on
Identifiers in the outer function. If InferReactiveScopeVariables doesn't happen
to visit an i... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-mutable-range-shared-inner-outer-function.expect.md",
"patch": "@@ -0,0 +1,75 @@\n+\n+## Input\n+\n+```javascript\n+// @enableAssumeHooksFollowRulesOfReact @enableTransitivelyFreezeFunctionExpressions\n+let cond = t... | 2024-03-25T22:31:22 |
vercel/next.js | f64dc1c382468ee5bc4854d988a00d81f6d4595c | 8657188505ada96024068b44c6caa5ebd89f3867 | fix global not found canont static shell with sync io (#83111) | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -1462,16 +1462,13 @@ async fn directory_tree_to_entrypoints_internal_untraced(\n parallel_routes: FxIndexMap::default(),\n modules: if use_global_not_found {\n ... | 2025-08-27T20:04:21 |
electron/electron | 57b29903e30a7bdb32776e248d25750b0953777a | bbfe809d02a09b924b0c3059dd7d378ae5280419 | build: log got error response bodies (#40965) | [
{
"path": "script/prepare-appveyor.js",
"patch": "@@ -70,7 +70,14 @@ async function checkAppVeyorImage (options) {\n const { cloudSettings } = settings;\n return cloudSettings.images.find(image => image.name === `${options.imageVersion}`) || null;\n } catch (err) {\n- console.log('Could not cal... | 2024-01-12T13:37:39 |
nodejs/node | e0145b4c38ab11841a25e36683df6fead869eb52 | 6f12f1e500cd6d9f824aa80c46386e1805d3aa63 | tools: fix c-ares updater script for Node.js 18
GitHub Actions is by default running the tools updater workflow
with Node.js 18. Avoid use of `import.meta.dirname`, which wasn't
backported to Node.js 18.
PR-URL: https://github.com/nodejs/node/pull/55717
Refs: https://github.com/nodejs/node/pull/55445
Reviewed-By: Mar... | [
{
"path": "tools/dep_updaters/update-c-ares.mjs",
"patch": "@@ -1,8 +1,9 @@\n // Synchronize the sources for our c-ares gyp file from c-ares' Makefiles.\n import { readFileSync, writeFileSync } from 'node:fs';\n import { join } from 'node:path';\n+import { fileURLToPath } from 'node:url';\n \n-const srcroot... | 2024-11-06T15:50:12 |
golang/go | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | b5d555991ab73e06e09741952a66dd7eeaf2a185 | cmd/compile/internal/escape: evaluate any side effects when rewriting with literals
CL 649035 and CL 649079 updated escape analysis to rewrite
certain operands in OMAKE and OCONVIFACE nodes from non-constant
expressions to basic literals that evaluate to the same value.
However, when doing that rewriting, we need to ... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -545,6 +545,14 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\tbase.Fatalf(\"no ReassignOracle for function %v with closure parent %v\", fn, fn.ClosureParent)\n \t}\n \n+\tassignTemp := func(n ir.Node, init *ir.Nodes)... | 2025-06-25T23:01:11 |
facebook/react | 50cdf158d81a799763818308baf86c7db17d0931 | b35be36fb4a3fb3713ecb252f20ca1050a29122f | Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /fixtures/flight (#28618)
Bumps
[webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware)
from 5.3.3 to 5.3.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/webpack/webpack-dev-middleware/releases">w... | [
{
"path": "fixtures/flight/package.json",
"patch": "@@ -59,7 +59,7 @@\n \"terser-webpack-plugin\": \"^5.2.5\",\n \"undici\": \"^5.20.0\",\n \"webpack\": \"^5.64.4\",\n- \"webpack-dev-middleware\": \"^5.3.1\",\n+ \"webpack-dev-middleware\": \"^5.3.4\",\n \"webpack-hot-middleware\": \"^2... | 2024-03-25T17:37:11 |
rust-lang/rust | 3cb093af1fae3eb5370c702a32ca5e334e84dbde | c043085801b7a884054add21a94882216df5971c | interpret: fix comment typo | [
{
"path": "compiler/rustc_const_eval/src/interpret/validity.rs",
"patch": "@@ -647,8 +647,9 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {\n }\n } else {\n // This is not CTFE, so it's Miri with recursive checking.\n- // FIXME:... | 2026-02-18T17:22:26 |
vercel/next.js | 589065d7884456180b991d4bd57da0e5bdb7fbff | 7494f9ac8477e228d620f15bdc0f11ce161974ce | Fix flakey multiple-lockfiles tests (#83103)
Writing to `join(next.testDir, '../package-lock.json')` breaks test isolation. | [
{
"path": "test/development/project-directory-with-styled-jsx-suffix/index.test.ts",
"patch": "@@ -14,7 +14,7 @@ describe('project directory with styled-jsx suffix', () => {\n } \n `,\n },\n- dirSuffix: '-styled-jsx',\n+ subDir: 'test-styled-jsx',\n })\n })\n afterA... | 2025-08-27T13:46:53 |
electron/electron | 8b9eb518a9cfaa78b08ac77114c1d3e2c6ea2cd4 | d5d162b62237705e804831f49e738c987d99b2f9 | build: fix windows remote exec of python actions (#40958) | [
{
"path": "patches/reclient-configs/fix_add_python_remote_wrapper.patch",
"patch": "@@ -109,7 +109,7 @@ index 0000000000000000000000000000000000000000..54817e4f6f9e3cb2f1e7ea1317fa8fef\n +# Launch\n +\"$1\" \"${@:2}\"\n diff --git a/python/rewrapper_linux.cfg b/python/rewrapper_linux.cfg\n-index 951bc66afd2... | 2024-01-11T15:17:35 |
nodejs/node | c185e1162385ecd23ae2eea2fd38510ad0b6a673 | 98e5693cd460f675c18d8817b3fbd314089033c6 | util: do not catch on circular `@@toStringTag` errors
PR-URL: https://github.com/nodejs/node/pull/55544
Fixes: https://github.com/nodejs/node/issues/55539
Reviewed-By: James M Snell <jasnell@gmail.com>
Co-Authored-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1072,6 +1072,7 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n ArrayPrototypePushApply(output, protoProps);\n }\n } catch (err) {\n+ if (!isStackOverflowError(err)) throw err;\n const constructorName = StringPrototype... | 2024-11-06T09:57:15 |
rust-lang/rust | 61c9af20c7d36fc4f33e0a90fbb86ce5b519a468 | 3f6250a7bb79e600d9036bbc7c8f65af43933643 | avoid delayed-bug ICE for malformed diagnostic attrs
remove -Znext-solver from ui tests | [
{
"path": "compiler/rustc_attr_parsing/src/parser.rs",
"patch": "@@ -522,6 +522,13 @@ impl<'a, 'sess> MetaItemListParserContext<'a, 'sess> {\n return self.parser.dcx().create_err(err);\n }\n \n+ if let ShouldEmit::ErrorsAndLints { recovery: Recovery::Forbidden } = self.should_emit... | 2026-02-18T16:08:35 |
facebook/react | b35be36fb4a3fb3713ecb252f20ca1050a29122f | 527ed72bfd9f5c0045da468ad01db968a9961ad7 | Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#28621)
Bumps
[webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware)
from 5.3.3 to 5.3.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/webpack/webpack-dev-middleware/releases">webpack-dev-middlewar... | [
{
"path": "yarn.lock",
"patch": "@@ -15791,9 +15791,9 @@ webpack-cli@^5.1.1:\n webpack-merge \"^5.7.3\"\n \n webpack-dev-middleware@^5.3.1:\n- version \"5.3.3\"\n- resolved \"https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f... | 2024-03-25T17:36:03 |
electron/electron | d5d162b62237705e804831f49e738c987d99b2f9 | b39ebb8625b714d1369552d865643c98c624b9f8 | fix: InAppPurchase pre-emptive deallocation (#40938)
* fix: InAppPurchase pre-emptive deallocation
* test: try re-enabling IAP tests | [
{
"path": "shell/browser/mac/in_app_purchase.mm",
"patch": "@@ -26,6 +26,7 @@ @interface InAppPurchase : NSObject <SKProductsRequestDelegate> {\n in_app_purchase::InAppPurchaseCallback callback_;\n NSInteger quantity_;\n NSString* username_;\n+ InAppPurchase __strong* self_;\n }\n \n - (id)initWithCa... | 2024-01-11T12:32:29 |
facebook/react | e373190faf3b994707f09488c1a7832f4a91e15a | 0711ff17638ed41f9cdea712a19b92f01aeda38f | Guard against legacy context not being supported in DevTools fixture (#28596) | [
{
"path": "packages/react-devtools-shell/src/app/InspectableElements/Contexts.js",
"patch": "@@ -273,15 +273,46 @@ class ModernClassContextConsumerWithUpdates extends Component<any> {\n }\n }\n \n+type LegacyContextState = {\n+ supportsLegacyContext: boolean,\n+};\n+class LegacyContext extends React.Comp... | 2024-03-25T13:30:08 |
nodejs/node | 98e5693cd460f675c18d8817b3fbd314089033c6 | ccac4ee19d508abaf38bbabb87288ddeec7fcc21 | doc: clarity to available addon options
bullet pointed addon optons; wording clarity; fixes typo
PR-URL: https://github.com/nodejs/node/pull/55715
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/addons.md",
"patch": "@@ -8,20 +8,25 @@ _Addons_ are dynamically-linked shared objects written in C++. The\n [`require()`][require] function can load addons as ordinary Node.js modules.\n Addons provide an interface between JavaScript and C/C++ libraries.\n \n-There are three options for ... | 2024-11-06T07:55:49 |
vercel/next.js | 7dc7c98e028e68508371c0c60b71a58fb6c480f2 | 8f7f2fed8595a6430f377811dce6e12088b11429 | fix dynamic param extraction in edge-ssr-app (#83081)
Fixes edge runtime pages with dynamic routes returning 500 errors when
the URL segment literally contains bracket syntax that matches the
folder name (e.g., accessing `/[id]` for a route defined as
`/[id]/page.tsx`).
The removal of web-server.ts in #81389 modified... | [
{
"path": "packages/next/src/server/route-modules/route-module.ts",
"patch": "@@ -598,8 +598,13 @@ export abstract class RouteModule<\n }\n }\n \n+ // Normalize the page path for route matching. The srcPage contains the\n+ // internal page path (e.g., /app/[slug]/page), but route matchers ex... | 2025-08-27T13:26:59 |
facebook/react | 2ce112dbf2442c87f89b649e31dd132c170d64fd | db7e7c7fae69e54fee8751b10790827e2dea0ac2 | Repro for missing dep with while/if using externally declared "index" variable
What happens here is that the phi node for `i` has its mutable range set to
start at 0, because it has a back edge and we haven't initialized the mutable
ranges of all its operands yet when we iterate the operands and set range.start
= ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-repro-missing-dependency-if-within-while.expect.md",
"patch": "@@ -0,0 +1,79 @@\n+\n+## Input\n+\n+```javascript\n+const someGlobal = true;\n+export default function Component(props) {\n+ const { b } = props;\n+ con... | 2024-03-23T04:49:39 |
nodejs/node | 4da8d110f3930e6f97c203e6a3d031cb583f4ca0 | ecc62381a883ecacbcd076473132192014d6f7d7 | assert: fix `deepStrictEqual` on errors when `cause` is not undefined
PR-URL: https://github.com/nodejs/node/pull/55406
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Ruben Bridgewater ... | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -15,6 +15,8 @@ const {\n StringPrototypeSplit,\n } = primordials;\n \n+const { isError } = require('internal/util');\n+\n const { inspect } = require('internal/util/inspect');\n const colors = require('internal/util/colors');\n const { valid... | 2024-11-05T23:45:05 |
electron/electron | 2e4e6f10de3b0814916f61c3cca44dc578652649 | f36ceae0242f3b54cfe7e7712219f410b7beff81 | chore: bump chromium to 122.0.6236.2 (main) (#40871)
* chore: bump chromium in DEPS to 122.0.6223.0
* 5129828: Removes special cases for selenium-atoms dependencies.
https://chromium-review.googlesource.com/c/chromium/src/+/5129828
* chore: fixup patch indices
* 5139789: Deduplicate BrowserContext's Resour... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '122.0.6194.0',\n+ '122.0.6236.2',\n 'node_version':\n 'v20.10.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/b... | 2024-01-11T06:33:40 |
golang/go | f8ccda2e0574c9ca5d92068852a34b463f87a85b | f069a8299876f9987a01a8d4a664d2a887bd5efc | runtime: make explicit nil check in (*spanInlineMarkBits).init
The hugo binary gets slower, potentially dramatically so, with
GOEXPERIMENT=greenteagc. The root cause is page mapping churn. The Green
Tea code introduced a new implicit nil check on value in a
freshly-allocated span to clear some new heap metadata. This ... | [
{
"path": "src/runtime/mgcmark_greenteagc.go",
"patch": "@@ -111,6 +111,26 @@ func (o *spanScanOwnership) or(v spanScanOwnership) spanScanOwnership {\n }\n \n func (imb *spanInlineMarkBits) init(class spanClass) {\n+\tif imb == nil {\n+\t\t// This nil check and throw is almost pointless. Normally we would\n... | 2025-06-25T15:47:05 |
vercel/next.js | 8f7f2fed8595a6430f377811dce6e12088b11429 | d28c942d4fa4270e7736ff7c18ef705a9f2e8f84 | fix(turbopack) Fix handling of intercept route segments (#82694)
## Fix handling of intercept route segments in HMR
### What?
- Made the routes in `resolve-routes.ts` get lazily initialized, and
only recalculated in development mode to preserve
performance
- Added a test case for HMR with intercept routes
### Why... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -71,37 +71,40 @@ export function getResolveRoutes(\n } & Partial<Header> &\n Partial<Redirect>\n \n- const routes: Route[] = [\n- // _next/data with middleware handling\n- { match: () => ({}), name: 'middlewar... | 2025-08-27T13:19:57 |
facebook/react | 200d2c379dd3acb024ec0b2ef9d649bb1d149bdd | f4ff1a28e714a2d013615a142257523ea9da17cf | Fix for loops with value block index initial value | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/SSA/LeaveSSA.ts",
"patch": "@@ -23,6 +23,7 @@ import {\n eachInstructionValueOperand,\n eachPatternOperand,\n eachTerminalOperand,\n+ eachTerminalSuccessor,\n terminalFallthrough,\n } from \"../HIR/visitors\";\n \n@@ -340,8 +341,14 @@ expor... | 2024-03-22T21:51:36 |
nodejs/node | 7f68e5466a9c443d3b19a0a0749debe493a8af34 | 25f84747305787126126d4ce1ad682382efcef04 | path,win: fix bug in resolve and normalize
Fixes: https://github.com/nodejs/node/issues/54025
PR-URL: https://github.com/nodejs/node/pull/55623
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/path.js",
"patch": "@@ -268,10 +268,16 @@ const win32 = {\n j++;\n }\n if (j === len || j !== last) {\n- // We matched a UNC root\n- device =\n- `\\\\\\\\${firstPart}\\\\${StringPrototypeSlice(path, las... | 2024-11-05T23:21:54 |
golang/go | e515ef8bc271f632bb2ebb94e8e700ab67274268 | 47b941f445f0a839e826b81a5394d30934821500 | context: fix typo in context_test.go
Change-Id: Iee90ce7965eec4074fcb81a34968591877a062d3
GitHub-Last-Rev: f18fd099e490b130affa298bfc40da27ac589b26
GitHub-Pull-Request: golang/go#74360
Reviewed-on: https://go-review.googlesource.com/c/go/+/683675
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri ... | [
{
"path": "src/context/context_test.go",
"patch": "@@ -5,7 +5,7 @@\n package context\n \n // Tests in package context cannot depend directly on package testing due to an import cycle.\n-// If your test does requires access to unexported members of the context package,\n+// If your test requires access to un... | 2025-06-24T23:46:06 |
rust-lang/rust | 6a1537830e393dfb937caf2e97d1c2f80049620f | 9ddb7fc60a596492db05b3ed846c0dc5f1ebbf23 | Fix broken merge | [
{
"path": "src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for this.\n- CanonAbi::RustPre... | 2026-02-18T15:10:37 |
vercel/next.js | 7aaf8ce50e2df076190e9c72384d82e14c41af6f | 43d4532a32f8b92aa0efcad2867f8f38a9f70eda | Turbopack: NFT debugging (#83094) | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/references/node.rs",
"patch": "@@ -1,5 +1,6 @@\n use anyhow::Result;\n use either::Either;\n+use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, ValueToString, Vc};\n use turbo_tasks_fs::FileSystemPath;\n@@ -156,7 +... | 2025-08-27T11:53:53 |
electron/electron | f36ceae0242f3b54cfe7e7712219f410b7beff81 | 892c9d78a394f256b361d019abd50d3f8c7a2366 | chore: migrate base::StringPiece to std::string_view (#40915)
* chore: migrate from base::StringPiece to std::string_view in keyboard_util.cc
* chore: migrate from base::StringPiece to std::string_view in error_thrower.cc
* chore: migrate from base::StringPiece to std::string_view in electron_api_web_contents.cc... | [
{
"path": "shell/app/electron_content_client.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"shell/app/electron_content_client.h\"\n \n #include <string>\n+#include <string_view>\n #include <utility>\n #include <vector>\n \n@@ -106,12 +107,12 @@ bool IsWidevineAvailable(\n }\n #endif // BUILDFLAG(ENABLE_WIDEVI... | 2024-01-11T01:00:37 |
facebook/react | f4ff1a28e714a2d013615a142257523ea9da17cf | 73fa712108dcd7b1a103291650087f561be613b4 | Fix for destructuring with partial context variables | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3434,7 +3434,12 @@ function lowerAssignment(\n */\n const forceTemporaries =\n kind === InstructionKind.Reassign &&\n- elements.some((element) => !element.isIdentifier());\n+ (elemen... | 2024-03-22T21:32:50 |
nodejs/node | 25f84747305787126126d4ce1ad682382efcef04 | e53fe03a181f89d205f373b94c818139b52e1943 | doc: update `--max-semi-space-size` description
PR-URL: https://github.com/nodejs/node/pull/55495
Fixes: https://github.com/nodejs/node/issues/55487
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3541,8 +3541,12 @@ an increase of 1 MiB to semi-space applies to each of the three individual\n semi-spaces and causes the heap size to increase by 3 MiB. The throughput\n improvement depends on your workload (see [#42511][]).\n \n-The default value is 16 MiB for 64... | 2024-11-05T23:14:15 |
rust-lang/rust | fb635505491c0e5dbdb8d4349a395c14664638b8 | 87ba622af7b5517e8bfdf8f66de0dbe187093414 | Fix broken merge | [
{
"path": "compiler/rustc_codegen_cranelift/src/abi/mod.rs",
"patch": "@@ -58,9 +58,6 @@ pub(crate) fn conv_to_call_conv(\n // Cranelift doesn't currently have anything for this.\n CanonAbi::RustPreserveNone => default_call_conv,\n \n- // Cranelift doesn't currently have anything for ... | 2026-02-18T15:10:37 |
golang/go | fcb985085925e1d89511ef7523215a2f71cfb891 | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | net/http: reduce allocs in CrossOriginProtection.Check
Rather than repeatedly creating error values on
CrossOriginProtection.Check's unhappy paths, return non-exported and
effectively constant error variables.
For #73626.
Change-Id: Ibaa036c29417071b3601b8d200ab0902359d1bb9
GitHub-Last-Rev: e704d63cd63665845d544796e... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -136,7 +136,7 @@ func (c *CrossOriginProtection) Check(req *Request) error {\n \t\tif c.isRequestExempt(req) {\n \t\t\treturn nil\n \t\t}\n-\t\treturn errors.New(\"cross-origin request detected from Sec-Fetch-Site header\")\n+\t\treturn errCrossOriginRequest\n ... | 2025-06-23T16:19:19 |
vercel/next.js | 43d4532a32f8b92aa0efcad2867f8f38a9f70eda | c071e85277cfaf49dc3172797941cdc6b8012d74 | docs: clarify the location of middleware.ts (#83056)
<!-- 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": "docs/01-app/01-getting-started/15-route-handlers-and-middleware.mdx",
"patch": "@@ -164,7 +164,7 @@ Using fetch with `options.cache`, `options.next.revalidate`, or `options.next.ta\n \n ### Convention\n \n-Use the file `middleware.ts` (or `.js`) in the root of your project to define Middleware. F... | 2025-08-27T08:13:06 |
electron/electron | c2c64d27fd2e96064b648128967d25436fb04de1 | d5c658545ac8580cf5e64790a506f615adf5cd18 | ci: fix missing inputs for release project board automation (#40726) | [
{
"path": ".github/workflows/branch-created.yml",
"patch": "@@ -116,8 +116,10 @@ jobs:\n id: find-prev-release-board\n with:\n title: ${{ steps.generate-project-metadata.outputs.prev-prev-major }}-x-y\n+ token: ${{ steps.generate-token.outputs.token }}\n - name: Clos... | 2024-01-10T12:25:11 |
facebook/react | d7d82e7bee33dbfbc4ef5aedcced57fa628b8b2a | 4575c8a5f6cb2bc006d586a1a0c025d677a62c99 | Correct eslint-plugin-react-compiler dependencies
Correct eslint-plugin-react-compiler dependencies
- The eslint plugin doesn't actually depend on the babel plugin as it compiles
in the dependencies. - `zod` and `zod-validation-error` were missing, but
required to run the plugin. - Update to the `hermes-parser` d... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/package.json",
"patch": "@@ -9,8 +9,9 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n- \"babel-plugin-react-forget\": \"*\",\n- \"hermes-parser\": \"^0.19.1\"\n+ ... | 2024-03-22T21:03:30 |
rust-lang/rust | b0c4cbaa69f9282a29439309f143c6d36b00cdc3 | e299e18e546bee90c64eba55f4276cd62633b4c0 | Fix stale metadata output comment in compile-test
DiagnosticCollector currently writes util/gh-pages/index.html, but the
doc comment still said util/gh-pages/lints.json.
The drift came from the switch to HTML generation in b522e7a94
("Generate lint list in HTML directly instead of JS"), which changed
the output fi... | [
{
"path": "tests/compile-test.rs",
"patch": "@@ -466,7 +466,7 @@ enum DiagnosticOrMessage {\n }\n \n /// Collects applicabilities from the diagnostics produced for each UI test, producing the\n-/// `util/gh-pages/lints.json` file used by <https://rust-lang.github.io/rust-clippy/>\n+/// `util/gh-pages/index.... | 2026-02-18T14:54:28 |
golang/go | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | 62deaf4fb839a6e152fc832c2c71325215e55831 | encoding/json/v2: support ISO 8601 durations
Based on the discussion in #71631, it is hotly contested
whether the default JSON representation for a Go time.Duration
should be the time.Duration.String format or
a particular profile of ISO 8601.
Regardless of the default, it seems clear that we should
at least support I... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -147,17 +147,23 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n // If the format matches one of the format constants declared\n // in the time package (e.g., RFC1123), then that format is used.\n // If the format is ... | 2025-06-19T01:35:36 |
nodejs/node | d35cde624f5001e5c09b0bb75b3d34b94a859e4e | bdc266269cec8832bc39b098830ff0065a76a532 | util: add sourcemap support to getCallSites
PR-URL: https://github.com/nodejs/node/pull/55589
Fixes: https://github.com/nodejs/node/issues/55109
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3899,7 +3899,7 @@ The `util.getCallSite` API has been removed. Please use [`util.getCallSites()`][\n [`url.parse()`]: url.md#urlparseurlstring-parsequerystring-slashesdenotehost\n [`url.resolve()`]: url.md#urlresolvefrom-to\n [`util._extend()`]: util.md#uti... | 2024-11-04T16:06:47 |
vercel/next.js | 71d1e9728d660cc52d7903c1e1fc063cede892e9 | 2acaecfd3cd539c55ec02c44e9d6de3fa5ff1959 | docs: next lint post 15.5 release adjustments (#82933)
Update installation guide, now we have Biome as an option to
create-next-app, and next lint is deprecated.
Also addresses: https://github.com/vercel/next.js/issues/82916
---------
Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
Co-au... | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -63,7 +63,7 @@ On installation, you'll see the following prompts:\n ```txt filename=\"Terminal\"\n What is your project named? my-app\n Would you like to use TypeScript? No / Yes\n-Would you like to use ESLint? No / Yes\n+Which lin... | 2025-08-26T22:33:00 |
electron/electron | d5c658545ac8580cf5e64790a506f615adf5cd18 | ebf9a49fba73875bee1712b767db40f8b0a4f488 | chore: fix content tracing flake (#40939)
* chore: fix contentTracing test
* cry | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1631,6 +1631,9 @@ commands:\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)\"\n (cd electron && (circleci tests glob \"spec/*-spec.ts\" | xargs -I@ -P4 bash -c \"echo $(pwd)/@\" | circleci tests run --command=\"xargs... | 2024-01-10T12:13:36 |
facebook/react | 4575c8a5f6cb2bc006d586a1a0c025d677a62c99 | fb0f7e5c39c01ee726205746439ecd7a1ceedb75 | Detect hoisting where the reference is a reassignment
Our logic to detect hoisting relies on Babel's `isReferencedIdentifier()` to
determine whether a reference to an identifier is a reference or a declaration.
The idea is that we want to find references to variables that may be hoistable,
before the declaration —... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -366,7 +366,12 @@ function lowerStatement(\n ArrowFunctionExpression: withFunctionContext,\n ObjectMethod: withFunctionContext,\n Identifier(id: NodePath<t.Identifier>) {\n- if ... | 2024-03-22T20:49:50 |
golang/go | 62deaf4fb839a6e152fc832c2c71325215e55831 | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | doc: fix links to runtime Environment Variables
Change-Id: I9e8ecc5e4f4cba0b09008b2b0d9d3f8842687ec3
GitHub-Last-Rev: e0ddaaed3875761a1ff3692af49c0ec2622a5e20
GitHub-Pull-Request: golang/go#74180
Reviewed-on: https://go-review.googlesource.com/c/go/+/681516
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-... | [
{
"path": "doc/godebug.md",
"patch": "@@ -187,7 +187,7 @@ Go 1.25 switched to SHA-256 to fill in missing SubjectKeyId in\n crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n \n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n-and so removed t... | 2025-06-16T22:15:04 |
nodejs/node | bdc266269cec8832bc39b098830ff0065a76a532 | 32ff100bfa0c0f4ff72fd2228bc64b1d7ec62557 | sqlite: improve error handling using MaybeLocal
As per James' suggestion, consistently use MaybeLocal and avoid Check()
and ToLocalChecked() entirely.
Refs: https://github.com/nodejs/node/pull/54687
PR-URL: https://github.com/nodejs/node/pull/55571
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -56,40 +56,56 @@ using v8::Value;\n } \\\n } while (0)\n \n-inline Local<Object> CreateSQLiteError(Isolate* isolate, const char* message) {\n- Local<String> js_msg = String::NewFromUt... | 2024-11-04T12:51:19 |
facebook/react | f09e1599d631051a559974578a6d4c06effd95eb | 5c65b27587c0507d66a84e055de948fc62d471d4 | Fix test after merge conflict (#28616)
Something went wrong when rebasing #28491 and renaming the hook. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -1324,7 +1324,7 @@ describe('ReactDOMForm', () => {\n \n let dispatch;\n function App() {\n- const [state, _dispatch, isPending] = useFormState(action, 0);\n+ const [state, _dispatch, isPending] = useActionStat... | 2024-03-22T18:05:55 |
electron/electron | 3afb012ad178922ef9a642d2fe0af9851c2196eb | c184b93fc52f578b559511ec059bab4098d1404c | build: add infra for reclient support (#40850)
* chore: add patch to always set macos platform for x-build
* build: add infra for reclient support
* build: override reclient version
* build: use RBE in CI
* chore: hardcode reclient fix version
* build: lower process count on macOS
* build: use large ... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -335,46 +335,26 @@ step-setup-env-for-build: &step-setup-env-for-build\n # To find `gn` executable.\n echo 'export CHROMIUM_BUILDTOOLS_PATH=\"'\"$PWD\"'/src/buildtools\"' >> $BASH_ENV\n \n-step-setup-goma-for-build: &step-setup-goma-for-build\n... | 2024-01-09T21:19:42 |
vercel/next.js | c9d4a97433c5417fcbbf78dc265f12ff6292d365 | b352f9bb889c3a894290c62fd48ef16d1af4ee3e | revert: add ?dpl to fonts in `/_next/static/media` (#83062)
This change is causing double font loading due to CSS loading without a
`dpl` while they are preloaded with a `dpl` param. Reverting until a
proper fix can be implemented.
Reverts:
- #82384
- #82488 | [
{
"path": "packages/font/src/google/loader.test.ts",
"patch": "@@ -124,7 +124,6 @@ describe('next/font/google loader', () => {\n mockFetchResource.mockResolvedValue(Buffer.from('OK'))\n const { css } = await nextFontGoogleFontLoader({\n functionName,\n- deploymentId: undef... | 2025-08-26T21:34:57 |
rust-lang/rust | b7d95aab1606edcec11255fb60fd573d3ce75b5c | e1fa34ec2fba5ee3488fe608d33521fbd8463695 | internal: Add flycheck test for custom check command and debounce
This adds an integration test for flycheck with a custom check
command.
On its own, the test actually fails due to an issue with the debounce
logic. We would trigger a flycheck when the workspace is loaded, but
the check command references $saved_file ... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -559,17 +559,37 @@ impl FlycheckActor {\n self.cancel_check_process();\n }\n Event::RequestStateChange(StateChange::Restart {\n- generation,\n- ... | 2026-02-17T18:26:39 |
golang/go | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | ed7815726db4a0eb904d7cae2532cde48348d7ff | encoding/json/v2: reject unquoted dash as a JSON field name
In this blog:
https://blog.trailofbits.com/2025/06/17/unexpected-security-footguns-in-gos-parsers/
the concern was raised that whenever "-" is combined with other options,
the "-" is intepreted as as a name, rather than an ignored field,
which may go contr... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1189,6 +1189,27 @@ var unmarshalTests = []struct {\n \t\tout: []int{1, 2, 0, 4, 5},\n \t\terr: &UnmarshalTypeError{Value: \"bool\", Type: reflect.TypeFor[int](), Offset: 9},\n \t},\n+\n+\t{\n+\t\tCaseName: Name(\"DashComma\"),\n+\t\tin: ... | 2025-06-22T04:27:09 |
nodejs/node | 794cb51112f81281c11a1787194012d2e798c391 | 8dd0819ff38bb0bafac0957f7dbb35fe4ae662de | tools: fix root certificate updater
Determine the NSS version from actual Firefox releases, instead of
attempting to parse a wiki page (which is sensitive to formatting
changes and relies on the page being up to date).
PR-URL: https://github.com/nodejs/node/pull/55681
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
R... | [
{
"path": "tools/dep_updaters/update-root-certs.mjs",
"patch": "@@ -8,109 +8,78 @@ import { pipeline } from 'node:stream/promises';\n import { fileURLToPath } from 'node:url';\n import { parseArgs } from 'node:util';\n \n-// Constants for NSS release metadata.\n-const kNSSVersion = 'version';\n-const kNSSDa... | 2024-11-01T16:36:45 |
electron/electron | c184b93fc52f578b559511ec059bab4098d1404c | 7b4d490bfed9bf1b14b160132ae45c03eb946496 | fix: crash using `powerMonitor` before ready event (#40888)
* fix: crash using powerMonitor before ready event
* refactor: continue using DBusBluezManagerWrapperLinux | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -81,6 +81,7 @@\n #include \"base/environment.h\"\n #include \"chrome/browser/ui/views/dark_mode_manager_linux.h\"\n #include \"device/bluetooth/bluetooth_adapter_factory.h\"\n+#include \"device/bluetooth/dbus/bluez_dbus_manager.h\"\n #in... | 2024-01-09T08:41:42 |
vercel/next.js | b352f9bb889c3a894290c62fd48ef16d1af4ee3e | 7040dd6e85a7a3b7af67beabe10f19b3727d7f84 | fix: instead of throwing a warning for "noUnknownAtRules", disable the rule entirely (#83059)
<!-- 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... | [
{
"path": "packages/create-next-app/templates/app-tw-empty/js/biome.json",
"patch": "@@ -19,7 +19,7 @@\n \"rules\": {\n \"recommended\": true,\n \"suspicious\": {\n- \"noUnknownAtRules\": \"warn\"\n+ \"noUnknownAtRules\": \"off\"\n }\n },\n \"domains\": {",
"a... | 2025-08-26T20:54:52 |
facebook/react | 5c65b27587c0507d66a84e055de948fc62d471d4 | fabd6d3a64aa20aca940142a29a14a82d1cefd31 | Add `React.useActionState` (#28491)
## Overview
_Depends on https://github.com/facebook/react/pull/28514_
This PR adds a new React hook called `useActionState` to replace and
improve the ReactDOM `useFormState` hook.
## Motivation
This hook intends to fix some of the confusion and limitations of the
`use... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -106,6 +106,10 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n // This type check is for Flow only.\n Dispatcher.useFormState((s: mixed, p: mixed) => s, null);\n }\n+ if (typeof Dispatche... | 2024-03-22T17:03:44 |
golang/go | ed7815726db4a0eb904d7cae2532cde48348d7ff | f866958246556ec609b81d31376a39efe9d51a51 | encoding/json/v2: report error on time.Duration without explicit format
The default representation of a time.Duration is still undecided.
In order to keep the future open, report an error on a time.Duration
without an explicit format flag provided.
Updates #71631
Change-Id: I08248404ff6551723851417c8188a13f53c61937
... | [
{
"path": "src/encoding/json/v2/arshal_test.go",
"patch": "@@ -365,7 +365,7 @@ type (\n \t\tInterface any `json:\",omitzero,format:invalid\"`\n \t}\n \tstructDurationFormat struct {\n-\t\tD1 time.Duration\n+\t\tD1 time.Duration `json:\",format:units\"` // TODO(https://go.dev/issue/71631): Re... | 2025-06-17T19:34:22 |
nodejs/node | c2ff449e3f8fd39796cdb8d9496c47854ea1921d | c1b3531680ab41f87d869e362c80396ab9088299 | crypto: fix `RSA_PKCS1_PADDING` error message
The ability to revert the fix for CVE-2023-46809 was only added to
Node.js 18.x, 20.x and 21.x as, per policy, security reverts are only
added to the existing supported release lines at the time of the fix.
The error message thrown when `RSA_PKCS1_PADDING` is used on `mai... | [
{
"path": "src/crypto/crypto_cipher.cc",
"patch": "@@ -1092,8 +1092,7 @@ void PublicKeyCipher::Cipher(const FunctionCallbackInfo<Value>& args) {\n if (rsa_pkcs1_implicit_rejection <= 0) {\n return THROW_ERR_INVALID_ARG_VALUE(\n env,\n- \"RSA_PKCS1_PADDING is no longer supported ... | 2024-11-03T01:01:48 |
electron/electron | 7b4d490bfed9bf1b14b160132ae45c03eb946496 | 37630a61282af710a1efc4828e7c2e907485a104 | perf: use fixed-size arrays for the font cache (#40898)
refactor: use fixed-size arrays for the font cache
Since we know at compile time which [family x script] combos we want to
cache, we can hold the cache in fixed std::arrays instead of in nested
std::unordered_maps. | [
{
"path": "shell/browser/font_defaults.cc",
"patch": "@@ -4,11 +4,12 @@\n \n #include \"shell/browser/font_defaults.h\"\n \n+#include <array>\n #include <string>\n-#include <unordered_map>\n+#include <string_view>\n \n #include \"base/stl_util.h\"\n-#include \"base/strings/stringprintf.h\"\n+#include \"base... | 2024-01-08T09:31:02 |
facebook/react | f6472522da8a756e300ca6914d081b8ea82f4646 | e047db8d037f63884a41575ea733c27fe8bd1f14 | [repro] Fixture for incorrect lowering for break (label within loop)
---
unlabeled breaks must goto the nearest iteration or switch boundary (not labeled
block)
---
Sprout fails with the following:
```
FAIL: bug-unlabeled-break-within-label-loop
>> Unexpected error during test:
Found differences in eva... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-unlabeled-break-within-label-loop.expect.md",
"patch": "@@ -0,0 +1,62 @@\n+\n+## Input\n+\n+```javascript\n+function useHook(end) {\n+ const log = [];\n+ for (let i = 0; i < end + 1; i++) {\n+ log.push(`${i} @A`)... | 2024-03-22T20:14:35 |
vercel/next.js | a67357c892727322e1e6f8691d33f7f9de3a075d | c09c5f9e278e46b0923c96ef5cf8a6bd9edbaf80 | [turbopack] Ammend the error message for module not found errors (#83011)
Just add 'file not found' to the error message. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -1826,7 +1826,7 @@ async fn process_parse_result(\n }\n ParseResult::NotFound => {\n let path = ident.path().to_string().await?;\n- let msg = format!(\"Could not ... | 2025-08-26T17:09:13 |
golang/go | f77a0aa6b6d90742932f0bf29d2f94459597331a | 4506796a6ebee9799dd6272c0fb12c7b993631e2 | internal/trace: improve gc-stress test
The gc-stress test is useful for trying to exercise GC-related trace
events by producing a lot of them in many different situations.
Unfortunately this test is flaky, because allocating in a loop can
easily out-run the GC when it's trying to preempt the allocating
goroutine.
It'... | [
{
"path": "src/internal/trace/testdata/testprog/gc-stress.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"log\"\n \t\"os\"\n \t\"runtime\"\n+\t\"runtime/debug\"\n \t\"runtime/trace\"\n \t\"time\"\n )\n@@ -36,11 +37,25 @@ func makeTree(depth int) *node {\n \t}\n }\n \n+func initTree(n *node) {\n+\tif n == ni... | 2025-06-23T20:14:18 |
facebook/react | fee786a057774ab687aff765345dd86fce534ab2 | 72e02a8350309c6228ec1d9f21a5b09b84456fb8 | [Fizz] Recover from errors thrown by progressive enhancement form generation (#28611)
This a follow up to #28564. It's alternative to #28609 which takes
#28610 into account.
It used to be possible to return JSX from an action with
`useActionState`.
```js
async function action(errors, payload) {
"use server... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -1045,14 +1045,43 @@ function pushAdditionalFormField(\n \n function pushAdditionalFormFields(\n target: Array<Chunk | PrecomputedChunk>,\n- formData: null | FormData,\n+ formData: void | null | FormData,\n ) {\n- if... | 2024-03-21T23:51:38 |
nodejs/node | e124b0ff7d926c14575fda90a2bfc4852670f81b | 7f6ea837887a259571f4d2b8c2adcd7e688887f0 | doc: broken `PerformanceObserver` code sample
The code sample at the top of the "Performance measurements API"
section of the docs does not run.
The code in question:
```js
const { PerformanceObserver, performance } = require('node:perf_hooks');
const obs = new PerformanceObserver((items) => {
console.log(items.g... | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -22,18 +22,18 @@ const { PerformanceObserver, performance } = require('node:perf_hooks');\n \n const obs = new PerformanceObserver((items) => {\n console.log(items.getEntries()[0].duration);\n- performance.clearMarks();\n });\n obs.observe({ type: 'measure'... | 2024-11-02T17:05:24 |
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.