1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 10:27:42 +02:00

fix: bad interaction between session state changes and renewal (#265)

This commit is contained in:
Mohamed Emad
2022-07-24 16:27:25 +02:00
committed by GitHub
parent cfd16c5478
commit 810a88a156
3 changed files with 51 additions and 3 deletions

View File

@ -1,7 +1,9 @@
# Changes
## Unreleased - 2021-xx-xx
- Fix bad interaction between session state changes and renewal. [#265]
[#265]: https://github.com/actix/actix-extras/pull/265
## 0.7.0 - 2022-07-09
- Added `TtlExtensionPolicy` enum to support different strategies for extending the TTL attached to the session state. `TtlExtensionPolicy::OnEveryRequest` now allows for long-lived sessions that do not expire if the user remains active. [#233]