mirror of
https://github.com/actix/actix-extras.git
synced 2025-03-20 20:05:18 +01:00
prepare actix-redis release 0.11.0
This commit is contained in:
parent
01932f87d3
commit
92269fc308
@ -14,7 +14,7 @@
|
|||||||
| [actix-cors] | [](https://crates.io/crates/actix-cors) [](https://deps.rs/crate/actix-cors/0.6.1) | Cross-origin resource sharing (CORS) for actix-web applications. |
|
| [actix-cors] | [](https://crates.io/crates/actix-cors) [](https://deps.rs/crate/actix-cors/0.6.1) | Cross-origin resource sharing (CORS) for actix-web applications. |
|
||||||
| [actix-identity] | [](https://crates.io/crates/actix-identity) [](https://deps.rs/crate/actix-identity/0.4.0) | Identity service for actix-web framework. |
|
| [actix-identity] | [](https://crates.io/crates/actix-identity) [](https://deps.rs/crate/actix-identity/0.4.0) | Identity service for actix-web framework. |
|
||||||
| [actix-protobuf] | [](https://crates.io/crates/actix-protobuf) [](https://deps.rs/crate/actix-protobuf/0.7.0) | Protobuf support for actix-web framework. |
|
| [actix-protobuf] | [](https://crates.io/crates/actix-protobuf) [](https://deps.rs/crate/actix-protobuf/0.7.0) | Protobuf support for actix-web framework. |
|
||||||
| [actix-redis] | [](https://crates.io/crates/actix-redis) [](https://deps.rs/crate/actix-redis/0.10.0) | Redis integration for actix framework. |
|
| [actix-redis] | [](https://crates.io/crates/actix-redis) [](https://deps.rs/crate/actix-redis/0.11.0) | Redis integration for actix framework. |
|
||||||
| [actix-session] | [](https://crates.io/crates/actix-session) [](https://deps.rs/crate/actix-session/0.6.0) | Session for actix-web framework. |
|
| [actix-session] | [](https://crates.io/crates/actix-session) [](https://deps.rs/crate/actix-session/0.6.0) | Session for actix-web framework. |
|
||||||
| [actix-web-httpauth] | [](https://crates.io/crates/actix-web-httpauth) [](https://deps.rs/crate/actix-web-httpauth/0.6.0) | HTTP authentication schemes for actix-web. |
|
| [actix-web-httpauth] | [](https://crates.io/crates/actix-web-httpauth) [](https://deps.rs/crate/actix-web-httpauth/0.6.0) | HTTP authentication schemes for actix-web. |
|
||||||
|
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.11.0 - 2022-03-15
|
||||||
### Removed
|
### Removed
|
||||||
- `RedisSession` has been removed. Check out `RedisActorSessionStore` in `actix-session` for a session store backed by Redis using `actix-redis`. [#212]
|
- `RedisSession` has been removed. Check out `RedisActorSessionStore` in `actix-session` for a session store backed by Redis using `actix-redis`. [#212]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Update `redis-async` dependency to `0.12`. [#212]
|
- Update `redis-async` dependency to `0.12`. [#212]
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-redis"
|
name = "actix-redis"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Redis integration for Actix"
|
description = "Redis integration for Actix"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Redis integration for Actix.
|
> Redis integration for Actix.
|
||||||
|
|
||||||
[](https://crates.io/crates/actix-redis)
|
[](https://crates.io/crates/actix-redis)
|
||||||
[](https://docs.rs/actix-redis/0.10.0)
|
[](https://docs.rs/actix-redis/0.11.0)
|
||||||

|

|
||||||
[](https://deps.rs/crate/actix-redis/0.10.0)
|
[](https://deps.rs/crate/actix-redis/0.11.0)
|
||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
|||||||
|
|
||||||
# redis-actor-session
|
# redis-actor-session
|
||||||
actix = { version = "0.12.0", default-features = false, optional = true }
|
actix = { version = "0.12.0", default-features = false, optional = true }
|
||||||
actix-redis = { version = "0.10", optional = true }
|
actix-redis = { version = "0.11.0", optional = true }
|
||||||
futures-core = { version = "0.3.7", default-features = false, optional = true }
|
futures-core = { version = "0.3.7", default-features = false, optional = true }
|
||||||
|
|
||||||
# redis-rs-session
|
# redis-rs-session
|
||||||
|
Loading…
x
Reference in New Issue
Block a user