diff --git a/cmake-modules/FolderList.cmake b/cmake-modules/FolderList.cmake index 5dda0fdb3..7a2177246 100644 --- a/cmake-modules/FolderList.cmake +++ b/cmake-modules/FolderList.cmake @@ -18,18 +18,18 @@ macro(GetFolderList project) elseif(${project} STREQUAL STORAGE_COMMON) 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) + DownloadDepVersion(sdk/core azure-core 1.9.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0) elseif(${project} STREQUAL STORAGE_FILES_DATALAKE) - 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) + DownloadDepVersion(sdk/core azure-core 1.9.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0) + DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.9.0) elseif(${project} STREQUAL STORAGE_FILES_SHARES) DownloadDepVersion(sdk/core azure-core 1.9.0) - DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.2) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0) 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) + DownloadDepVersion(sdk/core azure-core 1.9.0) + DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0) elseif(${project} STREQUAL EVENTHUBS) DownloadDepVersion(sdk/core azure-core 1.10.1) DownloadDepVersion(sdk/core azure-core-amqp 1.0.0-beta.1) diff --git a/sdk/storage/azure-storage-blobs/CHANGELOG.md b/sdk/storage/azure-storage-blobs/CHANGELOG.md index bcc9d917f..18c170a4b 100644 --- a/sdk/storage/azure-storage-blobs/CHANGELOG.md +++ b/sdk/storage/azure-storage-blobs/CHANGELOG.md @@ -1,14 +1,10 @@ # Release History -## 12.9.0-beta.3 (Unreleased) +## 12.9.0 (2023-09-12) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Features in `12.9.0-beta.1` and `12.9.0-beta.2` are now generally available. ## 12.9.0-beta.2 (2023-08-12) @@ -30,6 +26,8 @@ ## 12.8.0 (2023-07-11) +### Features Added + - Features in `12.8.0-beta.1` are now generally available. ## 12.8.0-beta.1 (2023-05-31) 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 9b3872ed2..d086fbb47 100644 --- a/sdk/storage/azure-storage-blobs/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-blobs/src/private/package_version.hpp @@ -11,7 +11,7 @@ #define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12 #define AZURE_STORAGE_BLOBS_VERSION_MINOR 9 #define AZURE_STORAGE_BLOBS_VERSION_PATCH 0 -#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.3" +#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "" #define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #i #define AZURE_STORAGE_BLOBS_VERSION_ITOA(i) AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) diff --git a/sdk/storage/azure-storage-blobs/vcpkg.json b/sdk/storage/azure-storage-blobs/vcpkg.json index e8290ddca..6b08a3be9 100644 --- a/sdk/storage/azure-storage-blobs/vcpkg.json +++ b/sdk/storage/azure-storage-blobs/vcpkg.json @@ -1,6 +1,6 @@ { "name": "azure-storage-blobs-cpp", - "version-semver": "12.9.0-beta.1", + "version-semver": "12.9.0", "description": [ "Microsoft Azure Storage Blobs SDK for C++", "This library provides Azure Storage Blobs SDK." diff --git a/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json b/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json index b12106628..f0456d21d 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.4.0-beta.1" + "version>=": "12.4.0" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-common/CHANGELOG.md b/sdk/storage/azure-storage-common/CHANGELOG.md index 9a3e4b138..f680cae39 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.2 (Unreleased) +## 12.4.0 (2023-09-12) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Bumped up Account SAS version to `2023-08-03`. ## 12.4.0-beta.1 (2023-08-12) 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 4093f928b..905ec8098 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 = "2023-01-03"; + constexpr static const char* SasVersion = "2023-08-03"; } 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 f1ec45dd0..b5dfc51b9 100644 --- a/sdk/storage/azure-storage-common/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-common/src/private/package_version.hpp @@ -13,7 +13,7 @@ #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.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 3691c9687..8f805993e 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.4.0-beta.1", + "version-semver": "12.4.0", "description": [ "Microsoft Azure Common Storage SDK for C++", "This library provides common Azure Storage-related abstractions for Azure SDK." diff --git a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md index a33c58cb2..cca4c9204 100644 --- a/sdk/storage/azure-storage-files-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-files-datalake/CHANGELOG.md @@ -1,14 +1,10 @@ # Release History -## 12.8.0-beta.3 (Unreleased) +## 12.8.0 (2023-09-12) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Features in `12.8.0-beta.1` and `12.8.0-beta.2` are now generally available. ## 12.8.0-beta.2 (2023-08-12) @@ -31,6 +27,8 @@ ## 12.7.0 (2023-07-11) +### Features Added + - New features in `12.7.0-beta.1` are now generally available. ## 12.7.0-beta.1 (2023-05-31) @@ -41,6 +39,8 @@ ## 12.6.0 (2023-05-09) +### Features Added + - New features in `12.6.0-beta.1` are now generally available. ## 12.6.0-beta.1 (2023-04-11) @@ -51,6 +51,8 @@ ## 12.5.0 (2023-01-10) +### Features Added + - New features in `12.5.0-beta.1` are now generally available. @@ -63,6 +65,8 @@ ## 12.4.0 (2022-11-08) +### Features Added + - New features in `12.4.0-beta.1` are now generally available. ## 12.4.0-beta.1 (2022-10-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 61059d718..f751caefa 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 8 #define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0 -#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.3" +#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 7b3250a28..a6e5598cb 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.8.0-beta.2", + "version-semver": "12.8.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-datalake/vcpkg/vcpkg.json b/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json index 550aeac8b..1a1b5a2e3 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.9.0-beta.2" + "version>=": "12.9.0" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-files-shares/CHANGELOG.md b/sdk/storage/azure-storage-files-shares/CHANGELOG.md index cfad36bc3..64b2f1e14 100644 --- a/sdk/storage/azure-storage-files-shares/CHANGELOG.md +++ b/sdk/storage/azure-storage-files-shares/CHANGELOG.md @@ -1,17 +1,15 @@ # Release History -## 12.7.0-beta.2 (Unreleased) +## 12.7.0 (2023-09-12) ### Features Added -### Breaking Changes +- Features in `12.7.0-beta.1` and `12.7.0-beta.2` are now generally available. ### Bugs Fixed - Fixed a bug where `ShareServiceClient::SetProperties` and `ShareServiceClient::GetProperties` threw exception if property `Protocol` is not null. -### Other Changes - ## 12.7.0-beta.1 (2023-08-12) ### Features Added @@ -29,6 +27,8 @@ ## 12.6.0 (2023-07-11) +### Features Added + - New features in `12.6.0-beta.1` are now generally available. ## 12.6.0-beta.1 (2023-05-31) 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 663ed23e6..7b94e2ccc 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 7 #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 cbd576e61..d209b1c6c 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.7.0-beta.1", + "version-semver": "12.7.0", "description": [ "Microsoft Azure Storage Files Shares SDK for C++", "This library provides Azure Storage Files Shares SDK." diff --git a/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json b/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json index ab4e0c145..6b9d987dd 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.4.0-beta.1" + "version>=": "12.4.0" }, { "name": "vcpkg-cmake", diff --git a/sdk/storage/azure-storage-queues/CHANGELOG.md b/sdk/storage/azure-storage-queues/CHANGELOG.md index 2533a8cce..bbc79f61c 100644 --- a/sdk/storage/azure-storage-queues/CHANGELOG.md +++ b/sdk/storage/azure-storage-queues/CHANGELOG.md @@ -1,14 +1,10 @@ # Release History -## 12.1.0-beta.2 (Unreleased) +## 12.1.0 (2023-09-12) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- New features in `12.1.0-beta.1` are now generally available. ## 12.1.0-beta.1 (2023-08-12) diff --git a/sdk/storage/azure-storage-queues/src/private/package_version.hpp b/sdk/storage/azure-storage-queues/src/private/package_version.hpp index 44c39f454..5b7b595d9 100644 --- a/sdk/storage/azure-storage-queues/src/private/package_version.hpp +++ b/sdk/storage/azure-storage-queues/src/private/package_version.hpp @@ -11,7 +11,7 @@ #define AZURE_STORAGE_QUEUES_VERSION_MAJOR 12 #define AZURE_STORAGE_QUEUES_VERSION_MINOR 1 #define AZURE_STORAGE_QUEUES_VERSION_PATCH 0 -#define AZURE_STORAGE_QUEUES_VERSION_PRERELEASE "beta.2" +#define AZURE_STORAGE_QUEUES_VERSION_PRERELEASE "" #define AZURE_STORAGE_QUEUES_VERSION_ITOA_HELPER(i) #i #define AZURE_STORAGE_QUEUES_VERSION_ITOA(i) AZURE_STORAGE_QUEUES_VERSION_ITOA_HELPER(i) diff --git a/sdk/storage/azure-storage-queues/vcpkg.json b/sdk/storage/azure-storage-queues/vcpkg.json index 1d7967dbd..eb761fb68 100644 --- a/sdk/storage/azure-storage-queues/vcpkg.json +++ b/sdk/storage/azure-storage-queues/vcpkg.json @@ -1,6 +1,6 @@ { "name": "azure-storage-queues-cpp", - "version-semver": "12.1.0-beta.1", + "version-semver": "12.1.0", "description": [ "Microsoft Azure Storage Queues SDK for C++", "This library provides Azure Storage Queues SDK." diff --git a/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json b/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json index f96cee900..c78ecd123 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.4.0-beta.1" + "version>=": "12.4.0" }, { "name": "vcpkg-cmake",