Skip to content

Commit fa7531a

Browse files
[v1.25.0] Request Response Clients and Async Cognito Support (#619)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 0034ebf commit fa7531a

File tree

27 files changed

+34
-34
lines changed

27 files changed

+34
-34
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
3939
<dependency>
4040
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
4141
<artifactId>aws-iot-device-sdk</artifactId>
42-
<version>1.24.0</version>
42+
<version>1.25.0</version>
4343
</dependency>
4444
```
4545

46-
Replace `1.24.0` in `<version>1.24.0</version>` with the latest release version for the SDK.
46+
Replace `1.25.0` in `<version>1.25.0</version>` with the latest release version for the SDK.
4747
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
4848

4949
### Build IoT Device SDK from source
@@ -104,4 +104,4 @@ is provided by code that been generated from a model of the service.
104104

105105
This library is licensed under the [Apache 2.0 License](./documents/LICENSE).
106106

107-
Latest released version: v1.24.0
107+
Latest released version: v1.25.0

documents/ANDROID.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ a dependency of the aws-iot-device-sdk-android library.
5252
mkdir sdk-workspace
5353
cd sdk-workspace
5454
# Clone the SDK repository
55-
# (Use the latest version of the SDK here instead of `v1.24.0`)
56-
git clone --branch v1.24.0 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
55+
# (Use the latest version of the SDK here instead of `v1.25.0`)
56+
git clone --branch v1.25.0 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
5757
# Compile and install the SDK for Android
5858
cd aws-iot-device-sdk-java-v2/android
5959
./gradlew build
@@ -74,10 +74,10 @@ repositories {
7474
}
7575
7676
dependencies {
77-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.24.0'
77+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.25.0'
7878
}
7979
```
80-
Replace `1.24.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.24.0` with the latest release version for the SDK.
80+
Replace `1.25.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.25.0` with the latest release version for the SDK.
8181
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
8282

8383
### Consuming from locally installed
@@ -89,10 +89,10 @@ repositories {
8989
}
9090
9191
dependencies {
92-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.24.0'
92+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.25.0'
9393
}
9494
```
95-
Replace `1.24.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.24.0` with the latest release version for the SDK
95+
Replace `1.25.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.25.0` with the latest release version for the SDK
9696
or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source.
9797
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
9898

samples/Android/AndroidKeyChainPubSub/src/main/java/androidkeychainpubsub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ android {
5959

6060
dependencies {
6161
implementation fileTree(dir: 'libs', include: ['*.jar'])
62-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.24.0'
62+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.25.0'
6363
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
6464
implementation 'androidx.appcompat:appcompat:1.1.0'
6565
implementation 'androidx.core:core:1.2.0'

samples/BasicConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/BasicPubSub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CognitoConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomAuthorizerConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomKeyOpsConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Greengrass/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/GreengrassIPC/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/JavaKeystoreConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/JobsSandbox/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
3939
<artifactId>aws-iot-device-sdk</artifactId>
40-
<version>1.24.0</version>
40+
<version>1.25.0</version>
4141
</dependency>
4242
</dependencies>
4343
</profile>

samples/Mqtt5/PubSub/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Mqtt5/SharedSubscription/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Pkcs11Connect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Pkcs12Connect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Provisioning/Basic/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/Provisioning/Csr/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/ShadowSandbox/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/ShadowV2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.24.0</version>
30+
<version>1.25.0</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

samples/WebsocketConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/WindowsCertConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/X509CredentialsProviderConnect/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/deprecated/FleetProvisioning/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/deprecated/Jobs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/deprecated/Shadow/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.24.0</version>
23+
<version>1.25.0</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)