diff --git a/cmake-modules/FolderList.cmake b/cmake-modules/FolderList.cmake index 2c7eccccc..e47069c7e 100644 --- a/cmake-modules/FolderList.cmake +++ b/cmake-modules/FolderList.cmake @@ -13,20 +13,20 @@ macro(GetFolderList project) DownloadDepVersion(sdk/core azure-core 1.2.0) DownloadDepVersion(sdk/identity azure-identity 1.1.0) elseif(${project} STREQUAL STORAGE_COMMON) - DownloadDepVersion(sdk/core azure-core 1.0.0) + DownloadDepVersion(sdk/core azure-core 1.3.1) elseif(${project} STREQUAL STORAGE_BLOBS) - DownloadDepVersion(sdk/core azure-core 1.0.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0) + DownloadDepVersion(sdk/core azure-core 1.3.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1) elseif(${project} STREQUAL STORAGE_DATALAKE) - DownloadDepVersion(sdk/core azure-core 1.0.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0) - DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.2.0) + DownloadDepVersion(sdk/core azure-core 1.3.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.3.0) elseif(${project} STREQUAL STORAGE_SHARES) - DownloadDepVersion(sdk/core azure-core 1.0.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0) + DownloadDepVersion(sdk/core azure-core 1.3.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1) elseif(${project} STREQUAL STORAGE_QUEUES) - DownloadDepVersion(sdk/core azure-core 1.0.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0) + DownloadDepVersion(sdk/core azure-core 1.3.1) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1) endif() list(REMOVE_DUPLICATES BUILD_FOLDERS) endmacro() diff --git a/sdk/storage/azure-storage-blobs/CHANGELOG.md b/sdk/storage/azure-storage-blobs/CHANGELOG.md index fe58bcd5f..1ab74e545 100644 --- a/sdk/storage/azure-storage-blobs/CHANGELOG.md +++ b/sdk/storage/azure-storage-blobs/CHANGELOG.md @@ -1,17 +1,11 @@ # Release History -## 12.3.0 (Unreleased) +## 12.3.0 (2022-02-14) ### Features Added - Added `VersionId` in `SetBlobMetadataResult`. -### Breaking Changes - -### Bugs Fixed - -### Other Changes - ## 12.2.1 (2021-11-08) ### Other Changes diff --git a/sdk/storage/azure-storage-blobs/CMakeLists.txt b/sdk/storage/azure-storage-blobs/CMakeLists.txt index 163bea110..d589ebf82 100644 --- a/sdk/storage/azure-storage-blobs/CMakeLists.txt +++ b/sdk/storage/azure-storage-blobs/CMakeLists.txt @@ -32,9 +32,9 @@ if(FETCH_SOURCE_DEPS) add_subdirectory(${oneFolder} EXCLUDE_FROM_ALL) endforeach() elseif(NOT AZ_ALL_LIBRARIES) - find_package(azure-storage-common-cpp "12.2.0" CONFIG QUIET) + find_package(azure-storage-common-cpp "12.2.1" CONFIG QUIET) if(NOT azure-storage-common-cpp_FOUND) - find_package(azure-storage-common-cpp "12.2.0" REQUIRED) + find_package(azure-storage-common-cpp "12.2.1" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-blobs/src/private/package_version.hpp b/sdk/storage/azure-storage-blobs/src/private/package_version.hpp index d1d9c2b83..7bc2df52c 100644 --- a/sdk/storage/azure-storage-blobs/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-blobs/src/private/package_version.hpp @@ -9,8 +9,8 @@ #pragma once #define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12 -#define AZURE_STORAGE_BLOBS_VERSION_MINOR 2 -#define AZURE_STORAGE_BLOBS_VERSION_PATCH 1 +#define AZURE_STORAGE_BLOBS_VERSION_MINOR 3 +#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0 #define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "" #define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #i diff --git a/sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in b/sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in index 2f2f29602..3d06eadb1 100644 --- a/sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in +++ b/sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in @@ -4,7 +4,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(azure-storage-common-cpp "12.2.0") +find_dependency(azure-storage-common-cpp "12.2.1") include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-blobs-cppTargets.cmake") diff --git a/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json b/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json index 83de396d6..91888d7cf 100644 --- a/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json +++ b/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json @@ -14,7 +14,7 @@ { "name": "azure-storage-common-cpp", "default-features": false, - "version>=": "12.2.0" + "version>=": "12.2.1" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-common/CHANGELOG.md b/sdk/storage/azure-storage-common/CHANGELOG.md index 98801397d..4a88d6416 100644 --- a/sdk/storage/azure-storage-common/CHANGELOG.md +++ b/sdk/storage/azure-storage-common/CHANGELOG.md @@ -1,15 +1,11 @@ # Release History -## 12.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed +## 12.2.1 (2022-02-14) ### Other Changes +- No public changes in this release. + ## 12.2.0 (2021-09-08) ### Features Added diff --git a/sdk/storage/azure-storage-common/CMakeLists.txt b/sdk/storage/azure-storage-common/CMakeLists.txt index a7ca840a5..1ce3e3fcc 100644 --- a/sdk/storage/azure-storage-common/CMakeLists.txt +++ b/sdk/storage/azure-storage-common/CMakeLists.txt @@ -32,9 +32,9 @@ if(FETCH_SOURCE_DEPS) add_subdirectory(${oneFolder} EXCLUDE_FROM_ALL) endforeach() elseif(NOT AZ_ALL_LIBRARIES) - find_package(azure-core-cpp "1.0.0" CONFIG QUIET) + find_package(azure-core-cpp "1.3.1" CONFIG QUIET) if(NOT azure-core-cpp_FOUND) - find_package(azure-core-cpp "1.0.0" REQUIRED) + find_package(azure-core-cpp "1.3.1" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-common/src/private/package_version.hpp b/sdk/storage/azure-storage-common/src/private/package_version.hpp index c1ddc0472..54ea5ba0f 100644 --- a/sdk/storage/azure-storage-common/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-common/src/private/package_version.hpp @@ -11,9 +11,9 @@ #include #define AZURE_STORAGE_COMMON_VERSION_MAJOR 12 -#define AZURE_STORAGE_COMMON_VERSION_MINOR 3 -#define AZURE_STORAGE_COMMON_VERSION_PATCH 0 -#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "beta.1" +#define AZURE_STORAGE_COMMON_VERSION_MINOR 2 +#define AZURE_STORAGE_COMMON_VERSION_PATCH 1 +#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "" #define AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) #i #define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) diff --git a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md index ef063b813..83b143507 100644 --- a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md @@ -1,12 +1,6 @@ # Release History -## 12.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed +## 12.3.0 (2022-02-14) ### Other Changes diff --git a/sdk/storage/azure-storage-files-datalake/CMakeLists.txt b/sdk/storage/azure-storage-files-datalake/CMakeLists.txt index a77af1c3b..407bb6ad1 100644 --- a/sdk/storage/azure-storage-files-datalake/CMakeLists.txt +++ b/sdk/storage/azure-storage-files-datalake/CMakeLists.txt @@ -32,9 +32,9 @@ if(FETCH_SOURCE_DEPS) add_subdirectory(${oneFolder} EXCLUDE_FROM_ALL) endforeach() elseif(NOT AZ_ALL_LIBRARIES) - find_package(azure-storage-blobs-cpp "12.2.0" CONFIG QUIET) + find_package(azure-storage-blobs-cpp "12.3.0" CONFIG QUIET) if(NOT azure-storage-blobs-cpp_FOUND) - find_package(azure-storage-blobs-cpp "12.2.0" REQUIRED) + find_package(azure-storage-blobs-cpp "12.3.0" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-files-datalake/src/private/package_version.hpp b/sdk/storage/azure-storage-files-datalake/src/private/package_version.hpp index ad718c80f..decd88eea 100644 --- a/sdk/storage/azure-storage-files-datalake/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-files-datalake/src/private/package_version.hpp @@ -11,7 +11,7 @@ #define AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR 12 #define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 3 #define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0 -#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.1" +#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "" #define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA_HELPER(i) #i #define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA(i) \ diff --git a/sdk/storage/azure-storage-files-datalake/vcpkg/Config.cmake.in b/sdk/storage/azure-storage-files-datalake/vcpkg/Config.cmake.in index 32328c5be..1ac7ad8fd 100644 --- a/sdk/storage/azure-storage-files-datalake/vcpkg/Config.cmake.in +++ b/sdk/storage/azure-storage-files-datalake/vcpkg/Config.cmake.in @@ -4,7 +4,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(azure-storage-blobs-cpp "12.2.0") +find_dependency(azure-storage-blobs-cpp "12.3.0") include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-datalake-cppTargets.cmake") diff --git a/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json b/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json index f59b4b2cf..8c1acba09 100644 --- a/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json +++ b/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json @@ -14,7 +14,7 @@ { "name": "azure-storage-blobs-cpp", "default-features": false, - "version>=": "12.2.0" + "version>=": "12.3.0" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-queues/CHANGELOG.md b/sdk/storage/azure-storage-queues/CHANGELOG.md index 2b707d214..a0de517d7 100644 --- a/sdk/storage/azure-storage-queues/CHANGELOG.md +++ b/sdk/storage/azure-storage-queues/CHANGELOG.md @@ -1,15 +1,11 @@ # Release History -## 12.0.0-beta.3 (Unreleased) - -### Features Added - -### Breaking Changes - -### Bugs Fixed +## 12.0.0-beta.3 (2022-02-14) ### Other Changes +- No public changes in this release. + ## 12.0.0-beta.2 (2021-11-08) ### Breaking Changes diff --git a/sdk/storage/azure-storage-queues/CMakeLists.txt b/sdk/storage/azure-storage-queues/CMakeLists.txt index 1b3f58e06..9e5b1faba 100644 --- a/sdk/storage/azure-storage-queues/CMakeLists.txt +++ b/sdk/storage/azure-storage-queues/CMakeLists.txt @@ -32,9 +32,9 @@ if(FETCH_SOURCE_DEPS) add_subdirectory(${oneFolder} EXCLUDE_FROM_ALL) endforeach() elseif(NOT AZ_ALL_LIBRARIES) - find_package(azure-storage-common-cpp "12.2.0" CONFIG QUIET) + find_package(azure-storage-common-cpp "12.2.1" CONFIG QUIET) if(NOT azure-storage-common-cpp_FOUND) - find_package(azure-storage-common-cpp "12.2.0" REQUIRED) + find_package(azure-storage-common-cpp "12.2.1" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in b/sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in index cf651e8d8..433fed495 100644 --- a/sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in +++ b/sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in @@ -4,7 +4,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(azure-storage-common-cpp "12.2.0") +find_dependency(azure-storage-common-cpp "12.2.1") include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-queues-cppTargets.cmake") diff --git a/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json b/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json index c00678bbf..74a5f4d77 100644 --- a/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json +++ b/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json @@ -14,7 +14,7 @@ { "name": "azure-storage-common-cpp", "default-features": false, - "version>=": "12.2.0" + "version>=": "12.2.1" }, { "name": "vcpkg-cmake",