plain.auth 0.20.7__tar.gz → 0.21.0__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.
@@ -8,8 +8,8 @@ __pycache__
8
8
  # Test apps
9
9
  plain*/tests/.plain
10
10
 
11
- # Ottobot
12
- .aider*
11
+ # Agent scratch files
12
+ /scratch
13
13
 
14
14
  # Plain temp dirs
15
15
  .plain
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.auth
3
- Version: 0.20.7
3
+ Version: 0.21.0
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.21.0](https://github.com/dropseed/plain/releases/plain-auth@0.21.0) (2025-11-12)
4
+
5
+ ### What's changed
6
+
7
+ - Improved type checking compatibility by adding type ignore comment for mixin method resolution in `AuthViewMixin` ([f4dbcef](https://github.com/dropseed/plain/commit/f4dbcefa92))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - No changes required
12
+
3
13
  ## [0.20.7](https://github.com/dropseed/plain/releases/plain-auth@0.20.7) (2025-10-31)
4
14
 
5
15
  ### What's changed
@@ -110,7 +110,8 @@ class AuthViewMixin(SessionViewMixin):
110
110
  else:
111
111
  raise PermissionDenied("Login required")
112
112
 
113
- response = super().get_response()
113
+ # Mixin expects to be used with View base class
114
+ response = super().get_response() # type: ignore[misc]
114
115
 
115
116
  if self.user:
116
117
  # Make sure it at least has private as a default
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.auth"
3
- version = "0.20.7"
3
+ version = "0.21.0"
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