dz_http 0.14.2-dev dz_http: ^0.14.2-dev copied to clipboard
A composable, multi-platform, Future-based API for HTTP requests.
0.14.2-dev #
- Add body data in
GET
- Make
Object?
- Make
0.14.1-dev #
- Add body data in
GET
0.13.1-dev #
0.13.0 #
- Stable null safety release.
0.13.0-nullsafety.0 #
- Migrate to null safety.
- Add
const
constructor toByteStream
. - Migrate
BrowserClient
fromblob
toarraybuffer
. - Breaking All APIs which previously allowed a
String
orUri
to be passed now require aUri
. - Breaking Added a
body
andencoding
argument toClient.delete
. This is only breaking for implementations which override that method.
0.12.2 #
- Fix error handler callback type for response stream errors to avoid masking root causes.
0.12.1 #
- Add
IOStreamedResponse
which includes the ability to detach the socket. When sending a request with anIOClient
the response will be anIOStreamedResponse
. - Remove dependency on
package:async
.
0.12.0+4 #
- Fix a bug setting the
'content-type'
header inMultipartRequest
.
0.12.0+3 #
- Documentation fixes.
0.12.0+2 #
- Documentation fixes.
0.12.0 #
New Features #
- The regular
Client
factory constructor is now usable anywhere thatdart:io
ordart:html
are available, and will give you anIoClient
orBrowserClient
respectively. - The
package:dz_http/http.dart
import is now safe to use on the web (or anywhere that eitherdart:io
ordart:html
are available).
Breaking Changes #
- In order to use or reference the
IoClient
directly, you will need to import the newpackage:dz_http/io_client.dart
import. This is typically only necessary if you are passing a customHttpClient
instance to the constructor, in which case you are already giving up support for web.
0.11.3+17 #
- Use new Dart 2 constant names. This branch is only for allowing existing code to keep running under Dart 2.
0.11.3+16 #
- Stop depending on the
stack_trace
package.
0.11.3+15 #
- Declare support for
async
2.0.0.
0.11.3+14 #
- Remove single quote ("'" - ASCII 39) from boundary characters. Causes issues with Google Cloud Storage.
0.11.3+13 #
- remove boundary characters that package:http_parser cannot parse.
0.11.3+12 #
- Don't quote the boundary header for
MultipartRequest
. This is more compatible with server quirks.
0.11.3+11 #
- Fix the SDK constraint to only include SDK versions that support importing
dart:io
everywhere.
0.11.3+10 #
- Stop using
dart:mirrors
.
0.11.3+9 #
- Remove an extra newline in multipart chunks.
0.11.3+8 #
- Properly specify
Content-Transfer-Encoding
for multipart chunks.
0.11.3+7 #
- Declare compatibility with
http_parser
3.0.0.
0.11.3+6 #
- Fix one more strong mode warning in
http/testing.dart
.
0.11.3+5 #
- Fix some lingering strong mode warnings.
0.11.3+4 #
- Fix all strong mode warnings.
0.11.3+3 #
- Support
http_parser
2.0.0.
0.11.3+2 #
-
Require Dart SDK >= 1.9.0
-
Eliminate many uses of
Chain.track
from thestack_trace
package.
0.11.3+1 #
- Support
http_parser
1.0.0.
0.11.3 #
- Add a
Client.patch
shortcut method and a matching top-levelpatch
method.
0.11.2 #
- Add a
BrowserClient.withCredentials
property.
0.11.1+3 #
- Properly namespace an internal library name.
0.11.1+2 #
- Widen the version constraint on
unittest
.
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:dz_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.