diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 78a59b7f0e..143dca7c18 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,32 @@ Community General Release Notes This changelog describes changes after version 3.0.0. +v4.7.0 +====== + +Release Summary +--------------- + +Regular bugfix and feature release. + +Minor Changes +------------- + +- ipa_service - add ``skip_host_check`` parameter. (https://github.com/ansible-collections/community.general/pull/4417). +- keycloak_client - add ``always_display_in_console`` parameter (https://github.com/ansible-collections/community.general/issues/4390). +- keycloak_client - add ``default_client_scopes`` and ``optional_client_scopes`` parameters. (https://github.com/ansible-collections/community.general/pull/4385). +- proxmox inventory plugin - add support for templating the ``url``, ``user``, and ``password`` options (https://github.com/ansible-collections/community.general/pull/4418). +- sudoers - add support for ``runas`` parameter (https://github.com/ansible-collections/community.general/issues/4379). + +Bugfixes +-------- + +- dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` version is installed (https://github.com/ansible-collections/community.general/pull/4422). +- keycloak_* - the documented ``validate_certs`` parameter was not taken into account when calling the ``open_url`` function in some cases, thus enforcing certificate validation even when ``validate_certs`` was set to ``false``. (https://github.com/ansible-collections/community.general/pull/4382) +- nmcli - fix returning "changed" when routes parameters set, also suggest new routes4 and routes6 format (https://github.com/ansible-collections/community.general/issues/4131). +- proxmox inventory plugin - fixed the ``tags_parsed`` field when Proxmox returns a single space for the ``tags`` entry (https://github.com/ansible-collections/community.general/pull/4378). +- zypper - fixed bug that caused zypper to always report [ok] and do nothing on ``state=present`` when all packages in ``name`` had a version specification (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). + v4.6.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2a42f45c83..eba38823ff 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1603,3 +1603,41 @@ releases: - 4351-inventory-lxd-handling_metadata_wo_os_and_release.yml - 4368-reverts-4281.yml release_date: '2022-03-16' + 4.7.0: + changes: + bugfixes: + - dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` + version is installed (https://github.com/ansible-collections/community.general/pull/4422). + - keycloak_* - the documented ``validate_certs`` parameter was not taken into + account when calling the ``open_url`` function in some cases, thus enforcing + certificate validation even when ``validate_certs`` was set to ``false``. + (https://github.com/ansible-collections/community.general/pull/4382) + - nmcli - fix returning "changed" when routes parameters set, also suggest new + routes4 and routes6 format (https://github.com/ansible-collections/community.general/issues/4131). + - proxmox inventory plugin - fixed the ``tags_parsed`` field when Proxmox returns + a single space for the ``tags`` entry (https://github.com/ansible-collections/community.general/pull/4378). + - zypper - fixed bug that caused zypper to always report [ok] and do nothing + on ``state=present`` when all packages in ``name`` had a version specification + (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). + minor_changes: + - ipa_service - add ``skip_host_check`` parameter. (https://github.com/ansible-collections/community.general/pull/4417). + - keycloak_client - add ``always_display_in_console`` parameter (https://github.com/ansible-collections/community.general/issues/4390). + - keycloak_client - add ``default_client_scopes`` and ``optional_client_scopes`` + parameters. (https://github.com/ansible-collections/community.general/pull/4385). + - proxmox inventory plugin - add support for templating the ``url``, ``user``, + and ``password`` options (https://github.com/ansible-collections/community.general/pull/4418). + - sudoers - add support for ``runas`` parameter (https://github.com/ansible-collections/community.general/issues/4379). + release_summary: Regular bugfix and feature release. + fragments: + - 4.7.0.yml + - 4131-nmcli_fix_reports_changed_for_routes4_parameter.yml + - 4378-proxmox-inventory-tags.yml + - 4380-sudoers-runas-parameter.yml + - 4382-keycloak-add-missing-validate_certs-parameters.yml + - 4385-keycloak-client-default-optional-scopes.yml + - 4386-proxmox-support-templating-in-inventory-file.yml + - 4417-ipa_service-add-skip_host_check.yml + - 4421-zypper_package_version_handling_fix.yml + - 4422-warn-user-if-incorrect-SDK-version-is-installed.yaml + - 4429-keycloak-client-add-always-display-in-console.yml + release_date: '2022-04-05' diff --git a/changelogs/fragments/4.7.0.yml b/changelogs/fragments/4.7.0.yml deleted file mode 100644 index 4b1469c9fe..0000000000 --- a/changelogs/fragments/4.7.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix and feature release. diff --git a/changelogs/fragments/4131-nmcli_fix_reports_changed_for_routes4_parameter.yml b/changelogs/fragments/4131-nmcli_fix_reports_changed_for_routes4_parameter.yml deleted file mode 100644 index 16a2f3056b..0000000000 --- a/changelogs/fragments/4131-nmcli_fix_reports_changed_for_routes4_parameter.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - nmcli - fix returning "changed" when routes parameters set, also suggest new routes4 and routes6 format - (https://github.com/ansible-collections/community.general/issues/4131). diff --git a/changelogs/fragments/4378-proxmox-inventory-tags.yml b/changelogs/fragments/4378-proxmox-inventory-tags.yml deleted file mode 100644 index 04110977d5..0000000000 --- a/changelogs/fragments/4378-proxmox-inventory-tags.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - proxmox inventory plugin - fixed the ``tags_parsed`` field when Proxmox - returns a single space for the ``tags`` entry (https://github.com/ansible-collections/community.general/pull/4378). diff --git a/changelogs/fragments/4380-sudoers-runas-parameter.yml b/changelogs/fragments/4380-sudoers-runas-parameter.yml deleted file mode 100644 index 46ed481364..0000000000 --- a/changelogs/fragments/4380-sudoers-runas-parameter.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - sudoers - add support for ``runas`` parameter - (https://github.com/ansible-collections/community.general/issues/4379). diff --git a/changelogs/fragments/4382-keycloak-add-missing-validate_certs-parameters.yml b/changelogs/fragments/4382-keycloak-add-missing-validate_certs-parameters.yml deleted file mode 100644 index 01a6b14962..0000000000 --- a/changelogs/fragments/4382-keycloak-add-missing-validate_certs-parameters.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -bugfixes: - - keycloak_* - the documented ``validate_certs`` parameter was not taken into - account when calling the ``open_url`` function in some cases, thus enforcing - certificate validation even when ``validate_certs`` was set to ``false``. - (https://github.com/ansible-collections/community.general/pull/4382) diff --git a/changelogs/fragments/4385-keycloak-client-default-optional-scopes.yml b/changelogs/fragments/4385-keycloak-client-default-optional-scopes.yml deleted file mode 100644 index 7255dd6343..0000000000 --- a/changelogs/fragments/4385-keycloak-client-default-optional-scopes.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - keycloak_client - add ``default_client_scopes`` and ``optional_client_scopes`` parameters. - (https://github.com/ansible-collections/community.general/pull/4385). diff --git a/changelogs/fragments/4386-proxmox-support-templating-in-inventory-file.yml b/changelogs/fragments/4386-proxmox-support-templating-in-inventory-file.yml deleted file mode 100644 index e4c7def4a7..0000000000 --- a/changelogs/fragments/4386-proxmox-support-templating-in-inventory-file.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - proxmox inventory plugin - add support for templating the ``url``, ``user``, and ``password`` options - (https://github.com/ansible-collections/community.general/pull/4418). diff --git a/changelogs/fragments/4417-ipa_service-add-skip_host_check.yml b/changelogs/fragments/4417-ipa_service-add-skip_host_check.yml deleted file mode 100644 index f4e5d6e49c..0000000000 --- a/changelogs/fragments/4417-ipa_service-add-skip_host_check.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - ipa_service - add ``skip_host_check`` parameter. - (https://github.com/ansible-collections/community.general/pull/4417). diff --git a/changelogs/fragments/4421-zypper_package_version_handling_fix.yml b/changelogs/fragments/4421-zypper_package_version_handling_fix.yml deleted file mode 100644 index eacdf84beb..0000000000 --- a/changelogs/fragments/4421-zypper_package_version_handling_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zypper - fixed bug that caused zypper to always report [ok] and do nothing on ``state=present`` when all packages in ``name`` had a version specification (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). diff --git a/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml b/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml deleted file mode 100644 index af03dae757..0000000000 --- a/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` version is installed (https://github.com/ansible-collections/community.general/pull/4422). \ No newline at end of file diff --git a/changelogs/fragments/4429-keycloak-client-add-always-display-in-console.yml b/changelogs/fragments/4429-keycloak-client-add-always-display-in-console.yml deleted file mode 100644 index df1970bd1f..0000000000 --- a/changelogs/fragments/4429-keycloak-client-add-always-display-in-console.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - keycloak_client - add ``always_display_in_console`` parameter (https://github.com/ansible-collections/community.general/issues/4390).