summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexey Voronov <despawn@gmail.com>2013-12-22 00:03:17 +0200
committerTim Graham <timograham@gmail.com>2014-02-28 20:49:13 -0500
commit5cda1d27027ea74d8a1b53e43bef697cd4426e9a (patch)
treec37a3eb1512152d38d76976a8cea7f0965c1e782 /docs
parentf2b513c9e8416855a92e66928c2e22a8fc639273 (diff)
[1.6.x] Fixed #21643 -- repeated execution of qs with F() + timedelta
Thanks Tim Graham for review and Tai Lee for the additional test to prove this was a regression in 1.6. Backport of 7f2485b4d1 and 8137215973 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.6.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.6.3.txt b/docs/releases/1.6.3.txt
index 99b8566270..a8b63dc72a 100644
--- a/docs/releases/1.6.3.txt
+++ b/docs/releases/1.6.3.txt
@@ -14,3 +14,7 @@ several bugs in 1.6.2:
* Fixed ``AttributeError`` when using
:meth:`~django.db.models.query.QuerySet.bulk_create` with ``ForeignObject``
(`#21566 <http://code.djangoproject.com/ticket/21566>`_).
+
+* Fixed crash of ``QuerySet``\s that use ``F() + timedelta()`` when their query
+ was compiled more once
+ (`#21643 <http://code.djangoproject.com/ticket/21643>`_).