platform/packages/graphql/graphql_parser/CHANGELOG.md
Tobe O 4e69153e3e Add 'packages/graphql/' from commit '33e2f86ba73d559197b6270df036256104726aca'
git-subtree-dir: packages/graphql
git-subtree-mainline: ac29392d7f
git-subtree-split: 33e2f86ba7
2020-02-15 18:22:07 -05:00

28 lines
856 B
Markdown

# 1.2.0
* Combine `ValueContext` and `VariableContext` into a single `InputValueContext` supertype.
* Add `T computeValue(Map<String, dynamic> variables);`
* Resolve [#23](https://github.com/angel-dart/graphql/issues/23).
* Deprecate old `ValueOrVariable` class, and parser/AST methods related to it.
# 1.1.4
* Fix broken int variable parsing - https://github.com/angel-dart/graphql/pull/32
# 1.1.3
* Add `Parser.nextName`, and remove all formerly-reserved words from the lexer.
Resolves [#19](https://github.com/angel-dart/graphql/issues/19).
# 1.1.2
* Parse the `subscription` keyword.
# 1.1.1
* Pubspec updates for Dart 2.
# 1.1.0
* Removed `GraphQLVisitor`.
* Enable parsing operations without an explicit
name.
* Parse `null`.
* Completely ignore commas.
* Ignore Unicode BOM, as per the spec.
* Parse object values.
* Parse enum values.