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:35:52 -0400
commitdc112bf530fe2fc3b9be82bb7a6e3213c5f7fc11 (patch)
treee5d0949b922cef20deaafbb5ea9b145bb2fa0233 /docs
parentd3e115151eaf1d7ce8d6402563f9ff7dd2a72180 (diff)
[2.0.x] Fixed #28601 -- Prevented cache.get_or_set() from caching None if default is a callable that returns None.
Backport of 4d60261b2a77460b4c127c3d832518b95e11a0ac from master
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`).