File tree 4 files changed +14
-3
lines changed
4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ edition = "2021"
18
18
autotests = false # Most tests/*.rs files are modules of tests/main.rs
19
19
20
20
[dependencies ]
21
- apollo-parser = { path = " ../apollo-parser" , version = " 0.7.6 " }
21
+ apollo-parser = { path = " ../apollo-parser" , version = " 0.7.7 " }
22
22
ariadne = { version = " 0.4.0" , features = [" auto-color" ] }
23
23
indexmap = " 2.0.0"
24
24
rowan = " 0.15.5"
Original file line number Diff line number Diff line change @@ -17,6 +17,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
17
17
18
18
## Documentation -->
19
19
20
+ # [ 0.7.7] ( https://crates.io/crates/apollo-parser/0.7.7 ) - 2024-04-08
21
+
22
+ ## Fixes
23
+ - ** raise an error for empty field sets - [ tinnou] , [ pull/845] **
24
+ It's not legal to write ` type Object {} ` * with* braces but * without* declaring
25
+ any fields. In the past this was accepted by apollo-parser, now it raises an
26
+ error as required by the spec.
27
+
28
+ [ tinnou ] : https://github.com/tinnou
29
+ [ pull/845 ] : https://github.com/apollographql/apollo-rs/pull/845
30
+
20
31
# [ 0.7.6] ( https://crates.io/crates/apollo-parser/0.7.6 ) - 2024-02-14
21
32
22
33
## Fixes
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " apollo-parser"
3
- version = " 0.7.6 " # When bumping, also update README.md
3
+ version = " 0.7.7 " # When bumping, also update README.md
4
4
authors = [
" Irina Shestak <[email protected] >" ]
5
5
license = " MIT OR Apache-2.0"
6
6
repository = " https://github.com/apollographql/apollo-rs"
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Or add this to your `Cargo.toml` for a manual installation:
35
35
``` toml
36
36
# Just an example, change to the necessary package version.
37
37
[dependencies ]
38
- apollo-parser = " 0.7.6 "
38
+ apollo-parser = " 0.7.7 "
39
39
```
40
40
41
41
## Rust versions
You can’t perform that action at this time.
0 commit comments