From a7094c58a15cbf6e621b2129253060fc80cfdfad Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Wed, 25 Jan 2023 09:13:50 +0100 Subject: [PATCH] Adjusted CHANGELOG for v4.0 release. (#333) --- CHANGELOG.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 65d36c3..68c9993 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,10 +4,12 @@ Version 4.0.0 migrates the underlying Redis library from ``aioredis`` to ``redis-py``. (``aioredis`` was retired and moved into ``redis-py``, which will host the ongoing development.) -The API is unchanged. Version 4.0.0 should be compatible with existing Channels 3 projects, as well as Channels 4 +Version 4.0.0 should be compatible with existing Channels 3 projects, as well as Channels 4 projects. -* Migrated from ``aioredis`` to ``redis-py``. +* Migrated from ``aioredis`` to ``redis-py``. Specifying hosts as tuples is no longer supported. + If hosts are specified as dicts, only the ``address`` key will be taken into account, i.e. + a `password`` must be specified inline in the address. * Added support for passing kwargs to sentinel connections.