diff --git a/rhttp/CHANGELOG.md b/rhttp/CHANGELOG.md index 96e795e..b19dc1c 100644 --- a/rhttp/CHANGELOG.md +++ b/rhttp/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.7.2 + +- feat: add `keepAliveTimeout`, `keepAlivePing` to new `TimeoutSettings` +- **DEPRECATED**: `timeout` and `connectTimeout` moved to `TimeoutSettings` + ## 0.7.1 - fix: export `RhttpInvalidCertificateException`, `RhttpConnectionException` diff --git a/rhttp/README.md b/rhttp/README.md index f1c738e..ddea255 100644 --- a/rhttp/README.md +++ b/rhttp/README.md @@ -269,7 +269,7 @@ This should only be called during app start to avoid blocking the UI thread. final client = RhttpClient.createSync(); ``` -#### ➤ Keep-Alive +### ➤ Keep-Alive By default, connections are not kept alive. On HTTP2, the same connection is reused for multiple requests that are done on the same time, but the socket diff --git a/rhttp/pubspec.yaml b/rhttp/pubspec.yaml index 50614bc..0b03af7 100644 --- a/rhttp/pubspec.yaml +++ b/rhttp/pubspec.yaml @@ -1,6 +1,6 @@ name: rhttp description: Make HTTP requests using Rust for Flutter developers. It uses FFI to call Rust functions from Dart. On the Rust side, it uses reqwest to make HTTP requests. -version: 0.7.1 +version: 0.7.2 repository: https://github.com/Tienisto/rhttp topics: - http