Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* [email protected]

* Update crates/apollo-compiler/CHANGELOG.md

Co-authored-by: Iryna Shestak <[email protected]>

---------

Co-authored-by: Iryna Shestak <[email protected]>
  • Loading branch information
goto-bus-stop and lrlna authored Jul 31, 2024
1 parent b37fec8 commit 3df1e62
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions crates/apollo-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Maintenance
## Documentation-->

# [1.0.0-beta.20](https://crates.io/crates/apollo-compiler/1.0.0-beta.20) - 2024-07-30

## Fixes

- **Fix variable validation in operation directives - [goto-bus-stop] in [pull/888].**
* `query ($var: Int) @directive(arg: $var)` is now accepted - it used to raise an unused variable error for `$var`.

## Maintenance

- **Make unused variable validation more efficient - [goto-bus-stop] in [pull/887].**

[goto-bus-stop]: https://github.com/goto-bus-stop
[pull/887]: https://github.com/apollographql/apollo-rs/pull/887
[pull/888]: https://github.com/apollographql/apollo-rs/pull/888

# [1.0.0-beta.19](https://crates.io/crates/apollo-compiler/1.0.0-beta.19) - 2024-07-19

## BREAKING
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-compiler"
version = "1.0.0-beta.19" # When bumping, also update README.md
version = "1.0.0-beta.20" # When bumping, also update README.md
authors = ["Irina Shestak <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apollographql/apollo-rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-compiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Or add this to your `Cargo.toml` for a manual installation:
# Just an example, change to the necessary package version.
# Using an exact dependency is recommended for beta versions
[dependencies]
apollo-compiler = "=1.0.0-beta.19"
apollo-compiler = "=1.0.0-beta.20"
```

## Rust versions
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-smith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ categories = [
]

[dependencies]
apollo-compiler = { path = "../apollo-compiler", version = "=1.0.0-beta.19" }
apollo-compiler = { path = "../apollo-compiler", version = "=1.0.0-beta.20" }
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
arbitrary = { version = "1.3.0", features = ["derive"] }
indexmap = "2.0.0"
Expand Down

0 comments on commit 3df1e62

Please sign in to comment.