summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-06-17 14:35:24 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2026-06-17 17:32:26 -0400
commite4527156866cb96edf881023b14cb7a6f25d7f51 (patch)
tree5220ce1bea0d9b8368e913d75dd1025cf850f338
parentc37cc705e293f64431a982d29cfc3118c0e22f7c (diff)
Refs #36593 -- Added missing deprecation note for select_related() with no arguments.
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index b40402b117..85c6aa1025 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -120,6 +120,9 @@ details on these changes.
``django.core.signing.base64_hmac()`` will change from ``"sha1"`` to
``"sha256"``.
+* Calling :meth:`.QuerySet.select_related` without arguments will raise
+ :exc:`TypeError`.
+
* :meth:`.QuerySet.select_related` will raise :exc:`TypeError` if passed
``True`` rather than :exc:`AttributeError`.