Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

1.2.0-beta01 - Oct 18, 2020

Pre-release
Pre-release
Compare
Choose a tag to compare
@hoc081098 hoc081098 released this 17 Oct 17:35
· 48 commits to master since this release
  • Introduce ValueSubject same as PublishSubject, with the ability to capture the latest item has been added to the controller.

  • Rewrite DistinctValueConnectableStream: now will not replay the latest data or error, value getter instead.
    This is more consistent to StreamBuilder.initialData in Flutter.

  • Extension methods: removed publishValueSeededDistinct and shareValueSeededDistinct.
    Add to publishValueDistinct and shareValueDistinct a required parameter T seedValue.
    This is more consistent to StreamBuilder.initialData in Flutter.

  • Added DistinctValueStream: It's also ValueStream but emphasizes that two consecutive values are not equal
    (Equality is determined by equals method).

  • Note that this is a beta release, mainly because the behavior of DistinctValueConnectableStream has been adjusted.
    If all goes well, we'll release a proper 1.2.0 release soon.