Skip to content

Commit

Permalink
release of v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Dec 9, 2022
1 parent dee3564 commit 884cde0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions flutter_secure_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 7.0.0
Breaking changes:
* [macOS] The minimum macOS version supported is now 10.13.

Other changes:
* [Android] Fixed double initialization of the SharedPreferences which caused containsKey and other functions to not work properly.
* [macOS] Upgraded codebase to swift which fixed containsKey always returning true.

## 6.1.0
* [iOS] (From 6.1.0-beta.1) Migrated from objective C to Swift. This also fixes issues with constainsKey and possibly other issues.
* [Android] Upgrade security-crypto from 1.1.0-alpha03 to 1.1.0-alpha04
Expand Down
8 changes: 4 additions & 4 deletions flutter_secure_storage/example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
Expand All @@ -24,6 +26,8 @@
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
Expand All @@ -43,9 +47,5 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
4 changes: 2 additions & 2 deletions flutter_secure_storage/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ packages:
path: ".."
relative: true
source: path
version: "6.1.0"
version: "7.0.0"
flutter_secure_storage_linux:
dependency: "direct overridden"
description:
Expand All @@ -129,7 +129,7 @@ packages:
path: "../../flutter_secure_storage_macos"
relative: true
source: path
version: "1.1.2"
version: "2.0.0"
flutter_secure_storage_platform_interface:
dependency: "direct overridden"
description:
Expand Down
4 changes: 2 additions & 2 deletions flutter_secure_storage/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_secure_storage
description: Flutter Secure Storage provides API to store data in secure storage. Keychain is used in iOS, KeyStore based solution is used in Android.
version: 6.1.0
version: 7.0.0
repository: https://github.com/mogol/flutter_secure_storage/tree/develop/flutter_secure_storage

environment:
Expand Down Expand Up @@ -32,7 +32,7 @@ dependencies:
# validation, so we set a ^ constraint.
# https://github.com/flutter/flutter/issues/46264
flutter_secure_storage_linux: ^1.1.2
flutter_secure_storage_macos: ^1.1.2
flutter_secure_storage_macos: ^2.0.0
flutter_secure_storage_platform_interface: ^1.0.1
flutter_secure_storage_web: ^1.1.1
flutter_secure_storage_windows: ^1.1.3
Expand Down

0 comments on commit 884cde0

Please sign in to comment.