Skip to content

Commit

Permalink
publish 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed May 1, 2021
1 parent 50ba72b commit e313524
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
## 2.2.0 - May 1, 2021

- Stable release for null safety.

## 2.2.0-nullsafety.2 - Feb 9, 2021
- Add `Selector`s: `select`, `select2`, ..., `select9` and `selectMany`.
- Selectors can compute derived data, allowing Redux to store the minimal possible state.
- Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
- When using the `select`, `select2` to `select9`, `selectMany` functions,
keeps track of the latest arguments in which your selector function was invoked.
Because selectors are pure functions, the last result can be returned
when the arguments match without reinvoking your selector function.
when the arguments match without re-invoking your selector function.
This can provide performance benefits, particularly with selectors that perform expensive computation.
This practice is known as memoization.

Expand Down

0 comments on commit e313524

Please sign in to comment.