v5.0.0
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}});