Skip to content

Commit

Permalink
django-debug-toolbar 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Dec 3, 2020
1 parent 8814450 commit 176614a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -34,7 +34,7 @@ Here's a screenshot of the toolbar in action:
In addition to the built-in panels, a number of third-party panels are
contributed by the community.

The current stable version of the Debug Toolbar is 3.1. It works on
The current stable version of the Debug Toolbar is 3.2. It works on
Django ≥ 2.2.

Documentation, including installation and configuration instructions, is
Expand Down
13 changes: 9 additions & 4 deletions docs/changes.rst
@@ -1,15 +1,21 @@
Change log
==========

unreleased
----------
3.2 (2020-12-03)
----------------

* Moved CI to GitHub Actions: https://github.com/jazzband/django-debug-toolbar/actions
* Stopped crashing when ``request.GET`` and ``request.POST`` are
dictionaries instead of ``QueryDict`` instances. 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 ``css`` and a ``js`` template block to
``debug_toolbar/base.html`` to allow overriding CSS and JS.


3.2a1 (2020-10-19)
Expand All @@ -21,8 +27,7 @@ unreleased
* 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.
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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -25,7 +25,7 @@
copyright = copyright.format(datetime.date.today().year)

# The full version, including alpha/beta/rc tags
release = "3.2a1"
release = "3.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = django-debug-toolbar
version = 3.2a1
version = 3.2
description = A configurable set of panels that display various debug information about the current request/response.
long_description = file: README.rst
author = Rob Hudson
Expand Down

0 comments on commit 176614a

Please sign in to comment.