- Use
package:http_image_provider
in the example application.
- Add support for setting additional http headers in
URLSessionConfiguration
.
- Add websocket support to
cupertino_api
. - Add streaming upload support, i.e., if
CupertinoClient.send()
is called with aStreamedRequest
then the data will be sent to the server incrementally. - Deprecate
Data.fromUint8List
in favor ofData.fromList
, which accepts anyList<int>
. - Disable additional analyses for generated Objective-C bindings to prevent
errors from
dart analyze
. - Throw
ClientException
when the'Content-Length'
header is invalid. - Add support for configurable caching through
URLSessionConfiguration.cache
.
- Remove experimental status from "Readme"
- Require Dart 3.0
- Require Flutter 3.10.0
- Require Dart 2.19
- Fix a reference count race with forwarded delegates.
- Add a
URLSession.sessionDescription
field.
- Restructure
package:cupertino_http
to offer a singleimport
.
- Fix a bug where the images in the example would be loaded using
dart:io
HttpClient
. CupertinoClient
throws an exception ifsend
is called afterclose
.
- Add a more complete implementation for
URLSessionTask
:priority
property - hint for host prioritization.currentRequest
property - the current request for the task (will be different thanoriginalRequest
in the face of redirects).originalRequest
property - the original request for the task.error
property - anError
object if the request failed.taskDescription
property - a developer-set description of the task.countOfBytesExpectedToSend
property - the size of the body bytes that will be sent.countOfBytesSent
property - the number of body bytes sent in the request.prefersIncrementalDelivery
property - whether to deliver the response body in one chunk (if possible) or many.
- Upgrade to ffigen ^7.2.0 and remove unnecessary casts.
- Make timeout and caching policy configurable on a per-request basis.
- Upgrade
ffi
dependency.
- Make the number of simultaneous connections allowed to the same host configurable.
- Fixes cupertino_http: Failure calling Dart_PostCObject_DL.
- Add the ability to set network service type.
- Add the ability to control multipath TCP connections.
- Set
StreamedResponse.reasonPhrase
andStreamedResponse.request
. Fixes cupertino_http: BaseResponse.request is null.
- Add the ability to control caching policy.
- Follow the project style in the example app.
- Use
runWithClient
in the example app. - Add another README example
- A single comment adjustment.
- Initial development release.