From 2b582387d51c44fa928351ca55f05fc8b8d2986e Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 4 Aug 2023 06:35:13 +0200 Subject: Fixed #34760 -- Dropped support for SQLite < 3.27. --- docs/ref/contrib/gis/install/index.txt | 2 +- docs/ref/databases.txt | 2 +- docs/ref/models/querysets.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/ref') diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt index b207094dbb..c5d03eee0d 100644 --- a/docs/ref/contrib/gis/install/index.txt +++ b/docs/ref/contrib/gis/install/index.txt @@ -59,7 +59,7 @@ Database Library Requirements Supported Versions Notes PostgreSQL GEOS, GDAL, PROJ, PostGIS 12+ Requires PostGIS. MySQL GEOS, GDAL 8.0.11+ :ref:`Limited functionality `. Oracle GEOS, GDAL 19+ XE not supported. -SQLite GEOS, GDAL, PROJ, SpatiaLite 3.21.0+ Requires SpatiaLite 4.3+ +SQLite GEOS, GDAL, PROJ, SpatiaLite 3.27.0+ Requires SpatiaLite 4.3+ ================== ============================== ================== ========================================= See also `this comparison matrix`__ on the OSGeo Wiki for diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index aa55446607..6e9cb63fda 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -792,7 +792,7 @@ appropriate typecasting. SQLite notes ============ -Django supports SQLite 3.21.0 and later. +Django supports SQLite 3.27.0 and later. SQLite_ provides an excellent development alternative for applications that are predominantly read-only or require a smaller installation footprint. As diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 1c73a7f085..106a5e8a17 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2411,7 +2411,7 @@ On databases that support it (all but Oracle), setting the ``ignore_conflicts`` parameter to ``True`` tells the database to ignore failure to insert any rows that fail constraints such as duplicate unique values. -On databases that support it (all except Oracle and SQLite < 3.24), setting the +On databases that support it (all except Oracle), setting the ``update_conflicts`` parameter to ``True``, tells the database to update ``update_fields`` when a row insertion fails on conflicts. On PostgreSQL and SQLite, in addition to ``update_fields``, a list of ``unique_fields`` that may -- cgit v1.3