diff options
| author | Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> | 2021-07-08 00:17:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-08 00:17:17 -0700 |
| commit | 698c44440375cce33b6f671c87ad1705d943d327 (patch) | |
| tree | f1c06e46e1b04f24334b795af87317b4b3b66a7b /ports | |
| parent | b761301f77a68bbe443034f1ed6ccebbd52614e8 (diff) | |
| download | vcpkg-698c44440375cce33b6f671c87ad1705d943d327.tar.gz vcpkg-698c44440375cce33b6f671c87ad1705d943d327.zip | |
[azure-core-cpp] Update to 1.1.0 (#18779)
* [azure-core-cpp] Update to 1.1.0
## 1.1.0 (2021-07-02)
### Bugs Fixed
- Fixed a memory leak issue in `Base64Encode()`. (A community contribution, courtesy of _[jorgen](https://github.com/jorgen)_)
### Other Changes
- Made internal-only changes to support the Azure Key Vault client library.
### Acknowledgments
Thank you to our developer community members who helped to make Azure Core better with their contributions to this release:
- Jorgen Lind _([GitHub](https://github.com/jorgen))_
* [azure-storage-common-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)
### Bug Fixes
- Fixed a memory leak issue while parsing XML.
* [azure-storage-blobs-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)
### Bug Fixes
- Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob.
* [azure-storage-files-datalake-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)
### Bug Fixes
- Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob.
* [azure-storage-files-shares-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)
No API changes since `12.0.0`.
* Remove curl version from vcpkg manifest
* Update version files
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/azure-core-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-core-cpp/vcpkg.json | 5 | ||||
| -rw-r--r-- | ports/azure-storage-blobs-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-blobs-cpp/vcpkg.json | 8 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/vcpkg.json | 8 | ||||
| -rw-r--r-- | ports/azure-storage-files-datalake-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-files-datalake-cpp/vcpkg.json | 8 | ||||
| -rw-r--r-- | ports/azure-storage-files-shares-cpp/portfile.cmake | 4 | ||||
| -rw-r--r-- | ports/azure-storage-files-shares-cpp/vcpkg.json | 8 |
10 files changed, 33 insertions, 24 deletions
diff --git a/ports/azure-core-cpp/portfile.cmake b/ports/azure-core-cpp/portfile.cmake index d1e06d0b5..4f83c7daa 100644 --- a/ports/azure-core-cpp/portfile.cmake +++ b/ports/azure-core-cpp/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-core_1.0.0
- SHA512 84b1f56103677166b0bff1aa4837fed950545a4851e260f3aaf304d797d7fb270b5dc52d373fcb73de0c3e6a9366d860ff4f4d90eae9ba3f8e2ffe4eb211e3f2
+ REF azure-core_1.1.0
+ SHA512 83d8ba283179531fbd5b1e81b468b5fdb1d3aa846b2b9edd579a4e56a44f412986ad3558c98009a274e8c8fda301a5a434caf62dd990e3d9e8b07993d5218520
)
vcpkg_check_features(
diff --git a/ports/azure-core-cpp/vcpkg.json b/ports/azure-core-cpp/vcpkg.json index 8cf29fd1a..496f70b0e 100644 --- a/ports/azure-core-cpp/vcpkg.json +++ b/ports/azure-core-cpp/vcpkg.json @@ -1,12 +1,13 @@ { "name": "azure-core-cpp", - "version-semver": "1.0.0", + "version-semver": "1.1.0", "description": [ "Microsoft Azure Core SDK for C++", "This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++." ], - "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/core/azure-core", + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/core/azure-core", "license": "MIT", + "builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec", "dependencies": [ { "name": "openssl", diff --git a/ports/azure-storage-blobs-cpp/portfile.cmake b/ports/azure-storage-blobs-cpp/portfile.cmake index fa9371403..e046137a5 100644 --- a/ports/azure-storage-blobs-cpp/portfile.cmake +++ b/ports/azure-storage-blobs-cpp/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-blobs_12.0.0
- SHA512 1e7b30c99131fa69ec7a7255a6c192e47b39d62347dc417fc71934f6ff73287e1639fb8daf96a74e3e6c7414fa7a338594169e365ab731b2ea7868fbe9410aff
+ REF azure-storage-blobs_12.0.1
+ SHA512 401905e0c593a34a5985e73ef529989bd42a268c52c9b0623965e062d47667e37be3648ee7df3bdfe5f965534796c6aab87eaeb0fec261a263c036bc0ee53d23
)
vcpkg_cmake_configure(
diff --git a/ports/azure-storage-blobs-cpp/vcpkg.json b/ports/azure-storage-blobs-cpp/vcpkg.json index 01306454a..62eb9e91e 100644 --- a/ports/azure-storage-blobs-cpp/vcpkg.json +++ b/ports/azure-storage-blobs-cpp/vcpkg.json @@ -1,16 +1,18 @@ { "name": "azure-storage-blobs-cpp", - "version-semver": "12.0.0", + "version-semver": "12.0.1", "description": [ "Microsoft Azure Storage Blobs SDK for C++", "This library provides Azure Storage Blobs SDK." ], - "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-blobs", + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/storage/azure-storage-blobs", "license": "MIT", + "builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec", "dependencies": [ { "name": "azure-storage-common-cpp", - "default-features": false + "default-features": false, + "version>=": "12.0.0" }, { "name": "vcpkg-cmake", diff --git a/ports/azure-storage-common-cpp/portfile.cmake b/ports/azure-storage-common-cpp/portfile.cmake index 913075574..79a3ceda7 100644 --- a/ports/azure-storage-common-cpp/portfile.cmake +++ b/ports/azure-storage-common-cpp/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-common_12.0.0
- SHA512 3e1dc8cb7a3cbf6384f20ce263eb7cbb3ccc428ea2f1314b182d48534dfeb5094fe56316e9777389a9c8aee104f2774a6014b4e9cf1d4d90401059b458996b92
+ REF azure-storage-common_12.0.1
+ SHA512 72f345fb128888f40485112a4d8a95837f93bdd6667c532cab17c35a471c7081d7a0c72625b3853cd51ec8c06357af6235434e8876eb7850fd5f5f532b8a6fbd
)
vcpkg_cmake_configure(
diff --git a/ports/azure-storage-common-cpp/vcpkg.json b/ports/azure-storage-common-cpp/vcpkg.json index dec543c05..fa955270c 100644 --- a/ports/azure-storage-common-cpp/vcpkg.json +++ b/ports/azure-storage-common-cpp/vcpkg.json @@ -1,16 +1,18 @@ { "name": "azure-storage-common-cpp", - "version-semver": "12.0.0", + "version-semver": "12.0.1", "description": [ "Microsoft Azure Common Storage SDK for C++", "This library provides common Azure Storage-related abstractions for Azure SDK." ], - "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-common", + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/storage/azure-storage-common", "license": "MIT", + "builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec", "dependencies": [ { "name": "azure-core-cpp", - "default-features": false + "default-features": false, + "version>=": "1.0.0" }, "libxml2", { diff --git a/ports/azure-storage-files-datalake-cpp/portfile.cmake b/ports/azure-storage-files-datalake-cpp/portfile.cmake index df5b5620b..0107feffb 100644 --- a/ports/azure-storage-files-datalake-cpp/portfile.cmake +++ b/ports/azure-storage-files-datalake-cpp/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-files-datalake_12.0.0
- SHA512 481ea3e314574a66ab9ccd7fc306f9c6624f8925e2f8207899e234de218f471cb6a467c2bfe890fb56f4f3c09e9eccb41a12458caad3187d2c177e898ddaa821
+ REF azure-storage-files-datalake_12.0.1
+ SHA512 2f952f7b300b90ff1ade6165ccd9e0441a5155797334a3c327c47dd35c5e9e54fc16ee737d6dceb68f5d898358325fed9cbccecbbe2b032b791929a2ececce3c
)
vcpkg_cmake_configure(
diff --git a/ports/azure-storage-files-datalake-cpp/vcpkg.json b/ports/azure-storage-files-datalake-cpp/vcpkg.json index ffb8633ad..79a8a8b80 100644 --- a/ports/azure-storage-files-datalake-cpp/vcpkg.json +++ b/ports/azure-storage-files-datalake-cpp/vcpkg.json @@ -1,16 +1,18 @@ { "name": "azure-storage-files-datalake-cpp", - "version-semver": "12.0.0", + "version-semver": "12.0.1", "description": [ "Microsoft Azure Storage Files Data Lake SDK for C++", "This library provides Azure Storage Files Data Lake SDK." ], - "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-files-datalake", + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/storage/azure-storage-files-datalake", "license": "MIT", + "builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec", "dependencies": [ { "name": "azure-storage-blobs-cpp", - "default-features": false + "default-features": false, + "version>=": "12.0.0" }, { "name": "vcpkg-cmake", diff --git a/ports/azure-storage-files-shares-cpp/portfile.cmake b/ports/azure-storage-files-shares-cpp/portfile.cmake index 0bc5ec77e..612afb3ff 100644 --- a/ports/azure-storage-files-shares-cpp/portfile.cmake +++ b/ports/azure-storage-files-shares-cpp/portfile.cmake @@ -1,8 +1,8 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-sdk-for-cpp
- REF azure-storage-files-shares_12.0.0
- SHA512 6554c84caae7e57f7a1e1d696a75c1c7b012eae4326d9a6b6fd4381b6c6eb8db4bec83e28430c5e8f4660ca3cab7da8cdbf8b2041f72ae32a36d48b6baa0e48c
+ REF azure-storage-files-shares_12.0.1
+ SHA512 d38dcf6bca6047b15972199c2bce2ca463b9ce83106703ac5395c3b91ebc3b3ec8e4dabc63703a7fc9700102eaf222dc476625c762bd78747dfca93bd287ce3f
)
vcpkg_cmake_configure(
diff --git a/ports/azure-storage-files-shares-cpp/vcpkg.json b/ports/azure-storage-files-shares-cpp/vcpkg.json index 6f82b759f..73a2d9c82 100644 --- a/ports/azure-storage-files-shares-cpp/vcpkg.json +++ b/ports/azure-storage-files-shares-cpp/vcpkg.json @@ -1,16 +1,18 @@ { "name": "azure-storage-files-shares-cpp", - "version-semver": "12.0.0", + "version-semver": "12.0.1", "description": [ "Microsoft Azure Storage Files Shares SDK for C++", "This library provides Azure Storage Files Shares SDK." ], - "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-files-shares", + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/storage/azure-storage-files-shares", "license": "MIT", + "builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec", "dependencies": [ { "name": "azure-storage-common-cpp", - "default-features": false + "default-features": false, + "version>=": "12.0.0" }, { "name": "vcpkg-cmake", |
