From ac44d2221cefa887cbf606d70befb07d5b4e93e0 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Mon, 19 Feb 2024 15:06:27 -0600 Subject: [PATCH] Prepare for 3.5.0 release (#1290) * Fixed changelog entry placed in wrong section The 3.4.0 version was already set when the entry was added; see https://github.com/jazzband/django-simple-history/commit/78bcd0e1fe57399768c9b698623b29d2943c991d#diff-ff3c479edefad986d2fe6fe7ead575a46b086e3bbcf0ccc86d85efc4a4c63c79R8 * Prepare for release 3.5.0 --------- Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com> --- CHANGES.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e5906805..30c9432b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changes Unreleased ---------- + +3.5.0 (2024-02-19) +------------------ + +- Fixed ``FieldError`` when creating historical records for many-to-many fields with + ``to="self"`` (gh-1218) - Allow ``HistoricalRecords.m2m_fields`` as str (gh-1243) - Fixed ``HistoryRequestMiddleware`` deleting non-existent ``HistoricalRecords.context.request`` in very specific circumstances (gh-1256) @@ -38,8 +44,6 @@ Unreleased ``HistoricalRecords.context.request``) under some circumstances (gh-1188) - Made ``HistoryRequestMiddleware`` async-capable (gh-1209) - Fixed error when setting ``table_name`` with ``inherit=True`` (gh-1195) -- Fixed ``FieldError`` when creating historical records for many-to-many fields with - ``to="self"`` (gh-1218) 3.3.0 (2023-03-08) ------------------