1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

Update to actix-web beta.17 (#217)

This commit is contained in:
Luca Palmieri
2021-12-29 10:25:52 +01:00
committed by GitHub
parent 6676a50944
commit 14a622092d
13 changed files with 21 additions and 9 deletions

View File

@ -1,7 +1,9 @@
# Changes
## Unreleased - 2021-xx-xx
* Update `actix-web` dependency to `4.0.0-beta.17`. [#217]
[#217]: https://github.com/actix/actix-extras/pull/217
## 0.10.0-beta.4 - 2021-12-12
* A session will be created in Redis if and only if there is some data inside the session state. This reduces the performance impact of `RedisSession` on routes that do not leverage sessions. [#207]

View File

@ -45,14 +45,14 @@ tokio = { version = "1", features = ["sync"] }
tokio-util = "0.6.1"
# actix-session
actix-web = { version = "4.0.0-beta.14", default_features = false, optional = true }
actix-web = { version = "4.0.0-beta.17", default_features = false, optional = true }
actix-session = { version = "0.5.0-beta.6", optional = true }
rand = { version = "0.8.0", optional = true }
serde = { version = "1.0.101", optional = true }
serde_json = { version = "1.0.40", optional = true }
[dev-dependencies]
actix-test = "0.1.0-beta.8"
actix-test = "0.1.0-beta.10"
actix-rt = "2.1"
env_logger = "0.8"
serde = { version = "1.0.101", features = ["derive"] }