http 0.11.1+1 http: ^0.11.1+1 copied to clipboard
A composable, Future-based API for making HTTP requests.
0.11.1+1 #
- Widen the version constraint for
stack_trace
.
0.11.1 #
- Expose the
IOClient
class which wraps adart:io
HttpClient
.
0.11.0+1 #
- Fix a bug in handling errors in decoding XMLHttpRequest responses for
BrowserClient
.
0.11.0 #
-
The package no longer depends on
dart:io
. TheBrowserClient
class inpackage:http/browser_client.dart
can now be used to make requests on the browser. -
Change
MultipartFile.contentType
fromdart:io
'sContentType
type tohttp_parser
'sMediaType
type. -
Exceptions are now of type
ClientException
rather thandart:io
'sHttpException
.
0.10.0 #
-
Make
BaseRequest.contentLength
andBaseResponse.contentLength
usenull
to indicate an unknown content length rather than -1. -
The
contentLength
parameter tonew BaseResponse
is now named rather than positional. -
Make request headers case-insensitive.
-
Make
MultipartRequest
more closely adhere to browsers' encoding conventions.