Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: pkg/http/CHANGELOG.md

Issue 299483002: Support a user-supplied dart:io client in pkg/http. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/http/lib/src/io.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.
OLDNEW
« no previous file with comments | « no previous file | pkg/http/lib/src/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698