From 1c1068c21a6653d271a248e8863f66c5863d7a04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 10:07:25 +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 53bb8c62..eeddf4da 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.1 # For django-extensions From 777803d762dfa7a8f7f58113a2cc08343cb28019 Mon Sep 17 00:00:00 2001 From: ndittren <36773036+ndittren@users.noreply.github.com> Date: Mon, 3 Nov 2025 10:33:15 -0500 Subject: [PATCH 2/2] Add toolbar --- django.mk | 2 +- quizcon/settings_shared.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/django.mk b/django.mk index 0dc2e0f0..2bd28ae6 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/quizcon/settings_shared.py b/quizcon/settings_shared.py index cd99f389..1ddd3769 100755 --- a/quizcon/settings_shared.py +++ b/quizcon/settings_shared.py @@ -22,12 +22,14 @@ 'courseaffils', 'lti_provider', 'quizcon.main', + 'debug_toolbar', ] ALLOWED_HOSTS += ['127.0.0.1'] # noqa MIDDLEWARE += [ # noqa - 'quizcon.main.middleware.WhoDidItMiddleware' + 'quizcon.main.middleware.WhoDidItMiddleware', + 'debug_toolbar.middleware.DebugToolbarMiddleware', ] THUMBNAIL_SUBDIR = "thumbs"