From 30af0de2be5d75fe64e798a4e4309ac5b67e52b9 Mon Sep 17 00:00:00 2001 From: Harsh Gandhi <63674702+HarshGandhi-AWS@users.noreply.github.com> Date: Thu, 19 Aug 2021 15:15:15 -0700 Subject: [PATCH] Updated SDK version to resolve Security vulnerabilities (#161) * Updated SDK version to resolve Security vulnerabilities * update the version of Device Client --- .github/docker-images/amazonlinux/Dockerfile | 2 +- .github/docker-images/ubi8/Dockerfile | 2 +- .github/docker-images/ubuntu-16-x64/Dockerfile | 2 +- .version | 2 +- CMakeLists.txt.awssdk | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/docker-images/amazonlinux/Dockerfile b/.github/docker-images/amazonlinux/Dockerfile index d60378ba..abd5c1d5 100755 --- a/.github/docker-images/amazonlinux/Dockerfile +++ b/.github/docker-images/amazonlinux/Dockerfile @@ -61,7 +61,7 @@ RUN mkdir sdk-cpp-workspace \ && mkdir aws-iot-device-sdk-cpp-v2-build \ && git clone --recursive https://github.com/aws/aws-iot-device-sdk-cpp-v2.git \ && cd aws-iot-device-sdk-cpp-v2 \ - && git checkout ff082900a1c708a1920916d10b92733b5e1a865e \ + && git checkout a73593d1003e2b231c6db53710aa6c75d8196b1f \ && cd ../aws-iot-device-sdk-cpp-v2-build \ && cmake -DCMAKE_INSTALL_PREFIX="/usr" -DUSE_OPENSSL=ON -DBUILD_DEPS=ON ../aws-iot-device-sdk-cpp-v2 \ && cmake --build . --target install diff --git a/.github/docker-images/ubi8/Dockerfile b/.github/docker-images/ubi8/Dockerfile index ec8f968a..bc78d32f 100644 --- a/.github/docker-images/ubi8/Dockerfile +++ b/.github/docker-images/ubi8/Dockerfile @@ -62,7 +62,7 @@ RUN mkdir sdk-cpp-workspace \ && mkdir aws-iot-device-sdk-cpp-v2-build \ && git clone --recursive https://github.com/aws/aws-iot-device-sdk-cpp-v2.git \ && cd aws-iot-device-sdk-cpp-v2 \ - && git checkout ff082900a1c708a1920916d10b92733b5e1a865e \ + && git checkout a73593d1003e2b231c6db53710aa6c75d8196b1f \ && cd ../aws-iot-device-sdk-cpp-v2-build \ && cmake -DCMAKE_INSTALL_PREFIX="/usr" -DUSE_OPENSSL=ON -DBUILD_DEPS=ON ../aws-iot-device-sdk-cpp-v2 \ && cmake --build . --target install diff --git a/.github/docker-images/ubuntu-16-x64/Dockerfile b/.github/docker-images/ubuntu-16-x64/Dockerfile index d2bb7031..117b8b88 100644 --- a/.github/docker-images/ubuntu-16-x64/Dockerfile +++ b/.github/docker-images/ubuntu-16-x64/Dockerfile @@ -58,7 +58,7 @@ RUN mkdir sdk-cpp-workspace \ && mkdir aws-iot-device-sdk-cpp-v2-build \ && git clone --recursive https://github.com/aws/aws-iot-device-sdk-cpp-v2.git \ && cd aws-iot-device-sdk-cpp-v2 \ - && git checkout ff082900a1c708a1920916d10b92733b5e1a865e \ + && git checkout a73593d1003e2b231c6db53710aa6c75d8196b1f \ && cd ../aws-iot-device-sdk-cpp-v2-build \ && cmake -DCMAKE_INSTALL_PREFIX="/usr" -DUSE_OPENSSL=ON -DBUILD_DEPS=ON ../aws-iot-device-sdk-cpp-v2 \ && cmake --build . --target install diff --git a/.version b/.version index f41c5465..eac26b8f 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v1.2.6-b335514*v1.2*1*2*6*6*b335514 \ No newline at end of file +v1.2.10-4a5aa8c*v1.2*1*2*10*10*4a5aa8c \ No newline at end of file diff --git a/CMakeLists.txt.awssdk b/CMakeLists.txt.awssdk index 4cefb724..3c1ef25e 100644 --- a/CMakeLists.txt.awssdk +++ b/CMakeLists.txt.awssdk @@ -5,7 +5,7 @@ project(aws-iot-device-sdk-cpp-v2-download NONE) include(ExternalProject) ExternalProject_Add(aws-iot-device-sdk-cpp-v2 GIT_REPOSITORY https://github.com/aws/aws-iot-device-sdk-cpp-v2.git - GIT_TAG ff082900a1c708a1920916d10b92733b5e1a865e + GIT_TAG a73593d1003e2b231c6db53710aa6c75d8196b1f SOURCE_DIR "${CMAKE_BINARY_DIR}/aws-iot-device-sdk-cpp-v2-src" BINARY_DIR "${CMAKE_BINARY_DIR}/aws-iot-device-sdk-cpp-v2-build" CONFIGURE_COMMAND ""