1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# 0.2.3 (March 25, 2020)
* Fix server being able to accept `CONNECT` requests without `:scheme` or `:path`.
* Fix receiving a GOAWAY frame from updating the recv max ID, it should only update max send ID.
# 0.2.2 (March 3, 2020)
* Reduce size of `FlowControl` and `RecvStream`.
# 0.2.1 (December 6, 2019)
* Relax `Unpin` bounds on the send `Buf` generic.
# 0.2.0 (December 3, 2019)
* Add `server::Connection::set_initial_window_size` and `client::Connection::set_initial_window_size` which can adjust the `INITIAL_WINDOW_SIZE` setting on an existing connection (#421).
* Update to `http` v0.2.
* Update to `tokio` v0.2.
* Change `unstable-stream` feature to `stream`.
* Change `ReserveCapacity` to `FlowControl` (#423).
* Remove `From<io::Error>` for `Error`.
# 0.2.0-alpha.3 (October 1, 2019)
* Update to futures `0.3.0-alpha.19`.
* Update to tokio `0.2.0-alpha.6`.
# 0.2.0-alpha.2 (September 20, 2019)
* Add server support for `PUSH_PROMISE`s (#327).
* Update to tokio `0.2.0-alpha.5`.
* Change `stream` feature to `unstable-stream`.
# 0.2.0-alpha.1 (August 30, 2019)
* Update from `futures` 0.1 to `std::future::Future`.
* Update `AsyncRead`/`AsyncWrite` to `tokio-io` 0.2 alpha.
* Change `Stream` implementations to be optional, default disabled. Specific async and poll functions are now inherent, and `Stream` can be re-enabled with the `stream` cargo feature.
# 0.1.25 (June 28, 2019)
* Fix to send a `RST_STREAM` instead of `GOAWAY` if receiving a frame on a previously closed stream.
* Fix receiving trailers without an end-stream flag to be a stream error instead of connection error.
# 0.1.24 (June 17, 2019)
* Fix server wrongly rejecting requests that don't have an `:authority` header (#372).
# 0.1.23 (June 4, 2019)
* Fix leaking of received DATA frames if the `RecvStream` is never polled (#368).
# 0.1.22 (June 3, 2019)
* Fix rare panic when remote sends `RST_STREAM` or `GOAWAY` for a stream pending window capacity (#364).
# 0.1.21 (May 30, 2019)
* Fix write loop when a header didn't fit in write buffer.
# 0.1.20 (May 16, 2019)
* Fix lifetime conflict for older compilers.
# 0.1.19 (May 15, 2019)
* Fix rare crash if `CONTINUATION` frame resumed in the middle of headers with the same name.
* Fix HPACK encoder using an old evicted index for repeated header names.
# 0.1.18 (April 9, 2019)
* Fix `server::Connection::abrupt_shutdown` to no longer return the same error the user sent (#352).
# 0.1.17 (March 12, 2019)
* Add user PING support (#346).
* Fix notifying a `RecvStream` task if locally sending a reset.
* Fix connections "hanging" when all handles are dropped but some streams had been reset.
# 0.1.16 (January 24, 2019)
* Log header values when malformed (#342).
# 0.1.15 (January 12, 2019)
* Fix race condition bug related to shutting down the client (#338).
# 0.1.14 (December 5, 2018)
* Fix closed streams to always return window capacity to the connection (#334).
* Fix locking when `Debug` printing an `OpaqueStreamRef` (#333).
* Fix inverted split for DATA frame padding (#330).
* Reduce `Debug` noise for `Frame` (#329).
# 0.1.13 (October 16, 2018)
* Add client support for Push Promises (#314).
* Expose `io::Error` from `h2::Error` (#311)
* Misc bug fixes (#304, #309, #319, #313, #320).
# 0.1.12 (August 8, 2018)
* Fix initial send window size (#301).
* Fix panic when calling `reserve_capacity` after connection has been closed (#302).
* Fix handling of incoming `SETTINGS_INITIAL_WINDOW_SIZE`. (#299)
# 0.1.11 (July 31, 2018)
* Add `stream_id` accessors to public API types (#292).
* Fix potential panic when dropping clients (#295).
* Fix busy loop when shutting down server (#296).
# 0.1.10 (June 15, 2018)
* Fix potential panic in `SendRequest::poll_ready()` (#281).
* Fix infinite loop on reset connection during prefix (#285).
# 0.1.9 (May 31, 2018)
* Add `poll_reset` to `SendResponse` and `SendStream` (#279).
# 0.1.8 (May 23, 2018)
* Fix client bug when max streams is reached. (#277)
# 0.1.7 (May 14, 2018)
* Misc bug fixes (#266, #273, #261, #275).
# 0.1.6 (April 24, 2018)
* Misc bug fixes related to stream management (#258, #260, #262).
# 0.1.5 (April 6, 2018)
* Fix the `last_stream_id` sent during graceful GOAWAY (#254).
# 0.1.4 (April 5, 2018)
* Add `initial_connection_window_size` to client and server `Builder`s (#249).
* Add `graceful_shutdown` and `abrupt_shutdown` to `server::Connection`,
deprecating `close_connection` (#250).
# 0.1.3 (March 28, 2018)
* Allow configuring max streams before the peer's settings frame is
received (#242).
* Fix HPACK decoding bug with regards to large literals (#244).
* Fix state transition bug triggered by receiving a RST_STREAM frame (#247).
# 0.1.2 (March 13, 2018)
* Fix another bug relating to resetting connections and reaching
max concurrency (#238).
# 0.1.1 (March 8, 2018)
* When streams are dropped, close the connection (#222).
* Notify send tasks on connection error (#231).
* Fix bug relating to resetting connections and reaching max concurrency (#235).
* Normalize HTTP request path to satisfy HTTP/2.0 specification (#228).
* Update internal dependencies.
# 0.1.0 (Jan 12, 2018)
* Initial release
|