plain.auth 0.25.1__tar.gz → 0.25.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.
@@ -17,5 +17,5 @@ plain*/tests/.plain
17
17
  .plain
18
18
 
19
19
  .vscode
20
- /.claude/skills/plain-*
20
+ /.claude/settings.local.json
21
21
  /.benchmarks
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.auth
3
- Version: 0.25.1
3
+ Version: 0.25.2
4
4
  Summary: Add users to your app and decide what they can access.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -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
@@ -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,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.auth"
3
- version = "0.25.1"
3
+ version = "0.25.2"
4
4
  description = "Add users to your app and decide what they can access."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  readme = "README.md"
File without changes
File without changes