From 66b42f4023d0c5d73fda0489bbfd8067642198da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:44:05 -0400 Subject: [PATCH] release: Amplify UI Android Authenticator 1.3.0 (#188) Co-authored-by: amplify-android-dev+ghops --- README.md | 4 ++-- authenticator/CHANGELOG.md | 7 +++++++ authenticator/README.md | 2 +- authenticator/gradle.properties | 2 +- samples/authenticator/build.gradle | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8946e70..b1aafba 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ Amplify UI for Android is an open-source UI library with cloud-connected compone | Component | Summary | Latest Version | Docs | Sample | | --- | --- |------------------------------------------------------------------------------------------------------| --- | --- | -| [Authenticator](authenticator) | Amplify Authenticator provides a complete drop-in implementation of an authentication flow for your application using [Amplify Authentication](https://docs.amplify.aws/lib/auth/getting-started/q/platform/android/). | [1.2.3](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.2.3) | [Docs](https://ui.docs.amplify.aws/android/connected-components/authenticator) | [Sample](samples/authenticator/) | +| [Authenticator](authenticator) | Amplify Authenticator provides a complete drop-in implementation of an authentication flow for your application using [Amplify Authentication](https://docs.amplify.aws/lib/auth/getting-started/q/platform/android/). | [1.3.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.3.0) | [Docs](https://ui.docs.amplify.aws/android/connected-components/authenticator) | [Sample](samples/authenticator/) | | [Face Liveness](liveness) | Amplify FaceLivenessDetector provides a UI component for [Amazon Rekognition Face Liveness](https://aws.amazon.com/rekognition/face-liveness/) feature that helps developers verify that only real users, not bad actors using spoofs, can access your services. | [1.2.6](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_liveness_v1.2.6) | [Docs](https://ui.docs.amplify.aws/android/connected-components/liveness) | [Sample](samples/liveness/) | ## Supported Versions | Component | Version | Amplify | Material3 | | --- |---------|----------|-----------| -| Authenticator | 1.2.3 | 2.16.0+ | 1.1.2 | +| Authenticator | 1.3.0 | 2.16.0+ | 1.1.2 | | Liveness | 1.2.6 | 2.15.1+ | 1.1.2 | ## Getting Started diff --git a/authenticator/CHANGELOG.md b/authenticator/CHANGELOG.md index ac29c26..a245d93 100644 --- a/authenticator/CHANGELOG.md +++ b/authenticator/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 1.3.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.3.0) + +### Features +- **authenticator:** Add default error string for LimitExceededException ([#182](https://github.com/aws-amplify/amplify-ui-android/issues/182)) + +[See all changes between 1.2.3 and 1.3.0](https://github.com/aws-amplify/amplify-ui-android/compare/release_authenticator_v1.2.3...release_authenticator_v1.3.0) + ## [Release 1.2.3](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.2.3) ### Bug Fixes diff --git a/authenticator/README.md b/authenticator/README.md index 665b0b9..ca384c0 100644 --- a/authenticator/README.md +++ b/authenticator/README.md @@ -64,7 +64,7 @@ Add a dependency on Amplify Authenticator to your application's `dependencies` b ```kotlin dependencies { - implementation("com.amplifyframework.ui:authenticator:1.2.3") + implementation("com.amplifyframework.ui:authenticator:1.3.0") } ``` diff --git a/authenticator/gradle.properties b/authenticator/gradle.properties index cef2067..9ee7f3f 100644 --- a/authenticator/gradle.properties +++ b/authenticator/gradle.properties @@ -17,4 +17,4 @@ POM_ARTIFACT_ID=authenticator POM_NAME=Amplify UI Framework for Android - Authenticator POM_DESCRIPTION=Amplify UI Framework for Android - Authenticator Plugin POM_PACKAGING=aar -VERSION_NAME=1.2.3 +VERSION_NAME=1.3.0 diff --git a/samples/authenticator/build.gradle b/samples/authenticator/build.gradle index 3107c99..5b2fe2a 100644 --- a/samples/authenticator/build.gradle +++ b/samples/authenticator/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { compose_version = '1.5.4' - AuthenticatorVersion = '1.2.3' + AuthenticatorVersion = '1.3.0' } repositories { google()