Releases: TrueLayer/reqwest-middleware
Releases · TrueLayer/reqwest-middleware
reqwest-tracing-v0.5.0
Breaking changes
- Upgraded
reqwest-middleware
to0.3.0
. - Removed support for
opentelemetry
0.13 to 0.19 - The keys emitted by the crate now match the stable Semantic Conventions for HTTP Spans.
Changed
- The keys emitted by the crate now match the stable Semantic Conventions for HTTP Spans.
- Opentelemetry features are now additive.
reqwest-retry-v0.5.0
Breaking changes
- Upgraded
reqwest-middleware
to0.3.0
.
reqwest-middleware-v0.3.0
Breaking changes
- Upgraded
reqwest
to0.12.0
- Removed default-features
json
andmultipart
fromreqwest
dependency - Added
json
andmultipart
features toreqwest-middleware
- Removed default-features
- Upgraded
matchit
to0.8.0
- You may need to update some matches that look like
/a/:some_var
to/a/{some_var}
- You may need to update some matches that look like
- Removed
task_local_extensions
in favour ofhttp::Extensions
- All extensions must be
Clone
now.
- All extensions must be
Changed
RequestBuilder::try_clone
now clones the extensions.
Added
- Implemented
Service
forClientWithMiddleware
to have more feature parity withreqwest
. - Added more methods like
build_split
to have more feature parity withreqwest.
- Added more documentation