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

React Redux Form v1.4.2

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 12 Dec 18:08
· 498 commits to master since this release

Fixes and Enhancements

  • Optimizations were made to prevent a load intent from occurring after a dispatched actions.reset. This was initially introduced to ensure that a RESET set the value to its loaded value, if it changed. Because there was no distinction between the loaded and initial value, LOAD was always called as an intent. Now, there's a separation between .loadedValue and .initialValue - if and only if they are different will LOAD be intended. #561
  • As a result of the above, the internal .value property in form/field objects has been removed. It is redundant with the model state, and allowed refactoring to simplified code.