Storage Mar. Release (#3400)
* Storage Mar. Release * upgrade vcpkg commit
This commit is contained in:
parent
8825ad181f
commit
66b9e75010
@ -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()
|
||||
|
||||
@ -1 +1 @@
|
||||
fcd3a3bb53356cc954f7fa07cee2c99b253d1a49
|
||||
be5c4ef68b51142ba705f0678b45d284977de677
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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()
|
||||
|
||||
|
||||
@ -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")
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.1"
|
||||
"version>=": "12.2.2"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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) \
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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()
|
||||
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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")
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.0"
|
||||
"version>=": "12.2.2"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Release History
|
||||
|
||||
## 12.0.0-beta.4 (Unreleased)
|
||||
## 12.0.0-beta.4 (2022-03-09)
|
||||
|
||||
### Other Changes
|
||||
|
||||
|
||||
@ -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()
|
||||
|
||||
|
||||
@ -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")
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.1"
|
||||
"version>=": "12.2.2"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user