0.2.7 - Nov 21, 2022 #83
hoc081098
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://pub.dev/packages/rxdart_ext/versions/0.2.7
single:
RxSingles.using
.RxSingles.forkJoin3..forkJoin9
andRxSingles.forkJoinList
.Single.fromStream
, introduceSingle.unsafeFromStream
.state_stream:
StateSubject
, fixStateSubject.addStream
.ValueStreamController.sink
now processes events correctly.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 a
TypeError
if attempted. UseSubject.sink
/Subject
itself for adding events.Several docs and example improvements.
What's Changed
RxSingles.using
by @hoc081098 in feat(RxSingles.using): addRxSingles.using
#77Subject.stream
now returns a read-onlyStream
, fixStateSubject.addStream
, add more tests by @hoc081098 in fix(subject):Subject.stream
now returns a read-onlyStream
, fixStateSubject.addStream
, add more tests #79RxSingles.forkJoin3..forkJoin9
andRxSingles.forkJoinList
by @hoc081098 in feat(single): addRxSingles.forkJoin3..forkJoin9
andRxSingles.forkJoinList
#80Single.fromStream
, introduceSingle.unsafeFromStream
by @hoc081098 in refactor(single): deprecateSingle.fromStream
, introduceSingle.unsafeFromStream
#81Full Changelog: 0.2.6...0.2.7
This discussion was created from the release 0.2.7 - Nov 21, 2022.
Beta Was this translation helpful? Give feedback.
All reactions