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

v1.11.0

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 18 Apr 15:02
· 317 commits to master since this release

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 and areStatePropsEqual options in React-Redux to do smarter shouldComponentUpdate testing
  • Documentation updates:
    • Quick code example fix in #754
    • Referenced <Control.custom> in the Control docs
    • Added some new FAQs - check them out!
  • 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 the event as the second argument, which makes things like file uploads much easier. #664