-
-
Notifications
You must be signed in to change notification settings - Fork 186
set minimum flutter version to 3.27.0 and dart 3.6 #470
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
base: master
Are you sure you want to change the base?
set minimum flutter version to 3.27.0 and dart 3.6 #470
Conversation
WalkthroughThe Changes
Poem
Tip ⚡️ Faster reviews with caching
Enjoy the performance boost—your workflow just got faster. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sdk: ">=3.6.0 <4.0.0" | ||
flutter: ">=3.27.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Breaking change: bump package version due to updated SDK constraints
Raising the Dart SDK lower bound to >=3.6.0
and Flutter to >=3.27.0
is a breaking change for consumers on older toolchains. Please update the version
field in pubspec.yaml
to signal a new major (or appropriate pre-1.0) release before publishing.
Proposed diff:
-version: 0.21.2
+version: 1.0.0 # Major bump due to updated SDK constraints
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
sdk: ">=3.6.0 <4.0.0" | |
flutter: ">=3.27.0" | |
version: 1.0.0 # Major bump due to updated SDK constraints |
Hey!
i just ran into an issue in another repo action: https://github.com/maplibre/flutter-maplibre-gl/actions/runs/14990160700
Which says CarouselController not found. did some small debugging and found out that the Carousel-Widget was added in flutter 3.27 so i updated the minimum flutter and dart version.
edit: sorry, this was the correct action: https://github.com/maplibre/flutter-maplibre-gl/actions/runs/14990160700
Summary by CodeRabbit