Storage April Release (#3478)
* Storage April Release * update queue changelog * update vcpkg.json * update CL
This commit is contained in:
parent
39d1b844ef
commit
fe0ed7e3bb
@ -13,10 +13,10 @@ macro(GetFolderList project)
|
||||
DownloadDepVersion(sdk/core azure-core 1.2.0)
|
||||
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
|
||||
elseif(${project} STREQUAL STORAGE_COMMON)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/core azure-core 1.5.0)
|
||||
elseif(${project} STREQUAL STORAGE_BLOBS)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.2)
|
||||
DownloadDepVersion(sdk/core azure-core 1.5.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3)
|
||||
elseif(${project} STREQUAL STORAGE_DATALAKE)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.2)
|
||||
@ -25,8 +25,8 @@ macro(GetFolderList project)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.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.2)
|
||||
DownloadDepVersion(sdk/core azure-core 1.5.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3)
|
||||
endif()
|
||||
list(REMOVE_DUPLICATES BUILD_FOLDERS)
|
||||
endmacro()
|
||||
|
||||
@ -1,14 +1,10 @@
|
||||
# Release History
|
||||
|
||||
## 12.4.0-beta.2 (Unreleased)
|
||||
## 12.4.0 (2022-04-06)
|
||||
|
||||
### Features Added
|
||||
### Other changes
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
### Other Changes
|
||||
- No public changes in this release.
|
||||
|
||||
## 12.4.0-beta.1 (2022-03-09)
|
||||
|
||||
|
||||
@ -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.2" CONFIG QUIET)
|
||||
find_package(azure-storage-common-cpp "12.2.3" CONFIG QUIET)
|
||||
if(NOT azure-storage-common-cpp_FOUND)
|
||||
find_package(azure-storage-common-cpp "12.2.2" REQUIRED)
|
||||
find_package(azure-storage-common-cpp "12.2.3" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 4
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.2"
|
||||
#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)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "azure-storage-blobs-cpp",
|
||||
"version-semver": "12.4.0-beta.1",
|
||||
"version-semver": "12.4.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Blobs SDK for C++",
|
||||
"This library provides Azure Storage Blobs SDK."
|
||||
@ -11,7 +11,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.2"
|
||||
"version>=": "12.2.3"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
@PACKAGE_INIT@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(azure-storage-common-cpp "12.2.2")
|
||||
find_dependency(azure-storage-common-cpp "12.2.3")
|
||||
|
||||
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.2"
|
||||
"version>=": "12.2.3"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -1,17 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 12.3.0-beta.1 (Unreleased)
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
## 12.2.3 (2022-04-06)
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
- Fixed a bug where we got error when XML request body is too big.
|
||||
|
||||
### Other Changes
|
||||
|
||||
## 12.2.2 (2022-03-09)
|
||||
|
||||
### 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-core-cpp "1.3.1" CONFIG QUIET)
|
||||
find_package(azure-core-cpp "1.5.0" CONFIG QUIET)
|
||||
if(NOT azure-core-cpp_FOUND)
|
||||
find_package(azure-core-cpp "1.3.1" REQUIRED)
|
||||
find_package(azure-core-cpp "1.5.0" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -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 3
|
||||
#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,6 +1,6 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"version-semver": "12.2.2",
|
||||
"version-semver": "12.2.3",
|
||||
"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.3.1"
|
||||
"version>=": "1.5.0"
|
||||
},
|
||||
{
|
||||
"name": "libxml2",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(Threads)
|
||||
find_dependency(azure-core-cpp "1.3.1")
|
||||
find_dependency(azure-core-cpp "1.5.0")
|
||||
|
||||
if(NOT WIN32)
|
||||
find_dependency(LibXml2)
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-core-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "1.3.1"
|
||||
"version>=": "1.5.0"
|
||||
},
|
||||
{
|
||||
"name": "libxml2",
|
||||
|
||||
@ -1,14 +1,10 @@
|
||||
# Release History
|
||||
|
||||
## 12.0.0-beta.5 (Unreleased)
|
||||
## 12.0.0 (2022-04-06)
|
||||
|
||||
### Features Added
|
||||
### New Features
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
### Other Changes
|
||||
- This release includes all features from beta.1 to beta.4. This is the first stable release of a ground-up rewrite of our client libraries to ensure consistency, idiomatic design, productivity and an excellent developer experience. It was created following the [Azure SDK Design Guideline for C++](https://azure.github.io/azure-sdk/cpp_introduction.html).
|
||||
|
||||
## 12.0.0-beta.4 (2022-03-09)
|
||||
|
||||
|
||||
@ -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.2" CONFIG QUIET)
|
||||
find_package(azure-storage-common-cpp "12.2.3" CONFIG QUIET)
|
||||
if(NOT azure-storage-common-cpp_FOUND)
|
||||
find_package(azure-storage-common-cpp "12.2.2" REQUIRED)
|
||||
find_package(azure-storage-common-cpp "12.2.3" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#define AZURE_STORAGE_QUEUES_VERSION_MAJOR 12
|
||||
#define AZURE_STORAGE_QUEUES_VERSION_MINOR 0
|
||||
#define AZURE_STORAGE_QUEUES_VERSION_PATCH 0
|
||||
#define AZURE_STORAGE_QUEUES_VERSION_PRERELEASE "beta.5"
|
||||
#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)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "azure-storage-queues-cpp",
|
||||
"version-semver": "12.0.0-beta.4",
|
||||
"version-semver": "12.0.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Queues SDK for C++",
|
||||
"This library provides Azure Storage Queues SDK."
|
||||
@ -11,7 +11,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.2"
|
||||
"version>=": "12.2.3"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
@PACKAGE_INIT@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(azure-storage-common-cpp "12.2.2")
|
||||
find_dependency(azure-storage-common-cpp "12.2.3")
|
||||
|
||||
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.2"
|
||||
"version>=": "12.2.3"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user