From 07c1210132925a7105e351e0b59f94557fedb91a Mon Sep 17 00:00:00 2001 From: Lachlan Miller Date: Tue, 4 Apr 2023 08:07:50 +1000 Subject: [PATCH 1/2] fix: remove logging --- packages/app/src/graphql.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/app/src/graphql.ts b/packages/app/src/graphql.ts index 7936c4ebe797..0a778a7f85b7 100644 --- a/packages/app/src/graphql.ts +++ b/packages/app/src/graphql.ts @@ -1,8 +1,6 @@ import Debug from 'debug' import { useSubscription as urqlUseSubscription } from '@urql/vue' -localStorage.debug = 'cypress:app:graphql-subscription' - const debugSubscription = Debug('cypress:app:graphql-subscription') export const useSubscription: typeof urqlUseSubscription = (...args) => { From 41e615fe742ed1f24680d4cc648107a20b8d893d Mon Sep 17 00:00:00 2001 From: Lachlan Miller Date: Tue, 4 Apr 2023 10:56:19 +1000 Subject: [PATCH 2/2] added changelog entry --- cli/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 85e2cf6c665e..e9408752bca3 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -12,6 +12,9 @@ _Released 04/11/2023 (PENDING)_ - Upgraded [`minimist`](https://www.npmjs.com/package/minimist) from `1.2.6` to `1.2.8` to address this [CVE-2021-44906](https://github.com/advisories/GHSA-xvch-5gv4-984h) NVD security vulnerability. Addressed in [#26254](https://github.com/cypress-io/cypress/pull/26254). +**Misc:** +- Removed unintentional debug logs. Address in [#26411](https://github.com/cypress-io/cypress/pull/26411) + ## 12.9.0 _Released 03/28/2023_