Releases: rustls/hyper-rustls
Releases · rustls/hyper-rustls
v/0.27.3
What's Changed
- fix: add rustls-platform-verifier flag for importing ConfigBuilderExt by @junkurihara in #276
- docs: add a feature rustls-platform-verifier in the list of README.md by @junkurihara in #277
- Bump seanmiddleditch/gha-setup-ninja from 4 to 5 by @dependabot in #278
- Bump MSRV to 1.70 (for tokio 1.39) by @djc in #281
- Builder fixes by @Gelbpunkt in #283
- enable
rustls-platform-verifier
for docs.rs by @flisky in #279 - Upgrade to rustls-native-certs 0.8 by @djc in #285
0.27.2
0.27.1
Added
- New
ConnectorBuilder::with_server_name_resolver()
fn for specifying an implementation of theResolveServerName
trait to dynamically resolve the subject name used when verifying a server's certificate. - New
fips
feature flag for enabling theaws-lc-rs
Rustls crypto provider in FIPS mode.
Changed
ConnectorBuilder::with_server_name()
is now deprecated. Existing usages should be replaced withConnectorBuilder::with_server_name_resolver()
and aFixedServerNameResolver
.
What's Changed
- Add feature flag for enabling FIPS. by @tobz in #268
- Support custom server name resolution by @sfackler in #269
- Cargo: v0.27.0 -> v0.27.1 by @cpu in #270
New Contributors
Full Changelog: v/0.27.0...v/0.27.1
0.27.0
Changed
- Rustls updated to 0.23
- Default cryptography provider changed to
aws-lc-rs
to match upstream Rustls project. Note that this has some implications on platform support and build-time tool requirements such ascmake
on all platforms andnasm
on Windows.
Support for ring continues to be available: set thering
crate feature.
Added
- New
with_platform_verifier
connector builder fns for using rustls-platform-verifier for certificate verification. Requires the optionalrustls-platform-verifier
feature be enabled. - New
HttpsConnector::builder
fn for conveniently constructing aConnectorBuilder
.
Changelog
- Add built-in support for rustls-platform-verifier by @djc in #253
- Cargo.toml: add aws-lc-rs feature as crypto backend by @BiagioFesta in #255
- feat: add a builder() method to HttpsConnector by @Fishrock123 in #259
- 0.27.0 preparation, Rustls 0.23 update by @cpu in #266
New Contributors
- @BiagioFesta made their first contribution in #255
- @Fishrock123 made their first contribution in #259
Full Changelog: v/0.26.0...v/0.27.0
0.26.0
- The
hyper
crate dependency has been updated to 1.0.hyper-rustls
now uses the newhyper-util
crate to replace functionality removed fromhyper
. - The
Acceptor
API has been removed and relevant examples updated. Hyper 1.0 has library consumers handle binding sockets and accepting connections themselves, removing the need for theAcceptor
API. Seeexamples/server.rs
for an up to date example for accepting connections. - The
tokio-runtime
feature has been removed -hyper-rustls
depends onhyper-util
, and thetokio
feature in hyper-util is required for the necessary IO adapter traits. Tokio was already a hard dependency of this crate.
What's Changed
- Update hyper to 1.x and integrate with hyper-util by @Gelbpunkt in #232
New Contributors
- @Gelbpunkt made their first contribution in #232
Full Changelog: v/0.25.0...v/0.26.0
0.25.0
- The Rustls dependency has been updated to 0.22
- The
acceptor
module is now public. - The
TlsStream
type now hasio
andconnection
accessor methods for getting a reference to the underlying I/O stream andrustls::ServerConnection
. - A new
AcceptorBuilder::with_connector
method is added for taking a generic acceptor implementingAccept
. ConnectorBuilder::enable_all_versions
has been fixed to advertise the correct ALPN values based on enabled crate features.ConnectorBuilder::with_native_roots
has been updated to be fallible, allowing a failure to load native roots to be handled by the caller instead of producing a panic.
What's Changed
- Update webpki-roots requirement from 0.23 to 0.24 by @dependabot in #212
- Disable unnecessary default features from futures-util by @djc in #213
- deps: update webpki-roots v0.24 -> 0.25 by @cpu in #215
- Acceptor improvements by @djc in #219
- Bump actions/checkout from 3 to 4 by @dependabot in #220
- add TlsAcceptor::with_acceptor method by @MarinPostma in #221
- Connector:
enable_all_versions
with matching alpn vs features by @TimLuq in #224 - Prepare 0.24.2 release by @djc in #225
- ci: check semver compat by @cpu in #226
- Fix build status badge and update Readme by @atouchet in #227
- Remove undocumented panic in with_native_roots by @kayabaNerve in #228
- Update to rustls alpha releases by @djc in #233
- Update to rustls 0.22.0 alpha.6 by @tottoto in #235
- hyper-rustls 0.25 prep, rustls 0.22 update by @cpu in #242
- Style tweaks by @djc in #245
New Contributors
- @MarinPostma made their first contribution in #221
- @TimLuq made their first contribution in #224
- @kayabaNerve made their first contribution in #228
- @tottoto made their first contribution in #235
Full Changelog: v/0.24.1...v/0.25.0
0.24.1
- Add
TlsAcceptor
API for implementing a basic rustls server (#186, thanks to @Licenser) - Add
Https::Connector::enforce_https()
helper method (#191, thanks to @jjant) - Link documentation from Cargo manifest (#204, thanks to @khuey)
- Update repo URL and use SPDX for license (#202, thanks to @atouchet)
- Bump MSRV to 1.60 (#205)
Thanks to all contributors on behalf of the rustls team (@ctz, @cpu and @djc)!
v/0.24.0
Release notes
- Upgrade to rustls 0.21.0, tokio-rustls 0.24.0 and webpki-roots 0.23.0.
- Add ConnectorBuilder::enable_all_versions() helper.
What's Changed
- tests: support CARGO_TARGET_DIR env variable by @MarcoIeni in #184
- Apply clippy suggestions for Rust 1.67 by @djc in #190
- Adding steps to run the examples by @RichardoC in #189
- fix: allow example server http/1.0 ALPN. by @cpu in #193
- small integration test improvements. by @cpu in #194
- CI: update workflow actions. by @cpu in #196
- CI: replace ubuntu 18.04 w/ 20.04. by @cpu in #197
- Refresh example certificates by @djc in #174
- Add ConnectorBuilder::enable_all_versions() helper by @djc in #171
- hyper-rustls v0.24.0 w/ rustls 0.21.0 + tokio-rustls 0.24.0 by @cpu in #199
- Prepare 0.24.0 release by @djc in #201
New Contributors
- @MarcoIeni made their first contribution in #184
- @RichardoC made their first contribution in #189
Full Changelog: v/0.23.2...v/0.24.0
v/0.23.2
Release notes
- Strip brackets from IPv6 addresses in the servername. Thanks to @digitwolf.
What's Changed
- Disable clippy lint for enum variant sizes by @djc in #180
- fix: can't resolve ip address with square brackets by @digitwolf in #182
- Prepare 0.23.2 by @djc in #183
New Contributors
- @digitwolf made their first contribution in #182
Full Changelog: v/0.23.1...v/0.23.2
v/0.23.1
Releases notes
- Allow overriding the servername. Thanks to @MikailBag.
What's Changed
- Document dependency on
http2
feature by @tgeoghegan in #163 - Use server example based on warp tls by @pickfire in #147
- Update rustls-pemfile requirement from 0.2.1 to 1.0.0 by @dependabot in #168
- Bump MSRV to 1.56.1 by @djc in #178
- Allow overriding server name by @MikailBag in #177
- Prepare 0.23.1 by @djc in #179
New Contributors
- @tgeoghegan made their first contribution in #163
- @pickfire made their first contribution in #147
- @dependabot made their first contribution in #168
- @MikailBag made their first contribution in #177
Full Changelog: v/0.23.0...v/0.23.1