Skip to content

Releases: testing-library/react-testing-library

v10.0.6

02 Jun 22:15
c3008be
Compare
Choose a tag to compare

10.0.6 (2020-06-02)

Bug Fixes

  • force update version of @testing-library/dom (#687) (c3008be)

v10.0.5

01 Jun 23:38
6147830
Compare
Choose a tag to compare

10.0.5 (2020-06-01)

Bug Fixes

  • fireEvent: automatically configure fireEvent to be wrapped in act (#685) (6147830)

v10.0.4

30 Apr 16:13
a75fa35
Compare
Choose a tag to compare

10.0.4 (2020-04-30)

Bug Fixes

  • upgrade all dependencies (and fix UMD build) (#653) (a75fa35)

v10.0.3

20 Apr 18:05
59a2de1
Compare
Choose a tag to compare

10.0.3 (2020-04-20)

Bug Fixes

v10.0.2

30 Mar 16:27
afce94f
Compare
Choose a tag to compare

10.0.2 (2020-03-30)

Bug Fixes

v10.0.1

13 Mar 13:30
3bc13d9
Compare
Choose a tag to compare

10.0.1 (2020-03-13)

Bug Fixes

v10.0.0

12 Mar 23:25
Compare
Choose a tag to compare

10.0.0 (2020-03-12)

Features

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 (#576) (fccc2cf), closes #575

remove deprecated cleanup-after-each.js

This file which did nothing but log a warning to the console (#598) (7942f68)

- import '@testing-library/react/cleanup-after-each'
+ // nothing! Just remove it

As a general reminder, you should NOT need to use cleanup at all as this is done automatically for you (unless you're using @testing-library/react/pure in which case you know what you're doing... keep using cleanup).

v10.0.0-beta.2

04 Mar 19:56
9bd87c6
Compare
Choose a tag to compare
v10.0.0-beta.2 Pre-release
Pre-release

10.0.0-beta.2 (2020-03-04)

Bug Fixes

  • remove deprecated cleanup-after-each (#598) (9bd87c6)

BREAKING CHANGES

  • This removes @testing-library/react/cleanup-after-each which is deprecated and hasn't done anything for many versions.

v10.0.0-beta.1

04 Mar 19:29
2d109ab
Compare
Choose a tag to compare
v10.0.0-beta.1 Pre-release
Pre-release

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

Bug Fixes

Features

BREAKING CHANGES

  • node: This release drops support for Node 8. Upgrade to Node 10 or greater.
  • The latest version of DOM Testing Library has several breaking changes you will want to review the changelog of DOM Testing Library to ensure you are uneffected.

v9.5.0

04 Mar 19:18
35522b1
Compare
Choose a tag to compare

9.5.0 (2020-03-04)

Features

  • debug: accept the same arguments as prettyDOM (#596) (35522b1), closes #580