Skip to content

Commit 3983fda

Browse files
author
AWS
committed
AWS SDK for Android 2.4.3
1 parent c8741d4 commit 3983fda

File tree

183 files changed

+9330
-828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+9330
-828
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.4.3](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.4.3)
4+
5+
### Improvements:
6+
- **AWS IoT**
7+
- Update API to latest spec.
8+
9+
- **Amazon Polly**
10+
- Added support for new voice id - `Vicki`.
11+
12+
- **Amazon Pinpoint**
13+
- Update logging to be more restrictive.
14+
- Added support for app-level opt-out.
15+
16+
### Bug Fixes:
17+
- **All Services**
18+
- Fixed an issue where endpoint URLs were incorrectly set after using `setRegion.`. See [issue #290](https://github.com/aws/aws-sdk-android/issues/290)
19+
- **Amazon S3**
20+
- Fixed bug which caused gradle build error on commons-io. See [issue #282](https://github.com/aws/aws-sdk-android/issues/282)
21+
- Fixed NPE error while resuming transfers using `TransferUtility`. See [issue #299](https://github.com/aws/aws-sdk-android/issues/299)
22+
- Fixed `TransferUtility` observer progress tracking bug. See [issue #257](https://github.com/aws/aws-sdk-android/issues/257)
23+
324
## [Release 2.4.2](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.4.2)
425

526
### Improvements:

Proguard.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ When exporting your app using the AWS SDK for Android with the default, empty _p
77
```
88
# Class names are needed in reflection
99
-keepnames class com.amazonaws.**
10-
-keepnames class com.amazon.**
1110
# Request handlers defined in request.handlers
1211
-keep class com.amazonaws.services.**.*Handler
1312
# The following are referenced but aren't required to run

aws-android-sdk-apigateway-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.4.2</version>
15+
<version>2.4.3</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.4.2</version>
23+
<version>2.4.3</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-autoscaling/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.4.2</version>
15+
<version>2.4.3</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.4.2</version>
23+
<version>2.4.3</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-autoscaling/src/main/java/com/amazonaws/services/autoscaling/AmazonAutoScalingClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ private void init() {
273273

274274
// calling this.setEndPoint(...) will also modify the signer accordingly
275275
this.setEndpoint("autoscaling.amazonaws.com");
276+
this.endpointPrefix = "autoscaling";
276277

277278
HandlerChainFactory chainFactory = new HandlerChainFactory();
278279
requestHandler2s.addAll(chainFactory.newRequestHandlerChain(

aws-android-sdk-cloudwatch/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.4.2</version>
15+
<version>2.4.3</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.4.2</version>
23+
<version>2.4.3</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-cloudwatch/src/main/java/com/amazonaws/services/cloudwatch/AmazonCloudWatchClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ private void init() {
288288

289289
// calling this.setEndPoint(...) will also modify the signer accordingly
290290
this.setEndpoint("monitoring.us-east-1.amazonaws.com");
291+
this.endpointPrefix = "monitoring";
291292

292293
HandlerChainFactory chainFactory = new HandlerChainFactory();
293294
requestHandler2s.addAll(chainFactory.newRequestHandlerChain(

aws-android-sdk-cognito/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<artifactId>aws-android-sdk-cognito</artifactId>
77
<packaging>jar</packaging>
88
<name>AWS SDK for Android - Amazon Cognito Sync</name>
9-
<version>2.4.2</version>
9+
<version>2.4.3</version>
1010
<description>The AWS Android SDK for Amazon Cognito Sync module holds the client classes that are used for communicating with Amazon Cognito Sync Service</description>
1111
<url>http://aws.amazon.com/sdkforandroid</url>
1212

1313
<parent>
1414
<groupId>com.amazonaws</groupId>
1515
<artifactId>aws-android-sdk-pom</artifactId>
16-
<version>2.4.2</version>
16+
<version>2.4.3</version>
1717
</parent>
1818

1919
<licenses>
@@ -29,7 +29,7 @@
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.4.2</version>
32+
<version>2.4.3</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.google.android</groupId>

aws-android-sdk-cognito/src/main/java/com/amazonaws/services/cognitosync/AmazonCognitoSyncClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ private void init() {
297297

298298
// calling this.setEndPoint(...) will also modify the signer accordingly
299299
this.setEndpoint("cognito-sync.us-east-1.amazonaws.com");
300+
this.endpointPrefix = "cognito-sync";
300301

301302
HandlerChainFactory chainFactory = new HandlerChainFactory();
302303
requestHandler2s.addAll(chainFactory.newRequestHandlerChain(
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.4.2
2+
fabric-version=2.4.3
33
fabric-build-type=binary

0 commit comments

Comments
 (0)