Skip to content

Commit

Permalink
🔖(minor) prepare 0.4.0 release
Browse files Browse the repository at this point in the history
Added

- Add edx mongodb connection to anonymize personal data from edx forums
- Add `users` endpoints for services to retrieve the list of users to delete
- Flag users for deletion in Mork database when deletion process begins
- Add status verification checks before and after user deletion in edX
- Add support for emailing a single user via api
- Add an optional `limit` parameter for bulk deletion and warning tasks

Changed

- Add a dry-run parameter to the task creation API (defaults to True)
- Introduce API versioning with `v1` namespace

Fixed

- Fix HTTP 500 errors on heartbeat endpoint when QueuePool limits are reached
  • Loading branch information
wilbrdt committed Nov 20, 2024
1 parent a1b8c3f commit 10cc185
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [0.4.0] - 2024-11-20

## Added

- Add edx mongodb connection to anonymize personal data from edx forums
Expand Down Expand Up @@ -57,7 +59,8 @@ and this project adheres to
- Add celery task to warn inactive users by email
- Add celery task to delete inactive users from edx database

[unreleased]: https://github.com/openfun/mork/compare/v0.3.0...main
[unreleased]: https://github.com/openfun/mork/compare/v0.4.0...main
[0.4.0]: https://github.com/openfun/mork/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/openfun/mork/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/openfun/mork/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/openfun/mork/compare/1e60ac8...v0.1.0
2 changes: 1 addition & 1 deletion src/app/mork/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Mork module."""

__version__ = "0.3.0"
__version__ = "0.4.0"

0 comments on commit 10cc185

Please sign in to comment.