Rouille, Rust web server middleware v2.1.0 Release Notes

    • Replace flate2 with deflate
    • 🛠 Fixed handling of url-encoded path components in route!() macro. Previously, URL was eagerly decoded and thus would fail to match intended routes if special characters were used (such as ? or /). Now, individual matched components are decoded after matching.
    • ➕ Added Response::empty_204.
    • ➕ Added ssl feature and new_ssl constructor to Server, for https support. The certificate and private key must be supplied by user.