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 | 52eaed66335e90ceb6ad65873889ccca46851ee9 | f95941de4908a45287d700697347aa69d714457b | runtime: decorate anonymous memory mappings
Leverage the prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, ...) API to name
the anonymous memory areas.
This API has been introduced in Linux 5.17 to decorate the anonymous
memory areas shown in /proc/<pid>/maps.
This is already used by glibc. See:
* https://sourceware.org/git/?... | [
{
"path": "src/internal/runtime/syscall/defs_linux.go",
"patch": "@@ -16,4 +16,7 @@ const (\n \tEPOLL_CTL_DEL = 0x2\n \tEPOLL_CTL_MOD = 0x3\n \tEFD_CLOEXEC = 0x80000\n+\n+\tPR_SET_VMA = 0x53564d41\n+\tPR_SET_VMA_ANON_NAME = 0\n )",
"additions": 3,
"deletions": 0,
"language": "Go"
}... | 2025-02-01T13:19:04 |
nodejs/node | e0b5deefc061009f0a0696d573ccfb447206b88a | 4796e05cc87a48d7a7069a468aada23df3af5336 | doc: improve explanation about built-in modules
PR-URL: https://github.com/nodejs/node/pull/52762
Fixes: https://github.com/nodejs/node/issues/52599
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By:... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -293,12 +293,12 @@ mandatory:\n | ---------------- | ---------------- |\n | `'json'` | [JSON modules][] |\n \n-## Builtin modules\n+## Built-in modules\n \n-[Core modules][] provide named exports of their public API. A\n+[Built-in modules][] provide named exp... | 2024-05-07T01:50:31 |
vercel/next.js | b2f9fa455b0683571e06dad49424f3052d626125 | f3d6af95255239b903826c10a587b4e747500571 | Fix: Rules of Hooks violation in AppRouter (#80623)
There's some sketchy logic in AppRouter that (intentionally) violates
the rules of hooks by reading an externally mutable condition. The
rationalization is that it's OK to do this if the result is to
infinitely suspend the component.
However, the mechanism used to i... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import React, {\n- use,\n useEffect,\n useMemo,\n startTransition,\n@@ -329,7 +328,10 @@ function Router({\n // TODO-APP: Should we listen to navigateerror here to catch failed\n // n... | 2025-06-18T17:00:57 |
electron/electron | 8f23b1527b1d1055d675d04e7b3ee669947ccbd4 | 8c837fda4f2d68d8568889cd68da801f833c862c | fix: use chrome headers in net.request for everything except cookie (#36666) | [
{
"path": "lib/browser/api/net.ts",
"patch": "@@ -56,31 +56,14 @@ class IncomingMessage extends Readable {\n \n get headers () {\n const filteredHeaders: Record<string, string | string[]> = {};\n- const { rawHeaders } = this._responseHead;\n- rawHeaders.forEach(header => {\n- const keyLower... | 2022-12-21T22:53:29 |
golang/go | f95941de4908a45287d700697347aa69d714457b | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | net/http/httputil: skip new test on Plan 9
TestReverseProxyWebSocketHalfTCP requires half closed connections,
which aren't supported on Plan 9.
For #35892
Fixes #72095
Change-Id: I64b458bc15ac3b8eda43dc871bf67ada32a59708
Reviewed-on: https://go-review.googlesource.com/c/go/+/654636
Reviewed-by: Ian Lance Taylor <ian... | [
{
"path": "src/net/http/httputil/reverseproxy_test.go",
"patch": "@@ -23,6 +23,7 @@ import (\n \t\"net/url\"\n \t\"os\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1560,6 +1561,11 @@ func TestReverseProxyWebSocketHalfTCP(t *testing.T) {\n \t// - that closing the write... | 2025-03-04T18:07:15 |
vercel/next.js | 693619fddb64f684ba4167736d92087c3037e63a | bc6dd8f1fc43a95c9f2f843d023c48ce79bbc382 | Docs: Update code snippets in linking and navigating guide (#80652)
This PR updates code snippets in linking and navigating guide in docs.
It also replaces wrong file name in one of the snippets. | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -60,7 +60,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {\n }\n ```\n \n-```jsx filename=\"app/blog/page.js\" switcher\n+```jsx filename=\"app/layout.js\" switcher\n import Link from 'ne... | 2025-06-18T11:42:42 |
nodejs/node | a2446de50f1654f4ebb8900ae29eadc96eee37f9 | 8c6d43cc4f15f05077ce18e5eae8fc088e78dadc | doc: fix minor grammar and style issues in SECURITY.md
PR-URL: https://github.com/nodejs/node/pull/53168
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Revi... | [
{
"path": "SECURITY.md",
"patch": "@@ -4,7 +4,7 @@\n \n Report security bugs in Node.js via [HackerOne](https://hackerone.com/nodejs).\n \n-Normally your report will be acknowledged within 5 days, and you'll receive\n+Normally, your report will be acknowledged within 5 days, and you'll receive\n a more deta... | 2024-05-28T17:40:22 |
facebook/react | 035a41c4e2aadad8f8826396940af404e87dd772 | 53ac21937864c1c7fc3d9077bc2d80b3e11193e3 | React DevTools 4.27.8 -> 4.28.0 (#27051)
List of changes:
* Devtools:-Removed unused CSS ([Biki-das](https://github.com/Biki-das)
in [#27032](https://github.com/facebook/react/pull/27032))
* fix[devtools/profilingCache-test]: specify correct version gate for
test ([hoxyq](https://github.com/hoxyq) in
[#27008](htt... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.27.8\",\n+ \"version\": \"4.28.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-07-04T08:11:14 |
electron/electron | 8c837fda4f2d68d8568889cd68da801f833c862c | 5fd7a43970c2bdfa1017a4b23098aec3dafbf513 | docs: Fix incorrect highlight in an example snippet (#36700)
Fix incorrect highlight in an example snippet
At the moment, the "Communicating between processes" `main.js` snippet highlights the line containing `})` when the relevant line is `ipcMain.handle('ping', () => 'pong')`. | [
{
"path": "docs/tutorial/tutorial-3-preload.md",
"patch": "@@ -202,7 +202,7 @@ Then, set up your `handle` listener in the main process. We do this _before_\n loading the HTML file so that the handler is guaranteed to be ready before\n you send out the `invoke` call from the renderer.\n \n-```js {1,11} title... | 2022-12-20T18:06:25 |
golang/go | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | fd8938c799969ad8caec2aaec5a4966e48a17895 | os: guarantee min buffer size for ReadFile reads on /proc-like files
For instance, this fixes os.ReadFile on plan9's /net/iproute file.
But it's not necessarily plan9-specific; Linux /proc and /sys filesystems
can exhibit the same problems.
Fixes #72080
Change-Id: I60b035913f583a91c6d84df95a6ea7b7ec2b3c92
Reviewed-... | [
{
"path": "src/os/export_test.go",
"patch": "@@ -15,3 +15,5 @@ var ErrPatternHasSeparator = errPatternHasSeparator\n func init() {\n \tcheckWrapErr = true\n }\n+\n+var ExportReadFileContents = readFileContents",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/os/file.g... | 2025-03-03T17:21:26 |
facebook/react | c6b437b4026c06843a19eb3bce9da8ef4d15aa63 | cff435ca3dbd5e5d6ad6d590d6ea334ad23b92b9 | [eslint-plugin] Remove fbt dependencies
I incorrectly included these as deps, we were only using these to verify
codegen. It seems fine to leave in but when I imported it internally vscode
would error, so just remove it | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/package.json",
"patch": "@@ -21,8 +21,6 @@\n \"@babel/core\": \"^7.19.1\",\n \"@babel/parser\": \"^7.19.1\",\n \"@babel/traverse\": \"^7.19.1\",\n- \"babel-plugin-fbt\": \"^1.0.0\",\n- \"babel-plugin-fbt-runtime\": \"^1.0.0\",\... | 2023-07-03T16:25:33 |
nodejs/node | 8c6d43cc4f15f05077ce18e5eae8fc088e78dadc | 067ab06f21e901dce5cd5ec36c4aae80abcb11bd | 2024-05-28, Version 20.14.0 'Iron' (LTS)
Notable changes:
src,permission:
* throw async errors on async APIs (Rafael Gonzaga) https://github.com/nodejs/node/pull/52730
test_runner:
* (SEMVER-MINOR) support forced exit (Colin Ihrig) https://github.com/nodejs/node/pull/52038
PR-URL: https://github.com/nodejs/node/... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -58,7 +58,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.13.1\">20.13.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.14.0\">20.14.0... | 2024-05-23T15:39:52 |
vercel/next.js | bc6dd8f1fc43a95c9f2f843d023c48ce79bbc382 | 77c9bd8d16c4995b12568d9e7ffc5a528aa0b485 | Respond with `404` for unknown server actions (#80613)
When a server action is sent from an older deployment and skew
protection is not enabled or implemented, we intended to return a `404`
response.
However, this behavior was never properly tested and was accidentally
broken in #48626 when `actionAsyncStorage` was a... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -50,7 +50,6 @@ import { RedirectStatusCode } from '../../client/components/redirect-status-code\n import { synchronizeMutableCookies } from '../async-storage/request-store'\n import type { TemporaryReferenceSet } from 'react-ser... | 2025-06-18T09:23:02 |
electron/electron | 9e7fbc7021d8d716c43782249a552e55289c35db | f72e6551f093e7f9f02531c6a69f390521463bf8 | fix: blend node and blink code generation policy when both are loaded (#36567) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -123,4 +123,5 @@ build_only_use_the_mas_build_config_in_the_required_components.patch\n fix_tray_icon_gone_on_lock_screen.patch\n chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n+expose_v8ini... | 2022-12-14T18:05:34 |
golang/go | fd8938c799969ad8caec2aaec5a4966e48a17895 | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | net/http: speed up cookie and method validation
Fixes #67031
Change-Id: I1d764afdc7e50d61007f5f71a674eb6872ce507a
GitHub-Last-Rev: 869535e843d2133fa5279297b002dd96725384e0
GitHub-Pull-Request: golang/go#71798
Reviewed-on: https://go-review.googlesource.com/c/go/+/650195
Auto-Submit: Sean Liao <sean@liao.dev>
LUCI-Try... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -79,7 +79,7 @@ func ParseCookie(line string) ([]*Cookie, error) {\n \t\tif !found {\n \t\t\treturn nil, errEqualNotFoundInCookie\n \t\t}\n-\t\tif !isCookieNameValid(name) {\n+\t\tif !isToken(name) {\n \t\t\treturn nil, errInvalidCookieName\n \t\t}\n \t\tvalue... | 2025-02-17T18:39:58 |
facebook/react | 5c8dabf8864e1d826c831d6096b2dfa66309961a | 47385f8fa448e52326f08d0afa357339fac6f86e | Detect and warn about native async function components in development (#27031)
Adds a development warning to complement the error introduced by
https://github.com/facebook/react/pull/27019.
We can detect and warn about async client components by checking the
prototype of the function. This won't work for environm... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -163,9 +163,11 @@ export type UpdateQueue<S, A> = {\n let didWarnAboutMismatchedHooksForComponent;\n let didWarnUncachedGetSnapshot: void | true;\n let didWarnAboutUseWrappedInTryCatch;\n+let didWarnAboutAsyncClientComponent;\n if (_... | 2023-07-02T02:44:41 |
nodejs/node | 067ab06f21e901dce5cd5ec36c4aae80abcb11bd | a320ac6ebd34fc281cc4ba5feccaf6e5a2493644 | build: fix building embedtest in GN build
PR-URL: https://github.com/nodejs/node/pull/53145
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "unofficial.gni",
"patch": "@@ -346,6 +346,7 @@ template(\"node_gn_build\") {\n output_name = \"embedtest\"\n testonly = true\n deps = [ \":libnode\" ]\n+ include_dirs = [ \"tools\" ]\n sources = [\n \"src/node_snapshot_stub.cc\",\n \"test/embedding/embedtest.cc\",",... | 2024-05-25T04:58:25 |
vercel/next.js | 77c9bd8d16c4995b12568d9e7ffc5a528aa0b485 | 36c4dd475d1a6857e379151915b5bba0f1def208 | Avoid timeout error when transformed params are passed to `"use cache"` (#80463)
With #79743, we're now providing a filled Resume Data Cache (RDC) when
prerendering optional fallback shells for routes that have some params
defined in `generateStaticParams`.
This allows us to treat a cache miss in the RDC as an indica... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -194,7 +194,6 @@ import {\n trackPendingImport,\n trackPendingModules,\n } from './module-loading/track-module-loading.external'\n-import { isUseCacheTimeoutError } from '../use-cache/use-cache-errors'\n \n export type GetDynam... | 2025-06-18T08:34:24 |
electron/electron | f72e6551f093e7f9f02531c6a69f390521463bf8 | ab890fb8c3883ca60af514546245bf6a000686f1 | fix: use the process cache to reduce the memory for asar file (#36600)
* fix: use the process cache to reduce the memory for asar file
* Update shell/common/api/electron_api_asar.cc
Co-authored-by: webster.xu <webster.xu@ringcentral.com>
Co-authored-by: Jeremy Rose <nornagon@nornagon.net> | [
{
"path": "shell/common/api/electron_api_asar.cc",
"patch": "@@ -39,7 +39,7 @@ class Archive : public node::ObjectWrap {\n Archive& operator=(const Archive&) = delete;\n \n protected:\n- explicit Archive(std::unique_ptr<asar::Archive> archive)\n+ explicit Archive(std::shared_ptr<asar::Archive> archive)... | 2022-12-14T17:37:28 |
golang/go | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | a053e79024f56a2a64728b1287509e880fad203e | mime/quotedprintable: accept LWSP-char after =
SP and HTAB are allowed after a = before the following CRLF.
RFC 2045 section 6.7 describes the ABNF for the quoted-printable encoding:
qp-line := *(qp-segment transport-padding CRLF)
qp-part transport-padding
qp-segment := qp-section *(SPACE / TA... | [
{
"path": "src/mime/quotedprintable/reader.go",
"patch": "@@ -66,6 +66,7 @@ var (\n \tcrlf = []byte(\"\\r\\n\")\n \tlf = []byte(\"\\n\")\n \tsoftSuffix = []byte(\"=\")\n+\tlwspChar = \" \\t\"\n )\n \n // Read reads and decodes quoted-printable data from the underlying reader.\n@@ -92,7 +93,7... | 2024-12-22T10:28:56 |
facebook/react | 7f362de1588d98438787d652941533e21f2f332d | fc801116c80b68f7ebdaf66ac77d5f2dcd9e50eb | Revert "Fix: Detect infinite update loops caused by render phase updates (#26625)" (#27027)
This reverts commit 822386f252fd1f0e949efa904a1ed790133329f7.
This broke a number of tests when synced internally. We'll need to
investigate the breakages before relanding this. | [
{
"path": "packages/react-dom/src/__tests__/ReactUpdates-test.js",
"patch": "@@ -1620,64 +1620,6 @@ describe('ReactUpdates', () => {\n });\n });\n \n- it(\"does not infinite loop if there's a synchronous render phase update on another component\", () => {\n- let setState;\n- function App() {\n-... | 2023-06-30T16:51:11 |
nodejs/node | a320ac6ebd34fc281cc4ba5feccaf6e5a2493644 | 8e9686d9c94d8580b9baa5bd1822260fe95ca08e | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n... | 2024-05-28T07:10:52 |
vercel/next.js | e663cf5db4e5c9e3d73ab1925efe922b91ecd51c | 0c454dbfff0b41d8be92e09929453fd9a4581061 | Add test cases without `generateStaticParams` to `fallback-shells` suite (#80462)
Copy&pasting some of the existing test cases for
`with-cached-io/with-static-params/with-suspense` to
`with-cached-io/without-static-params`. We expect the same results.
We do not copy `with-cached-io/with-static-params/without-suspense... | [
{
"path": "test/e2e/app-dir/fallback-shells/app/with-cached-io/with-static-params/layout.jsx",
"patch": "@@ -9,6 +9,7 @@ export default async function Layout({ children }) {\n <div id=\"root-layout\">\n Root Layout: {new Date().toISOString()} ({getSentinelValue()})\n </div>\n+ ... | 2025-06-18T06:38:24 |
facebook/react | fc801116c80b68f7ebdaf66ac77d5f2dcd9e50eb | d9c333199ed19798484e49eef992735321c32cb9 | Detect crashes caused by Async Client Components (#27019)
Suspending with an uncached promise is not yet supported. We only
support suspending on promises that are cached between render attempts.
(We do plan to partially support this in the future, at least in certain
constrained cases, like during a route transiti... | [
{
"path": "packages/react-reconciler/src/ReactFiberLane.js",
"patch": "@@ -636,6 +636,7 @@ export function markRootFinished(root: FiberRoot, remainingLanes: Lanes) {\n root.entangledLanes &= remainingLanes;\n \n root.errorRecoveryDisabledLanes &= remainingLanes;\n+ root.shellSuspendCounter = 0;\n \n ... | 2023-06-29T20:05:00 |
electron/electron | ab890fb8c3883ca60af514546245bf6a000686f1 | 425f1ffa987434d87348868696658af7412fc2bb | fix: strip branded binaries (#36641)
When creating branded release builds and using scripts/strip-binaries.py
on Linux, the final artifacts end up unstripped due to the static set of
binaries considered for stripping.
With this patch the name of the electron binary is taken from the
BRANDING.json `project_name` ke... | [
{
"path": "script/add-debug-link.py",
"patch": "@@ -4,11 +4,11 @@\n import os\n import sys\n \n-from lib.config import LINUX_BINARIES, PLATFORM\n-from lib.util import execute, get_out_dir\n+from lib.config import PLATFORM\n+from lib.util import execute, get_linux_binaries, get_out_dir\n \n def add_debug_lin... | 2022-12-13T22:01:20 |
golang/go | a053e79024f56a2a64728b1287509e880fad203e | 7181118a851bc22cf7acc604fe24940eb4926288 | net/http: support TCP half-close when HTTP is upgraded in ReverseProxy
This CL propagates closing the write stream from either side of the
reverse proxy and ensures the proxy waits for both copy-to and the
copy-from the backend to complete.
The new unit test checks communication through the reverse proxy when
the bac... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -793,7 +793,15 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tspc := switchProtocolCopier{user: conn, backend: backConn}\n \tgo spc.copyToBackend(errc)\n \tgo spc.copyFromBackend(errc)\n-\t<-errc\n+\n+\t... | 2025-01-02T19:18:01 |
rust-lang/rust | 070102bb1bc628f1b380db80f3e92c382259fb94 | 0f4176d68293b3e7ccf146475ca590dd3f476c6e | fix building sysroot for JSON targets | [
{
"path": "src/tools/miri/cargo-miri/src/setup.rs",
"patch": "@@ -88,6 +88,8 @@ pub fn setup(\n };\n let cargo_cmd = {\n let mut command = cargo();\n+ // Allow JSON targets since users do not have a good way to set this flag otherwise.\n+ command.arg(\"-Zjson-target-spec\");\n ... | 2026-02-01T11:56:35 |
nodejs/node | 8e9686d9c94d8580b9baa5bd1822260fe95ca08e | 897e39a149dea5af027bb6bb3ae38e9c9332f8cc | test: fix Windows native test suites
2 PRs that landed independently caused this issue which makes every
native suites run in CI fail on Windows. This is just a quick patch to
unblock the CI.
Refs: https://github.com/nodejs/node/pull/52905
Refs: https://github.com/nodejs/node/pull/52646
PR-URL: https://github.com/nod... | [
{
"path": "test/embedding/test-embedding.js",
"patch": "@@ -152,6 +152,12 @@ for (const extraSnapshotArgs of [\n { cwd: tmpdir.path });\n }\n \n+// Skipping rest of the test on Windows because it fails in the CI\n+// TODO(StefanStojanovic): Reenable rest of the test after fixing it\n+if (common.isWindow... | 2024-05-27T18:56:59 |
vercel/next.js | 0c454dbfff0b41d8be92e09929453fd9a4581061 | e1b9236983fd3e80cc6a43de3d30a7db67dc4b91 | feat: rspack use swc to warn for edge runtime (#80485)
Rspack's decision to avoid parser hooks, I propose discussing
alternative approaches to implement code analysis in middleware plugins.
A alternative code analysis approach. During the `finishModules` phase,
implement a custom warnForEdgeRuntime method via N-API t... | [
{
"path": "crates/napi/src/rspack.rs",
"patch": "@@ -1,4 +1,4 @@\n-use std::{fs, path::PathBuf, sync::Arc};\n+use std::{cell::RefCell, fs, path::PathBuf, sync::Arc};\n \n use napi::bindgen_prelude::*;\n use swc_core::{\n@@ -7,18 +7,20 @@ use swc_core::{\n try_with_handler,\n },\n common::{\n... | 2025-06-18T00:19:07 |
facebook/react | 5945e068abf1da4aec24aba2839abfbb0fe94a3d | a1c62b8a7635c0bc51e477ba5437df9be5a9e64f | [Flight] Instrument the Promise for Async Module instead of using a Module Cache (#26985)
Currently, since we use a module cache for async modules, it doesn't
automatically get updated when the module registry gets updated (HMR).
This technique ensures that if Webpack replaces the module (HMR) then
we'll get the ... | [
{
"path": "fixtures/flight/config/jest/babelTransform.js",
"patch": "@@ -1,29 +0,0 @@\n-'use strict';\n-\n-const babelJest = require('babel-jest').default;\n-\n-const hasJsxRuntime = (() => {\n- if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'true') {\n- return false;\n- }\n-\n- try {\n- require.res... | 2023-06-28T18:30:09 |
electron/electron | 1432f9bb657489cabc33cd73ad4508e5782dc093 | 6a798b1c5846f43834eacf57b1651191318bf54e | chore: reland “fix ambiguous reference gcc compile error” (#36544)
This is a reland of #35714. The broken code got reintroduced in #35310 due to a mismerge. | [
{
"path": "shell/browser/serial/electron_serial_delegate.h",
"patch": "@@ -45,9 +45,9 @@ class ElectronSerialDelegate : public content::SerialDelegate,\n device::mojom::SerialPortManager* GetPortManager(\n content::RenderFrameHost* frame) override;\n void AddObserver(content::RenderFrameHost* fram... | 2022-12-13T18:55:08 |
rust-lang/rust | 41577bca066750322eedd056df12b338ffcaab89 | 9aebf045fb16941e2273aaba2a6d44231dad84e1 | refactor: Remove unused comments related to SyntaxErrorKind | [
{
"path": "src/tools/rust-analyzer/crates/syntax/src/syntax_error.rs",
"patch": "@@ -9,16 +9,6 @@ use crate::{TextRange, TextSize};\n #[derive(Debug, Clone, PartialEq, Eq, Hash)]\n pub struct SyntaxError(String, TextRange);\n \n-// FIXME: there was an unused SyntaxErrorKind previously (before this enum was ... | 2026-02-01T20:18:12 |
golang/go | 7181118a851bc22cf7acc604fe24940eb4926288 | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | net/http: check server shutting down before processing the request
The root cause of issue #65802 is a small race condition that occurs between
two events:
1. During the HTTP server shutdown, a connection in an idle state is identified
and closed.
2. The connection, although idle, has just finished reading a complete... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2006,6 +2006,9 @@ func (c *conn) serve(ctx context.Context) {\n \t\t\t// If we read any bytes off the wire, we're active.\n \t\t\tc.setState(c.rwc, StateActive, runHooks)\n \t\t}\n+\t\tif c.server.shuttingDown() {\n+\t\t\treturn\n+\t\t}\n \t\tif err != nil {... | 2024-02-20T07:18:11 |
nodejs/node | 72a4470688db95cd5f4bd7f4f685fca630716253 | 33d4f299115d1d098c4c8e01e4b3c7c5be57f1b5 | doc: fix format in `esm.md`
PR-URL: https://github.com/nodejs/node/pull/53170
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/esm.md",
"patch": "@@ -366,9 +366,9 @@ added:\n > Stability: 1.2 - Release candidate\n \n * {string} The full absolute path and filename of the current module, with\n-* symlinks resolved.\n+ symlinks resolved.\n * This is the same as the [`url.fileURLToPath()`][] of the\n-* [`import.meta... | 2024-05-27T17:51:10 |
facebook/react | 822386f252fd1f0e949efa904a1ed790133329f7 | 80d9a40114bb43c07d021e8254790852f450bd2b | Fix: Detect infinite update loops caused by render phase updates (#26625)
This PR contains a regression test and two separate fixes: a targeted
fix, and a more general one that's designed as a last-resort guard
against these types of bugs (both bugs in app code and bugs in React).
I confirmed that each of these f... | [
{
"path": "packages/react-dom/src/__tests__/ReactUpdates-test.js",
"patch": "@@ -1620,6 +1620,64 @@ describe('ReactUpdates', () => {\n });\n });\n \n+ it(\"does not infinite loop if there's a synchronous render phase update on another component\", () => {\n+ let setState;\n+ function App() {\n+... | 2023-06-27T17:26:35 |
vercel/next.js | 22ac035b3524b760d20c26660c622e0a9b7edb33 | b82ada30b265ac29ce8f00834d38ea6f0b9747d5 | Normalize filepaths when parsing patterns from js values (#80511)
## Normalize Windows file paths in pattern construction
When interpreting js_values as `Pattern` objects for interpretation, normalize windows file endings away.
Also enable debug_assertions in unit tests.
### Why?
Enabling debug assertions on CI wil... | [
{
"path": "Cargo.toml",
"patch": "@@ -241,6 +241,12 @@ opt-level = 3\n [profile.release.package.serde]\n opt-level = 3\n \n+# Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n+[profile.release-with-assertions]\n+inherits ... | 2025-06-17T23:00:08 |
rust-lang/rust | 675656188786ebb1444b5ea7baece40d8afa51ab | c95210f013cd0e607b4932cc841f90096037f191 | fix test after rebase | [
{
"path": "tests/ui/suggestions/derive-clone-already-present-issue-146515.rs",
"patch": "@@ -2,8 +2,8 @@\n \n use std::rc::Rc;\n \n-#[derive(Clone)]\n-struct ContainsRc<T> {\n+#[derive(Clone)] //~ NOTE in this expansion\n+struct ContainsRc<T> { //~ NOTE derive introduces an implicit `T: Clone` bound\n v... | 2026-02-01T18:31:21 |
golang/go | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | 4c0a47a8ff74c5fe4366e1016250607943562569 | cmd/compile,cmd/link: move to DWARF5-style location lists
This patch updates the compiler to generate DWARF5-style location
lists (e.g. entries that feed into .debug_loclists) as opposed to
DWARF4-style location lists (which wind up in .debug_loc). The DWARF5
format is much more compact, and can make indirect referenc... | [
{
"path": "src/cmd/compile/internal/ssa/debug.go",
"patch": "@@ -1486,8 +1486,67 @@ func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {\n \tstate.lists[varID] = list\n }\n \n-// PutLocationList adds list (a location list in its intermediate representation) to listSym.\n+// PutLo... | 2024-12-13T01:47:30 |
facebook/react | 6aacd3fa1567ed35c7ae4a69627ec1a1543df760 | 8ec962d825fc948ffda5ab863e639cd4158935ba | fix[devtools/profilingCache-test]: specify correct version gate for test (#27008)
- Correctly gate the test to `[18.0.0, 18.2.0]` versions of react, as it
was initially defined before
https://github.com/facebook/react/pull/26742
- I have recently fixed the gating logic in
https://github.com/facebook/react/pull/269... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -938,11 +938,51 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion >= 17\n- // @reactVersion < 18\n+ // @reactVersion >= 18.0.0\n+ // @reactVersion <= 18.2.0\n+ it('should handle unex... | 2023-06-26T16:37:53 |
nodejs/node | 33d4f299115d1d098c4c8e01e4b3c7c5be57f1b5 | bd151552ef35b0eed415eb1c50d30dafd341cee8 | doc: fix wrong variable name in example of `timers.tick()`
Change variable name from `twoSeconds` to `threeSeconds` because
actual value is 3000(ms). And add missing supported timer
value(clearImmediate). Plus, fix typo(implicity -> implicitly).
PR-URL: https://github.com/nodejs/node/pull/53147
Reviewed-By: Colin Ihr... | [
{
"path": "doc/api/test.md",
"patch": "@@ -2234,10 +2234,10 @@ test('mocks setTimeout to be executed synchronously without having to actually w\n const nineSecs = 9000;\n setTimeout(fn, nineSecs);\n \n- const twoSeconds = 3000;\n- context.mock.timers.tick(twoSeconds);\n- context.mock.timers.tick(twoS... | 2024-05-27T14:22:45 |
electron/electron | 8acf6039e78725918af5797fad6fc4f7cf1e177c | 2a26cef577dbf6cf3bf52959a86af311e2b56b96 | chore: bump chromium to 110.0.5451.0 (main) (#36394)
* chore: bump chromium in DEPS to 110.0.5425.0
* chore: bump chromium in DEPS to 110.0.5427.0
* chore: bump chromium in DEPS to 110.0.5429.0
* chore: bump chromium in DEPS to 110.0.5431.0
* chore: update patches/chromium/picture-in-picture.patch to fix u... | [
{
"path": "BUILD.gn",
"patch": "@@ -746,7 +746,7 @@ source_set(\"electron_lib\") {\n \"//components/update_client:update_client\",\n \"//components/zoom\",\n \"//extensions/browser\",\n- \"//extensions/browser:core_api_provider\",\n+ \"//extensions/browser/api:api_provider\",\n ... | 2022-12-05T22:59:19 |
vercel/next.js | 3e27abf43350cfcb10ba6839e7749dd80a628139 | 55261c9f968ede7fbeb49dece7dce1884d8df4f3 | [devtools] fork next-logo (#80457)
Following up on https://github.com/vercel/next.js/pull/80456, fork the
next-logo as well as it is coupled with the indicator.
Looking at the current
[next-logo.tsx](https://github.com/vercel/next.js/blob/1d2c31d5907fb5d9c4ed0bfbf73b2430f27c48a7/packages/next/src/next-devtools/dev-ov... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.tsx",
"patch": "@@ -2,9 +2,9 @@ import type { CSSProperties } from 'react'\n import type { OverlayState, OverlayDispatch } from '../../shared'\n import type { DevToolsScale } from '../errors/dev-tools-ind... | 2025-06-17T16:35:04 |
rust-lang/rust | 23b766ce631dc90c89f1c71878058a2618b7b8cd | 20000ca25a90c1704e02e349b9583b0bb00086b2 | fix typo | [
{
"path": "compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs",
"patch": "@@ -1937,7 +1937,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n self.type_implements_trait_shallow(clone_trait_did, expected_ty, self.param_env)\n {\n let manually_impl = \"consider ... | 2026-01-18T21:43:18 |
golang/go | 4c0a47a8ff74c5fe4366e1016250607943562569 | 4f45b2b7e079fc03d3444642e8a33ce6f959c6a6 | cmd/compile,cmd/link: move to DWARF5-style range lists
This patch updates the compiler to generate DWARF5-style range lists
(e.g. entries that feed into .debug_rnglists) as opposed to
DWARF4-style range lists (which wind up in .debug_ranges). The DWARF5
format is much more compact, and can make indirect references to ... | [
{
"path": "src/cmd/internal/dwarf/dwarf.go",
"patch": "@@ -1059,12 +1059,41 @@ func PutBasedRanges(ctxt Context, sym Sym, ranges []Range) {\n \tctxt.AddInt(sym, ps, 0)\n }\n \n+// PutRngListRanges writes a DWARF5-style set of rangelist entries to sym,\n+// using base as a starting/base address.\n+func PutRn... | 2024-12-12T00:20:58 |
facebook/react | 8ec962d825fc948ffda5ab863e639cd4158935ba | 70e998a1064cc1e8e8f9103e0c00d37fbbcf71c1 | fix[devtools/ci]: fixed incorrect condition calculation for @reactVersion annotation (#26997)
Suppose that you have this setup for devtools test:
```
// @reactVersion <= 18.1
// @reactVersion >= 17.1
```
With previous implementation, the accumulated condition will be `"<=
18.1" && ">= 17.1"`, which is just `">... | [
{
"path": "packages/react-devtools-extensions/src/__tests__/xGoogleIgnoreList-test.js",
"patch": "@@ -13,7 +13,7 @@ import path from 'path';\n import {rimrafSync} from 'rimraf';\n \n describe('x_google_ignoreList source map extension', () => {\n- jest.setTimeout(30 * 1000);\n+ jest.setTimeout(60 * 1000);\... | 2023-06-23T15:45:53 |
nodejs/node | ff659faeb8858a9fba70027ccfb1a0251fd64e1f | 892d360ba3f1d44f1486676a87d6e969ce3138a9 | fs: mark recursive cp methods as stable
PR-URL: https://github.com/nodejs/node/pull/53127
Fixes: https://github.com/nodejs/node/issues/44598
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mohammed ... | [
{
"path": "doc/api/fs.md",
"patch": "@@ -1021,6 +1021,9 @@ try {\n <!-- YAML\n added: v16.7.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/53127\n+ description: This API is no longer experimental.\n - version:\n - v20.1.0\n - v18.17.0\n@@ -1035,8 +1038,6... | 2024-05-26T21:47:03 |
electron/electron | 993d0337a78bd361a3ce89364e811eb4a25c434f | b90a5baa6dc7f745bf8779dd79d51229a3f8593d | docs: fix broken links (#36519)
* docs: fix broken links
* docs: change link to navigator.getUserMedia
Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
* docs: fix link in examples.md
Co-authored-by: Jeremy Rose <nornagon@nornagon.net> | [
{
"path": "docs/api/app.md",
"patch": "@@ -1509,7 +1509,6 @@ dock on macOS.\n \n A `boolean` property that returns `true` if the app is packaged, `false` otherwise. For many apps, this property can be used to distinguish development and production environments.\n \n-[dock-menu]:https://developer.apple.com/... | 2022-12-05T18:18:57 |
vercel/next.js | 55261c9f968ede7fbeb49dece7dce1884d8df4f3 | ecd1abeb8dbdbed9798d27eea195e7a5f5ea1c34 | [devtools] fork devtools-indicator (#80456)
Unlike the menu popover (legacy), the panel UI can be decoupled from the
indicator and communicate with the dispatcher. We don't need those refs,
animation, etc. anymore, so removed them as well.
Also, it feels good to move out of the `errors/` directory as it's no
longer c... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.stories.tsx",
"patch": "@@ -0,0 +1,69 @@\n+import type { Meta, StoryObj } from '@storybook/react'\n+import type { OverlayState } from '../../shared'\n+\n+import { DevToolsIndicator } from './devtools-indi... | 2025-06-17T16:32:41 |
rust-lang/rust | b9e5cf7806b824c1080b66755701840f9d88f80b | aebf1fdcf9c3b1e7b674499ce10aee43960569a6 | Fix incorrect suggestion caused by change in derive expansion Span | [
{
"path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/dyn_trait.rs",
"patch": "@@ -592,7 +592,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n if span.can_be_used_for_suggestions()\n && poly_trait_ref.trait_ref.trait_def_id().is_some()\n && !self.maybe_suggest... | 2026-01-18T20:57:27 |
facebook/react | 0892e305bc8397fee6db6e8e14d36fcb99b49de9 | f850d3b26524db907f51592dcdf5d811e6aefc2e | [eslint-plugin] Clean up error message
Omits some unncessary details from the error message surfaced in eslint | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts",
"patch": "@@ -72,7 +72,7 @@ const tests: ForgetTestCases = {\n errors: [\n {\n message:\n- \"[ReactForget] InvalidReact: Ref values (the `current` property) may not be... | 2023-06-28T15:43:56 |
golang/go | 4f45b2b7e079fc03d3444642e8a33ce6f959c6a6 | 82791889ccfbcf7656b31211619a213b7f3109c5 | cmd/compile: fix out of memory when inlining closure
CL 629195 strongly favor closure inlining, allowing closures to be
inlined more aggressively.
However, if the closure body contains a call to a function, which itself
is one of the call arguments, it causes the infinite inlining.
Fixing this by prevent this kind o... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1033,6 +1033,28 @@ func canInlineCallExpr(callerfn *ir.Func, n *ir.CallExpr, callee *ir.Func, bigCa\n \t\t\treturn false, 0, false\n \t\t}\n \t}\n+\tdo := func(fn *ir.Func) bool {\n+\t\t// Can't recursively inline a function if the function b... | 2025-03-03T13:45:13 |
nodejs/node | 892d360ba3f1d44f1486676a87d6e969ce3138a9 | dc609f5a81044a37cbcaff92c7fc05fcef58c52a | doc: fix wrong function name in example of `context.plan()`
t.subtest -> t.test
Refs: https://github.com/nodejs/node/pull/52860
PR-URL: https://github.com/nodejs/node/pull/53140
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
... | [
{
"path": "doc/api/test.md",
"patch": "@@ -3081,7 +3081,7 @@ expected count, the test will fail.\n test('top level test', (t) => {\n t.plan(2);\n t.assert.ok('some relevant assertion here');\n- t.subtest('subtest', () => {});\n+ t.test('subtest', () => {});\n });\n ```\n ",
"additions": 1,
"de... | 2024-05-26T15:03:34 |
rust-lang/rust | 085da0cee4e6de6408c401ea2a807eff6b701307 | b88fb8a0b0422697a8fe1573598795d7052e936c | On E0308 caused by cloning a reference due to missing bounds, account for derive
On type errors where the difference is expecting an owned type and getting a reference, if the expression is a `.clone()` call and the type is annotated with `#[derive(Clone)]`, we now explain implicit bounds and suggest manually implemen... | [
{
"path": "compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs",
"patch": "@@ -1932,25 +1932,96 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n None,\n );\n } else {\n+ let mut suggest_derive = true;\n if let Some(errors) =\n ... | 2026-01-18T20:23:18 |
vercel/next.js | 45263d66e47c66bdddf38f6ff379aef75233fd99 | d2d2bf94695c65a12b31bd81c7c1a7f948782969 | [fix] clone the config module to avoid mutation (#80573) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -1267,10 +1267,12 @@ export default async function loadConfig(\n throw err\n }\n \n- const userConfig = (await normalizeConfig(\n+ // Clone a new userConfig each time to avoid mutating the original\n+ const loadedConfig = (await... | 2025-06-17T15:22:59 |
electron/electron | b90a5baa6dc7f745bf8779dd79d51229a3f8593d | 909ee0ed6bbdf57ebaeda027b67a3a44185f6f7d | fix: new WebAssembly API support in Node.js (#36420) | [
{
"path": "script/node-disabled-tests.json",
"patch": "@@ -121,7 +121,6 @@\n \"parallel/test-trace-events-v8\",\n \"parallel/test-trace-events-vm\",\n \"parallel/test-trace-events-worker-metadata\",\n- \"parallel/test-wasm-web-api\",\n \"parallel/test-webcrypto-derivebits-cfrg\",\n \"parallel/tes... | 2022-12-05T17:07:49 |
facebook/react | f850d3b26524db907f51592dcdf5d811e6aefc2e | dda59d093a9dae733f674ba91557a2ac7c1cb61b | Improve remaining InvalidReact error messages | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -2551,9 +2551,9 @@ function lowerIdentifierForAssignment(\n if (kind === InstructionKind.Reassign) {\n // Trying to reassign a global is not allowed\n builder.errors.push({\n- reason: `(Bu... | 2023-06-28T15:43:56 |
golang/go | 82791889ccfbcf7656b31211619a213b7f3109c5 | 3b9d10cce787a6ab358a489b604edccb5414baf2 | crypto/internal/fips140/bigmod/_asm: update avo to v0.6.0
avo v0.4.0 x/tools dependency crashes while parsing with Go 1.25.
Change-Id: Ic951066b0b39b477887ad0e32be44f4d88d4c2f1
Reviewed-on: https://go-review.googlesource.com/c/go/+/653175
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Daniel Martí <mvdan... | [
{
"path": "src/crypto/internal/fips140/bigmod/_asm/go.mod",
"patch": "@@ -1,12 +1,10 @@\n module crypto/internal/fips140/bigmod/_asm\n \n-go 1.19\n+go 1.25\n \n-require github.com/mmcloughlin/avo v0.4.0\n+require github.com/mmcloughlin/avo v0.6.0\n \n require (\n-\tgolang.org/x/mod v0.4.2 // indirect\n-\tgo... | 2025-02-27T01:43:43 |
rust-lang/rust | 679f38c1259d96463c5f04f175846501fbca2a15 | 7b62d97abdd38850621153e806cc7b0ee6ab4289 | On E0277 pointing at bound in derive, suggest manual impl
When encountering a bound coming from a derive macro, suggest manual impl of the trait.
Use the span for the specific param when adding bounds in builtin derive macros, so the diagnostic will point at them as well as the derive macro itself.
```
error[E0277]:... | [
{
"path": "compiler/rustc_builtin_macros/src/deriving/generic/mod.rs",
"patch": "@@ -638,27 +638,27 @@ impl<'a> TraitDef<'a> {\n GenericParamKind::Type { .. } => {\n // Extra restrictions on the generics parameters to the\n // type being derived upon.\... | 2026-01-18T02:29:33 |
nodejs/node | dc609f5a81044a37cbcaff92c7fc05fcef58c52a | aaca18b54efc74e8c005547fe085d08168dc9a95 | meta: remove `initializeCommand` from devcontainer
PR-URL: https://github.com/nodejs/node/pull/53137
Fixes: https://github.com/nodejs/node/issues/53129
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: James M Snell <jasnell@gmail.... | [
{
"path": ".devcontainer/devcontainer.json",
"patch": "@@ -7,7 +7,6 @@\n \"visualstudioexptteam.vscodeintellicode\"\n ],\n \"image\": \"nodejs/devcontainer:nightly\",\n- \"initializeCommand\": \"docker system prune -f -a\",\n \"settings\": {\n \"terminal.integrated.profiles.linux\": {\n ... | 2024-05-26T12:34:11 |
vercel/next.js | d2d2bf94695c65a12b31bd81c7c1a7f948782969 | 77c45462f9b50e9328a77337c669b417e232eaa7 | fix: mark file system incremental cache as external so it's memory is shared (#80586)
This moves the in-memory LRU cache on the file system cache handler as
external so that it's shared between different instances of the file
system cache module. | [
{
"path": "packages/next/src/server/lib/incremental-cache/file-system-cache.ts",
"patch": "@@ -1,5 +1,5 @@\n import type { RouteMetadata } from '../../../export/routes/types'\n-import type { CacheHandler, CacheHandlerContext, CacheHandlerValue } from './'\n+import type { CacheHandler, CacheHandlerContext, C... | 2025-06-17T15:15:56 |
electron/electron | 79d2fc9c234059baf474e7f33a722bd1cb142e39 | d092e6bda4c7ba840f76ef835135f6ac94e02803 | build: fixup mksnapshot args on linux (#36531) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -707,7 +707,7 @@ step-mksnapshot-build: &step-mksnapshot-build\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args\n # ... | 2022-12-01T19:12:32 |
facebook/react | dda59d093a9dae733f674ba91557a2ac7c1cb61b | 3fb89373913009eca2a7810d6d1729de414b5379 | Add InvalidJS error severity | [
{
"path": "compiler/forget/apps/playground/lib/forgetMonacoDiagnostics.ts",
"patch": "@@ -19,10 +19,9 @@ function mapForgetSeverityToMonaco(\n ): MarkerSeverity {\n switch (level) {\n case ErrorSeverity.Todo:\n- case ErrorSeverity.InvalidInput:\n- return monaco.MarkerSeverity.Error;\n- defa... | 2023-06-28T15:43:55 |
golang/go | 3b9d10cce787a6ab358a489b604edccb5414baf2 | 2ce1fb4220e1978d8ea7c615f8ae2d9170985640 | net/textproto: document enforcement of RFC 9112 for headers
Fixes #68590
Change-Id: Ie7cf1fe8379182f86317d5ebb7f45a404ecd70e9
Reviewed-on: https://go-review.googlesource.com/c/go/+/601555
Auto-Submit: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/net/textproto/reader.go",
"patch": "@@ -642,8 +642,8 @@ func (r *Reader) upcomingHeaderKeys() (n int) {\n // the rest are converted to lowercase. For example, the\n // canonical key for \"accept-encoding\" is \"Accept-Encoding\".\n // MIME header keys are assumed to be ASCII only.\n-// If s c... | 2024-07-27T08:15:31 |
rust-lang/rust | 7b62d97abdd38850621153e806cc7b0ee6ab4289 | b7fb22086524eca64ad2b0ef778a480e6c7a8b7f | Mention implicit bounds from `#[derive(Clone)]` on moved value
When encountering a value that has a borrow checker error where the type was previously moved, when suggesting cloning verify that it is not already being derived. If it is, explain why the `derive(Clone)` doesn't apply:
```
note: if `TypedAddress<T>` imp... | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs",
"patch": "@@ -1256,7 +1256,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n self.suggest_cloning_inner(err, ty, expr);\n }\n } else if let ty::Adt(def, args) = ty.kind()\n- && ... | 2026-01-17T00:19:20 |
nodejs/node | 19f0bcaa621f37023fbd35dc16c7a12f69e48345 | 177b8b957ba8f84373af1ff2a3baed943d1a8e08 | build: fix -j propagation to ninja
The expression containing MAKEFLAGS must be evaluated in a deferred
context for the propagation to work in GNU make. Otherwise, regardless
of the -j value passed to make, ninja will spawn a potentially greater
number of parallel compilation tasks, which can quickly exhaust all
availa... | [
{
"path": "Makefile",
"patch": "@@ -146,7 +146,8 @@ endif\n ifdef JOBS\n \tNINJA_ARGS := $(NINJA_ARGS) -j$(JOBS)\n else\n-\tNINJA_ARGS := $(NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))\n+\tIMMEDIATE_NINJA_ARGS := $(NINJA_ARGS)\n+\tNINJA_ARGS = $(IMMEDIATE_NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))\n endif\n $(NODE_EX... | 2024-05-25T17:37:05 |
vercel/next.js | 2caf822d5264cc99c656e5a5e939d649b071f38d | e2e82e99571417a26e90788a86b73b2a34fdface | fix: Rspack dev gets stuck after removing a page (#80555)
Rspack's incremental build algorithm causes a situation where deleted
entries in dynamic entries still get built.
If a page is deleted, an infinite loop occurs in the corresponding
`next-app-loader`, causing the entire compilation to hang.
The root cause of t... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -708,5 +708,6 @@\n \"707\": \"Invariant app-page handler received invalid cache entry %s\",\n \"708\": \"Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace needs to be reconnected after the next page reload.\",\n \"709\":... | 2025-06-17T05:34:12 |
facebook/react | 3fb89373913009eca2a7810d6d1729de414b5379 | 448ed2b67b7bbfe2882aadf9eb92e252a0ff4b1f | Add first example of error suggestion | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -10,6 +10,7 @@ import * as t from \"@babel/types\";\n import {\n CompilerError,\n CompilerErrorDetail,\n+ CompilerSuggestionOperation,\n ErrorSeverity,\n } from \"../CompilerError\";\n import { Gene... | 2023-06-27T18:01:40 |
golang/go | 7e81bcf39fe40e975e2c72375ab28ae9bf272d62 | 0a0e6af39b0ff38f7d5a8a9f3f6d38ebc081663f | go/types, types2: remove remaining mentions of core type in error messages
The implementatiom still calls coreType in places and refers to
"core types" in comments, but user-visible error messages don't
know about core types anymore.
This brings the user-visible part of the implementation in sync with
the spec which ... | [
{
"path": "src/cmd/compile/internal/types2/index.go",
"patch": "@@ -217,7 +217,7 @@ func (check *Checker) sliceExpr(x *operand, e *syntax.SliceExpr) {\n \tlength := int64(-1) // valid if >= 0\n \tswitch u := coreString(x.typ).(type) {\n \tcase nil:\n-\t\tcheck.errorf(x, NonSliceableOperand, invalidOp+\"cann... | 2025-03-03T20:26:51 |
rust-lang/rust | 0a60bd653d3bd42752e4e454567ae5fcb96a2b49 | 2292d53b7b5dc3989167e753d3ac4422b321b426 | fix: remove trailing newline for tidy | [
{
"path": "tests/codegen-llvm/slp-vectorization-mul3.rs",
"patch": "@@ -20,4 +20,4 @@ pub fn mul3(previous: &[u8], current: &mut [u8]) {\n chunk.copy_from_slice(&new_chunk);\n c_bpp.copy_from_slice(b_bpp);\n }\n-}\n\\ No newline at end of file\n+}",
"additions": 1,
"deletions": 1... | 2026-02-01T16:39:05 |
electron/electron | eb291485bb655c5e2f18224481e3858de3dcb8dc | 4ff0642af745e57df6736b9d68fe0228b8e28968 | chore: drop support for Windows 7 / 8 / 8.1 (#36427)
* chore: drop support for Windows 7 & 8
* chore: remove disable-redraw-lock.patch
* chore: update patches
* Update docs/breaking-changes.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update docs/breaking-changes.md
Co-authored-by: Keeley Hammo... | [
{
"path": "README.md",
"patch": "@@ -39,7 +39,7 @@ For more installation options and troubleshooting tips, see\n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n * macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was adde... | 2022-12-01T01:13:29 |
vercel/next.js | 8f2e058c2435e78542f7160627180f0ff8c74cb5 | 0baf4041c4ea6791688699694b7520d502378afb | test: fix failures caused by format discrepancies between rspack and other bundlers (#80314)
This pull request updates error recovery tests to improve compatibility
with the Rspack bundler by introducing an `isRspack` flag and modifying
test cases to handle Rspack-specific error formats. The changes ensure
that runtim... | [
{
"path": "test/development/acceptance-app/error-recovery.test.ts",
"patch": "@@ -5,6 +5,8 @@ import { check } from 'next-test-utils'\n import path from 'path'\n import { outdent } from 'outdent'\n \n+const isRspack = !!process.env.NEXT_RSPACK\n+\n describe('Error recovery app', () => {\n const { next, is... | 2025-06-17T04:28:14 |
nodejs/node | 0cbbab9a4d6a11c1fc219acfad54f05f51fec17b | 2079a7aec4323e32ed4ae72bc56ac9125c72fe79 | build: exit on unsupported host OS for Android
The Android configure script throws an unhelpful error message telling
the user that `toolchain_path` is not defined when the script is run on
an unsupported host OS, exit with a more helpful message instead while
listing the supported host OSes.
PR-URL: https://github.c... | [
{
"path": "android_configure.py",
"patch": "@@ -10,8 +10,8 @@ def patch_android():\n os.system('patch -f ./deps/v8/src/trap-handler/trap-handler.h < ./android-patches/trap-handler.h.patch')\n print(\"\\033[92mInfo: \\033[0m\" + \"Tried to patch.\")\n \n-if platform.system() == \"Windows\":\n- ... | 2024-05-25T07:39:56 |
facebook/react | 448ed2b67b7bbfe2882aadf9eb92e252a0ff4b1f | c3d678985734c3657a551b88e03bbfca36228ae8 | Refactor CompilerErrorDetails
- Made most static methods on CompilerError take a single options object as an
argument. With the exception of invariant which takes a condition and an options
object. - Added a new `suggestions` field on CompilerErrorDetail, which we'll
use to provide eslint suggestions - Updated... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -6,7 +6,6 @@\n */\n \n import type { SourceLocation } from \"./HIR\";\n-import type { ExtractClassProperties } from \"./Utils/types\";\n import { assertExhaustive } from \"./Utils/utils\";\n \n export enum Err... | 2023-06-27T18:01:39 |
golang/go | 0a0e6af39b0ff38f7d5a8a9f3f6d38ebc081663f | 14647b0ac881f084f0063ddb32341fba71e1d2e4 | context: use atomic operation in ctx.Err
oos: darwin
goarch: arm64
pkg: context
cpu: Apple M1 Pro
│ /tmp/bench.0.mac │ /tmp/bench.1.mac │
│ sec/op │ sec/op vs base │
ErrOK-10 13.750n ± 1% 2.080n ± 0% -84.87% (p=0.000 n=10)
E... | [
{
"path": "src/context/benchmark_test.go",
"patch": "@@ -188,3 +188,23 @@ func BenchmarkDeepValueSameGoRoutine(b *testing.B) {\n \t\t})\n \t}\n }\n+\n+func BenchmarkErrOK(b *testing.B) {\n+\tctx, cancel := WithCancel(Background())\n+\tdefer cancel()\n+\tfor b.Loop() {\n+\t\tif err := ctx.Err(); err != nil {... | 2025-02-28T23:22:58 |
electron/electron | 4ff0642af745e57df6736b9d68fe0228b8e28968 | 835e248dfff8bb585770be18ed0df74b29e81c7b | fix: treat maxWidth/Height<=0 as unlimited (#36487) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -175,7 +175,11 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n int max_width = max_size.width() > 0 ? max_size.width() : INT_MAX;\n int max_height = max_size.height() > 0 ? max_size.height() : INT_MAX;\n bool hav... | 2022-12-01T01:02:22 |
nodejs/node | ccceae091aab8fa35d93a978b248ad02a68e1080 | bc13f23f7e25d750df9b0a7bfe891a3d69f995f3 | tools: update error message for Type Error
PR-URL: https://github.com/nodejs/node/pull/53047
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "tools/doc/type-parser.mjs",
"patch": "@@ -309,8 +309,8 @@ export function toLink(typeInput) {\n `<a href=\"${typeUrl}\" class=\"type\"><${typeTextFull}></a>`);\n } else {\n throw new Error(\n- `Unrecognized type: '${typeTextFull}'.\\n` +\n- `Please,... | 2024-05-25T01:20:02 |
vercel/next.js | d60157fc0b8f0c6b2caf189c0b24dae96e0e5683 | c6abe5ae767856badf0202814281855beb129392 | [devtools] Port cache invalidation logic from turbopack to webpack (#80184)
We want to support the "reset bundler cache" button in webpack/rspack. The webpack cache is a lot more stable, but it'd be good to have as a relative baseline once we have telemetry.
We don't use a persistent cache in rspack (it's an experime... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -707,5 +707,6 @@\n \"706\": \"Invariant: static responses cannot be streamed %s\",\n \"707\": \"Invariant app-page handler received invalid cache entry %s\",\n \"708\": \"Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace... | 2025-06-17T01:01:33 |
rust-lang/rust | 16b79b3310619ea5a31cc73e6b501102e6e55f3b | b6e4f13583eeb3ea5e7a8ec84d99407c9f1695a3 | fix: Fix upvar analysis of nested closures | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/expr_store.rs",
"patch": "@@ -474,8 +474,8 @@ impl ExpressionStore {\n match expr_only.binding_owners.get(&binding) {\n Some(it) => {\n // We assign expression ids in a way that outer closures will receive\n- ... | 2026-02-01T12:58:01 |
facebook/react | c3d678985734c3657a551b88e03bbfca36228ae8 | 6c4318e5c2a1b40e71e9cfb5330022dc63916119 | Reclassify existing errors
Most of these errors were incorrectly using InvalidInput as a catchall for
rejecting code. I went through each one and manually updated them to be more
accurate | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -1005,7 +1005,7 @@ function lowerExpression(\n } else {\n builder.errors.push({\n reason: `(BuildHIR::lowerExpression) Expected Identifier, got ${key.type} key in ObjectExpres... | 2023-06-27T18:01:39 |
golang/go | 05354fc3b431a5ff8281a145552b3f62178d560c | 26ba61dfad46f24a2a3138a40f738ecd22536edf | go/types, types2: remove remaining references to coreType in literals.go
For now, use commonUnder (formerly called sharedUnder) and update
error messages and comments. We can provide better error messages
in individual cases eventually.
For #70128.
Change-Id: I906ba9a0c768f6499c1683dc9be3ad27da8007a9
Reviewed-on: ht... | [
{
"path": "src/cmd/compile/internal/types2/literals.go",
"patch": "@@ -129,7 +129,7 @@ func (check *Checker) compositeLit(x *operand, e *syntax.CompositeLit, hint Type\n \t\ttyp = hint\n \t\tbase = typ\n \t\t// *T implies &T{}\n-\t\tif b, ok := deref(coreType(base)); ok {\n+\t\tif b, ok := deref(commonUnder... | 2025-02-26T23:23:59 |
electron/electron | 665cf03f741f3d0bcb0800db5bb31c0707e4987e | f527b8aa2a670edb84c6bda1f01623a69bc40212 | fix: handle Notification requireInteraction option (#36477) | [
{
"path": "shell/browser/notifications/platform_notification_service.cc",
"patch": "@@ -35,6 +35,9 @@ void OnWebNotificationAllowed(base::WeakPtr<Notification> notification,\n options.icon = icon;\n options.silent = audio_muted ? true : data.silent;\n options.has_reply = false;\n+ if (data.re... | 2022-11-30T21:18:35 |
vercel/next.js | 27fed1c1b6ef86c88d99749105256a6117e9c69b | 1e5bb42a817f08b55bd0821698b552d69ae3245b | docs: fix typo (#80501)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -135,7 +135,7 @@ export default function Loading() {\n }\n ```\n \n-Behind the scenes, Next.js will automatically wrap the `page.tsx` contents and in a `<Suspense>` boundary. The prefetched fallback UI will be shown while... | 2025-06-16T11:47:46 |
nodejs/node | bc13f23f7e25d750df9b0a7bfe891a3d69f995f3 | 501546e8f37059cd577041e23941b640d0d4d406 | build: fix `--enable-d8` builds
Add `v8_abseil` as a dependency for `d8` and use scraping to pick up
the list of source files (including the previously missing
`src/d8/d8-test.cc`).
PR-URL: https://github.com/nodejs/node/pull/53106
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Michael Dawson <midaws... | [
{
"path": "tools/v8_gypfiles/d8.gyp",
"patch": "@@ -20,6 +20,7 @@\n 'v8.gyp:v8_libbase',\n 'v8.gyp:v8_libplatform',\n 'v8.gyp:generate_bytecode_builtins_list',\n+ 'v8.gyp:v8_abseil',\n ],\n # Generated source files need this explicitly:\n 'include_dirs+': [\n... | 2024-05-24T17:32:09 |
facebook/react | 6c4318e5c2a1b40e71e9cfb5330022dc63916119 | e762d5730bb25f5faf463165d2b98af4865f0a16 | Add InvalidReact and InvalidConfig error severities | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -14,6 +14,14 @@ export enum ErrorSeverity {\n * Unexpected syntax or input that may not be safe to compile.\n */\n InvalidInput = \"InvalidInput\",\n+ /**\n+ * Code that breaks the rules of React.\n+... | 2023-06-27T18:01:38 |
rust-lang/rust | a208e6c8874c471ffa1a3d96fc7dd8913798f4c9 | 24a28332582ac25470c20079f0fdacf2c2e1b871 | maybe fix aarch64be unsigned vector tuple loads | [
{
"path": "library/stdarch/crates/core_arch/src/arm_shared/neon/generated.rs",
"patch": "@@ -17067,7 +17067,6 @@ pub unsafe fn vld1_p64_x4(a: *const p64) -> poly64x1x4_t {\n #[doc = \"## Safety\"]\n #[doc = \" * Neon intrinsic unsafe\"]\n #[inline(always)]\n-#[cfg(target_endian = \"little\")]\n #[target_fe... | 2026-01-30T20:35:56 |
golang/go | 26ba61dfad46f24a2a3138a40f738ecd22536edf | 19d0b3e81f4a072615f92fd6821c8ed2cee27c9f | go/types, types2: remove most remaining references to coreType in builtin.go
For now, use commonUnder (formerly called sharedUnder) and update
error messages and comments. We can provide better error messages
in individual cases eventually.
Kepp using coreType for make built-in for now because it must accept
differen... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -377,7 +377,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \n \tcase _Copy:\n \t\t// copy(x, y []T) int\n-\t\tdst, _ := coreType(x.typ).(*Slice)\n+\t\tdst, _ := commonUnder(check, x.typ, nil).(*Sli... | 2025-02-26T23:14:30 |
electron/electron | e3b7c3024f6f70155efb1022b691954280f983cb | 9f007b9afb5217b35ee3bb582024bf762d70e4ce | docs: fix loadExtension example (#36489) | [
{
"path": "docs/api/extensions.md",
"patch": "@@ -20,7 +20,7 @@ work). Extensions are installed per-`session`. To load an extension, call\n ```js\n const { session } = require('electron')\n \n-session.loadExtension('path/to/unpacked/extension').then(({ id }) => {\n+session.defaultSession.loadExtension('path... | 2022-11-30T19:29:02 |
facebook/react | 70e998a1064cc1e8e8f9103e0c00d37fbbcf71c1 | c8deb5db660f3f6eeca30d29b4bd48d9e82b3792 | Fix disableStrictPassiveEffect not working under Suspense (#26989)
In https://github.com/facebook/react/pull/26914 I added an extra logic
to turn off double useEffect if there is an `Offscreen`
tag. But `Suspense` uses `Offscreen` tag internally and that turns off
`disableStrictPassiveEffect` for everything. | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -760,10 +760,6 @@ export function createFiberFromOffscreen(\n lanes: Lanes,\n key: null | string,\n ): Fiber {\n- if (__DEV__) {\n- // StrictMode in Offscreen should always run double passive effects\n- mode &= ~NoStrictPassive... | 2023-06-22T20:12:30 |
vercel/next.js | 1e5bb42a817f08b55bd0821698b552d69ae3245b | 029c8638f71dd8360ab8215bc4582d0d99b19d92 | docs: fix typo (#80500)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -8,7 +8,7 @@ related:\n - app/guides/prefetching\n ---\n \n-In Next.js, routes are rendered on the server by default. This often means the client has to wait for a server response before a new route can be shown. Next... | 2025-06-16T11:46:52 |
nodejs/node | 501546e8f37059cd577041e23941b640d0d4d406 | 3fe35dc5afa498f8f75bb25a94bacb503520c6ca | test: increase allocation so it fails for the test
It used to be impossible to allocate 1e10 bytes but with a v8 update
this allocation can succeed. This results in 2x10GB allocations and
failure to test the failure :-)
Increase allocation to 1e20 bytes, which should fail for some time,
returning the test to using on... | [
{
"path": "test/parallel/test-buffer-failed-alloc-typed-arrays.js",
"patch": "@@ -12,7 +12,7 @@ const SlowBuffer = require('buffer').SlowBuffer;\n // whether or not to zero-fill was not being reset, causing TypedArrays to\n // allocate incorrectly.\n const zeroArray = new Uint32Array(10).fill(0);\n-const si... | 2024-05-24T09:56:03 |
golang/go | 4b1ac7bbfe3e8e4872b1a4651c527ea8be4a045f | f48b53f0f62c94fac8d835c8e1b48fab5b842bd3 | go/types, types2: remove references to core type in append
Writing explicit code for this case turned out to be simpler
and easier to reason about then relying on a helper functions
(except for typeset).
While at it, make append error messages more consistent.
For #70128.
Change-Id: I3dc79774249929de5061b4301ab2506... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -82,41 +82,61 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \n \tswitch id {\n \tcase _Append:\n-\t\t// append(s S, x ...T) S, where T is the element type of S\n-\t\t// spec: \"The variadic function... | 2025-02-26T17:57:31 |
electron/electron | 2c723d7e84dfab5ad97fc0927426a0b2cd7a15b5 | 16a7bd71024789fcabb9362888ee4638852b1eb1 | fix: enable crashpad for ELECTRON_RUN_AS_NODE processes (#36460)
* wip: enable crashpad for node processes
fix: add PID testing method
wip: plumb fd into child_process in node
* node::ProcessInitializationFlags::kNoDefaultSignalHandling
* chore: clean up debug logging
* chore: gate platform includes
... | [
{
"path": "filenames.gni",
"patch": "@@ -530,6 +530,7 @@ filenames = {\n \"shell/browser/window_list_observer.h\",\n \"shell/browser/zoom_level_delegate.cc\",\n \"shell/browser/zoom_level_delegate.h\",\n+ \"shell/common/api/crashpad_support.cc\",\n \"shell/common/api/electron_api_asar.cc\... | 2022-11-29T15:33:54 |
rust-lang/rust | 98380734814667ba50ad748d8130a77b06ebaa3f | 50e2330dce8a9d7a9adfeee2c219fc00487b4dbd | replace panic_any with resume_unwind on Client panic cancelled message | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/main_loop.rs",
"patch": "@@ -3,7 +3,7 @@ use proc_macro_api::{\n ProtocolFormat, bidirectional_protocol::msg as bidirectional, legacy_protocol::msg as legacy,\n version::CURRENT_API_VERSION,\n };\n-use std::panic::panic_any;\n+use std:... | 2026-01-18T15:40:32 |
facebook/react | c8deb5db660f3f6eeca30d29b4bd48d9e82b3792 | 6c84b505c746cd86bf55bee36faa15240273c2ce | fix[ci]: fixed jest configuration not to skip too many devtools tests (#26955)
## Summary
Running `yarn test --project devtools --build` currently skips all
non-gated (without `@reactVersion` directives) devtools tests. This is
not expected behaviour, these changes are fixing it.
There were multiple related PRs ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js",
"patch": "@@ -938,7 +938,8 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion = 17.0\n+ // @reactVersion >= 17\n+ // @reactVersion < 18\n it('should handle unexpectedly shallow suspense trees', ()... | 2023-06-22T08:33:05 |
vercel/next.js | 029c8638f71dd8360ab8215bc4582d0d99b19d92 | 4d133b0aeb1da1a376ef533271f2c8ea289639bc | docs: fix typos (#80503)
<!-- 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": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -297,7 +297,7 @@ However, disabling prefetching comes with trade-offs:\n - **Static routes** will only be fetched when the user clicks the link.\n - **Dynamic routes** will need to be rendered on the server first before t... | 2025-06-16T11:44:53 |
golang/go | f48b53f0f62c94fac8d835c8e1b48fab5b842bd3 | 0312e31ed197b3bf1434e8dbb283f0d2374d7457 | testing: fix testing.B.Loop doc on loop condition
As mentioned by
https://github.com/golang/go/issues/61515#issuecomment-2656656554,
the documentation should be relaxed.
Change-Id: I9f18301e1a4e4d9a72c9fa0b1132b1ba3cc57b03
Reviewed-on: https://go-review.googlesource.com/c/go/+/651435
LUCI-TryBot-Result: Go LUCI <gola... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -426,9 +426,9 @@ func (b *B) loopSlowPath() bool {\n // The compiler never optimizes away calls to functions within the body of a\n // \"for b.Loop() { ... }\" loop. This prevents surprises that can otherwise occur\n // if the compiler determines that the r... | 2025-02-21T16:23:36 |
nodejs/node | c7a63b074017b57e5c8a3341151696039ae49499 | f05baff6ade84d9e7f66c9d3f425c117dc161756 | watch: fix variable naming
PR-URL: https://github.com/nodejs/node/pull/53101
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> | [
{
"path": "lib/internal/watch_mode/files_watcher.js",
"patch": "@@ -27,7 +27,7 @@ const supportsRecursiveWatching = process.platform === 'win32' ||\n class FilesWatcher extends EventEmitter {\n #watchers = new SafeMap();\n #filteredFiles = new SafeSet();\n- #depencencyOwners = new SafeMap();\n+ #depen... | 2024-05-24T05:31:05 |
rust-lang/rust | 50e2330dce8a9d7a9adfeee2c219fc00487b4dbd | a37aa50bca6a7f424907e9f3f638a15935963ef8 | add suggested changes: have a internal error variant, comment on unwindsafe | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-api/src/bidirectional_protocol.rs",
"patch": "@@ -56,6 +56,8 @@ pub fn run_conversation(\n return Ok(BidirectionalMessage::Response(response));\n }\n BidirectionalMessage::SubRequest(sr) => {\n+ // TO... | 2026-01-11T12:57:30 |
facebook/react | 6c84b505c746cd86bf55bee36faa15240273c2ce | 794b770dbd6be48d42438ea76911d32c37c7dd6e | fix[devtools/standalone]: update webpack configurations (#26963)
## Summary
Overlooked when was working on
https://github.com/facebook/react/pull/26887.
- Added `webpack` packages as dev dependencies to `react-devtools-core`,
because it calls webpack to build
- Added `process` package as dev dependency, because... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -29,6 +29,10 @@\n \"ws\": \"^7\"\n },\n \"devDependencies\": {\n- \"cross-env\": \"^3.1.4\"\n+ \"cross-env\": \"^3.1.4\",\n+ \"process\": \"0.11.10\",\n+ \"webpack\": \"^5.82.1\",\n+ \"webpack-cli\": \"^5.1.1\",\n+ ... | 2023-06-22T07:55:20 |
electron/electron | 16a7bd71024789fcabb9362888ee4638852b1eb1 | bbb590b7776cd9cbb15a4866171e71408924e988 | fix: reimplement Tray with StatusIconLinuxDbus on Linux (#36333) | [
{
"path": "BUILD.gn",
"patch": "@@ -632,16 +632,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/certificate_manager_model.cc\",\n \"shell/browser/certificate_manager_model.h\",\n- \"shell/browser/ui/gtk/app_indicator_icon.cc\",\n- \"shell/browser/ui/gtk/app_ind... | 2022-11-28T19:36:25 |
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.