restio 0.7.1 restio: ^0.7.1 copied to clipboard
A simple but powerful HTTP Client for Dart inspired by OkHttp.
0.7.1 #
- Fix parse uri bug.
0.7.0 #
- SSE Automatic Reconnect supported.
- Add RedirectPolicy support.
- Add some extension methods to help you.
- Minor bug fixes and performance improvements.
- [Breaking]: Remove
MemoryCacheStore
,DiskCacheStore
andDiskLruCacheStore
. UseLruCacheStore.memory()
orLruCacheStore.local()
. - [Breaking]: Rename
Event
toSseEvent
. - [Breaking]: Remove
ClientAdapter
class.
0.6.0 #
- Code refactoring.
- Add DiskLruCacheStore class.
- Fix Hawk Auth bug.
- Fix DNS bug.
- [Breaking]:
Restio(isHttp2: true)
->Restio(http2: true)
. - [Breaking]:
await response.body.close();
->await response.close();
. - [Breaking]: Drop
cookies
parameter fromsave
method inCookieJar
. Useresponse.cookies
instead. - [Breaking]: Drop
data
attribute fromresponse.body
. - [Breaking]: Add (Request/Response) parameter to
ProgressCallback
. - [Breaking]: Use
response.body.data
to get data stream.
0.5.2 #
- Fix Request Query duplication bug.
0.5.1 #
- Fix Request Query bug.
0.5.0 #
- Fix various bugs.
- Add RequestUri class.
- Rename various methods.
0.4.3 #
- Fix various bugs.
0.4.2 #
- Fix SSE connection bug.
0.4.1 #
- Improvements.
0.4.0 #
- Add support to Cache (RFC 7234).
- Add support to SSE (Server-Sent Event).
0.3.5 #
- Fix DNS bug.
- Fix Brotli decompression bug.
0.3.4 #
- Fix DNS-over-HTTPS issue.
0.3.3 #
- Fix DNS bugs.
0.3.2 #
- Fix DNS timeout bug.
0.3.1 #
- Add 'dnsIp' property.
0.3.0 #
- Add support to Brotli decode.
0.2.0+1 #
- Lint fixes.
0.2.0 #
- DNS;
- Bug fixes.
0.1.0 #
- Initial version.