File tree 4 files changed +18
-3
lines changed
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,21 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
17
17
## Maintenance
18
18
## Documentation-->
19
19
20
+ # [ 1.0.0-beta.20] ( https://crates.io/crates/apollo-compiler/1.0.0-beta.20 ) - 2024-07-30
21
+
22
+ ## Fixes
23
+
24
+ - ** Fix variable validation in operation directives - [ goto-bus-stop] in [ pull/888] .**
25
+ * ` query ($var: Int) @directive(arg: $var) ` is now accepted - it used to raise an unused variable error for ` $var ` .
26
+
27
+ ## Maintenance
28
+
29
+ - ** Make unused variable validation more efficient - [ goto-bus-stop] in [ pull/887] .**
30
+
31
+ [ goto-bus-stop ] : https://github.com/goto-bus-stop
32
+ [ pull/887 ] : https://github.com/apollographql/apollo-rs/pull/887
33
+ [ pull/888 ] : https://github.com/apollographql/apollo-rs/pull/888
34
+
20
35
# [ 1.0.0-beta.19] ( https://crates.io/crates/apollo-compiler/1.0.0-beta.19 ) - 2024-07-19
21
36
22
37
## BREAKING
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " apollo-compiler"
3
- version = " 1.0.0-beta.19 " # When bumping, also update README.md
3
+ version = " 1.0.0-beta.20 " # 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 @@ -40,7 +40,7 @@ Or add this to your `Cargo.toml` for a manual installation:
40
40
# Just an example, change to the necessary package version.
41
41
# Using an exact dependency is recommended for beta versions
42
42
[dependencies ]
43
- apollo-compiler = " =1.0.0-beta.19 "
43
+ apollo-compiler = " =1.0.0-beta.20 "
44
44
```
45
45
46
46
## Rust versions
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ categories = [
22
22
]
23
23
24
24
[dependencies ]
25
- apollo-compiler = { path = " ../apollo-compiler" , version = " =1.0.0-beta.19 " }
25
+ apollo-compiler = { path = " ../apollo-compiler" , version = " =1.0.0-beta.20 " }
26
26
apollo-parser = { path = " ../apollo-parser" , version = " 0.8.0" }
27
27
arbitrary = { version = " 1.3.0" , features = [" derive" ] }
28
28
indexmap = " 2.0.0"
You can’t perform that action at this time.
0 commit comments