mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
build(deps): update redis requirement from 0.26 to 0.27 (#463)
* build(deps): update redis requirement from 0.26 to 0.27 Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.26.0...redis-0.27.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * docs: update changelogs * ci: fix doc --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
parent
21680e0ebe
commit
2ede588693
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@ -58,10 +58,10 @@ jobs:
|
|||||||
- name: checkout ${{ github.head_ref }}
|
- name: checkout ${{ github.head_ref }}
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Rust (nightly)
|
- name: Install Rust (nightly-2024-09-10)
|
||||||
uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly-2024-09-10
|
||||||
|
|
||||||
- name: Install cargo-public-api
|
- name: Install cargo-public-api
|
||||||
uses: taiki-e/cache-cargo-install-action@v2.0.1
|
uses: taiki-e/cache-cargo-install-action@v2.0.1
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
- Update `redis` dependency to `0.26`.
|
- Update `redis` dependency to `0.27`.
|
||||||
- Update `actix-session` dependency to `0.9`.
|
- Update `actix-session` dependency to `0.9`.
|
||||||
|
|
||||||
## 0.5.1
|
## 0.5.1
|
||||||
|
@ -28,7 +28,7 @@ actix-web = { version = "4", default-features = false, features = ["cookies"] }
|
|||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
derive_more = { version = "1", features = ["display", "error", "from"] }
|
derive_more = { version = "1", features = ["display", "error", "from"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
redis = { version = "0.26", default-features = false, features = ["tokio-comp"] }
|
redis = { version = "0.27", default-features = false, features = ["tokio-comp"] }
|
||||||
time = "0.3"
|
time = "0.3"
|
||||||
|
|
||||||
# session
|
# session
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- Update `redis` dependency to `0.27`.
|
||||||
|
|
||||||
## 0.10.1
|
## 0.10.1
|
||||||
|
|
||||||
- Expose `storage::generate_session_key()` without needing to enable a crate feature.
|
- Expose `storage::generate_session_key()` without needing to enable a crate feature.
|
||||||
|
@ -38,8 +38,8 @@ serde_json = { version = "1" }
|
|||||||
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
||||||
|
|
||||||
# redis-session
|
# redis-session
|
||||||
redis = { version = "0.26", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
|
redis = { version = "0.27", default-features = false, features = ["tokio-comp", "connection-manager"], optional = true }
|
||||||
deadpool-redis = { version = "0.16", optional = true }
|
deadpool-redis = { version = "0.18", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-session = { path = ".", features = ["cookie-session", "redis-session"] }
|
actix-session = { path = ".", features = ["cookie-session", "redis-session"] }
|
||||||
|
1
justfile
1
justfile
@ -71,6 +71,7 @@ test-docs:
|
|||||||
# Document crates in workspace.
|
# Document crates in workspace.
|
||||||
[group("docs")]
|
[group("docs")]
|
||||||
doc *args: && doc-set-workspace-crates
|
doc *args: && doc-set-workspace-crates
|
||||||
|
rm -f "$(cargo metadata --format-version=1 | jq -r '.target_directory')/doc/crates.js"
|
||||||
RUSTDOCFLAGS="--cfg=docsrs -Dwarnings" cargo +nightly doc --workspace --all-features {{ args }}
|
RUSTDOCFLAGS="--cfg=docsrs -Dwarnings" cargo +nightly doc --workspace --all-features {{ args }}
|
||||||
|
|
||||||
[group("docs")]
|
[group("docs")]
|
||||||
|
Loading…
Reference in New Issue
Block a user