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_ 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) => {