plain.oauth 0.23.0__py3-none-any.whl → 0.24.1__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/oauth/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # plain-oauth changelog
2
2
 
3
+ ## [0.24.1](https://github.com/dropseed/plain/releases/plain-oauth@0.24.1) (2025-07-23)
4
+
5
+ ### What's changed
6
+
7
+ - Added a nav icon to the OAuth admin interface ([9e9f8b0](https://github.com/dropseed/plain/commit/9e9f8b0e2c))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - No changes required
12
+
13
+ ## [0.24.0](https://github.com/dropseed/plain/releases/plain-oauth@0.24.0) (2025-07-22)
14
+
15
+ ### What's changed
16
+
17
+ - Migrations updated to use the new `PrimaryKeyField` instead of `BigAutoField` ([4b8fa6a](https://github.com/dropseed/plain/commit/4b8fa6a))
18
+
19
+ ### Upgrade instructions
20
+
21
+ - No changes required.
22
+
3
23
  ## [0.23.0](https://github.com/dropseed/plain/releases/plain-oauth@0.23.0) (2025-07-18)
4
24
 
5
25
  ### What's changed
plain/oauth/admin.py CHANGED
@@ -39,6 +39,7 @@ class OAuthConnectionViewset(AdminViewset):
39
39
  nav_section = "OAuth"
40
40
  model = OAuthConnection
41
41
  title = "Connections"
42
+ nav_icon = "link-45deg"
42
43
  fields = ["id", "user", "provider_key", "provider_user_id"]
43
44
  cards = [ProvidersChartCard]
44
45
 
@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
17
17
  migrations.CreateModel(
18
18
  name="OAuthConnection",
19
19
  fields=[
20
- ("id", models.BigAutoField(auto_created=True, primary_key=True)),
20
+ ("id", models.PrimaryKeyField()),
21
21
  ("created_at", models.DateTimeField(auto_now_add=True)),
22
22
  ("updated_at", models.DateTimeField(auto_now=True)),
23
23
  ("provider_key", models.CharField(max_length=100)),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.oauth
3
- Version: 0.23.0
3
+ Version: 0.24.1
4
4
  Summary: OAuth login and API access for Plain.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -1,7 +1,7 @@
1
- plain/oauth/CHANGELOG.md,sha256=hpiqoYje6dg5Y5h0BcjKl781Q_o0-U3vPCGRgvBd0KQ,826
1
+ plain/oauth/CHANGELOG.md,sha256=1UEW4Nz9VxdFVC_Na9WbiypJpK5ejJaqbTCR8vLMimE,1400
2
2
  plain/oauth/README.md,sha256=N8getAUUhLX6P4mg-5P0V41gk5EKBGb8v904OfP2Z9E,9961
3
3
  plain/oauth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- plain/oauth/admin.py,sha256=rqrGRRUVxOlG9wiuXtndIyQxd1VT67cvFy6qWo7LF-Q,1278
4
+ plain/oauth/admin.py,sha256=9DAku8ubV6a_ByFer6UBS0G1cC_gGGHiI_iRP0b78nE,1310
5
5
  plain/oauth/config.py,sha256=0Q4IILBKQbIaxqeL9WRTH5Cka-BO3c3SOj1AdQIAJgc,167
6
6
  plain/oauth/default_settings.py,sha256=dlN1J9vSOjjxPNLp-0qe-cLTqwM4E69ZAx_8lpxMhaM,28
7
7
  plain/oauth/exceptions.py,sha256=yoZsq8XgzstuwbE2ihoet0nzpw_sVZgDrwUauh6hhUs,546
@@ -9,10 +9,10 @@ plain/oauth/models.py,sha256=T8VqqxeYGC4xKRVzUKAnc0OU3GN0otDAShDS6CPJhJs,6754
9
9
  plain/oauth/providers.py,sha256=YDftJUMyyfXgsDCkyTNxGwrbwXAowL0Hg6KrwrAN5S0,7793
10
10
  plain/oauth/urls.py,sha256=FYzpQwhvZdcat8n3f7RyA-1Q21finKb8JEyakSOjXXg,696
11
11
  plain/oauth/views.py,sha256=J2NCa37YediBTi82CfRlmsb45hFT6gWN6zMaFHhsDMM,2410
12
- plain/oauth/migrations/0001_initial.py,sha256=Vck4r6fzVasC8tveOl6Iufwy01SskcxkI2WkCO3DXCA,1972
12
+ plain/oauth/migrations/0001_initial.py,sha256=0NjfF7F3szhUXkpK3JvN10Xkat1QR-VvnX6Oed9iFmo,1940
13
13
  plain/oauth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  plain/oauth/templates/oauth/callback.html,sha256=4CJG0oAN0xYjw2IPkjaL7B4hwlf9um9LI4CTu50E-yE,173
15
- plain_oauth-0.23.0.dist-info/METADATA,sha256=8SCsBLL8C2R3P7Lp8bwbigV0MhP5XuKXb9ymhPqF0cE,10365
16
- plain_oauth-0.23.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
- plain_oauth-0.23.0.dist-info/licenses/LICENSE,sha256=cvKM3OlqHx3ijD6e34zsSUkPvzl-ya3Dd63A6EHL94U,1500
18
- plain_oauth-0.23.0.dist-info/RECORD,,
15
+ plain_oauth-0.24.1.dist-info/METADATA,sha256=PhCCDkhGZDc4_WZSFc2uSVhDsU5E95AhYYeiK5ru6Ho,10365
16
+ plain_oauth-0.24.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
+ plain_oauth-0.24.1.dist-info/licenses/LICENSE,sha256=cvKM3OlqHx3ijD6e34zsSUkPvzl-ya3Dd63A6EHL94U,1500
18
+ plain_oauth-0.24.1.dist-info/RECORD,,