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

React Redux Form v0.13.2

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 30 May 11:18
· 1141 commits to master since this release

Examples!

  • Thanks to @etrepum, we've set up the foundation for runnable examples in the repo, with more to come! Right now, the basic quick start example is available by running:
npm install
npm run examples

Feel free to let us know which examples you'd like to see in the repo!

Performance enhancements

  • The <Errors> component no longer requires the entire state in mapStateToProps, nor does the <Form> component, resulting in a significant performance boost. #237
  • The <Form> component now benefits from React's shallowCompare for efficient rendering.

Bug fixes

  • The name="..." attribute will no longer be overridden for controls inside <Field>. #241
  • (internal) getFormStateKey is now properly cached, thanks to @pauljz #231