1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 22:51:07 +01:00
actix-net/actix-tls/CHANGES.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

# Changes
2020-09-08 19:00:07 +02:00
## Unreleased - 2020-xx-xx
* Move acceptors under `accept` module. [#238]
* Merge `actix-connect` crate under `connect` module. [#238]
* Add feature flags to enable acceptors and/or connectors individually.
[#238]: https://github.com/actix/actix-net/pull/238
2020-09-08 19:00:07 +02:00
## 2.0.0 - 2020-09-03
* `nativetls::NativeTlsAcceptor` is renamed to `nativetls::Acceptor`.
* Where possible, "SSL" terminology is replaced with "TLS".
* `SslError` is renamed to `TlsError`.
* `TlsError::Ssl` enum variant is renamed to `TlsError::Tls`.
* `max_concurrent_ssl_connect` is renamed to `max_concurrent_tls_connect`.
2020-09-08 19:00:07 +02:00
## 2.0.0-alpha.2 - 2020-08-17
* Update `rustls` dependency to 0.18
* Update `tokio-rustls` dependency to 0.14
* Update `webpki-roots` dependency to 0.20
2020-03-03 11:47:40 +01:00
## [2.0.0-alpha.1] - 2020-03-03
* Update `rustls` dependency to 0.17
* Update `tokio-rustls` dependency to 0.13
2020-03-03 11:47:40 +01:00
* Update `webpki-roots` dependency to 0.19
2019-12-11 09:53:58 +01:00
2020-09-08 19:00:07 +02:00
## [1.0.0] - 2019-12-11
2019-12-11 09:53:58 +01:00
* 1.0.0 release
2019-12-05 11:40:24 +01:00
2020-09-08 19:00:07 +02:00
## [1.0.0-alpha.3] - 2019-12-07
* Migrate to tokio 0.2
2019-12-05 11:40:24 +01:00
* Enable rustls acceptor service
* Enable native-tls acceptor service
2020-09-08 19:00:07 +02:00
## [1.0.0-alpha.1] - 2019-12-02
* Split openssl acceptor from actix-server package