Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[email protected] #864

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion crates/apollo-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Maintenance
## Documentation-->

# [x.x.x] (unreleased) - 2024-mm-dd
# [1.0.0-beta.17](https://crates.io/crates/apollo-compiler/1.0.0-beta.17) - 2024-06-05

## Fixes

- **Fix validation performance bug - [goto-bus-stop] in [issue/862], [pull/863]**
Adds a cache in fragment spread validation, fixing a situation where validating a query
with many fragment spreads against a schema with many interfaces could take multiple
seconds to validate.

## Maintenance

Expand All @@ -28,7 +35,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
remove this translation.

[goto-bus-stop]: https://github.com/goto-bus-stop
[issue/862]: https://github.com/apollographql/apollo-rs/issues/862
[pull/855]: https://github.com/apollographql/apollo-rs/pull/855
[pull/863]: https://github.com/apollographql/apollo-rs/pull/863
[ariadne]: https://github.com/zesterer/ariadne

# [1.0.0-beta.16](https://crates.io/crates/apollo-compiler/1.0.0-beta.16) - 2024-04-12
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.16" # When bumping, also update README.md
version = "1.0.0-beta.17" # 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.16"
apollo-compiler = "=1.0.0-beta.17"
```

## 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.16" }
apollo-compiler = { path = "../apollo-compiler", version = "=1.0.0-beta.17" }
apollo-parser = { path = "../apollo-parser", version = "0.7.0" }
arbitrary = { version = "1.3.0", features = ["derive"] }
indexmap = "2.0.0"
Expand Down