Skip to content

Releases: testing-library/react-testing-library

v5.0.0

09 Aug 18:01
Compare
Choose a tag to compare

5.0.0 (2018-08-09)

Bug Fixes

  • change: no longer using Simulate.change (32f3e65)

BREAKING CHANGES

  • change: If you used the old form of value changes you'll need to update your code to the new form:

Before:

formField.value = newValue;
fireEvent.change(formField);

After:

fireEvent.change(formField, {target: {value: newValue}});

v4.1.8

09 Aug 15:15
Compare
Choose a tag to compare

4.1.8 (2018-08-09)

Bug Fixes

  • change: no longer using Simulate.change (b464150)

v4.1.7

06 Aug 21:45
3c366f7
Compare
Choose a tag to compare

4.1.7 (2018-08-06)

Bug Fixes

  • force upgrade of dom-testing-library (3c366f7)

v4.1.6

03 Aug 15:47
Compare
Choose a tag to compare

4.1.6 (2018-08-03)

Bug Fixes

  • Add baseElement to render return type (#151) (9667967)

v4.1.5

26 Jul 17:57
Compare
Choose a tag to compare

4.1.5 (2018-07-26)

Bug Fixes

  • TS: declare optional argument to debug (#148) (dff0e1e)

v4.1.4

25 Jul 15:01
Compare
Choose a tag to compare

4.1.4 (2018-07-25)

Bug Fixes

  • switch default baseElement to document.body (#145) (f7f0b2f), closes #81

v4.1.3

17 Jul 19:31
Compare
Choose a tag to compare

4.1.3 (2018-07-17)

Bug Fixes

  • ensure waitForElement responds to attribute and textNode changes by default (#137) (1a11719)

v4.1.2

03 Jul 16:57
Compare
Choose a tag to compare

4.1.2 (2018-07-03)

Bug Fixes

v4.1.1

02 Jul 21:34
Compare
Choose a tag to compare

4.1.1 (2018-07-02)

Bug Fixes

  • TS: update typings with dom-testing-library queries and export them (#130) (36e1349)

v4.1.0

27 Jun 20:40
Compare
Choose a tag to compare

4.1.0 (2018-06-27)

Features

  • render: return baseElement from render (#127) (cb14d2d)