Skip to content

Commit e313524

Browse files
committed
publish 2.2.0
1 parent 50ba72b commit e313524

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
## 2.2.0 - May 1, 2021
2+
3+
- Stable release for null safety.
4+
15
## 2.2.0-nullsafety.2 - Feb 9, 2021
26
- Add `Selector`s: `select`, `select2`, ..., `select9` and `selectMany`.
37
- Selectors can compute derived data, allowing Redux to store the minimal possible state.
48
- Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
59
- When using the `select`, `select2` to `select9`, `selectMany` functions,
610
keeps track of the latest arguments in which your selector function was invoked.
711
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.
913
This can provide performance benefits, particularly with selectors that perform expensive computation.
1014
This practice is known as memoization.
1115

0 commit comments

Comments
 (0)