File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
- UNRELEASED
5
- ----------
4
+ 3.0a1 (2020-06-05)
5
+ ------------------
6
6
7
7
* Added an ``.editorconfig `` file specifying indentation rules etc.
8
8
* Updated the italian translation.
9
- * Added support for Django 3.1a1.
9
+ * Added support for Django 3.1a1. ``fetch() `` and ``jQuery.ajax `` requests are
10
+ now detected by the absence of a ``Accept: text/html `` header instead of the
11
+ jQuery-specific ``X-Requested-With `` header on Django 3.1 or better.
10
12
* Pruned unused CSS and removed hacks for ancient browsers.
11
13
* Added the new :attr: `Panel.scripts <debug_toolbar.panels.Panel.scripts> `
12
14
property. This property should return a list of JavaScript resources to be
13
15
loaded in the browser when displaying the panel. Right now, this is used by a
14
16
single panel, the Timer panel. Third party panels can use this property to
15
17
add scripts rather then embedding them in the content HTML.
18
+ * Switched from JSHint to ESLint. Added an ESLint job to the Travis CI matrix.
19
+ * Debug toolbar state which is only needed in the JavaScript code now uses
20
+ localStorage.
21
+ * Updated the code to avoid a few deprecation warnings and resource warnings.
22
+ * Started loading JavaScript as ES6 modules.
16
23
17
24
**Backwards incompatible changes **
18
25
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '2.2 '
62
+ version = '3.0a1 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '2.2 '
64
+ release = '3.0a1 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = django-debug-toolbar
3
- version = 2.2
3
+ version = 3.0a1
4
4
description = A configurable set of panels that display various debug information about the current request/response.
5
5
long_description = file: README.rst
6
6
author = Rob Hudson
You can’t perform that action at this time.
0 commit comments