Skip to content

Commit 8cc3494

Browse files
authored
release v2.19.4 (#2283)
* release v2.19.4 * update changelog
1 parent 4353a2d commit 8cc3494

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change Log - AWS SDK for Android
22

3+
## [Release 2.19.4](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.19.4)
4+
5+
### New Features
6+
7+
- **Amazon DynamoDB**
8+
- Added `keyConditionExpression` to `DynamoDBQueryExpression` class. See [PR #2280](https://github.com/aws-amplify/aws-sdk-android/pull/2280).
9+
10+
- **Amazon Cognito Identity Provider**
11+
- Fixed bug where client was sending invalid secret hash during `NewPasswordContinuation` flow. See [PR #2265](https://github.com/aws-amplify/aws-sdk-android/pull/2265).
12+
- Reduced default threshold for refresh tokens from 5 minutes to 2 minutes. See [Issue #2232](https://github.com/aws-amplify/aws-sdk-android/issues/2232).
13+
14+
### Model updates
15+
- Amazon Cognito Identity Provider
16+
- Amazon Connect
17+
- Amazon Comprehend
18+
- Amazon Translate
19+
- AWS IoT
20+
- AWS Lambda
21+
22+
### Misc.
23+
- Removed Apache Commons Logging dependency
324

425
## [Release 2.19.3](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.19.3)
526

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fabric-identifier=com.amazonaws.aws-android-sdk-cognito
2-
fabric-version=2.19.2
2+
fabric-version=2.19.4
33
fabric-build-type=binary

aws-android-sdk-core/src/main/java/com/amazonaws/util/VersionInfoUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class VersionInfoUtils {
2626
private static final int DEFAULT_STRING_LENGTH = 128;
2727

2828
/** SDK version info */
29-
private static volatile String version = "2.19.2";
29+
private static volatile String version = "2.19.4";
3030
// changed build
3131
// logic
3232

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fabric-identifier=com.amazonaws.aws-android-sdk-core
2-
fabric-version=2.19.2
2+
fabric-version=2.19.4
33
fabric-build-type=binary

aws-android-sdk-core/src/test/java/com/amazonaws/util/VersionInfoUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class VersionInfoUtilsTest {
2424

2525
@Test
2626
public void getVersion() {
27-
assertEquals("2.19.2", VersionInfoUtils.getVersion());
27+
assertEquals("2.19.4", VersionInfoUtils.getVersion());
2828
}
2929

3030
@Test

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android.useAndroidX=true
2525
android.enableJetifier=true
2626

2727
GROUP=com.amazonaws
28-
VERSION_NAME=2.19.3
29-
VERSION_CODE=21903
28+
VERSION_NAME=2.19.4
29+
VERSION_CODE=21904
3030

3131
POM_URL=https://github.com/aws/aws-sdk-android
3232
POM_SCM_URL=https://github.com/aws/aws-sdk-android

0 commit comments

Comments
 (0)