Skip to content

cynic-parser-v0.5.0

Compare
Choose a tag to compare
@cynic-releaser cynic-releaser released this 25 Sep 15:22
· 64 commits to main since this release
73ab55d

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)
  • Iter is no longer Copy as this could cause subtle bugs. It remains
    Clone so you can use that if you need to.
    (#1036)
  • IdRange now implements IntoIterator instead of directly implementing
    Iterator. (#1036)

New Features

  • Pretty printer can now optionally sort definitions & fields in its output
    (#1038)
  • The type ystem AST now has spans in more places
    (#998).

Bug Fixes

  • Support ints larger than i32 in parser (#1037)
  • use Iter in more places in parser (#1030)