mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 13:49:07 +08:00
f9389d05c6
## 1.2.0 (2021-08-05) ### Features Added - Added `Azure::Core::IO::ProgressBodyStream` type that wraps an existing BodyStream based type stream and reports progress via callback when the stream position is updated. ### Bugs Fixed - [2647](https://github.com/Azure/azure-sdk-for-cpp/issues/2647) Make the curl transport adapter to check the connection close header. - [2474](https://github.com/Azure/azure-sdk-for-cpp/issues/2474) Fix compiling with MSVC and `/analyze`. - Make WinHTTP transport adapter to NOT use SSL/TLS for unsecured HTTP connections. ### Other Changes - Updated source code to build with Clang 11. (A community contribution, courtesy of _[davidchisnall](https://github.com/davidchisnall)_) ### Acknowledgments Thank you to our developer community members who helped to make Azure Core better with their contributions to this release: - David Chisnall _([GitHub](https://github.com/davidchisnall))_
77 lines
1.7 KiB
JSON
77 lines
1.7 KiB
JSON
{
|
|
"name": "azure-core-cpp",
|
|
"version-semver": "1.2.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/main/sdk/core/azure-core",
|
|
"license": "MIT",
|
|
"builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec",
|
|
"dependencies": [
|
|
{
|
|
"name": "openssl",
|
|
"platform": "!windows & !uwp"
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"http"
|
|
],
|
|
"features": {
|
|
"curl": {
|
|
"description": "Libcurl HTTP transport implementation",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false
|
|
},
|
|
{
|
|
"name": "curl",
|
|
"default-features": false,
|
|
"features": [
|
|
"ssl"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"http": {
|
|
"description": "All HTTP transport implementations available on the platform",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false,
|
|
"features": [
|
|
"curl"
|
|
]
|
|
},
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false,
|
|
"features": [
|
|
"curl",
|
|
"winhttp"
|
|
],
|
|
"platform": "windows & !uwp"
|
|
}
|
|
]
|
|
},
|
|
"winhttp": {
|
|
"description": "WinHTTP HTTP transport implementation",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|