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
nodejs/node
acd698a5c83d73901d4da47ba9cd04f930b8ef50
ccd4faf4bfc869f63d2128b69d3e9308d832acd9
doc: fix the return type of outgoingMessage.setHeaders() The actual implementation returns `outgoingMessage` itself, but not exactly `http.ServerResponse`. Refs: https://github.com/nodejs/node/blob/20d8b85d3493bec944de541a896e0165dd356345/lib/_http_outgoing.js#L712-L751 PR-URL: https://github.com/nodejs/node/pull/552...
[ { "path": "doc/api/http.md", "patch": "@@ -3289,9 +3289,7 @@ added:\n -->\n \n * `headers` {Headers|Map}\n-* Returns: {http.ServerResponse}\n-\n-Returns the response object.\n+* Returns: {this}\n \n Sets multiple header values for implicit headers.\n `headers` must be an instance of [`Headers`][] or `Map`,\...
2024-10-11T13:03:35
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
vercel/next.js
3596c0334303f464e201d74941a49d2fbe650ecf
1029d059a816c2fda85f154daec4561ec0d9c98b
Turbopack: fix race condition in unit test (#82989)
[ { "path": "turbopack/crates/turbo-tasks-backend/tests/trait_ref_cell.rs", "patch": "@@ -2,7 +2,7 @@\n #![feature(arbitrary_self_types_pointers)]\n #![allow(clippy::needless_return)] // tokio macro-generated code doesn't respect this\n \n-use std::sync::Mutex;\n+use std::{collections::HashSet, mem::take, syn...
2025-08-25T12:55:52
electron/electron
be4e4ff11b31ef2d6caf322eae947df4bdaf1a16
a208d45aca3b19fb661c630880451e26d46c92a6
fix: make grant_file_protocol_extra_privileges fuse also block CORS fetches (#40801)
[ { "path": "build/fuses/build.py", "patch": "@@ -32,6 +32,13 @@\n \n TEMPLATE_CC = \"\"\"\n #include \"electron/fuses.h\"\n+#include \"base/dcheck_is_on.h\"\n+\n+#if DCHECK_IS_ON()\n+#include \"base/command_line.h\"\n+#include \"base/strings/string_util.h\"\n+#include <string>\n+#endif\n \n namespace electro...
2024-01-02T21:06:33
facebook/react
6948639df67235e3f79755f2373ff5f913e86637
67ea821e5fe6ddf3c734ec08ccf3630de9ef73ae
[publish] Add script to publish packages Adds a script to publish babel-plugin-react-compiler, eslint-plugin-react-compiler, and react-compiler-healthcheck to npm. Instructions are in a comment in scripts/publish.js, please read carefully before using this script! Test plan: ``` $ yarn npm:publish yarn run v1.22.1...
[ { "path": "compiler/package.json", "patch": "@@ -26,7 +26,8 @@\n \"test\": \"yarn workspaces run test\",\n \"snap\": \"yarn workspace babel-plugin-react-compiler run snap\",\n \"snap:build\": \"yarn workspace snap run build\",\n- \"postinstall\": \"perl -p -i -e 's/react\\\\.element/react.tra...
2024-05-14T15:01:17
nodejs/node
f98d9c125cc4216266cf9a15e928107ca32c9c4b
27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1
process: fix `process.features.typescript` when Amaro is unavailable PR-URL: https://github.com/nodejs/node/pull/55323 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "lib/internal/bootstrap/node.js", "patch": "@@ -315,7 +315,7 @@ ObjectDefineProperty(process, 'features', {\n const { emitWarning, emitWarningSync } = require('internal/process/warning');\n const { getOptionValue } = require('internal/options');\n \n-let kTypeStrippingMode = null;\n+let kTypeStrip...
2024-10-11T11:27:16
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
67ea821e5fe6ddf3c734ec08ccf3630de9ef73ae
5a842dbfb15975597ce51a304bce5a2cf070399f
[publish] Fix `files` field for packages, invalid version range The [`files` field](https://docs.npmjs.com/cli/v10/commands/npm-publish#files-included-in-package) controls what files get included in the published package. This PR specifies the `files` field on our publishable packages to only include the `dist` direc...
[ { "path": "compiler/packages/babel-plugin-react-compiler/package.json", "patch": "@@ -5,7 +5,7 @@\n \"main\": \"dist/index.js\",\n \"license\": \"MIT\",\n \"files\": [\n- \"src\"\n+ \"dist\"\n ],\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",", ...
2024-05-14T15:01:16
vercel/next.js
1029d059a816c2fda85f154daec4561ec0d9c98b
d58c9df9ef844162ccabb608dac83524beeb1376
Update 07-fetching-data.mdx (#82862) Promise.all or any of the other 3 static concurrency methods don't actually run requests in parallel, rather they execute concurrently. [Parallelism vs Concurrency](https://wiki.haskell.org/Parallelism_vs._Concurrency) [Promise Concurrency](https://developer.mozilla.org/en-US/docs...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -504,7 +504,7 @@ export default async function Page({ params }) {\n }\n ```\n \n-You can initiate requests in parallel by defining them outside the components that use the data, and resolving them together, for example, with [`Pro...
2025-08-25T11:12:22
electron/electron
a208d45aca3b19fb661c630880451e26d46c92a6
7995c56fb0b20b254b379a43e1435a81695a3c7d
fix: titlebar incorrectly displayed on frameless windows (#40749) * fix: titlebar incorrectly displayed on frameless windows * fix: enable transparency for Mica windows * Refactor ShouldWindowContentsBeTransparent --------- Co-authored-by: clavin <clavin@electronjs.org>
[ { "path": "patches/chromium/fix_activate_background_material_on_windows.patch", "patch": "@@ -1,19 +1,23 @@\n From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n From: clavin <clavin@electronjs.org>\n-Date: Wed, 30 Aug 2023 18:15:36 -0700\n+Date: Mon, 11 Dec 2023 20:43:34 -0300\n Subjec...
2024-01-02T18:59:47
nodejs/node
27f8d9e9d20e33eeaf7d36627ee4c629b3b15aa1
82dab76d63e6f3592e15e49d7dba2367044d4869
build,win: enable pch for clang-cl Fixes: https://github.com/nodejs/node/issues/55208 PR-URL: https://github.com/nodejs/node/pull/55249 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "node.gypi", "patch": "@@ -65,15 +65,11 @@\n 'NODE_PLATFORM=\"win32\"',\n '_UNICODE=1',\n ],\n- 'conditions': [\n- ['clang==0', {\n- 'msvs_precompiled_header': 'tools/msvs/pch/node_pch.h',\n- 'msvs_precompiled_source': 'tools/msvs/pch/node_pch.cc...
2024-10-11T10:28:55
facebook/react
5a842dbfb15975597ce51a304bce5a2cf070399f
b956024f3d10d82a3f1b9a5186727d8275f42ab4
Fix healthcheck package.json bin field ghstack-source-id: 28045c6edb342dea125ea8fcea564ce90626f21d Pull Request resolved: https://github.com/facebook/react-forget/pull/2964
[ { "path": "compiler/packages/react-compiler-healthcheck/package.json", "patch": "@@ -2,7 +2,9 @@\n \"name\": \"react-compiler-healthcheck\",\n \"version\": \"0.0.0\",\n \"description\": \"Health check script to test violations of the rules of react.\",\n- \"bin\": \"dist/index.js\",\n+ \"bin\": {\n+...
2024-05-14T15:01:16
vercel/next.js
85ef3638b3f546bb9117e8cd742771388303af0e
d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9
Turbopack: don't treat metadata routes as RSC (#82911) Metadata routes are just `route.ts`\-s in diguise. Treat them the same regarding the layer (`app-route`) and whether to emit client reference/server actions manifests for them (= don't). This fixes a panic: ``` thread 'tokio-runtime-worker' panicked at crates/ne...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1134,8 +1134,8 @@ impl AppEndpoint {\n next_config: Vc<NextConfig>,\n ) -> Result<Vc<AppEntry>> {\n Ok(get_app_metadata_route_entry(\n- self.app_project.rsc_module_context(),\n- self.app_project.edge_rsc_module_c...
2025-08-25T09:56:47
electron/electron
7995c56fb0b20b254b379a43e1435a81695a3c7d
ab2a4fd836d539194bc5cde5f0d665eddeb6a134
refactor: use a FixedFlatMap for v8 converting ui::MenuSourceType (#40786)
[ { "path": "shell/common/gin_converters/content_converter.cc", "patch": "@@ -69,80 +69,39 @@ namespace {\n \n namespace gin {\n \n+static constexpr auto MenuSourceTypes =\n+ base::MakeFixedFlatMap<base::StringPiece, ui::MenuSourceType>({\n+ {\"adjustSelection\", ui::MENU_SOURCE_ADJUST_SELECTION},\n...
2023-12-20T23:44:17
nodejs/node
82dab76d63e6f3592e15e49d7dba2367044d4869
9f9069d3130dc336a86271ca4e3c36e9b87cce90
test: fix tests when Amaro is unavailable Fix two tests that fail when `node` is configured `--without-amaro`. PR-URL: https://github.com/nodejs/node/pull/55320 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail....
[ { "path": "test/es-module/test-esm-loader-entry-url.mjs", "patch": "@@ -76,7 +76,7 @@ describe('--entry-url', { concurrency: true }, () => {\n );\n });\n \n- it('should support loading TypeScript URLs', async () => {\n+ it('should support loading TypeScript URLs', { skip: !process.config.variables.n...
2024-10-11T05:27:54
facebook/react
b956024f3d10d82a3f1b9a5186727d8275f42ab4
ce0c08eaad59122422a98b0103e96aa15ff29166
Fix Jest tests ghstack-source-id: e2507b7285bb52ee02d2cece35aa16eb0bc0baa5 Pull Request resolved: https://github.com/facebook/react-forget/pull/2963
[ { "path": "compiler/packages/babel-plugin-react-compiler/scripts/jest/makeTransform.ts", "patch": "@@ -176,7 +176,15 @@ function ReactForgetFunctionTransform() {\n }\n }\n \n- const compiled = compile(fn, forgetOptions, \"Other\", null, null);\n+ const compiled = compile(\n+ f...
2024-05-13T21:09:44
electron/electron
95d094d75bddb99c83d2902fbc9a4335632a41cf
ba976799012d33a2ddfe40f8692029dc37e99115
fix: add partition alloc check for MacOS 13/14+ (#40757)
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injection_tracker.patch\n fix_restore_original_resize_performance_on_macos.patch\n feat_allow_code_cache_in_custom_schemes.patch\n+e...
2023-12-14T21:47:31
vercel/next.js
d6794f43c19ef3d64ac7bcc7bbe47433c95d42f9
d89f14dda3f77ec1afc48e045190afc17fbb2ae5
Turbopack: throw large static metadata error earlier (#82939) Throw it during bundling, as opposed to at runtime. This circumnavigates a panic in Turbopack when inlining a 40mb string into a JS module.
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -5,12 +5,16 @@\n use anyhow::{Ok, Result, bail};\n use base64::{display::Base64Display, engine::general_purpose::STANDARD};\n use indoc::{formatdoc, indoc};\n-use turbo_rcstr::rcstr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_task...
2025-08-25T09:09:45
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
nodejs/node
9f9069d3130dc336a86271ca4e3c36e9b87cce90
7a3027d5630cb133c80301c8e0a88fea076b05b7
fs: fix linter issue PR-URL: https://github.com/nodejs/node/pull/55353 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -723,7 +723,7 @@ const validatePath = hideStackFrames((path, propName = 'path', options) => {\n \n const pathIsString = typeof path === 'string';\n const pathIsUint8Array = isUint8Array(path);\n- if (options && options.expectFile) {\n+ if (options?.ex...
2024-10-10T22:50:19
facebook/react
78da5becaf1e705d0a4ae3fe84596f95d9202045
76b7331b0d817bd4b304d31cc049cbce6ba3b3a2
[healthcheck] Remove console.error ghstack-source-id: c06d44960cfb831e3dc8162858977c4ef619309d Pull Request resolved: https://github.com/facebook/react-forget/pull/2958
[ { "path": "compiler/packages/react-compiler-healthcheck/src/checks/reactCompiler.ts", "patch": "@@ -99,9 +99,7 @@ function compile(sourceCode: string, filename: string) {\n \"typescript\",\n COMPILER_OPTIONS\n );\n- } catch (e) {\n- console.error(e);\n- }\n+ } catch {}\n }\n \n const J...
2024-05-11T04:20:00
electron/electron
a94fb2cb5da84edcddfa58efaf407fd1abca91ca
80d85c0e8ec6675052a945d490c3b2b763316c0c
fix: don't reject `loadURL()` promise from `did-fail-load` - use `did-finish-load` instead (#40661)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -333,24 +333,31 @@ WebContents.prototype.loadFile = function (filePath, options = {}) {\n }));\n };\n \n+type LoadError = { errorCode: number, errorDescription: string, url: string };\n+\n WebContents.prototype.loadURL = function (url, options) {\n...
2023-12-12T19:45:14
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
nodejs/node
4988bb549e79a6b92391b4ff529f675da32c0687
fdc23b2f6bd4d0ed4ecfa8a36ca948f7bf70a764
tools: enforce ordering of error codes in `errors.md` PR-URL: https://github.com/nodejs/node/pull/55324 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -956,12 +956,6 @@ added: v15.0.0\n \n An invalid JSON Web Key was provided.\n \n-<a id=\"ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE\"></a>\n-\n-### `ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE`\n-\n-The given crypto key object's type is invalid for the attempted operation.\n-\n <a...
2024-10-10T17:18:20
facebook/react
9a6ce3379d6390cf4b952e4ce261f9a975ffd8eb
db34843c424d55da7b39a35b8043bb49a1da9515
[healthcheck] Fix build runReactBabelPluginReactCompiler brings in fbt which is unnecessary for OSS so I removed it. Also makes it so healthckeck is installed as an executable ghstack-source-id: ec6c76f8be01483d4ca75d9d74037b3966fccbdb Pull Request resolved: https://github.com/facebook/react-forget/pull/2955
[ { "path": "compiler/packages/healthcheck/package.json", "patch": "@@ -2,13 +2,16 @@\n \"name\": \"healthcheck\",\n \"version\": \"0.0.0\",\n \"description\": \"Health check script to test violations of the rules of react.\",\n- \"main\": \"dist/index.js\",\n+ \"bin\": \"dist/index.js\",\n \"script...
2024-05-11T04:19:59
electron/electron
80d85c0e8ec6675052a945d490c3b2b763316c0c
66b2f697ea6ad16eced011383b982d716c32e83c
fix: incorrectly mapped toggleDevTools in custom menu fiddle (#40703)
[ { "path": "docs/fiddles/menus/customize-menus/main.js", "patch": "@@ -102,7 +102,7 @@ const template = [\n })(),\n click: (item, focusedWindow) => {\n if (focusedWindow) {\n- focusedWindow.toggleDevTools()\n+ focusedWindow.webContents.toggleDevTools()\n ...
2023-12-12T19:36:34
vercel/next.js
d8d3b2e07e51d0962c9e82adb61c638b3d903d58
94f422e480ac20de0abb9f1b860ca5f8a62c90e4
Unhook WebSocket (#82931) Currently, the WebSocket that's used for `next dev` is created in a React hook inside of the `HotReload` component, which is (transitively) rendered by the `ServerRoot` component, but only after the initial RSC response is processed, at least partially. This creates a problem when integrat...
[ { "path": "packages/next/errors.json", "patch": "@@ -780,5 +780,9 @@\n \"779\": \"Route %s used \\\"searchParams\\\" inside \\\"use cache\\\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\\"searchParams\\\" outside of...
2025-08-25T08:51:03
nodejs/node
fdc23b2f6bd4d0ed4ecfa8a36ca948f7bf70a764
d62075566125455dafa2e84cd41373676cb7e158
test: use more informative errors in `test-runner-cli` PR-URL: https://github.com/nodejs/node/pull/55321 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me>
[ { "path": "test/parallel/test-runner-cli.js", "patch": "@@ -67,8 +67,6 @@ for (const isolation of ['none', 'process']) {\n `--experimental-${type}-types`, `--experimental-test-isolation=${isolation}`];\n const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'matchin...
2024-10-10T16:11:00
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
facebook/react
c58142ba35566536999cddfe83f241918856b1d6
6b23c25ff93dafce938aa94910b9a94df33bc850
ReAnimated -> Reanimated Fixes a small typo by request ghstack-source-id: 00889150a952308f00d89472c864726222e835d3 Pull Request resolved: https://github.com/facebook/react-forget/pull/2952
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Reanimated.ts", "patch": "@@ -28,7 +28,7 @@ export function injectReanimatedFlag(options: PluginOptions): PluginOptions {\n ...options,\n environment: {\n ...options.environment,\n- enableCustomTypeDefinitionForReAnim...
2024-05-11T04:19:58
electron/electron
83f15bd957b19f753a12a806f6a4225aea371469
a6417cc2657b11a122620d0d32da3c84b1faa24e
chore: cleanup tests creating crashpad handler in the test runner process (#40668) * chore: cleanup tests creating crashpad handler in the test runner process * ci: logging * ci: enable logging * ci: more logging * ci: run all tests * ci: more logging * ci: increase timeout * Revert "ci: increase ...
[ { "path": "spec/api-crash-reporter-spec.ts", "patch": "@@ -5,7 +5,6 @@ import * as Busboy from 'busboy';\n import * as path from 'node:path';\n import { ifdescribe, ifit, defer, startRemoteControlApp, repeatedly, listen } from './lib/spec-helpers';\n import { app } from 'electron/main';\n-import { crashRepo...
2023-12-12T10:38:42
vercel/next.js
8d3d827552fdc879dccbd5453ed0ef439b02eff5
3e0247431e59f6796f8a1c25a39dc17c78f979bc
fix: change "noUnknownAtRules" to "warn" for Biome (#82974) Temporary patch for #82826 to get Biome lint working with Tailwind until they release a version with the fix (expected soon). Note that this will still throw a warning, just not fail the build.
[ { "path": "packages/create-next-app/templates/app-tw-empty/js/biome.json", "patch": "@@ -17,7 +17,10 @@\n \"linter\": {\n \"enabled\": true,\n \"rules\": {\n- \"recommended\": true\n+ \"recommended\": true,\n+ \"suspicious\": {\n+ \"noUnknownAtRules\": \"warn\"\n+ }\n ...
2025-08-24T09:28:52
nodejs/node
00b2f07f9ddeb8ffd2fb2108b0ed9ffa81ea000d
4a3fffaf58c1f02b309f4ef51daffa173d7aeed5
fs,win: fix bug in paths with trailing slashes Fixes: https://github.com/nodejs/node/issues/17801 Refs: https://github.com/nodejs/node/pull/33831 PR-URL: https://github.com/nodejs/node/pull/54160 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/fs.js", "patch": "@@ -385,7 +385,11 @@ function readFile(path, options, callback) {\n const req = new FSReqCallback();\n req.context = context;\n req.oncomplete = readFileAfterOpen;\n- binding.open(getValidatedPath(path), flagsNumber, 0o666, req);\n+ binding.open(\n+ getValidatedPa...
2024-10-10T11:14:56
facebook/react
9d76c954cfe134d7f541c3e706e344e6845ba235
2c022b847ed2171c59d37db9f71b394e0082ae3f
[Flight] Error if a legacy React Element is attempted to be rendered (#29043) This errors on the client normally but in the case the `type` is a function - i.e. a Server Component - it wouldn't be transferred to error on the client so you end up with a worse error message. So this just implements the same check as ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -938,13 +938,29 @@ describe('ReactFlight', () => {\n });\n });\n \n+ // @gate renameElementSymbol\n it('should emit descriptions of errors in dev', async () => {\n const ClientErrorBoundary = clientReference(Error...
2024-05-10T13:37:42
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
4a3fffaf58c1f02b309f4ef51daffa173d7aeed5
31a37e777dcb137aa61e1692e4f3a701e81c36a0
doc: move `ERR_INVALID_PERFORMANCE_MARK` to legacy errors PR-URL: https://github.com/nodejs/node/pull/55247 Refs: https://github.com/nodejs/node/pull/14680 Refs: https://github.com/nodejs/node/pull/39297 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2003,13 +2003,6 @@ An invalid [`package.json`][] file failed parsing.\n The `package.json` [`\"exports\"`][] field contains an invalid target mapping\n value for the attempted module resolution.\n \n-<a id=\"ERR_INVALID_PERFORMANCE_MARK\"></a>\n-\n-### `ERR_INVAL...
2024-10-10T09:52:42
vercel/next.js
1400faa489e38f1fd97765944bb46fb0e5c75433
1fa24a41084da75145a33289602eddcf67def60b
Turbopack: bigger small value blocks (#82370) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### ...
[ { "path": "turbopack/crates/turbo-persistence/src/static_sorted_file_builder.rs", "patch": "@@ -18,16 +18,16 @@ use crate::{\n };\n \n /// The maximum number of entries that should go into a single key block\n-const MAX_KEY_BLOCK_ENTRIES: usize = 100 * 1024;\n+const MAX_KEY_BLOCK_ENTRIES: usize = MAX_KEY_BL...
2025-08-23T05:23:38
electron/electron
08a51f333902247be7ee7528f2192e3bf4c2c045
890a557eed6a6917e7854b76e5a691eff1f5e9ae
chore: bump chromium to 121.0.6159.0 (main) (#40632) * chore: bump chromium in DEPS to 121.0.6154.0 * chore: bump chromium in DEPS to 121.0.6155.0 * fix patches * chore: update patches * patch out reference to GetOcclusionTracker * un-flag PIPOcclusionTracker * chore: bump chromium in DEPS to 121.0.6...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6147.0',\n+ '121.0.6159.0',\n 'node_version':\n 'v20.10.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2023-12-11T20:58:26
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
31a37e777dcb137aa61e1692e4f3a701e81c36a0
e79ae1bf0c82489d80b5f3eb2bd9b089fdfafb36
module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX PR-URL: https://github.com/nodejs/node/pull/55316 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2094,6 +2094,18 @@ An element in the `iterable` provided to the [WHATWG][WHATWG URL API]\n represent a `[name, value]` tuple – that is, if an element is not iterable, or\n does not consist of exactly two elements.\n \n+<a id=\"ERR_INVALID_TYPESCRIPT_SYNTAX\"></a>...
2024-10-10T09:12:39
vercel/next.js
11c995310c038b4c96c3c1744ccb6738de5b6b1a
c9b8d7f7fb627931e9365af3439acd7e74445c81
fix: add path normalization to getRelativePath for Windows (#82918) See https://github.com/vercel/next.js/pull/82761#pullrequestreview-3130058419
[ { "path": "packages/next/src/server/lib/router-utils/route-types-utils.ts", "patch": "@@ -20,6 +20,7 @@ import {\n UNDERSCORE_GLOBAL_ERROR_ROUTE,\n UNDERSCORE_NOT_FOUND_ROUTE,\n } from '../../../shared/lib/entry-constants'\n+import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-...
2025-08-22T20:56:29
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
33fe88a0b30b8343c02dab70208dcd21bfce48e3
4eeeab09f02a1b430c8867881ee65b1fdaca0389
doc: add pmarchini to collaborators Fixes: https://github.com/nodejs/node/issues/55053 PR-URL: https://github.com/nodejs/node/pull/55331 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "README.md", "patch": "@@ -410,6 +410,8 @@ For information about the governance of the Node.js project, see\n **Filip Skokan** <<panva.ip@gmail.com>> (he/him)\n * [pimterry](https://github.com/pimterry) -\n **Tim Perry** <<pimterry@gmail.com>> (he/him)\n+* [pmarchini](https://github.com/pmarch...
2024-10-09T14:47:31
electron/electron
890a557eed6a6917e7854b76e5a691eff1f5e9ae
5094cb4115d52b8e915849cc9c7b9ca9bc37edd9
chore: bump node to v20.10.0 (main) (#40675) * chore: bump node in DEPS to v20.10.0 * chore: update feat_initialize_asar_support.patch no code changes; patch just needed an update due to nearby upstream changes Xref: https://github.com/nodejs/node/pull/49986 * chore: update pass_all_globals_through_require...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '121.0.6147.0',\n 'node_version':\n- 'v20.9.0',\n+ 'v20.10.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language":...
2023-12-11T20:09:50
vercel/next.js
b478e57de89fb1611e7124b38bbbe7070b6eb1a3
84e9332399c6a62f4245ec06b0f2c826484bbf88
[turbopack] Fix a few small things in the analyzer (#82899) * Delete some dead code * Remove some unnecessary `async` and `pub` modifiers * i think the `async`'s were made unnecesssary when we made `FilesystemPath` no longer be a `Vc<>`
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/mod.rs", "patch": "@@ -4,10 +4,8 @@ use std::{\n borrow::Cow,\n cmp::Ordering,\n fmt::{Display, Formatter, Write},\n- future::Future,\n hash::{BuildHasherDefault, Hash, Hasher},\n mem::take,\n- pin::Pin,\n sync::Arc,...
2025-08-22T17:19:21
rust-lang/rust
c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4
05cd01b8879f599e064ffd7294a5ae09320e25b5
fix: verify NeverToAny adjustment on binop lhs never place
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs", "patch": "@@ -823,11 +823,11 @@ fn binop_lhs_never_place_diverges() {\n check_no_mismatches(\n r#\"\n //- minicore: sized, add\n-fn foo() -> i32 {\n+fn foo() {\n unsafe {\n- let p: *const ! = 0 as _;\n- ...
2026-02-18T05:42:35
facebook/react
151cce37401dc2ff609701119d61a17d92fce4ab
04b058868c9fc61c78124b12efb168734d79d09e
Track Stack of JSX Calls (#29032) This is the first step to experimenting with a new type of stack traces behind the `enableOwnerStacks` flag - in DEV only. The idea is to generate stacks that are more like if the JSX was a direct call even though it's actually a lazy call. Not only can you see which exact JSX c...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -43,6 +43,7 @@ import {\n enablePostpone,\n enableRefAsProp,\n enableFlightReadableStream,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -563,6 +564,7 @@ function createElement(\n key: mixed,\n ...
2024-05-09T16:23:05
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
4eeeab09f02a1b430c8867881ee65b1fdaca0389
54b5ec94e067650f72a680ea5bf6a84da36ea096
benchmark: rewrite detect-esm-syntax benchmark Syntax detection has been unflagged so it's no longer meaningful to toggle the detection based on CLI flags. It was also previously benchmarking cached module imports which isn't very meaningful for subsequent loads. This patch updates the benchmark to toggle the detectio...
[ { "path": "benchmark/esm/detect-esm-syntax.js", "patch": "@@ -4,34 +4,33 @@\n // We use the TypeScript fixture because it's a very large CommonJS file with no ESM syntax: the worst case.\n const common = require('../common.js');\n const tmpdir = require('../../test/common/tmpdir.js');\n-const fixtures = req...
2024-10-09T14:16:01
electron/electron
5094cb4115d52b8e915849cc9c7b9ca9bc37edd9
2eb13d377e27eb5557d578e321df0de3e70d700a
fix: wrong default port in docs (#40665) fix: wrong default port
[ { "path": "docs/tutorial/debugging-main-process.md", "patch": "@@ -14,10 +14,10 @@ process:\n \n Electron will listen for V8 inspector protocol messages on the specified `port`,\n an external debugger will need to connect on this port. The default `port` is\n-`5858`.\n+`9229`.\n \n ```shell\n-electron --ins...
2023-12-11T16:43:06
rust-lang/rust
515d05522c4c12f65d816684f11b5ad6fc5a0df7
115bfdbb35014162be380f061ee08691f2503601
Update compiler/rustc_borrowck/src/diagnostics/move_errors.rs Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com>
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -999,11 +999,13 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if binds_to.len() == 1 {\n let place_desc = self.local_name(*local).map(|sym| format!(\"`{sym}`\"));\n \n- i...
2026-02-18T03:46:37
vercel/next.js
84e9332399c6a62f4245ec06b0f2c826484bbf88
f6193b35bee3fbbd27d862e9ff49a909f7f30e9d
Turbopack: print failing module during panic (#82938) Include the actual module in the panic, not only the merged chunk item. Particularly with the "scope hoisting bit width issue". Well, and also make it a bail instead of a panic.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -42,7 +42,7 @@ use std::{\n sync::Arc,\n };\n \n-use anyhow::{Context, Result, bail};\n+use anyhow::{Context, Result, anyhow, bail};\n use chunk::EcmascriptChunkItem;\n use code_gen::{CodeGeneration, CodeGenerationHoistedStmt};\n...
2025-08-22T17:13:32
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
nodejs/node
755b89772d1fd5d3abd7ddabc51215096a9a9592
1d38bd1122adaaf2f34c658cd04f5afa5d068d97
doc: fix `events.once()` example using `AbortSignal` PR-URL: https://github.com/nodejs/node/pull/55144 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/events.md", "patch": "@@ -1459,8 +1459,7 @@ async function foo(emitter, event, signal) {\n }\n \n foo(ee, 'foo', ac.signal);\n-ac.abort(); // Abort waiting for the event\n-ee.emit('foo'); // Prints: Waiting for the event was canceled!\n+ac.abort(); // Prints: Waiting for the event was can...
2024-10-09T07:32:00
facebook/react
1717ab017123cbca9f36238b064e47c4c3259966
0e6ea6991eef6d1f0d203965c9e4606698fe6944
React DevTools 5.1.0 -> 5.2.0 (#29022) Full list of changes (not a public changelog): * fix[react-devtools/ci]: fix configurations for e2e testing ([hoxyq](https://github.com/hoxyq) in [#29016](https://github.com/facebook/react/pull/29016)) * feat[react-devtools]: display forget badge for components in profiling ...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.1.0\",\n+ \"version\": \"5.2.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-05-08T12:26:14
vercel/next.js
c40e71fa58330096ea22468307df19730ea73da6
08bf0e08f74304afb3a9f79e521e5148b77bf96e
fix(edge-runtime): clone requests properly (#82878)
[ { "path": "packages/next/src/server/web/sandbox/context.test.ts", "patch": "@@ -0,0 +1,72 @@\n+import { getModuleContext } from './context'\n+import { validateURL } from '../utils'\n+\n+jest.mock('../utils', () => ({\n+ ...jest.requireActual('../utils'),\n+ validateURL: jest.fn(jest.requireActual('../util...
2025-08-22T14:36:02
golang/go
456a90aa1618a6c3aa49ecba46969128e2bfa26f
1cf6386b5ee1ba7d367b6456c2c6888ab68c3ec8
runtime: add missing unlock in sysReserveAlignedSbrk sysReserveAlignedSbrk locks memlock at entry, but it is not unlocked at one of the return path. Add the missing unlock. Fixes #74339. Change-Id: Ib641bc348aca41494ec410e2c4eb9857f3362484 Reviewed-on: https://go-review.googlesource.com/c/go/+/683295 LUCI-TryBot-Res...
[ { "path": "src/runtime/mem_sbrk.go", "patch": "@@ -231,6 +231,7 @@ func sysReserveAlignedSbrk(size, align uintptr) (unsafe.Pointer, uintptr) {\n \t\t\tmemFree(unsafe.Pointer(end), endLen)\n \t\t}\n \t\tmemCheck()\n+\t\tunlock(&memlock)\n \t\treturn unsafe.Pointer(pAligned), size\n \t}\n ", "additions": ...
2025-06-22T19:01:27
nodejs/node
09d10b50dcdf44b5ab0e97d22fc56dc52c594bd5
3fb7426f8379e0d08de0c91733c55fae0e550b39
sqlite: disable DQS misfeature by default Double-quoted string (DQS) literals are not allowed by the SQL standard, which defines that text enclosed in double quotes is to be interpreted as an identifier only and never as a string literal. Nevertheless, for historical reasons, SQLite allows double-quoted string literal...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -112,6 +112,10 @@ added: v22.5.0\n legacy database schemas. The enforcement of foreign key constraints can be\n enabled and disabled after opening the database using\n [`PRAGMA foreign_keys`][]. **Default:** `true`.\n+ * `enableDoubleQuotedStringLiter...
2024-10-08T21:49:38
facebook/react
0e6ea6991eef6d1f0d203965c9e4606698fe6944
b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582
fix[react-devtools/InspectedElementView.css]: dont draw bottom border for empty badge list (#29023) Forward fix to https://github.com/facebook/react/pull/29014, the bug was discovered while testing v5.2.0.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSharedStyles.css", "patch": "@@ -1,6 +1,5 @@\n .InspectedElementTree {\n padding: 0.25rem;\n- border-top: 1px solid var(--color-border);\n }\n .InspectedElementTree:first-of-type {\n border-top: none;", "additio...
2024-05-08T12:16:27
vercel/next.js
08bf0e08f74304afb3a9f79e521e5148b77bf96e
9436dce61f1a3ff9478261dc2eba47e0527acf3d
Add special marker in terminal if all error stack frames are ignore-listed (#82915)
[ { "path": "packages/next/src/server/patch-error-inspect.ts", "patch": "@@ -12,7 +12,7 @@ import {\n import { parseStack, type StackFrame } from './lib/parse-stack'\n import { getOriginalCodeFrame } from '../next-devtools/server/shared'\n import { workUnitAsyncStorage } from './app-render/work-unit-async-sto...
2025-08-22T07:35:17
golang/go
49cdf0c42e320dfed044baa551610f081eafb781
3bf1eecbd30f48851c35f608aa265c978b2cf301
testing, testing/synctest: handle T.Helper in synctest bubbles Fixes #74199 Change-Id: I6a15fbd59a3a3f8c496440f56d09d695e1504e4e Reviewed-on: https://go-review.googlesource.com/c/go/+/682576 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@g...
[ { "path": "src/testing/synctest/helper_test.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package synctest_test\n+\n+import \"testing\"\n+\n+// helperLo...
2025-06-20T13:44:09
nodejs/node
3fb7426f8379e0d08de0c91733c55fae0e550b39
3a42085ee4eb618b68752d95d25b3db060a6a0f7
module: check --experimental-require-module separately from detection Previously we assumed if `--experimental-detect-module` is true, then `--experimental-require-module` is true, which isn't the case, as the two can be enabled/disabled separately. This patch fixes the checks so `--no-experimental-require-module` is ...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1449,7 +1449,7 @@ function loadESMFromCJS(mod, filename) {\n * @param {'commonjs'|undefined} format Intended format of the module.\n */\n function wrapSafe(filename, content, cjsModuleInstance, format) {\n- assert(format !== 'module'); // ESM...
2024-10-08T20:26:13
facebook/react
b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582
e150a324259c5c63ab635b227f601052b133a99f
Clean up fastAddProperties and make it more correct (#29015) ## Summary This PR makes some fixes to the `fastAddProperties` function: - Use `if (!attributeConfig)` instead of `if (attributeConfig === undefined)` to account for `null`. - If a prop has an Object `attributeConfig` with a `diff` function defined on...
[ { "path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js", "patch": "@@ -446,65 +446,65 @@ function diffProperties(\n }\n \n function fastAddProperties(\n- updatePayload: null | Object,\n- nextProps: Object,\n+ payload: null | Object,\n+ props: Object,\n validAttributes: Attr...
2024-05-08T12:10:04
electron/electron
2eb13d377e27eb5557d578e321df0de3e70d700a
93fdc8d33c8d943f969cfe3a138068e14bd22917
docs: fix year typos in electron-timelines.md (#40728)
[ { "path": "docs/tutorial/electron-timelines.md", "patch": "@@ -9,7 +9,7 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n \n | Electron | Alpha | Beta | Stable | EOL | Chrome | Node | Supported |\n | ------- | ----- | ------- | ------ | ------ | ---- | ---- | ---- |\n-| 29.0.0 | 2023-...
2023-12-08T03:14:54
nodejs/node
5a3da7b4e445d6000cd9442984d26608579e4d16
78f421de886b80be099e597845d8b3235200fdfa
tools: enforce errors to not be documented in legacy section PR-URL: https://github.com/nodejs/node/pull/55218 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2325,6 +2325,17 @@ compiled with ICU support.\n \n A non-context-aware native addon was loaded in a process that disallows them.\n \n+<a id=\"ERR_OPERATION_FAILED\"></a>\n+\n+### `ERR_OPERATION_FAILED`\n+\n+<!-- YAML\n+added: v15.0.0\n+-->\n+\n+An operation faile...
2024-10-08T16:59:53
golang/go
4150372a5d2c3b70591efe1ce208f0a92747f1dc
1b87d52549677a1ab3dfc05bb00eb568d81f6a5c
[dev.simd] cmd/compile: don't treat devel compiler as a released compiler The compiler has a logic to print different messages on internal compiler error depending on whether this is a released version of Go. It hides the panic stack trace if it is a released version. It does this by checking the version and see if it...
[ { "path": "src/cmd/compile/internal/base/print.go", "patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers...
2025-06-20T16:02:18
facebook/react
e150a324259c5c63ab635b227f601052b133a99f
ec15267a001086deb4ab5412d3f8b7e13573d6a5
fix[react-devtools/ci]: fix configurations for e2e testing (#29016) This should fix failing DevTools e2e tests on `main`. With these changes, running tests locally successfully passes all cases.
[ { "path": "package.json", "patch": "@@ -109,7 +109,7 @@\n },\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react-dom/index,react-dom/client,react-dom/unsta...
2024-05-08T11:04:51
nodejs/node
78f421de886b80be099e597845d8b3235200fdfa
accb23927230b0149321a62d6c7b64fe6ce7d65e
lib: fix module print timing when specifier includes `"` PR-URL: https://github.com/nodejs/node/pull/55150 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -173,7 +173,7 @@ function formatTime(ms) {\n }\n \n function safeTraceLabel(label) {\n- return label.replace(/\\\\/g, '\\\\\\\\');\n+ return label.replace(/\\\\/g, '\\\\\\\\').replaceAll('\"', '\\\\\"');\n }\n \n /**", "additions": 1, "deleti...
2024-10-08T16:59:37
electron/electron
cb0da6ff3436c6e0e865706470e1d5b7572477b3
9aa73abe781ae5da01ac50e9165330722806d1d9
fix: prevent node mode to be used as script runner by other apps (#40579)
[ { "path": "filenames.gni", "patch": "@@ -199,6 +199,8 @@ filenames = {\n \"shell/common/language_util_mac.mm\",\n \"shell/common/mac/main_application_bundle.h\",\n \"shell/common/mac/main_application_bundle.mm\",\n+ \"shell/common/mac/codesign_util.cc\",\n+ \"shell/common/mac/codesign_util...
2023-12-06T02:23:54
golang/go
3bf1eecbd30f48851c35f608aa265c978b2cf301
8ed23a2936dc5f3cf070c52043dcc0e92563e62b
runtime: fix struct comment Change-Id: I0c33830b13c8a187ac82504c7653abb8f8cf7530 Reviewed-on: https://go-review.googlesource.com/c/go/+/681655 Reviewed-by: Sean Liao <sean@liao.dev> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/runtime/mheap.go", "patch": "@@ -312,8 +312,10 @@ type heapArena struct {\n \t// during marking.\n \tpageSpecials [pagesPerArena / 8]uint8\n \n-\t// pageUseSpanDartboard is a bitmap that indicates which spans are\n-\t// heap spans and also gcUsesSpanDartboard.\n+\t// pageUseSpanInlineMarkBits...
2025-06-14T11:37:47
facebook/react
6bac4f2f31378cd58dffe6181e00639366a6081a
826bf4e51ecf14904e936ed043392084553ebbaa
[Fizz] Fallback to client replaying actions if we're trying to serialize a Blob (#28987) This follows the same principle as in #28611. We cannot serialize Blobs of a form data into HTML because you can't initialize a file input to some value. However the serialization of state in an Action can contain blobs. In t...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -1019,12 +1019,7 @@ function pushAdditionalFormField(\n ): void {\n const target: Array<Chunk | PrecomputedChunk> = this;\n target.push(startHiddenInputChunk);\n- if (typeof value !== 'string') {\n- throw new Erro...
2024-05-08T01:53:10
rust-lang/rust
ad5108eaad22d9a23100e1faa03dafc7f1f2deea
dfbfbf785f46d10103e80735a9ccb4765bd6dfe2
tail calls: fix copying non-scalar arguments to callee
[ { "path": "compiler/rustc_const_eval/src/const_eval/machine.rs", "patch": "@@ -236,7 +236,7 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {\n if self.tcx.is_lang_item(def_id, LangItem::PanicDisplay)\n || self.tcx.is_lang_item(def_id, LangItem::BeginPanic)\n {\n- let args = s...
2025-12-28T23:54:17
nodejs/node
14353387eb3f5beeee99c01514d389f57506c389
8dbca2d35b4b322320113e6a4a5ad752b1a84e6f
src: implement IsInsideNodeModules() in C++ This previously compiles a script and run it in a new context to avoid global pollution, which is more complex than necessary and can be too slow for it to be reused in other cases. The new implementation just checks the frames in C++ which is safe from global pollution, fas...
[ { "path": "lib/buffer.js", "patch": "@@ -79,10 +79,10 @@ const {\n ONLY_ENUMERABLE,\n },\n getOwnNonIndexProperties,\n+ isInsideNodeModules,\n } = internalBinding('util');\n const {\n customInspectSymbol,\n- isInsideNodeModules,\n lazyDOMException,\n normalizeEncoding,\n kIsEncodingSymbol,...
2024-10-08T10:19:46
golang/go
8ed23a2936dc5f3cf070c52043dcc0e92563e62b
ef60769b46c5ef796876c6b4407562646fb27d15
crypto/cipher: fix link to crypto/aes Fixes #74309 Change-Id: I4d97514355d825124a8d879c2590b45b039f5fd1 Reviewed-on: https://go-review.googlesource.com/c/go/+/682596 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>...
[ { "path": "src/crypto/cipher/gcm.go", "patch": "@@ -82,7 +82,7 @@ func newGCM(cipher Block, nonceSize, tagSize int) (AEAD, error) {\n \n // NewGCMWithRandomNonce returns the given cipher wrapped in Galois Counter\n // Mode, with randomly-generated nonces. The cipher must have been created by\n-// [aes.NewCi...
2025-06-20T11:04:22
vercel/next.js
4a2b2e61c5953e582c42c078a0a13abe454f35ec
8e8dd0c8c2499528b90c06c35a5d06bc499fd12f
Bump swc to v36 (#82886) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentati...
[ { "path": "Cargo.lock", "patch": "@@ -588,9 +588,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"34.0.0\"\n+version = \"35.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0ae654d10cd9bde2966780a38a7852e2068af51fbd96bf19dce6277dc319f1...
2025-08-21T21:41:16
electron/electron
10a165a9ff731137b679a4ef3a9e3d18bcdfd514
66b4b216468feab79c7527295f2485067ea2cf15
fix: webview zoom level persistence on navigation (#40650)
[ { "path": "shell/browser/web_contents_zoom_controller.cc", "patch": "@@ -74,6 +74,7 @@ bool WebContentsZoomController::SetZoomLevel(double level) {\n DCHECK_CURRENTLY_ON(BrowserThread::UI);\n content::NavigationEntry* entry =\n web_contents()->GetController().GetLastCommittedEntry();\n+\n // Can...
2023-12-04T15:39:20
facebook/react
f4c12cc4a8b1ad7ad3c0a3cad3ecbf2f5f72e07b
257f22ac571a391b7f01558df74df9cadcdf3f55
CI: fix Compiler Playground workflow (#2945) Also renamed the workflow to make more sense when merged into the main React repo.
[ { "path": ".github/workflows/compiler-playground.yml", "patch": "@@ -1,8 +1,16 @@\n-name: Playground\n+name: Compiler Playground\n \n on:\n push:\n branches: [main]\n+ pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-playground.yml\n+\n+defaults:\n+ run:\n+ work...
2024-05-07T20:15:59
rust-lang/rust
195b849ea7367ba36c3a68a9689381896b499fcd
d1a11b670b617f1370f7b1cdf86e225a4e070f15
remove the explicit error for old `rental` versions
[ { "path": "compiler/rustc_expand/src/base.rs", "patch": "@@ -2,12 +2,11 @@ use std::any::Any;\n use std::default::Default;\n use std::iter;\n use std::path::Component::Prefix;\n-use std::path::{Path, PathBuf};\n+use std::path::PathBuf;\n use std::rc::Rc;\n use std::sync::Arc;\n \n use rustc_ast::attr::Marke...
2026-02-17T12:28:23
nodejs/node
ae1e2b53b77585b3f0d58406e37bd56264d29ad7
6c92c1391a3dc8e97530012581337259ea429d0a
build: fix notify-on-review-wanted action PR-URL: https://github.com/nodejs/node/pull/55304 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": ".github/workflows/notify-on-review-wanted.yml", "patch": "@@ -11,7 +11,7 @@ permissions:\n jobs:\n notifyOnReviewWanted:\n name: Notify on Review Wanted\n- if: github.repository == 'nodejs/node' && github.event.label == 'review wanted'\n+ if: github.repository == 'nodejs/node' && gith...
2024-10-07T16:40:51
golang/go
8552bcf7c261cd150d0074c4ec7e2412b20af0a5
4c7567290ced9c4dc629f2386f2eebfebba95ce6
cmd/go/internal/fips140: ignore GOEXPERIMENT on error During toolchain selection, the GOEXPERIMENT value may not be valid for the current version (but it is valid for the selected version). In this case, cfg.ExperimentErr is set and cfg.Experiment is nil. Normally cmd/go main exits when ExperimentErr is set, so Exper...
[ { "path": "src/cmd/go/internal/fips140/fips140.go", "patch": "@@ -114,7 +114,11 @@ func Init() {\n \t\tfsys.Bind(Dir(), filepath.Join(cfg.GOROOT, \"src/crypto/internal/fips140\"))\n \t}\n \n-\tif cfg.Experiment.BoringCrypto && Enabled() {\n+\t// ExperimentErr != nil if GOEXPERIMENT failed to parse. Typicall...
2025-06-11T20:46:21
electron/electron
66b4b216468feab79c7527295f2485067ea2cf15
6f14dba7a0d655628aec82783362bcfa9ef1d506
ci: tweak new release board workflow (#40680) * ci: tweak new release board workflow * ci: fix workflow
[ { "path": ".github/workflows/branch-created.yml", "patch": "@@ -8,7 +8,7 @@ permissions: {}\n jobs:\n release-branch-created:\n name: Release Branch Created\n- if: ${{ github.event.ref_type == 'branch' && endsWith(github.event.ref, '-x-y') }}\n+ if: ${{ github.event.ref_type == 'branch' && endsW...
2023-12-04T15:18:14
facebook/react
257f22ac571a391b7f01558df74df9cadcdf3f55
fd873e8ddd2d6aee88c8fea490a8f34280ac6069
CI: fix Compiler TypeScript workflow (#2946)
[ { "path": ".github/workflows/compiler-typescript.yml", "patch": "@@ -4,6 +4,13 @@ on:\n push:\n branches: [main]\n pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-typescript.yml\n+\n+defaults:\n+ run:\n+ working-directory: compiler\n \n jobs:\n discover_yarn...
2024-05-07T20:07:46
vercel/next.js
8e8dd0c8c2499528b90c06c35a5d06bc499fd12f
472c4c024b457cc471001312f213109b80438b36
Update prettier project dependency from 3.2.5 to 3.6.2 (#82896) What? This PR updates the dependency "prettier" from version 3.2.5 to version 3.6.2. It also modifies other scripts by using the pnpm run prettier-fix after updating the dependency. Why? This is updated to benefit from the changes and fixes introduced in...
[ { "path": ".prettierignore", "patch": "@@ -71,4 +71,19 @@ test/e2e/async-modules/amp-validator-wasm.js\n /turbopack/crates/turbopack-tests/tests/**/output*\n /turbopack/crates/turbopack-tests/tests/**/static\n \n-/apps/docs/.source/*\n\\ No newline at end of file\n+/apps/docs/.source/*\n+\n+# Symlink files\...
2025-08-21T21:05:20
nodejs/node
deb5effe017aa10e4fd1e0ce798236e38a432c77
d5eb9a378e7ce357151b44f41f82e6ee3de1984a
v8: out of bounds copy Fixes: https://github.com/nodejs/node/issues/54573 Co-authored-by: ronag <ronagy@icloud.com> Co-authored-by: ramidzkh <ramidzkh@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55261 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/v8.js", "patch": "@@ -49,7 +49,6 @@ if (internalBinding('config').hasInspector) {\n }\n \n const assert = require('internal/assert');\n-const { copy } = internalBinding('buffer');\n const { inspect } = require('internal/util/inspect');\n const { FastBuffer } = require('internal/buffer');\n co...
2024-10-07T11:11:29
rust-lang/rust
1994230db1b142789786ec38165ec07b5e38b2e9
e299e18e546bee90c64eba55f4276cd62633b4c0
fix(str_to_string): false positive non-str types
[ { "path": "clippy_lints/src/strings.rs", "patch": "@@ -417,6 +417,8 @@ impl<'tcx> LateLintPass<'tcx> for StrToString {\n && args.iter().any(|a| a.hir_id == expr.hir_id)\n && let Res::Def(DefKind::AssocFn, def_id) = expr.res(cx)\n && cx.tcx.is_diagnostic_item(sym::to_strin...
2026-02-15T03:28:06
golang/go
4c7567290ced9c4dc629f2386f2eebfebba95ce6
c6ac7362888c25dd1251adaa11e1503cf78ec26d
runtime: set mspan limit field early and eagerly Currently the mspan limit field is set after allocSpan returns, *after* the span has already been published to the GC (including the conservative scanner). But the limit field is load-bearing, because it's checked to filter out invalid pointers. A stale limit value coul...
[ { "path": "src/runtime/arena.go", "patch": "@@ -1052,10 +1052,18 @@ func (h *mheap) allocUserArenaChunk() *mspan {\n \th.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)\n \ts.isUserArenaChunk = true\n \ts.elemsize -= userArenaChunkReserveBytes()\n-\ts.limit = s.base() + s.elemsize\n \ts.freeindex...
2025-06-18T17:42:16
facebook/react
e7d213dfb0760dc9f6506fca6d6cfbac708a40e2
c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c
feat[react-devtools]: display forget badge for components in profiling session (#29014) # Summary - `compiledWithForget` field for nodes is now propagated from the backend to frontend profiler stores - Corresponding node with such field will have a `✨` prefix displayed before its displayName <img width="1728" alt...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js", "patch": "@@ -124,8 +124,8 @@ describe('profiling charts', () => {\n \"actualDuration\": 0,\n \"didRender\": true,\n \"id\": 5,\n- \"label\": \"Memo(Child) key=\"third\" (...
2024-05-07T15:39:01
vercel/next.js
7bfd9996009509e19e96b92ee0a7c8184d73353c
bb89c756654b0f6216595f7b2f2b0e7ba7b2cc78
Turbopack: run all unit tests with a fixed amount of worker threads to avoid overloading with many CPUs (#82890) ### What? To avoid overwelming the CPU when one has many core, we limit the number of worker thread in unit tests. Unit tests already run multi-threaded, so we don't want to create N * N threads here....
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -431,7 +431,7 @@ mod tests {\n }\n }\n \n- #[tokio::test(flavor = \"multi_thread\")]\n+ #[tokio::test(flavor = \"multi_thread\", worker_threads = 2)]\n async fn test_relativize_glob_normal_patterns() {\n let tt = turbo_t...
2025-08-21T19:33:59
electron/electron
6f14dba7a0d655628aec82783362bcfa9ef1d506
3609fc7402881b1d51f6c56249506d5dd3fcbe93
fix: cherry pick 9009d76968b1ec2ed825bc95e47d086ceea07520 from chromium (#40681) * chore: cherry pick 9009d76968b1ec2ed825bc95e47d086ceea07520 from chromium * update patch message
[ { "path": "patches/chromium/.patches", "patch": "@@ -127,3 +127,4 @@ fix_activate_background_material_on_windows.patch\n feat_allow_passing_of_objecttemplate_to_objecttemplatebuilder.patch\n chore_remove_check_is_test_on_script_injection_tracker.patch\n fix_restore_original_resize_performance_on_macos.patch...
2023-12-04T04:37:03
nodejs/node
a301596c41c29bcea0b9803f41750f741f9f49be
bbdfeebd9eb2f9b31169edf5be8eb31adb367a1c
doc: move `ERR_NAPI_TSFN_START/STOP_IDLE_LOOP` to legacy errors PR-URL: https://github.com/nodejs/node/pull/55248 Refs: https://github.com/nodejs/node/pull/17887 Refs: https://github.com/nodejs/node/pull/32997 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2278,21 +2278,6 @@ function.\n An error occurred while attempting to retrieve the JavaScript `undefined`\n value.\n \n-<a id=\"ERR_NAPI_TSFN_START_IDLE_LOOP\"></a>\n-\n-### `ERR_NAPI_TSFN_START_IDLE_LOOP`\n-\n-On the main thread, values are removed from the queue...
2024-10-05T09:59:13
rust-lang/rust
f067c75ffcd33e428a409dacee08593b9b95e77b
dfbfbf785f46d10103e80735a9ccb4765bd6dfe2
fix typo in `carryless_mul` macro invocation
[ { "path": "library/core/src/num/uint_macros.rs", "patch": "@@ -17,8 +17,8 @@ macro_rules! uint_impl {\n fsh_op = $fsh_op:literal,\n fshl_result = $fshl_result:literal,\n fshr_result = $fshr_result:literal,\n- clmul_lhs = $clmul_rhs:literal,\n- clmul_rhs = $clmul_lhs:lit...
2026-02-17T19:40:21
facebook/react
c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c
0fc9c84e63622026b5977557900c9cfe204552d3
fix[react-devtools]: add backwards compat with legacy element type symbol (#28982) Follow-up to https://github.com/facebook/react/pull/28813. RDT is using `typeOf` from `react-is` to determine the element display name, I've forked an implementation of this method, but will be using legacy element symbol.
[ { "path": "packages/react-devtools-shared/src/utils.js", "patch": "@@ -23,9 +23,23 @@ import {\n Suspense,\n } from 'react-is';\n import {\n+ REACT_CONSUMER_TYPE,\n+ REACT_CONTEXT_TYPE,\n+ REACT_FORWARD_REF_TYPE,\n+ REACT_FRAGMENT_TYPE,\n+ REACT_LAZY_TYPE,\n+ REACT_LEGACY_ELEMENT_TYPE,\n+ REACT_MEM...
2024-05-07T15:38:43
golang/go
c6ac7362888c25dd1251adaa11e1503cf78ec26d
53af292aed21c3f6ea75d16e5b25f660b2c028fb
runtime: prevent mutual deadlock between GC stopTheWorld and suspendG Almost everywhere we stop the world we casGToWaitingForGC to prevent mutual deadlock with the GC trying to scan our stack. This historically was only necessary if we weren't stopping the world to change the GC phase, because what we were worried abo...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -1048,7 +1048,7 @@ func gcMarkTermination(stw worldStop) {\n \t// N.B. The execution tracer is not aware of this status\n \t// transition and handles it specially based on the\n \t// wait reason.\n-\tcasGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollectio...
2025-06-14T02:45:08
vercel/next.js
1b276bd4d8159a40e327b5f986d1612018f3d014
b56d1e1af1ad37f96e1905662b15ac5f4707726b
fix: aliased navigations should apply scroll handling (#82900) When routing to the same page with different searchParams w/ a loading segment, we have handling to skip RSC roundtrip and re-use the existing RSC data. However, this handling was missing logic that exists in `navigate-reducer` which sets the `scrollableSe...
[ { "path": "packages/next/src/client/components/router-reducer/aliased-prefetch-navigations.ts", "patch": "@@ -1,10 +1,12 @@\n import type {\n CacheNodeSeedData,\n FlightRouterState,\n+ FlightSegmentPath,\n } from '../../../shared/lib/app-router-types'\n import type { CacheNode } from '../../../shared/l...
2025-08-21T19:23:43
electron/electron
3609fc7402881b1d51f6c56249506d5dd3fcbe93
344b7f0d068ae7d20fdebafc2ebadcdc0b4f7f68
fix: clean up devtools frontend_host on webcontents destroy (#40666) * fix: clean up devtools frontend_host on destroy * chore: use IsInPrimaryMainFrame instead of IsInMainFrame * test: add a test for re-opening devtools
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -1007,6 +1007,7 @@ void InspectableWebContents::WebContentsDestroyed() {\n Observe(nullptr);\n Detach();\n embedder_message_dispatcher_.reset();\n+ frontend_host_.reset();\n \n if (view_ && view_->GetDelegate())\n view_->Get...
2023-12-01T19:37:52
nodejs/node
32efeea0c046e3b504fee27278a0f7e8da8c86e8
98788dace632e64e7d7b13b10559b301bd390526
doc: fix initial default value of autoSelectFamily Specify the initial default value of `autoSelectFamily` in description of `net.setDefaultAutoSelectFamily()` as specified in description of `net.getDefaultAutoSelectFamily()`. PR-URL: https://github.com/nodejs/node/pull/55245 Reviewed-By: Luigi Pinca <luigipinca@gmai...
[ { "path": "doc/api/net.md", "patch": "@@ -1798,7 +1798,9 @@ added: v19.4.0\n \n Sets the default value of the `autoSelectFamily` option of [`socket.connect(options)`][].\n \n-* `value` {boolean} The new default value. The initial default value is `false`.\n+* `value` {boolean} The new default value.\n+ The...
2024-10-05T02:06:36
rust-lang/rust
f72e055625674d8fb2a7da4f6d484738db122ffd
e299e18e546bee90c64eba55f4276cd62633b4c0
Add unnecessary_trailing_comma lint Suggest removing an unnecessary trailing comma before the closing parenthesis in single-line format-like macro invocations (e.g. println!, format!, write!). The lint currently only runs on format-like macros because it relies on format-argument parsing; arbitrary user macros are not...
[ { "path": "CHANGELOG.md", "patch": "@@ -8,6 +8,11 @@ document.\n \n [92b4b68...master](https://github.com/rust-lang/rust-clippy/compare/92b4b68...master)\n \n+### New Lints\n+\n+* Added [`unnecessary_trailing_comma`] to `style` (single-line format-like macros only)\n+ [#13965](https://github.com/rust-lang/...
2026-02-06T19:26:36
facebook/react
90a5d48a2fb0794dced2a9a26b2451c75808cc51
55d6c6efaaab8e104e3e0f99d16cf8c2f5f931e6
CI: fix Rust CI workflows (#2942) - update paths - update working directory - rename files for clarity when merged into the main react repo
[ { "path": ".github/workflows/compiler-rust-benchmark.yml", "patch": "@@ -1,19 +1,23 @@\n # Runs the parser benchmark on every push to main, and compares it with the previous run\n-name: Parser Benchmark (Rust)\n+name: Compiler Benchmark (Rust)\n \n on:\n push:\n branches: [\"main\"]\n paths:\n ...
2024-05-07T15:17:30
vercel/next.js
b56d1e1af1ad37f96e1905662b15ac5f4707726b
14995e0a266cf0d3a90f31334257fd1648248ba5
fix: typesafe linking to route handlers and pages API routes (#82858) Fixes #82833
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -201,18 +201,24 @@ export function generateLinkTypesFile(\n routesManifest: RouteTypesManifest\n ): string {\n // Generate serialized static and dynamic routes for the internal namespace\n- const allRoutes = {\n- ...route...
2025-08-21T17:57:09
golang/go
1be5eb2686d8050c7067897b1ed98446ff8566c5
3a4d10bfca5cca54b69c50123d1245604c334e0f
[dev.simd] cmd/compile: fix signature error of PairDotProdAccumulate. This CL is generated by CL 682135. Change-Id: I6f004b2eca6323f1ff22555c85db993386f24c6c Reviewed-on: https://go-review.googlesource.com/c/go/+/682155 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -1115,9 +1115,9 @@\n (MaskedSaturatedSubUint8x16 x y mask) => (VPSUBSBMasked128 x y (VPMOVVec8x16ToM <types.TypeMask> mask))\n (MaskedSaturatedSubUint8x32 x y mask) => (VPSUBSBMasked256 x y (VPMOVVec8x32ToM <types.TypeMask> mask))\n...
2025-06-16T22:53:36