| OLD | NEW |
| 1 ## 0.11.0+1 |
| 2 |
| 3 * Fix a bug in handling errors in decoding XMLHttpRequest responses for |
| 4 `BrowserClient`. |
| 5 |
| 1 ## 0.11.0 | 6 ## 0.11.0 |
| 2 | 7 |
| 3 * The package no longer depends on `dart:io`. The `BrowserClient` class in | 8 * The package no longer depends on `dart:io`. The `BrowserClient` class in |
| 4 `package:http/browser_client.dart` can now be used to make requests on the | 9 `package:http/browser_client.dart` can now be used to make requests on the |
| 5 browser. | 10 browser. |
| 6 | 11 |
| 7 * Change `MultipartFile.contentType` from `dart:io`'s `ContentType` type to | 12 * Change `MultipartFile.contentType` from `dart:io`'s `ContentType` type to |
| 8 `http_parser`'s `MediaType` type. | 13 `http_parser`'s `MediaType` type. |
| 9 | 14 |
| 10 * Exceptions are now of type `ClientException` rather than `dart:io`'s | 15 * Exceptions are now of type `ClientException` rather than `dart:io`'s |
| 11 `HttpException`. | 16 `HttpException`. |
| 12 | 17 |
| 13 ## 0.10.0 | 18 ## 0.10.0 |
| 14 | 19 |
| 15 * Make `BaseRequest.contentLength` and `BaseResponse.contentLength` use `null` | 20 * Make `BaseRequest.contentLength` and `BaseResponse.contentLength` use `null` |
| 16 to indicate an unknown content length rather than -1. | 21 to indicate an unknown content length rather than -1. |
| 17 | 22 |
| 18 * The `contentLength` parameter to `new BaseResponse` is now named rather than | 23 * The `contentLength` parameter to `new BaseResponse` is now named rather than |
| 19 positional. | 24 positional. |
| 20 | 25 |
| 21 * Make request headers case-insensitive. | 26 * Make request headers case-insensitive. |
| 22 | 27 |
| 23 * Make `MultipartRequest` more closely adhere to browsers' encoding conventions. | 28 * Make `MultipartRequest` more closely adhere to browsers' encoding conventions. |
| OLD | NEW |