diff --git a/cmake-modules/FolderList.cmake b/cmake-modules/FolderList.cmake index ae0808f7c..c690fc7ea 100644 --- a/cmake-modules/FolderList.cmake +++ b/cmake-modules/FolderList.cmake @@ -16,7 +16,7 @@ macro(GetFolderList project) 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 1.8.0) + DownloadDepVersion(sdk/core azure-core 1.9.0) elseif(${project} STREQUAL STORAGE_BLOBS) DownloadDepVersion(sdk/core azure-core 1.8.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) @@ -25,8 +25,8 @@ macro(GetFolderList project) 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 1.8.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1) + 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 1.5.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3) diff --git a/sdk/storage/assets.json b/sdk/storage/assets.json index ca7b16f1e..3b5d775e9 100644 --- a/sdk/storage/assets.json +++ b/sdk/storage/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "cpp", "TagPrefix": "cpp/storage", - "Tag": "cpp/storage_53d9e49e60" + "Tag": "cpp/storage_f610b0fc7a" } diff --git a/sdk/storage/azure-storage-common/CHANGELOG.md b/sdk/storage/azure-storage-common/CHANGELOG.md index 03c43cbb4..e23ba0859 100644 --- a/sdk/storage/azure-storage-common/CHANGELOG.md +++ b/sdk/storage/azure-storage-common/CHANGELOG.md @@ -1,14 +1,10 @@ # Release History -## 12.4.0-beta.1 (Unreleased) +## 12.3.2 (2023-05-09) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Bumped up Account SAS version to `2022-11-02`. ## 12.3.1 (2023-03-07) diff --git a/sdk/storage/azure-storage-common/CMakeLists.txt b/sdk/storage/azure-storage-common/CMakeLists.txt index 05efb0e43..dac8d7699 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.8.0" CONFIG QUIET) + find_package(azure-core-cpp "1.9.0" CONFIG QUIET) if(NOT azure-core-cpp_FOUND) - find_package(azure-core-cpp "1.8.0" REQUIRED) + find_package(azure-core-cpp "1.9.0" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-common/src/account_sas_builder.cpp b/sdk/storage/azure-storage-common/src/account_sas_builder.cpp index 84dec1455..e3d436a5c 100644 --- a/sdk/storage/azure-storage-common/src/account_sas_builder.cpp +++ b/sdk/storage/azure-storage-common/src/account_sas_builder.cpp @@ -9,7 +9,7 @@ namespace Azure { namespace Storage { namespace Sas { namespace { - constexpr static const char* SasVersion = "2021-12-02"; + constexpr static const char* SasVersion = "2022-11-02"; } void AccountSasBuilder::SetPermissions(AccountSasPermissions permissions) 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 1f1c6a167..2f3eccfcb 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 4 -#define AZURE_STORAGE_COMMON_VERSION_PATCH 0 -#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "beta.1" +#define AZURE_STORAGE_COMMON_VERSION_MINOR 3 +#define AZURE_STORAGE_COMMON_VERSION_PATCH 2 +#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-common/vcpkg.json b/sdk/storage/azure-storage-common/vcpkg.json index 802869816..24dfb910a 100644 --- a/sdk/storage/azure-storage-common/vcpkg.json +++ b/sdk/storage/azure-storage-common/vcpkg.json @@ -1,6 +1,6 @@ { "name": "azure-storage-common-cpp", - "version-semver": "12.3.1", + "version-semver": "12.3.2", "description": [ "Microsoft Azure Common Storage SDK for C++", "This library provides common Azure Storage-related abstractions for Azure SDK." @@ -11,7 +11,7 @@ { "name": "azure-core-cpp", "default-features": false, - "version>=": "1.8.0" + "version>=": "1.9.0" }, { "name": "libxml2", diff --git a/sdk/storage/azure-storage-common/vcpkg/Config.cmake.in b/sdk/storage/azure-storage-common/vcpkg/Config.cmake.in index da9f2a111..43a13d14b 100644 --- a/sdk/storage/azure-storage-common/vcpkg/Config.cmake.in +++ b/sdk/storage/azure-storage-common/vcpkg/Config.cmake.in @@ -5,7 +5,7 @@ include(CMakeFindDependencyMacro) find_dependency(Threads) -find_dependency(azure-core-cpp "1.8.0") +find_dependency(azure-core-cpp "1.9.0") if(NOT WIN32) find_dependency(LibXml2) diff --git a/sdk/storage/azure-storage-common/vcpkg/vcpkg.json b/sdk/storage/azure-storage-common/vcpkg/vcpkg.json index 8a1e98a6f..1281800d5 100644 --- a/sdk/storage/azure-storage-common/vcpkg/vcpkg.json +++ b/sdk/storage/azure-storage-common/vcpkg/vcpkg.json @@ -14,7 +14,7 @@ { "name": "azure-core-cpp", "default-features": false, - "version>=": "1.8.0" + "version>=": "1.9.0" }, { "name": "libxml2", diff --git a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md index 7d1d23d5c..8fbc49693 100644 --- a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md @@ -1,14 +1,8 @@ # Release History -## 12.6.0-beta.2 (Unreleased) +## 12.6.0 (2023-05-09) -### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- New features in `12.6.0-beta.1` are now generally available. ## 12.6.0-beta.1 (2023-04-11) 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 1560b14cb..f5888edc8 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 6 #define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0 -#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.2" +#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.json b/sdk/storage/azure-storage-files-datalake/vcpkg.json index db9569d65..4ca085dc6 100644 --- a/sdk/storage/azure-storage-files-datalake/vcpkg.json +++ b/sdk/storage/azure-storage-files-datalake/vcpkg.json @@ -1,6 +1,6 @@ { "name": "azure-storage-files-datalake-cpp", - "version-semver": "12.6.0-beta.1", + "version-semver": "12.6.0", "description": [ "Microsoft Azure Storage Files Data Lake SDK for C++", "This library provides Azure Storage Files Data Lake SDK." diff --git a/sdk/storage/azure-storage-files-shares/CHANGELOG.md b/sdk/storage/azure-storage-files-shares/CHANGELOG.md index b1f49075c..540f4118c 100644 --- a/sdk/storage/azure-storage-files-shares/CHANGELOG.md +++ b/sdk/storage/azure-storage-files-shares/CHANGELOG.md @@ -1,14 +1,14 @@ # Release History -## 12.5.0-beta.2 (Unreleased) +## 12.5.0 (2023-05-09) ### Features Added -### Breaking Changes +- New features in `12.5.0-beta.1` are now generally available. ### Bugs Fixed -### Other Changes +- Fixed a bug where `ShareFileClient::ListHandles` and `ShareDirectoryClient::ListHandles` always return empty list. ## 12.5.0-beta.1 (2023-04-11) diff --git a/sdk/storage/azure-storage-files-shares/CMakeLists.txt b/sdk/storage/azure-storage-files-shares/CMakeLists.txt index 6a5f83b18..a72a5ed70 100644 --- a/sdk/storage/azure-storage-files-shares/CMakeLists.txt +++ b/sdk/storage/azure-storage-files-shares/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.3.1" CONFIG QUIET) + find_package(azure-storage-common-cpp "12.3.2" CONFIG QUIET) if(NOT azure-storage-common-cpp_FOUND) - find_package(azure-storage-common-cpp "12.3.1" REQUIRED) + find_package(azure-storage-common-cpp "12.3.2" REQUIRED) endif() endif() diff --git a/sdk/storage/azure-storage-files-shares/src/private/package_version.hpp b/sdk/storage/azure-storage-files-shares/src/private/package_version.hpp index 3eab4ec27..818127560 100644 --- a/sdk/storage/azure-storage-files-shares/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-files-shares/src/private/package_version.hpp @@ -11,7 +11,7 @@ #define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12 #define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 5 #define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0 -#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "beta.2" +#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "" #define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) #i #define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) diff --git a/sdk/storage/azure-storage-files-shares/vcpkg.json b/sdk/storage/azure-storage-files-shares/vcpkg.json index 2a8ce8c9f..c42fe1433 100644 --- a/sdk/storage/azure-storage-files-shares/vcpkg.json +++ b/sdk/storage/azure-storage-files-shares/vcpkg.json @@ -1,6 +1,6 @@ { "name": "azure-storage-files-shares-cpp", - "version-semver": "12.5.0-beta.1", + "version-semver": "12.5.0", "description": [ "Microsoft Azure Storage Files Shares SDK for C++", "This library provides Azure Storage Files Shares SDK." @@ -11,7 +11,7 @@ { "name": "azure-storage-common-cpp", "default-features": false, - "version>=": "12.3.1" + "version>=": "12.3.2" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-files-shares/vcpkg/Config.cmake.in b/sdk/storage/azure-storage-files-shares/vcpkg/Config.cmake.in index 73b409b6b..1126fbe53 100644 --- a/sdk/storage/azure-storage-files-shares/vcpkg/Config.cmake.in +++ b/sdk/storage/azure-storage-files-shares/vcpkg/Config.cmake.in @@ -4,7 +4,7 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(azure-storage-common-cpp "12.3.1") +find_dependency(azure-storage-common-cpp "12.3.2") include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-shares-cppTargets.cmake") diff --git a/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json b/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json index 62b1493fa..b6a218120 100644 --- a/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json +++ b/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json @@ -14,7 +14,7 @@ { "name": "azure-storage-common-cpp", "default-features": false, - "version>=": "12.3.1" + "version>=": "12.3.2" }, { "name": "vcpkg-cmake",