File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,10 @@ contributed by the community.
43
43
The current stable version of the Debug Toolbar is 5.0.0-alpha. It works on
44
44
Django ≥ 4.2.0.
45
45
46
- The Debug Toolbar does not currently support `Django's asynchronous views
47
- <https://docs.djangoproject.com/en/dev/topics/async/> `_.
46
+ The Debug Toolbar has experimental support for `Django's asynchronous views
47
+ <https://docs.djangoproject.com/en/dev/topics/async/> `_. Please note that
48
+ the Debug Toolbar still lacks the capability for handling concurrent requests.
49
+ If you find any issues, please report them on the `issue tracker `_.
48
50
49
51
Documentation, including installation and configuration instructions, is
50
52
available at https://django-debug-toolbar.readthedocs.io/.
@@ -56,3 +58,4 @@ The Django Debug Toolbar was originally created by Rob Hudson <
[email protected] >
56
58
in August 2008 and was further developed by many contributors _.
57
59
58
60
.. _contributors : https://github.com/django-commons/django-debug-toolbar/graphs/contributors
61
+ .. _issue tracker : https://github.com/django-commons/django-debug-toolbar/issues
Original file line number Diff line number Diff line change 8
8
* Removed support for Python 3.8 as it has reached end of life.
9
9
* Converted to Django Commons PyPI release process.
10
10
* Fixed a crash which occurred when using non-``str `` static file values.
11
+ * Documented experimental async support.
11
12
12
13
5.0.0-alpha (2024-09-01)
13
14
------------------------
Original file line number Diff line number Diff line change @@ -245,11 +245,12 @@ And for Apache:
245
245
Django Channels & Async
246
246
^^^^^^^^^^^^^^^^^^^^^^^
247
247
248
- The Debug Toolbar currently doesn't support Django Channels or async projects.
249
- If you are using Django channels and you are having issues getting panels to
250
- load, please review the documentation for the configuration option
251
- :ref: `RENDER_PANELS <RENDER_PANELS >`.
248
+ The Debug Toolbar currently has experimental support for Django Channels and
249
+ async projects. The Debug Toolbar is compatible with the following exceptions:
252
250
251
+ - Concurrent requests aren't supported
252
+ - ``TimerPanel ``, ``RequestPanel `` and ``ProfilingPanel `` can't be used
253
+ in async contexts.
253
254
254
255
HTMX
255
256
^^^^
You can’t perform that action at this time.
0 commit comments