summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2020-08-15 16:16:28 -0700
committerAndy McCurdy <andy@andymccurdy.com>2020-08-15 16:16:28 -0700
commit6b37f4bedc349eb2c91e680d2ef811a3c2f7e879 (patch)
treefb998e8363449899bdb88fdacbb9f3a6d66807b9 /CHANGES
parentc73e07c883452d32ec273d04942e017814b04e54 (diff)
downloadredis-py-6b37f4bedc349eb2c91e680d2ef811a3c2f7e879.tar.gz
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
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 5 insertions, 1 deletions
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