vcpkg/ports/azure-core-cpp/vcpkg.json
Azure SDK Bot 620d33107c
[azure-core-cpp] Update to 1.6.0 (#24567)
## 1.6.0 (2022-05-05)

### Features Added

- Add `Azure::Core::Http::Request` constructor overload to support payload and non-buffered response.

### Bugs Fixed

- [[#3537]](https://github.com/Azure/azure-sdk-for-cpp/issues/3537) Updated field type `CurlTransportOptions.Proxy` from `std::string` to `Azure::Nullable<std::string>`. This allows libcurl to ignore the proxy settings from the environment when the string is empty.
- [[#3548]](https://github.com/Azure/azure-sdk-for-cpp/issues/3548), [[#1098]](https://github.com/Azure/azure-sdk-for-cpp/issues/1098) Improve performance of the Http transport on Windows by reusing the same session handle across all requests.

### Other Changes

- [[#3581]](https://github.com/Azure/azure-sdk-for-cpp/issues/3581) Update log level in retry policy from warning to informational.
2022-05-05 14:23:30 -07:00

77 lines
1.7 KiB
JSON

{
"name": "azure-core-cpp",
"version-semver": "1.6.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",
"dependencies": [
{
"name": "openssl",
"platform": "!windows & !uwp",
"version>=": "1.1.1n"
},
{
"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
}
]
}
}
}