0.2.7 - Nov 21, 2022
https://pub.dev/packages/rxdart_ext/versions/0.2.7
-
single:
- Add
RxSingles.using
. - Add
RxSingles.forkJoin3..forkJoin9
andRxSingles.forkJoinList
. - Deprecate
Single.fromStream
, introduceSingle.unsafeFromStream
.
- Add
-
state_stream:
- Internal refactoring of
StateSubject
, fixStateSubject.addStream
. ValueStreamController.sink
now processes events correctly.
- Internal refactoring of
-
Subject.stream
now returns a read-onlyStream
.
Previously,Subject.stream
was identical to theSubject
, so we could add events to it, for example:(subject.stream as Sink<T>).add(event)
.
This behavior is now disallowed, and will throw aTypeError
if attempted. UseSubject.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-onlyStream
, fixStateSubject.addStream
, add more tests by @hoc081098 in #79 - feat(single): add
RxSingles.forkJoin3..forkJoin9
andRxSingles.forkJoinList
by @hoc081098 in #80 - refactor(single): deprecate
Single.fromStream
, introduceSingle.unsafeFromStream
by @hoc081098 in #81 - chore(publish): prepare for 0.2.7 by @hoc081098 in #82
Full Changelog: 0.2.6...0.2.7