Skip to content

Latest commit

 

History

History
75 lines (43 loc) · 4.04 KB

CHANGELOG.md

File metadata and controls

75 lines (43 loc) · 4.04 KB

Changelog

5.3.0

  • Upgraded all dependencies to latest

5.2.0

  • Moved ES Module export from dist.esnext/index.js to dist.esm/index.js 90fb013

5.1.0

  • Renamed Connect type to CreateConnectedStore, and added it to top-level exports
  • Renamed ConnectAs type to CreateConnectedStoreAs, and added it to top-level exports

5.0.0

  • Deprecated createStore and connect in favor of new top-level createConnectedStore method 3909ed9
  • Deprecated createStoreAs and connect in favor of new top-level createConnectedStoreAs method 3909ed9
  • Deprecated Plugin type in favor of Effects 3909ed9

4.8.0

  • Revert 4.7.0 performance update

4.7.0

  • Performance: only subscribe to changes on those fields that a component uses 2ac3dc8

4.6.0

  • Add connectAs utility for connecting a component to multiple stores 8e2b5f0

4.5.0

  • Perform dynamic analysis to warn about cycles in effects at runtime 961a187
  • Performance: Memoize setter to prevent erroneous re-renders 9c968e6
  • Remove store.before and store.beforeAll APIs (this should have been a major bump to be safe) 276efad

4.4.0

  • Add Redux Devtools integration 6052dcb

4.3.0

  • Add support for RxJS6, and maintain backwards-compatability with RxJS5 03b6990

4.2.0

  • Add store.getState API to get an immutable version of the whole state of the store 330ae2c

4.0.0

  • Remove property whitelist, and re-render on all store updates to let React's reconciler do the heavy lifting bc90f3c
  • Performance: Introduce StoreSnapshot to add support for shouldComponentUpdate and other lifecycle methods, and to avoid forceUpdate d85fee1
  • Migrate from RxJS4 to RxJS5; move RxJS from dependencies to peerDependencies 85ee792

3.2.0

  • Add built-in support for ImmutableJS 79954f9

3.1.0

3.0.0

  • Performance: Diff values when the store changes to prevent erroneous re-renders 0644608
  • Performance: Don't update unlensed components by default 303fe88
  • Rename from Babydux to Undux 4fbf6b0

2.0.0

  • Pull out logger into a plugin d0b1229
  • Add store.before and store.beforeAll APIs that fire with the key, current value, and previous value b8f4d82