From a83fb5fcacc5d180fe3f88b6d7ae05595d9627d1 Mon Sep 17 00:00:00 2001 From: Anders <6058745+ddabble@users.noreply.github.com> Date: Wed, 8 Mar 2023 22:11:10 +0100 Subject: [PATCH] Prepared for release 3.3.0 Added some missing entries to `CHANGES.rst` and moved some entries that were erroneously added to the 3.2.0 section, to 3.3.0 instead. --- CHANGES.rst | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d4e51f023..68aacc97f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,14 +4,27 @@ Changes Unreleased ---------- + +3.3.0 (2023-03-08) +------------------ + +- Made it possible to use the new ``m2m_fields`` with model inheritance (gh-1042) +- Added two signals: ``pre_create_historical_m2m_records`` and ``post_create_historical_m2m_records`` (gh-1042) +- Added ``tracked_fields`` attribute to historical models (gh-1038) +- Fixed ``KeyError`` when running ``clean_duplicate_history`` on models with ``excluded_fields`` (gh-1038) +- Added support for Python 3.11 (gh-1053) +- Added Arabic translations (gh-1056) +- Fixed a code example under "Tracking many to many relationships" (gh-1069) +- Added a ``--base-manager`` option to the ``clean_duplicate_history`` management command (gh-1115) + +3.2.0 (2022-09-28) +------------------ + - Fixed typos in the docs - Removed n+1 query from ``bulk_create_with_history`` utility (gh-975) - Started using ``exists`` query instead of ``count`` in ``populate_history`` command (gh-982) - Add basic support for many-to-many fields (gh-399) - Added support for Django 4.1 (gh-1021) -- Added ``tracked_fields`` attribute to historical models (gh-1038) -- Fixed ``KeyError`` when running ``clean_duplicate_history`` on models with ``excluded_fields`` (gh-1038) -- Added support for Python 3.11 (gh-1053) 3.1.1 (2022-04-23) ------------------