-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hi, I'd like to ask for new releases for the middleware crates: reqwest-middleware 0.4.0, reqwest-retry 0.7.0 and reqwest-tracing 0.5.4. In [uv](https://github.com/astral-sh/uv), we're currently using a git dependency for #159, and we'd like to move to a crates.io dependency (astral-sh/uv#8932). I've bump reqwest-middleware and reqwest-retry according to being breaking changes in the error type, while requiring reqwest-middleware `>0.3.0, <0.5.0` in reqwest-retry and reqwest-tracing for minimal downstream disruption.
- Loading branch information
Showing
6 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reqwest-middleware" | ||
version = "0.3.3" | ||
version = "0.4.0" | ||
authors = ["Rodrigo Gryzinski <[email protected]>"] | ||
edition = "2018" | ||
description = "Wrapper around reqwest to allow for client middleware chains." | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reqwest-retry" | ||
version = "0.7.1" | ||
version = "0.7.0" | ||
authors = ["Rodrigo Gryzinski <[email protected]>"] | ||
edition = "2018" | ||
description = "Retry middleware for reqwest." | ||
|
@@ -14,7 +14,7 @@ default = ["tracing"] | |
tracing = ["dep:tracing"] | ||
|
||
[dependencies] | ||
reqwest-middleware = { version = "0.3.0", path = "../reqwest-middleware" } | ||
reqwest-middleware = { version = ">0.3.0, <0.5.0", path = "../reqwest-middleware" } | ||
|
||
anyhow = "1.0.0" | ||
async-trait = "0.1.51" | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reqwest-tracing" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
authors = ["Rodrigo Gryzinski <[email protected]>"] | ||
edition = "2018" | ||
description = "Opentracing middleware for reqwest." | ||
|
@@ -23,7 +23,7 @@ opentelemetry_0_26 = ["opentelemetry_0_26_pkg", "tracing-opentelemetry_0_27_pkg" | |
deprecated_attributes = [] | ||
|
||
[dependencies] | ||
reqwest-middleware = { version = "0.3.0", path = "../reqwest-middleware" } | ||
reqwest-middleware = { version = ">0.3.0, <0.5.0", path = "../reqwest-middleware" } | ||
|
||
anyhow = "1.0.70" | ||
async-trait = "0.1.51" | ||
|