summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-30 18:04:09 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 14:09:29 -0500
commite707e4c709c2e3f2dad69643eb838f87491891f8 (patch)
tree00a30028e4648c6b6fda4d1ab171996a404b8cde /docs
parentb2ffbb00a5b4526ab51c62a620f819c96a44902c (diff)
Refs #19738 -- Removed timezone conversion in SQL queries executed outside of the ORM.
Per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.0.txt b/docs/releases/2.0.txt
index 9c1d80f081..0982218b92 100644
--- a/docs/releases/2.0.txt
+++ b/docs/releases/2.0.txt
@@ -254,3 +254,8 @@ these features.
required.
* ``django.db.models.fields.add_lazy_relation()`` is removed.
+
+* When time zone support is enabled, database backends that don't support time
+ zones no longer convert aware datetimes to naive values in UTC anymore when
+ such values are passed as parameters to SQL queries executed outside of the
+ ORM, e.g. with ``cursor.execute()``.