Skip to content

Releases: actix/actix-net

actix-server: v2.0.0-beta.5

20 Apr 07:28
76338a5
Compare
Choose a tag to compare
Pre-release
  • 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

17 Apr 01:01
978e4f2
Compare
Choose a tag to compare
  • No significant changes from 3.0.0-beta.4.

actix-service: v2.0.0

16 Apr 18:11
1c4e965
Compare
Choose a tag to compare
  • Removed pipeline and related structs/functions. #335

actix-utils: v3.0.0-beta.4

01 Apr 12:58
6d66cfb
Compare
Choose a tag to compare
Pre-release
  • Add future::Either type. #305

actix-utils: v3.0.0-beta.3

01 Apr 09:39
b068ea1
Compare
Choose a tag to compare
Pre-release
  • Moved mpsc to own crate local-channel. #301
  • Moved task::LocalWaker to own crate local-waker. #301
  • Remove timeout module. #301
  • Remove dispatcher module. #301
  • Expose future mod with ready and poll_fn helpers. #301

actix-server: v2.0.0-beta.4

01 Apr 09:39
b068ea1
Compare
Choose a tag to compare
Pre-release
  • Prevent panic when shutdown_timeout is very large. f9262db

actix-rt: v2.2.0

29 Mar 06:39
0ee8d03
Compare
Choose a tag to compare
  • 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.

actix-tls: v3.0.0-beta.5

29 Mar 06:39
0ee8d03
Compare
Choose a tag to compare
Pre-release
  • Changed connect::ssl::rustls::RustlsConnectorService to return error when DNSNameRef
    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 a TcpStream should use
    connect::ConnectService instead and call Connection<T, TcpStream>::into_parts. #299

actix-rt: v2.1.0

25 Feb 11:55
06ddad0
Compare
Choose a tag to compare
  • Add ActixStream extension trait to include readiness methods. #276
  • Re-export tokio::net::TcpSocket in net module #282

actix-tls: v3.0.0-beta.4

25 Feb 11:56
06ddad0
Compare
Choose a tag to compare
Pre-release
  • Rename accept::openssl::{SslStream => TlsStream}.
  • Add connect::Connect::set_local_addr to attach local IpAddr. #282
  • connector::TcpConnector service will try to bind to local_addr of IpAddr when given. #282