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.70.0 #78

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 11, 2023

This PR contains the following updates:

Package Type Update Change
fl_chart (source) dependencies minor ^0.50.6 -> ^0.70.0

Release Notes

imaNNeo/fl_chart (fl_chart)

v0.70.0

Compare Source

  • FEATURE (by @​Peetee06) Implemented a 5 years-old feature request about scroll and zoom support in our axis-based charts. Special thanks to @​Peetee06 who made it happen, #​71
  • IMPROVEMENT (by @​Peetee06) Added functionality to control the transformation of axis-based charts using FlTransformationConfig class. You can now enable scaling and panning for LineChart, BarChart and ScatterChart using this class
  • IMPROVEMENT (by @​Peetee06) Added some new unit tests in bar_chart_data_extensions_test.dart, gradient_extension_test.dart and fixed a typo in bar_chart_data.dart
  • BREAKING (by @​Peetee06) Fixed the equatable functionality in our BarChart. We hope it will not affect anything in our chart, but because the behaviour is changed, we marked it as a breaking change. (read more here)
  • BREAKING (by @​Peetee06) BarChart is not const anymore due to adding an assert to check if transformations are allowed depending on the BarChartData.alignment property (read more here)
  • IMPROVEMENT (by @​Peetee06) Upgrade to the new Flutter version (3.27.0), #​1804
  • IMPROVEMENT (by @​AliAkberAakash) Minor typo fix in our line chart documentation, #​1795
  • IMPROVEMENT (by @​imaNNeo) Fixed the code coverage API rate-limit issue
  • Improvement (by @​imaNNeo) Published the example app in Google Play and App Store. Other stores (such as snap store and Microsoft Store) will come next. You can download the Android version here in Google Play and the iOS version here in App Store

v0.69.2

Compare Source

  • IMPROVEMENT (by @​imaNNeo) Fix the analyzer warnings (to have maximum score in the pub.dev)

v0.69.1

Compare Source

  • IMPROVEMENT (by @​moshe5745) Update the docs related to line chart's duration and curve properties, #​1618
  • IMPROVEMENT (by @​imaNNeo) Deprecate swapAnimationDuration and swapAnimationCurve properties to use curve and duration instead to keep the consistency over the project, #​1618
  • BUGFIX (by @​aimawari) Fixed lots of issues related to the zero value in the PieChartSectionData, #​697, #​817 and #​1632

v0.69.0

Compare Source

  • BUGFIX (by @​imaNNeo) Fix a memory leak issue in the axis-based charts, there was a logic to calculate and cache the minX, maxX, minY and maxY properties to reduce the computation cost. But it caused some memory issues, as we don't have a quick solution for this, we disabled the caching logic for now, later we can move the calculation logic to the render objects to keep and update them only when the data is changed, #​1106, #​1693
  • BUGFIX (by @​imaNNeo) Fix showing grid lines even when there is no line to show in the LineChart, #​1691
  • IMPROVEMENT (by @​sczesla) Allow users to control minIncluded and maxIncluded using SideTitles, #​906
  • IMPROVEMENT (by @​elizabethzhenliu) Reverse the touch order in ScatterChart, so now the top spots are touched first, #​1675
  • IMPROVEMENT (by @​ksw2000) Remove redundant math import, #​1683
  • IMPROVEMENT (by @​Neer-Pathak) Fix linux example build issue, #​1668
  • IMPROVEMENT (by @​TobiasRump) Update the bar chart documentation, #​1662

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.

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 becomes conflicted, 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 from c7830f5 to 3476161 Compare April 15, 2023 12:25
@renovate renovate bot changed the title Update dependency fl_chart to ^0.61.0 Update dependency fl_chart to ^0.62.0 Apr 15, 2023
@renovate renovate bot changed the title Update dependency fl_chart to ^0.62.0 Update dependency fl_chart to ^0.63.0 Jun 11, 2023
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 3476161 to 4779f1e Compare June 11, 2023 05:57
@renovate
Copy link
Contributor Author

renovate bot commented Jun 11, 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
Note: matcher is pinned to version 0.12.16+1 by flutter_test from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.

Note: test_api is pinned to version 0.6.1 by flutter_test from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.


    Because test >=1.24.0 <1.24.3 depends on matcher >=0.12.15 <0.12.16 and test >=1.24.3 <1.24.4 depends on test_api 0.6.0, test >=1.24.0 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.6.0.
    And because test >=1.22.2 <1.24.0 depends on test_api 0.4.18 and test >=1.22.1 <1.22.2 depends on test_api 0.4.17, test >=1.22.1 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.22.0 <1.22.1 depends on test_api 0.4.16 and test >=1.21.7 <1.22.0 depends on test_api 0.4.15, test >=1.21.7 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.6 <1.21.7 depends on test_api 0.4.14 and test >=1.21.5 <1.21.6 depends on test_api 0.4.13, test >=1.21.5 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.4 <1.21.5 depends on test_api 0.4.12 and test >=1.21.3 <1.21.4 depends on test_api 0.4.11, test >=1.21.3 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.2 <1.21.3 depends on test_api 0.4.10 and test >=1.20.0 <1.21.2 depends on test_api 0.4.9, test >=1.20.0 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
(1) So, because test >=1.19.4 <1.20.0 depends on test_api 0.4.8 and test >=1.16.0-nullsafety.19 <1.16.6 depends on test_api 0.2.19, test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.19.4 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.

    Because test >=1.17.10 <1.17.11 depends on test_api 0.4.2 and test >=1.17.11 <1.18.0 depends on test_api 0.4.3, test >=1.17.10 <1.18.0 requires test_api 0.4.2 or 0.4.3.
    And because test >=1.18.0 <1.18.1 depends on test_api 0.4.4 and test >=1.18.1 <1.19.0 depends on test_api 0.4.5, test >=1.17.10 <1.19.0 requires test_api 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5.
    And because test >=1.19.0 <1.19.3 depends on test_api 0.4.6 and test >=1.19.3 <1.19.4 depends on test_api 0.4.7, test >=1.17.10 <1.19.4 requires test_api 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7.
    And because test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.19.4 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0 (1), test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.17.10 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because every version of flutter_test from sdk depends on matcher 0.12.16+1, if test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.17.10 <1.24.4-∞ and flutter_test from sdk then test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    Because no versions of mocktail match >0.3.0 <0.4.0 and mocktail 0.3.0 depends on test ^1.16.0, mocktail ^0.3.0 requires test ^1.16.0.
    Thus, if mocktail ^0.3.0 and flutter_test from sdk then test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0 or test >=1.16.6 <1.17.10-∞ or >=1.24.4 <2.0.0.
    And because every version of flutter_test from sdk depends on test_api 0.6.1, if mocktail ^0.3.0 and flutter_test from sdk then test >=1.16.6 <1.17.10-∞ or >=1.24.4 <2.0.0.
(2) So, because test >=1.24.4 depends on analyzer >=5.12.0 <7.0.0 and test >=1.16.6 <1.17.10 depends on analyzer ^1.0.0, if mocktail ^0.3.0 and flutter_test from sdk then analyzer ^1.0.0 or >=5.12.0 <7.0.0.

    Because auto_route_generator >=4.2.0 <4.2.1 depends on analyzer >=2.7.0 <4.4.0 and auto_route_generator >=4.2.1 <5.0.2 depends on analyzer >=4.3.0 <4.4.0, auto_route_generator >=4.2.0 <5.0.2 requires analyzer >=2.7.0 <4.4.0.
    And because no versions of auto_route_generator match >4.0.0 <4.2.0 and auto_route_generator 4.0.0 depends on analyzer >=2.7.0 <4.0.0, auto_route_generator >=4.0.0 <5.0.2 requires analyzer >=2.7.0 <4.4.0.
    And because if mocktail ^0.3.0 and flutter_test from sdk then analyzer ^1.0.0 or >=5.12.0 <7.0.0 (2), one of mocktail ^0.3.0 or flutter_test from sdk or auto_route_generator >=4.0.0 <5.0.2 must be false.
    And because yaca depends on auto_route_generator ^4.0.0, mocktail ^0.3.0 is incompatible with flutter_test from sdk.
    So, because yaca depends on both flutter_test from sdk and mocktail ^0.3.0, version solving failed.


You can try the following suggestion to make the pubspec resolve:
* Try an upgrade of your constraints: flutter pub upgrade --major-versions

@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 force-pushed the renovate/fl_chart-0.x branch from 4779f1e to 4bfbebe Compare October 7, 2023 08:23
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 4bfbebe to 4f26166 Compare November 25, 2023 05:33
@renovate renovate bot changed the title Update dependency fl_chart to ^0.64.0 Update dependency fl_chart to ^0.65.0 Nov 25, 2023
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 4f26166 to 9979cdb Compare December 26, 2023 02:30
@renovate renovate bot changed the title Update dependency fl_chart to ^0.65.0 Update dependency fl_chart to ^0.66.0 Dec 26, 2023
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 9979cdb to e0c292e Compare March 29, 2024 08:54
@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 e0c292e to 6c5e95a Compare May 9, 2024 14:56
@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
Copy link
Contributor Author

renovate bot commented May 9, 2024

⚠️ 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
Note: matcher is pinned to version 0.12.16+1 by flutter_test from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.

Note: test_api is pinned to version 0.7.3 by flutter_test from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.


    Because test >=1.24.0 <1.24.3 depends on matcher >=0.12.15 <0.12.16 and test >=1.24.3 <1.24.4 depends on test_api 0.6.0, test >=1.24.0 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.6.0.
    And because test >=1.22.2 <1.24.0 depends on test_api 0.4.18 and test >=1.22.1 <1.22.2 depends on test_api 0.4.17, test >=1.22.1 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.22.0 <1.22.1 depends on test_api 0.4.16 and test >=1.21.7 <1.22.0 depends on test_api 0.4.15, test >=1.21.7 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.6 <1.21.7 depends on test_api 0.4.14 and test >=1.21.5 <1.21.6 depends on test_api 0.4.13, test >=1.21.5 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.4 <1.21.5 depends on test_api 0.4.12 and test >=1.21.3 <1.21.4 depends on test_api 0.4.11, test >=1.21.3 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because test >=1.21.2 <1.21.3 depends on test_api 0.4.10 and test >=1.20.0 <1.21.2 depends on test_api 0.4.9, test >=1.20.0 <1.24.4 requires matcher >=0.12.15 <0.12.16 or test_api 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
(1) So, because test >=1.19.4 <1.20.0 depends on test_api 0.4.8 and test >=1.16.0-nullsafety.19 <1.16.6 depends on test_api 0.2.19, test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.19.4 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.

    Because test >=1.17.10 <1.17.11 depends on test_api 0.4.2 and test >=1.17.11 <1.18.0 depends on test_api 0.4.3, test >=1.17.10 <1.18.0 requires test_api 0.4.2 or 0.4.3.
    And because test >=1.18.0 <1.18.1 depends on test_api 0.4.4 and test >=1.18.1 <1.19.0 depends on test_api 0.4.5, test >=1.17.10 <1.19.0 requires test_api 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5.
    And because test >=1.19.0 <1.19.3 depends on test_api 0.4.6 and test >=1.19.3 <1.19.4 depends on test_api 0.4.7, test >=1.17.10 <1.19.4 requires test_api 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7.
    And because test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.19.4 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0 (1), test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.17.10 <1.24.4-∞ requires matcher >=0.12.15 <0.12.16 or test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    And because every version of flutter_test from sdk depends on matcher 0.12.16+1, if test >=1.16.0-nullsafety.19 <1.16.6-∞ or >=1.17.10 <1.24.4-∞ and flutter_test from sdk then test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0.
    Because no versions of mocktail match >0.3.0 <0.4.0 and mocktail 0.3.0 depends on test ^1.16.0, mocktail ^0.3.0 requires test ^1.16.0.
    Thus, if mocktail ^0.3.0 and flutter_test from sdk then test_api 0.2.19 or 0.4.2 or 0.4.3 or 0.4.4 or 0.4.5 or 0.4.6 or 0.4.7 or 0.4.8 or 0.4.9 or 0.4.10 or 0.4.11 or 0.4.12 or 0.4.13 or 0.4.14 or 0.4.15 or 0.4.16 or 0.4.17 or 0.4.18 or 0.6.0 or test >=1.16.6 <1.17.10-∞ or >=1.24.4 <2.0.0.
    And because every version of flutter_test from sdk depends on test_api 0.7.3 and test >=1.25.9 depends on analyzer >=6.0.0 <8.0.0, if mocktail ^0.3.0 and flutter_test from sdk then analyzer >=6.0.0 <8.0.0 or test >=1.16.6 <1.17.10-∞ or >=1.24.4 <1.25.9-∞.
(2) So, because test >=1.24.4 <1.25.9 depends on analyzer >=5.12.0 <7.0.0 and test >=1.16.6 <1.17.10 depends on analyzer ^1.0.0, if mocktail ^0.3.0 and flutter_test from sdk then analyzer ^1.0.0 or >=5.12.0 <8.0.0.

    Because auto_route_generator >=4.2.0 <4.2.1 depends on analyzer >=2.7.0 <4.4.0 and auto_route_generator >=4.2.1 <5.0.2 depends on analyzer >=4.3.0 <4.4.0, auto_route_generator >=4.2.0 <5.0.2 requires analyzer >=2.7.0 <4.4.0.
    And because no versions of auto_route_generator match >4.0.0 <4.2.0 and auto_route_generator 4.0.0 depends on analyzer >=2.7.0 <4.0.0, auto_route_generator >=4.0.0 <5.0.2 requires analyzer >=2.7.0 <4.4.0.
    And because if mocktail ^0.3.0 and flutter_test from sdk then analyzer ^1.0.0 or >=5.12.0 <8.0.0 (2), one of mocktail ^0.3.0 or flutter_test from sdk or auto_route_generator >=4.0.0 <5.0.2 must be false.
    And because yaca depends on auto_route_generator ^4.0.0, mocktail ^0.3.0 is incompatible with flutter_test from sdk.
    So, because yaca depends on both flutter_test from sdk and mocktail ^0.3.0, version solving failed.


You can try the following suggestion to make the pubspec resolve:
* Try an upgrade of your constraints: flutter pub upgrade --major-versions
Failed to update packages.

@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from 6c5e95a to f3eb0c9 Compare August 26, 2024 23:50
@renovate renovate bot changed the title Update dependency fl_chart to ^0.68.0 Update dependency fl_chart to ^0.69.0 Aug 26, 2024
@renovate renovate bot force-pushed the renovate/fl_chart-0.x branch from f3eb0c9 to 480e072 Compare December 21, 2024 02:53
@renovate renovate bot changed the title Update dependency fl_chart to ^0.69.0 Update dependency fl_chart to ^0.70.0 Dec 21, 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.

0 participants