Skip to content

Commit bc4f1e0

Browse files
committed
🔖(minor) bump release to 3.7.0
Added - Implement synchronous `lrs` backend - Implement xAPI virtual classroom pydantic models - Allow to insert custom endpoint url for S3 service - Cache the HTTP Basic auth credentials to improve API response time - Support OpenID Connect authentication method Changed - Clean xAPI pydantic models naming convention - Upgrade `fastapi` to `0.97.0` - Upgrade `sentry_sdk` to `1.25.1` - Set Clickhouse `client_options` to a dedicated Pydantic model - Upgrade `httpx` to `0.24.1` - Force a valid (JSON-formatted) IFI to be passed for the `/statements` GET query `agent` filtering - Upgrade `cachetools` to `5.3.1` Removed - `verb`.`display` field no longer mandatory in xAPI models and for converter
1 parent 8c1292d commit bc4f1e0

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 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+
## [3.7.0] - 2023-06-13
12+
1113
### Added
1214

1315
- Implement synchronous `lrs` backend
@@ -30,6 +32,7 @@ GET query `agent` filtering
3032
### Removed
3133

3234
- `verb`.`display` field no longer mandatory in xAPI models and for converter
35+
3336
## [3.6.0] - 2023-05-17
3437

3538
### Added
@@ -316,7 +319,8 @@ as per the xAPI specification
316319
- Add optional sentry integration
317320
- Distribute Arnold's tray to deploy Ralph in a k8s cluster as cronjobs
318321

319-
[unreleased]: https://github.com/openfun/ralph/compare/v3.6.0...master
322+
[unreleased]: https://github.com/openfun/ralph/compare/v3.7.0...master
323+
[3.7.0]: https://github.com/openfun/ralph/compare/v3.6.0...v3.7.0
320324
[3.6.0]: https://github.com/openfun/ralph/compare/v3.5.1...v3.6.0
321325
[3.5.1]: https://github.com/openfun/ralph/compare/v3.5.0...v3.5.1
322326
[3.5.0]: https://github.com/openfun/ralph/compare/v3.4.0...v3.5.0

arnold.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
metadata:
22
name: ralph
3-
version: 3.6.0
3+
version: 3.7.0
44
source:
55
path: src/tray

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.6.0
6+
version = 3.7.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,4 +21,4 @@ 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.6.0"
24+
appVersion: "3.7.0"

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.6.0"
3+
__version__ = "3.7.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.6.0
3+
version: 3.7.0

0 commit comments

Comments
 (0)