diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index f6977413f..5e2b788a1 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -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.6.0-beta.7 - 2021-12-18 * Update `actix-web` dependency to `4.0.0.beta-15`. [#216] diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 95e555cfb..4c9230166 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -19,7 +19,7 @@ path = "src/lib.rs" [dependencies] actix-service = "2" actix-utils = "3" -actix-web = { version = "4.0.0-beta.15", default-features = false } +actix-web = { version = "4.0.0-beta.17", default-features = false } derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } diff --git a/actix-identity/CHANGES.md b/actix-identity/CHANGES.md index 7df335fc1..00b2aaf82 100644 --- a/actix-identity/CHANGES.md +++ b/actix-identity/CHANGES.md @@ -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.4.0-beta.6 - 2021-12-18 * Update `actix-web` dependency to `4.0.0.beta-15`. [#216] diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index c03373c33..174cd980b 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -16,7 +16,7 @@ path = "src/lib.rs" [dependencies] actix-service = "2" actix-utils = "3" -actix-web = { version = "4.0.0-beta.15", default-features = false, features = ["cookies", "secure-cookies"] } +actix-web = { version = "4.0.0-beta.17", default-features = false, features = ["cookies", "secure-cookies"] } futures-util = { version = "0.3.7", default-features = false } serde = "1.0" diff --git a/actix-protobuf/CHANGES.md b/actix-protobuf/CHANGES.md index d596e2384..8684ff990 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -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.7.0-beta.3 - 2021-12-12 * Update `actix-web` dependency to `4.0.0.beta-14`. [#209] diff --git a/actix-protobuf/Cargo.toml b/actix-protobuf/Cargo.toml index ba6a2d094..72c07bc02 100644 --- a/actix-protobuf/Cargo.toml +++ b/actix-protobuf/Cargo.toml @@ -19,7 +19,7 @@ path = "src/lib.rs" [dependencies] actix-rt = "2" -actix-web = { version = "4.0.0-beta.14", default_features = false } +actix-web = { version = "4.0.0-beta.17", default_features = false } derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } prost = { version = "0.8", default_features = false } diff --git a/actix-protobuf/examples/prost-example/Cargo.toml b/actix-protobuf/examples/prost-example/Cargo.toml index a159eb349..125780730 100644 --- a/actix-protobuf/examples/prost-example/Cargo.toml +++ b/actix-protobuf/examples/prost-example/Cargo.toml @@ -8,7 +8,7 @@ authors = [ ] [dependencies] -actix-web = "4.0.0-beta.14" +actix-web = "4.0.0-beta.17" actix-protobuf = { path = "../../" } env_logger = "0.8" diff --git a/actix-redis/CHANGES.md b/actix-redis/CHANGES.md index 4129a03e3..1acfd9e52 100644 --- a/actix-redis/CHANGES.md +++ b/actix-redis/CHANGES.md @@ -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] diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index 07e36c477..915c5034b 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -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"] } diff --git a/actix-session/CHANGES.md b/actix-session/CHANGES.md index a293d8652..81460ec9e 100644 --- a/actix-session/CHANGES.md +++ b/actix-session/CHANGES.md @@ -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.5.0-beta.6 - 2021-12-18 * Update `actix-web` dependency to `4.0.0.beta-15`. [#216] diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index 2cc08196c..bdc8240d3 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -20,7 +20,7 @@ cookie-session = ["actix-web/secure-cookies"] [dependencies] actix-service = "2" actix-utils = "3" -actix-web = { version = "4.0.0-beta.15", default_features = false, features = ["cookies"] } +actix-web = { version = "4.0.0-beta.17", default_features = false, features = ["cookies"] } derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } diff --git a/actix-web-httpauth/CHANGES.md b/actix-web-httpauth/CHANGES.md index d7d74dedd..028ca4cda 100644 --- a/actix-web-httpauth/CHANGES.md +++ b/actix-web-httpauth/CHANGES.md @@ -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.6.0-beta.6 - 2021-12-18 * Update `actix-web` dependency to `4.0.0.beta-15`. [#216] diff --git a/actix-web-httpauth/Cargo.toml b/actix-web-httpauth/Cargo.toml index cd0b0e4a1..a6b053a4c 100644 --- a/actix-web-httpauth/Cargo.toml +++ b/actix-web-httpauth/Cargo.toml @@ -20,7 +20,7 @@ path = "src/lib.rs" [dependencies] actix-service = "2" actix-utils = "3" -actix-web = { version = "4.0.0-beta.15", default_features = false } +actix-web = { version = "4.0.0-beta.17", default_features = false } base64 = "0.13" futures-util = { version = "0.3.7", default-features = false }