plainx-sentry 0.8.0__tar.gz → 0.9.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.
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/PKG-INFO +3 -1
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/templates.py +7 -1
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/pyproject.toml +3 -1
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/uv.lock +157 -44
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/.gitignore +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/README.md +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/CHANGELOG.md +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/__init__.py +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/config.py +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/default_settings.py +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/plainx/sentry/templates/sentry/js.html +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/scripts/install +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/scripts/release +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/scripts/test +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/tests/settings.py +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/tests/templates/index.html +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/tests/test_sentry.py +0 -0
- {plainx_sentry-0.8.0 → plainx_sentry-0.9.0}/tests/urls.py +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plainx-sentry
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Author-email: Dave Gaeddert <dave.gaeddert@gmail.com>
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
|
+
Requires-Dist: plain-auth>=0.16.0
|
|
7
|
+
Requires-Dist: plain-sessions>=0.27.0
|
|
6
8
|
Requires-Dist: sentry-sdk[opentelemetry]>=2.24.0
|
|
7
9
|
Description-Content-Type: text/markdown
|
|
8
10
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import sentry_sdk
|
|
2
2
|
from plain.auth import get_request_user
|
|
3
3
|
from plain.runtime import settings
|
|
4
|
+
from plain.sessions import SessionNotAvailable
|
|
4
5
|
from plain.templates import register_template_extension
|
|
5
6
|
from plain.templates.jinja.extensions import InclusionTagExtension
|
|
6
7
|
|
|
@@ -27,7 +28,12 @@ class SentryJSExtension(InclusionTagExtension):
|
|
|
27
28
|
|
|
28
29
|
if "request" in context:
|
|
29
30
|
# Get the authenticated user from the request
|
|
30
|
-
|
|
31
|
+
# Session may not be available if we're rendering an error template
|
|
32
|
+
# before SessionMiddleware has run (e.g., CSRF failures)
|
|
33
|
+
try:
|
|
34
|
+
user = get_request_user(context["request"])
|
|
35
|
+
except SessionNotAvailable:
|
|
36
|
+
user = None
|
|
31
37
|
else:
|
|
32
38
|
# Get user directly if no request (like in server error context)
|
|
33
39
|
user = context.get("user", None)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plainx-sentry"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.9.0"
|
|
4
4
|
description = ""
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -8,6 +8,8 @@ authors = [
|
|
|
8
8
|
]
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
dependencies = [
|
|
11
|
+
"plain-auth>=0.16.0",
|
|
12
|
+
"plain-sessions>=0.27.0",
|
|
11
13
|
"sentry-sdk[opentelemetry]>=2.24.0",
|
|
12
14
|
]
|
|
13
15
|
|
|
@@ -8,11 +8,11 @@ resolution-markers = [
|
|
|
8
8
|
|
|
9
9
|
[[package]]
|
|
10
10
|
name = "certifi"
|
|
11
|
-
version = "2025.
|
|
11
|
+
version = "2025.10.5"
|
|
12
12
|
source = { registry = "https://pypi.org/simple" }
|
|
13
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
13
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4c/5b/b6ce21586237c77ce67d01dc5507039d444b630dd76611bbca2d8e5dcd91/certifi-2025.10.5.tar.gz", hash = "sha256:47c09d31ccf2acf0be3f701ea53595ee7e0b8fa08801c6624be771df09ae7b43", size = 164519, upload-time = "2025-10-05T04:12:15.808Z" }
|
|
14
14
|
wheels = [
|
|
15
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl", hash = "sha256:0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de", size = 163286, upload-time = "2025-10-05T04:12:14.03Z" },
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
[[package]]
|
|
@@ -435,7 +435,7 @@ wheels = [
|
|
|
435
435
|
|
|
436
436
|
[[package]]
|
|
437
437
|
name = "plain"
|
|
438
|
-
version = "0.
|
|
438
|
+
version = "0.74.0"
|
|
439
439
|
source = { registry = "https://pypi.org/simple" }
|
|
440
440
|
resolution-markers = [
|
|
441
441
|
"python_full_version >= '3.13'",
|
|
@@ -446,9 +446,43 @@ dependencies = [
|
|
|
446
446
|
{ name = "opentelemetry-api", marker = "python_full_version >= '3.13'" },
|
|
447
447
|
{ name = "opentelemetry-semantic-conventions", marker = "python_full_version >= '3.13'" },
|
|
448
448
|
]
|
|
449
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
449
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1e/c0/17f2af94f3211118d2d3f98c316178d81b53ab7b6f4e6efdd843516cc61b/plain-0.74.0.tar.gz", hash = "sha256:7d1178f756f601ed1472e7f00d7ce46d8de16b1b1b5a003e26b87f0e1bd17b36", size = 187513, upload-time = "2025-10-08T22:32:23.349Z" }
|
|
450
450
|
wheels = [
|
|
451
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
451
|
+
{ url = "https://files.pythonhosted.org/packages/4a/ff/9a69fc2cdaba7235a9b6c4804e8198c3422666e1f8fddeab7168829cfd1a/plain-0.74.0-py3-none-any.whl", hash = "sha256:d3df774ccb9a52a1a470bb6a69a13729b44de14a3faa266062353363724954c7", size = 240820, upload-time = "2025-10-08T22:32:21.676Z" },
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "plain-auth"
|
|
456
|
+
version = "0.16.0"
|
|
457
|
+
source = { registry = "https://pypi.org/simple" }
|
|
458
|
+
resolution-markers = [
|
|
459
|
+
"python_full_version < '3.13'",
|
|
460
|
+
]
|
|
461
|
+
dependencies = [
|
|
462
|
+
{ name = "plain", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
463
|
+
{ name = "plain-models", version = "0.40.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
464
|
+
{ name = "plain-sessions", version = "0.27.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
465
|
+
]
|
|
466
|
+
sdist = { url = "https://files.pythonhosted.org/packages/56/8c/fe1c35fcf9b3ad06fbd57581e4db01b311bc85c7a974dcc77cf1ceb51931/plain_auth-0.16.0.tar.gz", hash = "sha256:e42d52ae15c1212e034fcdb5f37625b8330df9871297d6af6aad472fad88a06a", size = 9943, upload-time = "2025-08-19T15:12:41.719Z" }
|
|
467
|
+
wheels = [
|
|
468
|
+
{ url = "https://files.pythonhosted.org/packages/bc/d2/94cb5d2d0f1fdb967662fe493076f1050c73aa2367b465102789b46e30c2/plain_auth-0.16.0-py3-none-any.whl", hash = "sha256:dc38222432bffd141161c8e97290ee5a0fd35f58472e72d557372bf7e5d0b57a", size = 12006, upload-time = "2025-08-19T15:12:40.64Z" },
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "plain-auth"
|
|
473
|
+
version = "0.20.3"
|
|
474
|
+
source = { registry = "https://pypi.org/simple" }
|
|
475
|
+
resolution-markers = [
|
|
476
|
+
"python_full_version >= '3.13'",
|
|
477
|
+
]
|
|
478
|
+
dependencies = [
|
|
479
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
480
|
+
{ name = "plain-models", version = "0.51.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
481
|
+
{ name = "plain-sessions", version = "0.34.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
482
|
+
]
|
|
483
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/55/2325592261c6d17bb4b15c0028f4332ab1fc3fc01cb109c60b871d68fb98/plain_auth-0.20.3.tar.gz", hash = "sha256:84c157e642f057973adb7d3253ba9640fda26bfd83bb81ec66c660ebb61315c6", size = 11226, upload-time = "2025-10-08T02:51:34.386Z" }
|
|
484
|
+
wheels = [
|
|
485
|
+
{ url = "https://files.pythonhosted.org/packages/39/da/c2d439540d66ea71608bf65e35862be194befe164ecc37794683e631d253/plain_auth-0.20.3-py3-none-any.whl", hash = "sha256:27cacbfc9361104adb56be32a7a064a4d6c4b3a783b9e8e77de39057742c22d2", size = 13863, upload-time = "2025-10-08T02:51:33.203Z" },
|
|
452
486
|
]
|
|
453
487
|
|
|
454
488
|
[[package]]
|
|
@@ -471,20 +505,52 @@ wheels = [
|
|
|
471
505
|
|
|
472
506
|
[[package]]
|
|
473
507
|
name = "plain-code"
|
|
474
|
-
version = "0.10.
|
|
508
|
+
version = "0.10.2"
|
|
475
509
|
source = { registry = "https://pypi.org/simple" }
|
|
476
510
|
resolution-markers = [
|
|
477
511
|
"python_full_version >= '3.13'",
|
|
478
512
|
]
|
|
479
513
|
dependencies = [
|
|
480
|
-
{ name = "plain", version = "0.
|
|
514
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
481
515
|
{ name = "requests", marker = "python_full_version >= '3.13'" },
|
|
482
516
|
{ name = "ruff", marker = "python_full_version >= '3.13'" },
|
|
483
517
|
{ name = "tomlkit", marker = "python_full_version >= '3.13'" },
|
|
484
518
|
]
|
|
485
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
519
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e2/87/67ad665e2a22a2eaff618fc6b1e792d39bb95b622c6936e90c5f77805b98/plain_code-0.10.2.tar.gz", hash = "sha256:0c499490a752c8f712a576b46b408c4fc2431cf2414366f15326b67b2df18c89", size = 6956, upload-time = "2025-10-06T17:28:32.019Z" }
|
|
520
|
+
wheels = [
|
|
521
|
+
{ url = "https://files.pythonhosted.org/packages/54/2f/159c6ad2f7aa6fb1fcd7fa7f1c4afe82d5c724e1216baa788609e784e951/plain_code-0.10.2-py3-none-any.whl", hash = "sha256:02405f55c2911be905ade1cf9177598a204a8e3e5b9cd88b58c665e437be4760", size = 10135, upload-time = "2025-10-06T17:28:30.95Z" },
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "plain-models"
|
|
526
|
+
version = "0.40.1"
|
|
527
|
+
source = { registry = "https://pypi.org/simple" }
|
|
528
|
+
resolution-markers = [
|
|
529
|
+
"python_full_version < '3.13'",
|
|
530
|
+
]
|
|
531
|
+
dependencies = [
|
|
532
|
+
{ name = "plain", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
533
|
+
{ name = "sqlparse", marker = "python_full_version < '3.13'" },
|
|
534
|
+
]
|
|
535
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ac/7e/32a4015fd5822641086ae285774d1e54d9f9ffa22f038f4a77bfb69b062e/plain_models-0.40.1.tar.gz", hash = "sha256:32d03788998cfb9da40e5ef41bc252bd2751821913ac44d3e1be86850b7ad7a1", size = 353465, upload-time = "2025-09-03T21:40:55.978Z" }
|
|
536
|
+
wheels = [
|
|
537
|
+
{ url = "https://files.pythonhosted.org/packages/0c/fb/7831af699e7f834d0f08119d9b5e70fcf5419275101500492c080f110576/plain_models-0.40.1-py3-none-any.whl", hash = "sha256:f0c353d683943adfed86622312bb46cf51e964d277c729582bd5e0f6cd2ae789", size = 406286, upload-time = "2025-09-03T21:40:54.737Z" },
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "plain-models"
|
|
542
|
+
version = "0.51.1"
|
|
543
|
+
source = { registry = "https://pypi.org/simple" }
|
|
544
|
+
resolution-markers = [
|
|
545
|
+
"python_full_version >= '3.13'",
|
|
546
|
+
]
|
|
547
|
+
dependencies = [
|
|
548
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
549
|
+
{ name = "sqlparse", marker = "python_full_version >= '3.13'" },
|
|
550
|
+
]
|
|
551
|
+
sdist = { url = "https://files.pythonhosted.org/packages/01/a0/9153bd897d5961544d4c411bbd7bdfefa49f3c56de5d7171511b0310836d/plain_models-0.51.1.tar.gz", hash = "sha256:46783d6f9fc92818c6b41c83383e6756414f6b21553ae8864777026b960a5f27", size = 379112, upload-time = "2025-10-08T20:50:40.512Z" }
|
|
486
552
|
wheels = [
|
|
487
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
553
|
+
{ url = "https://files.pythonhosted.org/packages/a6/f3/9114c0226ca44a973a47083a8ccdb292bd253d2e3eec4c1cbaaeb72fa1cc/plain_models-0.51.1-py3-none-any.whl", hash = "sha256:29ec229a6a1277c3f81de43e6b24e34b451ef5e46e821d136edc386a9ddd0a0c", size = 435176, upload-time = "2025-10-08T20:50:39.352Z" },
|
|
488
554
|
]
|
|
489
555
|
|
|
490
556
|
[[package]]
|
|
@@ -508,7 +574,7 @@ wheels = [
|
|
|
508
574
|
|
|
509
575
|
[[package]]
|
|
510
576
|
name = "plain-pytest"
|
|
511
|
-
version = "0.12.
|
|
577
|
+
version = "0.12.2"
|
|
512
578
|
source = { registry = "https://pypi.org/simple" }
|
|
513
579
|
resolution-markers = [
|
|
514
580
|
"python_full_version >= '3.13'",
|
|
@@ -516,35 +582,73 @@ resolution-markers = [
|
|
|
516
582
|
dependencies = [
|
|
517
583
|
{ name = "click", marker = "python_full_version >= '3.13'" },
|
|
518
584
|
{ name = "cryptography", marker = "python_full_version >= '3.13'" },
|
|
519
|
-
{ name = "plain", version = "0.
|
|
585
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
520
586
|
{ name = "pytest", marker = "python_full_version >= '3.13'" },
|
|
521
587
|
{ name = "python-dotenv", marker = "python_full_version >= '3.13'" },
|
|
522
588
|
]
|
|
523
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
589
|
+
sdist = { url = "https://files.pythonhosted.org/packages/13/82/7bc318a35a8a8eedb82d42bafc0288e0052cde976f6299a987e00f55caad/plain_pytest-0.12.2.tar.gz", hash = "sha256:f3082407a05858c1047499bc42c43c53b0ece167b356e60fde6075a0c703f89e", size = 7352, upload-time = "2025-10-06T17:29:01.132Z" }
|
|
524
590
|
wheels = [
|
|
525
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
591
|
+
{ url = "https://files.pythonhosted.org/packages/83/c2/aed5c3ebeaa6ab9b296d0d2c83a223a8ca101d3b1e4687d9dd129a6523e5/plain_pytest-0.12.2-py3-none-any.whl", hash = "sha256:e121767bf0cd6798e3977f2689811355708e0aa85df4333b72166e1dda287532", size = 10417, upload-time = "2025-10-06T17:29:00.387Z" },
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "plain-sessions"
|
|
596
|
+
version = "0.27.0"
|
|
597
|
+
source = { registry = "https://pypi.org/simple" }
|
|
598
|
+
resolution-markers = [
|
|
599
|
+
"python_full_version < '3.13'",
|
|
600
|
+
]
|
|
601
|
+
dependencies = [
|
|
602
|
+
{ name = "plain", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
603
|
+
]
|
|
604
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a8/77/94bd91efb07c060caa0c83b4597718c5a5f24d924255716bd499397f6ea2/plain_sessions-0.27.0.tar.gz", hash = "sha256:6212e37a14b5890538c2bf3a860163424e0fad4447af6612bd8d079584091ecb", size = 11076, upload-time = "2025-08-27T22:31:29.785Z" }
|
|
605
|
+
wheels = [
|
|
606
|
+
{ url = "https://files.pythonhosted.org/packages/47/2c/ee8c8f721ffaba89aadab840de411ec92b3e71ca435d896a62d124e26f0a/plain_sessions-0.27.0-py3-none-any.whl", hash = "sha256:492e507933f84e79407c6817a48ba27d35bfab7ddaa9c07a3db41220eedbda64", size = 15660, upload-time = "2025-08-27T22:31:28.987Z" },
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "plain-sessions"
|
|
611
|
+
version = "0.34.0"
|
|
612
|
+
source = { registry = "https://pypi.org/simple" }
|
|
613
|
+
resolution-markers = [
|
|
614
|
+
"python_full_version >= '3.13'",
|
|
615
|
+
]
|
|
616
|
+
dependencies = [
|
|
617
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
618
|
+
]
|
|
619
|
+
sdist = { url = "https://files.pythonhosted.org/packages/13/fd/428db4dc02afcc5e2c9ec151c11662a49d49e799f8252eea423985ff6344/plain_sessions-0.34.0.tar.gz", hash = "sha256:caae26cdaa4e2b22f7d085fb44c66ae4c53f804a2f647b664c0ef9a0024f7562", size = 13923, upload-time = "2025-10-10T15:21:34.99Z" }
|
|
620
|
+
wheels = [
|
|
621
|
+
{ url = "https://files.pythonhosted.org/packages/02/d6/78cb2de94c96a29211ea1583a95aec3b45aa4464ad093580f101e1b6ffc5/plain_sessions-0.34.0-py3-none-any.whl", hash = "sha256:fc281f93f475d8605e08f0a468dc7cc7cb87da0a6bc91d4da2ae7de5d939e144", size = 19496, upload-time = "2025-10-10T15:21:34.23Z" },
|
|
526
622
|
]
|
|
527
623
|
|
|
528
624
|
[[package]]
|
|
529
625
|
name = "plainx-sentry"
|
|
530
|
-
version = "0.
|
|
626
|
+
version = "0.8.0"
|
|
531
627
|
source = { editable = "." }
|
|
532
628
|
dependencies = [
|
|
629
|
+
{ name = "plain-auth", version = "0.16.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
630
|
+
{ name = "plain-auth", version = "0.20.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
631
|
+
{ name = "plain-sessions", version = "0.27.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
632
|
+
{ name = "plain-sessions", version = "0.34.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
533
633
|
{ name = "sentry-sdk", extra = ["opentelemetry"] },
|
|
534
634
|
]
|
|
535
635
|
|
|
536
636
|
[package.dev-dependencies]
|
|
537
637
|
dev = [
|
|
538
638
|
{ name = "plain", version = "0.61.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
539
|
-
{ name = "plain", version = "0.
|
|
639
|
+
{ name = "plain", version = "0.74.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
540
640
|
{ name = "plain-code", version = "0.9.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
541
|
-
{ name = "plain-code", version = "0.10.
|
|
641
|
+
{ name = "plain-code", version = "0.10.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
542
642
|
{ name = "plain-pytest", version = "0.10.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" },
|
|
543
|
-
{ name = "plain-pytest", version = "0.12.
|
|
643
|
+
{ name = "plain-pytest", version = "0.12.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.13'" },
|
|
544
644
|
]
|
|
545
645
|
|
|
546
646
|
[package.metadata]
|
|
547
|
-
requires-dist = [
|
|
647
|
+
requires-dist = [
|
|
648
|
+
{ name = "plain-auth", specifier = ">=0.16.0" },
|
|
649
|
+
{ name = "plain-sessions", specifier = ">=0.27.0" },
|
|
650
|
+
{ name = "sentry-sdk", extras = ["opentelemetry"], specifier = ">=2.24.0" },
|
|
651
|
+
]
|
|
548
652
|
|
|
549
653
|
[package.metadata.requires-dev]
|
|
550
654
|
dev = [
|
|
@@ -622,41 +726,41 @@ wheels = [
|
|
|
622
726
|
|
|
623
727
|
[[package]]
|
|
624
728
|
name = "ruff"
|
|
625
|
-
version = "0.
|
|
626
|
-
source = { registry = "https://pypi.org/simple" }
|
|
627
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
628
|
-
wheels = [
|
|
629
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
630
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
631
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
632
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
633
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
634
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
635
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
636
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
637
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
638
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
639
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
640
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
641
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
642
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
643
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
644
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
645
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
646
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
729
|
+
version = "0.14.0"
|
|
730
|
+
source = { registry = "https://pypi.org/simple" }
|
|
731
|
+
sdist = { url = "https://files.pythonhosted.org/packages/41/b9/9bd84453ed6dd04688de9b3f3a4146a1698e8faae2ceeccce4e14c67ae17/ruff-0.14.0.tar.gz", hash = "sha256:62ec8969b7510f77945df916de15da55311fade8d6050995ff7f680afe582c57", size = 5452071, upload-time = "2025-10-07T18:21:55.763Z" }
|
|
732
|
+
wheels = [
|
|
733
|
+
{ url = "https://files.pythonhosted.org/packages/3a/4e/79d463a5f80654e93fa653ebfb98e0becc3f0e7cf6219c9ddedf1e197072/ruff-0.14.0-py3-none-linux_armv6l.whl", hash = "sha256:58e15bffa7054299becf4bab8a1187062c6f8cafbe9f6e39e0d5aface455d6b3", size = 12494532, upload-time = "2025-10-07T18:21:00.373Z" },
|
|
734
|
+
{ url = "https://files.pythonhosted.org/packages/ee/40/e2392f445ed8e02aa6105d49db4bfff01957379064c30f4811c3bf38aece/ruff-0.14.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:838d1b065f4df676b7c9957992f2304e41ead7a50a568185efd404297d5701e8", size = 13160768, upload-time = "2025-10-07T18:21:04.73Z" },
|
|
735
|
+
{ url = "https://files.pythonhosted.org/packages/75/da/2a656ea7c6b9bd14c7209918268dd40e1e6cea65f4bb9880eaaa43b055cd/ruff-0.14.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:703799d059ba50f745605b04638fa7e9682cc3da084b2092feee63500ff3d9b8", size = 12363376, upload-time = "2025-10-07T18:21:07.833Z" },
|
|
736
|
+
{ url = "https://files.pythonhosted.org/packages/42/e2/1ffef5a1875add82416ff388fcb7ea8b22a53be67a638487937aea81af27/ruff-0.14.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ba9a8925e90f861502f7d974cc60e18ca29c72bb0ee8bfeabb6ade35a3abde7", size = 12608055, upload-time = "2025-10-07T18:21:10.72Z" },
|
|
737
|
+
{ url = "https://files.pythonhosted.org/packages/4a/32/986725199d7cee510d9f1dfdf95bf1efc5fa9dd714d0d85c1fb1f6be3bc3/ruff-0.14.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e41f785498bd200ffc276eb9e1570c019c1d907b07cfb081092c8ad51975bbe7", size = 12318544, upload-time = "2025-10-07T18:21:13.741Z" },
|
|
738
|
+
{ url = "https://files.pythonhosted.org/packages/9a/ed/4969cefd53315164c94eaf4da7cfba1f267dc275b0abdd593d11c90829a3/ruff-0.14.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30a58c087aef4584c193aebf2700f0fbcfc1e77b89c7385e3139956fa90434e2", size = 14001280, upload-time = "2025-10-07T18:21:16.411Z" },
|
|
739
|
+
{ url = "https://files.pythonhosted.org/packages/ab/ad/96c1fc9f8854c37681c9613d825925c7f24ca1acfc62a4eb3896b50bacd2/ruff-0.14.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f8d07350bc7af0a5ce8812b7d5c1a7293cf02476752f23fdfc500d24b79b783c", size = 15027286, upload-time = "2025-10-07T18:21:19.577Z" },
|
|
740
|
+
{ url = "https://files.pythonhosted.org/packages/b3/00/1426978f97df4fe331074baf69615f579dc4e7c37bb4c6f57c2aad80c87f/ruff-0.14.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eec3bbbf3a7d5482b5c1f42d5fc972774d71d107d447919fca620b0be3e3b75e", size = 14451506, upload-time = "2025-10-07T18:21:22.779Z" },
|
|
741
|
+
{ url = "https://files.pythonhosted.org/packages/58/d5/9c1cea6e493c0cf0647674cca26b579ea9d2a213b74b5c195fbeb9678e15/ruff-0.14.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16b68e183a0e28e5c176d51004aaa40559e8f90065a10a559176713fcf435206", size = 13437384, upload-time = "2025-10-07T18:21:25.758Z" },
|
|
742
|
+
{ url = "https://files.pythonhosted.org/packages/29/b4/4cd6a4331e999fc05d9d77729c95503f99eae3ba1160469f2b64866964e3/ruff-0.14.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb732d17db2e945cfcbbc52af0143eda1da36ca8ae25083dd4f66f1542fdf82e", size = 13447976, upload-time = "2025-10-07T18:21:28.83Z" },
|
|
743
|
+
{ url = "https://files.pythonhosted.org/packages/3b/c0/ac42f546d07e4f49f62332576cb845d45c67cf5610d1851254e341d563b6/ruff-0.14.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:c958f66ab884b7873e72df38dcabee03d556a8f2ee1b8538ee1c2bbd619883dd", size = 13682850, upload-time = "2025-10-07T18:21:31.842Z" },
|
|
744
|
+
{ url = "https://files.pythonhosted.org/packages/5f/c4/4b0c9bcadd45b4c29fe1af9c5d1dc0ca87b4021665dfbe1c4688d407aa20/ruff-0.14.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7eb0499a2e01f6e0c285afc5bac43ab380cbfc17cd43a2e1dd10ec97d6f2c42d", size = 12449825, upload-time = "2025-10-07T18:21:35.074Z" },
|
|
745
|
+
{ url = "https://files.pythonhosted.org/packages/4b/a8/e2e76288e6c16540fa820d148d83e55f15e994d852485f221b9524514730/ruff-0.14.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:4c63b2d99fafa05efca0ab198fd48fa6030d57e4423df3f18e03aa62518c565f", size = 12272599, upload-time = "2025-10-07T18:21:38.08Z" },
|
|
746
|
+
{ url = "https://files.pythonhosted.org/packages/18/14/e2815d8eff847391af632b22422b8207704222ff575dec8d044f9ab779b2/ruff-0.14.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:668fce701b7a222f3f5327f86909db2bbe99c30877c8001ff934c5413812ac02", size = 13193828, upload-time = "2025-10-07T18:21:41.216Z" },
|
|
747
|
+
{ url = "https://files.pythonhosted.org/packages/44/c6/61ccc2987cf0aecc588ff8f3212dea64840770e60d78f5606cd7dc34de32/ruff-0.14.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a86bf575e05cb68dcb34e4c7dfe1064d44d3f0c04bbc0491949092192b515296", size = 13628617, upload-time = "2025-10-07T18:21:44.04Z" },
|
|
748
|
+
{ url = "https://files.pythonhosted.org/packages/73/e6/03b882225a1b0627e75339b420883dc3c90707a8917d2284abef7a58d317/ruff-0.14.0-py3-none-win32.whl", hash = "sha256:7450a243d7125d1c032cb4b93d9625dea46c8c42b4f06c6b709baac168e10543", size = 12367872, upload-time = "2025-10-07T18:21:46.67Z" },
|
|
749
|
+
{ url = "https://files.pythonhosted.org/packages/41/77/56cf9cf01ea0bfcc662de72540812e5ba8e9563f33ef3d37ab2174892c47/ruff-0.14.0-py3-none-win_amd64.whl", hash = "sha256:ea95da28cd874c4d9c922b39381cbd69cb7e7b49c21b8152b014bd4f52acddc2", size = 13464628, upload-time = "2025-10-07T18:21:50.318Z" },
|
|
750
|
+
{ url = "https://files.pythonhosted.org/packages/c6/2a/65880dfd0e13f7f13a775998f34703674a4554906167dce02daf7865b954/ruff-0.14.0-py3-none-win_arm64.whl", hash = "sha256:f42c9495f5c13ff841b1da4cb3c2a42075409592825dada7c5885c2c844ac730", size = 12565142, upload-time = "2025-10-07T18:21:53.577Z" },
|
|
647
751
|
]
|
|
648
752
|
|
|
649
753
|
[[package]]
|
|
650
754
|
name = "sentry-sdk"
|
|
651
|
-
version = "2.
|
|
755
|
+
version = "2.41.0"
|
|
652
756
|
source = { registry = "https://pypi.org/simple" }
|
|
653
757
|
dependencies = [
|
|
654
758
|
{ name = "certifi" },
|
|
655
759
|
{ name = "urllib3" },
|
|
656
760
|
]
|
|
657
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
761
|
+
sdist = { url = "https://files.pythonhosted.org/packages/68/47/aea50a61d85bc07a34e6e7145aad7bd96c5671a86a32618059bad0cbc73b/sentry_sdk-2.41.0.tar.gz", hash = "sha256:e7af3f4d7f8bac4c56fbaf95adb0d111f061cce58d5df91cfcd4e69782759b10", size = 343942, upload-time = "2025-10-09T14:12:21.132Z" }
|
|
658
762
|
wheels = [
|
|
659
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
763
|
+
{ url = "https://files.pythonhosted.org/packages/71/58/175d0e4d93f62075a01f8aebe904b412c34a94a4517e5045d0a1d512aad0/sentry_sdk-2.41.0-py2.py3-none-any.whl", hash = "sha256:343cde6540574113d13d178d1b2093e011ac21dd55abd3a1ec7e540f0d18a5bd", size = 370606, upload-time = "2025-10-09T14:12:19.003Z" },
|
|
660
764
|
]
|
|
661
765
|
|
|
662
766
|
[package.optional-dependencies]
|
|
@@ -664,6 +768,15 @@ opentelemetry = [
|
|
|
664
768
|
{ name = "opentelemetry-distro" },
|
|
665
769
|
]
|
|
666
770
|
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "sqlparse"
|
|
773
|
+
version = "0.5.3"
|
|
774
|
+
source = { registry = "https://pypi.org/simple" }
|
|
775
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e5/40/edede8dd6977b0d3da179a342c198ed100dd2aba4be081861ee5911e4da4/sqlparse-0.5.3.tar.gz", hash = "sha256:09f67787f56a0b16ecdbde1bfc7f5d9c3371ca683cfeaa8e6ff60b4807ec9272", size = 84999, upload-time = "2024-12-10T12:05:30.728Z" }
|
|
776
|
+
wheels = [
|
|
777
|
+
{ url = "https://files.pythonhosted.org/packages/a9/5c/bfd6bd0bf979426d405cc6e71eceb8701b148b16c21d2dc3c261efc61c7b/sqlparse-0.5.3-py3-none-any.whl", hash = "sha256:cf2196ed3418f3ba5de6af7e82c694a9fbdbfecccdfc72e281548517081f16ca", size = 44415, upload-time = "2024-12-10T12:05:27.824Z" },
|
|
778
|
+
]
|
|
779
|
+
|
|
667
780
|
[[package]]
|
|
668
781
|
name = "tomlkit"
|
|
669
782
|
version = "0.13.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|