From 955a36c9b289aabce3a4d569deee75657f4dbf9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Aug 2025 13:09:39 +0000 Subject: [PATCH 1/2] Bump django-debug-toolbar from 5.2.0 to 6.0.0 Bumps [django-debug-toolbar](https://github.com/django-commons/django-debug-toolbar) from 5.2.0 to 6.0.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.0.0) --- updated-dependencies: - dependency-name: django-debug-toolbar dependency-version: 6.0.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 d49cd4741..c16b544cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,7 +17,7 @@ pbr==7.0.0 six==1.17.0 sqlparse==0.5.3 # django-debug-toolbar -django-debug-toolbar==5.2.0 +django-debug-toolbar==6.0.0 python-mimeparse==2.0.0 # tastypie python-dateutil==2.9.0 # tastypie defusedxml==0.7.1 # tastypie From 38ae51b885049d724bdbf9a45997efec1cb7e42f Mon Sep 17 00:00:00 2001 From: ndittren <36773036+ndittren@users.noreply.github.com> Date: Thu, 2 Oct 2025 15:39:05 -0400 Subject: [PATCH 2/2] add app --- mediathread/settings_shared.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mediathread/settings_shared.py b/mediathread/settings_shared.py index 2ff333552..15b5feb7f 100644 --- a/mediathread/settings_shared.py +++ b/mediathread/settings_shared.py @@ -105,6 +105,7 @@ 'rest_framework', 'django_celery_results', 's3sign', + 'debug_toolbar', ] THUMBNAIL_SUBDIR = "thumbs" @@ -255,10 +256,6 @@ def default_url_processor(url, label=None, request=None): DCS_SESSION_COOKIE_SAMESITE = 'None' if DEVELOPMENT: - INSTALLED_APPS = [ - *INSTALLED_APPS, - 'debug_toolbar', - ] MIDDLEWARE = [ 'debug_toolbar.middleware.DebugToolbarMiddleware', *MIDDLEWARE,