mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 04:59:00 +08:00
[Azure Storage] Update to November Release (#34968)
* [azure-storage-common-cpp] Update to 12.5.0 ## 12.5.0 (2023-11-07) ### Features Added - No public changes in this release. * [azure-storage-blobs-cpp] Update to 12.10.0 ## 12.10.0 (2023-11-07) ### Features Added - Features in `12.10.0-beta.1` are now generally available. * [azure-storage-files-datalake-cpp] Update to 12.9.0 ## 12.9.0 (2023-11-07) ### Features Added - Features in `12.9.0-beta.1` are now generally available. * [azure-storage-files-shares-cpp] Update to 12.8.0 ## 12.8.0 (2023-11-07) ### Features Added - Features in `12.8.0-beta.1` are now generally available. - Fixed a bug where the x-ms-file-request-intent request header was not being sent for `ShareFileClient::UploadRangeFromUri`. * [azure-storage-queues-cpp] Update to 12.2.0 ## 12.2.0 (2023-11-07) ### Features Added - New features in `12.2.0-beta.1` are now generally available.
This commit is contained in:
parent
6a3528138b
commit
fad822df2e
@ -1,8 +1,11 @@
|
||||
# NOTE: All changes made to this file will get overwritten by the next port release.
|
||||
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Azure/azure-sdk-for-cpp
|
||||
REF azure-storage-blobs_12.9.0
|
||||
SHA512 10126fa8f34357d941cc7ac031c7811cdbf5fe998d2b6741e9e97325c67df5ed9c490ec42034d9b1ba56716e7de3b7283eb9059554d32b2f4d907e839b64b59f
|
||||
REF azure-storage-blobs_12.10.0
|
||||
SHA512 652b4edf2e049b33ef37734ab3e421a7b2b8d2f497da2859fe73ae665e8fd76b360d02c9f64c42cd6dbc8baa7150a031263942fc7d6b311d2c051ccd044a0064
|
||||
)
|
||||
|
||||
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-blobs")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "NOTE: All changes made to this file will get overwritten by the next port release. Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.",
|
||||
"name": "azure-storage-blobs-cpp",
|
||||
"version-semver": "12.9.0",
|
||||
"port-version": 1,
|
||||
"version-semver": "12.10.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Blobs SDK for C++",
|
||||
"This library provides Azure Storage Blobs SDK."
|
||||
@ -12,7 +12,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.4.0"
|
||||
"version>=": "12.5.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
@ -1,13 +0,0 @@
|
||||
diff --git a/sdk/storage/azure-storage-common/CMakeLists.txt b/sdk/storage/azure-storage-common/CMakeLists.txt
|
||||
index 9e419922..ba77ab26 100644
|
||||
--- a/sdk/storage/azure-storage-common/CMakeLists.txt
|
||||
+++ b/sdk/storage/azure-storage-common/CMakeLists.txt
|
||||
@@ -97,8 +97,6 @@ target_link_libraries(azure-storage-common PUBLIC Azure::azure-core)
|
||||
|
||||
if(WIN32)
|
||||
target_link_libraries(azure-storage-common PRIVATE bcrypt webservices)
|
||||
- # C28020 and C28204 are introduced by nlohmann/json
|
||||
- target_compile_options(azure-storage-common PUBLIC /wd28204 /wd28020)
|
||||
else()
|
||||
find_package(LibXml2 REQUIRED)
|
||||
target_include_directories(azure-storage-common SYSTEM PRIVATE ${LIBXML2_INCLUDE_DIRS})
|
@ -1,10 +1,11 @@
|
||||
# NOTE: All changes made to this file will get overwritten by the next port release.
|
||||
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Azure/azure-sdk-for-cpp
|
||||
REF azure-storage-common_12.4.0
|
||||
SHA512 999bbd93b645849720d2fd4401b8f9e9f12ce31ea1362786cd1aa0392efd0a05de717d87b2db43a190c2a40f42477daddebcc00812efc4de3ccc08e7563001dd
|
||||
PATCHES
|
||||
fix-clang-on-windows.patch
|
||||
REF azure-storage-common_12.5.0
|
||||
SHA512 46c9cc4ebec54f289ba7270356da4e89e5f8e890004c7a232200b87ca33357064c2f46670a1090fe41ca6962cdbc76d2e3520bb600438cbc0f21f15cf7816f04
|
||||
)
|
||||
|
||||
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-common")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "NOTE: All changes made to this file will get overwritten by the next port release. Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.",
|
||||
"name": "azure-storage-common-cpp",
|
||||
"version-semver": "12.4.0",
|
||||
"port-version": 2,
|
||||
"version-semver": "12.5.0",
|
||||
"description": [
|
||||
"Microsoft Azure Common Storage SDK for C++",
|
||||
"This library provides common Azure Storage-related abstractions for Azure SDK."
|
||||
@ -12,7 +12,7 @@
|
||||
{
|
||||
"name": "azure-core-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "1.9.0"
|
||||
"version>=": "1.10.3"
|
||||
},
|
||||
{
|
||||
"name": "libxml2",
|
||||
|
@ -1,8 +1,11 @@
|
||||
# NOTE: All changes made to this file will get overwritten by the next port release.
|
||||
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Azure/azure-sdk-for-cpp
|
||||
REF azure-storage-files-datalake_12.8.0
|
||||
SHA512 4539b8ba806abdf71cdf82e2bdcffe1adae1d19e6ea62f72cea6ac7e0beef32895d13cff53df4afe06b53ed5740c19bba858c09f75b74cd446d5c125e36ca2b3
|
||||
REF azure-storage-files-datalake_12.9.0
|
||||
SHA512 3314adc2c43b54f3bb776b099876062dc157cb35215c8efb49c1d23474479601ab0c067f901809c9ee4bce646feabf0065e8e8b96ae77f4d0f8585e8e269294b
|
||||
)
|
||||
|
||||
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-files-datalake")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "NOTE: All changes made to this file will get overwritten by the next port release. Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.",
|
||||
"name": "azure-storage-files-datalake-cpp",
|
||||
"version-semver": "12.8.0",
|
||||
"port-version": 1,
|
||||
"version-semver": "12.9.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Files Data Lake SDK for C++",
|
||||
"This library provides Azure Storage Files Data Lake SDK."
|
||||
@ -12,7 +12,7 @@
|
||||
{
|
||||
"name": "azure-storage-blobs-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.9.0"
|
||||
"version>=": "12.10.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
@ -1,8 +1,11 @@
|
||||
# NOTE: All changes made to this file will get overwritten by the next port release.
|
||||
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Azure/azure-sdk-for-cpp
|
||||
REF azure-storage-files-shares_12.7.0
|
||||
SHA512 2482a7c437bd36e63efc8c77d917a09d73bde2bc12d49afd1e24cf0977656e991c59c15d34b52c1bd19c6988fe7c40c95b5edea8740977ffc676f3dd6758dc5e
|
||||
REF azure-storage-files-shares_12.8.0
|
||||
SHA512 a22cce4f43fd77aabdb43fdbc9ea3e5a501f5abeaafe5f5fea7e8737b6b017dc2ca3b674ac0c5f8bcda9b836af7644b3c17db050b02db5e076728047aa5c2ec0
|
||||
)
|
||||
|
||||
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-files-shares")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "NOTE: All changes made to this file will get overwritten by the next port release. Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.",
|
||||
"name": "azure-storage-files-shares-cpp",
|
||||
"version-semver": "12.7.0",
|
||||
"port-version": 1,
|
||||
"version-semver": "12.8.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Files Shares SDK for C++",
|
||||
"This library provides Azure Storage Files Shares SDK."
|
||||
@ -12,7 +12,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.4.0"
|
||||
"version>=": "12.5.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
@ -1,8 +1,11 @@
|
||||
# NOTE: All changes made to this file will get overwritten by the next port release.
|
||||
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO Azure/azure-sdk-for-cpp
|
||||
REF azure-storage-queues_12.1.0
|
||||
SHA512 98f1b44f408418e43aedf57392c79a625348bbbe516a84d1682486d77655851546e191ea409397cc5c0d822d77bfe9ee2628e9a581334abe86d478418ac0ba9d
|
||||
REF azure-storage-queues_12.2.0
|
||||
SHA512 ce0a89e3ae5e49f495904a614615906119ba09606ac2e781aae59cf2f4a00e6d4afe9bdd9675ec4cc59b50b47b5123a6333f125871df42db5d6554d341132676
|
||||
)
|
||||
|
||||
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-queues")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$comment": "NOTE: All changes made to this file will get overwritten by the next port release. Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.",
|
||||
"name": "azure-storage-queues-cpp",
|
||||
"version-semver": "12.1.0",
|
||||
"port-version": 1,
|
||||
"version-semver": "12.2.0",
|
||||
"description": [
|
||||
"Microsoft Azure Storage Queues SDK for C++",
|
||||
"This library provides Azure Storage Queues SDK."
|
||||
@ -12,7 +12,7 @@
|
||||
{
|
||||
"name": "azure-storage-common-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "12.4.0"
|
||||
"version>=": "12.5.0"
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "902107525b099bb6c915311567519dcd55bd2aea",
|
||||
"version-semver": "12.10.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "83ac6004707e784a7a57a72574548579a9ab79d0",
|
||||
"version-semver": "12.9.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "97351c3b87aae118c657334bb527c220e196aac7",
|
||||
"version-semver": "12.5.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "8a12fa7967664e0823c8ab1be3ef80ba4faf9245",
|
||||
"version-semver": "12.4.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "eef43191bf50fe79ddd687b71761765a2400a0c2",
|
||||
"version-semver": "12.9.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "980d78708b5b02d395f9bd7342c18dc35e48dcbd",
|
||||
"version-semver": "12.8.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "98ae8cc3d7bad139e05b550c17fc37da3c5c1cef",
|
||||
"version-semver": "12.8.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "7aad330cd95f2b69127ca9950d1c4295f5be937e",
|
||||
"version-semver": "12.7.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "7e74bf6adaa2794ef229e4a605d31fea0b3b19bd",
|
||||
"version-semver": "12.2.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "116fd90e1af9c32dabd414ac99ef121d6bacf0bf",
|
||||
"version-semver": "12.1.0",
|
||||
|
@ -473,28 +473,28 @@
|
||||
"port-version": 1
|
||||
},
|
||||
"azure-storage-blobs-cpp": {
|
||||
"baseline": "12.9.0",
|
||||
"port-version": 1
|
||||
"baseline": "12.10.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"azure-storage-common-cpp": {
|
||||
"baseline": "12.4.0",
|
||||
"port-version": 2
|
||||
"baseline": "12.5.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"azure-storage-cpp": {
|
||||
"baseline": "7.5.0",
|
||||
"port-version": 6
|
||||
},
|
||||
"azure-storage-files-datalake-cpp": {
|
||||
"baseline": "12.8.0",
|
||||
"port-version": 1
|
||||
"baseline": "12.9.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"azure-storage-files-shares-cpp": {
|
||||
"baseline": "12.7.0",
|
||||
"port-version": 1
|
||||
"baseline": "12.8.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"azure-storage-queues-cpp": {
|
||||
"baseline": "12.1.0",
|
||||
"port-version": 1
|
||||
"baseline": "12.2.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"azure-uamqp-c": {
|
||||
"baseline": "2023-08-07",
|
||||
|
Loading…
Reference in New Issue
Block a user