dj-jwt-auth 1.5.11__tar.gz → 1.5.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/PKG-INFO +1 -1
  2. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/dj_jwt_auth.egg-info/PKG-INFO +1 -1
  3. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/middleware.py +0 -3
  4. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/setup.cfg +1 -1
  5. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/MANIFEST.in +0 -0
  6. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/README.md +0 -0
  7. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/dj_jwt_auth.egg-info/SOURCES.txt +0 -0
  8. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/dj_jwt_auth.egg-info/dependency_links.txt +0 -0
  9. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/dj_jwt_auth.egg-info/requires.txt +0 -0
  10. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/dj_jwt_auth.egg-info/top_level.txt +0 -0
  11. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/__init__.py +0 -0
  12. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/config.py +0 -0
  13. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/exceptions.py +0 -0
  14. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/pkce.py +0 -0
  15. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/roles.py +0 -0
  16. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/settings.py +0 -0
  17. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/templates/admin/login.html +0 -0
  18. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/templates/django-jwt-index.html +0 -0
  19. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/urls.py +0 -0
  20. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/user.py +0 -0
  21. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/utils.py +0 -0
  22. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/django_jwt/views.py +0 -0
  23. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/pyproject.toml +0 -0
  24. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/setup.py +0 -0
  25. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/tests/__init__.py +0 -0
  26. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/tests/models.py +0 -0
  27. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/tests/test.py +0 -0
  28. {dj-jwt-auth-1.5.11 → dj-jwt-auth-1.5.13}/tests/urls.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.5.11
3
+ Version: 1.5.13
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.5.11
3
+ Version: 1.5.13
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -31,6 +31,3 @@ class JWTAuthMiddleware(MiddlewareMixin):
31
31
  return JsonResponse(status=HTTPStatus.UNAUTHORIZED.value, data={"detail": "expired token"})
32
32
  except UnicodeDecodeError as exc:
33
33
  log.warning(f"UnicodeDecodeError: {exc}")
34
- except Exception as exc:
35
- log.warning(f"Unexpected error: {exc}")
36
- return
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = dj-jwt-auth
3
- version = 1.5.11
3
+ version = 1.5.13
4
4
  description = A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  long_description = file: README.md
6
6
  url = https://www.example.com/
File without changes
File without changes
File without changes
File without changes
File without changes