diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a6a732e2..0e6390f3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v2.42.28 (2024-12-04) + +### Bug Fixes + +- No running event loop + ([`221d96a`](https://github.com/RedHatInsights/vulnerability-engine/commit/221d96a99a30b6fe49a07a9c409b7bb1b0a24348)) + + ## v2.42.27 (2024-12-04) ### Bug Fixes diff --git a/common/constants.py b/common/constants.py index b3841be26..f42489c4a 100644 --- a/common/constants.py +++ b/common/constants.py @@ -9,7 +9,7 @@ CFG = Config() -APP_VERSION = "2.42.27" +APP_VERSION = "2.42.28" TIMESTAMP_LAST_REPO_BASED_EVAL = "last_eval_repo_based" VMAAS_CVES_ENDPOINT = f"{CFG.vmaas_host}/api/vmaas/v3/cves" VMAAS_REPOS_ENDPOINT = f"{CFG.vmaas_host}/api/vmaas/v3/repos" diff --git a/pyproject.toml b/pyproject.toml index 769e7d1cb..5dc1d61d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.42.27" +version = "2.42.28" description = "" authors = ["RH Insights "] readme = "README.md"