-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimum required curl version should be updated. #4792
Labels
Azure.Core
bug
This issue requires a change to an existing behavior in the product in order to be resolved.
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
Comments
github-actions
bot
added
Azure.Core
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-team-triage
Workflow: This issue needs the team to triage.
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
labels
Jul 14, 2023
Thanks for pointing this out. We will investigate. //cc: @LarryOsterman |
RickWinter
added
bug
This issue requires a change to an existing behavior in the product in order to be resolved.
and removed
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
labels
Jul 14, 2023
RickWinter
removed
the
needs-team-triage
Workflow: This issue needs the team to triage.
label
Jul 14, 2023
github-actions
bot
added
the
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
label
Jul 14, 2023
2 tasks
azure-sdk
added a commit
to azure-sdk/vcpkg
that referenced
this issue
Aug 4, 2023
## 1.10.2 (2023-08-04) ### Bugs Fixed - [[microsoft#4792]](Azure/azure-sdk-for-cpp#4792) Only support CURL's root cert validation when CURL version is >= 7.77.0.
JavierMatosD
pushed a commit
to microsoft/vcpkg
that referenced
this issue
Aug 7, 2023
## 1.10.2 (2023-08-04) ### Bugs Fixed - [[#4792]](Azure/azure-sdk-for-cpp#4792) Only support CURL's root cert validation when CURL version is >= 7.77.0.
kou
added a commit
to apache/arrow
that referenced
this issue
Aug 30, 2023
### Rationale for this change We want to use the Azure SDK for C++ to read/write to Azure blob storage. Obviously this is pretty important for building an `AzureFileSystem`. ### What changes are included in this PR? Builds the the relevant parts of the azure SDK as a cmake external project. Adds a couple of simple tests that just assert that the Azure SDK is working and a couple of lines in `AzureFileSystem` to initialise the blob storage client to ensure the build is working correctly in all environments. I started with the build setup from #12914 but I did make few changes. 1. Although its atypical for this project we chose to switch from cmake's `ExternalProject` to `FetchContent`. `FetchContent` is recomended by the Azure docs https://github.com/Azure/azure-sdk-for-cpp#cmake-project--fetch-content. It also solves a few problems including: automatically linking system curl and ssl instead of bootstrapping vcpkg and installing curl and ssl from there. 2. Only build one version of the Azure SDK for C++ because it contains all the components. Previously we were unnecessarily building 5 different versions of the whole thing on top of each other. This created race conditions for which version each component came from. 3. We are using `azure-core_1.10.2` which is a very recent version. There are a couple of important reasons for this 1. [an important managed identity fix](Azure/azure-sdk-for-cpp#4723), 2. [fixed support for curl versions < 7.71.0](Azure/azure-sdk-for-cpp#4792). There will be follow up PRs to enable Azure in the manylinux builds. We need to update `vcpkg` first so we can get a version of the Azure SDK which contains [an important managed identity fix](Azure/azure-sdk-for-cpp#4723). ### Are these changes tested? Yes. There is a simple test that just runs the Azure client against azurite. Additionally just initialising the client in `AzureFileSystem` goes a long way towards ensuring the build is working. ### Are there any user-facing changes? No * Closes: #29847 Lead-authored-by: Thomas Newton <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Co-authored-by: Antoine Pitrou <[email protected]> Co-authored-by: shefali singh <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Azure.Core
bug
This issue requires a change to an existing behavior in the product in order to be resolved.
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
We specify the minimum supported version of curl as 7.44 in
azure-sdk-for-cpp/sdk/core/azure-core/CMakeLists.txt
Line 31 in 6c616bd
azure-sdk-for-cpp/sdk/core/azure-core/src/http/curl/curl.cpp
Line 2318 in 6c616bd
CURLOPT_CAINFO_BLOB
which is not available until 7.77.The minimum version should be updated and tests should use it.
The text was updated successfully, but these errors were encountered: