Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,27 @@ Change Log
Unreleased
__________

* Added support for complex types in dictionaries and lists.

[10.6.0] - 2026-02-03
---------------------

Added
~~~~~

* Added support for complex nested types in dictionaries and lists, including ``List[Dict[str, int]]``, ``Dict[str, List[int]]``, ``List[UserData]``, and ``Dict[str, CourseData]``.

Removed
~~~~~~~

* Removed 7 signals from ``KNOWN_UNSERIALIZABLE_SIGNALS`` list that are now compatible with the event bus due to improved complex type support:

* ``org.openedx.learning.discussions.configuration.changed.v1``
* ``org.openedx.learning.user.notification.requested.v1``
* ``org.openedx.learning.forum.thread.created.v1``
* ``org.openedx.learning.forum.thread.response.created.v1``
* ``org.openedx.learning.forum.thread.response.comment.created.v1``
* ``org.openedx.learning.course.notification.requested.v1``
* ``org.openedx.learning.ora.submission.created.v1``

[10.5.0] - 2025-08-19
---------------------
Expand Down
2 changes: 1 addition & 1 deletion openedx_events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
more information about the project.
"""

__version__ = "10.5.0"
__version__ = "10.6.0"
7 changes: 0 additions & 7 deletions openedx_events/tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,8 @@
# If a signal is explicitly not for use with the event bus, add it to this list
# and document why in the event's annotations
KNOWN_UNSERIALIZABLE_SIGNALS = [
"org.openedx.learning.discussions.configuration.changed.v1",
"org.openedx.content_authoring.course.certificate_config.changed.v1",
"org.openedx.content_authoring.course.certificate_config.deleted.v1",
"org.openedx.learning.user.notification.requested.v1",
"org.openedx.learning.forum.thread.created.v1",
"org.openedx.learning.forum.thread.response.created.v1",
"org.openedx.learning.forum.thread.response.comment.created.v1",
"org.openedx.learning.course.notification.requested.v1",
"org.openedx.learning.ora.submission.created.v1",
"org.openedx.learning.external_grader.score.submitted.v1",
]

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.0.0
current_version = 10.6.0
commit = True
tag = True

Expand Down