diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ce7affb..5880c0f2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ +## v2.32.1 (2023-11-29) + +### Fix + +* fix(manager): fix exec report to use new cache + +RHINENG-5256 ([`07c0ab3`](https://github.com/RedHatInsights/vulnerability-engine/commit/07c0ab3af8d0bc2f5e6697bb005c5f2e81b46c16)) + +* fix(manager): fix dashboard to use new cache + +RHINENG-5256 ([`b8f8638`](https://github.com/RedHatInsights/vulnerability-engine/commit/b8f8638780c4132c835609decb00d24757507b8d)) + +* fix(manager): fix dashbar to use new cache + +RHINENG-5256 ([`a49db16`](https://github.com/RedHatInsights/vulnerability-engine/commit/a49db16bd072ad6ef31131c763bdda91360e1432)) + + ## v2.32.0 (2023-11-29) ### Feature diff --git a/common/constants.py b/common/constants.py index 622b6c526..8291073db 100644 --- a/common/constants.py +++ b/common/constants.py @@ -8,7 +8,7 @@ CFG = Config() -APP_VERSION = "2.32.0" +APP_VERSION = "2.32.1" 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 ec57e3a13..53d0e0ab5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.32.0" +version = "2.32.1" description = "" authors = [""] readme = "README.md"