Skip to content

Commit

Permalink
release: cynic-parser-v0.5.0 (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
cynic-releaser[bot] authored Sep 25, 2024
1 parent c62f528 commit 73ab55d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ version = "3.8.0"
rust-version = "1.72"

[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.4.5" }
cynic-parser = { path = "cynic-parser", version = "0.5.0" }
darling = "0.20"
rstest = "0.22"
syn = "2"
Expand Down
26 changes: 26 additions & 0 deletions cynic-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,32 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v0.5.0 - 2024-09-25

### Breaking Changes

- Integer values are now represented by `IntValue` rather than an i32.
Although the GraphQl `Int` type is represented by `i32` this restriction is
not specified for the grammar.
([#1037](https://github.com/obmarg/cynic/pull/1037))
- `Iter` is no longer `Copy` as this could cause subtle bugs. It remains
`Clone` so you can use that if you need to.
([#1036](https://github.com/obmarg/cynic/pull/1036))
- `IdRange` now implements `IntoIterator` instead of directly implementing
`Iterator`. ([#1036](https://github.com/obmarg/cynic/pull/1036))

### New Features

- Pretty printer can now optionally sort definitions & fields in its output
([#1038](https://github.com/obmarg/cynic/pull/1038))
- The type ystem AST now has spans in more places
([#998](https://github.com/obmarg/cynic/pull/998/files)).

### Bug Fixes

- Support ints larger than i32 in parser ([#1037](https://github.com/obmarg/cynic/pull/1037))
- use Iter in more places in parser ([#1030](https://github.com/obmarg/cynic/pull/1030))

## v0.4.5 - 2024-06-19

### New Features
Expand Down
2 changes: 1 addition & 1 deletion cynic-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A fast, correct and easy to use GraphQL parser"
keywords = ["graphql", "parser", "api"]
readme = "README.md"

version = "0.4.5"
version = "0.5.0"

homepage = "https://docs.rs/cynic-parser"
documentation = "https://docs.rs/cynic-parser"
Expand Down

0 comments on commit 73ab55d

Please sign in to comment.