From 803c7e22e45cad8937e82b8d23688219125ff817 Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Thu, 20 Jul 2023 10:14:15 -0700 Subject: [PATCH] Add back package versions to the FolderList.cmake and remove EventHubs from the list for now (#4811) * Add back package versions to the FolderList.cmake and remove EventHubs from the list for now * Add eventhubs with latest released tags for dependencies for versions within FolderList.cmake --- cmake-modules/FolderList.cmake | 47 +++++++++++++++++----------------- 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/cmake-modules/FolderList.cmake b/cmake-modules/FolderList.cmake index 7f2f91045..5dda0fdb3 100644 --- a/cmake-modules/FolderList.cmake +++ b/cmake-modules/FolderList.cmake @@ -2,40 +2,39 @@ macro(GetFolderList project) message ("project found ${project}") message ("FLAG VALUE : ${FETCH_SOURCE_DEPS}") if(${project} STREQUAL CERTIFICATES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL IDENTITY) - DownloadDepVersion(sdk/core azure-core) + DownloadDepVersion(sdk/core azure-core 1.2.0) elseif(${project} STREQUAL SECRETS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL KEYS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL ADMINISTRATION) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/identity azure-identity) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL STORAGE_COMMON) - DownloadDepVersion(sdk/core azure-core) + DownloadDepVersion(sdk/core azure-core 1.9.0) elseif(${project} STREQUAL STORAGE_BLOBS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.8.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) elseif(${project} STREQUAL STORAGE_FILES_DATALAKE) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) - DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs) + DownloadDepVersion(sdk/core azure-core 1.8.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.7.0) elseif(${project} STREQUAL STORAGE_FILES_SHARES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.9.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.2) elseif(${project} STREQUAL STORAGE_QUEUES) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) + DownloadDepVersion(sdk/core azure-core 1.5.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3) elseif(${project} STREQUAL EVENTHUBS) - DownloadDepVersion(sdk/core azure-core) - DownloadDepVersion(sdk/core azure-core-amqp) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common) - DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs) - elseif(${project} STREQUAL STORAGE_FILES_DATALAKE) + DownloadDepVersion(sdk/core azure-core 1.10.1) + DownloadDepVersion(sdk/core azure-core-amqp 1.0.0-beta.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.3) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.8.0) endif() list(REMOVE_DUPLICATES BUILD_FOLDERS) endmacro()