1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Refs #35444 -- Removed contrib.postgres aggregates ordering kwarg per deprecation timeline.

This commit is contained in:
Jacob Walls
2025-09-05 14:15:50 -04:00
committed by nessita
parent 32e266dc5b
commit 7d7e5cd055
5 changed files with 12 additions and 89 deletions

View File

@@ -272,3 +272,9 @@ to remove usage of these features.
* Fallbacks to ``request.user`` and ``request.auser()`` when ``user`` is
``None`` in ``django.contrib.auth.login()`` and
``django.contrib.auth.alogin()``, respectively, are removed.
* The ``ordering`` keyword parameter of the PostgreSQL specific aggregation
functions ``django.contrib.postgres.aggregates.ArrayAgg``,
``django.contrib.postgres.aggregates.JSONBAgg``, and
``django.contrib.postgres.aggregates.StringAgg`` are removed in favor
of the ``order_by`` parameter.