Skip to content

Releases: eamigo86/graphene-django-extras

v0.3.8-alpha11

24 Aug 19:09
Compare
Choose a tag to compare
v0.3.8-alpha11 Pre-release
Pre-release

1- Fixed minor bug with nested_fields for mutations.
2- Updated dependencies to avoid errors with CharField with choices and blank=True reported for graphql-core.

v0.3.8-alpha10

22 Aug 14:32
Compare
Choose a tag to compare
v0.3.8-alpha10 Pre-release
Pre-release

1- Added new date directive: "time ago 2d".
2- Updated graphene-django requirements.
3- Replaced dateutils dependency with python-dateutil.
4- Fixed minor bug on "time ago" date directive.
5- Pinned version of django-filter==1.1.0 package.

v0.3.8-alpha9

22 Jul 23:23
Compare
Choose a tag to compare
v0.3.8-alpha9 Pre-release
Pre-release
Fixed typographic bug on converter.py

v0.3.8-alpha8

20 Jul 02:42
Compare
Choose a tag to compare
v0.3.8-alpha8 Pre-release
Pre-release

Fixed typographic bug on converter.py

V0.3.0

05 Jan 23:05
Compare
Choose a tag to compare
  1. Added Binary graphql type. A BinaryArray is used to convert a Django BinaryField to the string form.
  2. Added CACHE_ACTIVE and CACHE_TIMEOUT config options to GRAPHENE_DJANGO_EXTRAS settings for activate cache and define a expire time. Default values are: CACHE_ACTIVE=False, CACHE_TIMEOUT=300 (seconds). Only available for Queries.
  3. Updated Date directive for use with Django TimeField, DateField, and DateTimeField.
  4. Updated ExtraGraphQLView and AuthenticatedGraphQLView to allow use subscription requests on graphene-django >=2.0
  5. Updated setup dependence to graphene-django>=2.0.

v0.2.1

21 Dec 21:54
Compare
Choose a tag to compare
  1. Added some useful Directives to use on queries and fragments.
  2. Fixed error on DjangoFilterPaginateListField resolve function.
  3. Fixed bug with default PaginationClass and DjangoFilterPaginateListField.

v0.1.7

13 Dec 18:52
Compare
Choose a tag to compare
Fixed bug on create and update function on serializer mutation.

v0.1.3

30 Nov 21:37
Compare
Choose a tag to compare
Fixed some minors bugs

v0.1.3a1

17 Nov 19:21
Compare
Choose a tag to compare

Fixed some minors bugs

v0.1.2

14 Nov 19:49
Compare
Choose a tag to compare
  1. Added ok field and errors field to DjangoSerializerType like on DjangoSerializerMutation.
  2. Added possibility of filtering in those queries fields that return a list of objects.
  3. Updated DRF compatibility.
  4. Fixed bug with filters when use global DEFAULT_PAGINATION_CLASS.