platform/packages/graphql/graphql_parser/CHANGELOG.md

29 lines
856 B
Markdown
Raw Normal View History

2019-08-08 02:05:09 +00:00
# 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.
2019-09-02 17:14:24 +00:00
# 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).
2019-03-29 18:57:34 +00:00
# 1.1.2
* Parse the `subscription` keyword.
2018-10-23 16:01:05 +00:00
# 1.1.1
* Pubspec updates for Dart 2.
2018-08-05 00:44:41 +00:00
# 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.
2019-09-02 17:14:24 +00:00
* Parse enum values.