Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit75a9d14

Browse files
committed
v7.0.16
1 parent2cf87f4 commit75a9d14

File tree

14 files changed

+21
-20
lines changed

14 files changed

+21
-20
lines changed

‎.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast:false
5050
matrix:
5151
include:
52-
-{ rust: 1.81.0, os: ubuntu-22.04 }
52+
-{ rust: 1.83.0, os: ubuntu-22.04 }
5353
steps:
5454
-name:Checkout
5555
uses:actions/checkout@v4
@@ -132,7 +132,7 @@ jobs:
132132
-name:Install mdBook
133133
uses:peaceiris/actions-mdbook@v1
134134
with:
135-
mdbook-version:'0.4.37'
135+
mdbook-version:"0.4.37"
136136
-name:Extract metadata
137137
id:meta
138138
run:|

‎.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
-name:Install stable toolchain
1616
uses:dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain:1.81.0
18+
toolchain:1.83.0
1919
-name:Rust Cache
2020
uses:Swatinem/rust-cache@v2
2121
-name:Install cargo-llvm-cov

‎CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
#[7.0.16] 2025-03-20
88

99
- dynamic: fixed`__typename` always returned`null` when introspection was disabled.
10+
- update MSRV to`1.83.0`
1011

1112
#[7.0.15] 2025-02-03
1213

@@ -25,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2526

2627
#[7.0.12] 2024-12-08
2728

28-
- update MSRV to`1.81.0`
29+
- update MSRV to`1.83.0`
2930
- Add specified complexity for fields in`SimpleObject`.
3031
- feat: expose SDL export utilities in ExtensionContext[#1606](https://github.com/async-graphql/async-graphql/pull/1606)
3132
- feat(dynamic-schema): specify type directives in schema[#1607](https://github.com/async-graphql/async-graphql/pull/1607)

‎Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ categories = ["network-programming", "asynchronous"]
44
description ="A GraphQL server library implemented in Rust"
55
documentation ="https://docs.rs/async-graphql/"
66
edition ="2021"
7-
rust-version ="1.81.0"
7+
rust-version ="1.83.0"
88
homepage ="https://github.com/async-graphql/async-graphql"
99
keywords = ["futures","async","graphql"]
1010
license ="MIT OR Apache-2.0"
1111
name ="async-graphql"
1212
readme ="README.md"
1313
repository ="https://github.com/async-graphql/async-graphql"
14-
version ="7.0.15"
14+
version ="7.0.16"
1515

1616
[features]
1717
apollo_persisted_queries = ["lru","sha2"]
@@ -147,10 +147,10 @@ members = [
147147
]
148148

149149
[workspace.dependencies]
150-
async-graphql = {path =".",version ="7.0.15",default-features =false }
151-
async-graphql-derive = {path ="derive",version ="7.0.15" }
152-
async-graphql-parser = {path ="parser",version ="7.0.15" }
153-
async-graphql-value = {path ="value",version ="7.0.15" }
150+
async-graphql = {path =".",version ="7.0.16",default-features =false }
151+
async-graphql-derive = {path ="derive",version ="7.0.16" }
152+
async-graphql-parser = {path ="parser",version ="7.0.16" }
153+
async-graphql-value = {path ="value",version ="7.0.16" }
154154

155155
serde = {version ="1.0.197",features = ["derive"] }
156156
serde_json ="1.0.115"

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ I strongly recommend limiting the [complexity and depth](https://async-graphql.g
124124
- Apollo Tracing extension
125125
- Apollo Federation(v2)
126126

127-
>**Note**: Minimum supported Rust version: 1.81.0 or later
127+
>**Note**: Minimum supported Rust version: 1.83.0 or later
128128
129129
##Examples
130130

‎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 ="7.0.15"
12+
version ="7.0.16"
1313

1414
[lib]
1515
proc-macro =true

‎integrations/actix-web/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-actix-web"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.15"
12+
version ="7.0.16"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎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 ="7.0.15"
12+
version ="7.0.16"
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 ="7.0.15"
12+
version ="7.0.16"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/rocket/Cargo.toml

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

1414
[dependencies]
1515
async-graphql.workspace =true

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp