Skip to content

Commit 3df1e62

Browse files
goto-bus-stoplrlna
andauthored
* [email protected] * Update crates/apollo-compiler/CHANGELOG.md Co-authored-by: Iryna Shestak <[email protected]> --------- Co-authored-by: Iryna Shestak <[email protected]>
1 parent b37fec8 commit 3df1e62

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

crates/apollo-compiler/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,21 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1717
## Maintenance
1818
## Documentation-->
1919

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+
2035
# [1.0.0-beta.19](https://crates.io/crates/apollo-compiler/1.0.0-beta.19) - 2024-07-19
2136

2237
## BREAKING

crates/apollo-compiler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
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
44
authors = ["Irina Shestak <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/apollographql/apollo-rs"

crates/apollo-compiler/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Or add this to your `Cargo.toml` for a manual installation:
4040
# Just an example, change to the necessary package version.
4141
# Using an exact dependency is recommended for beta versions
4242
[dependencies]
43-
apollo-compiler = "=1.0.0-beta.19"
43+
apollo-compiler = "=1.0.0-beta.20"
4444
```
4545

4646
## Rust versions

crates/apollo-smith/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ categories = [
2222
]
2323

2424
[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" }
2626
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
2727
arbitrary = { version = "1.3.0", features = ["derive"] }
2828
indexmap = "2.0.0"

0 commit comments

Comments
 (0)