This repository was archived by the owner on Feb 25, 2025. It is now read-only.
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.
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 curious about this change. The upstream dart sdk CL brought in a version of package:args that now has an sdk requirement of
^3.0.0
. Previously it had been'>=2.19.0 <4.0.0'
.Is this file generally auto-maintained / generated as package metadata changes? Manually maintained w/ duplicate info? Should it be parsing the required sdk version out of the pubspec?
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.
This is a Fuchsia-specific build script for package:args.
I don't know its history, but AFAIK it's manually maintained.
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.
Gotcha; thanks for the fix!
It looks like the parser does not handle the caret syntax for sdk constraints (
^3.0.0
):https://github.com/flutter/engine/blob/main/tools/fuchsia/dart/gen_dart_package_config.py#L55And, the script defaults to Dart 2.8, which is super old. 3.0 might be a better default? Or 2.12? Or no default at all, and just failing, which may be more predictable.