Skip to content

Commit

Permalink
🔖(minor) bump release to 3.7.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
wilbrdt committed Jun 13, 2023
1 parent 8c1292d commit bc4f1e0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
6 changes: 5 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]

## [3.7.0] - 2023-06-13

### Added

- Implement synchronous `lrs` backend
Expand All @@ -30,6 +32,7 @@ GET query `agent` filtering
### Removed

- `verb`.`display` field no longer mandatory in xAPI models and for converter

## [3.6.0] - 2023-05-17

### Added
Expand Down Expand Up @@ -316,7 +319,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.6.0...master
[unreleased]: https://github.com/openfun/ralph/compare/v3.7.0...master
[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
[3.5.1]: https://github.com/openfun/ralph/compare/v3.5.0...v3.5.1
[3.5.0]: https://github.com/openfun/ralph/compare/v3.4.0...v3.5.0
Expand Down
2 changes: 1 addition & 1 deletion arnold.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
metadata:
name: ralph
version: 3.6.0
version: 3.7.0
source:
path: src/tray
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.6.0
version = 3.7.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,4 +21,4 @@ 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.6.0"
appVersion: "3.7.0"
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.6.0"
__version__ = "3.7.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.6.0
version: 3.7.0

0 comments on commit bc4f1e0

Please sign in to comment.