10000 Release 6.0.5 · async-graphql/async-graphql@404c7b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 404c7b2

Browse files
committed
Release 6.0.5
async-graphql@6.0.5 async-graphql-actix-web@6.0.5 async-graphql-axum@6.0.5 async-graphql-derive@6.0.5 async-graphql-parser@6.0.5 async-graphql-poem@6.0.5 async-graphql-rocket@6.0.5 async-graphql-tide@6.0.5 async-graphql-value@6.0.5 async-graphql-warp@6.0.5 Generated by cargo-workspaces
1 parent add5f75 commit 404c7b2

File tree

15 files changed

+25
-21
lines changed

15 files changed

+25
-21
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
include:
1919
- { rust: stable, os: ubuntu-20.04 }
20-
- { rust: 1.67.0, os: ubuntu-20.04 }
20+
- { rust: 1.68.0, os: ubuntu-20.04 }
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v2
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
include:
47-
- { rust: 1.67.0, os: ubuntu-20.04 }
47+
- { rust: 1.68.0, os: ubuntu-20.04 }
4848
steps:
4949
- name: Checkout
5050
uses: actions/checkout@v2

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install stable toolchain
1414
uses: actions-rs/toolchain@v1
1515
with:
16-
toolchain: 1.67.0
16+
toolchain: 1.68.0
1717
override: true
1818
- name: Rust Cache
1919
uses: Swatinem/rust-cache@v2

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- Add `ValueAccessor::as_value` and `ListAccessor::as_values_slice` methods [#1353](https://github.com/async-graphql/async-graphql/pull/1353)
1111
- dynamic: fixes key not found when using entity resolver [#1362](https://github.com/async-graphql/async-graphql/issues/1362)
1212
- fix panic in complexity visitor [#1359](https://github.com/async-graphql/async-graphql/pull/1359)
13+
- update MSRV to `1.68.0`
1314

1415
# [6.0.4] 2023-08-18
1516

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
name = "async-graphql"
1111
readme = "README.md"
1212
repository = "https://github.com/async-graphql/async-graphql"
13-
version = "6.0.4"
13+
version = "6.0.5"
1414

1515
[features]
1616
apollo_persisted_queries = ["lru", "sha2"]
@@ -131,6 +131,7 @@ all-features = true
131131
rustdoc-args = ["--cfg", "docsrs"]
132132

133133
[workspace]
134+
resolver = "2"
134135
members = [
135136
"value",
136137
"parser",
@@ -144,10 +145,10 @@ members = [
144145
]
145146

146147
[workspace.dependencies]
147-
async-graphql = { path = ".", version = "6.0.4", default-features = false }
148-
async-graphql-derive = { path = "derive", version = "6.0.4" }
149-
async-graphql-parser = { path = "parser", version = "6.0.4" }
150-
async-graphql-value = { path = "value", version = "6.0.4" }
148+
async-graphql = { path = ".", version = "6.0.< F438 span class="x x-first x-last">5", default-features = false }
149+
async-graphql-derive = { path = "derive", version = "6.0.5" }
150+
async-graphql-parser = { path = "parser", version = "6.0.5" }
151+
async-graphql-value = { path = "value", version = "6.0.5" }
151152

152153
serde = { version = "1.0.125", features = ["derive"] }
153154
serde_json = "1.0.64"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
116116
- Apollo Tracing extension
117117
- Apollo Federation(v2)
118118

119-
> **Note**: Minimum supported Rust version: 1.67.0 or later
119+
> **Note**: Minimum supported Rust version: 1.68.0 or later
120120
121121
## Examples
122122

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license = "MIT OR Apache-2.0"
1010
name = "async-graphql-derive"
1111
repository = "https://github.com/async-graphql/async-graphql"
12-
version = "6.0.4"
12+
version = "6.0.5"
1313

1414
[lib]
1515
proc-macro = true

integrations/actix-web/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ keywords = ["futures", "async", "graphql"]
99
license = "MIT OR Apache-2.0"
1010
name = "async-graphql-actix-web"
1111
repository = "https://github.com/async-graphql/async-graphql"
12-
version = "6.0.4"
12+
version = "6.0.5"
1313

1414
[dependencies]
1515
async-graphql = { workspace = true, features = ["playground"] }
1616

1717
actix = "0.13.0"
1818
actix-http = "3.1.0"
19-
actix-web = { version = "4.1.0", default-features = false }
19+
actix-web = { version = "4.1.0", default-features = false, features = [
20+
"http2",
21+
] }
2022
actix-web-actors = "4.1.0"
2123
async-channel = "1.6.1"
2224
futures-channel = "0.3.13"

integrations/axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "axum"]
99
license = "MIT OR Apache-2.0"
1010
name = "async-graphql-axum"
1111
repository = "https://github.com/async-graphql/async-graphql"
12-
version = "6.0.4"
12+
version = "6.0.5"
1313

1414
[dependencies]
1515
async-graphql = { workspace = true }

integrations/poem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "poem"]
99
license = "MIT OR Apache-2.0"
1010
name = "async-graphql-poem"
1111
repository = "https://github.com/async-graphql/async-graphql"
12-
version = "6.0.4"
12+
version = "6.0.5"
1313

1414
[dependencies]
1515
async-graphql = { workspace = true }

0 commit comments

Comments
 (0)
0