diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-12-12 16:17:09 +0100 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-01-15 22:28:37 +0100 |
| commit | 810edfd7428e12bd640573112c6c1a024ac33da2 (patch) | |
| tree | c6dd06c80384f51aa373dfff5e0285d753a8830f /docs/ref/contrib | |
| parent | 9b5ad4056ccf9ff7ea548f72d28eb66c1b4f84cc (diff) | |
Removed versionadded/changed annotations for 5.1.
This also removes remaining versionadded/changed annotations for older
versions.
Diffstat (limited to 'docs/ref/contrib')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 15 | ||||
| -rw-r--r-- | docs/ref/contrib/contenttypes.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/functions.txt | 12 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/gdal.txt | 17 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/measure.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/indexes.txt | 4 |
7 files changed, 0 insertions, 60 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 1b02b7d403..311b21ec6e 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -432,11 +432,6 @@ subclass:: collapsed, using an expandable widget with a toggle for switching their visibility. - .. versionchanged:: 5.1 - - ``fieldsets`` using the ``collapse`` class now use ``<details>`` - and ``<summary>`` elements, provided they define a ``name``. - * ``description`` A string of optional extra text to be displayed at the top of each fieldset, under the heading of the fieldset. @@ -639,11 +634,6 @@ subclass:: class PersonAdmin(admin.ModelAdmin): list_display = ["name", "decade_born_in"] - .. versionchanged:: 5.1 - - Support for using ``__`` lookups was added, when targeting related - fields. - A few special cases to note about ``list_display``: * If the field is a ``ForeignKey``, Django will display the @@ -2337,11 +2327,6 @@ The ``InlineModelAdmin`` class adds or customizes: configured in :attr:`~ModelAdmin.fieldsets`, inlines with a ``collapse`` class will be initially collapsed using an expandable widget. - .. versionchanged:: 5.1 - - ``fieldsets`` using the ``collapse`` class now use ``<details>`` and - ``<summary>`` elements, provided they define a ``name``. - .. attribute:: InlineModelAdmin.extra This controls the number of extra forms the formset will display in diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index 18eaff43b2..d8f4b24753 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -115,10 +115,6 @@ model it represents, or to retrieve objects from that model: on that model, returning the corresponding object. The ``using`` argument can be used to specify a different database than the default one. - .. versionchanged:: 5.1 - - The ``using`` argument was added. - .. method:: ContentType.model_class() Returns the model class represented by this diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt index ff62c17580..055c5217f7 100644 --- a/docs/ref/contrib/gis/functions.txt +++ b/docs/ref/contrib/gis/functions.txt @@ -238,10 +238,6 @@ polygon that can fully contain the geometry. The ``num_seg`` parameter is used only on PostGIS. -.. versionchanged:: 5.1 - - SpatiaLite 5.1+ support was added. - ``Centroid`` ============ @@ -367,10 +363,6 @@ Creates geometry from `Well-known binary (WKB)`_ representation. The optional ``srid`` argument allows to specify the SRID of the resulting geometry. ``srid`` is ignored on Oracle. -.. versionchanged:: 5.1 - - The ``srid`` argument was added. - ``FromWKT`` =========== @@ -384,10 +376,6 @@ Creates geometry from `Well-known text (WKT)`_ representation. The optional ``srid`` argument allows to specify the SRID of the resulting geometry. ``srid`` is ignored on Oracle. -.. versionchanged:: 5.1 - - The ``srid`` argument was added. - ``GeoHash`` =========== diff --git a/docs/ref/contrib/gis/gdal.txt b/docs/ref/contrib/gis/gdal.txt index 726cd83756..1ec04d342f 100644 --- a/docs/ref/contrib/gis/gdal.txt +++ b/docs/ref/contrib/gis/gdal.txt @@ -562,14 +562,10 @@ coordinate transformation: .. attribute:: is_3d - .. versionadded:: 5.1 - A boolean indicating if this geometry has Z coordinates. .. method:: set_3d(value) - .. versionadded:: 5.1 - A method that adds or removes the Z coordinate dimension. .. code-block:: pycon @@ -583,14 +579,10 @@ coordinate transformation: .. attribute:: is_measured - .. versionadded:: 5.1 - A boolean indicating if this geometry has M coordinates. .. method:: set_measured(value) - .. versionadded:: 5.1 - A method to add or remove the M coordinate dimension. .. code-block:: pycon @@ -863,11 +855,6 @@ coordinate transformation: Returns a :class:`Point` representing the centroid of this geometry. - .. versionchanged:: 5.1 - - ``centroid`` was promoted from a :class:`.Polygon` only attribute to - being available on all geometry types. - .. attribute:: tuple Returns the coordinates of a point geometry as a tuple, the @@ -916,8 +903,6 @@ coordinate transformation: .. attribute:: m - .. versionadded:: 5.1 - Returns the M coordinate of this point, or ``None`` if the Point does not have an M coordinate: @@ -958,8 +943,6 @@ coordinate transformation: .. attribute:: m - .. versionadded:: 5.1 - Returns a list of M coordinates in this line or ``None`` if the line does not have M coordinates: diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index 19411b7304..cf50af2c9f 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -894,10 +894,6 @@ aggregate, except it can be several orders of magnitude faster than performing a union because it rolls up geometries into a collection or multi object, not caring about dissolving boundaries. -.. versionchanged:: 5.1 - - MySQL 8.0.24+ support was added. - .. versionchanged:: 5.2 MariaDB 11.7+ support was added. diff --git a/docs/ref/contrib/gis/measure.txt b/docs/ref/contrib/gis/measure.txt index cee4211220..1d88ba129d 100644 --- a/docs/ref/contrib/gis/measure.txt +++ b/docs/ref/contrib/gis/measure.txt @@ -125,10 +125,6 @@ Unit Attribute Full name or alias(es) ``ha`` Hectare ================================= ======================================== -.. versionchanged:: 5.1 - - Support for the ``ha`` unit was added. - Measurement API =============== diff --git a/docs/ref/contrib/postgres/indexes.txt b/docs/ref/contrib/postgres/indexes.txt index 107d9c278d..f001fd0063 100644 --- a/docs/ref/contrib/postgres/indexes.txt +++ b/docs/ref/contrib/postgres/indexes.txt @@ -57,10 +57,6 @@ available from the ``django.contrib.postgres.indexes`` module. whether deduplication is enabled. PostgreSQL enables deduplication by default. - .. versionchanged:: 5.1 - - The ``deduplicate_items`` parameter was added. - .. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS .. _deduplicate_items: https://www.postgresql.org/docs/current/btree-implementation.html#BTREE-DEDUPLICATION |
