File tree 6 files changed +13
-5
lines changed
6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.4.2] - 2025-04-08
10
+
11
+ ### Added
12
+ - Deprecated ` fetch_mode_no_cors ` as it's been deprecated in reqwest.
13
+
9
14
## [ 0.4.1] - 2025-02-24
10
15
11
16
- Fixed wasm32 by disabling incompatible parts. On that target, ` ClientWithMiddleware ` is no longer
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " reqwest-middleware"
3
- version = " 0.4.1 "
3
+ version = " 0.4.2 "
4
4
authors = [" Rodrigo Gryzinski <rodrigo.gryzinski@truelayer.com>" ]
5
5
edition = " 2018"
6
6
description = " Wrapper around reqwest to allow for client middleware chains."
Original file line number Diff line number Diff line change @@ -527,6 +527,7 @@ impl RequestBuilder {
527
527
/// The [request mode][mdn] will be set to 'no-cors'.
528
528
///
529
529
/// [mdn]: https://developer.mozilla.org/en-US/docs/Web/API/Request/mode
530
+ #[ deprecated( note = "Deprecated Upstream" ) ]
530
531
pub fn fetch_mode_no_cors ( self ) -> Self {
531
532
RequestBuilder {
532
533
inner : self . inner . fetch_mode_no_cors ( ) ,
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ use reqwest_middleware::Error;
7
7
/// A [`RetryableStrategy`] has a single `handler` functions.
8
8
/// The result of calling the request could be:
9
9
/// - [`reqwest::Response`] In case the request has been sent and received correctly
10
- /// This could however still mean that the server responded with a erroneous response.
11
- /// For example a HTTP statuscode of 500
10
+ /// This could however still mean that the server responded with a erroneous response.
11
+ /// For example a HTTP statuscode of 500
12
12
/// - [`reqwest_middleware::Error`] In this case the request actually failed.
13
- /// This could, for example, be caused by a timeout on the connection.
13
+ /// This could, for example, be caused by a timeout on the connection.
14
14
///
15
15
/// Example:
16
16
///
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.5.7] - 2025-04-08
11
+
10
12
### Added
11
13
- Added support for OpenTelemetry ` 0.29 ` ([ #228 ] ( https://github.com/TrueLayer/reqwest-middleware/pull/228 ) )
12
14
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " reqwest-tracing"
3
- version = " 0.5.6 "
3
+ version = " 0.5.7 "
4
4
authors = [" Rodrigo Gryzinski <rodrigo.gryzinski@truelayer.com>" ]
5
5
edition = " 2018"
6
6
description = " Opentracing middleware for reqwest."
You can’t perform that action at this time.
0 commit comments