Skip to content

Commit 02b0d47

Browse files
committed
🔖(minor) bump release to 4.2.0
Added - Models: Add Edx teams-related events support - Models: Add Edx notes events support - Models: Add Edx certificate events support - Models: Add Edx bookmark (renamed Course Resource) events support - Models: Add Edx poll and survey events support - Models: Add Edx Course Content Completion events support - Models: Add Edx drag and drop events support - Models: Add Edx cohort events support - Models: Add Edx content library interaction events support - Backends: Add `ralph.backends.data` and `ralph.backends.lrs` entry points to discover backends from plugins. Changed - Backends: the first argument of the `get_backends` method now requires a list of `EntryPoints`, each pointing to a backend class, instead of a tuple of packages containing backends. - API: The `RUNSERVER_BACKEND` configuration value is no longer validated to point to an existing backend. Fixed - LRS: Fix querying on `activity` when LRS contains statements with an object lacking a `objectType` attribute
1 parent 93fe518 commit 02b0d47

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [4.2.0] - 2024-04-08
12+
1113
### Added
1214

1315
- Models: Add Edx teams-related events support
@@ -468,7 +470,8 @@ as per the xAPI specification
468470
- Add optional sentry integration
469471
- Distribute Arnold's tray to deploy Ralph in a k8s cluster as cronjobs
470472

471-
[unreleased]: https://github.com/openfun/ralph/compare/v4.1.0...main
473+
[unreleased]: https://github.com/openfun/ralph/compare/v4.2.0...main
474+
[4.2.0]: https://github.com/openfun/ralph/compare/v4.1.0...v4.2.0
472475
[4.1.0]: https://github.com/openfun/ralph/compare/v4.0.0...v4.1.0
473476
[4.0.0]: https://github.com/openfun/ralph/compare/v3.9.0...v4.0.0
474477
[3.9.0]: https://github.com/openfun/ralph/compare/v3.8.0...v3.9.0

src/helm/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to
99

1010
## [Unreleased]
1111

12+
### Changed
13+
14+
- Upgrade appVersion to `4.2.0`
15+
1216
## [0.4.0] - 2024-02-12
1317

1418
### Changed

src/helm/ralph/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ name: ralph
44
description: Ralph, the ultimate Learning Record Store (and more!) for your learning analytics
55
type: application
66
version: 0.4.0
7-
appVersion: "4.1.0"
7+
appVersion: "4.2.0"
88
icon: https://raw.githubusercontent.com/openfun/logos/main/ralph/ralph-color-dark.png

src/ralph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Ralph module."""
22

3-
__version__ = "4.1.0"
3+
__version__ = "4.2.0"

src/tray/tray.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
metadata:
22
name: ralph
3-
version: 4.1.0
3+
version: 4.2.0

0 commit comments

Comments
 (0)