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

React Redux Form v0.11.0

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 23 Apr 20:15
· 1239 commits to master since this release

Validity and Error Actions Behavior

  • This version changes (fixes?) the behavior with setValidity and setErrors 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.