Storage November Release (#6196)

This commit is contained in:
microzchang 2024-11-11 10:43:25 +08:00 committed by GitHub
parent 0e29b2860d
commit d2bdf925e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 14 additions and 21 deletions

View File

@ -16,7 +16,7 @@ macro(GetFolderList project)
DownloadDepVersion(sdk/core azure-core 1.5.0) DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0) DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL STORAGE_COMMON) elseif(${project} STREQUAL STORAGE_COMMON)
DownloadDepVersion(sdk/core azure-core 1.13.0) DownloadDepVersion(sdk/core azure-core 1.14.1)
elseif(${project} STREQUAL STORAGE_BLOBS) elseif(${project} STREQUAL STORAGE_BLOBS)
DownloadDepVersion(sdk/core azure-core 1.13.0) DownloadDepVersion(sdk/core azure-core 1.13.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)
@ -25,8 +25,8 @@ macro(GetFolderList project)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.13.0) DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.13.0)
elseif(${project} STREQUAL STORAGE_FILES_SHARES) elseif(${project} STREQUAL STORAGE_FILES_SHARES)
DownloadDepVersion(sdk/core azure-core 1.13.0) DownloadDepVersion(sdk/core azure-core 1.14.1)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.9.0)
elseif(${project} STREQUAL STORAGE_QUEUES) elseif(${project} STREQUAL STORAGE_QUEUES)
DownloadDepVersion(sdk/core azure-core 1.13.0) DownloadDepVersion(sdk/core azure-core 1.13.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0) DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)

View File

@ -1,18 +1,15 @@
# Release History # Release History
## 12.9.0-beta.2 (Unreleased) ## 12.9.0 (2024-11-12)
### Features Added ### Features Added
### Breaking Changes - Features in `12.9.0-beta.1` are now generally available.
### Bugs Fixed
### Other Changes
## 12.9.0-beta.1 (2024-10-15) ## 12.9.0-beta.1 (2024-10-15)
### Features Added ### Features Added
- Bumped up Account SAS version to `2025-01-05`. - Bumped up Account SAS version to `2025-01-05`.
## 12.8.0 (2024-09-17) ## 12.8.0 (2024-09-17)

View File

@ -13,7 +13,7 @@
#define AZURE_STORAGE_COMMON_VERSION_MAJOR 12 #define AZURE_STORAGE_COMMON_VERSION_MAJOR 12
#define AZURE_STORAGE_COMMON_VERSION_MINOR 9 #define AZURE_STORAGE_COMMON_VERSION_MINOR 9
#define AZURE_STORAGE_COMMON_VERSION_PATCH 0 #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_HELPER(i) #i
#define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) #define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i)

View File

@ -1,6 +1,6 @@
{ {
"name": "azure-storage-common-cpp", "name": "azure-storage-common-cpp",
"version-semver": "12.9.0-beta.1", "version-semver": "12.9.0",
"description": [ "description": [
"Microsoft Azure Common Storage SDK for C++", "Microsoft Azure Common Storage SDK for C++",
"This library provides common Azure Storage-related abstractions for Azure SDK." "This library provides common Azure Storage-related abstractions for Azure SDK."

View File

@ -18,7 +18,7 @@
{ {
"name": "azure-core-cpp", "name": "azure-core-cpp",
"default-features": false, "default-features": false,
"version>=": "1.13.0" "version>=": "1.14.1"
}, },
{ {
"name": "libxml2", "name": "libxml2",

View File

@ -1,14 +1,10 @@
# Release History # Release History
## 12.12.0-beta.2 (Unreleased) ## 12.12.0 (2024-11-12)
### Features Added ### Features Added
### Breaking Changes - Features in `12.12.0-beta.1` are now generally available.
### Bugs Fixed
### Other Changes
## 12.12.0-beta.1 (2024-10-15) ## 12.12.0-beta.1 (2024-10-15)

View File

@ -11,7 +11,7 @@
#define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12 #define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 12 #define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 12
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0 #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_HELPER(i) #i
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) #define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i)

View File

@ -1,6 +1,6 @@
{ {
"name": "azure-storage-files-shares-cpp", "name": "azure-storage-files-shares-cpp",
"version-semver": "12.12.0-beta.1", "version-semver": "12.12.0",
"description": [ "description": [
"Microsoft Azure Storage Files Shares SDK for C++", "Microsoft Azure Storage Files Shares SDK for C++",
"This library provides Azure Storage Files Shares SDK." "This library provides Azure Storage Files Shares SDK."

View File

@ -18,7 +18,7 @@
{ {
"name": "azure-storage-common-cpp", "name": "azure-storage-common-cpp",
"default-features": false, "default-features": false,
"version>=": "12.8.0" "version>=": "12.9.0"
}, },
{ {
"name": "vcpkg-cmake", "name": "vcpkg-cmake",