Releases: actix/actix-net
Releases · actix/actix-net
actix-server: v2.0.0-beta.5
- Server shutdown would notify all workers to exit regardless if shutdown is graceful. This would make all worker shutdown immediately in force shutdown case. #333
actix-utils: v3.0.0
- No significant changes from
3.0.0-beta.4
.
actix-service: v2.0.0
- Removed pipeline and related structs/functions. #335
actix-utils: v3.0.0-beta.4
- Add
future::Either
type. #305
actix-utils: v3.0.0-beta.3
actix-server: v2.0.0-beta.4
- Prevent panic when
shutdown_timeout
is very large. f9262db
actix-rt: v2.2.0
- BREAKING
ActixStream::{poll_read_ready, poll_write_ready}
methods now return
Ready
object in ok variant. #293- Breakage is acceptable since
ActixStream
was not intended to be public.
- Breakage is acceptable since
actix-tls: v3.0.0-beta.5
- Changed
connect::ssl::rustls::RustlsConnectorService
to return error whenDNSNameRef
generation failed instead of panic. #296 - Remove
connect::ssl::openssl::OpensslConnectServiceFactory
. #297 - Remove
connect::ssl::openssl::OpensslConnectService
. #297 - Add
connect::ssl::native_tls
module for native tls support. #295 - Rename
accept::{nativetls => native_tls}
. #295 - Remove
connect::TcpConnectService
type. service caller expect aTcpStream
should use
connect::ConnectService
instead and callConnection<T, TcpStream>::into_parts
. #299