-
-
Notifications
You must be signed in to change notification settings - Fork 206
fix: Add support for Dart 3.6
, 3.7
; remove support for Dart 3.2
, 3.3
, 3.4
, 3.5
, 3.3
#1040
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?
fix: Add support for Dart 3.6
, 3.7
; remove support for Dart 3.2
, 3.3
, 3.4
, 3.5
, 3.3
#1040
Conversation
🚀 Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1040 +/- ##
==========================================
+ Coverage 43.37% 43.72% +0.35%
==========================================
Files 61 61
Lines 3463 3465 +2
==========================================
+ Hits 1502 1515 +13
+ Misses 1961 1950 -11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This commit updates the mockito dependency to version 5.4.5 and regenerates the mock files accordingly.
Fix mocks generation due to a change in mocktail package.
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.
Does this miss the version bump of the SDK?
@@ -53,8 +47,13 @@ jobs: | |||
run: (cd packages/dart && dart run build_runner build --delete-conflicting-outputs) | |||
- name: Analyze code | |||
run: dart analyze packages/dart --fatal-infos | |||
- name: Lint For Fix Bug mocks |
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.
What's this?
@@ -18,36 +18,40 @@ topics: | |||
- backend | |||
|
|||
environment: | |||
sdk: ">=3.2.6 <4.0.0" | |||
sdk: ^3.6.2 |
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.
I'm unsure whether removing the upper bound is a good idea, but since even minor versions changes can be breaking, let's try.
Pull Request
Issue
Add support for Dart
3.6
,3.7
; remove support for Dart3.2
,3.3
,3.4
,3.5
,3.3
Closes: #1026
Approach
n/a
Tasks