Releases: IpShot/flex-reducer
Releases · IpShot/flex-reducer
v1.0.6
v1.0.5
v1.0.4
v1.0.3
v1.0.2
v1.0.1
This release improves the way Flex Reducer managing current components dispatches. Before regular Object
was used, but it had 2 problems:
Object
doesn't guarantee an order of keys/insertions. At some point it could result in breaking sequence of renders from ancestors to descendants.Object
isn't designed for frequently insert/remove operations asuseSelector
do on every component mount/unmount. Potentially it could lead to performance issues in some cases like usinguseSelector
in a list item component where the list size is hundreds of items.
To solve this issues Object
was changed to Map
.