Skip to content

Releases: nrbnlulu/strawberry-django-auth

gqlauth 0.376.6

28 Mar 22:45
Compare
Choose a tag to compare

This release fixes mypy errors, updates linters, and added docs about JwtSchema.

gqlauth 0.376.5

27 Jan 17:29
Compare
Choose a tag to compare

Fix bug in removal of JWT prefix.
In the current implementation if a token happens to contain any trailing J, W or T chars they are also removed.
This fix ensures we're only interested in the prefix as a substring.

gqlauth 0.376.4

09 Dec 21:50
Compare
Choose a tag to compare

This release adds support for Django 5.0 (https://docs.djangoproject.com/en/5.0/releases/5.0/).

gqlauth 0.376.3

21 Nov 16:42
Compare
Choose a tag to compare

This release adds support for Python3.12

gqlauth 0.376.2

15 Aug 09:11
Compare
Choose a tag to compare

This release restores an accidentally deleted django migrations.

gqlauth 0.376.1

14 Aug 07:50
Compare
Choose a tag to compare

This release fixes the way we set the refresh token's field revoked.
Previously we were passing a naive DateTime object but now we pass the timestamp with the timezone info.

fixes #395

gqlauth 0.376.0

07 Aug 11:13
Compare
Choose a tag to compare

This release removes the call for authenticate() on basic JWT authorization in order
to support multiple authorization backends see issue #268.

gqlauth 0.375.0

10 Jul 04:01
Compare
Choose a tag to compare

This release updates to the latest version of strawberry
and removes dependencies with strawberry-django-plus.

  • The directive IsVerified is migrated to the new field
    extensions API and extends the django base permission
    extension.

  • The Channels middleware will inject the user in request.user
    or request.scope["UserOrError"]

gqlauth 0.374.6

29 May 13:00
Compare
Choose a tag to compare

This release fixes the way we call django's send_mail() previously
we were passing the DjangoSetting object directly, but now we pass its value.

fixes #387

gqlauth 0.374.5

16 May 17:55
Compare
Choose a tag to compare

Dependencies update