| OLD | NEW |
| 1 ## 2.1.0 |
| 2 |
| 3 * Added `WebSocketChannel`, an implementation of `StreamChannel` that's backed |
| 4 by a `WebSocket`. |
| 5 |
| 6 * Deprecated `CompatibleWebSocket` in favor of `WebSocketChannel`. |
| 7 |
| 1 ## 2.0.0 | 8 ## 2.0.0 |
| 2 | 9 |
| 3 * Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's | 10 * Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's |
| 4 coming in Dart 1.14, and the `DataUri.data` field in particular was an invalid | 11 coming in Dart 1.14, and the `DataUri.data` field in particular was an invalid |
| 5 override of that field. | 12 override of that field. |
| 6 | 13 |
| 7 ## 1.1.0 | 14 ## 1.1.0 |
| 8 | 15 |
| 9 * The MIME spec says that media types and their parameter names are | 16 * The MIME spec says that media types and their parameter names are |
| 10 case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for | 17 case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 * Fixes for HTTP date formatting. | 56 * Fixes for HTTP date formatting. |
| 50 | 57 |
| 51 ## 0.0.2+1 | 58 ## 0.0.2+1 |
| 52 | 59 |
| 53 * Minor code refactoring. | 60 * Minor code refactoring. |
| 54 | 61 |
| 55 ## 0.0.2 | 62 ## 0.0.2 |
| 56 | 63 |
| 57 * Added `CompatibleWebSocket`, for platform- and API-independent support for the | 64 * Added `CompatibleWebSocket`, for platform- and API-independent support for the |
| 58 WebSocket API. | 65 WebSocket API. |
| OLD | NEW |