Releases: cfug/dio
Releases · cfug/dio
dio 5.3.4
What's new
- Raise warning for
Map
s other thanMap<String, dynamic>
when encoding request data. - Improve exception messages.
- Allow
ResponseDecoder
andRequestEncoder
to be async. - Ignores
Duration.zero
timeouts.
native_dio_adapter 1.1.0
What's new
- Bump
cronet_http
version. - Minimal required Dart version is now 3.1.
- Minimal required Flutter version is now 3.13.0.
cookie_manager 3.1.1
What's new
- Fix
FileSystemException
when saving redirect cookies without a properhost
.
dio 5.3.3
What's new
- Fix failing requests throw
DioException
s with.unknown
instead of.connectionError
onSocketException
. - Removes the accidentally added
options
argument forOptions.compose
. - Fix wrong formatting of multi-value header in
BrowserHttpClientAdapter
. - Add warning in debug mode when trying to send data with a
GET
request in web. - Reduce cases in which browsers would trigger a CORS preflight request.
- Add warnings in debug mode when using
sendTimeout
andonSendProgress
with an empty request body. - Fix
receiveTimeout
not working correctly on web. - Fix
ImplyContentTypeInterceptor
can be removed byInterceptors.clear()
by default.
native_dio_adapter 1.0.0+2
What's new
- Add topics to packages.
http2_adapter 2.3.1+1
What's new
- Add topics to packages.
dio 5.3.2
What's new
- Revert removed
download
forDioMixin
. - Fix for
Dio.download
not cleaning the file on data handling error.
cookie_manager 3.1.0+1
What's new
- Add topics to packages.
dio 5.3.1
What's new
- Improve package descriptions and code formats.
- Improve comments.
- Fix error when cloning
MultipartFile
fromFormData
with regression test. - Deprecate
MulitpartFile
constructor in favorMultipartFile.fromStream
. - Add
FormData.clone
.
http2_adapter 2.3.1
What's new
- Fix cached
initFuture
not remove when throw exception.