summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/install/index.txt2
-rw-r--r--docs/ref/databases.txt2
-rw-r--r--docs/ref/models/querysets.txt4
-rw-r--r--docs/releases/6.1.txt2
4 files changed, 6 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt
index e08c78b147..f127478151 100644
--- a/docs/ref/contrib/gis/install/index.txt
+++ b/docs/ref/contrib/gis/install/index.txt
@@ -60,7 +60,7 @@ Database Library Requirements Supported Versions Notes
PostgreSQL GEOS, GDAL, PROJ, PostGIS 15+ Requires PostGIS.
MySQL GEOS, GDAL 8.0.11+ :ref:`Limited functionality <mysql-spatial-limitations>`.
Oracle GEOS, GDAL 19+ XE not supported.
-SQLite GEOS, GDAL, PROJ, SpatiaLite 3.31.0+ Requires SpatiaLite 4.3+
+SQLite GEOS, GDAL, PROJ, SpatiaLite 3.37.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 cbd0e2feea..cd415e1c00 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -814,7 +814,7 @@ appropriate typecasting.
SQLite notes
============
-Django supports SQLite 3.31.0 and later.
+Django supports SQLite 3.37.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 164bc9ce54..d9badb690d 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2439,8 +2439,8 @@ This has a number of caveats though:
* If the model's primary key is an :class:`~django.db.models.AutoField` or has
a :attr:`~django.db.models.Field.db_default` value, and ``ignore_conflicts``
is ``False``, the primary key attribute can only be retrieved on certain
- databases (currently PostgreSQL, MariaDB, and SQLite 3.35+). On other
- databases, it will not be set.
+ databases (currently PostgreSQL, MariaDB, and SQLite). On other databases, it
+ will not be set.
* It does not work with many-to-many relationships.
* It casts ``objs`` to a list, which fully evaluates ``objs`` if it's a
generator. The cast allows inspecting all objects so that any objects with a
diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt
index d199423176..1430cb4f17 100644
--- a/docs/releases/6.1.txt
+++ b/docs/releases/6.1.txt
@@ -325,6 +325,8 @@ Miscellaneous
* :class:`~django.contrib.contenttypes.fields.GenericForeignKey` now uses a
separate descriptor class: the private ``GenericForeignKeyDescriptor``.
+* The minimum supported version of SQLite is increased from 3.31.0 to 3.37.0.
+
.. _deprecated-features-6.1:
Features deprecated in 6.1