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