OLD | NEW |
| 1 ## 2.2.0 |
| 2 |
| 3 * `WebSocketChannel` has been moved to |
| 4 [the `web_socket_channel` package][web_socket_channel]. The implementation |
| 5 here is now deprecated. |
| 6 |
| 7 [web_socket_channel]: https://pub.dartlang.org/packages/web_socket_channel |
| 8 |
1 ## 2.1.0 | 9 ## 2.1.0 |
2 | 10 |
3 * Added `WebSocketChannel`, an implementation of `StreamChannel` that's backed | 11 * Added `WebSocketChannel`, an implementation of `StreamChannel` that's backed |
4 by a `WebSocket`. | 12 by a `WebSocket`. |
5 | 13 |
6 * Deprecated `CompatibleWebSocket` in favor of `WebSocketChannel`. | 14 * Deprecated `CompatibleWebSocket` in favor of `WebSocketChannel`. |
7 | 15 |
8 ## 2.0.0 | 16 ## 2.0.0 |
9 | 17 |
10 * Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's | 18 * Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 * Fixes for HTTP date formatting. | 64 * Fixes for HTTP date formatting. |
57 | 65 |
58 ## 0.0.2+1 | 66 ## 0.0.2+1 |
59 | 67 |
60 * Minor code refactoring. | 68 * Minor code refactoring. |
61 | 69 |
62 ## 0.0.2 | 70 ## 0.0.2 |
63 | 71 |
64 * Added `CompatibleWebSocket`, for platform- and API-independent support for the | 72 * Added `CompatibleWebSocket`, for platform- and API-independent support for the |
65 WebSocket API. | 73 WebSocket API. |
OLD | NEW |