Skip to content

Releases: testing-library/cypress-testing-library

v7.0.0-beta.1

22 Aug 22:59
Compare
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
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

5.3.1 (2020-03-12)

Bug Fixes

v6.0.0-beta.1

04 Mar 20:52
Compare
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
Compare
Choose a tag to compare

5.3.0 (2020-02-06)

Features

v5.2.1

03 Feb 02:23
5664b09
Compare
Choose a tag to compare

5.2.1 (2020-02-03)

Bug Fixes

v5.2.0

02 Feb 03:48
547389d
Compare
Choose a tag to compare

5.2.0 (2020-02-02)

Features

v5.1.2

30 Jan 20:56
Compare
Choose a tag to compare

5.1.2 (2020-01-30)

Reverts

  • feat: support running commands against the previous subject. (#100) (0b73b69)