Skip to content

Commit

Permalink
v13.11.0 (#5838)
Browse files Browse the repository at this point in the history
* Add note about how to set IGNORE_CHROME_PREFERENCES env var (#5822)

* Add note about how to set IGNORE_CHROME_PREFERENCES env var

* Add link to browser launch API from the 'launching browsers' guide

* lint fix

* chore: add changelog

---------

Co-authored-by: AtofStryker <bglesias@gmail.com>
  • Loading branch information
jennifer-shehane and AtofStryker committed Jun 4, 2024
1 parent e54c393 commit 1e852ba
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/api/plugins/browser-launch-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ Here are preferences available for the currently supported browsers:
- Firefox: visit `about:config` URL within your Firefox browser to see all
available preferences.

:::info

If you want to ignore Chrome preferences altogether, you can set `IGNORE_CHROME_PREFERENCES` as an environment variable when running Cypress.

:::

:::cypress-config-plugin-example

```js
Expand Down
5 changes: 5 additions & 0 deletions docs/guides/guides/launching-browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -434,3 +434,8 @@ the chrome of the browser. You'll always be able to visually distinguish these.
## Troubleshooting

[Having issues launching installed browsers? Read more about troubleshooting browser launching](/guides/references/troubleshooting#Launching-browsers)

## See also

- [Browser Launch API](/api/plugins/browser-launch-api)
- [Cross browser Testing](/guides/guides/cross-browser-testing)
22 changes: 22 additions & 0 deletions docs/guides/references/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
title: Changelog
---

## 13.11.0

_Released 6/4/2024_

**Performance:**

- Improved performance when setting console props within `Cypress.log`. Addressed in [#29501](https://github.com/cypress-io/cypress/pull/29501).

**Features:**

- Added support for [Next.js 14](https://nextjs.org/blog/next-14) for component testing. Addresses [#28185](https://github.com/cypress-io/cypress/issues/28185).
- Added an `IGNORE_CHROME_PREFERENCES` environment variable to ignore Chrome preferences when launching Chrome. Addresses [#29330](https://github.com/cypress-io/cypress/issues/29330).

**Bugfixes:**

- Fixed a situation where the Launchpad would hang if the project config had not been loaded when the Launchpad first queries the current project. Fixes [#29486](https://github.com/cypress-io/cypress/issues/29486).
- Pre-emptively fix behavior with Chrome for when `unload` events are forcefully deprecated by using `pagehide` as a proxy. Fixes [#29241](https://github.com/cypress-io/cypress/issues/29241).

**Misc:**

- Enhanced the type definitions available to [`cy.intercept()`](/api/commands/intercept) and [`cy.wait()`](/api/commands/wait). The `body` property of both the request and response in an interception can optionally be specified with user-defined types. Addresses [#29507](https://github.com/cypress-io/cypress/issues/29507).

## 13.10.0

_Released 5/21/2024_
Expand Down

0 comments on commit 1e852ba

Please sign in to comment.