Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / http-body / CHANGELOG.md
blob4708a20075eefb60c859a1459f0fb125e84bcb41
1 # Unreleased
3 None.
5 # 0.4.5 (May 20, 2022)
7 - Add `String` impl for `Body`.
8 - Add `Limited` body implementation.
10 # 0.4.4 (October 22, 2021)
12 - Add `UnsyncBoxBody` and `Body::boxed_unsync`.
14 # 0.4.3 (August 8, 2021)
16 - Implement `Default` for `BoxBody`.
18 # 0.4.2 (May 8, 2021)
20 - Correctly override `Body::size_hint` and `Body::is_end_stream` for `Empty`.
21 - Add `Full` which is a body that consists of a single chunk.
23 # 0.4.1 (March 18, 2021)
25 - Add combinators to `Body`:
26   - `map_data`: Change the `Data` chunks produced by the body.
27   - `map_err`: Change the `Error`s produced by the body.
28   - `boxed`: Convert the `Body` into a boxed trait object.
29 - Add `Empty`.
31 # 0.4.0 (December 23, 2020)
33 - Update `bytes` to v1.0.
35 # 0.3.1 (December 13, 2019)
37 - Implement `Body` for `http::Request<impl Body>` and `http::Response<impl Body>`.
39 # 0.3.0 (December 4, 2019)
41 - Rename `next` combinator to `data`.
43 # 0.2.0 (December 3, 2019)
45 - Update `http` to v0.2.
46 - Update `bytes` to v0.5.
48 # 0.2.0-alpha.3 (October 1, 2019)
50 - Fix `Body` to be object-safe.
52 # 0.2.0-alpha.2 (October 1, 2019)
54 - Add `next` and `trailers` combinator methods.
56 # 0.2.0-alpha.1 (August 20, 2019)
58 - Update to use `Pin` in `poll_data` and `poll_trailers`.
60 # 0.1.0 (May 7, 2019)
62 - Initial release