zino-hofmann / graphql-flutter

A GraphQL client for Flutter, bringing all the features from a modern GraphQL client to one easy to use package.
https://zino-hofmann.github.io/graphql-flutter
MIT License
3.24k stars 612 forks source link

docs: preparing for the beta 2 #1324

Closed vincenzopalazzo closed 1 year ago

vincenzopalazzo commented 1 year ago

Just a changelog generation

vincenzopalazzo commented 1 year ago

new google IO new CI break

Changed 95 dependencies!
Resolving dependencies in ./example...
The Flutter CLI developer tool uses Google Analytics to report usage and diagnostic data
along with package dependencies, and crash reporting to send basic crash reports.
This data is used to help improve the Dart platform, Flutter framework, and related tools.
Telemetry is not sent on the very first run.
To disable reporting of telemetry, run this terminal command:
flutter --disable-telemetry.
If you opt out of telemetry, an opt-out event will be sent,
and then no further information will be sent.
This data is collected in accordance with the
Google Privacy Policy (https://policies.google.com/privacy).
vincenzopalazzo commented 1 year ago
graphql:
Formatted 54 files (0 changed) in 0.82 seconds.
Analyzing ....

warning - lib/src/scheduler/scheduler.dart:60:40 - The type argument(s) of the generic function type 'Future<QueryResult<TParsed>?> Function<TParsed>(String)' can't be inferred. Use explicit type argument(s) for 'Future<QueryResult<TParsed>?> Function<TParsed>(String)'. - inference_failure_on_generic_invocation
ndelanou commented 1 year ago

This should do the job:

scheduler.dart:

-   intervalQueries[interval]!.forEach(queryManager!.refetchQuery);
+   intervalQueries[interval]!.forEach(queryManager!.refetchQuery<dynamic>);
codecov[bot] commented 1 year ago

Codecov Report

Merging #1324 (16a6eac) into main (e5835b4) will not change coverage. The diff coverage is 100.00%.

:exclamation: Current head 16a6eac differs from pull request most recent head d6f0bd1. Consider uploading reports for the commit d6f0bd1 to get more accurate results

@@           Coverage Diff           @@
##             main    #1324   +/-   ##
=======================================
  Coverage   63.52%   63.52%           
=======================================
  Files          41       41           
  Lines        1689     1689           
=======================================
  Hits         1073     1073           
  Misses        616      616           
Impacted Files Coverage Δ
packages/graphql/lib/src/scheduler/scheduler.dart 100.00% <100.00%> (ø)