Skip to content

release: Amplify Android 2.3.0 #2323

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

Merged
merged 1 commit into from
Mar 8, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [Release 2.3.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.3.0)

### Features
- **storage:** Add support for S3 acceleration mode ([#2304](https://github.com/aws-amplify/amplify-android/issues/2304))
- **aws-datastore:** Make the reachability component configurable ([#2307](https://github.com/aws-amplify/amplify-android/issues/2307))

### Bug Fixes
- **datastore:** Fix aliasing of column names ([#2312](https://github.com/aws-amplify/amplify-android/issues/2312))

[See all changes between 2.2.2 and 2.3.0](https://github.com/aws-amplify/amplify-android/compare/release_v2.2.2...release_v2.3.0)

## [Release 2.2.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.2.2)

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.2'
implementation 'com.amplifyframework:aws-api:2.2.2'
implementation 'com.amplifyframework:aws-auth-cognito:2.2.2'
implementation 'com.amplifyframework:aws-datastore:2.2.2'
implementation 'com.amplifyframework:aws-predictions:2.2.2'
implementation 'com.amplifyframework:aws-storage-s3:2.2.2'
implementation 'com.amplifyframework:aws-analytics-pinpoint:2.3.0'
implementation 'com.amplifyframework:aws-api:2.3.0'
implementation 'com.amplifyframework:aws-auth-cognito:2.3.0'
implementation 'com.amplifyframework:aws-datastore:2.3.0'
implementation 'com.amplifyframework:aws-predictions:2.3.0'
implementation 'com.amplifyframework:aws-storage-s3:2.3.0'
}
```

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.2.2
VERSION_NAME=2.3.0

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.2.2'
implementation 'com.amplifyframework:rxbindings:2.3.0'
}
```

Expand Down