Bump `Actix-web` from `4.0.0-beta.19` to `4.0.0-rc.2`

This commit is contained in:
Sunli 2022-02-06 16:22:54 +08:00
parent ff3c87ccb4
commit b5e29bd590
3 changed files with 11 additions and 5 deletions

View File

@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [3.0.29] 2022-2-6
- Pass context to resolvers with flatten attribute. [#813](https://github.com/async-graphql/async-graphql/pull/813)
- Add support for using both `ComplexObject` and `InputObject`.
- Bump `Actix-web` from `4.0.0-beta.19` to `4.0.0-rc.2`.
# [3.0.28] 2022-1-30
- Implement `InputType` and `OutputType` for `Box<[T]>` and `Arc<[T]>`. [#805](https://github.com/async-graphql/async-graphql/issues/805)

@ -1 +1 @@
Subproject commit ee6e8581f096001820c0d4829fa88c0b85f2f8c1
Subproject commit 9cde888ee5f367d4f4d653a9fa9ec94722b855d1

View File

@ -15,9 +15,9 @@ categories = ["network-programming", "asynchronous"]
async-graphql = { path = "../..", version = "3.0.28" }
actix = "0.12.0"
actix-http = "3.0.0-beta.17"
actix-web = { version = "4.0.0-beta.19", default-features = false }
actix-web-actors = "4.0.0-beta.9"
actix-http = "3.0.0-rc.1"
actix-web = { version = "4.0.0-rc.2", default-features = false }
actix-web-actors = "4.0.0-beta.11"
async-channel = "1.6.1"
futures-util = { version = "0.3.0", default-features = false }
serde_json = "1.0.64"
@ -31,6 +31,6 @@ default = []
cbor = ["serde_cbor"]
[dev-dependencies]
actix-rt = "2.2.0"
actix-rt = "2.6.0"
async-mutex = "1.4.0"
serde = { version = "1", features = ["derive"] }