Skip to content

Commit 0f57f86

Browse files
committed
6.3.0
### Added - Connection pooling (HTTP/1.1 `keep-alive`) for `h1_client` (default). - `native-tls` (default) and `rustls` feature flags. - Only works with `h1_client`. - Isahc metrics as a response extension for `curl_client`. ### Fixed - `Box<dyn HttpClient>` no longer infinitely recurses. - `curl_client` now always correctly reads the response body. - `hyper_client` should now build correctly. - `WasmClient` fetch from worker scope now works correctly. ### Internal - Improved CI
1 parent 7b6e3d9 commit 0f57f86

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,28 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
## [6.3.0] - 2021-02-12
11+
12+
### Added
13+
- Connection pooling (HTTP/1.1 `keep-alive`) for `h1_client` (default).
14+
- `native-tls` (default) and `rustls` feature flags.
15+
- Only works with `h1_client`.
16+
- Isahc metrics as a response extension for `curl_client`.
17+
18+
### Fixed
19+
- `Box<dyn HttpClient>` no longer infinitely recurses.
20+
- `curl_client` now always correctly reads the response body.
21+
- `hyper_client` should now build correctly.
22+
- `WasmClient` fetch from worker scope now works correctly.
23+
24+
### Internal
25+
- Improved CI
26+
1027
## [6.2.0] - 2020-10-26
1128

1229
This release implements `HttpClient` for `Box<dyn HttpClient>`.
1330

14-
## Added
31+
### Added
1532
- `impl HttpClient for Box<dyn HttpClient>`
1633

1734
## [6.1.0] - 2020-10-09

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-client"
3-
version = "6.2.0"
3+
version = "6.3.0"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/http-rs/http-client"
66
documentation = "https://docs.rs/http-client"

0 commit comments

Comments
 (0)