Upgrade flutter_secure_storage to ^11.0.0 - #8
Open
Rexios80 wants to merge 1 commit into
Open
Conversation
Restore the lost pub.dev points by allowing the latest stable flutter_secure_storage. The SecureTokenStorage APIs we use are unchanged in 11.x; Android minSdk in the README is now 24. Co-authored-by: Rexios <rexios@rexios.dev>
Rexios80
marked this pull request as ready for review
September 8, 2026 13:09
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.
Why
Published
oauth_flutter0.0.12 dropped from 160/160 to 150/160 pub points. Pana’s “Support up-to-date dependencies” check fails becauseflutter_secure_storage: ^10.0.0does not allow latest stable11.0.0.No other direct dependency is behind its latest stable.
What changed
flutter_secure_storagefrom^10.0.0to^11.0.0.0.0.13and add a changelog entry so this is publishable.minSdkexample in the README from 23 to 24 (flutter_secure_storage11.0.0 raised its Android minimum).API check
SecureTokenStorageonly uses:FlutterSecureStorage(...)AndroidOptions()IOSOptions(accessibility: KeychainAccessibility.first_unlock)read/write/deleteby keyThose APIs are unchanged and still
constin 11.0.0. v11 breaking changes (removed deprecated Android ciphers,encryptedSharedPreferences, andsharedPreferencesName) are not used here, so no Dart code changes were required.Verification
flutter pub getresolvesflutter_secure_storage11.0.0dart pub outdated --no-dev-dependencies --up-to-date --no-dependency-overridesshows every direct dependency at Latestdart analyzereports no issuesAfter publishing 0.0.13, the missing 10 points from “All of the package dependencies are supported in the latest version” should be restored.