You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update function type checks to account for callable tables (like those returned by Rodux.makeActionCreator).
0.5.1 (2022-05-20)
Expose StoreContext in public API (for use by hooks) (#56)
0.5.0 (2021-12-06)
Move store connection back to didMount to align more closely with ReactRedux and Roact api.
Conditionally update child mappedProps on didMount if the mappedStoreState has changed between init and mount. This should prevent components from receiving stale rodux state.
0.4.1 (2021-09-23)
Updated StoreProvider to accept Roact.oneChild[self.props[Roact.Children]] as its child, rather than self.props[Roact.Children] (#55)
0.4.0 (2021-09-02)
Fixed connect to always pass the right props, instead of sending the store to mapDispatchToProps (#50)
Change resulting component from connect back to a stateful component (#49)
0.3.0 (2021-05-25)
Added overload for function mapDispatchToProps to directly accept a table containing action creators #42
Switch to Roact's better-supported createContext feature #38
As a consequence of the above, remove UNSTABLE_getStore API
Added color schemes for documentation based on user preference (#44).
Use Github Actions for CI
0.2.3 (2020-09-25)
Removed the temporary newConnectionOrder config.
0.2.2 (2020-05-14)
Changed order of connection to store so that Parent components are connected to the store before their children.
This should resolve some issues with components receiving bad combinations of props and store state.