Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lrlna authored Jun 20, 2024
1 parent 825ff02 commit 6a4a786
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions crates/apollo-smith/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Maintenance
## Documentation -->
# [0.7.0](https://crates.io/crates/apollo-smith/0.7.0) - 2024-06-20

## Features

- **Improve field variability in Selection Set generation - [geal], [pull/866].**
This changes the field generation algorithm in apollo-smith to allow more
variety, because the previous implementation was the previous implementation
was too biased towards the first field specified in a type. This also adds an
example to generate a random query from a schema.

[geal]: https://github.com/geal
[pull/866]: https://github.com/apollographql/apollo-rs/pull/866


# [0.6.0-beta.1](https://crates.io/crates/apollo-smith/0.6.0-beta.1) - 2023-11-30

Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-smith/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-smith"
version = "0.6.0-beta.1" # When bumping, also update README.md
version = "0.7.0" # When bumping, also update README.md
edition = "2021"
authors = ["Benjamin Coenen <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-smith/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ and add `apollo-smith` to your Cargo.toml:
## fuzz/Cargo.toml

[dependencies]
apollo-smith = "0.6.0-beta.1"
apollo-smith = "0.7.0"
```

It can then be used in a `fuzz_target` along with the [`arbitrary`] crate,
Expand Down

0 comments on commit 6a4a786

Please sign in to comment.