summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-02-17 19:27:21 -0500
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-06-20 08:25:22 +0200
commit8ede411a81b40ca53362e6788601193c7e56a0cf (patch)
treefa68d8f108d56fcdbcc7ad29ae1a0442260bb50e /docs
parent56f468681aaedefcdada1b86c441c12ae96e7fea (diff)
Fixed #36152 -- Deprecated use of "%" in column aliases.
Unintentional support existed only on SQLite and Oracle.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt3
-rw-r--r--docs/releases/6.0.txt2
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index e6db513dae..fb37d43849 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -28,6 +28,9 @@ details on these changes.
* The ``URLIZE_ASSUME_HTTPS`` transitional setting will be removed.
+* Using a percent sign in a column alias or annotation will raise
+ ``ValueError``.
+
* Support for setting the ``ADMINS`` or ``MANAGERS`` settings to a list of
(name, address) tuples will be removed.
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt
index 362ea70ea0..304343256f 100644
--- a/docs/releases/6.0.txt
+++ b/docs/releases/6.0.txt
@@ -375,6 +375,8 @@ Miscellaneous
``per_page`` argument of :class:`django.core.paginator.Paginator` and
:class:`django.core.paginator.AsyncPaginator` is deprecated.
+* Using a percent sign in a column alias or annotation is deprecated.
+
Features removed in 6.0
=======================