From 06ef7e15842f237081a2c5e8f101c6938b537f65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 10:02:17 +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 634b4dc0..d01f1cf7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -61,7 +61,7 @@ django-appconf==1.1.0 django-statsd-mozilla==0.4.0 sentry-sdk==2.43.0 django-bootstrap4==25.2 -django-debug-toolbar==5.2.0 +django-debug-toolbar==6.1.0 django-smoketest==1.2.0 # For django-extensions From 95228773cf77f054fc2ecf0366a07429e6bd06ff Mon Sep 17 00:00:00 2001 From: ndittren <36773036+ndittren@users.noreply.github.com> Date: Mon, 3 Nov 2025 09:59:35 -0500 Subject: [PATCH 2/2] Add debug toolbar --- django.mk | 4 ++-- eureka/settings_shared.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/django.mk b/django.mk index 36c515b4..bd8ffebf 100644 --- a/django.mk +++ b/django.mk @@ -23,8 +23,8 @@ MANAGE ?= ./manage.py REQUIREMENTS ?= requirements.txt SYS_PYTHON ?= python3 PY_SENTINAL ?= $(VE)/sentinal -WHEEL_VERSION ?= 0.44.0 -PIP_VERSION ?= 24.2 +WHEEL_VERSION ?= 0.45.1 +PIP_VERSION ?= 24.3 MAX_COMPLEXITY ?= 10 INTERFACE ?= localhost RUNSERVER_PORT ?= 8000 diff --git a/eureka/settings_shared.py b/eureka/settings_shared.py index 1bccfb20..cb57e414 100644 --- a/eureka/settings_shared.py +++ b/eureka/settings_shared.py @@ -17,11 +17,13 @@ MIDDLEWARE += [ # noqa 'django_cas_ng.middleware.CASMiddleware', 'wagtail.contrib.redirects.middleware.RedirectMiddleware', + 'debug_toolbar.middleware.DebugToolbarMiddleware', ] INSTALLED_APPS += [ # noqa 'bootstrap4', 'django_extensions', + 'debug_toolbar', 'wagtail.contrib.forms', 'wagtail.contrib.redirects',