Skip to content

Releases: graphql-python/graphql-core

v3.2.0rc5

v3.2.0rc5 Pre-release
Pre-release

Choose a tag to compare

@Cito Cito released this 15 Jan 13:37
27768d3

Pre-release GraphQL-core v3.2.0rc5, based on GraphQL.js v16.1.0.

In addition to porting the recent changes in GraphQL.js,
this pre-release also contains the following improvements:

  • Add flag for using enum names or members as values (#73)
  • Add typed dicts for to_kwargs results (#99)
  • Add ast_to_dict utility function (#136)
  • Make print_block_string work with string proxy objects (#153)
  • Prevent infinite loop in OverlappingFieldsCanBeMergedRule (fetched ahead)

Please test this pre-release and report any issues, the final release is imminent.

v3.2.0rc4

v3.2.0rc4 Pre-release
Pre-release

Choose a tag to compare

@Cito Cito released this 29 Dec 15:00
cf85554

Pre-release GraphQL-core v3.2.0rc4, based on GraphQL.js v16.0.1.

In addition to porting the recent changes in GraphQL.js,
this pre-release also contains the following improvements:

  • Use typed dictionaries for introspection results (#99)
  • Deprecate FrozenDict/List, use tuples as node lists (#112)
  • Experimental support for async iterables as list values (#123)
  • Make print_block_string work with string proxy objects (#153)

Note that the use of tuples may break code that tries to modify the AST.

Please test this pre-release and report any issues, the final release is imminent.

v3.0.6

Choose a tag to compare

@Cito Cito released this 29 Dec 14:18

Patch release GraphQL-core v3.0.6, based on GraphQL.js v14.7.0.

This release backports Python 3.9 and 3.10 support to the 3.0 branch.

v3.2.0rc3

v3.2.0rc3 Pre-release
Pre-release

Choose a tag to compare

@Cito Cito released this 12 Dec 20:38
8f37907

Pre-release GraphQL-core v3.2.0rc3, based on GraphQL.js v16.0.0rc3.

In addition to porting the recent changes in GraphQL.js,
this pre-release also contains the following improvements:

  • Add sync and async execution benchmarks (#141)
  • Minor code simplifications (#146)
  • Optimize node hash method through caching (#150)
  • Optimize performance of character class predicates
  • Include Python 3.10 in default test matrix

v3.1.7

Choose a tag to compare

@Cito Cito released this 12 Dec 19:08
094f4b7

Patch release GraphQL-core v3.1.7, based on GraphQL.js v15.8.0.

This release includes minor changes and improvements, in particular:

  • Set enum value values to value names in build_client_schema (#138)
  • Fix camel to snake case conversion with digits (#140)
  • Preserve deprecation_reason on GraphQLInputFields (d1ffaef)
  • Add missing __Directive.args(includeDeprecated) (0df0a32)
  • Fix original_error.extensions overriding extensions argument (810d712)

v3.2.0rc2

v3.2.0rc2 Pre-release
Pre-release

Choose a tag to compare

@Cito Cito released this 30 Sep 08:35
8e72bfc

Pre-release GraphQL-core v3.2.0rc2, based on GraphQL.js v16.0.0rc2.

  • Make thunk resolver simpler and backward compatible

v3.2.0rc1

v3.2.0rc1 Pre-release
Pre-release

Choose a tag to compare

@Cito Cito released this 29 Sep 15:20
1804bd7

Pre-release GraphQL-core v3.2.0rc1, based on GraphQL.js v16.0.0rc2.

In addition to porting the recent changes in GraphQL.js,
this pre-release also contains the following improvements:

  • Set enum value values to value names in build_client_schema (#138)
  • Fix camel to snake case conversion with digits (#140)
  • Support Python 3.10

v3.1.6

Choose a tag to compare

@Cito Cito released this 20 Aug 18:52

Patch release GraphQL-core v3.1.6, based on GraphQL.js v15.5.1.

This release includes only some minor changes and improvements.

v3.1.5

Choose a tag to compare

@Cito Cito released this 10 May 20:53

Patch release GraphQL-core v3.1.5, based on GraphQL.js v15.4.0.

This release includes the following changes and imrovements:

  • Default parse_literal of GraphQLScalarType now handles variables
  • build_ast_schema now matches order of default types and directives
  • Return formatted errors in formatted execution result (fixes #129)
  • The is_deprecated property is now deprecated itself
  • Input fields and arguments can now be marked as deprecated
  • Handle case when MapAsyncIterator is cancelled (#131)
  • Improve return type for complete_list_value (#132)
  • Replace resolved types in lexicographic schema sort
  • EventEmitter helper class has been replaces by SimplePubSub
  • print_ast now breaks arguments over multiple lines

Special thanks to @cancan101, @mlorenzana, @wuyuanyi135 for contributing.

v3.1.4

Choose a tag to compare

@Cito Cito released this 08 Apr 14:51

Patch release GraphQL-core v3.1.4, based on GraphQL.js v15.3.0.

This release fixes issues #125 and #126 regarding enum values.

Thanks to @dkbarn for reporting the problem.