13.0.0-rc.0 (2021-11-11)
Bug Fixes
Features
BREAKING CHANGES
- store: When manually specifying the generic arguments, you have to specify the selector's list of selector return values.
BEFORE:
createSelector<Story[], Story[], Story[][]>;
AFTER:
// needs to be a tuple 👇
createSelector<Story[], [Story[]], Story[][]>;
- data: Now both the
getWithQuery
and getAll
methods are consistent and do set loaded
property to true on dispatching their success actions respectively.
BEFORE:
The getWithQuery
method would not set the loaded
property to true upon success
AFTER:
The getWithQuery
method sets the loaded
property to true upon success
<a name="13.0.0-beta.0"></a>