File tree Expand file tree Collapse file tree 4 files changed +23
-10
lines changed Expand file tree Collapse file tree 4 files changed +23
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## [ Release 2.26.0] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.26.0 )
2
+
3
+ ### Features
4
+ - ** all:** Add ability to use OkHttp4 with Amplify v2.x ([ #2970 ] ( https://github.com/aws-amplify/amplify-android/issues/2970 ) )
5
+
6
+ ### Bug Fixes
7
+ - ** datastore:** base sync when sync expression changes ([ #2937 ] ( https://github.com/aws-amplify/amplify-android/issues/2937 ) )
8
+ - ** auth:** Fallback to in-memory key value storage if encryption fails ([ #2969 ] ( https://github.com/aws-amplify/amplify-android/issues/2969 ) )
9
+ - ** logging:** CloudWatch Plugin 16KB page size support ([ #2919 ] ( https://github.com/aws-amplify/amplify-android/issues/2919 ) )
10
+ - ** storage:** Fix SocketTimeoutException when executing a long multi-part upload ([ #2973 ] ( https://github.com/aws-amplify/amplify-android/issues/2973 ) )
11
+
12
+ [ See all changes between 2.25.1 and 2.26.0] ( https://github.com/aws-amplify/amplify-android/compare/release_v2.25.1...release_v2.26.0 )
13
+
1
14
## [ Release 2.25.1] ( https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.25.1 )
2
15
3
16
### Bug Fixes
Original file line number Diff line number Diff line change @@ -71,14 +71,14 @@ dependencies section:
71
71
``` groovy
72
72
dependencies {
73
73
// Only specify modules that provide functionality your app will use
74
- implementation 'com.amplifyframework:aws-analytics-pinpoint:2.25.1 '
75
- implementation 'com.amplifyframework:aws-api:2.25.1 '
76
- implementation 'com.amplifyframework:aws-auth-cognito:2.25.1 '
77
- implementation 'com.amplifyframework:aws-datastore:2.25.1 '
78
- implementation 'com.amplifyframework:aws-predictions:2.25.1 '
79
- implementation 'com.amplifyframework:aws-storage-s3:2.25.1 '
80
- implementation 'com.amplifyframework:aws-geo-location:2.25.1 '
81
- implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.25.1 '
74
+ implementation 'com.amplifyframework:aws-analytics-pinpoint:2.26.0 '
75
+ implementation 'com.amplifyframework:aws-api:2.26.0 '
76
+ implementation 'com.amplifyframework:aws-auth-cognito:2.26.0 '
77
+ implementation 'com.amplifyframework:aws-datastore:2.26.0 '
78
+ implementation 'com.amplifyframework:aws-predictions:2.26.0 '
79
+ implementation 'com.amplifyframework:aws-storage-s3:2.26.0 '
80
+ implementation 'com.amplifyframework:aws-geo-location:2.26.0 '
81
+ implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.26.0 '
82
82
}
83
83
```
84
84
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g
12
12
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13
13
org.gradle.parallel =true
14
14
15
- VERSION_NAME =2.25.1
15
+ VERSION_NAME =2.26.0
16
16
17
17
POM_GROUP =com.amplifyframework
18
18
POM_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`:
24
24
``` gradle
25
25
dependencies {
26
26
// Add this line.
27
- implementation 'com.amplifyframework:rxbindings:2.25.1 '
27
+ implementation 'com.amplifyframework:rxbindings:2.26.0 '
28
28
}
29
29
```
30
30
You can’t perform that action at this time.
0 commit comments