File tree Expand file tree Collapse file tree 4 files changed +24
-10
lines changed Expand file tree Collapse file tree 4 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 1+ ## [ Release 2.6.0] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.6.0 )
2+
3+ ### Features
4+ - ** aws-datastore:** Make the Sync Engine pausable/resumable on connectivity changes ([ #2306 ] ( https://github.com/aws-amplify/amplify-android/issues/2306 ) )
5+
6+ ### Bug Fixes
7+ - ** datastore:** Fix MutationProcessorRetryTest ([ #2197 ] ( https://github.com/aws-amplify/amplify-android/issues/2197 ) )
8+ - ** datastore:** Use a UnicastSubject instead of a ReplaySubject ([ #2353 ] ( https://github.com/aws-amplify/amplify-android/issues/2353 ) )
9+ - ** maplibre-adapter:** update MapLibre version ([ #2370 ] ( https://github.com/aws-amplify/amplify-android/issues/2370 ) )
10+ - ** predictions:** null check values returned from service ([ #2377 ] ( https://github.com/aws-amplify/amplify-android/issues/2377 ) )
11+ - ** api:** Use better fallback for list query v2 ([ #2344 ] ( https://github.com/aws-amplify/amplify-android/issues/2344 ) )
12+
13+ [ See all changes between 2.5.0 and 2.6.0] ( https://github.com/aws-amplify/amplify-android/compare/release_v2.5.0...release_v2.6.0 )
14+
115## [ Release 2.5.0] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.5.0 )
216
317### Features
Original file line number Diff line number Diff line change @@ -71,14 +71,14 @@ dependencies section:
7171``` groovy
7272dependencies {
7373 // Only specify modules that provide functionality your app will use
74- implementation 'com.amplifyframework:aws-analytics-pinpoint:2.5 .0'
75- implementation 'com.amplifyframework:aws-api:2.5 .0'
76- implementation 'com.amplifyframework:aws-auth-cognito:2.5 .0'
77- implementation 'com.amplifyframework:aws-datastore:2.5 .0'
78- implementation 'com.amplifyframework:aws-predictions:2.5 .0'
79- implementation 'com.amplifyframework:aws-storage-s3:2.5 .0'
80- implementation 'com.amplifyframework:aws-geo-location:2.5 .0'
81- implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.5 .0'
74+ implementation 'com.amplifyframework:aws-analytics-pinpoint:2.6 .0'
75+ implementation 'com.amplifyframework:aws-api:2.6 .0'
76+ implementation 'com.amplifyframework:aws-auth-cognito:2.6 .0'
77+ implementation 'com.amplifyframework:aws-datastore:2.6 .0'
78+ implementation 'com.amplifyframework:aws-predictions:2.6 .0'
79+ implementation 'com.amplifyframework:aws-storage-s3:2.6 .0'
80+ implementation 'com.amplifyframework:aws-geo-location:2.6 .0'
81+ implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.6 .0'
8282}
8383```
8484
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g
1212# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1313org.gradle.parallel =true
1414
15- VERSION_NAME =2.5 .0
15+ VERSION_NAME =2.6 .0
1616
1717POM_GROUP =com.amplifyframework
1818POM_URL =https://github.com/aws-amplify/amplify-android
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ library. In your module's `build.gradle`:
2424``` gradle
2525dependencies {
2626 // Add this line.
27- implementation 'com.amplifyframework:rxbindings:2.5 .0'
27+ implementation 'com.amplifyframework:rxbindings:2.6 .0'
2828}
2929```
3030
You can’t perform that action at this time.
0 commit comments