diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a2df003d..e7a78f418 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v2.18.4 (2023-09-25) + +### Fix + +* fix(manager): do not show advisory_available=true when filter is false and CVE has 0 affecting systems + +VULN-2789 ([`d7416ee`](https://github.com/RedHatInsights/vulnerability-engine/commit/d7416ee6c17e19dcf9cad4105187562a67544e60)) + + ## v2.18.3 (2023-09-25) ### Chore diff --git a/common/constants.py b/common/constants.py index 5eede006f..f851fd1af 100644 --- a/common/constants.py +++ b/common/constants.py @@ -8,7 +8,7 @@ CFG = Config() -APP_VERSION = "2.18.3" +APP_VERSION = "2.18.4" 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 e29b10bdf..65ef39205 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.18.3" +version = "2.18.4" description = "" authors = [""] readme = "README.md"