Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / tokio-stream / CHANGELOG.md
blobc475c7c398c1ef334b7bfc413328cbac1bcb415f
1 # 0.1.12 (January 20, 2022)
3 - time: remove `Unpin` bound on `Throttle` methods ([#5105])
4 - time: document that `throttle` operates on ms granularity ([#5101])
6 [#5105]: https://github.com/tokio-rs/tokio/pull/5105
7 [#5101]: https://github.com/tokio-rs/tokio/pull/5101
9 # 0.1.11 (October 11, 2022)
11 - time: allow `StreamExt::chunks_timeout` outside of a runtime ([#5036])
13 [#5036]: https://github.com/tokio-rs/tokio/pull/5036
15 # 0.1.10 (Sept 18, 2022)
17 - time: add `StreamExt::chunks_timeout` ([#4695])
18 - stream: add track_caller to public APIs ([#4786])
20 [#4695]: https://github.com/tokio-rs/tokio/pull/4695
21 [#4786]: https://github.com/tokio-rs/tokio/pull/4786
23 # 0.1.9 (June 4, 2022)
25 - deps: upgrade `tokio-util` dependency to `0.7.x` ([#3762])
26 - stream: add `StreamExt::map_while` ([#4351])
27 - stream: add `StreamExt::then` ([#4355])
28 - stream: add cancel-safety docs to `StreamExt::next` and `try_next` ([#4715])
29 - stream: expose `Elapsed` error ([#4502])
30 - stream: expose `Timeout` ([#4601])
31 - stream: implement `Extend` for `StreamMap` ([#4272])
32 - sync: add `Clone` to `RecvError` types ([#4560])
34 [#3762]: https://github.com/tokio-rs/tokio/pull/3762
35 [#4272]: https://github.com/tokio-rs/tokio/pull/4272
36 [#4351]: https://github.com/tokio-rs/tokio/pull/4351
37 [#4355]: https://github.com/tokio-rs/tokio/pull/4355
38 [#4502]: https://github.com/tokio-rs/tokio/pull/4502
39 [#4560]: https://github.com/tokio-rs/tokio/pull/4560
40 [#4601]: https://github.com/tokio-rs/tokio/pull/4601
41 [#4715]: https://github.com/tokio-rs/tokio/pull/4715
43 # 0.1.8 (October 29, 2021)
45 - stream: add `From<Receiver<T>>` impl for receiver streams ([#4080])
46 - stream: impl `FromIterator` for `StreamMap` ([#4052])
47 - signal: make windows docs for signal module show up on unix builds ([#3770])
49 [#3770]: https://github.com/tokio-rs/tokio/pull/3770
50 [#4052]: https://github.com/tokio-rs/tokio/pull/4052
51 [#4080]: https://github.com/tokio-rs/tokio/pull/4080
53 # 0.1.7 (July 7, 2021)
55 ### Fixed
57 - sync: fix watch wrapper ([#3914])
58 - time: fix `Timeout::size_hint` ([#3902])
60 [#3902]: https://github.com/tokio-rs/tokio/pull/3902
61 [#3914]: https://github.com/tokio-rs/tokio/pull/3914
63 # 0.1.6 (May 14, 2021)
65 ### Added
67 - stream: implement `Error` and `Display` for `BroadcastStreamRecvError` ([#3745])
69 ### Fixed
71 - stream: avoid yielding in `AllFuture` and `AnyFuture` ([#3625])
73 [#3745]: https://github.com/tokio-rs/tokio/pull/3745
74 [#3625]: https://github.com/tokio-rs/tokio/pull/3625
76 # 0.1.5 (March 20, 2021)
78 ### Fixed
80 - stream: documentation note for throttle `Unpin` ([#3600])
82 [#3600]: https://github.com/tokio-rs/tokio/pull/3600
84 # 0.1.4 (March 9, 2021)
86 Added
88 - signal: add `Signal` wrapper ([#3510])
90 Fixed
92 - stream: remove duplicate `doc_cfg` declaration ([#3561])
93 - sync: yield initial value in `WatchStream` ([#3576])
95 [#3510]: https://github.com/tokio-rs/tokio/pull/3510
96 [#3561]: https://github.com/tokio-rs/tokio/pull/3561
97 [#3576]: https://github.com/tokio-rs/tokio/pull/3576
99 # 0.1.3 (February 5, 2021)
101 Added
103  - sync: add wrapper for broadcast and watch ([#3384], [#3504])
105 [#3384]: https://github.com/tokio-rs/tokio/pull/3384
106 [#3504]: https://github.com/tokio-rs/tokio/pull/3504
108 # 0.1.2 (January 12, 2021)
110 Fixed
112  - docs: fix some wrappers missing in documentation ([#3378])
114 [#3378]: https://github.com/tokio-rs/tokio/pull/3378
116 # 0.1.1 (January 4, 2021)
118 Added
120  - add `Stream` wrappers ([#3343])
122 Fixed
124  - move `async-stream` to `dev-dependencies` ([#3366])
126 [#3366]: https://github.com/tokio-rs/tokio/pull/3366
127 [#3343]: https://github.com/tokio-rs/tokio/pull/3343
129 # 0.1.0 (December 23, 2020)
131  - Initial release