diff --git a/CHANGELOG.md b/CHANGELOG.md index ba996fccf..ba12b7b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,18 @@ -# dev +# 2.5.0 2024-01-09 ## Fix -- Hide disabled operations from Instance view +- Disabled operations were not removed from Instance view +- Long dropdown choices were hidden behind the footer + +## Enhancement + +- Docs are now displayed in a dedicated tab in the instance details ## Feature -- Add SurveyValidator on Operation. It allows you to implement your own validation logic with Python on the entire form. See documentation [here](https://hewlettpackard.github.io/squest/latest/manual/advanced/survey_validators/) +- doc templating +- Survey validator (Replace field validator which is now deprecated and will be removed in future release) # 2.4.1 2023-12-18 diff --git a/Squest/version.py b/Squest/version.py index a9f3f9cfb..c3c61c86f 100644 --- a/Squest/version.py +++ b/Squest/version.py @@ -1,2 +1,2 @@ -__version__ = "2.4.2b" +__version__ = "2.5.0" VERSION = __version__ diff --git a/pyproject.toml b/pyproject.toml index 2f8bc8038..0ea49faee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "squest" -version = "2.4.2b" +version = "2.5.0" description = "Service catalog on top of Red Hat Ansible Automation Platform(RHAAP)/AWX (formerly known as Ansible Tower)" authors = ["Nicolas Marcq ", "Elias Boulharts "] license = "MIT"