summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-08-03 10:36:02 -0400
committerTim Graham <timograham@gmail.com>2018-08-03 14:58:38 -0400
commit1593a8386a1974539a5a816eef45df41d15de879 (patch)
tree56ed31c266da38e4aad2560ead5d0021ad173b89
parent4f9641c9af0c86578eb7ed1bb0273a1c8292fdc8 (diff)
[2.1.x] Refs #28584 -- Documented removal of support for SQLite < 3.7.15.
Backport of 1160a975968f86953a6c4405b772eb86283c5a4a from master
-rw-r--r--docs/ref/databases.txt2
-rw-r--r--docs/releases/2.1.txt2
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index c991482761..e50f99524e 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -633,6 +633,8 @@ appropriate typecasting.
SQLite notes
============
+Django supports SQLite 3.7.15 and later.
+
SQLite_ provides an excellent development alternative for applications that
are predominantly read-only or require a smaller installation footprint. As
with all database servers, though, there are some differences that are
diff --git a/docs/releases/2.1.txt b/docs/releases/2.1.txt
index 89bcb46045..cdf1a416dc 100644
--- a/docs/releases/2.1.txt
+++ b/docs/releases/2.1.txt
@@ -340,6 +340,8 @@ Miscellaneous
* The minimum supported version of ``mysqlclient`` is increased from 1.3.3 to
1.3.7.
+* Support for SQLite < 3.7.15 is removed.
+
* The date format of ``Set-Cookie``'s ``Expires`` directive is changed to
follow :rfc:`7231#section-7.1.1.1` instead of Netscape's cookie standard.
Hyphens present in dates like ``Tue, 25-Dec-2018 22:26:13 GMT`` are removed.