OLD | NEW |
| 1 ## 2.0.0 |
| 2 |
| 3 * 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 |
| 5 override of that field. |
| 6 |
1 ## 1.1.0 | 7 ## 1.1.0 |
2 | 8 |
3 * Added a `DataUri` class for encoding and decoding data URIs. | |
4 | |
5 * The MIME spec says that media types and their parameter names are | 9 * The MIME spec says that media types and their parameter names are |
6 case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for | 10 case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for |
7 its parameters and its `type` and `subtype` fields are now always lowercase. | 11 its parameters and its `type` and `subtype` fields are now always lowercase. |
8 | 12 |
9 ## 1.0.0 | 13 ## 1.0.0 |
10 | 14 |
11 This is 1.0.0 because the API is stable—there are no breaking changes. | 15 This is 1.0.0 because the API is stable—there are no breaking changes. |
12 | 16 |
13 * Added an `AuthenticationChallenge` class for parsing and representing the | 17 * Added an `AuthenticationChallenge` class for parsing and representing the |
14 value of `WWW-Authenticate` and related headers. | 18 value of `WWW-Authenticate` and related headers. |
(...skipping 30 matching lines...) Expand all Loading... |
45 * Fixes for HTTP date formatting. | 49 * Fixes for HTTP date formatting. |
46 | 50 |
47 ## 0.0.2+1 | 51 ## 0.0.2+1 |
48 | 52 |
49 * Minor code refactoring. | 53 * Minor code refactoring. |
50 | 54 |
51 ## 0.0.2 | 55 ## 0.0.2 |
52 | 56 |
53 * Added `CompatibleWebSocket`, for platform- and API-independent support for the | 57 * Added `CompatibleWebSocket`, for platform- and API-independent support for the |
54 WebSocket API. | 58 WebSocket API. |
OLD | NEW |