From 24c277a7634eb9c99afd1c263b62dc38b0be9d8f Mon Sep 17 00:00:00 2001 From: Eirik Albrigtsen Date: Wed, 10 Apr 2024 14:19:40 +0100 Subject: [PATCH] Document breaking feature removal for reqwest-middleware for #144 will edit the release object if accepted Signed-off-by: Eirik Albrigtsen --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e3537e..0fcdf1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking changes - Upgraded `reqwest` to `0.12.0` + * Removed default-features `json` and `multipart` from `reqwest` dependency + * Added `json` and `multipart` features to `reqwest-middleware` - Upgraded `matchit` to `0.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 `/a/:some_var` to `/a/{some_var}` - Removed `task_local_extensions` in favour of `http::Extensions` - - All extensions must be `Clone` now. + * All extensions must be `Clone` now. ### Changed - `RequestBuilder::try_clone` now clones the extensions.