Change8

Cypress

Dev Tools

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

Latest: v15.11.033 releases3 common errorsView on GitHub

Release History

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.

v15.6.0
Nov 4, 2025

Cypress 15.6.0 release notes are referenced in the official changelog.

v15.5.0
Oct 18, 2025

No specific changelog details were provided; therefore no items could be extracted.

v15.4.0
Oct 7, 2025

The provided release notes only contain a link to the Cypress changelog for version 15.4.0 without specific details, so no structured changelog data could be extracted.

v15.3.0
Sep 23, 2025

No specific changelog details were provided; refer to the Cypress 15.3.0 changelog for full information.

v15.2.0
Sep 9, 2025
v15.1.0
Sep 2, 2025
v15.0.0
Aug 20, 2025

Cypress 15.0.0 release.

v14.5.4
Aug 7, 2025

No changelog details were provided for this release.

v14.5.3
Jul 25, 2025

Release notes were not provided; no specific changes could be extracted.

v14.5.2
Jul 15, 2025

No specific changes were listed in the provided release notes.

v14.5.1
Jul 1, 2025

No detailed release notes were provided; only a link to the Cypress changelog for version 14.5.1 is available.

v14.5.0
Jun 17, 2025

The provided release notes only contain a link to the Cypress 14.5.0 changelog and no specific change details, so no structured items could be extracted.

v14.4.1
Jun 3, 2025

No changelog details provided for version 14.4.1.

v14.4.0
May 20, 2025

Cypress 14.4.0 release notes are available at the provided link; no specific changes were extracted from the supplied text.

v14.3.3
May 6, 2025

No changelog details were provided in the input.

v14.3.2
Apr 22, 2025

Cypress 14.3.2 release (no specific changes were provided in the notes).

v14.3.1
Apr 17, 2025

No specific changelog details were provided; refer to the linked Cypress documentation for version 14.3.1.

v14.3.0
Apr 8, 2025

Cypress version 14.3.0 release (no specific changelog details provided).

v14.2.1
Mar 26, 2025

Cypress 14.2.1 release.

v14.2.0
Mar 12, 2025

Cypress 14.2.0 release details are documented in the official changelog.

v14.1.0
Feb 25, 2025
v14.0.3
Feb 11, 2025

Cypress 14.0.3 release (no specific changes were provided in the notes).

v14.0.2
Feb 5, 2025

The release points to the Cypress 14.0.2 changelog but does not list specific changes; refer to the linked documentation for details.

v14.0.1
Jan 28, 2025

No detailed changelog information was provided; refer to the linked Cypress changelog for version 14.0.1.

v14.0.0
Jan 16, 2025

No specific changelog details were provided in the input.

Common Errors

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