strawberry-django-jwt icon indicating copy to clipboard operation
strawberry-django-jwt copied to clipboard

JSON Web Token (JWT) authentication for Django with Strawberry GraphQL

Results 23 strawberry-django-jwt issues
Sort by recently updated
recently updated
newest added

Bumps [salsify/action-detect-and-tag-new-version](https://github.com/salsify/action-detect-and-tag-new-version) from 2.0.1 to 2.0.3. Release notes Sourced from salsify/action-detect-and-tag-new-version's releases. v2.0.3 This release bumps @actions/core to its latest version to account for changes to how actions emit output....

dependencies
github_actions

Bumps [uvicorn](https://github.com/encode/uvicorn) from 0.18.3 to 0.20.0. Release notes Sourced from uvicorn's releases. Version 0.20.0 Added Check if handshake is completed before sending frame on wsproto shutdown (#1737) Add default headers...

dependencies
python

Bumps [strawberry-graphql-django](https://github.com/strawberry-graphql/strawberry-graphql-django) from 0.5.3 to 0.7.1. Release notes Sourced from strawberry-graphql-django's releases. Release 0.7.1 What's Changed fix: Prevent memory leaks when checking if the search method accepts an info keyword...

dependencies
python

I had a play around and managed to get this working at a basic level with the upcoming Channels support: https://github.com/strawberry-graphql/strawberry/pull/1407 It would be great for this package to support...

Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.5.0 to 2.6.0. Changelog Sourced from pyjwt's changelog. v2.6.0 <https://github.com/jpadilla/pyjwt/compare/2.5.0...2.6.0>__ Changed - bump up cryptography >= 3.4.0 by @jpadilla in `[#807](https://github.com/jpadilla/pyjwt/issues/807) <https://github.com/jpadilla/pyjwt/pull/807>`_ - Remove `types-cryptography` from `crypto`...

dependencies
python

i.e., when you have the `sessionid` cookie. The workaround is to log out of admin, or delete the `sessionid` cookie. ``` Traceback (most recent call last): File "/usr/local/lib/python3.8/site-packages/graphql/execution/execute.py", line 521,...

When not using refresh token: ``` RuntimeError: Model class strawberry_django_jwt.refresh_token.models.RefreshToken doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS. ``` Workaround is to add `strawberry_django_jwt.refresh_token` regardless of...

`.timestamp()` returns POSIX timestamp as a float, so this causes an error because refresh_expires_in expects an `int`. https://github.com/KundaPanda/strawberry-django-jwt/blob/54ad4b0a45f211b702b2f4c6541d4d8c5762050d/strawberry_django_jwt/utils.py#L255-L257

consider this query ```graphql obtainPayload { payload { origIat exp username } refreshExpiresIn # no refresh token here token } ``` Works fine. But this one: ```graphql mutation obtainJWT {...

bug
python
breaking

The new strawberry 0.121.0 update changes how default field resolvers work. The `get_result` function has been completely removed, and its' content moved to the `from_resolver` function (https://github.com/strawberry-graphql/strawberry/compare/0.120.0...0.121.0#diff-00af9d43c9b59404ba170e72e470939f2a6dd50e2eae24d0e24ef105431e5414L284).

python
breaking