Storage Mar. Release (#3400)

* Storage Mar. Release

* upgrade vcpkg commit
This commit is contained in:
JinmingHu 2022-03-09 08:51:55 +08:00 committed by GitHub
parent 8825ad181f
commit 66b9e75010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 34 additions and 55 deletions

View File

@ -16,17 +16,17 @@ macro(GetFolderList project)
DownloadDepVersion(sdk/core azure-core 1.3.1)
elseif(${project} STREQUAL STORAGE_BLOBS)
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-common azure-storage-common 12.2.2)
elseif(${project} STREQUAL STORAGE_DATALAKE)
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-common azure-storage-common 12.2.2)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.3.0)
elseif(${project} STREQUAL STORAGE_SHARES)
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-common azure-storage-common 12.2.2)
elseif(${project} STREQUAL STORAGE_QUEUES)
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-common azure-storage-common 12.2.2)
endif()
list(REMOVE_DUPLICATES BUILD_FOLDERS)
endmacro()

View File

@ -1 +1 @@
fcd3a3bb53356cc954f7fa07cee2c99b253d1a49
be5c4ef68b51142ba705f0678b45d284977de677

View File

@ -1,6 +1,6 @@
# Release History
## 12.4.0-beta.1 (Unreleased)
## 12.4.0-beta.1 (2022-03-09)
### Features Added
@ -10,12 +10,6 @@
- New API: `BlobClient::CopyFromUri()`, `BlobClient::SetImmutabilityPolicy()`, `BlobClient::DeleteImmutabilityPolicy()`, `BlobClient::SetLegalHold()`, `BlockBlobClient::UploadFromUri()` and `BlobServiceClient::RenameBlobContainer()`.
- Added lease access condition support for `BlobClient::SetTags()` and `BlobClient::GetTags()`.
### Breaking Changes
### Bugs Fixed
### Other Changes
## 12.3.0 (2022-02-14)
### Features Added

View File

@ -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.1" CONFIG QUIET)
find_package(azure-storage-common-cpp "12.2.2" CONFIG QUIET)
if(NOT azure-storage-common-cpp_FOUND)
find_package(azure-storage-common-cpp "12.2.1" REQUIRED)
find_package(azure-storage-common-cpp "12.2.2" REQUIRED)
endif()
endif()

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-common-cpp "12.2.1")
find_dependency(azure-storage-common-cpp "12.2.2")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-blobs-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.2.1"
"version>=": "12.2.2"
},
{
"name": "vcpkg-cmake",

View File

@ -1,17 +1,12 @@
# Release History
## 12.3.0-beta.1 (Unreleased)
## 12.2.2 (2022-03-09)
### Features Added
- Added `SetImmutabilityPolicy` permission for account SAS.
- Bumped up SAS token service version to `2020-08-04`.
### Breaking Changes
### Bugs Fixed
### Other Changes
## 12.2.1 (2022-02-14)
### Other Changes

View File

@ -11,9 +11,9 @@
#include <array>
#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 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)

View File

@ -1,15 +1,11 @@
# Release History
## 12.4.0-beta.1 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
## 12.3.1 (2022-03-09)
### Other Changes
- No public changes in this release.
## 12.3.0 (2022-02-14)
### Other Changes

View File

@ -9,9 +9,9 @@
#pragma once
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 4
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 3
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 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) \

View File

@ -1,12 +1,6 @@
# Release History
## 12.3.0-beta.1 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
## 12.2.1 (2022-03-09)
### Other Changes

View File

@ -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.2" 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.2" REQUIRED)
endif()
endif()

View File

@ -9,9 +9,9 @@
#pragma once
#define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 3
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 2
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 1
#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)

View File

@ -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.2")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-shares-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.2.0"
"version>=": "12.2.2"
},
{
"name": "vcpkg-cmake",

View File

@ -1,6 +1,6 @@
# Release History
## 12.0.0-beta.4 (Unreleased)
## 12.0.0-beta.4 (2022-03-09)
### Other Changes

View File

@ -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.1" CONFIG QUIET)
find_package(azure-storage-common-cpp "12.2.2" CONFIG QUIET)
if(NOT azure-storage-common-cpp_FOUND)
find_package(azure-storage-common-cpp "12.2.1" REQUIRED)
find_package(azure-storage-common-cpp "12.2.2" REQUIRED)
endif()
endif()

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-common-cpp "12.2.1")
find_dependency(azure-storage-common-cpp "12.2.2")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-queues-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.2.1"
"version>=": "12.2.2"
},
{
"name": "vcpkg-cmake",