Bump dio, toast, cupertino_icons, rxdart, cached_network_image, pull_to_refresh, flutter_markdown, fluttertoast, connectivity, shared_preferences and url_launcher
Bumps dio, toast, cupertino_icons, rxdart, cached_network_image, pull_to_refresh, flutter_markdown, fluttertoast, connectivity, shared_preferences and url_launcher. These dependencies needed to be updated together.
Updates dio from 2.1.16 to 5.0.3
Release notes
Sourced from dio's releases.
dio 5.0.3
What's new
- Imply
List<Map>as JSON content inImplyContentTypeInterceptor.- Fix
FormDataencoding for collections and objects.dio 5.0.2
What's new
- Improve code formats according to linter rules.
- Remove the force conversion for the response body.
- Fix
DioErrorType.cancelinInterceptors.- Fix wrong encoding of collection query parameters.
- Fix "unsupported operation" error on web platform.
dio 5.0.1
What's new
- Add
ImplyContentTypeInterceptoras a default interceptor.- Add
Headers.multipartFormDataContentTypefor headers usage.- Fix variable shadowing of
withCredentialsinbrowser_adapers.dart.
Commits
- See full diff in compare view
Updates toast from 0.1.5 to 0.3.0
Commits
- See full diff in compare view
Updates cupertino_icons from 0.1.2 to 1.0.5
Release notes
Sourced from cupertino_icons's releases.
animations-v1.0.0
No release notes provided.
animations-v1.0.0+1
No release notes provided.
animations-v1.0.0+2
No release notes provided.
animations-v1.0.0+3
No release notes provided.
animations-v1.0.0+4
No release notes provided.
animations-v1.0.0+5
No release notes provided.
flutter_lints-v1.0.0-dev.0
- Initial pre-release
Commits
f78df7bcreate a ttf that has duplicate codepoints to better handle the 0.1.3 transition3e02d40Added better documentation to find the pub package (#3)- See full diff in compare view
Updates rxdart from 0.20.0 to 0.27.7
Release notes
Sourced from rxdart's releases.
0.27.7
https://pub.dev/packages/rxdart/versions/0.27.7
Fixed
Subject
Only call
onAddandonErrorif the subject is not closed. This ensuresBehaviorSubjectandReplaySubjectdo not update their values after they have been closed.
Subject.streamnow returns a read-onlyStream. Previously,Subject.streamwas 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 aTypeErrorif attempted. UseSubject.sink/Subjectitself for adding events.Change return type of
ReplaySubject<T>.streamtoReplayStream<T>.Internal refactoring of
Subject.addStream.
What's Changed
- fix(subject): only call
onAddandonErrorif the subject is not closed by@​hoc081098in ReactiveX/rxdart#698- refactor(subject):
Subject.streamnow returns a read-onlyStreamby@​hoc081098in ReactiveX/rxdart#699- refactor(subject): addStream by
@​hoc081098in ReactiveX/rxdart#700- chore(publish): prepare for v0.27.7 by
@​hoc081098in ReactiveX/rxdart#701Full Changelog: https://github.com/ReactiveX/rxdart/compare/0.27.6...0.27.7
0.27.6
https://pub.dev/packages/rxdart/versions/0.27.6
Rx.using/UsingStream:resourceFactorycan now return aFuture. This allows for asynchronous resource creation.
Rx.range/RangeStream: ensureRangeStreamis only listened to once.
What's Changed
- fix(range): make sure
RangeStreamcan only be listened to once by@​hoc081098in ReactiveX/rxdart#690- fix(range): ensure RangeStream is only listened to once by
@​hoc081098in ReactiveX/rxdart#694- refactor(Rx.using):
resourceFactorycan return a Future by@​hoc081098in ReactiveX/rxdart#696- chore(publish): prepare for v0.27.6 by
@​hoc081098in ReactiveX/rxdart#697Full Changelog: https://github.com/ReactiveX/rxdart/compare/0.27.5...0.27.6
0.27.5
https://pub.dev/packages/rxdart/versions/0.27.5
Bug fixes
... (truncated)
Changelog
Sourced from rxdart's changelog.
0.27.7 (2022-11-16)
Fixed
Subject
Only call
onAddandonErrorif the subject is not closed. This ensuresBehaviorSubjectandReplaySubjectdo not update their values after they have been closed.
Subject.streamnow returns a read-onlyStream. Previously,Subject.streamwas 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 aTypeErrorif attempted. UseSubject.sink/Subjectitself for adding events.Change return type of
ReplaySubject<T>.streamtoReplayStream<T>.Internal refactoring of
Subject.addStream.0.27.6 (2022-11-11)
Rx.using/UsingStream:resourceFactorycan now return aFuture. This allows for asynchronous resource creation.
Rx.range/RangeStream: ensureRangeStreamis only listened to once.0.27.5 (2022-07-16)
Bug fixes
Fix issue #683: Throws runtime type error when using extension methods on a
Stream<R>but its type annotation isStream<T>,Ris a subtype ofT(covariance issue withStreamTransformer).Stream<num> s1 = Stream<int>.fromIterable([1, 2, 3]); // throws "type 'SwitchMapStreamTransformer<num, num>' is not a subtype of type 'StreamTransformer<int, num>' of 'streamTransformer'" s1.switchMap((v) => Stream.value(v));Stream<int?> s2 = Stream<int>.fromIterable([1, 2, 3]); // throws "type 'SwitchMapStreamTransformer<int?, int?>' is not a subtype of type 'StreamTransformer<int, int?>' of 'streamTransformer'" s2.switchMap((v) => Stream.value(v));
Extension methods were previously implemented via
stream.transform(streamTransformer), now viastreamTransformer.bind(stream)to avoid this issue.Fix
concatEager:activeSubscriptionshould be changed to next subscription.Code refactoring
- Change return type of
pairwisetoStream<List<T>>.0.27.4 (2022-05-29)
Bug fixes
... (truncated)
Commits
3d1b6c0chore(publish): prepare for v0.27.7 (#701)b0d6ad1refactor(subject): addStream (#700)e1f6cd9refactor(subject):Subject.streamnow returns a read-onlyStream(#699)1a8fcefci: add dart 2.17.045f8c5efix(subject): only callonAddandonErrorif the subject is not closed (#...8916c7cchore(publish): prepare for v0.27.6 (#697)9464cddrefactor(Rx.using):resourceFactorycan return aFuture(#696)c0566b4fix(range): ensure RangeStream is only listened to once (#694)58c82c0fix(range): make sureRangeStreamcan only be listened to once (#690)e13dad0prepare for v0.27.5 (#688)- Additional commits viewable in compare view
Updates cached_network_image from 1.1.1 to 3.2.3
Commits
876a082versioning and changelogc9865f7Merge pull request #792 from davidmartos96/closeChunksStreamac60e35fix typoce6d671Unsubscribe from chunkEventsad4dea3Close chunk events stream controller when imageStream is disposed3fcd65aprepare releasebdbfe33Merge pull request #773 from Baseflow/bugfix/use-loadbufferf611c96Fix deprecations0f76edfpublish platform_interface and web implementation43fae1aAdd git reference for cached_network_image- Additional commits viewable in compare view
Updates pull_to_refresh from 1.5.4 to 2.0.0
Release notes
Sourced from pull_to_refresh's releases.
V2.0.0
Breaking Changes:
- Remove onOffsetChange in SmartRefresher,autoLoad in RefreshConfiguration,scrollController in RefreshController
- add argument to onTwoLevel(callback when closed)
features
- migrate null-safety
- add needCallback in requestRefresh and requestLoading for avoiding the callback of onRefresh or onLoading
Bug fix
- In NestedScrollView+ClampingScrollPhysics(Android ScrollBehaviour),header can be seen when fling to top.
- unMounted widget used crash error when fast rebuild in requestRefresh
- fix sliverRefreshBody layoutSize instead of -0.001,it will crash error when viewportMainAxis=0
Other
- Add assert to avoid invalid usage
V1.6.5
- fix check full page logic.
- fix crash "locking up a deactive widget is unsafe".
V1.6.4
- fix error crash by deprecated function removed
- add extra ScrollView reference parameter
V1.6.4-nullsafety.0
- add null safety
V1.6.3
- fix bug:gesture disabled after refresh complete in an error refreshState
- fix problem:Footer hide back suddenly(this cause by the flutter breaking change)
- add vibrate option to enable vibrate when trigger onRefresh or onLoading
- fix SmartRefresher key in mutiple widgets
- add other languages
V1.6.2
- fix "_pendingDimenssion is not true" fatal error
V1.6.1
- fix nestedSrollView requestRefresh error
- fix NestedScrollView cast error
- fix twice loading when no data return
- reuse the state when update refreshController
- add other language
V1.6.0
- fix slow bounce back when load more too fast
- fix footer renderError with reverse:true,behaviour return to 1.5.7
- add check null in requestRefresh()
- fix refreshText reverse error(ClassicHeader) when reverse:true
... (truncated)
Changelog
Sourced from pull_to_refresh's changelog.
2.0.0
Breaking Changes:
- Remove onOffsetChange in SmartRefresher,autoLoad in RefreshConfiguration,scrollController in RefreshController
- add argument to onTwoLevel(callback when closed)
features
- migrate null-safety
- add needCallback in requestRefresh and requestLoading for avflutoiding the callback of onRefresh or onLoading
Bug fix
- In NestedScrollView+ClampingScrollPhysics(Android ScrollBehaviour),header can be seen when fling to top.
- unMounted widget used crash error when fast rebuild in requestRefresh
- fix sliverRefreshBody layoutSize instead of -0.001,it will crash error when viewportMainAxis=0
Other
- Add assert to avoid invalid usage
1.6.5
- fix check full page logic.
- fix crash "locking up a deactive widget is unsafe".
1.6.4
- fix error crash by deprecated function removed
- add extra ScrollView reference parameter
1.6.3
- fix bug:gesture disabled after refresh complete in an error refreshState
- fix problem:Footer hide back suddenly(this cause by the flutter breaking change)
- add vibrate option to enable vibrate when trigger onRefresh or onLoading
- fix SmartRefresher key in mutiple widgets
- add other languages
1.6.2
- fix "_pendingDimenssion is not true" error with the breaking change
1.6.1
- fix NestedScrollView requetRefresh error
- fix NestedScollView cast error
- fix twiceloadng when no data return
- add support for update refreshcontroller
- add other language
1.6.0
- fix slow bounce back when load more too fast
- fix footer renderError with reverse:true,behaviour return to 1.5.7
- add check null in requestRefresh()
- fix refreshText reverse error(ClassicHeader) when reverse:true
... (truncated)
Commits
0be096cupdate to 2.0.06544819format code195af8badd bool argument to onTwoLevelbd5b264Remove autoLoad in RefreshConfiguration22a700fadd test to needCallback argument9f84946Add needCallback argument:allow requestRefresh not to callback onRefreshde85a2eadd assert:prevent use controller to mutiple SmartRefreshd221d3fRemove scrollController and onOffsetChange33effd7fix merge errore39f285Merge remote-tracking branch 'origin/nullsafety'- Additional commits viewable in compare view
Updates flutter_markdown from 0.2.0 to 0.6.14
Commits
0fe1b44[flutter_markdown] Require pkg:markdown v7.0.0 (#3194)6e32045[xdg_directories] Mark as 1.0 (#3091)34e0db2[ci] More LUCI pre-alignment with flutter/plugins (#3188)3f20f4b[pigeon] Change the Obj-C error type for FlutterApi (#3182)b6f2ee1[go_router] AddsreverseTransitionDurationtoCustomTransitionPage(#3175)c558f01[ci] Partially migrate macOS-host Pigeon tests to LUCI (#3046)4f8598a[go_router] Avoid unnecessary null checks (#3142)f2f6c5e[go_router_builder] Support default values for route parameters (#2826)fa4775eManual flutter roll and analyzer fix (#3174)b338aba[pigeon]: Bump org.jetbrains.kotlin:kotlin-gradle-plugin (#3169)- Additional commits viewable in compare view
Updates fluttertoast from 3.1.0 to 8.2.1
Changelog
Sourced from fluttertoast's changelog.
[8.2.1]
- Removed
context.mounted[8.2.0]
- Updated the flow for Toast with Context
[8.1.4]
- Merged #419 (added environment restriction in pubspec)
[8.1.3]
- Merged #415 (improvements to provide safer usage)
@​AlexSeednov- Updated Readme.md
[8.1.2]
[8.1.1] [8.1.0]
- Many issues fixed
- iOS M1 Chip Fix
[8.0.9]
[8.0.8]
- Many issues fixed
[8.0.7]
- Added fadeDuration in FToast to set fade animation Duration
- Fixed Toast behind the screen #287 , #281
- Fixed #303
[8.0.6]
- Only safe (?.) or non-null asserted (!!.) (#300)
[8.0.5]
- Fixed Unresolved reference: R (Issue with Android API 30)
[8.0.4]
- Fixed Unresolved reference: R (Issue with Android API 30)
... (truncated)
Commits
- See full diff in compare view
Updates connectivity from 0.3.1 to 3.0.6
Commits
375c423Point deprecated plugins to Plus versions (#3971)a864de2Move integration test to null safety for multiple plugins (#3932)df4dea5[connectivity] Ignore Reachability pointer to int cast warning (#3941)4277ce9Enable web integration tests on stable (#3903)469551a[connectivity] Migrate maven repo from jcenter to mavenCentral (#3909)37ac97fEnsure that integration tests are actually being run (#3857)7765fa0Check in macOS example Podfiles (#3864)c54b73dAdd implement and registerWith method to plugins (#3833)50f9ee9Move all null safety packages' min dart sdk to 2.12.0 (#3822)89ccc0eFix and update version checks (#3792)- Additional commits viewable in compare view
Updates shared_preferences from 0.5.3+4 to 2.0.20
Release notes
Sourced from shared_preferences's releases.
animations-v2.0.0-nullsafety.0
- Migrates to null safety.
animations-v1.1.2
- Fixes for upcoming changes to the flutter framework.
animations-v1.1.1
No release notes provided.
animations-v1.1.0
No release notes provided.
animations-v1.0.0
No release notes provided.
animations-v1.0.0+1
No release notes provided.
animations-v1.0.0+2
No release notes provided.
animations-v1.0.0+3
No release notes provided.
animations-v1.0.0+4
No release notes provided.
animations-v1.0.0+5
No release notes provided.
flutter_lints-v1.0.0-dev.0
- Initial pre-release
Commits
- See full diff in compare view
Updates url_launcher from 5.1.2 to 6.1.10
Commits
25f0f70[various] Update flutter/plugins links (#3256)943ffbc[plugins] Disables the AndroidGradlePluginVersion issue ID in all android pac...39a1ee4[url_launcher]: Bump org.mockito:mockito-core (#7098)e800e3cMigrate these tests to the "new" API. (#7189)0814a3b[various] Raise JVM limit in example builds (#7155)21efb87[url_launcher_ios] Update minimum Flutter version to 3.3 and iOS 11 (#7110)b852a78[various] prepare for more const widgets (#7074)f4b2779prepare for TestDefaultBinaryMessengerBinding.instance becoming non-nullable ...b866cbc[url_launcher] Convert Windows to Pigeon (#6991)a6ff238[ci] Update legacy Flutter version tests (#7019)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
@dependabot[bot]: Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by:
The full list of commands accepted by this bot can be found here.
Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment