summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2017-12-23 11:35:08 +0200
committerTim Graham <timograham@gmail.com>2017-12-26 12:18:39 -0500
commit4e4619a2b8f79699fbdb2c4f1bc4db55f59af6e6 (patch)
tree58c72a678e7247df8d293310d509e26a4cc8d5a9 /docs
parent830636df739d359116e3106c35375ac838bf15c3 (diff)
[2.0.x] Fixed #28944 -- Fixed crash when chaining values()/values_list() after QuerySet.select_for_update(of=()).
Backport of c21f158295d92e35caf96436bfdbbff554fc5569 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.0.1.txt b/docs/releases/2.0.1.txt
index ccbc7c29a3..97260ef5b8 100644
--- a/docs/releases/2.0.1.txt
+++ b/docs/releases/2.0.1.txt
@@ -37,3 +37,6 @@ Bugfixes
* Fixed crash on SQLite when renaming a field in a model referenced by a
``ManyToManyField`` (:ticket:`28884`).
+
+* Fixed a crash when chaining ``values()`` or ``values_list()`` after
+ ``QuerySet.select_for_update(of=(...))`` (:ticket:`28944`).