chore: bump fluttersdk_wind to ^1.1.2#99
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Raises the minimum fluttersdk_wind dependency to ^1.1.2 so Magic consumers reliably receive wind 1.1.2’s WPopover interaction fix, and syncs repository docs/lockfiles accordingly.
Changes:
- Bump
fluttersdk_windconstraint inpubspec.yamlfrom^1.1.1to^1.1.2. - Update the
[Unreleased]changelog entry to reflect the^1.1.2bump and describe theWPopoverfix. - Sync stack documentation and re-resolve the example’s lockfile to wind
1.1.2.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pubspec.yaml | Updates the fluttersdk_wind version constraint to ^1.1.2. |
| example/pubspec.lock | Updates resolved dependency metadata to wind 1.1.2. |
| CLAUDE.md | Syncs documented stack dependency version for wind. |
| CHANGELOG.md | Updates the Unreleased entry to describe the new wind minimum and its relevant fixes. |
Raise the wind floor to ^1.1.2 to require the WPopover fix: a popover with an interactive trigger (WButton/WAnchor with its own onTap) now opens reliably and no longer self-dismisses on the opening gesture, with the trigger kept accessible via a Semantics tap action. This is the primitive behind magic_starter's team selector and user/notification dropdowns. Updates the existing [Unreleased] wind-bump CHANGELOG entry and the CLAUDE.md stack reference. flutter analyze clean, dart format no diff, flutter test 1158 green.
959aa72 to
e38daed
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Raise the
fluttersdk_windconstraint^1.1.1->^1.1.2to require wind 1.1.2'sWPopoverfix.Why
wind 1.1.2 fixes
WPopoverso a popover with an interactive trigger (aWButton/WAnchorwith its ownonTap) opens reliably and no longer dismisses itself on the opening gesture, with the trigger kept accessible via aSemanticstap action. This is the primitive behind magic_starter's team selector and user/notification dropdowns, so magic raises the floor to guarantee consumers get the fix.Changes
pubspec.yaml:fluttersdk_wind: ^1.1.1->^1.1.2.CHANGELOG.md: updated the existing[Unreleased]wind-bump entry (it was already documenting the^1.1.1bump) to^1.1.2and extended it with 1.1.2's WPopover fix.CLAUDE.md: synced the stack reference to^1.1.2.example/pubspec.lock: re-resolved to wind 1.1.2.Verification
flutter analyze --no-fatal-infosclean,dart formatno diff,flutter test1158 green. wind 1.1.2 is a bug fix with no API change, so magic needs no code changes.