actix-web v3.0.0-beta.1 Release Notes

Release Date: 2020-07-13 // almost 4 years ago
  • โž• Added

    • Re-export actix_rt::main as actix_web::main.
    • HttpRequest::match_pattern and ServiceRequest::match_pattern for extracting the matched resource pattern.
    • HttpRequest::match_name and ServiceRequest::match_name for extracting matched resource name.

    ๐Ÿ”„ Changed

    • Fix actix_http::h1::dispatcher so it returns when HW_BUFFER_SIZE is reached. Should reduce peak memory consumption during large uploads. [#1550]
    • ๐ŸŒ Migrate cookie handling to cookie crate. Actix-web no longer requires ring dependency.
    • MSRV is now 1.41.1

    ๐Ÿ›  Fixed

    • NormalizePath improved consistency when path needs slashes added and removed.