From 60e3032ef54d57307b9a96d3215bd69c1125b03f Mon Sep 17 00:00:00 2001 From: amplify-android-dev+ghops Date: Fri, 17 Oct 2025 13:42:01 +0000 Subject: [PATCH] release: Amplify Android 2.30.2 --- CHANGELOG.md | 8 ++++++++ README.md | 16 ++++++++-------- gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1473e2a0..864ae49bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [Release 2.30.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.30.2) + +### Bug Fixes +- **auth:** Fix losing session identifier when incorrect otp code is entered during confirm sign up ([#3136](https://github.com/aws-amplify/amplify-android/issues/3136)) +- **auth:** Add missing state transitions for AutoSignIn state ([#3138](https://github.com/aws-amplify/amplify-android/issues/3138)) + +[See all changes between 2.30.1 and 2.30.2](https://github.com/aws-amplify/amplify-android/compare/release_v2.30.1...release_v2.30.2) + ## [Release 2.30.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.30.1) ### Bug Fixes diff --git a/README.md b/README.md index bf47384fc..c64c0c45f 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.30.1' - implementation 'com.amplifyframework:aws-api:2.30.1' - implementation 'com.amplifyframework:aws-auth-cognito:2.30.1' - implementation 'com.amplifyframework:aws-datastore:2.30.1' - implementation 'com.amplifyframework:aws-predictions:2.30.1' - implementation 'com.amplifyframework:aws-storage-s3:2.30.1' - implementation 'com.amplifyframework:aws-geo-location:2.30.1' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.30.1' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.30.2' + implementation 'com.amplifyframework:aws-api:2.30.2' + implementation 'com.amplifyframework:aws-auth-cognito:2.30.2' + implementation 'com.amplifyframework:aws-datastore:2.30.2' + implementation 'com.amplifyframework:aws-predictions:2.30.2' + implementation 'com.amplifyframework:aws-storage-s3:2.30.2' + implementation 'com.amplifyframework:aws-geo-location:2.30.2' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.30.2' } ``` diff --git a/gradle.properties b/gradle.properties index 55e4f1620..6d31d2b32 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.30.1 +VERSION_NAME=2.30.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 4721f3806..26637e19f 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.30.1' + implementation 'com.amplifyframework:rxbindings:2.30.2' } ```