Skip to content

Commit

Permalink
🔖(minor) bump release to 3.9.0
Browse files Browse the repository at this point in the history
Changed:

- Upgrade `fastapi` to `0.100.0`
- Upgrade `sentry_sdk` to `1.28.1`
- Upgrade `uvicorn` to `0.23.0`
- Enforce valid IRI for `activity` parameter in `GET /statements`
- Change how duplicate xAPI statements are handled for `clickhouse` backend

General improvement for the Helm Chart:
- add dependencies for MongoDB and Clickhouse
- make persistence optional
- allow use existing PVC
- remove prefix label from ingress object name
- add missing namespace label
- make object name consistent
  • Loading branch information
quitterie-lcs committed Jul 21, 2023
1 parent b121447 commit 3c6fdb7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
16 changes: 9 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ and this project adheres to

## [Unreleased]

## [3.9.0] - 2023-07-21

### Changed

- Change how duplicate xAPI statements are handled by backends
- Upgrade `fastapi` to `0.100.0`
- Upgrade `sentry_sdk` to `1.28.1`
- Upgrade `uvicorn` to `0.23.0`
- Enforce valid IRI for `activity` parameter in `GET /statements`
- Change how duplicate xAPI statements are handled for `clickhouse` backend
General improvement for the Helm Chart:
- add dependencies for MongoDB and Clickhouse
- make persistence optional
Expand All @@ -19,11 +25,6 @@ General improvement for the Helm Chart:
- add missing namespace label
- make object name consistent

- Upgrade `fastapi` to `0.100.0`
- Upgrade `sentry_sdk` to `1.28.1`
- Upgrade `uvicorn` to `0.23.0`
- Enforce valid IRI for `activity` parameter in `GET /statements`

## [3.8.0] - 2023-06-21

### Added
Expand Down Expand Up @@ -350,7 +351,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/v3.8.0...master
[unreleased]: https://github.com/openfun/ralph/compare/v3.9.0...master
[3.9.0]: https://github.com/openfun/ralph/compare/v3.8.0...v3.9.0
[3.8.0]: https://github.com/openfun/ralph/compare/v3.7.0...v3.8.0
[3.7.0]: https://github.com/openfun/ralph/compare/v3.6.0...v3.7.0
[3.6.0]: https://github.com/openfun/ralph/compare/v3.5.1...v3.6.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;;
[metadata]
name = ralph-malph
version = 3.8.0
version = 3.9.0
description = The ultimate toolbox for your learning analytics
long_description = file:README.md
long_description_content_type = text/markdown
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 @@ -21,7 +21,7 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "3.8.0"
appVersion: "3.9.0"

dependencies:
- name: mongodb
Expand Down
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__ = "3.8.0"
__version__ = "3.9.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: 3.8.0
version: 3.9.0

0 comments on commit 3c6fdb7

Please sign in to comment.