This repository was archived by the owner on Aug 23, 2022. It is now read-only.
v1.11.0
This is an exciting release!! There's a few new features, bug fixes, and huge performance enhancements.
- Huge performance improvements thanks to @danielericlee in his PR: #755 π
- Uses the new
areOwnPropsEqual
andareStatePropsEqual
options in React-Redux to do smartershouldComponentUpdate
testing
- Uses the new
- Documentation updates:
- No more
storeSubscription
warnings will occur in<Fieldset>
. #750 track()
now handles multi-value models correctly; e.g.,track('users[].pets[]', {id: 100})
- The
<Form onSubmit={(val, evt) => ...}>
prop now takes theevent
as the second argument, which makes things like file uploads much easier. #664