Skip to content

Releases: actix/actix-web

actix-web: v4.6.0

19 May 11:06
acb7405
Compare
Choose a tag to compare

Added

  • Add unicode crate feature (on-by-default) to switch between regex and regex-lite as a trade-off between full unicode support and binary size.
  • Add rustls-0_23 crate feature.
  • Add HttpServer::{bind_rustls_0_23, listen_rustls_0_23}() builder methods.
  • Add HttpServer::tls_handshake_timeout() builder method for rustls-0_22 and rustls-0_23.

Changed

  • Update brotli dependency to 6.
  • Minimum supported Rust version (MSRV) is now 1.72.

Fixed

  • Avoid type confusion with rustls in some circumstances.

actix-router: v0.5.3

19 May 11:10
b342b8f
Compare
Choose a tag to compare
  • Add unicode crate feature (on-by-default) to switch between regex and regex-lite as a trade-off between full unicode support and binary size.
  • Minimum supported Rust version (MSRV) is now 1.72.

actix-http: v3.7.0

19 May 11:06
acb7405
Compare
Choose a tag to compare

Added

  • Add rustls-0_23 crate feature
  • Add {h1::H1Service, h2::H2Service, HttpService}::rustls_0_23() and HttpService::rustls_0_23_with_config() service constructors.

Changed

  • Update brotli dependency to 6.
  • Minimum supported Rust version (MSRV) is now 1.72.

awc: v3.5.0

19 May 11:06
acb7405
Compare
Choose a tag to compare
  • Add rustls-0_23, rustls-0_23-webpki-roots, and rustls-0_23-native-roots crate features.
  • Add awc::Connector::rustls_0_23() constructor.
  • Fix rustls-0_22-native-roots root store lookup
  • Update brotli dependency to 6.
  • Minimum supported Rust version (MSRV) is now 1.72.

actix-web: v4.5.1

04 Feb 01:37
2b8c528
Compare
Choose a tag to compare

Fixed

  • Fix missing import when using enabling Rustls v0.22 support.

actix-web: v4.5.0

04 Feb 01:17
59bc85f
Compare
Choose a tag to compare

Added

  • Add rustls-0_22 crate feature.
  • Add HttpServer::{bind_rustls_0_22, listen_rustls_0_22}() builder methods.

actix-test: v0.1.3

04 Feb 01:18
59bc85f
Compare
Choose a tag to compare
  • Add TestServerConfig::rustls_0_22() method for Rustls v0.22 support behind new rustls-0_22 crate feature.

actix-http: v3.6.0

04 Feb 01:17
59bc85f
Compare
Choose a tag to compare

Added

  • Add rustls-0_22 crate feature.
  • Add {h1::H1Service, h2::H2Service, HttpService}::rustls_0_22() and HttpService::rustls_0_22_with_config() service constructors.
  • Implement From<&HeaderMap> for http::HeaderMap.

actix-http-test: v3.2.0

04 Feb 01:17
59bc85f
Compare
Choose a tag to compare
  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.

awc: v3.4.0

04 Feb 01:17
59bc85f
Compare
Choose a tag to compare
  • Add rustls-0_22-webpki-roots and rustls-0_22-native-roots crate feature.
  • Add awc::Connector::rustls_0_22() method.