Releases: robjtede/actix-web-lab
Releases · robjtede/actix-web-lab
actix-hash: v0.5.0
- Add
BodyBlake3
extractor. - Minimum supported Rust version (MSRV) is now 1.64.
actix-web-lab: v0.19.1
- Add
Host
extractor.
actix-web-lab: v0.19.0
- Deprecate
web::Redirect
now it has graduated to Actix Web. - Deprecate
guard::Acceptable
now it has graduated to Actix Web. - Update
serde_html_form
dependency (which powers theQuery
andForm
extractors) to0.2
. - Remove
spa
andcbor
default crate features.
actix-web-lab: v0.18.9
- Add
middleware::map_response()
for mapping responses with an async function. - Add
middleware::map_response_body()
for mapping response bodies with an async function. - Add
respond::{MessagePack,MessagePackNamed}
responders. - Add
respond::Cbor
responder.
actix-web-lab: v0.18.8
- Always add
Content-Encoding: identity
header when usingSse
as a responder.
actix-web-lab: v0.18.7
- Add
UrlEncodedForm
extractor with const generic size limit that supports collecting multi-value items into aVec
.
actix-web-lab: v0.18.6
- Add
#[from_request(copy_from_app_data)]
field attribute to theFromRequest
derive macro. - Add extractor support to
from_fn
when used as initial arguments. - Feature gate
spa
features. Enabled by default. - Fix
derive
feature flag.
actix-web-lab: v0.18.5
- Expose
util::fork_request_payload()
helper. - Add reduced
Bytes
extractor with const generic size limit.
actix-web-lab: v0.18.4
- Add
Forwarded
typed header.
actix-web-lab: v0.18.3
- Fix
NormalizePath
when used in redirecting mode.