summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2021-05-14 15:58:45 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-18 20:26:44 +0200
commit8cd55021bcb6c9727c1adccd9623fa4acfc0312b (patch)
tree6a5a411a0c07bf88e8c550bb94e4ee9f148ccb26 /docs/releases
parent958cdf65ae90d26236d1815bbba804729595ec7a (diff)
Fixed #32379 -- Started deprecation toward changing default USE_TZ to True.
Co-authored-by: Nick Pope <nick@nickpope.me.uk> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/4.0.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt
index 3168200070..207c6af5f6 100644
--- a/docs/releases/4.0.txt
+++ b/docs/releases/4.0.txt
@@ -431,6 +431,20 @@ Miscellaneous
Features deprecated in 4.0
==========================
+Time zone support
+-----------------
+
+In order to follow good practice, the default value of the :setting:`USE_TZ`
+setting will change from ``False`` to ``True``, and time zone support will be
+enabled by default, in Django 5.0.
+
+Note that the default :file:`settings.py` file created by
+:djadmin:`django-admin startproject <startproject>` includes
+:setting:`USE_TZ = True <USE_TZ>` since Django 1.4.
+
+You can set ``USE_TZ`` to ``False`` in your project settings before then to
+opt-out.
+
Miscellaneous
-------------