Skip to content

Commit d91f4dc

Browse files
authored
chore(deps): bulk-bump python and npm deps from open dependabot PRs (#1279)
* chore(deps): bulk-bump python and npm deps from open dependabot PRs Consolidates the 15 currently-open dependabot PRs into a single change so the maintenance churn lands in one merge instead of fifteen. Python (uv.lock): - idna 3.11 -> 3.15 (#1267) - urllib3 2.6.3 -> 2.7.0 (#1264) - flask-wtf 1.2.2 -> 1.3.0, sqlalchemy 2.0.48 -> 2.0.50, wtforms 3.2.1 -> 3.2.2 (#1258) - pyright 1.1.408 -> 1.1.409, pre-commit 4.5.1 -> 4.6.0, ruff 0.15.8 -> 0.15.14 (#1250) - wlc 1.17.2 -> 2.0.0 (#1248) - pytest 9.0.2 -> 9.0.3 (#1239) - cryptography 46.0.6 -> 46.0.7 (#1235) - cachetools 7.0.1 -> 7.0.5 (#1233) - plexapi 4.18.0 -> 4.18.1 (#1232) - requests 2.33.0 -> 2.33.1 (#1231) npm (app/static): - flowbite 4.0.1 -> 4.0.2, @tailwindcss/cli 4.2.2 -> 4.3.0, tailwindcss 4.2.2 -> 4.3.0 (#1265) - tiny-markdown-editor 0.2.25 -> 0.2.27 (#1263) - @alpinejs/collapse 3.15.9 -> 3.15.12 (#1256) - alpinejs 3.15.10 -> 3.15.12 (#1255) - htmx.org 2.0.8 -> 2.0.10 (#1245) Verified: full pytest suite passes (504 passed, 1 skipped); ty diagnostic count unchanged vs baseline. * style: ruff auto-fix import order (I001) Pre-existing import-sort issues surfaced by the lint CI job on this PR (main pushes don't run the lint job so they went uncaught).
1 parent a6f17df commit d91f4dc

5 files changed

Lines changed: 263 additions & 303 deletions

File tree

app/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ def create_app(config_object=DevelopmentConfig):
6868
# Step 5: Setup context processors and filters
6969
if show_startup:
7070
logger.step("Configuring request processing", "⚙️")
71-
from .context_processors import inject_plus_features, inject_server_name, inject_app_version
71+
from .context_processors import (
72+
inject_app_version,
73+
inject_plus_features,
74+
inject_server_name,
75+
)
7276

7377
app.context_processor(inject_server_name)
7478
app.context_processor(inject_plus_features)

app/context_processors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
23
from app.extensions import db
34
from app.models import Settings
45

0 commit comments

Comments
 (0)