chore(deps): update all non-major dependencies #419
Merged
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:
^2.4.11
->^2.4.12
^3.3.1
->^3.4.1
^10.1.0
->^10.1.2
^1.2.1
->^1.2.2
^4.0.0
->^4.1.0
^1.0.5
->^1.0.6
^8.0.0
->^8.0.2
^0.27.0
->^0.28.0
^8.4.0-beta.1
->^8.8.0
^2.2.3
->^2.3.2
^4.8.0
->^4.9.0
Release Notes
dart-lang/build (build_runner)
v2.4.12
Compare Source
Baseflow/flutter_cached_network_image (cached_network_image)
v3.4.1
Compare Source
v3.4.0
Compare Source
What's Changed
scale
of CachedNetworkImageProvider on CachedNetworkImage by @amake in https://github.com/Baseflow/flutter_cached_network_image/pull/576New Contributors
Full Changelog: Baseflow/flutter_cached_network_image@v3.3.1...v3.4.0
fluttercommunity/plus_plugins (device_info_plus)
v10.1.2
Compare Source
v10.1.1
Compare Source
>=0.5.0 < 2.0.0
version range for package:web.dart-lang/http (http)
v1.2.2
Compare Source
web: '>=0.5.0 <2.0.0'
.dart-lang/http_parser (http_parser)
v4.1.0
Compare Source
CaseInsensitiveMap
: added constructorfromEntries
.package:collection
^1.19.0
^3.4.0
v4.0.2
Compare Source
package:charcode
from dev_dependencies.v4.0.1
Compare Source
package:charcode
.dart-lang/tools (mime)
v1.0.6
Compare Source
topics
section topubspec.yaml
.dart-lang/tools
monorepo.fluttercommunity/plus_plugins (package_info_plus)
v8.0.2
Compare Source
v8.0.1
Compare Source
ReactiveX/rxdart (rxdart)
v0.28.0
Compare Source
New
ValueStream:
lastEventOrNull
getter toValueStream
,which returns the last emitted event (either data/value or error event), or
null
.isLastEventValue
,isLastEventError
anderrorAndStackTraceOrNull
extension getters to
ValueStream
, to check the kind of the last emitted event is data/value or error.ReplayStream:
errorAndStackTraces
toReplayStream
, which returns a list of emittedErrorAndStackTrace
s.Rename
Notification
andKind
to better reflect their purpose,and to avoid confusion with Flutter's Notification class.
Notification
toStreamNotification
Notification.onData
toStreamNotification.data
.Notification.onDone
toStreamNotification.done
.Notification.onError
toStreamNotification.error
.Kind
toNotificationKind
Kind.onData
toNotificationKind.data
.Kind.onError
toNotificationKind.error
.Kind.onDone
toNotificationKind.done
.DataNotification
,ErrorNotification
andDoneNotification
as the subclasses ofStreamNotification
.isOnData
,isOnError
,isOnDone
,requireData
to extension getters onStreamNotification
,they are now named
isData
,isError
,isDone
andrequireDataValue
.StreamNotification
:dataValueOrNull
,requireErrorAndStackTrace
,errorAndStackTraceOrNull
getters andwhen
method.Changed
Accept Dart SDK versions above 3.0.
switchMap
: when cancelling the previous inner subscription,switchMap
will pause the outer subscription and and wait for the inner subscription to be completely canceled.It will then resume the outer subscription, and listen to the next inner Stream.
Any errors from canceling the previous inner subscription will now be forwarded to the resulting Stream.
Breaking: Rename
ForkJoinStream.combine2
..combine9
toForkJoinStream.join2
..join9
.Breaking:
Rx.using
/UsingStream
disposer
is now called after the future returned fromStreamSubscription.cancel
completes.Documentation
v0.27.7
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.7
Fixed
Subject
Only call
onAdd
andonError
if the subject is not closed.This ensures
BehaviorSubject
andReplaySubject
do not update their values after they have been closed.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.Change return type of
ReplaySubject<T>.stream
toReplayStream<T>
.Internal refactoring of
Subject.addStream
.What's Changed
onAdd
andonError
if the subject is not closed by @hoc081098 in https://github.com/ReactiveX/rxdart/pull/698Subject.stream
now returns a read-onlyStream
by @hoc081098 in https://github.com/ReactiveX/rxdart/pull/699Full Changelog: ReactiveX/rxdart@0.27.6...0.27.7
v0.27.6
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.6
Rx.using
/UsingStream
:resourceFactory
can now return aFuture
.This allows for asynchronous resource creation.
Rx.range
/RangeStream
: ensureRangeStream
is only listened to once.What's Changed
RangeStream
can only be listened to once by @hoc081098 in https://github.com/ReactiveX/rxdart/pull/690resourceFactory
can return a Future by @hoc081098 in https://github.com/ReactiveX/rxdart/pull/696Full Changelog: ReactiveX/rxdart@0.27.5...0.27.6
v0.27.5
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.5
Bug fixes
Fix issue #683: Throws runtime type error when using extension
methods on a
Stream<R>
but its type annotation isStream<T>
,R
is a subtype ofT
(covariance issue with
StreamTransformer
).Extension methods were previously implemented via
stream.transform(streamTransformer)
, nowvia
streamTransformer.bind(stream)
to avoid this issue.Fix
concatEager
:activeSubscription
should be changed to next subscription.Code refactoring
pairwise
toStream<List<T>>
.What's Changed
New Contributors
Full Changelog: ReactiveX/rxdart@0.27.4...0.27.5
v0.27.4
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.4
Bug fixes
withLatestFrom
should iterate overIterable<Stream>
s only once when the stream is listened to.Dart 2.16.0
.Features
mapNotNull
/MapNotNullStreamTransformer
.whereNotNull
/WhereNotNullStreamTransformer
.Documentation
RaceStream
(thanks to @Péter Ferenc Gyarmati).What's Changed
Iterable<Stream>
once by @hoc081098 in https://github.com/ReactiveX/rxdart/pull/662rxmarbles
URL forRaceStream
by @peter-gy in https://github.com/ReactiveX/rxdart/pull/669pub: command not found
by @beeth0ven in https://github.com/ReactiveX/rxdart/pull/673packages
flag by @beeth0ven in https://github.com/ReactiveX/rxdart/pull/674New Contributors
Full Changelog: ReactiveX/rxdart@0.27.3...0.27.4
v0.27.3
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.3
Bug fixes
flatMap
now creates innerStream
s lazily.combineLatest
,concat
,concatEager
,forkJoin
,merge
,race
,zip
iterate overIterable<Stream>
s only oncewhen the stream is listened to.
autoConnect
,connect
andrefCount
together, only one of them should be used.Features
AbstractConnectableStream
, base class for theConnectableStream
implementations.CompositeSubscription
(thanks to @BreX900)dispose
,clear
, andremove
methods now return a completion future.StreamSubscription
.CompositeSubscription.add
will throw aStateError
instead of aString
if this composite was disposed.Documentation
Connectable
examples.Flutter
example:SearchResultItem.fromJson
type error (thanks to @WenYeh)Code refactoring
takeLast
implementation.pedantic
tolints
andflutter_lints
.BehaviorSubject
,ReplaySubject
implementations by using "Sentinel object
"s instead ofValueWrapper
s.New Contributors
Full Changelog: ReactiveX/rxdart@0.27.2...0.27.3
v0.27.2
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.2
Bug fixes
onErrorReturnWith
now does not drop the remaining data events after the first error.ConnectableStreamSubscription
.Features
delayWhen
operator.maxConcurrent
toflatMap
.groupBy
GroupByStream
toGroupedStream
.durationSelector
, which used to determine how long each group should exist.ignoreElements
@deprecated
annotation (ignoreElements
should not be marked as deprecated).Stream<Never>
.Documentation
PublishSubject
's docs (thanks to @AlexanderJohr).Code refactoring
Stream.multi
internally.v0.27.1
Compare Source
https://pub.dev/packages/rxdart/versions/0.27.1
ForkJoinStream
throwsNull check operator used on a null value
when using nullable-type.delay
operatorgetsentry/sentry-dart (sentry_flutter)
v8.8.0
Compare Source
Features
SentryFlutter.nativeCrash()
using MethodChannels for Android and iOS (#2239)ignoreRoutes
parameter toSentryNavigatorObserver
. (#2218)Improvements
Dependencies
v8.7.0
Compare Source
Features
ignoreTransactions
andignoreErrors
to options (#2207)SentryProxy
object and set it onSentryFlutter.init
Improvements
Dependencies
v8.6.0
Compare Source
Improvements
GA
toFlutterError
orminified:nE
toFlutterError
enableExceptionTypeIdentification
tofalse
in your Sentry optionsDeprecated
enableTracing
(#2199)enableTracing
option has been deprecated and will be removed in the next major version. We recommend removing itin favor of the
tracesSampleRate
andtracesSampler
options. If you want to enable performance monitoring, please setthe
tracesSampleRate
to a sample rate of your choice, or provide a sampling function astracesSampler
optioninstead. If you want to disable performance monitoring, remove the
tracesSampler
andtracesSampleRate
options.Dependencies
v8.5.0
Compare Source
Features
ignoredExceptionsForType
(#2150)SentryOptions.addExceptionFilterForType(Type exceptionType)
Fixes
Improvements
Dependencies
v8.4.0
Compare Source
Features
SentryFlutter.pauseAppHangTracking()
andSentryFlutter.resumeAppHangTracking()
reportViewHierarchyIdentifiers
to enable or disable the optionFixes
autoAppStarts
isfalse
andsetAppStartEnd
has not been called, the app start event processor will now return early instead of waiting forgetAppStartInfo
to finishImprovements
Platform.version
(#2156)Dependencies
Deprecated
setExtra
andremoveExtra
(#2159)Contexts
structure viasetContexts
insteadflutter/packages (shared_preferences)
v2.3.2
Compare Source
v2.3.1
Compare Source
getStringList
bug withList<Object?>
cast exception.v2.3.0
Compare Source
SharedPreferencesAsync
andSharedPreferencesWithCache
APIs.flutter/packages (webview_flutter)
v4.9.0
Compare Source
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.