chore(deps): Bump http to 1.4.1 via transitive reqwest 0.12 dependency#1841
Conversation
notheotherben
left a comment
There was a problem hiding this comment.
This PR has been automatically approved because it was created by @dependabot.
3e0474c to
14418cf
Compare
Bumps [http](https://github.com/hyperium/http) from 0.2.12 to 1.4.1. - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](hyperium/http@v0.2.12...v1.4.1) --- updated-dependencies: - dependency-name: http dependency-version: 1.4.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14418cf to
89453dc
Compare
|
@copilot can you fix the build to allow us to use the latest version of the http crate? Ideally we shouldn't need to depend directly on this crate and can rely on the transitive dependency instead. |
Head branch was pushed to by a user without write access
Done in 422a190. I bumped |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1841 +/- ##
==========================================
+ Coverage 88.61% 88.69% +0.07%
==========================================
Files 99 99
Lines 7779 7772 -7
==========================================
Hits 6893 6893
+ Misses 886 879 -7
🚀 New features to boost your workflow:
|
Bumps http from 0.2.12 to 1.4.1.
To use the latest
httpcrate without depending on it directly,reqwestis upgraded from 0.11 to 0.12 (which useshttp1.x internally), sohttp1.4.1 is now pulled in transitively.Changes Made
reqwest0.11 → 0.12: bringshttp1.x in transitively.httpproduction dependency fromCargo.toml.reqwestre-exports:reqwest::StatusCode(ingithub_registry.rs,update/github.rs,errors/reqwest.rs) andreqwest::header::InvalidHeaderValue. The unusedInvalidUriHumanErrorExtimpl was removed as it was dead code and the last production reference tohttp.httpto[dev-dependencies]: still required by the test mock to build areqwest::Responseviahttp::response::Builder, sincereqwestdoes not expose a response builder.Testing
cargo buildsucceedscargo clippyandcargo fmt --checkare cleanpure-testssuite passes (198 tests)