Skip to content

Commit

Permalink
release of v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Feb 9, 2023
1 parent 329ae94 commit 017ce81
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
12 changes: 12 additions & 0 deletions flutter_secure_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 8.0.0
Breaking changes:
* [macOS] The minimum macOS version supported is now 10.14.

Other changes:
* [Android] Fixed an issue when Encrypted Shared Preferences failed, the fallback would not handle the data correctly.
* [Windows] Write encrypted data to files instead of the windows credential system.
* [Linux] Fixed an issue with memory management.

## 7.0.2
[macOS] Fix issue with plugin name.

## 7.0.1
[Android] Reverted double initialization of the SharedPreferences because this will break mixed usage of secureSharedPreference on Android.

Expand Down
2 changes: 1 addition & 1 deletion flutter_secure_storage/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 7368163408c647b7eb699d0d788ba6718e18fb8d

COCOAPODS: 1.11.3
COCOAPODS: 1.11.2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -199,6 +199,7 @@
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
Expand All @@ -213,6 +214,7 @@
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
Expand Down Expand Up @@ -355,7 +357,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = RCH2VG82SH;
DEVELOPMENT_TEAM = 75Y2P2WSQQ;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
Expand Down Expand Up @@ -485,7 +487,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = RCH2VG82SH;
DEVELOPMENT_TEAM = 75Y2P2WSQQ;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
Expand All @@ -509,7 +511,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = RCH2VG82SH;
DEVELOPMENT_TEAM = 75Y2P2WSQQ;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
Expand Down
8 changes: 4 additions & 4 deletions flutter_secure_storage/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -129,21 +129,21 @@ packages:
path: ".."
relative: true
source: path
version: "7.0.2"
version: "8.0.0"
flutter_secure_storage_linux:
dependency: "direct overridden"
description:
path: "../../flutter_secure_storage_linux"
relative: true
source: path
version: "1.1.2"
version: "1.1.3"
flutter_secure_storage_macos:
dependency: "direct overridden"
description:
path: "../../flutter_secure_storage_macos"
relative: true
source: path
version: "2.0.1"
version: "3.0.0"
flutter_secure_storage_platform_interface:
dependency: "direct overridden"
description:
Expand All @@ -164,7 +164,7 @@ packages:
path: "../../flutter_secure_storage_windows"
relative: true
source: path
version: "1.1.3"
version: "2.0.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
8 changes: 4 additions & 4 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: 7.0.1
version: 8.0.0
repository: https://github.com/mogol/flutter_secure_storage/tree/develop/flutter_secure_storage

environment:
Expand Down Expand Up @@ -31,11 +31,11 @@ dependencies:
# implementation constraints as "any". We cannot do it right now as it fails pub publish
# validation, so we set a ^ constraint.
# https://github.com/flutter/flutter/issues/46264
flutter_secure_storage_linux: ^1.1.2
flutter_secure_storage_macos: ^2.0.0
flutter_secure_storage_linux: ^1.1.3
flutter_secure_storage_macos: ^3.0.0
flutter_secure_storage_platform_interface: ^1.0.1
flutter_secure_storage_web: ^1.1.1
flutter_secure_storage_windows: ^1.1.3
flutter_secure_storage_windows: ^2.0.0
meta: ^1.3.0

dev_dependencies:
Expand Down

0 comments on commit 017ce81

Please sign in to comment.