Change8

Cypress

Dev Tools

Fast, easy and reliable testing for anything that runs in a browser.

Latest: v16.0.025 releases5 common errorsView on GitHub

Release History

View all versions →
v16.0.0
Sep 1, 2026

This release includes a changelog link for version 16.0.0.

v15.21.1
Aug 25, 2026
v15.21.0
Aug 18, 2026

This release focuses on bug fixes and improvements to the Cypress testing framework. Please refer to the changelog for detailed information on specific changes.

v15.20.1
Aug 10, 2026

This release focuses on bug fixes and improvements. Please refer to the changelog for detailed information on specific changes.

v15.20.05 fixes5 features
Aug 4, 2026

This release introduces significant new features including Cypress Component Testing and the powerful `cy.intercept()` command for network request manipulation. Numerous bug fixes and stability improvements are also included.

v15.19.0
Jul 21, 2026
v15.18.1
Jul 7, 2026

The release notes only provide a link to the changelog for version 15.18.1 without detailing the specific changes.

v15.18.0
Jun 23, 2026

This release note only provides a link to the changelog for version 15.18.0, without detailing specific changes.

v15.17.0
Jun 9, 2026

This release points to the Cypress changelog for version 15.17.0, indicating updates are detailed there.

v15.16.0
May 26, 2026

This release points to the Cypress changelog for version 15.16.0, but provides no specific details within the provided text.

v15.15.0
May 12, 2026

This release note only provides a link to the changelog for version 15.15.0 without detailing specific changes.

v15.14.21 fix
Apr 29, 2026

This patch release primarily addresses a bug concerning the interaction between cy.origin and cy.intercept in cross-origin testing scenarios.

v15.14.1
Apr 21, 2026

This release points to the Cypress changelog for version 15.14.1, indicating updates are detailed there.

v15.14.0
Apr 16, 2026

This release note only provides a link to the changelog for version 15.14.0, without detailing specific changes.

v15.13.1
Apr 7, 2026

This release points to the Cypress changelog for version 15.13.1, indicating updates are detailed there.

v15.13.0
Mar 24, 2026

This release points to the Cypress changelog for version 15.13.0, indicating updates are detailed there.

v15.12.0
Mar 13, 2026

This release points to the Cypress changelog for version 15.12.0, indicating updates are detailed there.

v15.11.0
Feb 25, 2026

This release points to the Cypress changelog for version 15.11.0, which contains the specific updates.

v15.10.0
Feb 3, 2026

This release note only provides a link to the Cypress changelog for version 15.10.0 and contains no specific extracted details.

v15.9.0
Jan 13, 2026

This release points to the Cypress changelog for version 15.9.0, indicating updates are detailed there.

v15.8.2
Jan 6, 2026

Release notes not provided.

v15.8.1
Dec 18, 2025

No specific changelog details were provided; see the Cypress changelog at the linked URL for full information.

v15.8.0
Dec 16, 2025
v15.7.1
Dec 2, 2025

Release notes contain only a link to the Cypress changelog; no specific changes were extracted.

v15.7.0
Nov 19, 2025

Release notes not provided.

Common Errors

BrowserConnectionClosedError2 reports

BrowserConnectionClosedError typically occurs when Cypress loses its connection to the browser, often due to the browser crashing, becoming unresponsive, or external factors like a proxy interfering with communication. To fix this, ensure your browser is up-to-date and that no conflicting browser extensions or proxy configurations are interfering with Cypress's ability to control the browser. Restarting Cypress and the browser can also resolve transient connection issues.

HookWebpackError2 reports
TypeError1 report

This "TypeError: _.map is not a function" in Cypress often occurs when a Cypress configuration file (cypress.config.js/ts) or a plugin file is attempting to use the Lodash `map` function on a variable that is not an array (e.g., it's undefined, a single value, or an object). Ensure the variable you are trying to map over is indeed an array; if it's coming from a configuration property, verify that the property is correctly defined and returning an array. You may need to initialize the variable or handle cases where it might be undefined or not an array before attempting to map over it.

WebDriverError1 report

WebDriverError in Cypress often arises from incompatibility issues between the Cypress browser automation extension and the specific browser version being used, particularly after browser updates. To resolve this, either downgrade the browser to a version compatible with your installed Cypress version, or upgrade Cypress to the latest version which typically supports newer browser releases. Check the Cypress documentation for browser version compatibility charts to ensure alignment.

TsConfigNotFoundError1 report

The "TsConfigNotFoundError" in Cypress usually means the `tsconfig.json` file isn't in the expected project root or Cypress can't locate it. Ensure your `tsconfig.json` is in the project's root directory and that your `cypress.config.ts` file correctly references it using the `typescript.tsconfig` configuration option, explicitly pointing to its path. If it's already there, verify the file name is precisely `tsconfig.json` and there are no typos in the `cypress.config.ts` configuration.

Related Dev Tools Packages

Subscribe to Updates

Get notified when new versions are released

RSS Feed