diff --git a/flutter_secure_storage/CHANGELOG.md b/flutter_secure_storage/CHANGELOG.md index 1c18024e..d5e2c9e2 100644 --- a/flutter_secure_storage/CHANGELOG.md +++ b/flutter_secure_storage/CHANGELOG.md @@ -1,3 +1,6 @@ +## 9.2.2 +[iOS, macOS] Fixed an issue which caused the readAll and deleteAll to not work properly. + ## 9.2.1 * Fix async race condition bug in storage operations. * [macOS] Return nil on macOS if key is not found diff --git a/flutter_secure_storage/pubspec.yaml b/flutter_secure_storage/pubspec.yaml index dc3f3d62..cdbe465d 100644 --- a/flutter_secure_storage/pubspec.yaml +++ b/flutter_secure_storage/pubspec.yaml @@ -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: 9.2.1 +version: 9.2.2 repository: https://github.com/mogol/flutter_secure_storage/tree/develop/flutter_secure_storage environment: @@ -32,7 +32,7 @@ dependencies: # validation, so we set a ^ constraint. # https://github.com/flutter/flutter/issues/46264 flutter_secure_storage_linux: ^1.2.1 - flutter_secure_storage_macos: ^3.1.1 + flutter_secure_storage_macos: ^3.1.2 flutter_secure_storage_platform_interface: ^1.1.2 flutter_secure_storage_web: ^1.2.1 flutter_secure_storage_windows: ^3.1.2 diff --git a/flutter_secure_storage_macos/CHANGELOG.md b/flutter_secure_storage_macos/CHANGELOG.md index 3130bb7c..1e96c43b 100644 --- a/flutter_secure_storage_macos/CHANGELOG.md +++ b/flutter_secure_storage_macos/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.1.2 +Fixed an issue which caused the readAll and deleteAll to not work properly. + ## 3.1.1 Fixed an issue which caused a platform exception when the key does not exists in the keychain. diff --git a/flutter_secure_storage_macos/pubspec.yaml b/flutter_secure_storage_macos/pubspec.yaml index 3c690378..6118cbdd 100644 --- a/flutter_secure_storage_macos/pubspec.yaml +++ b/flutter_secure_storage_macos/pubspec.yaml @@ -1,7 +1,7 @@ name: flutter_secure_storage_macos description: macOS implementation of flutter_secure_storage repository: https://github.com/mogol/flutter_secure_storage -version: 3.1.1 +version: 3.1.2 environment: sdk: ">=2.12.0 <4.0.0" @@ -10,7 +10,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_secure_storage_platform_interface: ^1.1.1 + flutter_secure_storage_platform_interface: ^1.1.2 flutter: plugin: