Skip to content

Releases: actix/actix-extras

actix-session: v0.4.1

21 Mar 09:44
5a72dd3
Compare
Choose a tag to compare
  • Session::set_session takes a IntoIterator instead of Iterator. #105
  • Fix calls to session.purge() from paths other than the one specified in the cookie. #129

actix-redis: v0.9.2

21 Mar 09:48
5a72dd3
Compare
Choose a tag to compare
  • Implement std::error::Error for Error #135
  • Allow the removal of Max-Age for session-only cookies. #161

actix-web-httpauth: v0.5.1

21 Mar 09:49
5a72dd3
Compare
Choose a tag to compare
  • Correct error handling when extracting auth details from request. #128

actix-cors: v0.5.4

31 Dec 13:12
Compare
Choose a tag to compare
  • Fix expose_any_header method, now set the correct field. #143

actix-cors: v0.5.3

19 Nov 00:56
c534ef0
Compare
Choose a tag to compare
  • Fix version spec for derive_more dependency.

actix-cors: v0.5.2

15 Nov 22:26
61778d8
Compare
Choose a tag to compare
  • Ensure tinyvec is using the correct features.
  • Bump futures-util minimum version to 0.3.7 to avoid RUSTSEC-2020-0059.

actix-cors: v0.5.1

05 Nov 18:46
a396c1b
Compare
Choose a tag to compare
  • Fix allow_any_header method, now set the correct field. #121

actix-cors: v0.5.0

19 Oct 22:17
a396c1b
Compare
Choose a tag to compare

Notes

This release reflects a sort of "beta" period for a 1.0 release. Please open issues for bugs and feedback.

Changes

  • Disallow * in Cors::allowed_origin. #114.
  • Hide CorsMiddleware from docs. #118.
  • CorsFactory is removed. #119
  • The impl Default constructor is now overly-restrictive. #119
  • Added Cors::permissive() constructor that allows anything. #119
  • Adds methods for each property to reset to a permissive state. (allow_any_origin,
    expose_any_header, etc.) #119
  • Errors are now propagated with Transform::InitError instead of panicking. #119
  • Fixes bug where allowed origin functions are not called if allowed_origins is All. #119
  • AllOrSome is no longer public. #119
  • Functions used for allowed_origin_fn now receive the Origin HeaderValue as the
    first parameter. #120

actix-cors: v0.4.1

07 Oct 10:33
d02e508
Compare
Choose a tag to compare
  • Allow closures to be used with allowed_origin_fn. #110

actix-cors: v0.4.0

27 Sep 13:35
d14e188
Compare
Choose a tag to compare
  • Implement allowed_origin_fn builder method. #93
  • Use TryInto instead of TryFrom where applicable. #106