summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndy Chosak <chosak@gmail.com>2014-10-08 15:12:42 -0400
committerAnssi Kääriäinen <akaariai@gmail.com>2014-11-03 15:59:17 +0200
commit12e5b87b89074cd0380ddcdadd24a6c621178c07 (patch)
tree92dd86e2072c9f66feab29dda5d82e80a3d2041b /docs
parent74d0311d6b1fb3ab16072d5fad9de8b996e8af1c (diff)
[1.7.x] Fixed #23420 - broken warning for unbound naive datetime objects
Fixed issue with warning message displayed for unbound naive datetime objects when USE_TZ is True. Adds unit test that demonstrates the issue (discoverable when using a custom lookup in MySQL). Backport of ceb1ffcc8d from master. Conflicts: tests/custom_lookups/tests.py
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 7b455db62e..e50875305a 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -43,3 +43,6 @@ Bugfixes
* Fixed a migrations crash when adding ``GeometryField``\s with ``blank=True``
on PostGIS (:ticket:`23731`).
+
+* Allowed usage of ``DateTimeField()`` as ``Transform.output_field``
+ (:ticket:`23420`).