From 9fbf1e4077feaba3837c6192710ebafa6ef81dc2 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Thu, 5 Sep 2024 11:44:38 +0930 Subject: [PATCH] chore: updates changelog --- CHANGELOG.rst | 15 +++++++++++++++ openedx_events/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6d939d1a..4d35ddd0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,21 @@ __________ +[9.14.0] - 2024-09-12 +--------------------- + +Added +~~~~~ + +* Adds event ``CONTENT_OBJECT_ASSOCIATIONS_CHANGED`` +* Adds ``ContentObjectChangedData``, which inherits from ContentObjectData and adds an optional list of string ``changes``. + +Deprecated +~~~~~~~~~~ + +* Deprecated event ``CONTENT_OBJECT_TAGS_CHANGED`` in favor of ``CONTENT_OBJECT_ASSOCIATIONS_CHANGED`` + Plan to remove after Sumac. + [9.13.0] - 2024-09-05 --------------------- diff --git a/openedx_events/__init__.py b/openedx_events/__init__.py index 445806a0..40b95950 100644 --- a/openedx_events/__init__.py +++ b/openedx_events/__init__.py @@ -5,4 +5,4 @@ more information about the project. """ -__version__ = "9.13.0" +__version__ = "9.14.0"