Skip to content

Commit f0659b4

Browse files
author
AWS
committed
AWS SDK for Android 2.12.1
1 parent 35b275f commit f0659b4

File tree

202 files changed

+23352
-510
lines changed

Some content is hidden

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

202 files changed

+23352
-510
lines changed

.circleci/config.yml

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@ commands:
1717
circleci step halt
1818
fi
1919
20-
generate_gradle_wrapper:
21-
description: >-
22-
Downloads and install gradle 4.10.2
23-
steps:
24-
- run:
25-
name: Download gradle zip
26-
command: |
27-
cd ~
28-
wget https://services.gradle.org/distributions/gradle-4.10.2-bin.zip
29-
unzip gradle-4.10.2-bin.zip
30-
- run:
31-
name: Generate wrapper
32-
command: |
33-
cd ~/code # This is a pre-defined location
34-
~/gradle-4.10.2/bin/gradle wrapper
35-
3620
configure_aws:
3721
description: >-
3822
install aws cli and configure android aws release profile
@@ -164,11 +148,9 @@ jobs:
164148
JVM_OPTS: -Xmx3200m
165149
steps:
166150
- checkout
167-
- generate_gradle_wrapper
168151
- run:
169152
name: build the whole project
170-
command: |
171-
bash gradlew build -x test
153+
command: bash gradlew build -x test
172154
- run:
173155
name: copy libs
174156
command: |
@@ -187,7 +169,6 @@ jobs:
187169
JVM_OPTS: -Xmx1024m
188170
steps:
189171
- checkout
190-
- generate_gradle_wrapper
191172
- run:
192173
name: run unit tests
193174
command: |
@@ -462,7 +443,6 @@ jobs:
462443
- run:
463444
name: run integration tests
464445
command: |
465-
aws s3 cp s3://android-circleci-payload/gradle-wrapper.jar gradle/wrapper/gradle-wrapper.jar
466446
echo "${ANDROID_TESTS_CREDENTIALS_JSON}" | base64 -di > awsconfiguration.json
467447
python3 CircleciScripts/run_integrationtest.py "~/test_results" "$(pwd)" "$(pwd)/awsconfiguration.json"
468448
- run:
@@ -475,7 +455,7 @@ jobs:
475455
else
476456
echo "There are test failures"
477457
exit 1
478-
fi
458+
fi
479459
- store_artifacts:
480460
path: "~/test_results"
481461
uitest:
@@ -513,7 +493,6 @@ jobs:
513493
name: run sample ui test
514494
command: |
515495
cd aws-sdk-android-samples/S3TransferUtilitySample
516-
aws s3 cp s3://android-circleci-payload/gradle-wrapper.jar gradle/wrapper/gradle-wrapper.jar
517496
bash gradlew connectedAndroidTest
518497
- store_artifacts:
519498
path: "aws-sdk-android-samples/S3TransferUtilitySample/build/outputs"

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ about: Create a report to help us improve
88
A clear and concise description of what the bug is.
99

1010
**To Reproduce**
11-
A code sample or steps:
12-
```
13-
Your code
14-
```
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
1516

1617
**Which AWS service(s) are affected?**
1718

@@ -21,11 +22,13 @@ A clear and concise description of what you expected to happen.
2122
**Screenshots**
2223
If applicable, add screenshots to help explain your problem.
2324

24-
**Environment Information (please complete the following information):**
25-
- AWS Android SDK Version: [e.g. 2.6.25]
25+
**Environment(please complete the following information):**
26+
- SDK Version: [e.g. 2.6.25]
27+
28+
**Device Information (please complete the following information):**
2629
- Device: [e.g. Pixel XL, Simulator]
2730
- Android Version: [e.g. Nougat 7.1.2]
28-
- Specific to simulators: [e.g. Yes/No]
31+
- Specific to simulators:
2932

3033
**Additional context**
3134
Add any other context about the problem here.

CHANGELOG.md

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

3+
## [Release 2.12.1](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.12.1)
4+
5+
### Bug Fixes
6+
7+
* **AWS Mobile Client**
8+
* Fixed a bug that cause `changePassword(String, String, Callback)` to return error when successful. The error returned was null and will now call `onResult(Void)`
9+
10+
### Enhancements
11+
12+
* **Amazon Cognito Identity Provider**
13+
* The Amazon Cognito Identity Provider SDK now supports all Amazon Cognito Identity Provider APIs, including "CreateUserPool", "DescribeUserPool", "UpdateUserPool", "ListUserPools", "AdminEnableUser", "AdminDisableUser", "AdminConfirmRegisterUser", "AdminResetUserPassword", "AdminGetUser", "AdminUpdateUserAttributes", "AdminDeleteUserAttributes", "AdminDeleteUser". All admin APIs require developer credentials. Note that by using admin APIs, you are inherently dealing with privileged functions that could result in data loss, if improperly used.
14+
* Fixed `initiateUserAuthentication()` to respect `runInBackground` flag for network calls. See [pr #702](https://github.com/aws-amplify/aws-sdk-android/pull/702)
15+
16+
* **AWS Core Runtime**
17+
* Add templated callback structure for async methods across SDKs. Internal `ReturningRunnable` added to facilitate support for synchronous and asynchronous methods.
18+
19+
### Misc. Updates
20+
21+
* Model updates for the following services
22+
* AWS IoT
23+
* Amazon Lambda
24+
325
## [Release 2.12.0](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.12.0)
426

527
### Enhancements

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.12.0</version>
15+
<version>2.12.1</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.12.0</version>
23+
<version>2.12.1</version>
2424
</dependency>
2525
</dependencies>
2626

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.12.0</version>
24+
<version>2.12.1</version>
2525
</parent>
2626

2727
<dependencies>
2828
<dependency>
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.12.0</version>
32+
<version>2.12.1</version>
3333
</dependency>
3434

3535
<dependency>

aws-android-sdk-auth-facebook/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.12.0</version>
24+
<version>2.12.1</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,7 +36,7 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.12.0</version>
39+
<version>2.12.1</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>

aws-android-sdk-auth-google/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.12.0</version>
24+
<version>2.12.1</version>
2525
</parent>
2626

2727
<repositories>
@@ -40,7 +40,7 @@
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-android-sdk-auth-core</artifactId>
4242
<optional>false</optional>
43-
<version>2.12.0</version>
43+
<version>2.12.1</version>
4444
<type>aar</type>
4545
</dependency>
4646

aws-android-sdk-auth-ui/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.12.0</version>
24+
<version>2.12.1</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,28 +36,28 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.12.0</version>
39+
<version>2.12.1</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-android-sdk-auth-google</artifactId>
4545
<optional>true</optional>
46-
<version>2.12.0</version>
46+
<version>2.12.1</version>
4747
<type>aar</type>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-android-sdk-auth-facebook</artifactId>
5252
<optional>true</optional>
53-
<version>2.12.0</version>
53+
<version>2.12.1</version>
5454
<type>aar</type>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.amazonaws</groupId>
5858
<artifactId>aws-android-sdk-auth-userpools</artifactId>
5959
<optional>true</optional>
60-
<version>2.12.0</version>
60+
<version>2.12.1</version>
6161
<type>aar</type>
6262
</dependency>
6363
<dependency>

aws-android-sdk-auth-userpools/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.12.0</version>
24+
<version>2.12.1</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,14 +36,14 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-cognitoidentityprovider</artifactId>
3838
<optional>false</optional>
39-
<version>2.12.0</version>
39+
<version>2.12.1</version>
4040
</dependency>
4141

4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-android-sdk-auth-core</artifactId>
4545
<optional>false</optional>
46-
<version>2.12.0</version>
46+
<version>2.12.1</version>
4747
<type>aar</type>
4848
</dependency>
4949

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.12.0</version>
15+
<version>2.12.1</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.12.0</version>
23+
<version>2.12.1</version>
2424
</dependency>
2525
</dependencies>
2626

0 commit comments

Comments
 (0)