Skip to content

Commit

Permalink
Preparing v4.1 release. (#2087)
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Apr 3, 2024
1 parent 30ec8f5 commit d017e31
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases

4.1.0 (2024-04-03)
------------------

Channels 4.1 is maintenance release in the 4.x series.

The main change is an update in the required Python and Django version.
Python 3.8, and Django 4.2 are now the minimum required versions.

There are a number of other small bugfixes. Please ensure to review the
`Version 4.1.0 release notes
<https://channels.readthedocs.io/en/latest/releases/4.1.0.html>`_ for full
details.

4.0.0 (2022-10-15)
------------------

Expand Down
2 changes: 1 addition & 1 deletion channels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.0.0"
__version__ = "4.1.0"


DEFAULT_CHANNEL_LAYER = "default"
34 changes: 34 additions & 0 deletions docs/releases/4.1.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
4.1.0 Release Notes
===================

Channels 4.1 is maintenance release in the 4.x series.


Python and Django support
-------------------------

* A Python version of 3.8 or higher is required.

* Django 4.2 is now the minimum supported version.


Bugfixes & Small Changes
------------------------

* Exceptions in ``HttpConsumer`` are now correctly propagated.

Thanks to Adam Johnson.

* URLRouter is updated for compatibility with in-development changes in Django.

Thanks to Adam Johnson.

* URLRouter is updated to correctly handle ``root_path``.

Thanks to Alejandro R. Sedeño.

* Websocket consumers are updated for newer ASGI spec versions, adding the
``headers`` parameter for the ``accept`` event, and ``reason`` for the
``close`` event.

Thanks to Kristján Valur Jónsson.
1 change: 1 addition & 0 deletions docs/releases/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release Notes
.. toctree::
:maxdepth: 1

4.1.0
4.0.0
3.0.5
3.0.4
Expand Down

0 comments on commit d017e31

Please sign in to comment.