Skip to content

Releases: hoc081098/rx_redux

2.5.0 - Jul 24, 2022

24 Jul 17:20
Compare
Choose a tag to compare

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

13 Sep 18:12
Compare
Choose a tag to compare

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 to lints.

2.3.0 - May 10, 2021

10 May 07:36
Compare
Choose a tag to compare

https://pub.dev/packages/rx_redux/versions/2.3.0

  • Update distinct_value_connectable_stream to 1.3.0.
  • Update rxdart to 0.27.0.

2.2.0 - May 1, 2021

01 May 08:00
Compare
Choose a tag to compare

2.2.0-nullsafety.2 - Feb 9, 2021

09 Feb 13:46
Compare
Choose a tag to compare
Pre-release
  • Add Selectors: 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.
      This can provide performance benefits, particularly with selectors that perform expensive computation.
      This practice is known as memoization.

2.2.0-nullsafety.1

30 Nov 04:16
Compare
Choose a tag to compare
2.2.0-nullsafety.1 Pre-release
Pre-release
  • Fixed: support nullable action.

2.1.1

30 Oct 04:16
5859efe
Compare
Choose a tag to compare
  • Add RxReduxStore.dispatchMany(Stream<A>): Dispatch a Stream of actions to store.
  • Add extension method dispatchTo on A and Stream<A>, eg: anAction.dispatchTo(store), streamOfActions.dispatchTo(store).

2.1.0

28 Aug 08:50
Compare
Choose a tag to compare

2.1.0 - Aug 28, 2020

  • State stream returned from RxReduxStore will not replay the latest state
    (Use RxReduxStore.state getter instead).

2.0.0

27 Aug 13:16
Compare
Choose a tag to compare

2.0.0 - Aug 27, 2020

  • Added Logger which allows logging current state, action and new state.
  • Added RxReduxStore, first-class for Flutter UI.
  • Updated docs, example, README.
  • Updated internal refactor, optimized for performance.
  • Fixed many issues.

1.2.0

25 Apr 16:21
Compare
Choose a tag to compare

1.2.0

  • Breaking change: remove rxdart dependency