mirror of https://github.com/fafhrd91/actix-net
3.2 KiB
3.2 KiB
Changes
Unreleased - 2021-xx-xx
3.0.0-beta.5 - 2021-03-29
- Changed
connect::ssl::rustls::RustlsConnectorServiceto return error whenDNSNameRefgeneration failed instead of panic. #296 - Remove
connect::ssl::openssl::OpensslConnectServiceFactory. #297 - Remove
connect::ssl::openssl::OpensslConnectService. #297 - Add
connect::ssl::native_tlsmodule for native tls support. #295 - Rename
accept::{nativetls => native_tls}. #295 - Remove
connect::TcpConnectServicetype. service caller expect aTcpStreamshould useconnect::ConnectServiceinstead and callConnection<T, TcpStream>::into_parts. #299
3.0.0-beta.4 - 2021-02-24
- Rename
accept::openssl::{SslStream => TlsStream}. - Add
connect::Connect::set_local_addrto attach localIpAddr. #282 connector::TcpConnectorservice will try to bind to local_addr ofIpAddrwhen given. #282
3.0.0-beta.3 - 2021-02-06
- Remove
trust-dns-protoandtrust-dns-resolver. #248 - Use
std::net::ToSocketAddrsas simple and basic default resolver. #248 - Add
Resolvetrait for custom DNS resolvers. #248 - Add
Resolver::new_customfunction to construct custom resolvers. #248 - Export
webpki_roots::TLS_SERVER_ROOTSinactix_tls::connectmod and remove the export fromactix_tls::accept#248 - Remove
ConnectTakeAddrsIter.Connect::take_addrsnow returnsConnectAddrsIter<'static>as owned iterator. #248 - Rename
Address::{host => hostname}to more accurately describe which URL segment is returned. - Update
actix-rtto2.0.0. #273
3.0.0-beta.2 - 2021-xx-xx
- Depend on stable trust-dns packages. #204
3.0.0-beta.1 - 2020-12-29
- Move acceptors under
acceptmodule. #238 - Merge
actix-connectcrate underconnectmodule. #238 - Add feature flags to enable acceptors and/or connectors individually. #238
2.0.0 - 2020-09-03
nativetls::NativeTlsAcceptoris renamed tonativetls::Acceptor.- Where possible, "SSL" terminology is replaced with "TLS".
SslErroris renamed toTlsError.TlsError::Sslenum variant is renamed toTlsError::Tls.max_concurrent_ssl_connectis renamed tomax_concurrent_tls_connect.
2.0.0-alpha.2 - 2020-08-17
- Update
rustlsdependency to 0.18 - Update
tokio-rustlsdependency to 0.14 - Update
webpki-rootsdependency to 0.20
[2.0.0-alpha.1] - 2020-03-03
- Update
rustlsdependency to 0.17 - Update
tokio-rustlsdependency to 0.13 - Update
webpki-rootsdependency to 0.19
[1.0.0] - 2019-12-11
- 1.0.0 release
[1.0.0-alpha.3] - 2019-12-07
- Migrate to tokio 0.2
- Enable rustls acceptor service
- Enable native-tls acceptor service
[1.0.0-alpha.1] - 2019-12-02
- Split openssl acceptor from actix-server package