Skip to content

Commit

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

---------

Co-authored-by: Irina Shestak <[email protected]>
Co-authored-by: Renée <[email protected]>
  • Loading branch information
3 people authored Apr 13, 2023
1 parent eacadd5 commit ff2df97
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions crates/apollo-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Documentation -->

# [0.5.1](https://crates.io/crates/apollo-parser/0.5.1) - 2023-04-13
## Fixes
- **remove recursion in field parsing - [goto-bus-stop], [pull/519]**
The `selection::selection_set` parser already supports parsing multiple fields.
This removes recursion from field parsing, reducing the risk of stack
overflow on queries with many fields.

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


# [0.5.0](https://crates.io/crates/apollo-parser/0.5.0) - 2023-02-16
## Features
- **new `ast::Definition` methods - [goto-bus-stop], [pull/456]**
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-parser"
version = "0.5.0"
version = "0.5.1"
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-parser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add this to your `Cargo.toml` to start using `apollo-parser`:
```toml
# Just an example, change to the necessary package version.
[dependencies]
apollo-parser = "0.4.0"
apollo-parser = "0.5.1"
```

Or using [cargo-edit]:
Expand Down

0 comments on commit ff2df97

Please sign in to comment.