All Versions
81
Latest Version
Avg Release Cycle
38 days
Latest Release
1227 days ago

Changelog History
Page 6

  • v2.0.0-alpha.3 Changes

    December 07, 2019

    [2.0.0-alpha.3] - 2020-05-08

    ๐Ÿ›  Fixed

    • ๐ŸŒ Correct spelling of ConnectError::Unresolved #1487
    • ๐Ÿ›  Fix a mistake in the encoding of websocket continuation messages wherein
      Item::FirstText and Item::FirstBinary are each encoded as the other.

    ๐Ÿ”„ Changed

    • ๐ŸŒ Implement std::error::Error for our custom errors #1422
    • โœ‚ Remove failure support for ResponseError since that crate
      ๐Ÿ—„ will be deprecated in the near future.
  • v2.0.0-alpha.2 Changes

    March 07, 2020

    ๐Ÿ”„ Changes

    ๐Ÿ”„ Changed

    โšก๏ธ Update actix-connect and actix-tls dependency to 2.0.0-alpha.1. #1395

    ๐Ÿ”„ Change default initial window size and connection window size for HTTP2 to 2MB and 1MB respectively
    ๐ŸŒ to improve download speed for awc when downloading large objects. #1394

    client::Connector accepts initial_window_size and initial_connection_window_size HTTP2 configuration. #1394

    client::Connector allowing to set max_http_version to limit HTTP version to be used. #1394

  • v2.0.0-alpha.1 Changes

    November 22, 2019

    ๐Ÿ”„ Changes

    • โšก๏ธ Update actix-http dependency to 2.0.0-alpha.2
    • โšก๏ธ Update rustls dependency to 0.17
    • ClientBuilder accepts initial_window_size and initial_connection_window_size HTTP2 configuration
    • ClientBuilder allowing to set max_http_version to limit HTTP version to be used
  • v1.0.9 Changes

    November 14, 2019

    โž• Added

    • โž• Add Payload::into_inner method and make stored def::Payload public. (#1110)

    ๐Ÿ”„ Changed

    • ๐Ÿ‘Œ Support Host guards when the Host header is unset (e.g. HTTP/2 requests) (#1129)
  • v1.0.8 Changes

    September 25, 2019

    โž• Added

    • Add Scope::register_data and Resource::register_data methods, parallel to App::register_data.

    • โž• Add middleware::Condition that conditionally enables another middleware

    • ๐Ÿ‘ Allow to re-construct ServiceRequest from HttpRequest and Payload

    • โž• Add HttpServer::listen_uds for ability to listen on UDS FD rather than path, which is useful for example with systemd.

    ๐Ÿ”„ Changed

    • ๐Ÿ‘‰ Make UrlEncodedError::Overflow more informativve

    • โœ… Use actix-testing for testing utils

  • v1.0.7 Changes

    August 29, 2019

    ๐Ÿ›  Fixed

    • Request Extensions leak #1062
  • v1.0.6 Changes

    August 28, 2019

    โž• Added

    • Re-implement Host predicate (#989)

    • Form immplements Responder, returning a application/x-www-form-urlencoded response

    • โž• Add into_inner to Data

    • โž• Add test::TestRequest::set_form() convenience method to automatically serialize data and set the header in test requests.

    ๐Ÿ”„ Changed

    • ๐Ÿ›ฐ Query payload made pub. Allows user to pattern-match the payload.

    • Enable rust-tls feature for client #1045

    • โšก๏ธ Update serde_urlencoded to 0.6.1

    • โšก๏ธ Update url to 2.1

  • v1.0.5 Changes

    July 18, 2019

    โž• Added

    • Unix domain sockets (HttpServer::bind_uds) #92

    • ๐Ÿ”Š Actix now logs errors resulting in "internal server error" responses always, with the error logging level

    ๐Ÿ›  Fixed

    • โช Restored logging of errors through the Logger middleware
  • v1.0.4 Changes

    July 17, 2019

    โž• Added

    • โž• Add Responder impl for (T, StatusCode) where T: Responder

    • ๐Ÿ‘ Allow to access app's resource map via ServiceRequest::resource_map() and HttpRequest::resource_map() methods.

    ๐Ÿ”„ Changed

    • โฌ†๏ธ Upgrade rand dependency version to 0.7
  • v1.0.3 Changes

    June 28, 2019

    โž• Added

    • ๐Ÿ‘Œ Support asynchronous data factories #850

    ๐Ÿ”„ Changed

    • Use encoding_rs crate instead of unmaintained encoding crate