Releases: nrbnlulu/strawberry-django-auth
gqlauth 0.376.6
This release fixes mypy errors, updates linters, and added docs about JwtSchema
.
gqlauth 0.376.5
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
This release adds support for Django 5.0 (https://docs.djangoproject.com/en/5.0/releases/5.0/).
gqlauth 0.376.3
This release adds support for Python3.12
gqlauth 0.376.2
This release restores an accidentally deleted django migrations.
gqlauth 0.376.1
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
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
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
orrequest.scope["UserOrError"]
gqlauth 0.374.6
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
Dependencies update