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

Update dependency fl_chart to ^0.68.0 #42

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 3, 2021

Mend Renovate

This PR contains the following updates:

Package Type Update Change
fl_chart (source) dependencies minor ^0.12.2 -> ^0.68.0

Release Notes

imaNNeo/fl_chart (fl_chart)

v0.68.0

Compare Source

  • Improvement (by @​imaNNeo) Update LineChartSample6 to implement a way to show a tooltip on a single spot, #​1620
  • Feature (by @​herna) Add titleSunbeamLayout inside the BarChartData to allow the user to customize the layout of the title sunbeam
  • Improvement (by @​imaNNeo) Add LineChart and BarChart explanation videos on top of the respective documentation pages (LineChart video, BarChart video)

v0.67.0

Compare Source

/// Migration guide:
/// This is the old way:
BarChartData(
  barTouchData: BarTouchData(
    touchTooltipData: BarTouchTooltipData(
      tooltipBgColor: Colors.blueGrey,
    )
  )
)

/// This is the new way:
BarChartData(
  barTouchData: BarTouchData(
    touchTooltipData: BarTouchTooltipData(
      getTooltipColor: (BarChartGroupData group) => Colors.blueGrey,
    )
  )
)

v0.66.2

Compare Source

v0.66.1

Compare Source

v0.66.0

Compare Source

  • IMPROVEMENT (by @​imaNNeo) Add Flutter sdk constraints to the pubspec.yaml to force the user/developer to upgrade the Flutter version to 3.16.0 (latest), #​1509
  • IMPROVEMENT (by @​imaNNeo) Add dotPainter property to ScatterSpot to allow customizing the dot painter, #​568
  • BREAKING (by @​imaNNeo) Remove color and radius properties from ScatterSpot (use dotPainter instead), #​568
  • BREAKING (by @​imaNNeo) Change the default value of FlDotCirclePainter.strokeWidth to 0.0
/// Migration guide:
/// This is the old way:
ScatterSpot(
  2,
  5,
  color: Colors.red,
  radius: 12,
)

/// This is the new way:
ScatterSpot(
  2,
  8,
  dotPainter: FlDotCirclePainter(
    color: Colors.red,
    radius: 22,
  ),
),

v0.65.0

Compare Source

v0.64.0

Compare Source

  • BUGFIX (by @​Anas35) Fix Tooltip not displaying when value from BackgroundBarChartRodData is less than zero. #​1345.
  • BUGFIX (by @​imaNNeo) Fix Negative BarChartRodStackItem are not drawn correctly bug, #​1347
  • BUGFIX (by @​imaNNeo) Fix bar_chart_helper minY calculation bug, #​1388
  • IMPROVEMENT (by @​imaNNeo) Consider fraction digits when formatting chart side titles, #​1267

v0.63.0

Compare Source

  • BUGFIX (by @​imaNNeo) Fix PieChart crash on web-renderer html by ignoring sectionsSpace when Path.combine() does not work (it's flutter engine issue), #​955
  • BUGFIX (by @​imaNNeo) Fix ScatterChart long-press interaction bug (disappears when long-pressing on the chart), #​1318
  • FEATURE (by @​imaNNeo) Upgrade dart version to 3.0

v0.62.0

Compare Source

v0.61.0

Compare Source

v0.60.0

Compare Source

  • IMPROVEMENT (by @​lsaudon) Replace flutter_lints by very_good_analysis
  • BREAKING (by @​lsaudon) Update dart sdk to 2.17.0 (flutter 3.0.0)
  • BUGFIX (by @​imaNNeo) Fix indicator out of range error in line chart, #​1187
  • FEATURE (by @​HTsuruo): Add longPressDuration optional property that allows to control the duration LongPress gesture occurs, #​1114 #​1127.
  • IMPROVEMENT (by @​imaNNeo) Add some screenshots in pubspec.yaml to support new pub.dev feature. Read more about it here and here.
  • IMPROVEMENT (by @​imaNNeo) Update the homepage url in pubspec.yaml (I just renamed my username)
  • FEATURE (by @​JoshMart) Add ability to draw extra horizontal lines on BarChart, #​476
  • FEATURE (by @​soraef) Add a positionPercentageOffset optional property to RadarChartTitle to allow individual title positioning
  • BUGFIX (by @​imaNNeo) Allow to draw empty radarChart (with all zero values), #​1217
  • IMPORTANT IRAN NEEDS YOU. SPREAD THE NEWS.

v0.55.2

Compare Source

  • BUGFIX (by @​imaNNeo): Fix inner border of pieChart with single section, #​1089
  • IMPORTANT IRAN NEEDS HELP

As you might know, Islamic Republic of Iran is murdering people in silence right now in Iran
They shut the Internet down to do that. That’s why I cannot maintain this library for a while.
Now we need your help, please be our voice by spreading news in your media to support us
Search these hashtags:

#MahsaAmini
مهسا_امینی
OpIran

Also, this article might help.

v0.55.1

Compare Source

  • BUGFIX (by @​ateich): Fix infinite loop in RadarChart when all values in RadarDataSet are equal, #​882.
  • BUGFIX (by @​ateich): Fix uneven titles in RadarChart when using titlePositionPercentageOffset, #​1074.
  • BUGFIX (by @​imaNNeo): Fix PieChart single section stroke issue, #​1089

v0.55.0

Compare Source

v0.51.0

Compare Source

  • FEATURE (by @​imaNNeo): Add SideTitleWidget to help you use it in [SideTitles.getTitlesWidget]. It's a wrapper around your widget. It keeps your provided child widget close to the chart. It has angle and space properties to handle margin and rotation. There is a axisSide property that you should fill, it has provided to you in the MetaData object. Check the below sample:
getTitlesWidget: (double value, TitleMeta meta) {
  return SideTitleWidget(
    axisSide: meta.axisSide,
    space: 8.0,
    angle: 0.0,
    child: const Text("This is your widget"),
  );
},
  • IMPROVEMENT (by @​imaNNeo): Fix default LineChart interval issue on small view sizes, #​909.

v0.50.6

Compare Source

  • IMPROVEMENT Fix a backward compatibility issue with Flutter 3.0, #​1016

v0.50.5

Compare Source

  • IMPROVEMENT Fix test coverage problem again :/

v0.50.4

Compare Source

  • IMPROVEMENT Fix test coverage problem

v0.50.3

Compare Source

  • IMPROVEMENT Fix order of drawing lineChart bar indicator problem, #​198.
  • FEATURE Add isStrokeJoinRound property in LineChartBarData.
  • IMPROVEMENT Upgrade to Flutter 3, #​997.
  • FEATURE Add chartRendererKey property to the LineChart, BarChart, and ScatterChart. We pass it directly to our chart renderers that are responsible to render the chart itself (without anything around it like titles), #​987.

v0.50.1

Compare Source

  • BUGFIX Allow to show axisTitle without sideTitles, #​963

v0.50.0

Compare Source

This release has some breaking changes. So please check out the migration guide here

LineChartSample 8 (Source Code)

BarChartSample 7 (Source Code)

v0.46.0

Compare Source

v0.45.1

Compare Source

  • IMPORTANT Fuck Vladimir Putin
  • BUGFIX Fix FlSpot.nullSpot at the first of list bug, #​912.
  • FEATURE Add scatterLabelSettings property in ScatterChart which lets you to add titles on the spots, #​902.

v0.45.0

Compare Source

  • BUGFIX Fix clipData implementation in ScatterChart and LineChart, #​897.
  • BUGFIX Fix PieChart changing sections issue (we have disabled semantics for pieChart badgeWidgets), #​861.
  • BUGFIX Fix LineChart width smaller width or height lower than 40, #​869, #​857.
  • BUGFIX Allow to show title when axis diff is zero, #​842, #​879.
  • IMPROVEMENT Improve iteration over axis values logic (it solves some minor problems on showing titles when min, max values are below than 1.0).
  • IMPROVEMENT Add baselineX and baselineY property in our axis-based charts, It fixes a problem about interval which mentioned in #​893 (check this sample.
  • IMPROVEMENT Added distanceCalculator to LineTouchData which is used to calculate the distance between spots and touch events, #​716, #​261, #​892
  • BREAKING LineTouchResponse response now contains a list of TouchLineBarSpot instead of LineBarSpot. They are ordered based on their distance to the touch event and also contain that distance.

v0.41.0

Compare Source

  • BUGFIX Fix getNearestTouchedSpot. Previously it returned the first occurrence of a spot within the threshold, and not the nearest, #​641, #​645.
  • FEATURE Add textAlign property in the SideTitles, #​784.
  • IMPROVEMENT Write some unit-tests and enable code coverage reports in our CI

v0.40.6

Compare Source

  • IMPROVEMENT Fix showing zero value in side titles and grid lines when we add negative value. Now we always go through the zero value in each axis, #​739.
  • BUGFIX Fix example app unsupported operation problem on web, #​844.

v0.40.5

Compare Source

  • BUGFIX Fix BarChart empty groups state error, #​797.
  • BUGFIX Fix drawTooltipOnTop direction minor bug, #​815.
  • BUGFIX Fix section with zero value problem in PieChart (disabled animation on changing value to zero and from zero), #​817
  • BUGFIX Fix pie chart stroke problem when adding space between sections (using new approach), #​818.
  • IMPROVEMENT Fix interval below one, #​811

v0.40.2

Compare Source

  • IMPROVEMENT Use 80 characters for code format line-length instead of 100 (because pub.dev works with 80 and decreased our score).

v0.40.1

Compare Source

  • IMPROVEMENT Fix pub.dev determining web support, #​780.
  • IMPROVEMENT Implement flutter_lints in the code.
  • BUGFIX Fix below/above area data transparency issue, #​770.

v0.40.0

Compare Source

  • BUGFIX Fixed pieChart centerRadius = double.infinity problem, #​747.c
  • BREAKING Charts touchCallback signature has changed to (FlTouchEvent event, BaseTouchResponse? response) which FlTouchEvent determines which touch/pointer event happened (such as FlTapUpEvent, FlPanUpdateEvent, ...), and BaseTouchResponse gives us the chart response.
  • BREAKING Chart touchResponse classes don't have touchInput and clickHappened properties anymore. Use FlTouchEvent provided in the callback instead of touchInput. Check event is FlTapUpEvent to detect touch events instead of checking clickHappened;
  • IMPROVEMENT Again we support longPress touch events. check FlTouchEvent to see all kind of supported touch/pointer events (which can be FlLongPressStart, FlLongPressMoveUpdate, FlLongPressEnd, ...). Also you can check out touch handling doc, #​649.
  • IMPROVEMENT Added mouseCursorResolver callback in touchData classes such as LineTouchData and BarTouchData. You can change the MouseCursor based on the provided FlTouchEvent and touchResponse using this callback. (We have used this feature in PieChartSample2)
  • BUGFIX Fixed ScatterChart default touchHandling crash
  • BUGFIX Fix text styles when updating the theme. Check this theme-aware-sample.
  • IMPROVEMENT Show narrow horizontal and vertical grid lines by default.
  • IMPROVEMENT Show all left, top (except BarChart), right, bottom titles in Axis based charts by default.
  • IMPROVEMENT Set BarChartAlignment.spaceEvenly as alignment property of BarChartData by default
  • IMPROVEMENT Allow BarChart and LineChart have empty values instead of throwing exception (we don't show anything if there is nothing provided)
  • BREAKING textStyle of ScatterTooltipItem is now nullable and optional. bottomMargin is also optional (default is zero). So both are named parameters now.
  • IMPROVEMENT We improved touch precision of ScatterChart.
  • BUGFIX Fix overlapping last gridlines on border lines problem.
  • NEWS Your donation motivates me to work more on the fl_chart and resolve more issues. Now you can buy me a coffee!

v0.36.4

Compare Source

  • IMPROVEMENT Added borderSide property in BarChartRodData and BarChartRodStackItem to draw strokes around each bar and rod stack items, #​714.
  • IMPROVEMENT Now all textStyles are nullable and theme-aware by default, #​269.
  • BREAKING All getTextStyles callback now give you a context and value (previously it was only a value).
  • BUGFIX Fixed colorStops calculation which used in gradient colors, #​732.

v0.36.3

Compare Source

v0.36.2

Compare Source

v0.36.1

Compare Source

v0.36.0

Compare Source

  • BUGFIX Fixed bug of lerping FlSpot.nullSpot, #​487.
  • BUGFIX Fixed showing tooltip problem when animating chart, #​647.
  • BUGFIX Fixed RadarChart drawing problem, #​627.
  • IMPROVEMENT Now SideTitles.interval is working correctly in bottomTitles in the BarChart, #​648.
  • BREAKING You should provide spotsIndices instead of showingSpots in ShowingTooltipIndicators.

v0.35.0

Compare Source

  • IMPROVEMENT Added children property in the LineTooltipItem, BarTooltipItem and ScatterTooltipItem which accepts a list of TextSpan. It allows you to have more customized texts inside the tooltip. See BarChartSample1 and ScatterSample2, #​72, #​294.
  • IMPROVEMENT Added getTouchLineStart and getTouchLineEnd in LineTouchData to give more customizability over showing the touch lines. see SampleLineChart9.
  • IMPROVEMENT Enabled sectionsSpace in PieChart for the web.
  • IMPROVEMENT Added Makefile commands which makes it comfortable for verifying your code before push (It is related to contributors, red more about it in CONTRIBUTING.md).
  • IMPROVEMENT Added FlDotCrossPainter which extends FlDotPainter to paint X marks on line chart spots.
  • IMPROVEMENT Added textDirection property in LineTooltipItem, BarTooltipItem and ScatterTooltipItem. It allows you to support rtl languages in tooltips.
  • IMPROVEMENT Added textDirection property in SideTitles class, #​531. It allows you to support rtl languages in side titles.
  • IMPROVEMENT Added textDirection property in AxisTitles class. It allows you to support rtl languages in axis titles.
  • BUGFIX Fixed some bugs on drawing PieChart (for example when we have only one section), #​582,
  • BREAKING Border of pieChart now is hide by default (you can show it using borderData: FlBorderData(show: true).
  • BREAKING You cannot set 0 value on PieChartSectionData.value anymore, instead remove it from list.
  • BREAKING Removed fullHeightTouchLine property from LineTouchData. Now you can have a full line with following snippet:
LineTouchData(
  ...
  getTouchLineStart: (barData, index) => -double.infinity // default: from bottom,
  getTouchLineEnd: (barData, index) => double.infinity //to top,
  ...
)

v0.30.0

Compare Source

v0.20.1

Compare Source


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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch 2 times, most recently from 416ade7 to 9dee57d Compare March 8, 2021 12:02
@renovate renovate bot changed the title Update dependency fl_chart to ^0.20.0 Update dependency fl_chart to ^0.30.0 Mar 22, 2021
@renovate renovate bot changed the title Update dependency fl_chart to ^0.30.0 Update dependency fl_chart to ^0.35.0 Apr 1, 2021
@renovate renovate bot changed the title Update dependency fl_chart to ^0.35.0 Update dependency fl_chart to ^0.36.0 Apr 30, 2021
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 477f58e to 3618c05 Compare May 6, 2021 17:08
@renovate renovate bot changed the title Update dependency fl_chart to ^0.36.0 Update dependency fl_chart to ^0.40.0 Oct 18, 2021
@renovate renovate bot changed the title Update dependency fl_chart to ^0.40.0 Update dependency fl_chart to ^0.45.0 Mar 7, 2022
@renovate renovate bot changed the title Update dependency fl_chart to ^0.45.0 Update dependency fl_chart to ^0.50.0 Mar 26, 2022
@renovate renovate bot changed the title Update dependency fl_chart to ^0.50.0 Update dependency fl_chart to ^0.55.0 Jun 18, 2022
@renovate renovate bot changed the title Update dependency fl_chart to ^0.55.0 Update dependency fl_chart to ^0.61.0 Mar 17, 2023
@renovate
Copy link
Author

renovate bot commented Mar 17, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pubspec.lock
Command failed: flutter pub upgrade fl_chart
The current Dart SDK version is 2.10.5.

Because covid19 depends on fl_chart >=0.20.0-nullsafety1 which requires SDK version >=2.12.0-259.12.beta <3.0.0 or >=3.0.0 <4.0.0, version solving failed.
---- Log transcript ----
FINE: Pub 2.10.5
MSG : Resolving dependencies...
SLVR: fact: covid19 is 7.5.1+7.5.1
SLVR: derived: covid19
SLVR: fact: covid19 depends on flutter any from sdk
SLVR: fact: covid19 depends on adaptive_theme ^1.1.0
SLVR: fact: covid19 depends on auto_size_text ^2.1.0
SLVR: fact: covid19 depends on bezier_chart ^1.0.17+1
SLVR: fact: covid19 depends on bottom_navy_bar ^5.6.0
SLVR: fact: covid19 depends on cached_network_image ^2.5.0
SLVR: fact: covid19 depends on dio ^3.0.10
SLVR: fact: covid19 depends on dio_http_cache ^0.2.11
SLVR: fact: covid19 depends on dio_retry ^0.1.9-beta
SLVR: fact: covid19 depends on easy_localization ^2.3.3
SLVR: fact: covid19 depends on firebase_analytics ^6.3.0
SLVR: fact: covid19 depends on firebase_core ^0.5.3
SLVR: fact: covid19 depends on fl_chart ^0.68.0
SLVR: fact: covid19 depends on flare_flutter ^2.0.6
SLVR: fact: covid19 depends on flutter_dotenv ^3.1.0
SLVR: fact: covid19 depends on flutter_hooks ^0.15.0
SLVR: fact: covid19 depends on flutter_icons ^1.1.0
SLVR: fact: covid19 depends on flutter_map ^0.11.0
SLVR: fact: covid19 depends on flutter_native_admob ^2.1.0+3
SLVR: fact: covid19 depends on geolocator ^6.1.13
SLVR: fact: covid19 depends on hooks_riverpod ^0.12.1
SLVR: fact: covid19 depends on intl ^0.16.1
SLVR: fact: covid19 depends on latlong ^0.6.1
SLVR: fact: covid19 depends on list_tile_switch ^0.0.2
SLVR: fact: covid19 depends on loading_animations ^2.1.0
SLVR: fact: covid19 depends on shared_preferences ^0.5.12+4
SLVR: fact: covid19 depends on state_notifier ^0.6.0
SLVR: fact: covid19 depends on url_launcher ^5.7.10
SLVR: fact: covid19 depends on package_info ^0.4.3+2
SLVR: fact: covid19 depends on avatar_glow ^1.2.0
SLVR: fact: covid19 depends on flutter_animator ^2.1.0
SLVR: fact: covid19 depends on flutter_test any from sdk
SLVR: fact: covid19 depends on lint ^1.3.0
SLVR: fact: covid19 depends on flutter_launcher_icons ^0.8.1
SLVR: fact: covid19 depends on flutter_launcher_name ^0.0.1
SLVR: fact: covid19 depends on flutter_native_splash ^0.3.0
SLVR:   selecting covid19
SLVR:   derived: flutter_native_splash ^0.3.0
SLVR:   derived: flutter_launcher_name ^0.0.1
SLVR:   derived: flutter_launcher_icons ^0.8.1
SLVR:   derived: lint ^1.3.0
SLVR:   derived: flutter_test any from sdk
SLVR:   derived: flutter_animator ^2.1.0
SLVR:   derived: avatar_glow ^1.2.0
SLVR:   derived: package_info ^0.4.3+2
SLVR:   derived: url_launcher ^5.7.10
SLVR:   derived: state_notifier ^0.6.0
SLVR:   derived: shared_preferences ^0.5.12+4
SLVR:   derived: loading_animations ^2.1.0
SLVR:   derived: list_tile_switch ^0.0.2
SLVR:   derived: latlong ^0.6.1
SLVR:   derived: intl ^0.16.1
SLVR:   derived: hooks_riverpod ^0.12.1
SLVR:   derived: geolocator ^6.1.13
SLVR:   derived: flutter_native_admob ^2.1.0+3
SLVR:   derived: flutter_map ^0.11.0
SLVR:   derived: flutter_icons ^1.1.0
SLVR:   derived: flutter_hooks ^0.15.0
SLVR:   derived: flutter_dotenv ^3.1.0
SLVR:   derived: flare_flutter ^2.0.6
SLVR:   derived: fl_chart ^0.68.0
SLVR:   derived: firebase_core ^0.5.3
SLVR:   derived: firebase_analytics ^6.3.0
SLVR:   derived: easy_localization ^2.3.3
SLVR:   derived: dio_retry ^0.1.9-beta
SLVR:   derived: dio_http_cache ^0.2.11
SLVR:   derived: dio ^3.0.10
SLVR:   derived: cached_network_image ^2.5.0
SLVR:   derived: bottom_navy_bar ^5.6.0
SLVR:   derived: bezier_chart ^1.0.17+1
SLVR:   derived: auto_size_text ^2.1.0
SLVR:   derived: adaptive_theme ^1.1.0
SLVR:   derived: flutter any from sdk
IO  : Get versions from https://pub.dartlang.org/api/packages/adaptive_theme.
IO  : Get versions from https://pub.dartlang.org/api/packages/auto_size_text.
IO  : Get versions from https://pub.dartlang.org/api/packages/bezier_chart.
IO  : Get versions from https://pub.dartlang.org/api/packages/bottom_navy_bar.
IO  : Get versions from https://pub.dartlang.org/api/packages/cached_network_image.
IO  : Get versions from https://pub.dartlang.org/api/packages/dio.
IO  : Get versions from https://pub.dartlang.org/api/packages/dio_http_cache.
IO  : Get versions from https://pub.dartlang.org/api/packages/dio_retry.
IO  : Get versions from https://pub.dartlang.org/api/packages/easy_localization.
IO  : Get versions from https://pub.dartlang.org/api/packages/firebase_analytics.
IO  : HTTP GET https://pub.dartlang.org/api/packages/adaptive_theme
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/auto_size_text
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/bezier_chart
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/bottom_navy_bar
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/cached_network_image
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/dio
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/dio_http_cache
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/dio_retry
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/easy_localization
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP GET https://pub.dartlang.org/api/packages/firebase_analytics
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/adaptive_theme
    | took 0:00:00.348819
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 2167
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/firebase_core.
IO  : HTTP GET https://pub.dartlang.org/api/packages/firebase_core
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/dio
    | took 0:00:00.459721
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 11222
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/auto_size_text
    | took 0:00:00.463225
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 2080
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/bezier_chart
    | took 0:00:00.504341
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1934
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/easy_localization
    | took 0:00:00.501337
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 8047
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/dio_retry
    | took 0:00:00.509536
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1066
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/cached_network_image
    | took 0:00:00.512290
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 5728
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/firebase_analytics
    | took 0:00:00.522326
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 14922
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/bottom_navy_bar
    | took 0:00:00.528595
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.001
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1872
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/fl_chart.
IO  : HTTP GET https://pub.dartlang.org/api/packages/fl_chart
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flare_flutter.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flare_flutter
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_dotenv.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_dotenv
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_hooks.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_hooks
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/dio_http_cache
    | took 0:00:00.635324
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.038
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 2035
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_icons.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_icons
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/firebase_core
    | took 0:00:00.229641
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 13193
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_map.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_map
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_native_admob.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_native_admob
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/geolocator.
IO  : HTTP GET https://pub.dartlang.org/api/packages/geolocator
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/fl_chart
    | took 0:00:00.256373
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 8725
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flare_flutter
    | took 0:00:00.225812
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 5493
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_hooks
    | took 0:00:00.197432
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 4598
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_dotenv
    | took 0:00:00.222849
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1509
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_icons
    | took 0:00:00.181425
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 2039
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/hooks_riverpod.
IO  : HTTP GET https://pub.dartlang.org/api/packages/hooks_riverpod
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/intl.
IO  : HTTP GET https://pub.dartlang.org/api/packages/intl
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/latlong.
IO  : HTTP GET https://pub.dartlang.org/api/packages/latlong
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/list_tile_switch.
IO  : HTTP GET https://pub.dartlang.org/api/packages/list_tile_switch
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_map
    | took 0:00:00.326169
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.024
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 8064
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_native_admob
    | took 0:00:00.276174
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.006
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1271
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/loading_animations.
IO  : HTTP GET https://pub.dartlang.org/api/packages/loading_animations
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/shared_preferences.
IO  : HTTP GET https://pub.dartlang.org/api/packages/shared_preferences
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/geolocator
    | took 0:00:00.256909
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:44 GMT
    | x-appengine-flex-applatency: 0.005
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 10381
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:44 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/state_notifier.
IO  : HTTP GET https://pub.dartlang.org/api/packages/state_notifier
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/url_launcher.
IO  : HTTP GET https://pub.dartlang.org/api/packages/url_launcher
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/intl
    | took 0:00:00.193285
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 11597
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/hooks_riverpod
    | took 0:00:00.261379
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 9656
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/package_info.
IO  : HTTP GET https://pub.dartlang.org/api/packages/package_info
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/latlong
    | took 0:00:00.159513
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1541
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/list_tile_switch
    | took 0:00:00.117643
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 660
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/avatar_glow.
IO  : HTTP GET https://pub.dartlang.org/api/packages/avatar_glow
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/loading_animations
    | took 0:00:00.122498
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 755
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_animator.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_animator
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/shared_preferences
    | took 0:00:00.112595
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 7366
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/lint.
IO  : HTTP GET https://pub.dartlang.org/api/packages/lint
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: dev
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_launcher_icons.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_launcher_icons
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: dev
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/state_notifier
    | took 0:00:00.113184
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1299
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_launcher_name.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_launcher_name
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: dev
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/url_launcher
    | took 0:00:00.127145
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 10942
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_native_splash.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_native_splash
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: dev
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/meta.
IO  : HTTP GET https://pub.dartlang.org/api/packages/meta
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/logging.
IO  : HTTP GET https://pub.dartlang.org/api/packages/logging
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/package_info
    | took 0:00:00.166685
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.004
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 3401
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_animator
    | took 0:00:00.140562
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 2278
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/lint
    | took 0:00:00.143660
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 3402
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/avatar_glow
    | took 0:00:00.165439
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.007
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1220
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_launcher_icons
    | took 0:00:00.111667
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 3811
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/crypto.
IO  : HTTP GET https://pub.dartlang.org/api/packages/crypto
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/json_serializable.
IO  : HTTP GET https://pub.dartlang.org/api/packages/json_serializable
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/json_annotation.
IO  : HTTP GET https://pub.dartlang.org/api/packages/json_annotation
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/path.
IO  : HTTP GET https://pub.dartlang.org/api/packages/path
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/quiver.
IO  : HTTP GET https://pub.dartlang.org/api/packages/quiver
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/sqflite.
IO  : HTTP GET https://pub.dartlang.org/api/packages/sqflite
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/logging
    | took 0:00:00.104878
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 8248
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/meta
    | took 0:00:00.123542
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 8941
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_native_splash
    | took 0:00:00.143969
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 10077
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_launcher_name
    | took 0:00:00.158008
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.010
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 444
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/cached_network_image_platform_interface.
IO  : HTTP GET https://pub.dartlang.org/api/packages/cached_network_image_platform_interface
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/path
    | took 0:00:00.056522
    | cache-control: public, max-age=120
    | x-appengine-flex-applatency: 0.002
    | date: Thu, 09 May 2024 05:11:53 GMT
    | vary: Accept-Encoding
    | content-encoding: gzip
    | strict-transport-security: max-age=31536000; preload
    | age: 112
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 6221
    | x-frame-options: SAMEORIGIN
    | via: 1.1 google, 1.1 google
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:13:53 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/json_annotation
    | took 0:00:00.073118
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 3285
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/crypto
    | took 0:00:00.100081
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 6203
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/json_serializable
    | took 0:00:00.089138
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 9470
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/cached_network_image_web.
IO  : HTTP GET https://pub.dartlang.org/api/packages/cached_network_image_web
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/flutter_cache_manager.
IO  : HTTP GET https://pub.dartlang.org/api/packages/flutter_cache_manager
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/octo_image.
IO  : HTTP GET https://pub.dartlang.org/api/packages/octo_image
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/args.
IO  : HTTP GET https://pub.dartlang.org/api/packages/args
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/easy_logger.
IO  : HTTP GET https://pub.dartlang.org/api/packages/easy_logger
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
SLVR:   fact: every version of flutter_launcher_name depends on flutter any from sdk
SLVR:   fact: every version of flutter_launcher_name depends on yaml ^2.1.16
SLVR:     selecting flutter_launcher_name 0.0.1
SLVR:     derived: yaml ^2.1.16
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/sqflite
    | took 0:00:00.223963
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 13378
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/yaml.
IO  : HTTP GET https://pub.dartlang.org/api/packages/yaml
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/quiver
    | took 0:00:00.249236
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 7572
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/cached_network_image_platform_interface
    | took 0:00:00.218584
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 783
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/async.
IO  : HTTP GET https://pub.dartlang.org/api/packages/async
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/flutter_cache_manager
    | took 0:00:00.097138
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 5253
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/octo_image
    | took 0:00:00.092387
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.002
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 1442
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/cached_network_image_web
    | took 0:00:00.112015
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 958
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : HTTP response 200 OK for GET https://pub.dartlang.org/api/packages/args
    | took 0:00:00.079394
    | cache-control: public, max-age=120
    | date: Thu, 09 May 2024 05:13:45 GMT
    | x-appengine-flex-applatency: 0.003
    | content-encoding: gzip
    | vary: Accept-Encoding
    | strict-transport-security: max-age=31536000; preload
    | content-type: application/json; charset="utf-8"
    | x-xss-protection: 1; mode=block
    | x-powered-by: Dart with package:shelf
    | alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    | content-length: 10454
    | via: 1.1 google, 1.1 google
    | x-frame-options: SAMEORIGIN
    | x-content-type-options: nosniff
    | expires: Thu, 09 May 2024 05:15:45 GMT
IO  : Get versions from https://pub.dartlang.org/api/packages/http_parser.
IO  : HTTP GET https://pub.dartlang.org/api/packages/http_parser
    | Accept: application/vnd.pub.v2+json
    | X-Pub-OS: linux
    | X-Pub-Command: upgrade
    | X-Pub-Session-ID: CBAEA6FA-1710-4D36-A7B7-C676F88C13E2
    | X-Pub-Environment: flutter_bot:flutter_cli:get
    | X-Pub-Reason: direct
    | user-agent: Dart pub 2.10.5
IO  : Get versions from https://pub.dartlang.org/api/packages/firebase_analytics_platform_interface.
IO  : HTTP GET https://pub.dartlang.org/api/packages/firebase_analytics_platform_interface
    | Accept: application/vnd.pub.v2+json
    

@renovate renovate bot changed the title Update dependency fl_chart to ^0.61.0 Update dependency fl_chart to ^0.62.0 Apr 17, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.62.0 Update dependency fl_chart to ^0.63.0 Jun 10, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.63.0 Update dependency fl_chart to ^0.64.0 Oct 7, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.64.0 Update dependency fl_chart to ^0.65.0 Nov 24, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.65.0 Update dependency fl_chart to ^0.66.0 Dec 25, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.66.0 Update dependency fl_chart to ^0.67.0 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 41dceda to 7e0f3fb Compare May 9, 2024 05:13
@renovate renovate bot changed the title Update dependency fl_chart to ^0.67.0 Update dependency fl_chart to ^0.68.0 May 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants