diff --git a/CHANGELOG.md b/CHANGELOG.md index 46b7e388a..489b77bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v2.8.1 (2023-08-01) + +### Fix + +* fix(manager): make cves_without_errata nullable to indicate global disable + +null - don't display any UI elements +false - display UI elements to enable FF, hide advisory_available filter +true - display UI elements to disable FF, show advisory_available filter ([`d26ead5`](https://github.com/RedHatInsights/vulnerability-engine/commit/d26ead578f3f5ad56c0ef39eeabfff68b2ab7958)) + + ## v2.8.0 (2023-07-31) ### Feature diff --git a/common/constants.py b/common/constants.py index c47d12bfd..3527005b3 100644 --- a/common/constants.py +++ b/common/constants.py @@ -8,7 +8,7 @@ CFG = Config() -APP_VERSION = "2.8.0" +APP_VERSION = "2.8.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 47d503ad7..1ac9623ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.8.0" +version = "2.8.1" description = "" authors = [""] readme = "README.md"