fix(deps): resolve pubspec_ios_spm.yaml version conflict blocking CI - #1720
Merged
Conversation
…repo-wide core_data's flutter_secure_storage ^11.0.0 (bumped in #1608) pulls in flutter_secure_storage_windows ^4.2.2, which needs win32 ^6.0.1. pubspec_ios_spm.yaml pinned wakelock_plus at the exact old 1.5.2 (needs win32 ^5.6.1) and package_info_plus at 9.0.1 (needs win32 ^5.5.3) -- both incompatible, so `flutter pub get` on this variant failed version solving outright. This has been failing `variant-dependencies` on every PR and on main itself since #1608 landed. Bumped both to the versions already proven working in pubspec_tv.yaml / pubspec.yaml (wakelock_plus 1.6.1, package_info_plus 10.2.0) rather than picking new pins blind. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Contributor
Plugin Module Size GatePolicy: modules over 3 MB must be delivered as plugins; plugin modules over 5 MB must document cache management.
|
Contributor
🚀 PR Quick Check Summary
|
Contributor
🚀 PR Quick Check Summary
|
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
variant-dependencieshas been failing on every PR and onmainitself since #1608:core_data'sflutter_secure_storage ^11.0.0pulls influtter_secure_storage_windows ^4.2.2(needswin32 ^6.0.1), butpubspec_ios_spm.yamlpinnedwakelock_plusat the exact old1.5.2(needswin32 ^5.6.1) andpackage_info_plusat9.0.1(needswin32 ^5.5.3) — both incompatible, soflutter pub geton this variant fails version solving outright, not just a lint/analyze issue.Bumped both to the versions already proven working in
pubspec_tv.yaml/pubspec.yaml(wakelock_plus 1.6.1,package_info_plus 10.2.0) rather than picking new pins blind.Test plan
bash scripts/check-variant-pubspecs.sh— all variant pubspecs resolve clean (was failing onpubspec_ios_spm.yamlbefore this fix)🤖 Generated with Claude Code