Fix linter errors and dependency resolution for Flutter 3.44#94
Open
cdavis-code wants to merge 2 commits into
Open
Fix linter errors and dependency resolution for Flutter 3.44#94cdavis-code wants to merge 2 commits into
cdavis-code wants to merge 2 commits into
Conversation
added 2 commits
June 25, 2026 15:52
- Implement new abstract members on ArtifactUpdater (formatProgressMessage, resetProgressContext, setProgressContext) in AuthenticatingArtifactUpdater - Add missing HostPlatform.linux_riscv64 case in fpiHostPlatform switch - Implement deleteVersionFile in FakeFlutterVersion - Implement isAccessibilityEvaluationsEnabled and isRiscv64SupportEnabled in TestFeatureFlags - Downgrade test constraint from ^1.31.1 to ^1.31.0 to resolve test_core version conflict with flutter_tools SDK dependency dart analyze now reports no issues.
- Add 0.12.0 changelog entry for Flutter 3.44 compatibility - Add missing 'test' command to help output in README
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes all
dart analyzeerrors and warnings that surfaced after upgrading to Flutter 3.44, and resolves apub getversion conflict with thetestpackage.Changes
Linter error fixes
lib/src/authenticating_artifact_updater.dart: ImplementformatProgressMessage,resetProgressContext, andsetProgressContext— new abstract members onArtifactUpdaterin the Flutter SDK.lib/src/more_os_utils.dart: Add missingHostPlatform.linux_riscv64case to thefpiHostPlatformswitch expression, mapping it toFlutterpiHostPlatform.linuxRV64.test/src/fake_flutter_version.dart: ImplementdeleteVersionFile— new abstract member onFlutterVersion.test/src/test_feature_flags.dart: ImplementisAccessibilityEvaluationsEnabledandisRiscv64SupportEnabled— new abstract getters onFeatureFlags.Dependency resolution
pubspec.yaml: Downgradetestconstraint from^1.31.1to^1.31.0. Thetest >=1.31.1requirestest_core 0.6.18, butflutter_toolsfrom the Flutter SDK pinstest_core 0.6.17, causingpub getto fail.Verification
dart analyzereports no issues (previously 5 errors + 4 warnings).dart pub getresolves successfully.