release: 1.1.1#117
Conversation
Patch release. Promotes the [Unreleased] section to [1.1.1] and bumps pubspec version 1.1.0 -> 1.1.1. - Fixed: WInput native text selection restored (web mouse drag-select, double-tap word, long-press) via TextSelectionGestureDetectorBuilder; handles stay cupertino-only (no material.dart import). - Fixed: WText inherits an ancestor DefaultTextStyle color (CSS cascade) before the platform-brightness baseline. - Changed: WInput tap-to-focus / onTap now flow through the native gesture builder instead of a hand-built GestureDetector.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughAll version references in the repository are bumped from ChangesVersion bump 1.1.0 → 1.1.1
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Prepares the 1.1.1 patch release by updating the package version and promoting the changelog entries from Unreleased into a dated 1.1.1 section, keeping the changelog link references consistent for GitHub tagging/publishing.
Changes:
- Bump
pubspec.yamlversion from1.1.0to1.1.1. - Promote
CHANGELOG.mdentries into## [1.1.1] - 2026-06-23and update link references ([Unreleased]compare now starts from1.1.1; add[1.1.1]tag link).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pubspec.yaml | Version bump to 1.1.1 for the patch release. |
| CHANGELOG.md | Create the 1.1.1 section, move release notes under it, and update compare/tag link references. |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Bump the version strings that track the package release but live outside
pubspec.yaml: llms.txt ("Version 1.1.1 stable"), dartdoc_options.yaml
(source-link tag base blob/1.1.1), and example/pubspec.yaml (1.1.1+1).
SKILL.md "1.1.x" / skill v2.6.0, the ^1.0.0 install snippets, and the
historical CHANGELOG/upgrade-guide entries are version-correct as-is.
Patch release 1.1.1.
Release steps done in this PR
pubspec.yamlversion1.1.0->1.1.1.## [Unreleased]to## [1.1.1] - 2026-06-23inCHANGELOG.md, with the trailing[1.1.1]link reference and the[Unreleased]compare link redirected to1.1.1...HEAD.dart analyzeclean,dart formatno diff,flutter test1443 pass (1 pre-existing skip),./tool/coverage.sh 90-> 91.2%.What ships in 1.1.1
Fixed
WInputnative text selection restored: mouse drag-select, double-tap word, and long-press work again (the Material-free rewrite in Make WInput Material-free via EditableText (fixes #102) + W1/W2/W3 and layout/theming fixes #106 had dropped the selection gesture layer; only keyboard select-all worked, and web drag selected nothing). Wired viaTextSelectionGestureDetectorBuilder+rendererIgnoresPointer: true; handles stay Cupertino-style on all platforms, keepingWInputcupertino-only with nopackage:flutter/material.dartimport. (fix(w-input): native text selection (web mouse-drag + platform-adaptive handles) #116)WTextwith no color in its ownclassNamenow inherits an ancestorDefaultTextStylecolor (the CSS text-color cascade) before falling back to the platform-brightness baseline. (fix(w-text): inherit ancestor DefaultTextStyle color before the baseline #112)Changed
WInputtap-to-focus andonTapdispatch now flow through Flutter's native gesture builder instead of a hand-builtGestureDetector(also brings drag-select and double-tap word selection). (fix(w-input): native text selection (web mouse-drag + platform-adaptive handles) #116)After merge
Tag and publish (manual, per repo process):
The tag triggers
.github/workflows/publish.ymlto push to pub.dev.Summary by CodeRabbit