plain.auth 0.25.1__py3-none-any.whl → 0.25.2__py3-none-any.whl
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.
- plain/auth/CHANGELOG.md +10 -0
- plain/auth/views.py +7 -0
- {plain_auth-0.25.1.dist-info → plain_auth-0.25.2.dist-info}/METADATA +1 -1
- {plain_auth-0.25.1.dist-info → plain_auth-0.25.2.dist-info}/RECORD +6 -6
- {plain_auth-0.25.1.dist-info → plain_auth-0.25.2.dist-info}/WHEEL +0 -0
- {plain_auth-0.25.1.dist-info → plain_auth-0.25.2.dist-info}/licenses/LICENSE +0 -0
plain/auth/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-auth changelog
|
|
2
2
|
|
|
3
|
+
## [0.25.2](https://github.com/dropseed/plain/releases/plain-auth@0.25.2) (2026-02-04)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Added `__all__` exports to `views` module for explicit public API boundaries ([f26a63a5c941](https://github.com/dropseed/plain/commit/f26a63a5c941))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required.
|
|
12
|
+
|
|
3
13
|
## [0.25.1](https://github.com/dropseed/plain/releases/plain-auth@0.25.1) (2026-01-28)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
plain/auth/views.py
CHANGED
|
@@ -25,6 +25,13 @@ try:
|
|
|
25
25
|
except ImportError:
|
|
26
26
|
get_request_impersonator: Any = None
|
|
27
27
|
|
|
28
|
+
__all__ = [
|
|
29
|
+
"AuthView",
|
|
30
|
+
"LoginRequired",
|
|
31
|
+
"LogoutView",
|
|
32
|
+
"redirect_to_login",
|
|
33
|
+
]
|
|
34
|
+
|
|
28
35
|
|
|
29
36
|
class LoginRequired(Exception):
|
|
30
37
|
def __init__(self, login_url: str | None = None, redirect_field_name: str = "next"):
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
plain/auth/CHANGELOG.md,sha256=
|
|
1
|
+
plain/auth/CHANGELOG.md,sha256=iQy_Ud4a0PILwwdFd_0g0ZQRQLP9V6qhyvOLsgHLLrI,9774
|
|
2
2
|
plain/auth/README.md,sha256=nq4CJ43yBNkeKWUNdajx7PCNr4i6qxKb8dkfqo0bxG4,6566
|
|
3
3
|
plain/auth/__init__.py,sha256=CrOsS74CPGN1nPTTfie13mPgdyVLRyZ1YwDPIA77uaA,179
|
|
4
4
|
plain/auth/default_settings.py,sha256=65VzDn3j61OMn78Lg6Zuds4A8QKzJJ_0G9KoFqAOIRo,466
|
|
@@ -7,8 +7,8 @@ plain/auth/sessions.py,sha256=p3aW_3FsjFLZ1Nk2OHejqL-rhAX5NHSE7aigr_z8L3U,6029
|
|
|
7
7
|
plain/auth/templates.py,sha256=CVtuIdBgOgYB2o61zpOPJb6nMx_gU61i_3PDQx8FjVs,770
|
|
8
8
|
plain/auth/test.py,sha256=SHawhwarJEMVfaLkjpiuFVSWZoGIMwhzXreU_T1zvCE,1599
|
|
9
9
|
plain/auth/utils.py,sha256=9kKWh1QqxA8Esct-jBvTCdjBYOHpO_Tg1YeV9WxYmxg,1362
|
|
10
|
-
plain/auth/views.py,sha256=
|
|
11
|
-
plain_auth-0.25.
|
|
12
|
-
plain_auth-0.25.
|
|
13
|
-
plain_auth-0.25.
|
|
14
|
-
plain_auth-0.25.
|
|
10
|
+
plain/auth/views.py,sha256=KLZ-oUByXxflFUcoONuiIjGl4JnsK5A34NfeRfwhCiM,5018
|
|
11
|
+
plain_auth-0.25.2.dist-info/METADATA,sha256=bB99OSzWbEOwo3nOF6XpmhdR24n2--LD_w0dUMoo_UQ,6959
|
|
12
|
+
plain_auth-0.25.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
13
|
+
plain_auth-0.25.2.dist-info/licenses/LICENSE,sha256=m0D5O7QoH9l5Vz_rrX_9r-C8d9UNr_ciK6Qwac7o6yo,3175
|
|
14
|
+
plain_auth-0.25.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|