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