navigator-auth 0.17.1__tar.gz → 0.17.2__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 (136) hide show
  1. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/PKG-INFO +3 -1
  2. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/version.py +1 -1
  3. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth.egg-info/PKG-INFO +3 -1
  4. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth.egg-info/requires.txt +2 -0
  5. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/pyproject.toml +2 -0
  6. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/CHANGES.rst +0 -0
  7. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/LICENSE +0 -0
  8. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/MANIFEST.in +0 -0
  9. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/Makefile +0 -0
  10. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/README.md +0 -0
  11. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/Makefile +0 -0
  12. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/api.rst +0 -0
  13. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/authors.rst +0 -0
  14. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/changelog.rst +0 -0
  15. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/changes.rst +0 -0
  16. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/code-of-conduct.rst +0 -0
  17. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/conf.py +0 -0
  18. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/config.rst +0 -0
  19. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/index.rst +0 -0
  20. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/make.bat +0 -0
  21. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/policies.py +0 -0
  22. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/requirements-dev.txt +0 -0
  23. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/requirements.txt +0 -0
  24. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/security.rst +0 -0
  25. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/docs/settings.rst +0 -0
  26. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/__init__.py +0 -0
  27. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/__init__.py +0 -0
  28. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/audit.py +0 -0
  29. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/context.py +0 -0
  30. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/decorators.py +0 -0
  31. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/errors.py +0 -0
  32. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/guardian.py +0 -0
  33. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/middleware.py +0 -0
  34. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/pdp.py +0 -0
  35. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/__init__.py +0 -0
  36. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/abstract.py +0 -0
  37. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/environment.py +0 -0
  38. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/evaluator.py +0 -0
  39. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/file.py +0 -0
  40. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/obj.py +0 -0
  41. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/policy.py +0 -0
  42. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/resource_policy.py +0 -0
  43. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policies/resources.py +0 -0
  44. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/policyhandler.py +0 -0
  45. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/storages/__init__.py +0 -0
  46. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/storages/abstract.py +0 -0
  47. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/storages/db.py +0 -0
  48. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/abac/storages/pg.py +0 -0
  49. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/auth.py +0 -0
  50. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/authorizations/__init__.py +0 -0
  51. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/authorizations/abstract.py +0 -0
  52. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/authorizations/allow_hosts.py +0 -0
  53. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/authorizations/hosts.py +0 -0
  54. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/authorizations/useragent.py +0 -0
  55. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/__init__.py +0 -0
  56. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/abstract.py +0 -0
  57. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/adfs.py +0 -0
  58. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/api.py +0 -0
  59. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/__init__.py +0 -0
  60. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/abstract.py +0 -0
  61. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/attributes/internal.py +0 -0
  62. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/azure.py +0 -0
  63. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/basic.py +0 -0
  64. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/django.py +0 -0
  65. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/external.py +0 -0
  66. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/github.py +0 -0
  67. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/google.py +0 -0
  68. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/idp/__init__.py +0 -0
  69. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/idp/code.py +0 -0
  70. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/jwksutils.py +0 -0
  71. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/noauth.py +0 -0
  72. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth.py +0 -0
  73. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/__init__.py +0 -0
  74. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/backend.py +0 -0
  75. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/client_backend.py +0 -0
  76. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/code_backend.py +0 -0
  77. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/ddl.sql +0 -0
  78. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/oauth2/models.py +0 -0
  79. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/okta.py +0 -0
  80. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/saml.py +0 -0
  81. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/token.py +0 -0
  82. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/backends/troc.py +0 -0
  83. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/conf.py +0 -0
  84. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/decorators.py +0 -0
  85. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/exceptions.c +0 -0
  86. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/exceptions.pxd +0 -0
  87. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/exceptions.pyx +0 -0
  88. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/__init__.py +0 -0
  89. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/groups.py +0 -0
  90. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/handler.py +0 -0
  91. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/model.py +0 -0
  92. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/partners.py +0 -0
  93. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/permissions.py +0 -0
  94. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/recovery.py +0 -0
  95. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/userattrs.py +0 -0
  96. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/users/__init__.py +0 -0
  97. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/users/passwd.py +0 -0
  98. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/users/session.py +0 -0
  99. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/handlers/users/user.py +0 -0
  100. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/identities.py +0 -0
  101. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/__init__.py +0 -0
  102. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/cipher.cpp +0 -0
  103. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/cipher.pyx +0 -0
  104. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/json.cpp +0 -0
  105. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/json.pyx +0 -0
  106. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/parser.cpp +0 -0
  107. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/libs/parser.pyx +0 -0
  108. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/__init__.py +0 -0
  109. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/abstract.py +0 -0
  110. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/apikey.py +0 -0
  111. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/django.py +0 -0
  112. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/jwt.py +0 -0
  113. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/security.py +0 -0
  114. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/token.py +0 -0
  115. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/middlewares/troc.py +0 -0
  116. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/models.py +0 -0
  117. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/py.typed +0 -0
  118. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/responses.py +0 -0
  119. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/storages/__init__.py +0 -0
  120. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/storages/abstract.py +0 -0
  121. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/storages/postgres.py +0 -0
  122. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/storages/redis.py +0 -0
  123. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/templates.py +0 -0
  124. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth/uv.py +0 -0
  125. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth.egg-info/SOURCES.txt +0 -0
  126. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth.egg-info/dependency_links.txt +0 -0
  127. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/navigator_auth.egg-info/top_level.txt +0 -0
  128. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/setup.cfg +0 -0
  129. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/setup.py +0 -0
  130. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/__init__.py +0 -0
  131. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_allowed.py +0 -0
  132. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_login.py +0 -0
  133. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_policy.py +0 -0
  134. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_policy_conditions.py +0 -0
  135. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_policy_evaluation.py +0 -0
  136. {navigator_auth-0.17.1 → navigator_auth-0.17.2}/tests/test_policy_object.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: navigator-auth
3
- Version: 0.17.1
3
+ Version: 0.17.2
4
4
  Summary: Navigator Auth is an Authentication/Authorization Toolkit for aiohttp.
5
5
  Author-email: Jesus Lara Gimenez <jesuslarag@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -45,6 +45,8 @@ Requires-Dist: navigator-session>=0.6.5
45
45
  Requires-Dist: navigator-api>=0.5.0
46
46
  Requires-Dist: pydantic>=2.12.5
47
47
  Requires-Dist: python3-saml>=1.16.0
48
+ Requires-Dist: lxml>=6.0.2
49
+ Requires-Dist: xmlsec>=1.3.17
48
50
  Provides-Extra: uvloop
49
51
  Requires-Dist: uvloop>=0.20.0; extra == "uvloop"
50
52
  Dynamic: license-file
@@ -7,7 +7,7 @@ __title__ = "navigator_auth"
7
7
  __description__ = (
8
8
  "Navigator Auth is an Authentication/Authorization Toolkit for aiohttp."
9
9
  )
10
- __version__ = "0.17.1" # pragma: no cover
10
+ __version__ = "0.17.2" # pragma: no cover
11
11
  __author__ = "Jesus Lara"
12
12
  __author_email__ = "jesuslarag@gmail.com"
13
13
  __copyright__ = "Copyright (c) 2019-2025 Jesus Lara"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: navigator-auth
3
- Version: 0.17.1
3
+ Version: 0.17.2
4
4
  Summary: Navigator Auth is an Authentication/Authorization Toolkit for aiohttp.
5
5
  Author-email: Jesus Lara Gimenez <jesuslarag@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -45,6 +45,8 @@ Requires-Dist: navigator-session>=0.6.5
45
45
  Requires-Dist: navigator-api>=0.5.0
46
46
  Requires-Dist: pydantic>=2.12.5
47
47
  Requires-Dist: python3-saml>=1.16.0
48
+ Requires-Dist: lxml>=6.0.2
49
+ Requires-Dist: xmlsec>=1.3.17
48
50
  Provides-Extra: uvloop
49
51
  Requires-Dist: uvloop>=0.20.0; extra == "uvloop"
50
52
  Dynamic: license-file
@@ -15,6 +15,8 @@ navigator-session>=0.6.5
15
15
  navigator-api>=0.5.0
16
16
  pydantic>=2.12.5
17
17
  python3-saml>=1.16.0
18
+ lxml>=6.0.2
19
+ xmlsec>=1.3.17
18
20
 
19
21
  [uvloop]
20
22
  uvloop>=0.20.0
@@ -52,6 +52,8 @@ dependencies = [
52
52
  "navigator-api>=0.5.0",
53
53
  "pydantic>=2.12.5",
54
54
  "python3-saml>=1.16.0",
55
+ "lxml>=6.0.2",
56
+ "xmlsec>=1.3.17",
55
57
  ]
56
58
 
57
59
  [project.optional-dependencies]
File without changes