Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases


4.2.1 (2025-03-29)
------------------

Channels 4.2.1 primarily updates the metadata for supported Python and Django
versions.

* Added official support for Django 5.2 LTS.

* Added official support for Python 3.13.

* Added a warning for the length of the channel layer group names.

See also the `Version 4.2.1 release notes
<https://channels.readthedocs.io/en/latest/releases/4.2.1.html>`_ in the docs.

4.2.0 (2024-11-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.2.0"
__version__ = "4.2.1"


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

Channels 4.2.1 is a bugfix release in the 4.1 series.

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

* Added official support for Django 5.2 LTS.

* Added official support for Python 3.13.

* Added a warning for the length of the channel layer group names.
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.2.1
4.2.0
4.1.0
4.0.0
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers =
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1
Framework :: Django :: 5.2
Topic :: Internet :: WWW/HTTP

[options]
Expand Down
Loading