File: 1.1.0.rst

package info (click to toggle)
python-django-channels 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 872 kB
  • sloc: python: 2,394; makefile: 154; sh: 8
file content (35 lines) | stat: -rw-r--r-- 1,130 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
1.1.0 Release Notes
===================

Channels 1.1.0 introduces a couple of major but backwards-compatible changes,
including most notably the inclusion of a standard, framework-agnostic JavaScript
library for easier integration with your site.


Major Changes
-------------

* Channels now includes a JavaScript wrapper that wraps reconnection and
  multiplexing for you on the client side. For more on how to use it, see the
  javascript documentation.

* Test classes have been moved from ``channels.tests`` to ``channels.test``
  to better match Django. Old imports from ``channels.tests`` will continue to
  work but will trigger a deprecation warning, and ``channels.tests`` will be
  removed completely in version 1.3.

Minor Changes & Bugfixes
------------------------

* Bindings now support non-integer fields for primary keys on models.

* The ``enforce_ordering`` decorator no longer suffers a race condition where
  it would drop messages under high load.

* ``runserver`` no longer errors if the ``staticfiles`` app is not enabled in Django.


Backwards Incompatible Changes
------------------------------

None.