summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2020-02-27 18:04:34 +0100
committerantirez <antirez@gmail.com>2020-02-27 18:04:34 +0100
commit141c0679a03795fc395ef8b03818902c8a8fe24a (patch)
tree781263225eb47018c62e56478b4916761dc548e4
parentfe902461f467c28de15803cff8455abddab1288b (diff)
downloadredis-141c0679a03795fc395ef8b03818902c8a8fe24a.tar.gz
Changelog: explain Redis 6 SPOP change.
-rw-r--r--00-RELEASENOTES5
1 files changed, 4 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 3572bcc54..9d1670536 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -114,7 +114,10 @@ Redis 6.0 is mostly a strict superset of 5.0, you should not have any problem
upgrading your application from 5.0 to 6.0. However this is a list of small
non-backward compatible changes introduced in the 6.0 release:
-* Nothing found yet.
+* The SPOP <count> command no longer returns null when the set key does not
+ exist. Now it returns the empty set as it should and as happens when it is
+ called with a 0 argument. This is technically a fix, however it changes the
+ old behavior.
--------------------------------------------------------------------------------