File tree Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1
1
Full release notes, with more details and upgrade information, are available at:
2
2
https://channels.readthedocs.io/en/latest/releases
3
3
4
+ 4.1.0 (2024-04-03)
5
+ ------------------
6
+
7
+ Channels 4.1 is maintenance release in the 4.x series.
8
+
9
+ The main change is an update in the required Python and Django version.
10
+ Python 3.8, and Django 4.2 are now the minimum required versions.
11
+
12
+ There are a number of other small bugfixes. Please ensure to review the
13
+ `Version 4.1.0 release notes
14
+ <https://channels.readthedocs.io/en/latest/releases/4.1.0.html>`_ for full
15
+ details.
16
+
4
17
4.0.0 (2022-10-15)
5
18
------------------
6
19
Original file line number Diff line number Diff line change 1
- __version__ = "4.0 .0"
1
+ __version__ = "4.1 .0"
2
2
3
3
4
4
DEFAULT_CHANNEL_LAYER = "default"
Original file line number Diff line number Diff line change
1
+ 4.1.0 Release Notes
2
+ ===================
3
+
4
+ Channels 4.1 is maintenance release in the 4.x series.
5
+
6
+
7
+ Python and Django support
8
+ -------------------------
9
+
10
+ * A Python version of 3.8 or higher is required.
11
+
12
+ * Django 4.2 is now the minimum supported version.
13
+
14
+
15
+ Bugfixes & Small Changes
16
+ ------------------------
17
+
18
+ * Exceptions in ``HttpConsumer `` are now correctly propagated.
19
+
20
+ Thanks to Adam Johnson.
21
+
22
+ * URLRouter is updated for compatibility with in-development changes in Django.
23
+
24
+ Thanks to Adam Johnson.
25
+
26
+ * URLRouter is updated to correctly handle ``root_path ``.
27
+
28
+ Thanks to Alejandro R. Sedeño.
29
+
30
+ * Websocket consumers are updated for newer ASGI spec versions, adding the
31
+ ``headers `` parameter for the ``accept `` event, and ``reason `` for the
32
+ ``close `` event.
33
+
34
+ Thanks to Kristján Valur Jónsson.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Release Notes
4
4
.. toctree ::
5
5
:maxdepth: 1
6
6
7
+ 4.1.0
7
8
4.0.0
8
9
3.0.5
9
10
3.0.4
You can’t perform that action at this time.
0 commit comments