|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [Unreleased] |
| 8 | + |
| 9 | +## [0.3.2] - 2024-06-28 |
| 10 | + |
| 11 | +### Added |
| 12 | +- Added re-export of `reqwest`. |
| 13 | +- `http2`, `rustls-tls`, and `charset` features, which simply enable those features in `reqwest`. |
| 14 | + |
| 15 | +## [0.3.1] |
| 16 | + |
| 17 | +### Fixed |
| 18 | +- Included license files in crates |
| 19 | +- Fix logging of User-Agent header in reqwest-tracing |
| 20 | + |
| 21 | +### Added |
| 22 | +- Added `with_retry_log_level` to `RetryTransientMiddleware` in reqwest-retry |
| 23 | +- Added `ClientBuilder::from_client` |
| 24 | + |
| 25 | +## [0.3.0] - 2024-04-10 |
| 26 | + |
| 27 | +### Breaking changes |
| 28 | +- Upgraded `reqwest` to `0.12.0` |
| 29 | + * Removed default-features `json` and `multipart` from `reqwest` dependency |
| 30 | + * Added `json` and `multipart` features to `reqwest-middleware` |
| 31 | +- Upgraded `matchit` to `0.8.0` |
| 32 | + * You may need to update some matches that look like `/a/:some_var` to `/a/{some_var}` |
| 33 | +- Removed `task_local_extensions` in favour of `http::Extensions` |
| 34 | + * All extensions must be `Clone` now. |
| 35 | + |
| 36 | +### Changed |
| 37 | +- `RequestBuilder::try_clone` now clones the extensions. |
| 38 | + |
| 39 | +### Added |
| 40 | +- Implemented `Service` for `ClientWithMiddleware` to have more feature parity with `reqwest`. |
| 41 | +- Added more methods like `build_split` to have more feature parity with `reqwest.` |
| 42 | +- Added more documentation |
| 43 | + |
| 44 | +### [0.2.5] - 2024-03-15 |
| 45 | + |
| 46 | +### Changed |
| 47 | +- Updated minimum version of `reqwest` to `0.11.10`. url_mut, with_url, without_url functions are added after `0.11.10`. |
| 48 | + |
| 49 | +### [0.2.4] - 2023-09-21 |
| 50 | + |
| 51 | +### Added |
| 52 | +- Added `fetch_mode_no_cors` method to `reqwest_middleware::RequestBuilder` |
| 53 | + |
| 54 | +## [0.2.3] - 2023-08-07 |
| 55 | + |
| 56 | +### Added |
| 57 | +- Added all `reqwest::Error` methods for `reqwest_middleware::Error` |
| 58 | + |
| 59 | +## [0.2.2] - 2023-05-11 |
| 60 | + |
| 61 | +### Added |
| 62 | +- `RequestBuilder::version` method to configure the HTTP version |
| 63 | + |
| 64 | +## [0.2.1] - 2023-03-09 |
| 65 | + |
| 66 | +### Added |
| 67 | +- Support for `wasm32-unknown-unknown` |
| 68 | + |
| 69 | +## [0.2.0] - 2022-11-15 |
| 70 | + |
| 71 | +### Changed |
| 72 | +- `RequestBuilder::try_clone` has a fixed function signature now |
| 73 | + |
| 74 | +### Removed |
| 75 | +- `RequestBuilder::send_with_extensions` - use `RequestBuilder::with_extensions` + `RequestBuilder::send` instead. |
| 76 | + |
| 77 | +### Added |
| 78 | +- Implementation of `Debug` trait for `RequestBuilder`. |
| 79 | +- A new `RequestInitialiser` trait that can be added to `ClientWithMiddleware` |
| 80 | +- A new `Extension` initialiser that adds extensions to each request |
| 81 | +- Adds `with_extension` method functionality to `RequestBuilder` that can add extensions for the `send` method to use. |
| 82 | + |
| 83 | +## [0.1.6] - 2022-04-21 |
| 84 | + |
| 85 | +Absolutely nothing changed |
| 86 | + |
| 87 | +## [0.1.5] - 2022-02-21 |
| 88 | + |
| 89 | +### Added |
| 90 | +- Added support for `opentelemetry` version `0.17`. |
| 91 | + |
| 92 | +## [0.1.4] - 2022-01-24 |
| 93 | + |
| 94 | +### Changed |
| 95 | +- Made `Debug` impl for `ClientWithExtensions` non-exhaustive. |
| 96 | + |
| 97 | +## [0.1.3] - 2021-10-18 |
| 98 | + |
| 99 | +### Security |
| 100 | +- remove time v0.1 dependency |
| 101 | + |
| 102 | +### Fixed |
| 103 | +- Handle the `hyper::Error(IncompleteMessage)` as a `Retryable::Transient`. |
| 104 | + |
| 105 | +## [0.1.2] - 2021-09-28 |
| 106 | +### Changed |
| 107 | +- Disabled default features on `reqwest` |
| 108 | +- Replaced `truelayer-extensions` with `task-local-extensions` |
| 109 | + |
| 110 | +## [0.1.1] |
| 111 | +### Added |
| 112 | +- New methods on `ClientWithExtensions` and `RequestBuilder` for sending requests with initial extensions. |
0 commit comments