From 92e9ff7dff1cdb191b16c8e52710cc731df04c08 Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Thu, 4 Jan 2024 11:12:03 -0800 Subject: [PATCH] [v1.19.0] Supports 32bit VSOCK ports (#528) Co-authored-by: GitHub Actions --- README.md | 6 +++--- documents/ANDROID.md | 12 ++++++------ samples/Android/app/build.gradle | 2 +- samples/BasicConnect/pom.xml | 2 +- samples/BasicPubSub/pom.xml | 2 +- samples/CognitoConnect/pom.xml | 2 +- samples/CustomAuthorizerConnect/pom.xml | 2 +- samples/CustomKeyOpsConnect/pom.xml | 2 +- samples/FleetProvisioning/pom.xml | 2 +- samples/Greengrass/pom.xml | 2 +- samples/GreengrassIPC/pom.xml | 2 +- samples/JavaKeystoreConnect/pom.xml | 2 +- samples/Jobs/pom.xml | 2 +- samples/Mqtt5/PubSub/pom.xml | 2 +- samples/Mqtt5/SharedSubscription/pom.xml | 2 +- samples/Pkcs11Connect/pom.xml | 2 +- samples/Pkcs12Connect/pom.xml | 2 +- samples/Shadow/pom.xml | 2 +- samples/WebsocketConnect/pom.xml | 2 +- samples/WindowsCertConnect/pom.xml | 2 +- samples/X509CredentialsProviderConnect/pom.xml | 2 +- 21 files changed, 28 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index 8f917931..872e886e 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 ``` -Replace `1.18.1` in `1.18.1` with the latest release version for the SDK. +Replace `1.19.0` in `1.19.0` with the latest release version for the SDK. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases ### Build IoT Device SDK from source @@ -94,4 +94,4 @@ is provided by code that been generated from a model of the service. This library is licensed under the [Apache 2.0 License](./documents/LICENSE). -Latest released version: v1.18.1 +Latest released version: v1.19.0 diff --git a/documents/ANDROID.md b/documents/ANDROID.md index e84d69a8..01ba18b5 100644 --- a/documents/ANDROID.md +++ b/documents/ANDROID.md @@ -47,8 +47,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend mkdir sdk-workspace cd sdk-workspace # Clone the SDK repository -# (Use the latest version of the SDK here instead of `v1.18.1`) -git clone --branch v1.18.1 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git +# (Use the latest version of the SDK here instead of `v1.19.0`) +git clone --branch v1.19.0 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git # Compile and install the SDK for Android cd aws-iot-device-sdk-java-v2/android ./gradlew build @@ -69,10 +69,10 @@ repositories { } dependencies { - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0' } ``` -Replace `1.18.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1` with the latest release version for the SDK. +Replace `1.19.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0` with the latest release version for the SDK. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases ### Consuming from locally installed @@ -84,10 +84,10 @@ repositories { } dependencies { - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0' } ``` -Replace `1.18.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1` with the latest release version for the SDK +Replace `1.19.0` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0` with the latest release version for the SDK or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases diff --git a/samples/Android/app/build.gradle b/samples/Android/app/build.gradle index 1cc3fc3a..9867a16d 100644 --- a/samples/Android/app/build.gradle +++ b/samples/Android/app/build.gradle @@ -61,7 +61,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.18.1' + api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.19.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.core:core:1.2.0' diff --git a/samples/BasicConnect/pom.xml b/samples/BasicConnect/pom.xml index 74cede6e..3d462d06 100644 --- a/samples/BasicConnect/pom.xml +++ b/samples/BasicConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/BasicPubSub/pom.xml b/samples/BasicPubSub/pom.xml index 935606ea..b14ab06e 100644 --- a/samples/BasicPubSub/pom.xml +++ b/samples/BasicPubSub/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/CognitoConnect/pom.xml b/samples/CognitoConnect/pom.xml index e15e558b..17a3d30b 100644 --- a/samples/CognitoConnect/pom.xml +++ b/samples/CognitoConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/CustomAuthorizerConnect/pom.xml b/samples/CustomAuthorizerConnect/pom.xml index c5a71f1c..9a066088 100644 --- a/samples/CustomAuthorizerConnect/pom.xml +++ b/samples/CustomAuthorizerConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/CustomKeyOpsConnect/pom.xml b/samples/CustomKeyOpsConnect/pom.xml index ebc025b1..cb970e92 100644 --- a/samples/CustomKeyOpsConnect/pom.xml +++ b/samples/CustomKeyOpsConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/FleetProvisioning/pom.xml b/samples/FleetProvisioning/pom.xml index ebc39410..05ff040e 100644 --- a/samples/FleetProvisioning/pom.xml +++ b/samples/FleetProvisioning/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Greengrass/pom.xml b/samples/Greengrass/pom.xml index 8877bbfb..c69d2709 100644 --- a/samples/Greengrass/pom.xml +++ b/samples/Greengrass/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/GreengrassIPC/pom.xml b/samples/GreengrassIPC/pom.xml index ea855c87..c87b5a81 100644 --- a/samples/GreengrassIPC/pom.xml +++ b/samples/GreengrassIPC/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/JavaKeystoreConnect/pom.xml b/samples/JavaKeystoreConnect/pom.xml index e2455293..f6c47208 100644 --- a/samples/JavaKeystoreConnect/pom.xml +++ b/samples/JavaKeystoreConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Jobs/pom.xml b/samples/Jobs/pom.xml index 7b6cd3ee..19950741 100644 --- a/samples/Jobs/pom.xml +++ b/samples/Jobs/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Mqtt5/PubSub/pom.xml b/samples/Mqtt5/PubSub/pom.xml index a3814bd0..6f78c21f 100644 --- a/samples/Mqtt5/PubSub/pom.xml +++ b/samples/Mqtt5/PubSub/pom.xml @@ -27,7 +27,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Mqtt5/SharedSubscription/pom.xml b/samples/Mqtt5/SharedSubscription/pom.xml index 5bfd303c..64298e97 100644 --- a/samples/Mqtt5/SharedSubscription/pom.xml +++ b/samples/Mqtt5/SharedSubscription/pom.xml @@ -27,7 +27,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Pkcs11Connect/pom.xml b/samples/Pkcs11Connect/pom.xml index f82e6132..220c9c9d 100644 --- a/samples/Pkcs11Connect/pom.xml +++ b/samples/Pkcs11Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Pkcs12Connect/pom.xml b/samples/Pkcs12Connect/pom.xml index a4bdcb8b..7e55a6ef 100644 --- a/samples/Pkcs12Connect/pom.xml +++ b/samples/Pkcs12Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/Shadow/pom.xml b/samples/Shadow/pom.xml index f1df0f7d..fe73a824 100644 --- a/samples/Shadow/pom.xml +++ b/samples/Shadow/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/WebsocketConnect/pom.xml b/samples/WebsocketConnect/pom.xml index b4575e3a..fb7598b9 100644 --- a/samples/WebsocketConnect/pom.xml +++ b/samples/WebsocketConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/WindowsCertConnect/pom.xml b/samples/WindowsCertConnect/pom.xml index e9a6a550..5478616f 100644 --- a/samples/WindowsCertConnect/pom.xml +++ b/samples/WindowsCertConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0 diff --git a/samples/X509CredentialsProviderConnect/pom.xml b/samples/X509CredentialsProviderConnect/pom.xml index 8bac989f..25d5d7fc 100644 --- a/samples/X509CredentialsProviderConnect/pom.xml +++ b/samples/X509CredentialsProviderConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.18.1 + 1.19.0