1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00
actix-extras/CHANGES.md

62 lines
1.1 KiB
Markdown
Raw Normal View History

2018-01-23 10:06:43 -08:00
# Changes
2019-12-16 10:26:35 +06:00
## 0.8.0-alpha.1 (2019-12-16)
2019-12-15 23:46:03 +06:00
* Migrate to actix 0.9
## 0.7 (2019-09-25)
* added cache_keygen functionality to RedisSession builder, enabling support for
customizable cache key creation
2019-07-19 14:10:23 +06:00
## 0.6.1 (2019-07-19)
* remove ClonableService usage
2019-07-11 15:19:22 -04:00
* added comprehensive tests for session workflow
## 0.6.0 (2019-07-08)
* actix-web 1.0.0 compatibility
* Upgraded logic that evaluates session state, including new SessionStatus field,
and introduced ``session.renew()`` and ``session.purge()`` functionality.
Use ``renew()`` to cycle the session key at successful login. ``renew()`` keeps a
session's state while replacing the old cookie and session key with new ones.
Use ``purge()`` at logout to invalidate the session cookie and remove the
session's redis cache entry.
2019-05-18 11:24:26 -07:00
2018-08-02 11:35:34 -07:00
## 0.5.1 (2018-08-02)
2018-08-02 11:42:41 -07:00
* Use cookie 0.11
2018-08-02 11:35:34 -07:00
2018-07-20 14:54:50 -07:00
## 0.5.0 (2018-07-21)
2018-07-20 14:58:14 -07:00
* Session cookie configuration
2018-07-20 14:54:50 -07:00
* Actix/Actix-web 0.7 compatibility
2018-05-08 10:12:57 -07:00
## 0.4.0 (2018-05-08)
* Actix web 0.6 compatibility
2018-04-10 12:20:24 -07:00
## 0.3.0 (2018-04-10)
* Actix web 0.5 compatibility
2018-02-28 08:05:44 -08:00
## 0.2.0 (2018-02-28)
* Use resolver actor from actix
* Use actix web 0.5
2018-01-23 10:06:43 -08:00
## 0.1.0 (2018-01-23)
* First release