mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
update changes for actix-session
This commit is contained in:
parent
fbead137f0
commit
7dd676439c
@ -1,12 +1,19 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.0-alpha.3] - 2019-12-xx
|
||||||
|
|
||||||
|
* Add access to the session from RequestHead for use of session from guard methods
|
||||||
|
|
||||||
|
* Migrate to `std::future`
|
||||||
|
|
||||||
|
* Migrate to `actix-web` 2.0
|
||||||
|
|
||||||
## [0.2.0] - 2019-07-08
|
## [0.2.0] - 2019-07-08
|
||||||
|
|
||||||
* Enhanced ``actix-session`` to facilitate state changes. Use ``Session.renew()``
|
* Enhanced ``actix-session`` to facilitate state changes. Use ``Session.renew()``
|
||||||
at successful login to cycle a session (new key/cookie but keeps state).
|
at successful login to cycle a session (new key/cookie but keeps state).
|
||||||
Use ``Session.purge()`` at logout to invalid a session cookie (and remove
|
Use ``Session.purge()`` at logout to invalid a session cookie (and remove
|
||||||
from redis cache, if applicable).
|
from redis cache, if applicable).
|
||||||
* Add access to the session from RequestHead for use of session from guard methods
|
|
||||||
|
|
||||||
## [0.1.1] - 2019-06-03
|
## [0.1.1] - 2019-06-03
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-session"
|
name = "actix-session"
|
||||||
version = "0.3.0-alpha.2"
|
version = "0.3.0-alpha.3"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Session for actix web framework."
|
description = "Session for actix web framework."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@ -24,8 +24,8 @@ default = ["cookie-session"]
|
|||||||
cookie-session = ["actix-web/secure-cookies"]
|
cookie-session = ["actix-web/secure-cookies"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "2.0.0-alpha.2"
|
actix-web = "2.0.0-alpha.3"
|
||||||
actix-service = "1.0.0-alpha.2"
|
actix-service = "1.0.0-alpha.3"
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.2"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
@ -34,4 +34,4 @@ serde_json = "1.0"
|
|||||||
time = "0.1.42"
|
time = "0.1.42"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = "1.0.0-alpha.2"
|
actix-rt = "1.0.0-alpha.3"
|
||||||
|
Loading…
Reference in New Issue
Block a user