From 6b37f4bedc349eb2c91e680d2ef811a3c2f7e879 Mon Sep 17 00:00:00 2001 From: Andy McCurdy Date: Sat, 15 Aug 2020 16:16:28 -0700 Subject: All values within Redis URLs are url-unquoted via default. Prior versions of redis-py supported this by specifying the ``decode_components`` flag to the ``from_url`` functions. This is now done by default and cannot be disabled. Fixes #589 --- CHANGES | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index b164991..2b7dbb8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ * (in development) - * Removed support for end of life Python 2.7. + * BACKWARDS INCOMPATIBLE: Removed support for end of life Python 2.7. #1318 + * BACKWARDS INCOMPATIBLE: All values within Redis URLs are unquoted via + urllib.parse.unquote. Prior versions of redis-py supported this by + specifying the ``decode_components`` flag to the ``from_url`` functions. + This is now done by default and cannot be disabled. #589 * Provide a development and testing environment via docker. Thanks @abrookins. #1365 * Added support for the LPOS command available in Redis 6.0.6. Thanks -- cgit v1.2.1