From 7d7e5cd0554aab03d3e2732a67a2680d48fa48f7 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Fri, 5 Sep 2025 14:15:50 -0400 Subject: Refs #35444 -- Removed contrib.postgres aggregates ordering kwarg per deprecation timeline. --- docs/ref/contrib/postgres/aggregates.txt | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'docs/ref') diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index 81e54547e5..d2bd48c4fd 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -54,11 +54,6 @@ General-purpose aggregation functions ArrayAgg("a_field", order_by="-some_field") ArrayAgg("a_field", order_by=F("some_field").desc()) - .. deprecated:: 5.2 - - The ``ordering`` keyword argument is deprecated. Use - :attr:`ArrayAgg.order_by` instead. - ``BitAnd`` ---------- @@ -180,11 +175,6 @@ General-purpose aggregation functions {'parking': True, 'double_bed': True} ]}]> - .. deprecated:: 5.2 - - The ``ordering`` keyword argument is deprecated. Use - :attr:`JSONBAgg.order_by` instead. - ``StringAgg`` ------------- @@ -242,11 +232,6 @@ General-purpose aggregation functions 'headline': 'NASA uses Python', 'publication_names': 'Science News, The Python Journal' }]> - .. deprecated:: 5.2 - - The ``ordering`` keyword argument is deprecated. Use - :attr:`StringAgg.order_by` instead. - Aggregate functions for statistics ================================== -- cgit v1.3