diff --git a/README.md b/README.md index ce61ab6b..15607794 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.0.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.0) | [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.1.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.1.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.1.2](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_liveness_v1.1.2) | [Docs](https://ui.docs.amplify.aws/android/connected-components/liveness) | [Sample](samples/liveness/) | ## Supported Versions | Component | Version | Amplify | Material3 | | --- |---------|---------|-----------| -| Authenticator | 1.0.2 | 2.14.5+ | 1.1.2 | +| Authenticator | 1.1.0 | 2.14.10+ | 1.1.2 | | Liveness | 1.2.1 | 2.14.8+ | 1.1.2 | ## Getting Started diff --git a/authenticator/CHANGELOG.md b/authenticator/CHANGELOG.md index a51d5a57..3e077cc3 100644 --- a/authenticator/CHANGELOG.md +++ b/authenticator/CHANGELOG.md @@ -1,3 +1,17 @@ +## [Release 1.1.0](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.1.0) + +## Important! +* New strings added (update translations): "amplify_ui_authenticator_button_copy_key", "amplify_ui_authenticator_enter_totp_code", "amplify_ui_authenticator_step1_title", "amplify_ui_authenticator_step1_content", "amplify_ui_authenticator_step2_title", "amplify_ui_authenticator_step2_content", "amplify_ui_authenticator_step3_title", "amplify_ui_authenticator_step3_content", "amplify_ui_authenticator_mfa_sms", "amplify_ui_authenticator_mfa_totp", "amplify_ui_authenticator_title_signin_confirm_totp", "amplify_ui_authenticator_title_signin_continue_totp_setup", "amplify_ui_authenticator_title_signin_continue_mfa_select" + +### Features +- **authenticator:** Add support for TOTP to Authenticator ([#114](https://github.com/aws-amplify/amplify-ui-android/pull/114)) + +### Fixes +- **authenticator:** Don't use viewModelScope from the state holder ([#83](https://github.com/aws-amplify/amplify-ui-android/pull/83)) +- **authenticator:** Improve error messaging if auth configuration is invalid/incomplete ([#112](https://github.com/aws-amplify/amplify-ui-android/pull/112)) + +[See all changes between 1.0.2 and 1.1.0](https://github.com/aws-amplify/amplify-ui-android/compare/release_authenticator_v1.0.2...release_authenticator_v1.1.0) + ## [Release 1.0.2](https://github.com/aws-amplify/amplify-ui-android/releases/tag/release_authenticator_v1.0.2) ## Miscellaneous diff --git a/authenticator/README.md b/authenticator/README.md index a14f0276..6c30f21c 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.0.2") + implementation("com.amplifyframework.ui:authenticator:1.1.0") } ``` diff --git a/authenticator/gradle.properties b/authenticator/gradle.properties index 667bcbe0..85cc44ca 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.0.2 +VERSION_NAME=1.1.0 diff --git a/samples/authenticator/build.gradle b/samples/authenticator/build.gradle index 819cf001..4f77be90 100644 --- a/samples/authenticator/build.gradle +++ b/samples/authenticator/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { compose_version = '1.5.4' - authenticatorVersion = '1.0.2' + authenticatorVersion = '1.1.0' } repositories { google()