summaryrefslogtreecommitdiff
path: root/docs/ref/models/querysets.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/models/querysets.txt')
-rw-r--r--docs/ref/models/querysets.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 59550e6690..5fb6cb33b3 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -750,11 +750,6 @@ You can also refer to fields on related models with reverse relations through
``"true"``, ``"false"``, and ``"null"`` strings for
:class:`~django.db.models.JSONField` key transforms.
-.. versionchanged:: 5.2
-
- The ``SELECT`` clause generated when using ``values()`` was updated to
- respect the order of the specified ``*fields`` and ``**expressions``.
-
``values_list()``
~~~~~~~~~~~~~~~~~
@@ -845,11 +840,6 @@ not having any author:
``"true"``, ``"false"``, and ``"null"`` strings for
:class:`~django.db.models.JSONField` key transforms.
-.. versionchanged:: 5.2
-
- The ``SELECT`` clause generated when using ``values_list()`` was updated to
- respect the order of the specified ``*fields``.
-
``dates()``
~~~~~~~~~~~
@@ -3125,11 +3115,6 @@ adverse effects on your database. For example, the ``ANALYZE`` flag supported
by MariaDB, MySQL 8.0.18+, and PostgreSQL could result in changes to data if
there are triggers or if a function is called, even for a ``SELECT`` query.
-.. versionchanged:: 5.2
-
- Support for the ``memory`` and ``serialize`` options on PostgreSQL 17+ was
- added.
-
.. _field-lookups:
``Field`` lookups