Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dio, cupertino_icons, rxdart and graphql_flutter #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 22, 2023

Bumps dio, cupertino_icons, rxdart and graphql_flutter. These dependencies needed to be updated together.
Updates dio from 2.2.2 to 5.0.3

Release notes

Sourced from dio's releases.

dio 5.0.3

What's new

  • Imply List<Map> as JSON content in ImplyContentTypeInterceptor.
  • Fix FormData encoding 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.cancel in Interceptors.
  • Fix wrong encoding of collection query parameters.
  • Fix "unsupported operation" error on web platform.

dio 5.0.1

What's new

  • Add ImplyContentTypeInterceptor as a default interceptor.
  • Add Headers.multipartFormDataContentType for headers usage.
  • Fix variable shadowing of withCredentials in browser_adapers.dart.
Commits

Updates cupertino_icons from 0.1.3 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

Updates rxdart from 0.21.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 onAdd and onError if the subject is not closed. This ensures BehaviorSubject and ReplaySubject do not update their values after they have been closed.

    • Subject.stream now returns a read-only Stream. Previously, Subject.stream was identical to the Subject, 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. Use Subject.sink/Subject itself for adding events.

    • Change return type of ReplaySubject<T>.stream to ReplayStream<T>.

    • Internal refactoring of Subject.addStream.


What's Changed

Full Changelog: ReactiveX/rxdart@0.27.6...0.27.7

0.27.6

https://pub.dev/packages/rxdart/versions/0.27.6

  • Rx.using/UsingStream: resourceFactory can now return a Future. This allows for asynchronous resource creation.

  • Rx.range/RangeStream: ensure RangeStream is only listened to once.


What's Changed

Full Changelog: ReactiveX/rxdart@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 onAdd and onError if the subject is not closed. This ensures BehaviorSubject and ReplaySubject do not update their values after they have been closed.

    • Subject.stream now returns a read-only Stream. Previously, Subject.stream was identical to the Subject, 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. Use Subject.sink/Subject itself for adding events.

    • Change return type of ReplaySubject<T>.stream to ReplayStream<T>.

    • Internal refactoring of Subject.addStream.

0.27.6 (2022-11-11)

  • Rx.using/UsingStream: resourceFactory can now return a Future. This allows for asynchronous resource creation.

  • Rx.range/RangeStream: ensure RangeStream is 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 is Stream<T>, R is a subtype of T (covariance issue with StreamTransformer).

    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 via streamTransformer.bind(stream) to avoid this issue.

  • Fix concatEager: activeSubscription should be changed to next subscription.

Code refactoring

  • Change return type of pairwise to Stream<List<T>>.

0.27.4 (2022-05-29)

Bug fixes

... (truncated)

Commits
  • 3d1b6c0 chore(publish): prepare for v0.27.7 (#701)
  • b0d6ad1 refactor(subject): addStream (#700)
  • e1f6cd9 refactor(subject): Subject.stream now returns a read-only Stream (#699)
  • 1a8fcef ci: add dart 2.17.0
  • 45f8c5e fix(subject): only call onAdd and onError if the subject is not closed (#...
  • 8916c7c chore(publish): prepare for v0.27.6 (#697)
  • 9464cdd refactor(Rx.using): resourceFactory can return a Future (#696)
  • c0566b4 fix(range): ensure RangeStream is only listened to once (#694)
  • 58c82c0 fix(range): make sure RangeStream can only be listened to once (#690)
  • e13dad0 prepare for v0.27.5 (#688)
  • Additional commits viewable in compare view

Updates graphql_flutter from 1.0.0+4 to 5.1.2

Release notes

Sourced from graphql_flutter's releases.

graphql_flutter-v5.1.2

Fixed

graphql_flutter-v5.1.1

Fixed

Added

Merry Christmas 🤶🏼

Vincent.

graphql_flutter-v5.1.1-beta.6

Fixed

graphql_flutter-v5.1.1-beta.4

Fixed

graphql_flutter-v5.1.1-beta.3

Support for Flutter 3.0 landed on graphql_flutter as v5.1.1-beta.3!

New Feature

graphql_flutter-v5.1.1-beta.2

Fixes

graphql_flutter-v5.1.1-beta.1

New Feature

Fixes

graphql_flutter-v5.1.0

New Feature

Changelog

Sourced from graphql_flutter's changelog.

Migrating from v3 – v4

v4 aims to solve a number of sore spots, particularly with caching, largely by leveraging libraries from the gql-dart ecosystem.

There has also been an effort to add more API docs and docs in general, particularly in the graphql README.

NB Note that if you are depending on PersistedQueriesLink, its migration is not yet complete

Cache overhaul

  • There is now only a single GraphQLCache, which leverages normalize, Giving us a much more apolloish API.
    • [typePolicies]
    • [direct cache access] via readQuery, writeQuery, readFragment, and writeFragment
      /// see more in graphql's readme
      client.writeQuery(myQueryOptions.asRequest, queryData);
      client.readQuery(myQueryOptions.asRequest);
  • LazyCacheMap has been deleted
  • GraphQLCache marks itself for rebroadcasting (should fix some related issues)
  • Store now decouples persistence from the cache:
/// Only necessary on flutter
void main() async {
  await initHiveForFlutter();
  runApp(MyApp());
}
GraphQLCache(
// The default store is the InMemoryStore, which does NOT persist to disk
store: GraphQLCache(store: HiveStore()),
)

We now use the gql_link system

  • Most links are re-exported from graphql/client.dart
  • QueryOptions, MutationOptions, etc are turned into gql_exec Requests before being sent down the link chain.

... (truncated)

Commits
  • faa98c3 docs: update changelog for the new release
  • f702ff1 fix: fix ws dependencies version to 2.2.0
  • 849b5e4 Merge pull request #1275 from zino-hofmann/macros/tags-graphql-flutter
  • 409447d docs: generate the changelog for the next tag release
  • 2764170 docs: generate the changelog for the next tag release
  • 01e12fd Merge pull request #1267 from zino-hofmann/macros/connectivity_plus
  • facc95f docs: bump the packages version
  • 0c40ccd Merge pull request #1264 from zino-hofmann/macros/connectivity_plus
  • a92a3e2 fix(graphql_flutter): increase connectivity_plus version to v3
  • 1e9581e feat(graphql): add raw to exceptions on QueryResult
  • 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

Bumps [dio](https://github.com/cfug/dio), [cupertino_icons](https://github.com/flutter/packages/tree/main/third_party/packages), [rxdart](https://github.com/ReactiveX/rxdart) and [graphql_flutter](https://github.com/zino-app/graphql-flutter/tree/main/packages). These dependencies needed to be updated together.

Updates `dio` from 2.2.2 to 5.0.3
- [Release notes](https://github.com/cfug/dio/releases)
- [Commits](https://github.com/cfug/dio/commits/dio_v5.0.3)

Updates `cupertino_icons` from 0.1.3 to 1.0.5
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/cupertino_icons-v1.0.5/third_party/packages)

Updates `rxdart` from 0.21.0 to 0.27.7
- [Release notes](https://github.com/ReactiveX/rxdart/releases)
- [Changelog](https://github.com/ReactiveX/rxdart/blob/master/CHANGELOG.md)
- [Commits](ReactiveX/rxdart@0.21.0...0.27.7)

Updates `graphql_flutter` from 1.0.0+4 to 5.1.2
- [Release notes](https://github.com/zino-app/graphql-flutter/releases)
- [Changelog](https://github.com/zino-hofmann/graphql-flutter/blob/main/changelog-v3-v4.md)
- [Commits](https://github.com/zino-app/graphql-flutter/commits/graphql_flutter-v5.1.2/packages)

---
updated-dependencies:
- dependency-name: dio
  dependency-type: direct:production
- dependency-name: cupertino_icons
  dependency-type: direct:production
- dependency-name: rxdart
  dependency-type: direct:production
- dependency-name: graphql_flutter
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 22, 2023
@muniz95
Copy link
Owner

muniz95 commented Nov 24, 2023

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Nov 24, 2023

Looks like this PR is already up-to-date with master! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@muniz95
Copy link
Owner

muniz95 commented Nov 25, 2023

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Nov 25, 2023

Looks like this PR is already up-to-date with master! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant