diff --git a/CHANGELOG.md b/CHANGELOG.md index 85c535280..90d5de771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ +## v2.37.5 (2024-04-23) + +### Chore + +* chore: force using bash due to syntax error ([`cbc6637`](https://github.com/RedHatInsights/vulnerability-engine/commit/cbc6637e9ecb791d0766eaabffea00f04813ebe8)) + +* chore: upgrade to latest gunicorn and idna + +RHINENG-9574 ([`8d315d0`](https://github.com/RedHatInsights/vulnerability-engine/commit/8d315d0ac5a9ffb07dac2942c30c63975e103d32)) + +### Fix + +* fix(taskomatic): use org_id for metrics because account_number can be empty ([`768fa7d`](https://github.com/RedHatInsights/vulnerability-engine/commit/768fa7d99f03e7f972f9fa343438a4045211867e)) + + ## v2.37.4 (2024-04-18) ### Fix diff --git a/common/constants.py b/common/constants.py index ed90f32b4..8d9b4cc6b 100644 --- a/common/constants.py +++ b/common/constants.py @@ -9,7 +9,7 @@ CFG = Config() -APP_VERSION = "2.37.4" +APP_VERSION = "2.37.5" 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 9a37959e3..9bc33cf91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ profile = "black" [tool.poetry] name = "vulnerability-engine" -version = "2.37.4" +version = "2.37.5" description = "" authors = ["RH Insights "] readme = "README.md"