From 76694f908084ceff21571a831904a007cf5ee3a7 Mon Sep 17 00:00:00 2001 From: pmantica1 Date: Mon, 22 Jul 2019 19:39:41 -0400 Subject: [PATCH] Release v1.11.0. (#396) * Add version v1.11.0 to changelog * Nit * Fix changelog * Add missing parts to the changelog * Remove mention of indexes and mention GraphQL schema generation * Update changelog with pr links * Add missing filter operations * Add amend_custom_scalar_types to changelog * Release v1.11.0. * Update CHANGELOG.md * Add cost estimation and validation error message notes to the changelog. --- CHANGELOG.md | 17 ++++++++++++++++- graphql_compiler/__init__.py | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f2fefdf..ea67b083a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,25 @@ ## Current development version +## v1.11.0 + +- Release automatic GraphQL schema generation from OrientDB schema metadata. [#204](https://github.com/kensho-technologies/graphql-compiler/pull/204) +- Release the SchemaGraph, a utility class designed for easy schema introspection. [#292](https://github.com/kensho-technologies/graphql-compiler/pull/292) +- Release `not_contains` and `not_in_collection` filter operations. [#349](https://github.com/kensho-technologies/graphql-compiler/pull/349) [#350](https://github.com/kensho-technologies/graphql-compiler/pull/350) +- Allow out-of-order `@tag` and `@filter` when in the same scope. [#351](https://github.com/kensho-technologies/graphql-compiler/pull/351) +- Fix a bug causing MATCH queries to have missing type coercions. [#332](https://github.com/kensho-technologies/graphql-compiler/pull/332) +- Release functionality that is able to amend parsing and serialization of custom scalar types in schemas parsed from text form. [#398](https://github.com/kensho-technologies/graphql-compiler/pull/398) +- Improve validation error messages for output and parameter names. [#414](https://github.com/kensho-technologies/graphql-compiler/pull/414) [#416](https://github.com/kensho-technologies/graphql-compiler/pull/416) +- Alpha (unstable) release of query cost estimation functionality. [#345](https://github.com/kensho-technologies/graphql-compiler/pull/345) +- Clean up README.md and update troubleshooting documentation. +- Many maintainer quality-of-life improvements. + +Thanks to `0xflotus`, `bojanserafimov`, `evantey`, `LWProgramming`, `pmantica1`, `qqi0O0`, and `Vlad` for their contributions. + ## v1.10.1 - Fix `_x_count` and optional filter creating duplicate GlobalOperationsStart IR blocks. [#253](https://github.com/kensho-technologies/graphql-compiler/pull/253). -- Raise error for unused @tag directives [#224](https://github.com/kensho-technologies/graphql-compiler/pull/224). +- Raise error for unused `@tag` directives [#224](https://github.com/kensho-technologies/graphql-compiler/pull/224). - Much documentation cleanup and many maintainer quality-of-life improvements. Thanks to `bojanserafimov`, `evantey14`, `jeremy.meulemans`, and `pmantica1` for their contributions. diff --git a/graphql_compiler/__init__.py b/graphql_compiler/__init__.py index f6a713bf0..6a85ee8de 100644 --- a/graphql_compiler/__init__.py +++ b/graphql_compiler/__init__.py @@ -24,7 +24,7 @@ ) __package_name__ = 'graphql-compiler' -__version__ = '1.10.1' +__version__ = '1.11.0' def graphql_to_match(schema, graphql_query, parameters, type_equivalence_hints=None):