Skip to content

Releases: eamigo86/graphene-django-extras

v0.1.1

14 Nov 19:01
Compare
Choose a tag to compare
  1. Fixed error with JSONField reference on Django==1.8.x installations.

v0.1.0-alpha12

31 Oct 18:28
Compare
Choose a tag to compare
  1. Added new settings param: MAX_PAGE_SIZE, to use on GRAPHENE_DJANGO_EXTRAS configuration dict for better customize DjangoListObjectType's pagination.
  2. Added support to Django's field: GenericRel.
  3. Improve model's fields calculation for to add all possible related and reverse fields.
  4. Improved documentation translation.

v0.1.0-alpha11

30 Oct 21:12
Compare
Choose a tag to compare
  1. Fixed bug on model fields with choices on an inheritance and the auto generated emun.
  2. Improved ordering for showed fields on graphqli's IDE.
  3. Added better descriptions to auto generated fields.

v0.1.0-alpha10

30 Oct 21:09
Compare
Choose a tag to compare
  1. Fixed bug that added the auto generate OneToOneField field of an inheritance to model field list.
  2. Added better descriptions to auto generated fields.

v0.1.0-alpha9

26 Oct 20:00
Compare
Choose a tag to compare
  1. Fixed minor bugs referent to:
    1.1. Error in queryset builder function for list resolvers.
    1.2. Incorrect value for exclude_fields on converter function.
    1.3. Errors for some fields types in GenericType and GenericInputType generations for Queries and Mutations.

v0.1.0-alpha4

25 Oct 14:25
Compare
Choose a tag to compare
  1. Added queryset options to DjangoListObjectType Meta class for specify wanted model queryset.
  2. Added AuthenticatedGraphQLView on graphene_django_extras.views for use ‘permission’, ‘authorization’ and ‘throttle’ classes based on the DRF settings. Special thanks to @jacobh for this comment.

v0.1.0-alpha3

24 Oct 15:25
Compare
Choose a tag to compare
  1. Fixed bug on subscriptions when not specified any field in "data" parameter to bean return on notification message.

v0.1.0-alpha2

24 Oct 13:54
Compare
Choose a tag to compare
  1. Fixed bug when subscribing to a given action (create, update or delete).

  2. Mini web tool to test notifications of graphene-django-extras subscription. It is intuitive and simple:
    graphene-django-extras subscriptions tool.zip

v0.1.0-alpha1

23 Oct 18:17
Compare
Choose a tag to compare
  1. Added support to multiselect choices values for models.CharField with choices attribute, on queries and mutations. Example: Integration with django-multiselectfield package.
  2. Added support to GenericForeignKey and GenericRelation fields, on queries and mutations.
  3. Added first approach to support Subscriptions with Channels, with subscribe and unsubscribe operations. Using channels-api package. 🏆
  4. Fixed minors bugs.

v0.0.2

09 Oct 17:43
Compare
Choose a tag to compare

Changed dependency of DRF to 3.6.4 on setup.py file, to avoid an import error produced by some changes in new version of DRF=3.7.0 and because DRF 3.7.0 dropped support to Django versions < 1.10.