This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v0.11.0
Validity and Error Actions Behavior
- This version changes (fixes?) the behavior with
setValidity
andsetErrors
such that it sets the validity/errors of the model, rather than merges it in. This shouldn't affect most forms, but was a large enough change/refactor to warrant a minor version bump. See #151 for more info.
Behind The Scenes
- There is an internal
<Control>
component that<Field>
uses that have both been refactored internally. The<Control>
component will be exposed in v1 and will allow more granular control for custom controls! - Many functions are now being memoized, and many more to come!
- More actions (especially around validity) are being batched, meaning less re-renders to improve performance
- Many added unit tests to ensure stability.