Releases: robjtede/actix-web-lab
Releases · robjtede/actix-web-lab
actix-web-lab: v0.14.0
- Add
test
module containing new test request builders and response testing macros. - Add
RedirectHttps::to_port()
for specifying custom HTTPS redirect port. - Fix
RedirectHttps
when host contains port already.
actix-web-lab: v0.13.0
- Add
Hsts
(Strict-Transport-Security) typed header. - Convert
redirect_to_https
function middleware toRedirectHttps
middleware type. - Add HSTS configuration to new
RedirectHttps
middleware.
actix-web-lab: v0.12.1
- Add
Body{Hash, Hmac}::verify_slice()
.
actix-web-lab: v0.12.0
- Add
Path
extractor that can be deconstructed. Json
limit const generic parameter now has a default and can be omitted.- Update
actix-web
dependency to4.0.0
.
actix-web-lab: v0.11.0
- Add alternate
ErrorHandler
middleware. - Dynamic
HmacConfig
uses async function. BodyHmac::into_parts
includesBytes
buffer.
actix-web-lab: v0.10.0
- Add
Html
responder. - Add
BodyHash
extractor wrapper. - Add
BodyHmac
extractor wrapper.
actix-web-lab: v0.9.0
- Add quick SPA service builder
web::spa()
. - Copy
Query
extractor from Actix Web that can track minor versions ofserde-urlencoded
.
actix-web-lab: v0.8.0
Csv
,NdJson
, andDisplayStream
now take fallible streams.- Added
{Csv, NdJson, DisplayStream}::new_infallible
.
actix-web-lab: v0.7.1
- Add
Redirect::permanent
. - Default
Redirect
status is now 307 (temporary redirect).
actix-web-lab: v0.7.0
- Add
channel
body type. from_fn
middleware can now alter the body type.Next<B>
has an inherentcall
method so that theService
doesn't need importing.