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

React Redux Form v1.8.1

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 17 Mar 15:04
· 367 commits to master since this release

Enhancements and Fixes

  • Adding model caching and properly removing form values with updated field models. See #619 for more details.
  • The stray console.error was removed from actions.submit. Make sure you properly handle errors in your promises! #697
  • The prop warning for storeSubscription should no longer be shown anymore 🎉 #698
  • Small TS definition updates for combineForms and createForms. #699
  • Custom controls will no longer coerce non-strings to empty strings. #708
  • The documentation was updated to note the subtle difference between actions.load and actions.change(model, { silent: true }). In case you're curious:
    • both .load and .change (silent) will silently change the value.
    • only .load will also set the .loadedValue, which is the value that the control will be reset to upon actions.reset(model).