From 26509326680a4a9d9d3cf47746a8fb492ae6cf6f Mon Sep 17 00:00:00 2001 From: Dustin Noyes Date: Tue, 17 May 2022 09:26:26 -0700 Subject: [PATCH] chore: release 0.5.0 (05-17-2022) (#1587) * package version bumps * example app package versions * changelogs * update changelogs * Update changelogs * fix release date * remove redundant logs for new packages * Fix formatting * Add missed log entries * Reword breaking change section * Reword Co-authored-by: Dustin Noyes Co-authored-by: Hui Zhao --- example/pubspec.yaml | 8 +-- packages/amplify/amplify_flutter/CHANGELOG.md | 54 ++++++++++++++++++ .../lib/src/method_channel_amplify.dart | 2 +- packages/amplify/amplify_flutter/pubspec.yaml | 28 +++++----- .../amplify_flutter_android/CHANGELOG.md | 56 +++++++++++++++++++ .../amplify_flutter_android/pubspec.yaml | 2 +- .../amplify/amplify_flutter_ios/CHANGELOG.md | 54 ++++++++++++++++++ .../amplify/amplify_flutter_ios/pubspec.yaml | 4 +- packages/amplify_authenticator/CHANGELOG.md | 14 +++++ .../example/pubspec.yaml | 6 +- packages/amplify_authenticator/pubspec.yaml | 10 ++-- packages/amplify_core/CHANGELOG.md | 19 +++++++ packages/amplify_core/pubspec.yaml | 2 +- packages/amplify_datastore/CHANGELOG.md | 24 ++++++++ packages/amplify_datastore/pubspec.yaml | 6 +- .../CHANGELOG.md | 22 ++++++++ .../pubspec.yaml | 4 +- packages/amplify_test/pubspec.yaml | 8 +-- .../amplify_analytics_pinpoint/CHANGELOG.md | 12 ++++ .../amplify_analytics_pinpoint/pubspec.yaml | 10 ++-- .../CHANGELOG.md | 14 +++++ .../pubspec.yaml | 2 +- .../CHANGELOG.md | 12 ++++ .../pubspec.yaml | 2 +- .../CHANGELOG.md | 12 ++++ .../pubspec.yaml | 4 +- packages/api/amplify_api/CHANGELOG.md | 17 ++++++ packages/api/amplify_api/pubspec.yaml | 10 ++-- packages/api/amplify_api_android/CHANGELOG.md | 6 +- packages/api/amplify_api_android/pubspec.yaml | 2 +- packages/api/amplify_api_ios/CHANGELOG.md | 4 +- packages/api/amplify_api_ios/pubspec.yaml | 4 +- .../amplify_api_plugin_interface/CHANGELOG.md | 12 ++++ .../amplify_api_plugin_interface/pubspec.yaml | 4 +- .../auth/amplify_auth_cognito/CHANGELOG.md | 13 +++++ .../auth/amplify_auth_cognito/pubspec.yaml | 10 ++-- .../amplify_auth_cognito_android/CHANGELOG.md | 15 +++++ .../amplify_auth_cognito_android/pubspec.yaml | 2 +- .../amplify_auth_cognito_ios/CHANGELOG.md | 13 +++++ .../amplify_auth_cognito_ios/pubspec.yaml | 4 +- .../CHANGELOG.md | 13 +++++ .../pubspec.yaml | 4 +- packages/aws_common/CHANGELOG.md | 2 +- packages/aws_signature_v4/CHANGELOG.md | 2 +- .../CHANGELOG.md | 12 ++++ .../pubspec.yaml | 4 +- .../storage/amplify_storage_s3/CHANGELOG.md | 12 ++++ .../storage/amplify_storage_s3/pubspec.yaml | 10 ++-- .../amplify_storage_s3_android/CHANGELOG.md | 14 +++++ .../amplify_storage_s3_android/pubspec.yaml | 2 +- .../amplify_storage_s3_ios/CHANGELOG.md | 12 ++++ .../amplify_storage_s3_ios/pubspec.yaml | 2 +- 52 files changed, 512 insertions(+), 84 deletions(-) diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 0f1754c7dc..08a1aeebf6 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -25,10 +25,10 @@ dependencies: flutter: sdk: flutter file_picker: ^4.0.0 - amplify_flutter: 0.4.5 - amplify_analytics_pinpoint: 0.4.5 - amplify_auth_cognito: 0.4.5 - amplify_storage_s3: 0.4.5 + amplify_flutter: 0.5.0 + amplify_analytics_pinpoint: 0.5.0 + amplify_auth_cognito: 0.5.0 + amplify_storage_s3: 0.5.0 # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.3 diff --git a/packages/amplify/amplify_flutter/CHANGELOG.md b/packages/amplify/amplify_flutter/CHANGELOG.md index 8d7e0e1658..94597aa5b2 100644 --- a/packages/amplify/amplify_flutter/CHANGELOG.md +++ b/packages/amplify/amplify_flutter/CHANGELOG.md @@ -1,3 +1,57 @@ +## 0.5.0 (2022-05-17) + +### Breaking Changes + +- **Auth**: Auth API Changes + + - Previously, the [`Amplify.Auth.deleteUser`](https://docs.amplify.aws/lib/auth/delete_user/q/platform/flutter/) API would throw `UnimplementedException` when it was called on Android platform. When this release, this API becomes functional and will delete currently signed in user on Android platform. + + **How to Migrate:** + + - Remove unwanted calls of the `Amplify.Auth.deleteUser` API, if you were handling the `UnimplementedException` exception for Android + + - Custom Auth flows are now available with passwordless logins. To support this change, the password attribute is now optional in the `Auth.signIn` API. While this should not prove breaking in most cases, we are calling it out since it alters a very commonly used API. + + **How to Migrate:** + + - Pass null to the `Auth.signIn` API only for passwordless login, using Cognito Custom Auth flows + +### Features + +- feat(auth): add deleteUser support for Android (#1540) +- feat(auth): enables custom auth flows (#1444) +- feat(datastore): Custom Conflict Handler (#1254) +- feat(datastore): emit subscriptionDataProcessed and syncReceived events (#1351) +- feat(datastore): Multi-auth (#1478) +- feat: AWS Signature V4 library (#1456) + +### Fixes + +- fix: support lists for .contains query predicate in observeQuery (#1233) +- fix(auth): Fix FlutterAuthProvider.kt (#1505) +- fix(core): Update QueryPagination page field to default to 0 (#1533) +- fix(authenticator): Fix confirm password validator (#1542) +- fix(aws_signature_v4): Various fixes (#1572) + +### Chores + +- chore(amplify_api): federated plugin (#1410) +- chore(amplify_flutter): migrate amplify_flutter to federated plugin (#1450) +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore(ci): Bump Xcode version +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore(aws): Bump min SDK version (#1551) +- chore: Lint fixes (#1471) +- chore(authenticator): Fix failing integration tests (#1545) +- chore: enable dependabot (#1568) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify/amplify_flutter/lib/src/method_channel_amplify.dart b/packages/amplify/amplify_flutter/lib/src/method_channel_amplify.dart index c30a5a647c..9999263193 100644 --- a/packages/amplify/amplify_flutter/lib/src/method_channel_amplify.dart +++ b/packages/amplify/amplify_flutter/lib/src/method_channel_amplify.dart @@ -166,6 +166,6 @@ class MethodChannelAmplify extends AmplifyClass { } String _getVersion() { - return '0.4.3'; + return '0.5.0'; } } diff --git a/packages/amplify/amplify_flutter/pubspec.yaml b/packages/amplify/amplify_flutter/pubspec.yaml index 183c830c36..d48942d56c 100644 --- a/packages/amplify/amplify_flutter/pubspec.yaml +++ b/packages/amplify/amplify_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter description: The top level Flutter package for the AWS Amplify libraries. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify/amplify_flutter environment: @@ -8,14 +8,14 @@ environment: flutter: ">=2.0.0" dependencies: - amplify_analytics_plugin_interface: 0.4.5 - amplify_api_plugin_interface: 0.4.5 - amplify_auth_plugin_interface: 0.4.5 - amplify_core: 0.4.5 - amplify_datastore_plugin_interface: 0.4.5 - amplify_flutter_android: 0.4.5 - amplify_flutter_ios: 0.4.5 - amplify_storage_plugin_interface: 0.4.5 + amplify_analytics_plugin_interface: 0.5.0 + amplify_api_plugin_interface: 0.5.0 + amplify_auth_plugin_interface: 0.5.0 + amplify_core: 0.5.0 + amplify_datastore_plugin_interface: 0.5.0 + amplify_flutter_android: 0.5.0 + amplify_flutter_ios: 0.5.0 + amplify_storage_plugin_interface: 0.5.0 collection: ^1.15.0 flutter: sdk: flutter @@ -49,12 +49,12 @@ dependencies: # path: ../amplify_storage_s3 dev_dependencies: - amplify_analytics_pinpoint: 0.4.3 - amplify_api: 0.4.3 - amplify_auth_cognito: 0.4.3 - amplify_datastore: 0.4.3 + amplify_analytics_pinpoint: 0.5.0 + amplify_api: 0.5.0 + amplify_auth_cognito: 0.5.0 + amplify_datastore: 0.5.0 amplify_lints: ^1.0.0 - amplify_storage_s3: 0.4.3 + amplify_storage_s3: 0.5.0 amplify_test: path: ../../amplify_test build_runner: ^2.0.0 diff --git a/packages/amplify/amplify_flutter_android/CHANGELOG.md b/packages/amplify/amplify_flutter_android/CHANGELOG.md index 586ed8bf49..17cf4f6cfc 100644 --- a/packages/amplify/amplify_flutter_android/CHANGELOG.md +++ b/packages/amplify/amplify_flutter_android/CHANGELOG.md @@ -1,3 +1,59 @@ +## 0.5.0 (2022-05-17) + +### Breaking Changes + +- break: adds deleteUser support for Android (#1540) +- feat(auth): enables custom auth flows (#1444) + +- **Auth**: Auth API Changes + +- The `Auth.deleteUser` API is now functional on both Android and iOS platforms. Previsiously, this API would throw an exception on the Android platform. Now, the user will be deleted. + +- Custom Auth flows are now available with passwordless logins. To support this change, the password attribute is now optional in the `Auth.signIn` API. While this should not prove breaking in most cases, we are calling it out since it alters a very commonly used API. + + **How to Migrate:** + + - Ensure that you are only invoking the `Auth.deleteUser` API when you want the user to be deleted, and do not rely on library to throw an exception on the Android platform. + + - Pass null to the Auth.signIn API only for passwordless login, using Cognito Custom Auth flows. + +### Features + +- feat(datastore): Custom Conflict Handler (#1254) +- feat(datastore): emit subscriptionDataProcessed and syncReceived events (#1351) +- feat(datastore): Multi-auth (#1478) +- feat: AWS Signature V4 library (#1456) + +### Fixes + +- fix: support lists for .contains query predicate in observeQuery (#1233) +- fix(auth): Fix FlutterAuthProvider.kt (#1505) +- fix(core): Update QueryPagination page field to default to 0 (#1533) +- fix(authenticator): Fix confirm password validator (#1542) +- fix(aws_signature_v4): Various fixes (#1572) + +### Chores + +- chore(amplify_api): federated plugin (#1410) +- chore(amplify_flutter): migrate amplify_flutter to federated plugin (#1450) +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore(ci): Bump Xcode version +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore(aws): Bump min SDK version (#1551) +- chore: Lint fixes (#1471) +- chore(authenticator): Fix failing integration tests (#1545) +- chore(aws_signature_v4): Update README (#1559) +- chore(aws_signature_v4): Update user agent header name (#1561) +- chore(aws_common): Crypto-secure UUID (#1573) +- chore: enable dependabot (#1568) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify/amplify_flutter_android/pubspec.yaml b/packages/amplify/amplify_flutter_android/pubspec.yaml index 6f8b54264b..96698f871c 100644 --- a/packages/amplify/amplify_flutter_android/pubspec.yaml +++ b/packages/amplify/amplify_flutter_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter_android description: The method channel implementation for amplify_flutter on Android -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify/amplify_flutter_android environment: diff --git a/packages/amplify/amplify_flutter_ios/CHANGELOG.md b/packages/amplify/amplify_flutter_ios/CHANGELOG.md index ce386039dd..0f4251abee 100644 --- a/packages/amplify/amplify_flutter_ios/CHANGELOG.md +++ b/packages/amplify/amplify_flutter_ios/CHANGELOG.md @@ -1,3 +1,57 @@ +## 0.5.0 (2022-05-17) + +### Breaking Changes + +- break: adds deleteUser support for Android (#1540) +- feat(auth): enables custom auth flows (#1444) + +- **Auth**: Auth API Changes + +- The `Auth.deleteUser` API is now functional on both Android and iOS platforms. Previsiously, this API would throw an exception on the Android platform. Now, the user will be deleted. + +- Custom Auth flows are now available with passwordless logins. To support this change, the password attribute is now optional in the `Auth.signIn` API. While this should not prove breaking in most cases, we are calling it out since it alters a very commonly used API. + + **How to Migrate:** + + - Ensure that you are only invoking the `Auth.deleteUser` API when you want the user to be deleted, and do not rely on library to throw an exception on the Android platform. + + - Pass null to the Auth.signIn API only for passwordless login, using Cognito Custom Auth flows. + +### Features + +- feat(datastore): Custom Conflict Handler (#1254) +- feat(datastore): emit subscriptionDataProcessed and syncReceived events (#1351) +- feat(datastore): Multi-auth (#1478) +- feat: AWS Signature V4 library (#1456) + +### Fixes + +- fix: support lists for .contains query predicate in observeQuery (#1233) +- fix(auth): Fix FlutterAuthProvider.kt (#1505) +- fix(core): Update QueryPagination page field to default to 0 (#1533) +- fix(authenticator): Fix confirm password validator (#1542) +- fix(aws_signature_v4): Various fixes (#1572) + +### Chores + +- chore(amplify_api): federated plugin (#1410) +- chore(amplify_flutter): migrate amplify_flutter to federated plugin (#1450) +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore(ci): Bump Xcode version +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore(aws): Bump min SDK version (#1551) +- chore: Lint fixes (#1471) +- chore(authenticator): Fix failing integration tests (#1545) +- chore(aws_signature_v4): Update README (#1559) +- chore(aws_signature_v4): Update user agent header name (#1561) +- chore(aws_common): Crypto-secure UUID (#1573) +- chore: enable dependabot (#1568) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify/amplify_flutter_ios/pubspec.yaml b/packages/amplify/amplify_flutter_ios/pubspec.yaml index d9edaf16e3..9fe5302b6c 100644 --- a/packages/amplify/amplify_flutter_ios/pubspec.yaml +++ b/packages/amplify/amplify_flutter_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_flutter_ios description: The method channel implementation for amplify_flutter on iOS -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify/amplify_flutter_ios environment: @@ -8,7 +8,7 @@ environment: flutter: ">=2.0.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 flutter: sdk: flutter diff --git a/packages/amplify_authenticator/CHANGELOG.md b/packages/amplify_authenticator/CHANGELOG.md index e177eddb25..a304c8da08 100644 --- a/packages/amplify_authenticator/CHANGELOG.md +++ b/packages/amplify_authenticator/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.1.1 (2022-05-17) + +### Features + +- feat(auth): enables custom auth flows (#1444) + +### Fixes + +- fix(authenticator): Fix confirm password validator (#1542) + +### Chores + +- chore(authenticator): Fix failing integration tests (#1545) + ## 0.1.0 (2022-02-24) - Initial stable release of the amplify_authenticator package. See https://ui.docs.amplify.aws/components/authenticator?platform=flutter to get started. diff --git a/packages/amplify_authenticator/example/pubspec.yaml b/packages/amplify_authenticator/example/pubspec.yaml index 400785ef6c..73b663782d 100644 --- a/packages/amplify_authenticator/example/pubspec.yaml +++ b/packages/amplify_authenticator/example/pubspec.yaml @@ -21,10 +21,10 @@ environment: sdk: ">=2.12.0 <3.0.0" dependencies: - amplify_auth_cognito: 0.4.5 + amplify_auth_cognito: 0.5.0 amplify_authenticator: path: ../ - amplify_flutter: 0.4.5 + amplify_flutter: 0.5.0 flutter: sdk: flutter @@ -37,7 +37,7 @@ dependencies: sdk: flutter dev_dependencies: - amplify_api: 0.4.5 + amplify_api: 0.5.0 amplify_lints: ^1.0.0 amplify_test: path: ../../amplify_test diff --git a/packages/amplify_authenticator/pubspec.yaml b/packages/amplify_authenticator/pubspec.yaml index 58ad0727b0..697ac8355c 100644 --- a/packages/amplify_authenticator/pubspec.yaml +++ b/packages/amplify_authenticator/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_authenticator description: A prebuilt Sign In and Sign Up experience for the Amplify Auth category -version: 0.1.0 +version: 0.1.1 homepage: https://ui.docs.amplify.aws/components/authenticator?platform=flutter issue_tracker: https://github.com/aws-amplify/amplify-flutter/issues @@ -9,10 +9,10 @@ environment: flutter: ">=2.0.0" dependencies: - amplify_auth_cognito: ">=0.3.0 <0.5.0" - amplify_auth_plugin_interface: ">=0.3.0 <0.5.0" - amplify_core: ">=0.3.0 <0.5.0" - amplify_flutter: ">=0.3.0 <0.5.0" + amplify_auth_cognito: ">=0.3.0 <0.6.0" + amplify_auth_plugin_interface: ">=0.3.0 <0.6.0" + amplify_core: ">=0.3.0 <0.6.0" + amplify_flutter: ">=0.3.0 <0.6.0" collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/amplify_core/CHANGELOG.md b/packages/amplify_core/CHANGELOG.md index d265ff0c91..ca706fd6ac 100644 --- a/packages/amplify_core/CHANGELOG.md +++ b/packages/amplify_core/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.5.0 (2022-05-17) + +### Fixes + +- fix(core): Update QueryPagination page field to default to 0 (#1533) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: enable dependabot (#1568) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify_core/pubspec.yaml b/packages/amplify_core/pubspec.yaml index c431a0b29d..dcc19d23e2 100644 --- a/packages/amplify_core/pubspec.yaml +++ b/packages/amplify_core/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_core description: The base package containing common types and utilities that are shared across the Amplify Flutter packages. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_core environment: diff --git a/packages/amplify_datastore/CHANGELOG.md b/packages/amplify_datastore/CHANGELOG.md index 16c79efaf3..0db930907c 100644 --- a/packages/amplify_datastore/CHANGELOG.md +++ b/packages/amplify_datastore/CHANGELOG.md @@ -1,3 +1,27 @@ +## 0.5.0 (2022-05-17) + +### Features + +- feat(datastore): Custom Conflict Handler (#1254) +- feat(datastore): emit subscriptionDataProcessed and syncReceived events (#1351) +- feat(datastore): Multi-auth (#1478) + +### Fixes + +- fix: support lists for .contains query predicate in observeQuery (#1233) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify_datastore/pubspec.yaml b/packages/amplify_datastore/pubspec.yaml index ec40b84574..bef62574a8 100644 --- a/packages/amplify_datastore/pubspec.yaml +++ b/packages/amplify_datastore/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_datastore description: The Amplify Flutter DataStore category plugin, providing a queryable, on-device data store. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_datastore environment: @@ -10,8 +10,8 @@ environment: dependencies: flutter: sdk: flutter - amplify_datastore_plugin_interface: 0.4.5 - amplify_core: 0.4.5 + amplify_datastore_plugin_interface: 0.5.0 + amplify_core: 0.5.0 plugin_platform_interface: ^2.0.0 meta: ^1.1.8 collection: ^1.14.13 diff --git a/packages/amplify_datastore_plugin_interface/CHANGELOG.md b/packages/amplify_datastore_plugin_interface/CHANGELOG.md index b9bb0e46f9..8aeced91ad 100644 --- a/packages/amplify_datastore_plugin_interface/CHANGELOG.md +++ b/packages/amplify_datastore_plugin_interface/CHANGELOG.md @@ -1,3 +1,25 @@ +## 0.5.0 (2022-05-17) + +### Features + +- feat(datastore): Custom Conflict Handler (#1254) +- feat(datastore): emit subscriptionDataProcessed and syncReceived events (#1351) +- feat(datastore): Multi-auth (#1478) + +### Fixes + +- fix: support lists for .contains query predicate in observeQuery (#1233) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/amplify_datastore_plugin_interface/pubspec.yaml b/packages/amplify_datastore_plugin_interface/pubspec.yaml index 81a1ce4662..0ee7afb855 100644 --- a/packages/amplify_datastore_plugin_interface/pubspec.yaml +++ b/packages/amplify_datastore_plugin_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_datastore_plugin_interface description: The platform interface for the DataStore module of Amplify Flutter. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_datastore_plugin_interface environment: @@ -12,7 +12,7 @@ dependencies: sdk: flutter meta: ^1.3.0 collection: ^1.15.0 - amplify_core: 0.4.5 + amplify_core: 0.5.0 dev_dependencies: amplify_test: diff --git a/packages/amplify_test/pubspec.yaml b/packages/amplify_test/pubspec.yaml index a3715ecfbc..96a072eb77 100644 --- a/packages/amplify_test/pubspec.yaml +++ b/packages/amplify_test/pubspec.yaml @@ -8,10 +8,10 @@ environment: sdk: ">=2.12.0 <3.0.0" dependencies: - amplify_api: 0.4.5 - amplify_auth_cognito: 0.4.5 - amplify_core: 0.4.5 - amplify_flutter: 0.4.5 + amplify_api: 0.5.0 + amplify_auth_cognito: 0.5.0 + amplify_core: 0.5.0 + amplify_flutter: 0.5.0 flutter: sdk: flutter stream_transform: ^2.0.0 diff --git a/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md b/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md index 74a4763d64..6a99d4cbb6 100644 --- a/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_pinpoint/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml index 32ec541996..df30bbe594 100644 --- a/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_analytics_pinpoint description: The Amplify Flutter Analytics category plugin using the AWS Pinpoint provider. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/analytics/amplify_analytics_pinpoint environment: @@ -8,10 +8,10 @@ environment: flutter: ">=1.20.0" dependencies: - amplify_analytics_pinpoint_android: 0.4.5 - amplify_analytics_pinpoint_ios: 0.4.5 - amplify_analytics_plugin_interface: 0.4.5 - amplify_core: 0.4.5 + amplify_analytics_pinpoint_android: 0.5.0 + amplify_analytics_pinpoint_ios: 0.5.0 + amplify_analytics_plugin_interface: 0.5.0 + amplify_core: 0.5.0 flutter: sdk: flutter plugin_platform_interface: ^2.0.0 diff --git a/packages/analytics/amplify_analytics_pinpoint_android/CHANGELOG.md b/packages/analytics/amplify_analytics_pinpoint_android/CHANGELOG.md index 46c19935a4..26d0105cb1 100644 --- a/packages/analytics/amplify_analytics_pinpoint_android/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_pinpoint_android/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/analytics/amplify_analytics_pinpoint_android/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint_android/pubspec.yaml index bc81b608d0..8c1692d1a8 100644 --- a/packages/analytics/amplify_analytics_pinpoint_android/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_analytics_pinpoint_android description: The method channel implementation for amplify_analytics_pinpoint on Android -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/analytics/amplify_analytics_pinpoint_android environment: diff --git a/packages/analytics/amplify_analytics_pinpoint_ios/CHANGELOG.md b/packages/analytics/amplify_analytics_pinpoint_ios/CHANGELOG.md index b6da23c52f..d33a8e8a6d 100644 --- a/packages/analytics/amplify_analytics_pinpoint_ios/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_pinpoint_ios/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/analytics/amplify_analytics_pinpoint_ios/pubspec.yaml b/packages/analytics/amplify_analytics_pinpoint_ios/pubspec.yaml index 4709fb3ab2..07cc3602bb 100644 --- a/packages/analytics/amplify_analytics_pinpoint_ios/pubspec.yaml +++ b/packages/analytics/amplify_analytics_pinpoint_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_analytics_pinpoint_ios description: The method channel implementation for amplify_analytics_pinpoint on iOS -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/analytics/amplify_analytics_pinpoint_ios environment: diff --git a/packages/analytics/amplify_analytics_plugin_interface/CHANGELOG.md b/packages/analytics/amplify_analytics_plugin_interface/CHANGELOG.md index ab2d3af169..b946d9dc82 100644 --- a/packages/analytics/amplify_analytics_plugin_interface/CHANGELOG.md +++ b/packages/analytics/amplify_analytics_plugin_interface/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/analytics/amplify_analytics_plugin_interface/pubspec.yaml b/packages/analytics/amplify_analytics_plugin_interface/pubspec.yaml index 326c188a09..33f7e49cb1 100644 --- a/packages/analytics/amplify_analytics_plugin_interface/pubspec.yaml +++ b/packages/analytics/amplify_analytics_plugin_interface/pubspec.yaml @@ -1,13 +1,13 @@ name: amplify_analytics_plugin_interface description: The platform interface for the analytics module of Amplify Flutter. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/analytics/amplify_analytics_plugin_interface environment: sdk: ">=2.12.0 <3.0.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 flutter: sdk: flutter meta: ^1.1.8 diff --git a/packages/api/amplify_api/CHANGELOG.md b/packages/api/amplify_api/CHANGELOG.md index dd805cfe16..5758e1b41a 100644 --- a/packages/api/amplify_api/CHANGELOG.md +++ b/packages/api/amplify_api/CHANGELOG.md @@ -1,3 +1,20 @@ +## 0.5.0 (2022-05-17) + +### Fixes + +- fix(auth): Fix FlutterAuthProvider.kt (#1505) + +### Chores + +- chore(amplify_api): federated plugin (#1410) +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/api/amplify_api/pubspec.yaml b/packages/api/amplify_api/pubspec.yaml index b164f00b08..4300870f00 100644 --- a/packages/api/amplify_api/pubspec.yaml +++ b/packages/api/amplify_api/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api description: The Amplify Flutter API category plugin, supporting GraphQL and REST operations. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_api environment: @@ -8,10 +8,10 @@ environment: flutter: ">=1.20.0" dependencies: - amplify_api_plugin_interface: 0.4.5 - amplify_core: 0.4.5 - amplify_api_android: 0.4.5 - amplify_api_ios: 0.4.5 + amplify_api_plugin_interface: 0.5.0 + amplify_core: 0.5.0 + amplify_api_android: 0.5.0 + amplify_api_ios: 0.5.0 collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/api/amplify_api_android/CHANGELOG.md b/packages/api/amplify_api_android/CHANGELOG.md index 28b002cac9..49104201b1 100644 --- a/packages/api/amplify_api_android/CHANGELOG.md +++ b/packages/api/amplify_api_android/CHANGELOG.md @@ -1,3 +1,5 @@ -## 0.4.1 (2022-03-04) +## 0.5.0 (2022-05-17) -Initial release of this plugin +- feat: Initial release of this plugin +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) diff --git a/packages/api/amplify_api_android/pubspec.yaml b/packages/api/amplify_api_android/pubspec.yaml index f307ddca51..f21b905674 100644 --- a/packages/api/amplify_api_android/pubspec.yaml +++ b/packages/api/amplify_api_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_android description: The method channel implementation for amplify_api on Android -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/api/amplify_api_android environment: diff --git a/packages/api/amplify_api_ios/CHANGELOG.md b/packages/api/amplify_api_ios/CHANGELOG.md index 28b002cac9..3135e91d91 100644 --- a/packages/api/amplify_api_ios/CHANGELOG.md +++ b/packages/api/amplify_api_ios/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.4.1 (2022-03-04) +## 0.5.0 (2022-05-17) -Initial release of this plugin +- feat: Initial release of this plugin diff --git a/packages/api/amplify_api_ios/pubspec.yaml b/packages/api/amplify_api_ios/pubspec.yaml index e4e6959865..cd977aae61 100644 --- a/packages/api/amplify_api_ios/pubspec.yaml +++ b/packages/api/amplify_api_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_ios description: The method channel implementation for amplify_api on iOS -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/api/amplify_api_ios environment: @@ -8,7 +8,7 @@ environment: flutter: ">=1.20.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 flutter: sdk: flutter diff --git a/packages/api/amplify_api_plugin_interface/CHANGELOG.md b/packages/api/amplify_api_plugin_interface/CHANGELOG.md index 3358f2a77c..730bddc7a8 100644 --- a/packages/api/amplify_api_plugin_interface/CHANGELOG.md +++ b/packages/api/amplify_api_plugin_interface/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/api/amplify_api_plugin_interface/pubspec.yaml b/packages/api/amplify_api_plugin_interface/pubspec.yaml index 16e4fbbb69..e2364aeb8a 100644 --- a/packages/api/amplify_api_plugin_interface/pubspec.yaml +++ b/packages/api/amplify_api_plugin_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_api_plugin_interface description: The platform interface for the API module of Amplify Flutter. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/amplify_api_plugin_interface environment: @@ -8,7 +8,7 @@ environment: flutter: ">=1.17.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/auth/amplify_auth_cognito/CHANGELOG.md b/packages/auth/amplify_auth_cognito/CHANGELOG.md index 24676b2379..cd4a69eaf8 100644 --- a/packages/auth/amplify_auth_cognito/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/auth/amplify_auth_cognito/pubspec.yaml b/packages/auth/amplify_auth_cognito/pubspec.yaml index e1775a7d87..948f38dfc9 100644 --- a/packages/auth/amplify_auth_cognito/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito description: The Amplify Flutter Auth category plugin using the AWS Cognito provider. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/auth/amplify_auth_cognito environment: @@ -8,10 +8,10 @@ environment: flutter: ">=1.20.0" dependencies: - amplify_auth_cognito_android: 0.4.5 - amplify_auth_cognito_ios: 0.4.5 - amplify_auth_plugin_interface: 0.4.5 - amplify_core: 0.4.5 + amplify_auth_cognito_android: 0.5.0 + amplify_auth_cognito_ios: 0.5.0 + amplify_auth_plugin_interface: 0.5.0 + amplify_core: 0.5.0 collection: ^1.15.0 flutter: sdk: flutter diff --git a/packages/auth/amplify_auth_cognito_android/CHANGELOG.md b/packages/auth/amplify_auth_cognito_android/CHANGELOG.md index 6f91369095..5e9906b7e6 100644 --- a/packages/auth/amplify_auth_cognito_android/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito_android/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/auth/amplify_auth_cognito_android/pubspec.yaml b/packages/auth/amplify_auth_cognito_android/pubspec.yaml index 0879f83aec..785597e52a 100644 --- a/packages/auth/amplify_auth_cognito_android/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito_android description: The method channel implementation for amplify_auth_cognito on Android -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/auth/amplify_auth_cognito_android environment: diff --git a/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md b/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md index ece404e797..c51fcd1684 100644 --- a/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md +++ b/packages/auth/amplify_auth_cognito_ios/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/auth/amplify_auth_cognito_ios/pubspec.yaml b/packages/auth/amplify_auth_cognito_ios/pubspec.yaml index ee1d362bab..8620ac7e03 100644 --- a/packages/auth/amplify_auth_cognito_ios/pubspec.yaml +++ b/packages/auth/amplify_auth_cognito_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_auth_cognito_ios description: The method channel implementation for amplify_auth_cognito on iOS -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/auth/amplify_auth_cognito_ios environment: @@ -8,7 +8,7 @@ environment: flutter: ">=1.20.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 flutter: sdk: flutter diff --git a/packages/auth/amplify_auth_plugin_interface/CHANGELOG.md b/packages/auth/amplify_auth_plugin_interface/CHANGELOG.md index 2960f81a9c..38bd3157f9 100644 --- a/packages/auth/amplify_auth_plugin_interface/CHANGELOG.md +++ b/packages/auth/amplify_auth_plugin_interface/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore(auth): Templatize and update exception comments (#1476) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/auth/amplify_auth_plugin_interface/pubspec.yaml b/packages/auth/amplify_auth_plugin_interface/pubspec.yaml index b3818a15e2..214ff80b8e 100644 --- a/packages/auth/amplify_auth_plugin_interface/pubspec.yaml +++ b/packages/auth/amplify_auth_plugin_interface/pubspec.yaml @@ -1,13 +1,13 @@ name: amplify_auth_plugin_interface description: The platform interface for the auth module of Amplify Flutter. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/auth/amplify_auth_plugin_interface environment: sdk: ">=2.12.0 <3.0.0" dependencies: - amplify_core: 0.4.5 + amplify_core: 0.5.0 flutter: sdk: flutter meta: ^1.1.8 diff --git a/packages/aws_common/CHANGELOG.md b/packages/aws_common/CHANGELOG.md index a0712a79e7..c2da0810bd 100644 --- a/packages/aws_common/CHANGELOG.md +++ b/packages/aws_common/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.1.0 +## 0.1.0 (2022-05-17) - Initial version. diff --git a/packages/aws_signature_v4/CHANGELOG.md b/packages/aws_signature_v4/CHANGELOG.md index a0712a79e7..c2da0810bd 100644 --- a/packages/aws_signature_v4/CHANGELOG.md +++ b/packages/aws_signature_v4/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.1.0 +## 0.1.0 (2022-05-17) - Initial version. diff --git a/packages/storage/amplify_storage_plugin_interface/CHANGELOG.md b/packages/storage/amplify_storage_plugin_interface/CHANGELOG.md index cec3719eba..87116e81cc 100644 --- a/packages/storage/amplify_storage_plugin_interface/CHANGELOG.md +++ b/packages/storage/amplify_storage_plugin_interface/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/storage/amplify_storage_plugin_interface/pubspec.yaml b/packages/storage/amplify_storage_plugin_interface/pubspec.yaml index 2d045e4874..c806a1d10d 100644 --- a/packages/storage/amplify_storage_plugin_interface/pubspec.yaml +++ b/packages/storage/amplify_storage_plugin_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_plugin_interface description: The platform interface for the storage module of Amplify Flutter. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_plugin_interface environment: @@ -10,7 +10,7 @@ dependencies: flutter: sdk: flutter meta: ^1.1.8 - amplify_core: 0.4.5 + amplify_core: 0.5.0 dev_dependencies: amplify_test: diff --git a/packages/storage/amplify_storage_s3/CHANGELOG.md b/packages/storage/amplify_storage_s3/CHANGELOG.md index 0633199de8..405e1346a5 100644 --- a/packages/storage/amplify_storage_s3/CHANGELOG.md +++ b/packages/storage/amplify_storage_s3/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/storage/amplify_storage_s3/pubspec.yaml b/packages/storage/amplify_storage_s3/pubspec.yaml index c5f98a50da..9e956e7636 100644 --- a/packages/storage/amplify_storage_s3/pubspec.yaml +++ b/packages/storage/amplify_storage_s3/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_s3 description: The Amplify Flutter Storage category plugin using the AWS S3 provider. -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_s3 environment: @@ -10,11 +10,11 @@ environment: dependencies: flutter: sdk: flutter - amplify_storage_plugin_interface: 0.4.5 + amplify_storage_plugin_interface: 0.5.0 plugin_platform_interface: ^2.0.0 - amplify_storage_s3_android: 0.4.5 - amplify_storage_s3_ios: 0.4.5 - amplify_core: 0.4.5 + amplify_storage_s3_android: 0.5.0 + amplify_storage_s3_ios: 0.5.0 + amplify_core: 0.5.0 dev_dependencies: amplify_test: diff --git a/packages/storage/amplify_storage_s3_android/CHANGELOG.md b/packages/storage/amplify_storage_s3_android/CHANGELOG.md index 9ac1b0b7ac..5c01ce1dde 100644 --- a/packages/storage/amplify_storage_s3_android/CHANGELOG.md +++ b/packages/storage/amplify_storage_s3_android/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) +- chore: bump amplify-android version to 1.35.3 (#1586) +- chore: downgrade amplify-android to 1.33.0 (#1591) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/storage/amplify_storage_s3_android/pubspec.yaml b/packages/storage/amplify_storage_s3_android/pubspec.yaml index 4ec1576e25..d725f34517 100644 --- a/packages/storage/amplify_storage_s3_android/pubspec.yaml +++ b/packages/storage/amplify_storage_s3_android/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_s3_android description: The method channel implementation for amplify_storage_s3 on Android -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_s3_android environment: diff --git a/packages/storage/amplify_storage_s3_ios/CHANGELOG.md b/packages/storage/amplify_storage_s3_ios/CHANGELOG.md index 3483ac5db4..834f7d9cf8 100644 --- a/packages/storage/amplify_storage_s3_ios/CHANGELOG.md +++ b/packages/storage/amplify_storage_s3_ios/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.5.0 (2022-05-17) + +### Chores + +- chore: make example Android Apps runnable with API 32+ (#1474) +- chore: update android compileSdkVersion to 31 +- chore: upgrade gradle plugin to 7.1.2 +- chore: enable android codebase linter checks +- chore: replace 0.4.2-1 with 0.4.3 due to melos limitation (#1496) +- chore: Lint fixes (#1471) +- chore: Flutter 3 fixes (#1580) + ## 0.4.5 (2022-04-13) -fix: bumps ios version and bumps api AuthProvider timeout (#1526) diff --git a/packages/storage/amplify_storage_s3_ios/pubspec.yaml b/packages/storage/amplify_storage_s3_ios/pubspec.yaml index 3159a6b555..a968243646 100644 --- a/packages/storage/amplify_storage_s3_ios/pubspec.yaml +++ b/packages/storage/amplify_storage_s3_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: amplify_storage_s3_ios description: The method channel implementation for amplify_storage_s3 on iOS -version: 0.4.5 +version: 0.5.0 homepage: https://github.com/aws-amplify/amplify-flutter/tree/main/packages/storage/amplify_storage_s3_ios environment: