diff --git a/docs/ref/contrib/gis.rst b/docs/ref/contrib/gis.rst index 104f4e1e0..c329759af 100644 --- a/docs/ref/contrib/gis.rst +++ b/docs/ref/contrib/gis.rst @@ -2,8 +2,6 @@ GeoDjango ========= -.. versionadded:: 5.2.0b2 - Django MongoDB Backend supports :doc:`GeoDjango`. Each model field stores data as :doc:`GeoJSON objects diff --git a/docs/ref/database.rst b/docs/ref/database.rst index 365e1c73d..cd1b4f36e 100644 --- a/docs/ref/database.rst +++ b/docs/ref/database.rst @@ -16,11 +16,6 @@ Django MongoDB Backend because Django's API for connection-closing (``django.db.connection.close()``) has no effect. In other words, persistent connections are enabled by default. -.. versionadded:: 5.2.0b0 - - Support for connection pooling was added. In older versions, use - :setting:`CONN_MAX_AGE` to enable persistent connections. - .. _connection-management: Connection management @@ -37,7 +32,3 @@ no effect. Django's API for connection-closing (``django.db.connection.close()``) has no effect. Rather, if you need to close the connection pool, use ``django.db.connection.close_pool()``. - -.. versionadded:: 5.2.0b0 - - Support for connection pooling and ``connection.close_pool()`` were added. diff --git a/docs/ref/forms.rst b/docs/ref/forms.rst index 72c646a71..cc8763bbf 100644 --- a/docs/ref/forms.rst +++ b/docs/ref/forms.rst @@ -28,8 +28,6 @@ Some MongoDB-specific fields are available in ``django_mongodb_backend.forms``. .. class:: EmbeddedModelArrayField(model, *, prefix, max_num=None, extra_forms=3, **kwargs) - .. versionadded:: 5.2.0b1 - A field which maps to a list of model instances. The field will render as a :class:`ModelFormSet `. diff --git a/docs/ref/models/fields.rst b/docs/ref/models/fields.rst index 874ca2588..29cce684c 100644 --- a/docs/ref/models/fields.rst +++ b/docs/ref/models/fields.rst @@ -315,8 +315,6 @@ These indexes use 0-based indexing. .. class:: EmbeddedModelArrayField(embedded_model, max_size=None, **kwargs) - .. versionadded:: 5.2.0b1 - Similar to :class:`EmbeddedModelField`, but stores a **list** of models of type ``embedded_model`` rather than a single instance. @@ -360,8 +358,6 @@ These indexes use 0-based indexing. .. class:: PolymorphicEmbeddedModelField(embedded_models, **kwargs) - .. versionadded:: 5.2.0b2 - Stores a model of one of the types in ``embedded_models``. .. attribute:: embedded_models @@ -390,8 +386,6 @@ These indexes use 0-based indexing. .. class:: PolymorphicEmbeddedModelArrayField(embedded_models, **kwargs) - .. versionadded:: 5.2.0b2 - Similar to :class:`PolymorphicEmbeddedModelField`, but stores a **list** of models of type ``embedded_models`` rather than a single instance. diff --git a/docs/ref/models/indexes.rst b/docs/ref/models/indexes.rst index 8a124170d..984177687 100644 --- a/docs/ref/models/indexes.rst +++ b/docs/ref/models/indexes.rst @@ -28,8 +28,6 @@ minutes, depending on the size of the collection. .. class:: SearchIndex(fields=(), name=None) - .. versionadded:: 5.2.0b0 - Creates a basic :doc:`search index ` on the given field(s). @@ -48,8 +46,6 @@ minutes, depending on the size of the collection. .. class:: VectorSearchIndex(*, fields=(), name=None, similarities) - .. versionadded:: 5.2.0b0 - A subclass of :class:`SearchIndex` that creates a :doc:`vector search index ` on the given field(s). diff --git a/docs/ref/models/search.rst b/docs/ref/models/search.rst index 25b2581f4..5eb980172 100644 --- a/docs/ref/models/search.rst +++ b/docs/ref/models/search.rst @@ -4,8 +4,6 @@ Atlas Search queries .. currentmodule:: django_mongodb_backend.expressions -.. versionadded:: 5.2.0b2 - Atlas Search expressions ======================== diff --git a/docs/ref/utils.rst b/docs/ref/utils.rst index 9f6865828..8075da94d 100644 --- a/docs/ref/utils.rst +++ b/docs/ref/utils.rst @@ -42,7 +42,3 @@ following parts can be considered stable. But for maximum flexibility, construct :setting:`DATABASES` manually as described in :ref:`configuring-databases-setting`. - - .. versionchanged:: 5.2b2 - - The ``options`` parameter was added. diff --git a/docs/topics/transactions.rst b/docs/topics/transactions.rst index d316b46c7..66222f518 100644 --- a/docs/topics/transactions.rst +++ b/docs/topics/transactions.rst @@ -2,8 +2,6 @@ Transactions ============ -.. versionadded:: 5.2.0b2 - .. module:: django_mongodb_backend.transaction MongoDB supports :doc:`transactions ` if it's