Skip to content

Commit 3c6fdb7

Browse files
committed
🔖(minor) bump release to 3.9.0
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
1 parent b121447 commit 3c6fdb7

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.9.0] - 2023-07-21
12+
1113
### Changed
1214

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

22-
- Upgrade `fastapi` to `0.100.0`
23-
- Upgrade `sentry_sdk` to `1.28.1`
24-
- Upgrade `uvicorn` to `0.23.0`
25-
- Enforce valid IRI for `activity` parameter in `GET /statements`
26-
2728
## [3.8.0] - 2023-06-21
2829

2930
### Added
@@ -350,7 +351,8 @@ as per the xAPI specification
350351
- Add optional sentry integration
351352
- Distribute Arnold's tray to deploy Ralph in a k8s cluster as cronjobs
352353

353-
[unreleased]: https://github.com/openfun/ralph/compare/v3.8.0...master
354+
[unreleased]: https://github.com/openfun/ralph/compare/v3.9.0...master
355+
[3.9.0]: https://github.com/openfun/ralph/compare/v3.8.0...v3.9.0
354356
[3.8.0]: https://github.com/openfun/ralph/compare/v3.7.0...v3.8.0
355357
[3.7.0]: https://github.com/openfun/ralph/compare/v3.6.0...v3.7.0
356358
[3.6.0]: https://github.com/openfun/ralph/compare/v3.5.1...v3.6.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
;;
44
[metadata]
55
name = ralph-malph
6-
version = 3.8.0
6+
version = 3.9.0
77
description = The ultimate toolbox for your learning analytics
88
long_description = file:README.md
99
long_description_content_type = text/markdown

src/helm/ralph/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 0.1.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "3.8.0"
24+
appVersion: "3.9.0"
2525

2626
dependencies:
2727
- name: mongodb

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__ = "3.8.0"
3+
__version__ = "3.9.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: 3.8.0
3+
version: 3.9.0

0 commit comments

Comments
 (0)