Skip to content

Commit

Permalink
🔖(minor) bump release to 4.2.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
wilbrdt committed Apr 8, 2024
1 parent 93fe518 commit 02b0d47
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 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]

## [4.2.0] - 2024-04-08

### Added

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

[unreleased]: https://github.com/openfun/ralph/compare/v4.1.0...main
[unreleased]: https://github.com/openfun/ralph/compare/v4.2.0...main
[4.2.0]: https://github.com/openfun/ralph/compare/v4.1.0...v4.2.0
[4.1.0]: https://github.com/openfun/ralph/compare/v4.0.0...v4.1.0
[4.0.0]: https://github.com/openfun/ralph/compare/v3.9.0...v4.0.0
[3.9.0]: https://github.com/openfun/ralph/compare/v3.8.0...v3.9.0
Expand Down
4 changes: 4 additions & 0 deletions src/helm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to

## [Unreleased]

### Changed

- Upgrade appVersion to `4.2.0`

## [0.4.0] - 2024-02-12

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/helm/ralph/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ name: ralph
description: Ralph, the ultimate Learning Record Store (and more!) for your learning analytics
type: application
version: 0.4.0
appVersion: "4.1.0"
appVersion: "4.2.0"
icon: https://raw.githubusercontent.com/openfun/logos/main/ralph/ralph-color-dark.png
2 changes: 1 addition & 1 deletion src/ralph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ralph module."""

__version__ = "4.1.0"
__version__ = "4.2.0"
2 changes: 1 addition & 1 deletion src/tray/tray.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
metadata:
name: ralph
version: 4.1.0
version: 4.2.0

0 comments on commit 02b0d47

Please sign in to comment.