Change log¶
Next version¶
3.2.2 (2021-08-14)¶
Ensured that the handle stays within bounds when resizing the window.
Disabled
HistoryPanelwhenRENDER_PANELSisTrueor ifRENDER_PANELSisNoneand the WSGI container is running with multiple processes.Fixed
RENDER_PANELSfunctionality so that whenTruepanels are rendered during the request and not loaded asynchronously.HistoryPanel now shows status codes of responses.
Support
request.urlconfoverride when checking for toolbar requests.
3.2.1 (2021-04-14)¶
Fixed SQL Injection vulnerability, CVE-2021-30459. The toolbar now calculates a signature on all fields for the SQL select, explain, and analyze forms.
Changed
djdt.cookie.set()to setsameSite=Laxby default if callers do not provide a value.Added
PRETTIFY_SQLconfiguration option to support controlling SQL token grouping. By default it’s set to True. When set to False, a performance improvement can be seen by the SQL panel.Added a JavaScript event when a panel loads of the format
djdt.panel.[PanelId]where PanelId is thepanel_idproperty of the panel’s Python class. Listening for this event corrects the bug in the Timer Panel in which it didn’t insert the browser timings after switching requests in the History Panel.Fixed issue with the toolbar expecting URL paths to start with
/__debug__/while the documentation indicates it’s not required.
3.2 (2020-12-03)¶
Moved CI to GitHub Actions: https://github.com/jazzband/django-debug-toolbar/actions
Stopped crashing when
request.GETandrequest.POSTare dictionaries instead ofQueryDictinstances. This isn’t a valid use of Django but django-debug-toolbar shouldn’t crash anyway.Fixed a crash in the history panel when sending a JSON POST request with invalid JSON.
Added missing signals to the signals panel by default.
Documented how to avoid CORS errors now that we’re using JavaScript modules.
Verified support for Python 3.9.
Added a
cssand ajstemplate block todebug_toolbar/base.htmlto allow overriding CSS and JS.
3.2a1 (2020-10-19)¶
Fixed a regression where the JavaScript code crashed with an invalid CSS selector when searching for an element to replace.
Replaced remaining images with CSS.
Continued refactoring the HTML and CSS code for simplicity, continued improving the use of semantic HTML.
Stopped caring about prehistoric browsers for good. Started splitting up the JavaScript code to take advantage of JavaScript modules.
Continued removing unused CSS.
Started running Selenium tests on Travis CI.
Added a system check which prevents using django-debug-toolbar without any enabled panels.
Added
Panel.run_checks()for panels to verify the configuration before the application starts.Validate the static file paths specified in
STATICFILES_DIRSexist viaStaticFilesPanelIntroduced prettier to format the frontend code.
Started accessing history views using GET requests since they do not change state on the server.
Fixed a bug where unsuccessful requests (e.g. network errors) were silently ignored.
Started spellchecking the documentation.
Removed calls to the deprecated
request.is_ajax()method. These calls were unnecessary now that most endpoints return JSON anyway.Removed support for Python 3.5.
3.1 (2020-09-21)¶
Fixed a crash in the history panel when sending an empty JSON POST request.
Made
make examplealso set up the database and a superuser account.Added a Makefile target for regenerating the django-debug-toolbar screenshot.
Added automatic escaping of panel titles resp. disallowed HTML tags.
Removed some CSS
Restructured the SQL stats template.
Changed command line examples to prefer
python -m piptopip.
3.0 (2020-09-20)¶
Added an
.editorconfigfile specifying indentation rules etc.Updated the Italian translation.
Added support for Django 3.1a1.
fetch()andjQuery.ajaxrequests are now detected by the absence of aAccept: text/htmlheader instead of the jQuery-specificX-Requested-Withheader on Django 3.1 or better.Pruned unused CSS and removed hacks for ancient browsers.
Added the new
Panel.scriptsproperty. This property should return a list of JavaScript resources to be loaded in the browser when displaying the panel. Right now, this is used by a single panel, the Timer panel. Third party panels can use this property to add scripts rather then embedding them in the content HTML.Switched from JSHint to ESLint. Added an ESLint job to the Travis CI matrix.
Debug toolbar state which is only needed in the JavaScript code now uses
localStorage.Updated the code to avoid a few deprecation warnings and resource warnings.
Started loading JavaScript as ES6 modules.
Added support for
cache.touch()when using django-debug-toolbar.Eliminated more inline CSS.
Updated
tox.iniandMakefileto use isort>=5.Increased RESULTS_CACHE_SIZE to 25 to better support AJAX requests.
Fixed the close button CSS by explicitly specifying the
box-sizingproperty.Simplified the
isortconfiguration by taking advantage of isort’sblackprofile.Added
HistoryPanelincluding support for AJAX requests.
Backwards incompatible changes¶
Loading panel content no longer executes the scripts elements embedded in the HTML. Third party panels that require JavaScript resources should now use the
Panel.scriptsproperty.Removed support for end of life Django 1.11. The minimum supported Django is now 2.2.
The Debug Toolbar now loads a JavaScript module. Typical local development using Django
runserveris not impacted. However, if your application server and static files server are at different origins, you may see CORS errors in your browser’s development console. See the “Cross-Origin Request Blocked” section of the installation docs for details on how to resolve this issue.
2.2 (2020-01-31)¶
Removed support for end of life Django 2.0 and 2.1.
Added support for Python 3.8.
Add locals() option for SQL panel.
Added support for Django 3.0.
2.1 (2019-11-12)¶
Changed the Travis CI matrix to run style checks first.
Exposed the
djdt.initfunction too.Small improvements to the code to take advantage of newer Django APIs and avoid warnings because of deprecated code.
Verified compatibility with the upcoming Django 3.0 (at the time of writing).
2.0 (2019-06-20)¶
Updated
StaticFilesPanelto be compatible with Django 3.0.The
ProfilingPanelis now enabled but inactive by default.Fixed toggling of table rows in the profiling panel UI.
The
ProfilingPanelno longer skips remaining panels or middlewares.Improved the installation documentation.
Fixed a possible crash in the template panel.
Added support for psycopg2
Composedobjects.Changed the Jinja2 tests to use Django’s own Jinja2 template backend.
Added instrumentation to queries using server side cursors.
Too many small improvements and cleanups to list them all.
Backwards incompatible changes¶
Removed support for Python 2.
Removed support for Django’s deprecated
MIDDLEWARE_CLASSESsetting.Restructured
debug_toolbar.panels.Panelto execute more like the new-style Django MIDDLEWARE. ThePanel.__init__()method is now passedget_responseas the first positional argument. Thedebug_toolbar.panels.Panel.process_request()method must now always return a response. Usually this is the response returned byget_response()but the panel may also return a different response as is the case in theRedirectsPanel. Third party panels must adjust to this new architecture.Panel.process_response()andPanel.process_view()have been removed as a result of this change.
The deprecated API, debug_toolbar.panels.DebugPanel, has been removed.
Third party panels should use debug_toolbar.panels.Panel instead.
The following deprecated settings have been removed:
HIDDEN_STACKTRACE_MODULESHIDE_DJANGO_SQLINTERCEPT_REDIRECTSRESULTS_STORE_SIZEROOT_TAG_ATTRSTAG
1.11 (2018-12-03)¶
Use
deferon all<script>tags to avoid blocking HTML parsing, removed inline JavaScript.Stop inlining images in CSS to avoid Content Security Policy errors altogether.
Reformatted the code using black.
Added the Django mail panel to the list of third-party panels.
Convert system check errors to warnings to accommodate exotic configurations.
Fixed a crash when explaining raw querysets.
Fixed an obscure Unicode error with binary data fields.
Added MariaDB and Python 3.7 builds to the CI.
1.10.1 (2018-09-11)¶
Fixed a problem where the duplicate query detection breaks for unhashable query parameters.
Added support for structured types when recording SQL.
Made Travis CI also run one test no PostgreSQL.
Added fallbacks for inline images in CSS.
Improved cross-browser compatibility around
URLSearchParamsusage.Fixed a few typos and redundancies in the documentation, removed mentions of django-debug-toolbar’s jQuery which aren’t accurate anymore.
1.10 (2018-09-06)¶
Removed support for Django < 1.11.
Added support and testing for Django 2.1 and Python 3.7. No actual code changes were required.
Removed the jQuery dependency. This means that django-debug-toolbar now requires modern browsers with support for
fetch,classListetc. TheJQUERY_URLsetting is also removed because it isn’t necessary anymore. If you depend on jQuery, integrate it yourself.Added support for the server timing header.
Added a differentiation between similar and duplicate queries. Similar queries are what duplicate queries used to be (same SQL, different parameters).
Stopped hiding frames from Django’s contrib apps in stacktraces by default.
Lots of small cleanups and bug fixes.
1.9.1 (2017-11-15)¶
Fix erroneous
ContentNotRenderedErrorraised by the redirects panel.
1.9 (2017-11-13)¶
This version is compatible with Django 2.0 and requires Django 1.8 or later.
Bug fixes¶
The profiling panel now escapes reported data resulting in valid HTML.
Many minor cleanups and bug fixes.
1.8 (2017-05-05)¶
This version is compatible with Django 1.11 and requires Django 1.8 or later.
Backwards incompatible changes¶
debug_toolbar.middleware.show_toolbar(the default value of settingSHOW_TOOLBAR_CALLBACK) no longer returnsFalsefor AJAX requests. This is to allow reusing theSHOW_TOOLBAR_CALLBACKfunction to verify access to panel views requested via AJAX. Projects defining a customSHOW_TOOLBAR_CALLBACKshould remove checks for AJAX requests in order to continue to allow access to these panels.
Features¶
New decorator
debug_toolbar.decorators.require_show_toolbarprevents unauthorized access to decorated views by checkingSHOW_TOOLBAR_CALLBACKevery request. Unauthorized access results in a 404.The
SKIP_TEMPLATE_PREFIXESsetting allows skipping templates in the templates panel. Template-based form widgets’ templates are skipped by default to avoid panel sizes going into hundreds of megabytes of HTML.
Bug fixes¶
All views are now decorated with
debug_toolbar.decorators.require_show_toolbarpreventing unauthorized access.The templates panel now reuses contexts’ pretty printed version which makes the debug toolbar usable again with Django 1.11’s template-based forms rendering.
Long SQL statements are now forcibly wrapped to fit on the screen.
1.7 (2017-03-05)¶
Bug fixes¶
Recursive template extension is now understood.
Deprecation warnings were fixed.
The SQL panel uses HMAC instead of simple hashes to verify that SQL statements have not been changed. Also, the handling of bytes and text for hashing has been hardened. Also, a bug with Python’s division handling has been fixed for improved Python 3 support.
An error with django-jinja has been fixed.
A few CSS classes have been prefixed with
djdt-to avoid conflicting class names.
1.6 (2016-10-05)¶
The debug toolbar was adopted by Jazzband.
Removed features¶
Support for automatic setup has been removed as it was frequently problematic. Installation now requires explicit setup. The
DEBUG_TOOLBAR_PATCH_SETTINGSsetting has also been removed as it is now unused. See the installation documentation for details.
Bug fixes¶
The
DebugToolbarMiddlewarenow also supports Django 1.10’sMIDDLEWAREsetting.
1.5 (2016-07-21)¶
This version is compatible with Django 1.10 and requires Django 1.8 or later.
Support for Python 3.2 is dropped.
Bug fixes¶
Restore compatibility with sqlparse ≥ 0.2.0.
Add compatibility with Bootstrap 4, Pure CSS, MDL, etc.
Improve compatibility with RequireJS / AMD.
Improve the UI slightly.
Fix invalid (X)HTML.
1.4 (2015-10-06)¶
This version is compatible with Django 1.9 and requires Django 1.7 or later.
New features¶
New panel method
debug_toolbar.panels.Panel.generate_stats()allows panels to only record stats when the toolbar is going to be inserted into the response.
Bug fixes¶
Response time for requests of projects with numerous media files has been improved.
1.3 (2015-03-10)¶
This is the first version compatible with Django 1.8.
New features¶
A new panel is available: Template Profiler.
The
SHOW_TOOLBAR_CALLBACKaccepts a callable.The toolbar now provides a JavaScript API.
Bug fixes¶
The toolbar handle cannot leave the visible area anymore when the toolbar is collapsed.
The root level logger is preserved.
The
RESULTS_CACHE_SIZEsetting is taken into account.CSS classes are prefixed with
djdt-to prevent name conflicts.The private copy of jQuery no longer registers as an AMD module on sites that load RequireJS.
1.2 (2014-04-25)¶
New features¶
The
JQUERY_URLsetting defines where the toolbar loads jQuery from.
Bug fixes¶
The toolbar now always loads a private copy of jQuery in order to avoid using an incompatible version. It no longer attempts to integrate with AMD.
This private copy is available in
djdt.jQuery. Third-party panels are encouraged to use it because it should be as stable as the toolbar itself.
1.1 (2014-04-12)¶
This is the first version compatible with Django 1.7.
New features¶
The SQL panel colors queries depending on the stack level.
The Profiler panel allows configuring the maximum depth.
Bug fixes¶
Support languages where lowercase and uppercase strings may have different lengths.
Allow using cursor as context managers.
Make the SQL explain more helpful on SQLite.
Various JavaScript improvements.
Deprecated features¶
The
INTERCEPT_REDIRECTSsetting is superseded by the more genericDISABLE_PANELS.
1.0 (2013-12-21)¶
This is the first stable version of the Debug Toolbar!
It includes many new features and performance improvements as well a few backwards-incompatible changes to make the toolbar easier to deploy, use, extend and maintain in the future.
You’re strongly encouraged to review the installation and configuration docs and redo the setup in your projects.
Third-party panels will need to be updated to work with this version.