Update dependency rxdart_ext to ^0.2.0 #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.1.2
->^0.2.0
Release Notes
hoc081098/rxdart_ext
v0.2.8
Compare Source
single:
Single.unsafeFromStream
docsstate_stream:
MutableStateStream<T>
.StateSubject<T>
now implementsMutableStateStream<T>
.MutableStateStream<T>
:update()
.getAndUpdate()
.updateAndGet()
.Several docs and example improvements.
v0.2.7
Compare Source
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.
v0.2.6
Compare Source
single:
Single.toEitherSingle()
.Single.flatMapEitherSingle()
.Update docs.
v0.2.5
Compare Source
StateSubject.stream
now returns aStateStream
.StateSubject
andStateStream
.v0.2.4
Compare Source
StateStream.select5..select9
: miss passingequals
param.v0.2.3
Compare Source
rxdart
to^0.27.5
.@internal
onStateStream.asBroadcastStateStream
extension method.Stream.toSingleSubscriptionStream()
now returns a newStream
every callinstead of the input stream even if it's a single-subscription Stream.
v0.2.2
Compare Source
path
to^1.8.0
(becauseflutter_test
from Flutter sdk (>= 2.5.0
) depends on path1.8.0
or1.8.1
).v0.2.1
Compare Source
Update
rxdart
to0.27.4
.Update
path
to1.8.2
.operators:
Stream.whereNotNull()
(moved torxdart 0.27.4
as standardoperator: mapNotNull).
Stream.mapNotNull()
(moved torxdart 0.27.4
as standardoperator: whereNotNull).
v0.2.0
Compare Source
utils:
DisposableMixin
. This mixin adds an easy option to dispose Streams without having to storea
StreamSubscription
variable. (Thanks to Jop Middelkamp).Equality
typedef.state_stream:
StateStream.defaultEquals
toStateStream.defaultEquality
.StateStream
selectors (SelectorsStateStreamExtensions
):StateStream.select
,StateStream.select2
to
StateStream.select9
and
StateStream.selectMany
.by NgRx memoized selector
select
,select2
toselect9
,selectMany
functions, keeps track of the latest argumentsin which your selector function was invoked. Because selectors are pure functions, the last result can be
returned when the arguments match without re-invoking your selector function. This can provide performance
benefits, particularly with selectors that perform expensive computation. This practice is known as
memoization.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.