Skip to content

v5.0.0

Compare
Choose a tag to compare
@kentcdodds kentcdodds released this 09 Aug 18:01

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}});