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

React Redux Form v1.5.0

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 21 Dec 21:11
· 474 commits to master since this release

Fixes and Enhancements

  • Validation gets tricky when unmounting controls with validators. Now, validation will not override previous validity when unmounting - it will only reset its own validators and any HTML5 validation attributes. See #580 and #584 for more information. Thanks @dave-clover!
  • You can now use a single function in <Form validators={(values) => ...}>!! 🎉 Thanks @sl33kr! #578
  • If you have validators defined on both field/control and form, now they won't overwrite each other. Thanks, @sl33kr again!
  • You can now define your own controlPropTypes in createFieldClass, if you are using it (it is recommended to use Control instead)
  • No more unexpected behavior will occur if you define type="radio" or type="checkbox" on a custom component. #575
  • Deep loading behavior now works, so that you can deeply load values and have those loaded values replaced on reset. #571

Don't worry, all changes in this minor release are internal, and no external API was harmed in the making of this release. 😄