Skip to content

0.2.7 - Nov 21, 2022

Compare
Choose a tag to compare
@hoc081098 hoc081098 released this 21 Nov 04:57
· 54 commits to master since this release
2f850ad

https://pub.dev/packages/rxdart_ext/versions/0.2.7

  • single:

    • Add RxSingles.using.
    • Add RxSingles.forkJoin3..forkJoin9 and RxSingles.forkJoinList.
    • Deprecate Single.fromStream, introduce Single.unsafeFromStream.
  • state_stream:

    • Internal refactoring of StateSubject, fix StateSubject.addStream.
    • ValueStreamController.sink now processes events correctly.
  • Subject.stream now returns a read-only Stream.
    Previously, Subject.stream was identical to the Subject, so we could add events to it, for example: (subject.stream as Sink<T>).add(event).
    This behavior is now disallowed, and will throw a TypeError if attempted. Use Subject.sink/Subject itself for adding events.

  • Several docs and example improvements.


What's Changed

  • feat(RxSingles.using): add RxSingles.using by @hoc081098 in #77
  • test: refactor all by @hoc081098 in #78
  • fix(subject): Subject.stream now returns a read-only Stream, fix StateSubject.addStream, add more tests by @hoc081098 in #79
  • feat(single): add RxSingles.forkJoin3..forkJoin9 and RxSingles.forkJoinList by @hoc081098 in #80
  • refactor(single): deprecate Single.fromStream, introduce Single.unsafeFromStream by @hoc081098 in #81
  • chore(publish): prepare for 0.2.7 by @hoc081098 in #82

Full Changelog: 0.2.6...0.2.7