From 63f9c0df6812adc52dca2aa795fdbc972c1017b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 10:04:07 +0000 Subject: [PATCH 1/2] Bump django-debug-toolbar from 5.2.0 to 6.1.0 Bumps [django-debug-toolbar](https://github.com/django-commons/django-debug-toolbar) from 5.2.0 to 6.1.0. - [Release notes](https://github.com/django-commons/django-debug-toolbar/releases) - [Changelog](https://github.com/django-commons/django-debug-toolbar/blob/main/docs/changes.rst) - [Commits](https://github.com/django-commons/django-debug-toolbar/compare/5.2.0...6.1.0) --- updated-dependencies: - dependency-name: django-debug-toolbar dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b5d80f6b..fe70ba05 100644 --- a/requirements.txt +++ b/requirements.txt @@ -71,7 +71,7 @@ contextlib2==21.6.0 sentry-sdk==2.43.0 django-bootstrap4==25.2 django-bootstrap-form==3.4 -django-debug-toolbar==5.2.0 +django-debug-toolbar==6.1.0 django-smoketest==1.2.0 django-stagingcontext==0.1.0 From d569b86119fe7454f025cf5737489976a1147d28 Mon Sep 17 00:00:00 2001 From: ndittren <36773036+ndittren@users.noreply.github.com> Date: Fri, 31 Oct 2025 11:09:08 -0400 Subject: [PATCH 2/2] Upgrade debug toolbar --- django.mk | 2 +- plexus/settings_shared.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/django.mk b/django.mk index bfcf3af7..57cc360c 100644 --- a/django.mk +++ b/django.mk @@ -25,7 +25,7 @@ REQUIREMENTS ?= requirements.txt SYS_PYTHON ?= python3 PY_SENTINAL ?= $(VE)/sentinal WHEEL_VERSION ?= 0.45.1 -PIP_VERSION ?= 25.2 +PIP_VERSION ?= 25.3 MAX_COMPLEXITY ?= 10 INTERFACE ?= localhost RUNSERVER_PORT ?= 8000 diff --git a/plexus/settings_shared.py b/plexus/settings_shared.py index e6bb3260..fc1812e4 100644 --- a/plexus/settings_shared.py +++ b/plexus/settings_shared.py @@ -11,6 +11,10 @@ PROJECT_APPS = ['plexus.main', 'plexus.grainlog'] USE_TZ = True +MIDDLEWARE += [ # noqa + 'debug_toolbar.middleware.DebugToolbarMiddleware', +] + INSTALLED_APPS += [ # noqa 'bootstrapform', 'bootstrap4', @@ -18,6 +22,7 @@ 'plexus.grainlog', 'modelcluster', 'taggit', + 'debug_toolbar', ] HOSTMASTER_EMAIL = "hostmaster@columbia.edu"