diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 76dc42da6..ddadb1921 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,27 @@ infra.controller_configuration Release Notes .. contents:: Topics +v2.6.0 +====== + +Minor Changes +------------- + +- The role 'filetree_create' will now allow to export all the objects of one kind into a single file, so it can be loaded by both ansible `group_vars` syntax and `filetree_read` tool. +- added improvements to checkmod where it will run faster with the async tasks. In addition added an additional fail check at end of dispatch that will likely fail if dependencies are missing, as expected. +- added mandatory check to workflow launch name option +- filetree_create - Add the constructed inventory exportation fields from the API endpoint `api/v2/constructed_inventories` + +Bugfixes +-------- + +- Fixed an issue where the diff doesn't work correctly when explicitly setting state present +- Fixed an issue where the usage access to instance_groups were removed +- Fixed member removal of teams +- The role 'credentials' have had the enforced defaults removed from team, user, and organization options. This was causing an error with these parameters were mutally exclusive. +- The role 'inventory_sources' will now skip when the source parameter is `constructed`. These sources are auto created and not meant to be edited. However they can still be synced with the inventory_source_update. +- The role 'workflow_job_templates' Default enforced value set for workflow templates limit was 0, was corrected to be an empty string. + v2.5.2 ====== diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 5af973336..e27b8d7ee 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -176,4 +176,4 @@ plugins: strategy: {} test: {} vars: {} -version: 2.5.2 +version: 2.6.0 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2d1ef090b..88cc44a58 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -568,3 +568,37 @@ releases: - fix_subelements_conditional.yml - instancegroups_org.yml release_date: '2023-10-14' + 2.6.0: + changes: + bugfixes: + - Fixed an issue where the diff doesn't work correctly when explicitly setting + state present + - Fixed an issue where the usage access to instance_groups were removed + - Fixed member removal of teams + - The role 'credentials' have had the enforced defaults removed from team, user, + and organization options. This was causing an error with these parameters + were mutally exclusive. + - The role 'inventory_sources' will now skip when the source parameter is `constructed`. + These sources are auto created and not meant to be edited. However they can + still be synced with the inventory_source_update. + - The role 'workflow_job_templates' Default enforced value set for workflow + templates limit was 0, was corrected to be an empty string. + minor_changes: + - The role 'filetree_create' will now allow to export all the objects of one + kind into a single file, so it can be loaded by both ansible `group_vars` + syntax and `filetree_read` tool. + - added improvements to checkmod where it will run faster with the async tasks. + In addition added an additional fail check at end of dispatch that will likely + fail if dependencies are missing, as expected. + - added mandatory check to workflow launch name option + - filetree_create - Add the constructed inventory exportation fields from the + API endpoint `api/v2/constructed_inventories` + fragments: + - checkmode.yml + - constructed.yml + - credential_owner.yml + - diff_plugin.yml + - filetree_create_export_constructed_inventories.yml + - filtree_create_flatten_output.yml + - workflow_limit_default.yml + release_date: '2023-12-02' diff --git a/changelogs/fragments/checkmode.yml b/changelogs/fragments/checkmode.yml deleted file mode 100644 index c4a03a114..000000000 --- a/changelogs/fragments/checkmode.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -minor_changes: - - added mandatory check to workflow launch name option - - added improvements to checkmod where it will run faster with the async tasks. In addition added an additional fail check at end of dispatch that will likely fail if dependencies are missing, as expected. -... diff --git a/changelogs/fragments/constructed.yml b/changelogs/fragments/constructed.yml deleted file mode 100644 index d444c2af7..000000000 --- a/changelogs/fragments/constructed.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - The role 'inventory_sources' will now skip when the source parameter is `constructed`. These sources are auto created and not meant to be edited. However they can still be synced with the inventory_source_update. -... diff --git a/changelogs/fragments/credential_owner.yml b/changelogs/fragments/credential_owner.yml deleted file mode 100644 index ac87c33a7..000000000 --- a/changelogs/fragments/credential_owner.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - The role 'credentials' have had the enforced defaults removed from team, user, and organization options. This was causing an error with these parameters were mutally exclusive. -... diff --git a/changelogs/fragments/diff_plugin.yml b/changelogs/fragments/diff_plugin.yml deleted file mode 100644 index 90f868fee..000000000 --- a/changelogs/fragments/diff_plugin.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -bugfixes: - - Fixed an issue where the usage access to instance_groups were removed - - Fixed an issue where the diff doesn't work correctly when explicitly setting state present - - Fixed member removal of teams -... diff --git a/changelogs/fragments/filetree_create_export_constructed_inventories.yml b/changelogs/fragments/filetree_create_export_constructed_inventories.yml deleted file mode 100644 index ca538f982..000000000 --- a/changelogs/fragments/filetree_create_export_constructed_inventories.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - filetree_create - Add the constructed inventory exportation fields from the API endpoint `api/v2/constructed_inventories` diff --git a/changelogs/fragments/filtree_create_flatten_output.yml b/changelogs/fragments/filtree_create_flatten_output.yml deleted file mode 100644 index 99529272f..000000000 --- a/changelogs/fragments/filtree_create_flatten_output.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - The role 'filetree_create' will now allow to export all the objects of one kind into a single file, so it can be loaded by both ansible `group_vars` syntax and `filetree_read` tool. -... diff --git a/changelogs/fragments/workflow_limit_default.yml b/changelogs/fragments/workflow_limit_default.yml deleted file mode 100644 index 10ec989fe..000000000 --- a/changelogs/fragments/workflow_limit_default.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - The role 'workflow_job_templates' Default enforced value set for workflow templates limit was 0, was corrected to be an empty string. -...