v0.10.2 - 2023-12-04
- Avoid creation of possibly-uninitialized
[u8]
slices.
v0.10.1 - 2023-11-20
- Added a
tokio
feature, fixed build with theclient-legacy
feature enabled.
v0.10.0 - 2023-11-18
- Upgraded
hyper
to 1.0.
v0.9.2 - 2022-02-19
- Upgraded
parking_lot
to 0.12.
v0.9.1 - 2020-12-29
- The
hyper/http1
Cargo feature is no longer enabled by default.
v0.9.0 - 2020-12-24
- Upgraded to hyper 0.14 and tokio 1.0.
v0.8.1 - 2020-10-01
- Added
HttpsLayer
.
v0.8.0 - 2019-12-10
- Upgraded to hyper 0.13
v0.8.0-alpha.4 - 2019-09-04
- Upgraded to hyper 0.13-alpha.4.
v0.8.0-alpha.1 - 2019-09-04
- Upgraded to hyper 0.13-alpha.1.
v0.7.1 - 2019-03-01
- TLSv1.3 sessions are now only used once, in accordance with the RFC's recommendation.
v0.7.0 - 2018-11-13
- Upgraded
tokio-openssl
to 0.3. Handshake errors now returnopenssl::ssl::HandshakeError
rather thanopenssl::ssl::Error
.
v0.6.2 - 2018-11-07
- Added ALPN support. If the
h2
protocol is selected during the handshake via ALPN, the connector will automatically indicate that to Hyper via theConnected::negotiated_h2
method. TheHttpsConnector::new
method configures ALPN to support both theh2
andhttp/1.1
protocols. Code usingHttpsConnector::with_connector
will need to configure ALPN manually.
v0.6.1 - 2018-06-13
MaybeHttpsStream
now delegatesAsyncRead::read_buf
andAsyncWrite::write_buf
to support readv/writev over HTTP connections.
v0.6.0 - 2018-06-04
- Upgraded to hyper 0.12.
- The callback closure now takes a
&Destination
rather than a&URI
to match what Hyper provides to connectors.
v0.5.0 - 2018-02-18
- The
HttpsConnector::with_connector
function now takes anSslConnectorBuilder
rather than anSslConnector
due to a change in the session caching implementation. This is requried to properly support TLSv1.3.
v0.4.1 - 2018-01-11
- Stopped enabling default features for
hyper
.
v0.4.0 - 2018-01-11
- The
HttpsConnector::danger_disable_hostname_verification
method has been removed. Instead, use a callback which configures theConnectConfiguration
directly.
- Upgraded to openssl 0.10.
- The
HttpsConnector::ssl_callback
method has been renamed toHttpsConnector::set_callback
, and is passed a reference to theConnectConfiguration
rather than just theSslRef
.
Look at the release tags for information about older releases.