🔧 Change dart sdk version to loose version range #335
Merged
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.
This pull request updates the Dart SDK version constraint in the
pubspec.yamlfile to allow compatibility with any Dart 3.x version, rather than requiring exactly version3.10.4.Reason for the change
The Dart SDK version is implicitly defined by the Flutter version used in the project. Automated Flutter updates (e.g. via Renovate) can introduce a newer Dart SDK, which previously caused CI failures because the strict Dart SDK constraint (
3.10.4) inpubspec.yamlno longer matched the Dart version bundled with Flutter.By widening the constraint to
>=3.10.0 <3.11.0, we ensure:Changes
Dependency compatibility
sdkversion constraint inpubspec.yamlfrom3.10.4to">=3.10.0 <3.11.0"to support a broader range of Dart 3.x versions.This will fix the pipeline failure in #332.