Skip to content

Commit

Permalink
docs: Update changelog, bump version, update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
bmtcril committed May 24, 2024
1 parent 968fcec commit 73aec48
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ Change Log
Unreleased
**********

0.9.5 - 2024-05-24
******************

Fixes
=====

* UserProfile sink now runs after the transaction is committed, preventing UserProfileNotFound errors and creation of rows in ClickHouse that don't exist in MySQL in the case of a rollback.


0.9.4 - 2024-05-16
******************

Expand Down
2 changes: 1 addition & 1 deletion platform_plugin_aspects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
import os
from pathlib import Path

__version__ = "0.9.4"
__version__ = "0.9.5"

ROOT_DIRECTORY = Path(os.path.dirname(os.path.abspath(__file__)))
2 changes: 1 addition & 1 deletion platform_plugin_aspects/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def receive_course_publish( # pylint: disable=unused-argument # pragma: no cov

def on_user_profile_updated(instance):
"""
Receives post save signal and queues the dump job.
Queues the UserProfile dump job when the parent transaction is committed.
"""
# import here, because signal is registered at startup, but items in tasks are not yet able to be loaded
from platform_plugin_aspects.tasks import ( # pylint: disable=import-outside-toplevel
Expand Down

0 comments on commit 73aec48

Please sign in to comment.