Release 0.9.1#2
Merged
Merged
Conversation
- Bump record ^6 -> ^7 (raises min SDK to Flutter 3.44 / Dart 3.12). - Raise file_picker lower bound to >=11.0.0 (static pickFiles API). - Disable prefer_initializing_formals lint (new in Dart 3.12, conflicts with the private-field/public-param constructor style). - Fix README quick-start version (^1.0.0 -> ^0.9.0).
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
Patch release. Dependency modernization + a doc fix.
Changes
record^6→^7. The audio recorder behind voice messages. TheDart API used (
start/stop/pause/resume/hasPermission/dispose,RecordConfig) is unchanged — record 7's breaking changes are native-only(Android background service, iOS
manageAudioSession), unused here.file_pickerlower bound>=9.0.0→>=11.0.0. The attachment pickeruses the
FilePicker.pickFilesstatic API, which only exists from 11.0.0(was instance-based before) — the old bound let the package resolve to a
version where the code didn't compile (caught by pana downgrade analysis).
prefer_initializing_formals(newly in the recommended lintset on Dart 3.12; conflicts with the deliberate private-field/public-named-
param constructor style across the SDK).
^0.9.0(was a stale^1.0.0).Test plan
dart formatcleanflutter analyze --fatal-infos --fatal-warningsclean (Flutter 3.44)flutter testgreen (record 7 / voice tests pass; goldens regeneratedon Linux CI — identical, no pixel change)
v0.9.1→ publish.yml publishes to pub.dev