diff --git a/CHANGELOG.md b/CHANGELOG.md index a4b49a6fe..ac967b947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to ## [Unreleased] + +## [3.6.0] - 2023-05-17 + +### Added + +- Allow to ignore health check routes for Sentry transactions + ### Changed - Upgrade `sentry_sdk` to `1.22.2` @@ -16,7 +23,6 @@ and this project adheres to as per the xAPI specification - Use batch/v1 api in cronjob_pipeline manifest - Use autoscaling/v2 in HorizontalPodAutoscaler manifest -- Add the ability to ignore health check routes for Sentry transactions ### Fixed @@ -289,7 +295,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.5.1...master +[unreleased]: https://github.com/openfun/ralph/compare/v3.6.0...master +[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 [3.4.0]: https://github.com/openfun/ralph/compare/v3.3.0...v3.4.0 diff --git a/arnold.yml b/arnold.yml index 27c339331..00b0d176f 100644 --- a/arnold.yml +++ b/arnold.yml @@ -1,5 +1,5 @@ metadata: name: ralph - version: 3.5.1 + version: 3.6.0 source: path: src/tray diff --git a/setup.cfg b/setup.cfg index 5cd5fb426..6798d33ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = ralph-malph -version = 3.5.1 +version = 3.6.0 description = The ultimate toolbox for your learning analytics long_description = file:README.md long_description_content_type = text/markdown diff --git a/src/helm/ralph/Chart.yaml b/src/helm/ralph/Chart.yaml index a8e66153e..7c4a9c347 100644 --- a/src/helm/ralph/Chart.yaml +++ b/src/helm/ralph/Chart.yaml @@ -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.5.1" +appVersion: "3.6.0" diff --git a/src/ralph/__init__.py b/src/ralph/__init__.py index 6bc3c4d9d..c5b79b8d4 100644 --- a/src/ralph/__init__.py +++ b/src/ralph/__init__.py @@ -1,3 +1,3 @@ """Ralph module.""" -__version__ = "3.5.1" +__version__ = "3.6.0" diff --git a/src/tray/tray.yml b/src/tray/tray.yml index 3fa31b75d..c80a1b0f9 100644 --- a/src/tray/tray.yml +++ b/src/tray/tray.yml @@ -1,3 +1,3 @@ metadata: name: ralph - version: 3.5.1 + version: 3.6.0