summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-02-09 18:27:23 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2026-02-10 09:46:33 -0500
commit3c09ed81d3e90d7ce60372096c58e80548d1d2ef (patch)
tree0de775e8e5be6124ca4da2a258323c9f01cc553c /docs/releases
parent226ca7b5ce283e1f891dbbbefb0afaebdaa09f28 (diff)
Refs #35444 -- Doc'd deprecation in contrib.postgres.aggreggates.StringAgg.delimiter.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/6.0.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/releases/6.0.txt b/docs/releases/6.0.txt
index ff810b0354..bfad64e485 100644
--- a/docs/releases/6.0.txt
+++ b/docs/releases/6.0.txt
@@ -517,6 +517,13 @@ Miscellaneous
* The PostgreSQL ``StringAgg`` class is deprecated in favor of the generally
available :class:`~django.db.models.StringAgg` class.
+* Passing a string to the
+ :attr:`~django.contrib.postgres.aggregates.StringAgg.delimiter` argument of
+ the (deprecated) PostgreSQL ``StringAgg`` class is deprecated. Use a
+ :class:`~django.db.models.Value` or expression instead to prepare for
+ compatibility with the generally available
+ :class:`~django.db.models.StringAgg` class.
+
* The PostgreSQL ``OrderableAggMixin`` is deprecated in favor of the
``order_by`` attribute now available on the
:class:`~django.db.models.Aggregate` class.