-
-
Notifications
You must be signed in to change notification settings - Fork 800
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
8d90b07
commit 6832741
Showing
4 changed files
with
65 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__ = "4.1.0" | ||
__version__ = "4.2.0" | ||
|
||
|
||
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,50 @@ | ||
4.2.0 Release Notes | ||
=================== | ||
|
||
Channels 4.2 introduces a couple of major but backwards-compatible | ||
changes, including most notably enhanced async suppport and fixing | ||
a long-standing bug where tests would try and close db connections | ||
and erroneously fail. | ||
|
||
Additionally, support has been added for Django 5.1. | ||
|
||
Enhanced Async Support | ||
---------------------- | ||
|
||
Support for asynchronous consumers has been greatly improved. | ||
The documentation has been updated to reflect the async ORM | ||
features added in Django 4.2. A new `channels.db.aclose_old_connections` | ||
function has been added to easily close old database connections | ||
in async consumers. | ||
|
||
Warning: Channels now automatically closes connections in async | ||
consumers before a new connection, after recieving message (but | ||
before dispatching to consumer code), and after disconnecting. | ||
|
||
This change has been made to more closely align with Django's | ||
request/response cycle, and to help users avoid attempting | ||
to use stale/broken connections. | ||
|
||
Notably, Channels does NOT close connections before or after | ||
a consumer **sends** data. This is to avoid database churn and | ||
more closely align with user expectations. Instead, users are | ||
expected to call `aclose_old_connections` occasionally during | ||
long-lived async connections. | ||
|
||
|
||
Bugfixes & Small Changes | ||
------------------------ | ||
|
||
* Database connections are no longer closed inside tests, which | ||
prevents erroneous "Cannot operate on a closed database" errors | ||
when running tets. | ||
|
||
Thanks to Jon Janzen. | ||
|
||
* An old import override and an unused deprecation message were removed | ||
|
||
Thanks to @sevdog (Devid) and Jon Janzen. | ||
|
||
* WebsocketCommunicator now has informative `assert` error messages | ||
|
||
Thanks to Karel Hovorka. |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ Release Notes | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
4.2.0 | ||
4.1.0 | ||
4.0.0 | ||
3.0.5 | ||
|