File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Here's a screenshot of the toolbar in action:
34
34
In addition to the built-in panels, a number of third-party panels are
35
35
contributed by the community.
36
36
37
- The current stable version of the Debug Toolbar is 3.1 . It works on
37
+ The current stable version of the Debug Toolbar is 3.2 . It works on
38
38
Django ≥ 2.2.
39
39
40
40
Documentation, including installation and configuration instructions, is
Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
- unreleased
5
- ----------
4
+ 3.2 (2020-12-03)
5
+ ----------------
6
6
7
7
* Moved CI to GitHub Actions: https://github.com/jazzband/django-debug-toolbar/actions
8
8
* Stopped crashing when ``request.GET `` and ``request.POST `` are
9
9
dictionaries instead of ``QueryDict `` instances. This isn't a valid
10
10
use of Django but django-debug-toolbar shouldn't crash anyway.
11
11
* Fixed a crash in the history panel when sending a JSON POST request
12
12
with invalid JSON.
13
+ * Added missing signals to the signals panel by default.
14
+ * Documented how to avoid CORS errors now that we're using JavaScript
15
+ modules.
16
+ * Verified support for Python 3.9.
17
+ * Added a ``css `` and a ``js `` template block to
18
+ ``debug_toolbar/base.html `` to allow overriding CSS and JS.
13
19
14
20
15
21
3.2a1 (2020-10-19)
@@ -21,8 +27,7 @@ unreleased
21
27
* Continued refactoring the HTML and CSS code for simplicity, continued
22
28
improving the use of semantic HTML.
23
29
* Stopped caring about prehistoric browsers for good. Started splitting
24
- up the JavaScript code to take advantage of
25
- JavaScript modules.
30
+ up the JavaScript code to take advantage of JavaScript modules.
26
31
* Continued removing unused CSS.
27
32
* Started running Selenium tests on Travis CI.
28
33
* Added a system check which prevents using django-debug-toolbar without
Original file line number Diff line number Diff line change 25
25
copyright = copyright .format (datetime .date .today ().year )
26
26
27
27
# The full version, including alpha/beta/rc tags
28
- release = "3.2a1 "
28
+ release = "3.2 "
29
29
30
30
31
31
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = django-debug-toolbar
3
- version = 3.2a1
3
+ version = 3.2
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