OLD | NEW |
| 1 ## 0.2.0 |
| 2 |
| 3 * **Breaking change**: `webSocketHandler()` now uses the |
| 4 [`WebSocketChannel`][WebSocketChannel] class defined in the |
| 5 `web_socket_channel` package, rather than the deprecated class defined in |
| 6 `http_parser`. |
| 7 |
| 8 [WebSocketChannel]: https://www.dartdocs.org/documentation/web_socket_channel/la
test/web_socket_channel/WebSocketChannel-class.html |
| 9 |
1 ## 0.1.0 | 10 ## 0.1.0 |
2 | 11 |
3 * **Breaking change**: `webSocketHandler()` now passes a | 12 * **Breaking change**: `webSocketHandler()` now passes a |
4 [`WebSocketChannel`][WebSocketChannel] to the `onConnection()` callback, | 13 [`WebSocketChannel`][WebSocketChannel] to the `onConnection()` callback, |
5 rather than a deprecated `CompatibleWebSocket`. | 14 rather than a deprecated `CompatibleWebSocket`. |
6 | 15 |
7 [WebSocketChannel]: https://www.dartdocs.org/documentation/http_parser/2.1.0/htt
p_parser/WebSocketChannel-class.html | 16 [WebSocketChannel]: https://www.dartdocs.org/documentation/http_parser/2.1.0/htt
p_parser/WebSocketChannel-class.html |
8 | 17 |
9 ## 0.0.1+5 | 18 ## 0.0.1+5 |
10 | 19 |
11 * Support `http_parser` 2.0.0. | 20 * Support `http_parser` 2.0.0. |
12 | 21 |
13 ## 0.0.1+4 | 22 ## 0.0.1+4 |
14 | 23 |
15 * Fix a link to `shelf` in the README. | 24 * Fix a link to `shelf` in the README. |
16 | 25 |
17 ## 0.0.1+3 | 26 ## 0.0.1+3 |
18 | 27 |
19 * Support `http_parser` 1.0.0. | 28 * Support `http_parser` 1.0.0. |
20 | 29 |
21 ## 0.0.1+2 | 30 ## 0.0.1+2 |
22 | 31 |
23 * Mark as compatible with version `0.6.0` of `shelf`. | 32 * Mark as compatible with version `0.6.0` of `shelf`. |
24 | 33 |
25 ## 0.0.1+1 | 34 ## 0.0.1+1 |
26 | 35 |
27 * Properly parse the `Connection` header. This fixes an issue where Firefox was | 36 * Properly parse the `Connection` header. This fixes an issue where Firefox was |
28 unable to connect. | 37 unable to connect. |
OLD | NEW |