1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
Change log
==========
1.6
---
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_SETTINGS`` setting has also been removed as it is now
unused. See the :doc:`installation documentation <installation>` for details.
Bugfixes
~~~~~~~~
* The ``DebugToolbarMiddleware`` now also supports Django 1.10's ``MIDDLEWARE``
setting.
1.5
---
This version is compatible with Django 1.10 and requires Django 1.8 or later.
Support for Python 3.2 is dropped.
Bugfixes
~~~~~~~~
* 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
---
This version is compatible with Django 1.9 and requires Django 1.7 or later.
New features
~~~~~~~~~~~~
* New panel method :meth:`debug_toolbar.panels.Panel.generate_stats` allows panels
to only record stats when the toolbar is going to be inserted into the
response.
Bugfixes
~~~~~~~~
* Response time for requests of projects with numerous media files has
been improved.
1.3
---
This is the first version compatible with Django 1.8.
New features
~~~~~~~~~~~~
* A new panel is available: Template Profiler.
* The ``SHOW_TOOLBAR_CALLBACK`` accepts a callable.
* The toolbar now provides a :ref:`javascript-api`.
Bugfixes
~~~~~~~~
* The toolbar handle cannot leave the visible area anymore when the toolbar is
collapsed.
* The root level logger is preserved.
* The ``RESULTS_CACHE_SIZE`` setting 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
---
New features
~~~~~~~~~~~~
* The ``JQUERY_URL`` setting defines where the toolbar loads jQuery from.
Bugfixes
~~~~~~~~
* The toolbar now always loads a private copy of jQuery in order to avoid
using an incompatible version. It no longer attemps 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
---
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.
Bugfixes
~~~~~~~~
* 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_REDIRECTS`` setting is superseded by the more generic
``DISABLE_PANELS``.
1.0
---
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.
|