Skip to content

Releases: actix/actix-web

actix-web-codegen: v4.2.1

29 Aug 00:47
a12d39c
Compare
Choose a tag to compare
  • Update syn dependency to 2.
  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.

awc: v3.2.0

29 Aug 00:57
e6636f1
Compare
Choose a tag to compare
  • Add awc::Connector::rustls_021() method for Rustls v0.21 support behind new rustls-0_21 crate feature.
  • Add rustls-0_20 crate feature, which the existing rustls feature now aliases.
  • Minimum supported Rust version (MSRV) is now 1.68 due to transitive time dependency.

actix-http: v3.3.1

02 Mar 17:09
e0939a0
Compare
Choose a tag to compare

Fixed

  • Use correct http version requirement to ensure support for const HeaderName definitions.

actix-web: v4.3.1

26 Feb 03:44
e35ec28
Compare
Choose a tag to compare
  • Add support for custom methods with the #[route] macro. #2969

actix-test: v0.1.1

26 Feb 14:21
129b78f
Compare
Choose a tag to compare
  • Add TestServerConfig::port() setter method.
  • Minimum supported Rust version (MSRV) is now 1.59 due to transitive time dependency.

actix-multipart: v0.6.0

26 Feb 21:54
d77bcb0
Compare
Choose a tag to compare
  • Added MultipartForm typed data extractor. #2883

actix-multipart-derive: v0.6.0

26 Feb 21:54
d77bcb0
Compare
Choose a tag to compare
  • Add MultipartForm derive macro.

actix-web-codegen: v4.2.0

26 Feb 03:42
35006e9
Compare
Choose a tag to compare
  • Add support for custom methods with the #[route] macro. #2969

awc: v3.1.1

26 Feb 03:34
115701e
Compare
Choose a tag to compare

Changed

  • client::Connect is now public to allow tunneling connection with client::Connector.

actix-web: v4.3.0

21 Jan 18:57
df6fde8
Compare
Choose a tag to compare

Added

  • Add ContentDisposition::attachment() constructor. #2867
  • Add ErrorHandlers::default_handler() (as well as default_handler_{server, client}()) to make registering handlers for groups of response statuses easier. #2784
  • Add Logger::custom_response_replace(). #2631
  • Add rudimentary redirection service at web::redirect() / web::Redirect. #1961
  • Add guard::Acceptable for matching against Accept header MIME types. #2265
  • Add fallible versions of test helpers: try_call_service(), try_call_and_read_body_json(), try_read_body(), and try_read_body_json(). #2961

Fixed

  • Add Allow header to Resource's default responses when no routes are matched. #2949