Releases: hoc081098/rx_redux
Releases · hoc081098/rx_redux
2.5.0 - Jul 24, 2022
https://pub.dev/packages/rx_redux/versions/2.5.0
- Update dependencies
disposebag: ^1.5.1
rxdart_ext: ^0.2.3
(~ rxdart: ^0.27.5
)
Full Changelog: 2.4.0...2.5.0
2.4.0 - Sep 13, 2021
https://pub.dev/packages/rx_redux/versions/2.4.0
- Remove
distinct_value_connectable_stream
dependency. - Depend on
rxdart_ext: ^0.1.2
. - Update meta to
1.7.0
. - Migrated from
pedantic
tolints
.
2.3.0 - May 10, 2021
https://pub.dev/packages/rx_redux/versions/2.3.0
- Update
distinct_value_connectable_stream
to1.3.0
. - Update
rxdart
to0.27.0
.
2.2.0 - May 1, 2021
https://pub.dev/packages/rx_redux/versions/2.2.0
- Stable release for null safety.
2.2.0-nullsafety.2 - Feb 9, 2021
- Add
Selector
s:select
,select2
, ...,select9
andselectMany
.- 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
toselect9
,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.
This can provide performance benefits, particularly with selectors that perform expensive computation.
This practice is known as memoization.
2.2.0-nullsafety.1
- Fixed: support nullable action.