summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Tao <daniel.tao@gmail.com>2017-09-15 16:16:44 -0500
committerTim Graham <timograham@gmail.com>2017-10-10 09:20:34 -0400
commit4d60261b2a77460b4c127c3d832518b95e11a0ac (patch)
tree0d2baa5dd9ea66f71b26d6a58e68ffc8e0e424b4 /docs
parent0e212a705e6b2e49a246b16286036c40ec2ac4f8 (diff)
Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is a callable that returns None.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.7.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/1.11.7.txt b/docs/releases/1.11.7.txt
index 41d144e742..61f0d6d012 100644
--- a/docs/releases/1.11.7.txt
+++ b/docs/releases/1.11.7.txt
@@ -9,4 +9,5 @@ Django 1.11.7 fixes several bugs in 1.11.6.
Bugfixes
========
-* ...
+* Prevented ``cache.get_or_set()`` from caching ``None`` if the ``default``
+ argument is a callable that returns ``None`` (:ticket:`28601`).