Skip to content

Commit d017e31

Browse files
Preparing v4.1 release. (#2087)
1 parent 30ec8f5 commit d017e31

File tree

4 files changed

+49
-1
lines changed

4 files changed

+49
-1
lines changed

CHANGELOG.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Full release notes, with more details and upgrade information, are available at:
22
https://channels.readthedocs.io/en/latest/releases
33

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+
417
4.0.0 (2022-10-15)
518
------------------
619

channels/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.0"
1+
__version__ = "4.1.0"
22

33

44
DEFAULT_CHANNEL_LAYER = "default"

docs/releases/4.1.0.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.

docs/releases/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release Notes
44
.. toctree::
55
:maxdepth: 1
66

7+
4.1.0
78
4.0.0
89
3.0.5
910
3.0.4

0 commit comments

Comments
 (0)