Storage Feb. Release (#3340)
* Storage Feb. Release * Update sdk/storage/azure-storage-queues/CHANGELOG.md
This commit is contained in:
parent
2a27c19db4
commit
116185409e
@ -13,20 +13,20 @@ 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.0.0)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
elseif(${project} STREQUAL STORAGE_BLOBS)
|
||||
DownloadDepVersion(sdk/core azure-core 1.0.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1)
|
||||
elseif(${project} STREQUAL STORAGE_DATALAKE)
|
||||
DownloadDepVersion(sdk/core azure-core 1.0.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.2.0)
|
||||
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-blobs azure-storage-blobs 12.3.0)
|
||||
elseif(${project} STREQUAL STORAGE_SHARES)
|
||||
DownloadDepVersion(sdk/core azure-core 1.0.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1)
|
||||
elseif(${project} STREQUAL STORAGE_QUEUES)
|
||||
DownloadDepVersion(sdk/core azure-core 1.0.0)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.0)
|
||||
DownloadDepVersion(sdk/core azure-core 1.3.1)
|
||||
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.1)
|
||||
endif()
|
||||
list(REMOVE_DUPLICATES BUILD_FOLDERS)
|
||||
endmacro()
|
||||
|
||||
@ -1,17 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 12.3.0 (Unreleased)
|
||||
## 12.3.0 (2022-02-14)
|
||||
|
||||
### Features Added
|
||||
|
||||
- Added `VersionId` in `SetBlobMetadataResult`.
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
### Other Changes
|
||||
|
||||
## 12.2.1 (2021-11-08)
|
||||
|
||||
### 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.1" 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.1" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
#pragma once
|
||||
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 2
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 1
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 3
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE ""
|
||||
|
||||
#define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #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.1")
|
||||
|
||||
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.0"
|
||||
"version>=": "12.2.1"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -1,15 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 12.3.0-beta.1 (Unreleased)
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
## 12.2.1 (2022-02-14)
|
||||
|
||||
### Other Changes
|
||||
|
||||
- No public changes in this release.
|
||||
|
||||
## 12.2.0 (2021-09-08)
|
||||
|
||||
### 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.0.0" CONFIG QUIET)
|
||||
find_package(azure-core-cpp "1.3.1" CONFIG QUIET)
|
||||
if(NOT azure-core-cpp_FOUND)
|
||||
find_package(azure-core-cpp "1.0.0" REQUIRED)
|
||||
find_package(azure-core-cpp "1.3.1" 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 1
|
||||
#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,12 +1,6 @@
|
||||
# Release History
|
||||
|
||||
## 12.3.0-beta.1 (Unreleased)
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
## 12.3.0 (2022-02-14)
|
||||
|
||||
### 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-blobs-cpp "12.2.0" CONFIG QUIET)
|
||||
find_package(azure-storage-blobs-cpp "12.3.0" CONFIG QUIET)
|
||||
if(NOT azure-storage-blobs-cpp_FOUND)
|
||||
find_package(azure-storage-blobs-cpp "12.2.0" REQUIRED)
|
||||
find_package(azure-storage-blobs-cpp "12.3.0" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR 12
|
||||
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 3
|
||||
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0
|
||||
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.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) \
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
@PACKAGE_INIT@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(azure-storage-blobs-cpp "12.2.0")
|
||||
find_dependency(azure-storage-blobs-cpp "12.3.0")
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-datalake-cppTargets.cmake")
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-storage-blobs-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.2.0"
|
||||
"version>=": "12.3.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
@ -1,15 +1,11 @@
|
||||
# Release History
|
||||
|
||||
## 12.0.0-beta.3 (Unreleased)
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
## 12.0.0-beta.3 (2022-02-14)
|
||||
|
||||
### Other Changes
|
||||
|
||||
- No public changes in this release.
|
||||
|
||||
## 12.0.0-beta.2 (2021-11-08)
|
||||
|
||||
### Breaking 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.1" 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.1" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@ -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.1")
|
||||
|
||||
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.0"
|
||||
"version>=": "12.2.1"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user