Skip to content

Releases: robjtede/actix-web-lab

actix-web-lab: v0.14.0

07 Mar 20:13
5ffdb5b
Compare
Choose a tag to compare
  • 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

03 Mar 06:28
91b58ef
Compare
Choose a tag to compare
  • Add Hsts (Strict-Transport-Security) typed header.
  • Convert redirect_to_https function middleware to RedirectHttps middleware type.
  • Add HSTS configuration to new RedirectHttps middleware.

actix-web-lab: v0.12.1

02 Mar 17:47
2682052
Compare
Choose a tag to compare
  • Add Body{Hash, Hmac}::verify_slice().

actix-web-lab: v0.12.0

25 Feb 21:13
73fcbb6
Compare
Choose a tag to compare
  • Add Path extractor that can be deconstructed.
  • Json limit const generic parameter now has a default and can be omitted.
  • Update actix-web dependency to 4.0.0.

actix-web-lab: v0.11.0

22 Feb 12:22
82df3cc
Compare
Choose a tag to compare
  • Add alternate ErrorHandler middleware.
  • Dynamic HmacConfig uses async function.
  • BodyHmac::into_parts includes Bytes buffer.

actix-web-lab: v0.10.0

07 Feb 04:01
885599c
Compare
Choose a tag to compare
  • Add Html responder.
  • Add BodyHash extractor wrapper.
  • Add BodyHmac extractor wrapper.

actix-web-lab: v0.9.0

22 Jan 01:43
4d68b7d
Compare
Choose a tag to compare
  • Add quick SPA service builder web::spa().
  • Copy Query extractor from Actix Web that can track minor versions of serde-urlencoded.

actix-web-lab: v0.8.0

20 Jan 16:58
bfcc671
Compare
Choose a tag to compare
  • Csv, NdJson, and DisplayStream now take fallible streams.
  • Added {Csv, NdJson, DisplayStream}::new_infallible.

actix-web-lab: v0.7.1

19 Jan 02:42
592637f
Compare
Choose a tag to compare
  • Add Redirect::permanent.
  • Default Redirect status is now 307 (temporary redirect).

actix-web-lab: v0.7.0

22 Jan 01:44
3e24237
Compare
Choose a tag to compare
  • Add channel body type.
  • from_fn middleware can now alter the body type.
  • Next<B> has an inherent call method so that the Service doesn't need importing.