From f75adcffe7d73f8e1a191422f4482a4711580ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Thu, 4 May 2023 10:32:24 +0200 Subject: [PATCH 1/2] Update the changelog for 0.12.0 --- CHANGELOG.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dff732eb..54e84ca4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ Changelog ========= +0.12.0 (to be released) +----------------------- + +* The :ref:`testing framework ` now allows defining a + :ref:`custom item adapter `. +* Fixed built-in Python types, e.g. ``int``, not working as :ref:`field + processors `. + 0.11.0 (2023-04-24) ------------------- From 47a11325ca7d9a4b2248480982bc5bc7fbb26a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Thu, 4 May 2023 14:17:45 +0200 Subject: [PATCH 2/2] Cover a backward-incompatible change affecting test fixtures --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54e84ca4..fce0d36e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,8 @@ Changelog * The :ref:`testing framework ` now allows defining a :ref:`custom item adapter `. +* We have made a backward-incompatible on test fixture serialization: the + ``type_name`` field of exceptions has been renamed to ``import_path``. * Fixed built-in Python types, e.g. ``int``, not working as :ref:`field processors `.