Skip to content

Releases: graphql-python/graphene

Graphene 0.10.2 - Better Django integration

01 Jun 05:21
Compare
Choose a tag to compare

Changelog

  • Fixed unregistered types in graphene.Schema da09bc3
  • Improved Django choices:
    • Use Django forcetext for choices 7f65985
    • Fixed Django converter of field with grouped choices 9e715cd
  • Fixed ClientIDMutation GraphQL type name. b9695c8
  • Fixed DDT double cursors for SQL debugging 7df1f8a

Graphene 0.10.1 - Small fixes

01 Jun 04:04
Compare
Choose a tag to compare

Changelog

  • Fixed bug when no middlewares are present feb0825
  • Add test for auto_camelcase flag 161f198

Graphene 0.10.0 - Middleware and multiple bux fixes

21 May 08:48
Compare
Choose a tag to compare

Changelog

Breaking:

  • Removed the plugin functionality, replaced by with Middleware. #176

Bug fixes:

  • Support with_context on ClientIDMutation.mutate_and_get_payload. 61e7bee
  • Added interfaces field into a ObjectType 10304eb
  • Allow string references in InputTypes d6740e9
  • Fixed django OneToOne inverse relationship conversion b431bfe
  • Allow numbers in to_constant ae8a23b
  • Fix context arg in connections 8907449

Graphene 0.9.1 - Fixed compatibility issue

19 May 03:29
Compare
Choose a tag to compare

Changelog

  • Fixed package compatibility issue 7115306

Graphene 0.9.0 - GraphQL 2016 Apr spec

19 May 03:27
Compare
Choose a tag to compare

Changelog

  • Updated graphql-core version to 0.5.0, with a improved way for executing queries
  • Added the with_context decorator for having the context appended into the resolver arguments

Graphene 0.8.0 - Django Stability, Custom Scalars, Bugfixes

03 Apr 04:17
Compare
Choose a tag to compare

Changelog

This Graphene version improves the Django integration

  • Improved Django choice converter to GraphQL Enum type 68a9fb9
  • Added ability for a Enum to be mounted as a instance (field) in ObjectTypes,InputObjectTypes or an argument e1a693e
  • Added FileField support in Django models a1dd2b6
  • Added support for Postgres fields in Django models 7f96500
  • Added custom scalars DateTime and JSONString 12c69c0

Fixes

  • Allow empty list in SQLAlchemyConnectionField 653e67d
  • Fixed PageInfo and Connection constructors 21ec116 #131
  • Fixed default query value in SQLAlchemyConnection integration 1f548f1
  • Documentation improvements 8c39543 4f5de49 b358e4c

Graphene 0.7.3 - Small fixes

30 Mar 06:48
Compare
Choose a tag to compare

Changelog

  • Fix Connections and Filters for use a manager as default value
  • Fixed raw_sql tracking code for Django Debug Plugin
  • Improved documentation and fixed typos

Graphene 0.7.2 - Bug fixes

06 Feb 03:11
Compare
Choose a tag to compare

Changelog

  • Fixed querying and slicing when using DjangoConnectionField or DjangoFilterConnectionField. 314703d
  • Fixed empty sql when using Django-Debug-Toolbar and DjangoDebug plugin at the same time c5b15ce
  • Fixed Scalar instance usage 7b06e01

Graphene 0.7.1 - Enums, Field sources and more

03 Feb 04:48
Compare
Choose a tag to compare

Changelog

  • Added support for Enum types. And added mapping for Django and SQLAlchemy e9e51a0
  • Added source argument to Field a66f6f2 (so you can do field_name = graphene.String(source='attr_in_obj'))
  • Fix UnionType resolver 8c3f8b1

Graphene 0.7.0 - Added SQLAlchemy support!

26 Jan 19:57
Compare
Choose a tag to compare

Changelog

  • Added SQLAlchemy support! Including mapping models, relay, docs and a Flask+SQLAlchemy example
  • Set clientMutationId to be camelCase
  • Added global_id method to relay.Node