summaryrefslogtreecommitdiff
path: root/docs/ref/models/querysets.txt
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-09-05 13:49:08 -0400
committernessita <124304+nessita@users.noreply.github.com>2025-09-17 15:17:05 -0300
commit00a84fc6f3bb8cca15113e4d41e710123d182b4a (patch)
tree09d8a81acf0c768be984e92de5f3f1206630a266 /docs/ref/models/querysets.txt
parent1db79d8acf20c38aaf52e8e7c57f43c0e6501bb9 (diff)
Removed versionadded/changed annotations for 5.2.
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