From e685a9283794aeeb0140fe2fe725cff322d2cd15 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 06:40:23 -0700 Subject: [PATCH] release: Amplify Android 2.14.2 (#2619) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 9 +++++++++ README.md | 16 ++++++++-------- gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 19 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96ded71659..41a5cff6a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [Release 2.14.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.14.2) + +### Bug Fixes +- **auth:** Fix for when alias is used to sign in and deviceKey is stored with the entered username instead of retrieved username ([#2614](https://github.com/aws-amplify/amplify-android/issues/2614)) +- **datastore:** Add Model Class Check in getMutationById() to Prevent Cross-Model Primary Key Collisions ([#2612](https://github.com/aws-amplify/amplify-android/issues/2612)) +- **datastore:** Temporary workaround to stabilize DataStore test. ([#2618](https://github.com/aws-amplify/amplify-android/issues/2618)) + +[See all changes between 2.14.1 and 2.14.2](https://github.com/aws-amplify/amplify-android/compare/release_v2.14.1...release_v2.14.2) + ## [Release 2.14.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.14.1) ### Bug Fixes diff --git a/README.md b/README.md index 86415b3232..e698cbb0fe 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:2.14.1' - implementation 'com.amplifyframework:aws-api:2.14.1' - implementation 'com.amplifyframework:aws-auth-cognito:2.14.1' - implementation 'com.amplifyframework:aws-datastore:2.14.1' - implementation 'com.amplifyframework:aws-predictions:2.14.1' - implementation 'com.amplifyframework:aws-storage-s3:2.14.1' - implementation 'com.amplifyframework:aws-geo-location:2.14.1' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.14.1' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.14.2' + implementation 'com.amplifyframework:aws-api:2.14.2' + implementation 'com.amplifyframework:aws-auth-cognito:2.14.2' + implementation 'com.amplifyframework:aws-datastore:2.14.2' + implementation 'com.amplifyframework:aws-predictions:2.14.2' + implementation 'com.amplifyframework:aws-storage-s3:2.14.2' + implementation 'com.amplifyframework:aws-geo-location:2.14.2' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.14.2' } ``` diff --git a/gradle.properties b/gradle.properties index a4753f7787..3d780d412a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects org.gradle.parallel=true -VERSION_NAME=2.14.1 +VERSION_NAME=2.14.2 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index b40e68c29d..f3a98e90b0 100644 --- a/rxbindings/README.md +++ b/rxbindings/README.md @@ -24,7 +24,7 @@ library. In your module's `build.gradle`: ```gradle dependencies { // Add this line. - implementation 'com.amplifyframework:rxbindings:2.14.1' + implementation 'com.amplifyframework:rxbindings:2.14.2' } ```