ci: test the Flutter 3.44 leg against the material_ui floor - #869
Merged
Merged
Conversation
material_ui 1.3.0 and cupertino_ui 1.1.0 (published 2026-09-15) keep the `flutter: >=3.44.0` constraint but use `awaitNotRequired`, which only exists in the `meta` bundled with Flutter 3.47. Since then every run of the 3.44 leg fails while compiling the tests, whatever the change under test. Downgrade those two packages to the minimum the pubspec allows on that leg. The lower bound is the version that leg should be testing anyway, and the 3.47 leg still resolves the newest.
7 tasks
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.
Description
material_ui 1.3.0andcupertino_ui 1.1.0(published 2026-09-15) keep theflutter: >=3.44.0constraint but useawaitNotRequired, which only exists in themetabundled with Flutter 3.47. Since then every run of the 3.44 matrix leg fails while compiling the tests, whatever the change under test (first seen on #864).This downgrades those two packages to the minimum the pubspec allows on the 3.44 leg only (
flutter pub downgrade material_ui cupertino_ui). The lower bound is the version that leg should be testing anyway; the 3.47 leg still resolves the newest. Verified locally that the package passes analyze + 648 tests againstmaterial_ui 1.1.1/cupertino_ui 1.0.2.Type of Change