Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

React Redux Form v0.9.14

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 15 Apr 03:57
· 1265 commits to master since this release

Dependencies

  • Bumped lodash to 4.10.0

Planned Simplification

  • Started deprecation of actions.setErrors(). Instead, this will be merged with actions.setValidity(model, validators, { errors: true }), where the third argument is for options.
  • The <Field updateOn="..."> prop will no longer accept functions in v1.0. It will expect strings such as "change", "blur", "focus", etc.
    • To get similar behavior of customizing change behavior with a function, use the changeAction={...} prop.

Planned Enhancements

  • The upcoming <Control> component (which is just a lower-level abstraction for controls inside <Field>) will soon support onLoad and onSubmit event handlers.

Fixed Bugs

  • The Uncaught TypeError: Cannot read property 'valid' of undefined on <Form> components without a corresponding form reducer has been fixed. #117 #139
    • This means that you are not required to have a formReducer when using <Form>.