chore(deps)!: update reqwest to 0.13 - #39
Merged
Merged
Conversation
Bumps reqwest 0.12.3 -> 0.13.1 and reqwest-middleware 0.4.0 -> 0.5.0. reqwest-middleware 0.4 pins reqwest ^0.12, so it has to move too. reqwest 0.13 declares an MSRV of 1.85, so rust-version goes from 1.74 to 1.85. No source changes were needed; the `stream` feature still exists in 0.13. BREAKING CHANGE: reqwest types appear in the public API, so downstream crates must move to reqwest 0.13 as well.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates
reqwestto 0.13. This is breaking for downstreams:reqwest::Response,reqwest::Errorandreqwest_middleware::ClientWithMiddlewareare all part of our public API, so anything depending on this crate has to move toreqwest0.13 at the same time. Needs a 0.11.0 release.Three version changes, and the last two are forced:
reqwest0.12.3 -> 0.13.1 (resolves 0.13.4)reqwest-middleware0.4.0 -> 0.5.0 (resolves 0.5.2). 0.4 pinsreqwest^0.12, and 0.5 is the first release on^0.13.1, so it can't stay behind.rust-version1.74 -> 1.85, becausereqwest0.13 declares an MSRV of 1.85.No source changes were needed. The
streamfeature still exists in 0.13, and nothing we use from either crate moved.Everything CI runs passes locally:
cargo build,cargo test(7 unit tests + 1 doctest),cargo clippy,cargo rustdoc --all-features, andrustfmt.