From 97237ad3feed80407ed1884ea84cf00fd9fea367 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 16 Sep 2021 07:43:34 +0200 Subject: Removed versionadded/changed annotations for 3.2. --- docs/topics/db/models.txt | 5 ----- docs/topics/db/queries.txt | 2 -- docs/topics/db/sql.txt | 5 ----- docs/topics/db/transactions.txt | 4 ---- 4 files changed, 16 deletions(-) (limited to 'docs/topics/db') diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index 1c4e99817f..b8d6c30a27 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -274,11 +274,6 @@ sees you've explicitly set :attr:`Field.primary_key`, it won't add the automatic Each model requires exactly one field to have :attr:`primary_key=True ` (either explicitly declared or automatically added). -.. versionchanged:: 3.2 - - In older versions, auto-created primary key fields were always - :class:`AutoField`\s. - .. _verbose-field-names: Verbose field names diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index ac425e99f4..c24c06da68 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -670,8 +670,6 @@ The ``F()`` objects support bitwise operations by ``.bitand()``, ``.bitor()``, Expressions can reference transforms ------------------------------------ -.. versionadded:: 3.2 - Django supports using transforms in expressions. For example, to find all ``Entry`` objects published in the same year as they diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt index 8d3216c60d..4713fb6d50 100644 --- a/docs/topics/db/sql.txt +++ b/docs/topics/db/sql.txt @@ -98,11 +98,6 @@ make it very powerful. both rows will match. To prevent this, perform the correct typecasting before using the value in a query. -.. versionchanged:: 3.2 - - The default value of the ``params`` argument was changed from ``None`` to - an empty tuple. - Mapping query fields to model fields ------------------------------------ diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt index bffbf94ee6..313aa7d188 100644 --- a/docs/topics/db/transactions.txt +++ b/docs/topics/db/transactions.txt @@ -244,10 +244,6 @@ Django provides a single API to control database transactions. testing durable atomic blocks in a transaction for performance reasons. Use :class:`django.test.TransactionTestCase` for testing durability. -.. versionchanged:: 3.2 - - The ``durable`` argument was added. - Autocommit ========== -- cgit v1.3