Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove debug logging on by default #26411

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
2 changes: 0 additions & 2 deletions packages/app/src/graphql.ts
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down