Skip to content

Releases: testing-library/cypress-testing-library

v7.0.1

22 Sep 20:47
80937d5

Choose a tag to compare

7.0.1 (2020-09-22)

Bug Fixes

  • ts: configureCypressTestingLibrary typings (#156) (85a8049)

v7.0.0

03 Sep 15:42

Choose a tag to compare

7.0.0 (2020-09-03)

Bug Fixes

Features

BREAKING CHANGES

  • get and query queries (which have been deprecated) have now been removed. Use find queries only.
  • TS: TypeScript type definitions have been brought into this module and no longer needs to be referenced from DefinitelyTyped

v7.0.0-beta.2

03 Sep 13:40
2f7fc37

Choose a tag to compare

v7.0.0-beta.2 Pre-release
Pre-release

7.0.0-beta.2 (2020-09-03)

Bug Fixes

BREAKING CHANGES

  • get and query queries (which have been deprecated) have now been removed. Use find queries only.

v7.0.0-beta.1

22 Aug 22:59

Choose a tag to compare

v7.0.0-beta.1 Pre-release
Pre-release

7.0.0-beta.1 (2020-08-22)

Features

BREAKING CHANGES

  • TS: TypeScript type definitions have been brought into this module and no longer needs to be referenced from DefinitelyTyped

v6.1.0-beta.1

22 Aug 22:52

Choose a tag to compare

v6.1.0-beta.1 Pre-release
Pre-release

6.1.0-beta.1 (2020-08-22)

Features

v6.0.1

21 Aug 16:13
ae925b4

Choose a tag to compare

6.0.1 (2020-08-21)

Bug Fixes

  • peerDependencies: add Cypress v5 to peerDeps (ae925b4), closes #149

v6.0.0

12 Mar 23:31

Choose a tag to compare

6.0.0 (2020-03-12)

BREAKING CHANGES

Update DOM Testing Library

The latest version of DOM Testing Library has several breaking changes you will want to review the changelog of DOM Testing Library v7.0.0 to ensure you are unaffected.

Drop Node 8

Node 10 or greater is required. Node 8 is out of LTS (6cdcfc2), closes #113

Remove query* queries.

We now throw an error instead. Fixing requires updating all query* to find* queries. In practice this means replacing cy.query with cy.find. remove deprecated query* queries (#130) (ee75c14)

Remove fallback that retries chained query that assumes no previous subject.

In practice this means starting new chains if no previous subject is required.

  cy.findByText('Foo').click()
-   .findByText('Bar').click() // Element with 'Bar' text is not a child of an element with 'Foo' text
+ cy.findByText('Bar').click()

v5.3.1

12 Mar 05:29
ab34b09

Choose a tag to compare

5.3.1 (2020-03-12)

Bug Fixes

v6.0.0-beta.1

04 Mar 20:52

Choose a tag to compare

v6.0.0-beta.1 Pre-release
Pre-release

6.0.0-beta.1 (2020-03-04)

Bug Fixes

Features

  • update DOM Testing Library to latest (06be329)

BREAKING CHANGES

  • node: Node 10 or greater is now required to use this package
  • This updates @testing-library/dom, please check the changelog for the most recent version of that package to know whether you are impacted by these changes.

v5.3.0

06 Feb 23:38
e052ece

Choose a tag to compare

5.3.0 (2020-02-06)

Features