Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped version and change notes for v4.1.0 release. #359

Merged
merged 1 commit into from Mar 28, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 17 additions & 4 deletions CHANGELOG.txt
@@ -1,9 +1,22 @@
UNRELEASED
----------
4.1.0 (2023-03-28)
------------------

* Adjusted the way Redis connections are handled:

* Connection handling is now shared between the two, core and pub-sub, layers.

* Both layers now ensure that connections are closed when an event loop shuts down.

* Pinned redis-py version to 4.3.5 in order to avoid difficult to diagnose
issues occurring with redis-py 4.4+ (to 4.5.2 currently).
In particular, redis-py 4.x requires that connections are manually closed.
In 4.0 that wasn't done by the core layer, which led to warnings for people
using `async_to_sync()`, without closing connections when updating from
3.x.

* Updated the minimum redis-py version to 4.5.3 because of a security release there.
Note that this is not a security issue in channels-redis: installing an
earlier version will still use the latest redis-py, but by bumping the
dependency we make sure you'll get redis-py too, when you install the update
here.

4.0.0 (2022-10-07)
------------------
Expand Down
2 changes: 1 addition & 1 deletion channels_redis/__init__.py
@@ -1 +1 @@
__version__ = "4.0.0"
__version__ = "4.1.0"