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:
3434In addition to the built-in panels, a number of third-party panels are
3535contributed by the community.
3636
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
3838Django ≥ 2.2.
3939
4040Documentation, including installation and configuration instructions, is
Original file line number Diff line number Diff line change 11Change log
22==========
33
4- unreleased
5- ----------
4+ 3.2 (2020-12-03)
5+ ----------------
66
77* Moved CI to GitHub Actions: https://github.com/jazzband/django-debug-toolbar/actions
88* Stopped crashing when ``request.GET `` and ``request.POST `` are
99 dictionaries instead of ``QueryDict `` instances. This isn't a valid
1010 use of Django but django-debug-toolbar shouldn't crash anyway.
1111* Fixed a crash in the history panel when sending a JSON POST request
1212 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.
1319
1420
15213.2a1 (2020-10-19)
@@ -21,8 +27,7 @@ unreleased
2127* Continued refactoring the HTML and CSS code for simplicity, continued
2228 improving the use of semantic HTML.
2329* 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.
2631* Continued removing unused CSS.
2732* Started running Selenium tests on Travis CI.
2833* Added a system check which prevents using django-debug-toolbar without
Original file line number Diff line number Diff line change 2525copyright = copyright .format (datetime .date .today ().year )
2626
2727# The full version, including alpha/beta/rc tags
28- release = "3.2a1 "
28+ release = "3.2 "
2929
3030
3131# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11[metadata]
22name = django-debug-toolbar
3- version = 3.2a1
3+ version = 3.2
44description = A configurable set of panels that display various debug information about the current request/response.
55long_description = file: README.rst
66author = Rob Hudson
You can’t perform that action at this time.
0 commit comments