diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 8a169c088ba6..cd4f9293478b 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,4 +1,12 @@ +## 13.5.1 + +_Released 11/21/2023 (PENDING)_ + +**Bugfixes:** + +- We now pass a flag to Chromium browsers to disable default component extensions. This is a common flag passed during browser automation. Fixed in [#28294](https://github.com/cypress-io/cypress/pull/28294). + ## 13.5.0 _Released 11/8/2023_ diff --git a/packages/server/lib/browsers/chrome.ts b/packages/server/lib/browsers/chrome.ts index 62026997c306..883ec13c3c1a 100644 --- a/packages/server/lib/browsers/chrome.ts +++ b/packages/server/lib/browsers/chrome.ts @@ -73,6 +73,7 @@ const DEFAULT_ARGS = [ '--reduce-security-for-testing', '--enable-automation', '--disable-print-preview', + '--disable-component-extensions-with-background-pages', '--disable-device-discovery-notifications',