File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.2.0 - May 1, 2021
2
+
3
+ - Stable release for null safety.
4
+
1
5
## 2.2.0-nullsafety.2 - Feb 9, 2021
2
6
- Add ` Selector ` s: ` select ` , ` select2 ` , ..., ` select9 ` and ` selectMany ` .
3
7
- Selectors can compute derived data, allowing Redux to store the minimal possible state.
4
8
- Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
5
9
- When using the ` select ` , ` select2 ` to ` select9 ` , ` selectMany ` functions,
6
10
keeps track of the latest arguments in which your selector function was invoked.
7
11
Because selectors are pure functions, the last result can be returned
8
- when the arguments match without reinvoking your selector function.
12
+ when the arguments match without re-invoking your selector function.
9
13
This can provide performance benefits, particularly with selectors that perform expensive computation.
10
14
This practice is known as memoization.
11
15
You can’t perform that action at this time.
0 commit comments