Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Amplify Android 2.14.2 #2619

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rxbindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down