github tokio-rs/axum axum-core-v0.3.0-rc.2
axum-core - v0.3.0.rc.2

latest releases: axum-v0.7.7, axum-core-v0.4.5, axum-extra-v0.9.4...
2 years ago
  • breaking: Added default limit to how much data Bytes::from_request will
    consume. Previously it would attempt to consume the entire request body
    without checking its length. This meant if a malicious peer sent an large (or
    infinite) request body your server might run out of memory and crash.

    The default limit is at 2 MB and can be disabled by adding the new
    DefaultBodyLimit::disable() middleware. See its documentation for more
    details.

    This also applies to String which used Bytes::from_request internally.

    (#1346)

Don't miss a new axum release

NewReleases is sending notifications on new releases.