diff --git a/CHANGELOG.md b/CHANGELOG.md index ee0c8f4fa..f7a976799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # CHANGELOG +## v2.41.9 (2024-10-17) + +### Chores + +* chore: upgrade db to pg 16 + +RHINENG-13495 ([`25d00c4`](https://github.com/RedHatInsights/vulnerability-engine/commit/25d00c41ce97f739d525d852a54a5b12f8f98336)) + + ## v2.41.8 (2024-10-17) ### Chores diff --git a/common/constants.py b/common/constants.py index e380a2934..836001beb 100644 --- a/common/constants.py +++ b/common/constants.py @@ -9,7 +9,7 @@ CFG = Config() -APP_VERSION = "2.41.8" +APP_VERSION = "2.41.9" 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 df746794e..2cbf3bd06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.41.8" +version = "2.41.9" description = "" authors = ["RH Insights "] readme = "README.md"