Skip to content

Releases: actix/actix-extras

actix-cors: v0.6.3

21 Sep 23:24
e6ef190
Compare
Choose a tag to compare
  • Minimum supported Rust version (MSRV) is now 1.59 due to transitive time dependency.
  • Add Cors::block_on_origin_mismatch() option for controlling if requests are pre-emptively rejected. #286

actix-session: v0.7.2

11 Sep 20:13
339b81e
Compare
Choose a tag to compare
  • Set SameSite attribute when adding a session removal cookie. #284
  • Minimum supported Rust version (MSRV) is now 1.59 due to transitive time dependency.

actix-limitation: v0.4.0

10 Sep 23:07
9a3b410
Compare
Choose a tag to compare
  • Add Builder::key_by for setting a custom rate limit key function.
  • Implement Default for RateLimiter.
  • RateLimiter is marked #[non_exhaustive]; use RateLimiter::default() instead.
  • In the middleware errors from the count function are matched and respond with INTERNAL_SERVER_ERROR if it's an unexpected error, instead of the default TOO_MANY_REQUESTS.
  • Minimum supported Rust version (MSRV) is now 1.59 due to transitive time dependency.

actix-protobuf: v0.9.0

24 Aug 17:07
ffe122b
Compare
Choose a tag to compare
  • Added application/x-protobuf as an acceptable header.
  • Updated prost dependency to 0.11.

actix-cors: v0.6.2

07 Aug 19:57
bad6159
Compare
Choose a tag to compare
  • Fix expose_any_header to return list of response headers. #273
  • Minimum supported Rust version (MSRV) is now 1.57 due to transitive time dependency.

actix-settings: v0.6.0

31 Jul 19:13
983746f
Compare
Choose a tag to compare
  • Update Actix Web dependencies to v4 ecosystem.
  • Rename actix.ssl settings object to actix.tls.
  • NoSettings is now marked #[non_exhaustive].

actix-session: v0.7.1

24 Jul 14:30
cd9dc16
Compare
Choose a tag to compare
  • Fix interaction between session state changes and renewal. #265

actix-web-httpauth: v0.8.0

21 Jul 01:51
73732b0
Compare
Choose a tag to compare
  • Removed AuthExtractor trait; implement FromRequest for your custom auth types. #264
  • BasicAuth::user_id() now returns &str. #249
  • BasicAuth::password() now returns Option<&str>. #249
  • Basic::user_id() now returns &str. #264
  • Basic::password() now returns Option<&str>. #264
  • Bearer::token() now returns &str. #264

actix-identity: v0.5.2

19 Jul 00:34
553c2bf
Compare
Choose a tag to compare
  • Fix visit deadline. #263

actix-web-httpauth: v0.7.0

19 Jul 00:52
fbae63d
Compare
Choose a tag to compare
  • Auth validator functions now need to return (Error, ServiceRequest) in error cases. #260
  • Minimum supported Rust version (MSRV) is now 1.57 due to transitive time dependency.