From f6508d8608c04db94312876ca7e46216514ed93c Mon Sep 17 00:00:00 2001 From: Thomas Leing Date: Mon, 19 Dec 2022 17:57:37 -0500 Subject: [PATCH] release: Amplify Android 2.1.0 (manually created) (#2185) Co-authored-by: Thomas Leing --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ README.md | 12 ++++++------ gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 41 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d95ab64c52..c2349b7c43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +## [Release 2.1.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.1.0) + +### Features +- feat(Geo): Add Kotlin Geo Facade (#2155) +- Add a network status listener to restart DataStore after the network comes back online. (#2148) + +### Miscellaneous +- chore: Remove deprecated maven plugin (#2137) +- chore: Remove Javadoc tasks (#2139) +- Update README.md (#2120) +- Dengdan stress test (#2153) +- Feat(Auth Test): Custom party testing for Custom Test without SRP (#2149) +- Unignore storage and pinpoint tests (#2156) +- Update DeviceFarm build config (#2168) +- Add Geo Rx Bindings (#2159) +- chore: Re-add storage tests (#2163) +- chore: Upgrade Gradle, AGP, and KtLint (#2172) +- Add a buildspec file for nightly tests (#2180) +- Chore(Auth): Implementation of the custom auth with SRP parity testing use case (#2167) + +### Bug fixes +- fix(core): remove unused dynamic nav dependency (#2132) +- fix(datastore): remove typename from ModelMetadata (#2122) +- fix: Change order of updating state in local cache (#2141) +- fix: fix integration test and added logger to integration test (#2143) +- Fix for when move to idle state is called twice (#2152) +- Fix(Auth): Sign up if successful should return DONE instead of Confirm sign up (#2130) +- fix: Add missing apis in storage Kotlin & RxJava facade (#2160) +- fix: user metadata was persisted empty in the database (#2165) +- fix(geo): Increase Geo timeout so that it runs successfully on a Pixel 3a XL (#2177) + +[See all changes between 2.1.0 and 2.0.0](https://github.com/aws-amplify/amplify-android/compare/release_v2.0.0...release_v2.1.0) + ## [Release 2.0.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.0.0) ###Breaking Changes diff --git a/README.md b/README.md index e6cef8f068..b96683ba22 100644 --- a/README.md +++ b/README.md @@ -69,12 +69,12 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:2.0.0' - implementation 'com.amplifyframework:aws-api:2.0.0' - implementation 'com.amplifyframework:aws-auth-cognito:2.0.0' - implementation 'com.amplifyframework:aws-datastore:2.0.0' - implementation 'com.amplifyframework:aws-predictions:2.0.0' - implementation 'com.amplifyframework:aws-storage-s3:2.0.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.1.0' + implementation 'com.amplifyframework:aws-api:2.1.0' + implementation 'com.amplifyframework:aws-auth-cognito:2.1.0' + implementation 'com.amplifyframework:aws-datastore:2.1.0' + implementation 'com.amplifyframework:aws-predictions:2.1.0' + implementation 'com.amplifyframework:aws-storage-s3:2.1.0' } ``` diff --git a/gradle.properties b/gradle.properties index 4e88c028e0..1bf935cfed 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.0.0 +VERSION_NAME=2.1.0 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index f4142ee48e..fbf53809a5 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.0.0' + implementation 'com.amplifyframework:rxbindings:2.1.0' } ```