forked from django/channels
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd30456
commit 56bb2b9
Showing
4 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "2.3.1" | ||
__version__ = "2.4.0" | ||
|
||
default_app_config = "channels.apps.ChannelsConfig" | ||
DEFAULT_CHANNEL_LAYER = "default" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
2.4.0 Release Notes | ||
=================== | ||
|
||
Channels 2.4 brings compatibility with Django 3.0s ``async_unsafe()`` checks. | ||
(Specifically we ensure session save calls are made inside an asgiref | ||
``database_sync_to_async()``.) | ||
|
||
If you are using Daphne, it is recommended that you install Daphne version | ||
2.4.1 or later for full compatibility with Django 3.0. | ||
|
||
Backwards Incompatible Changes | ||
------------------------------ | ||
|
||
In line with the guidance provided by Django's supported versions policy we now | ||
also drop support for all Django versions before 2.2, which is the current LTS. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ Release Notes | |
2.1.7 | ||
2.2.0 | ||
2.3.0 | ||
2.4.0 |