diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a11b95b481..a6b3b5e2d0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,65 @@ Community General Release Notes This changelog describes changes after version 5.0.0. +v6.6.0 +====== + +Release Summary +--------------- + +Bugfix and feature release. + +Minor Changes +------------- + +- cpanm - minor change, use feature from ``ModuleHelper`` (https://github.com/ansible-collections/community.general/pull/6385). +- dconf - be forgiving about boolean values: convert them to GVariant booleans automatically (https://github.com/ansible-collections/community.general/pull/6206). +- dconf - minor refactoring improving parameters and dependencies validation (https://github.com/ansible-collections/community.general/pull/6336). +- deps module utils - add function ``failed()`` providing the ability to check the dependency check result without triggering an exception (https://github.com/ansible-collections/community.general/pull/6383). +- dig lookup plugin - Support multiple domains to be queried as indicated in docs (https://github.com/ansible-collections/community.general/pull/6334). +- gitlab_project - add new option ``topics`` for adding topics to GitLab projects (https://github.com/ansible-collections/community.general/pull/6278). +- homebrew_cask - allows passing ``--greedy`` option to ``upgrade_all`` (https://github.com/ansible-collections/community.general/pull/6267). +- idrac_redfish_command - add ``job_id`` to ``CreateBiosConfigJob`` response (https://github.com/ansible-collections/community.general/issues/5603). +- ipa_hostgroup - add ``append`` parameter for adding a new hosts to existing hostgroups without changing existing hostgroup members (https://github.com/ansible-collections/community.general/pull/6203). +- keycloak_authentication - add flow type option to sub flows to allow the creation of 'form-flow' sub flows like in Keycloak's built-in registration flow (https://github.com/ansible-collections/community.general/pull/6318). +- mksysb - improved the output of the module in case of errors (https://github.com/ansible-collections/community.general/issues/6263). +- nmap inventory plugin - added environment variables for configure ``address`` and ``exclude`` (https://github.com/ansible-collections/community.general/issues/6351). +- nmcli - add ``macvlan`` connection type (https://github.com/ansible-collections/community.general/pull/6312). +- pipx - add ``system_site_packages`` parameter to give application access to system-wide packages (https://github.com/ansible-collections/community.general/pull/6308). +- pipx - ensure ``include_injected`` parameter works with ``state=upgrade`` and ``state=latest`` (https://github.com/ansible-collections/community.general/pull/6212). +- puppet - add new options ``skip_tags`` to exclude certain tagged resources during a puppet agent or apply (https://github.com/ansible-collections/community.general/pull/6293). +- terraform - remove state file check condition and error block, because in the native implementation of terraform will not cause errors due to the non-existent file (https://github.com/ansible-collections/community.general/pull/6296). +- udm_dns_record - minor refactor to the code (https://github.com/ansible-collections/community.general/pull/6382). + +Bugfixes +-------- + +- archive - reduce RAM usage by generating CRC32 checksum over chunks (https://github.com/ansible-collections/community.general/pull/6274). +- flatpak - fixes idempotency detection issues. In some cases the module could fail to properly detect already existing Flatpaks because of a parameter witch only checks the installed apps (https://github.com/ansible-collections/community.general/pull/6289). +- icinga2_host - fix the data structure sent to Icinga to make use of host templates and template vars (https://github.com/ansible-collections/community.general/pull/6286). +- idrac_redfish_command - allow user to specify ``resource_id`` for ``CreateBiosConfigJob`` to specify an exact manager (https://github.com/ansible-collections/community.general/issues/2090). +- ini_file - make ``section`` parameter not required so it is possible to pass ``null`` as a value. This only was possible in the past due to a bug in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6404). +- keycloak - improve error messages (https://github.com/ansible-collections/community.general/pull/6318). +- one_vm - fix syntax error when creating VMs with a more complex template (https://github.com/ansible-collections/community.general/issues/6225). +- pipx - fixed handling of ``install_deps=true`` with ``state=latest`` and ``state=upgrade`` (https://github.com/ansible-collections/community.general/pull/6303). +- redhat_subscription - do not use D-Bus for registering when ``environment`` is specified, so it possible to specify again the environment names for registering, as the D-Bus APIs work only with IDs (https://github.com/ansible-collections/community.general/pull/6319). +- redhat_subscription - try to unregister only when already registered when ``force_register`` is specified (https://github.com/ansible-collections/community.general/issues/6258, https://github.com/ansible-collections/community.general/pull/6259). +- redhat_subscription - use the right D-Bus options for environments when registering a CentOS Stream 8 system and using ``environment`` (https://github.com/ansible-collections/community.general/pull/6275). +- rhsm_release - make ``release`` parameter not required so it is possible to pass ``null`` as a value. This only was possible in the past due to a bug in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6401). +- rundeck module utils - fix errors caused by the API empty responses (https://github.com/ansible-collections/community.general/pull/6300) +- rundeck_acl_policy - fix ``TypeError - byte indices must be integers or slices, not str`` error caused by empty API response. Update the module to use ``module_utils.rundeck`` functions (https://github.com/ansible-collections/community.general/pull/5887, https://github.com/ansible-collections/community.general/pull/6300). +- rundeck_project - update the module to use ``module_utils.rundeck`` functions (https://github.com/ansible-collections/community.general/issues/5742) (https://github.com/ansible-collections/community.general/pull/6300) +- snap_alias - module would only recognize snap names containing letter, numbers or the underscore character, failing to identify valid snap names such as ``lxd.lxc`` (https://github.com/ansible-collections/community.general/pull/6361). + +New Modules +----------- + +- btrfs_info - Query btrfs filesystem info +- btrfs_subvolume - Manage btrfs subvolumes +- ilo_redfish_command - Manages Out-Of-Band controllers using Redfish APIs +- keycloak_authz_authorization_scope - Allows administration of Keycloak client authorization scopes via Keycloak API +- keycloak_clientscope_type - Set the type of aclientscope in realm or client via Keycloak API + v6.5.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index bcdc1415b5..d1ba1452e5 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1237,3 +1237,127 @@ releases: name: merge_variables namespace: null release_date: '2023-03-27' + 6.6.0: + changes: + bugfixes: + - archive - reduce RAM usage by generating CRC32 checksum over chunks (https://github.com/ansible-collections/community.general/pull/6274). + - flatpak - fixes idempotency detection issues. In some cases the module could + fail to properly detect already existing Flatpaks because of a parameter witch + only checks the installed apps (https://github.com/ansible-collections/community.general/pull/6289). + - icinga2_host - fix the data structure sent to Icinga to make use of host templates + and template vars (https://github.com/ansible-collections/community.general/pull/6286). + - idrac_redfish_command - allow user to specify ``resource_id`` for ``CreateBiosConfigJob`` + to specify an exact manager (https://github.com/ansible-collections/community.general/issues/2090). + - ini_file - make ``section`` parameter not required so it is possible to pass + ``null`` as a value. This only was possible in the past due to a bug in ansible-core + that now has been fixed (https://github.com/ansible-collections/community.general/pull/6404). + - keycloak - improve error messages (https://github.com/ansible-collections/community.general/pull/6318). + - one_vm - fix syntax error when creating VMs with a more complex template (https://github.com/ansible-collections/community.general/issues/6225). + - pipx - fixed handling of ``install_deps=true`` with ``state=latest`` and ``state=upgrade`` + (https://github.com/ansible-collections/community.general/pull/6303). + - redhat_subscription - do not use D-Bus for registering when ``environment`` + is specified, so it possible to specify again the environment names for registering, + as the D-Bus APIs work only with IDs (https://github.com/ansible-collections/community.general/pull/6319). + - redhat_subscription - try to unregister only when already registered when + ``force_register`` is specified (https://github.com/ansible-collections/community.general/issues/6258, + https://github.com/ansible-collections/community.general/pull/6259). + - redhat_subscription - use the right D-Bus options for environments when registering + a CentOS Stream 8 system and using ``environment`` (https://github.com/ansible-collections/community.general/pull/6275). + - rhsm_release - make ``release`` parameter not required so it is possible to + pass ``null`` as a value. This only was possible in the past due to a bug + in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6401). + - rundeck module utils - fix errors caused by the API empty responses (https://github.com/ansible-collections/community.general/pull/6300) + - rundeck_acl_policy - fix ``TypeError - byte indices must be integers or slices, + not str`` error caused by empty API response. Update the module to use ``module_utils.rundeck`` + functions (https://github.com/ansible-collections/community.general/pull/5887, + https://github.com/ansible-collections/community.general/pull/6300). + - rundeck_project - update the module to use ``module_utils.rundeck`` functions + (https://github.com/ansible-collections/community.general/issues/5742) (https://github.com/ansible-collections/community.general/pull/6300) + - snap_alias - module would only recognize snap names containing letter, numbers + or the underscore character, failing to identify valid snap names such as + ``lxd.lxc`` (https://github.com/ansible-collections/community.general/pull/6361). + minor_changes: + - cpanm - minor change, use feature from ``ModuleHelper`` (https://github.com/ansible-collections/community.general/pull/6385). + - 'dconf - be forgiving about boolean values: convert them to GVariant booleans + automatically (https://github.com/ansible-collections/community.general/pull/6206).' + - dconf - minor refactoring improving parameters and dependencies validation + (https://github.com/ansible-collections/community.general/pull/6336). + - deps module utils - add function ``failed()`` providing the ability to check + the dependency check result without triggering an exception (https://github.com/ansible-collections/community.general/pull/6383). + - dig lookup plugin - Support multiple domains to be queried as indicated in + docs (https://github.com/ansible-collections/community.general/pull/6334). + - gitlab_project - add new option ``topics`` for adding topics to GitLab projects + (https://github.com/ansible-collections/community.general/pull/6278). + - homebrew_cask - allows passing ``--greedy`` option to ``upgrade_all`` (https://github.com/ansible-collections/community.general/pull/6267). + - idrac_redfish_command - add ``job_id`` to ``CreateBiosConfigJob`` response + (https://github.com/ansible-collections/community.general/issues/5603). + - ipa_hostgroup - add ``append`` parameter for adding a new hosts to existing + hostgroups without changing existing hostgroup members (https://github.com/ansible-collections/community.general/pull/6203). + - keycloak_authentication - add flow type option to sub flows to allow the creation + of 'form-flow' sub flows like in Keycloak's built-in registration flow (https://github.com/ansible-collections/community.general/pull/6318). + - mksysb - improved the output of the module in case of errors (https://github.com/ansible-collections/community.general/issues/6263). + - nmap inventory plugin - added environment variables for configure ``address`` + and ``exclude`` (https://github.com/ansible-collections/community.general/issues/6351). + - nmcli - add ``macvlan`` connection type (https://github.com/ansible-collections/community.general/pull/6312). + - pipx - add ``system_site_packages`` parameter to give application access to + system-wide packages (https://github.com/ansible-collections/community.general/pull/6308). + - pipx - ensure ``include_injected`` parameter works with ``state=upgrade`` + and ``state=latest`` (https://github.com/ansible-collections/community.general/pull/6212). + - puppet - add new options ``skip_tags`` to exclude certain tagged resources + during a puppet agent or apply (https://github.com/ansible-collections/community.general/pull/6293). + - terraform - remove state file check condition and error block, because in + the native implementation of terraform will not cause errors due to the non-existent + file (https://github.com/ansible-collections/community.general/pull/6296). + - udm_dns_record - minor refactor to the code (https://github.com/ansible-collections/community.general/pull/6382). + release_summary: Bugfix and feature release. + fragments: + - 2090-idrac-redfish-resource-id-fix.yml + - 5603-redfish-idrac-job-id-in-response.yml + - 6.6.0.yml + - 6199-archive-generate-checksum-in-chunks.yml + - 6203-add-append-option-to-ipa-hostgroup.yml + - 6206-dconf-booleans.yml + - 6212-pipx-include-injected.yml + - 6259-redhat_subscription-fix-force.yaml + - 6267-homebrew-cask-upgrade-all-greedy.yml + - 6269-mksysb-output.yml + - 6275-redhat_subscription-fix-environments-centos.yaml + - 6277-add-topics-gitlab-project.yml + - 6286-icinga2_host-template-and-template-vars.yml + - 6289-bugfix-flatpak-check-if-already-installed.yml + - 6293-add-puppet-skip-tags-option.yaml + - 6294-fix-one_vm-instantiation.yml + - 6296-LanceNero-Terraform_statefile_check.yml + - 6300-rundeck-modules-fixes-and-improvements.yml + - 6303-pipx-fix-state-latest-and-add-system-site-packages.yml + - 6308-pipx-add-system-site-packages.yml + - 6312-nmcli-add-macvlan-connection-type.yml + - 6318-add-form-flow.yml + - 6319-redhat_subscription-fix-environment-parameter.yaml + - 6334-dig-support-multiple-domains.yml + - 6336-dconf-refactor.yml + - 6351-support-env-variables-to-nmap-dynamic-inventoiry.yaml + - 6361-snap-alias-regex-bugfix.yml + - 6382-udm-dns-record-refactor.yml + - 6383-deps-failed.yml + - 6385-cpan-mh-feat.yml + - 6401-rhsm_release-required.yml + - 6404-ini_file-section.yml + modules: + - description: Query btrfs filesystem info + name: btrfs_info + namespace: '' + - description: Manage btrfs subvolumes + name: btrfs_subvolume + namespace: '' + - description: Manages Out-Of-Band controllers using Redfish APIs + name: ilo_redfish_command + namespace: '' + - description: Allows administration of Keycloak client authorization scopes via + Keycloak API + name: keycloak_authz_authorization_scope + namespace: '' + - description: Set the type of aclientscope in realm or client via Keycloak API + name: keycloak_clientscope_type + namespace: '' + release_date: '2023-04-24' diff --git a/changelogs/fragments/2090-idrac-redfish-resource-id-fix.yml b/changelogs/fragments/2090-idrac-redfish-resource-id-fix.yml deleted file mode 100644 index e386cb1416..0000000000 --- a/changelogs/fragments/2090-idrac-redfish-resource-id-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - idrac_redfish_command - allow user to specify ``resource_id`` for ``CreateBiosConfigJob`` to specify an exact manager (https://github.com/ansible-collections/community.general/issues/2090). diff --git a/changelogs/fragments/5603-redfish-idrac-job-id-in-response.yml b/changelogs/fragments/5603-redfish-idrac-job-id-in-response.yml deleted file mode 100644 index 5987d193b1..0000000000 --- a/changelogs/fragments/5603-redfish-idrac-job-id-in-response.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - idrac_redfish_command - add ``job_id`` to ``CreateBiosConfigJob`` response (https://github.com/ansible-collections/community.general/issues/5603). diff --git a/changelogs/fragments/6.6.0.yml b/changelogs/fragments/6.6.0.yml deleted file mode 100644 index 56de6d9e3c..0000000000 --- a/changelogs/fragments/6.6.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Bugfix and feature release. diff --git a/changelogs/fragments/6199-archive-generate-checksum-in-chunks.yml b/changelogs/fragments/6199-archive-generate-checksum-in-chunks.yml deleted file mode 100644 index ed0a1e2dca..0000000000 --- a/changelogs/fragments/6199-archive-generate-checksum-in-chunks.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - archive - reduce RAM usage by generating CRC32 checksum over chunks (https://github.com/ansible-collections/community.general/pull/6274). diff --git a/changelogs/fragments/6203-add-append-option-to-ipa-hostgroup.yml b/changelogs/fragments/6203-add-append-option-to-ipa-hostgroup.yml deleted file mode 100644 index 1de6853efc..0000000000 --- a/changelogs/fragments/6203-add-append-option-to-ipa-hostgroup.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ipa_hostgroup - add ``append`` parameter for adding a new hosts to existing hostgroups without changing existing hostgroup members (https://github.com/ansible-collections/community.general/pull/6203). diff --git a/changelogs/fragments/6206-dconf-booleans.yml b/changelogs/fragments/6206-dconf-booleans.yml deleted file mode 100644 index 92c4c930cb..0000000000 --- a/changelogs/fragments/6206-dconf-booleans.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "dconf - be forgiving about boolean values: convert them to GVariant booleans automatically (https://github.com/ansible-collections/community.general/pull/6206)." diff --git a/changelogs/fragments/6212-pipx-include-injected.yml b/changelogs/fragments/6212-pipx-include-injected.yml deleted file mode 100644 index cfe85d9326..0000000000 --- a/changelogs/fragments/6212-pipx-include-injected.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - pipx - ensure ``include_injected`` parameter works with ``state=upgrade`` and ``state=latest`` (https://github.com/ansible-collections/community.general/pull/6212). diff --git a/changelogs/fragments/6259-redhat_subscription-fix-force.yaml b/changelogs/fragments/6259-redhat_subscription-fix-force.yaml deleted file mode 100644 index 1d320cb217..0000000000 --- a/changelogs/fragments/6259-redhat_subscription-fix-force.yaml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - redhat_subscription - try to unregister only when already registered when ``force_register`` is specified - (https://github.com/ansible-collections/community.general/issues/6258, - https://github.com/ansible-collections/community.general/pull/6259). diff --git a/changelogs/fragments/6267-homebrew-cask-upgrade-all-greedy.yml b/changelogs/fragments/6267-homebrew-cask-upgrade-all-greedy.yml deleted file mode 100644 index c470cf3a7c..0000000000 --- a/changelogs/fragments/6267-homebrew-cask-upgrade-all-greedy.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - homebrew_cask - allows passing ``--greedy`` option to ``upgrade_all`` (https://github.com/ansible-collections/community.general/pull/6267). diff --git a/changelogs/fragments/6269-mksysb-output.yml b/changelogs/fragments/6269-mksysb-output.yml deleted file mode 100644 index 16ba6257cf..0000000000 --- a/changelogs/fragments/6269-mksysb-output.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mksysb - improved the output of the module in case of errors (https://github.com/ansible-collections/community.general/issues/6263). diff --git a/changelogs/fragments/6275-redhat_subscription-fix-environments-centos.yaml b/changelogs/fragments/6275-redhat_subscription-fix-environments-centos.yaml deleted file mode 100644 index e6780dd70a..0000000000 --- a/changelogs/fragments/6275-redhat_subscription-fix-environments-centos.yaml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - redhat_subscription - use the right D-Bus options for environments when registering - a CentOS Stream 8 system and using ``environment`` - (https://github.com/ansible-collections/community.general/pull/6275). diff --git a/changelogs/fragments/6277-add-topics-gitlab-project.yml b/changelogs/fragments/6277-add-topics-gitlab-project.yml deleted file mode 100644 index 2e3ead05a0..0000000000 --- a/changelogs/fragments/6277-add-topics-gitlab-project.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - gitlab_project - add new option ``topics`` for adding topics to GitLab projects (https://github.com/ansible-collections/community.general/pull/6278). diff --git a/changelogs/fragments/6286-icinga2_host-template-and-template-vars.yml b/changelogs/fragments/6286-icinga2_host-template-and-template-vars.yml deleted file mode 100644 index 7ddeea37f7..0000000000 --- a/changelogs/fragments/6286-icinga2_host-template-and-template-vars.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "icinga2_host - fix the data structure sent to Icinga to make use of host templates and template vars (https://github.com/ansible-collections/community.general/pull/6286)." diff --git a/changelogs/fragments/6289-bugfix-flatpak-check-if-already-installed.yml b/changelogs/fragments/6289-bugfix-flatpak-check-if-already-installed.yml deleted file mode 100644 index e331250035..0000000000 --- a/changelogs/fragments/6289-bugfix-flatpak-check-if-already-installed.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - flatpak - fixes idempotency detection issues. In some cases the module could fail to properly detect already existing Flatpaks because of a parameter witch only checks the installed apps (https://github.com/ansible-collections/community.general/pull/6289). diff --git a/changelogs/fragments/6293-add-puppet-skip-tags-option.yaml b/changelogs/fragments/6293-add-puppet-skip-tags-option.yaml deleted file mode 100644 index fbf1dca599..0000000000 --- a/changelogs/fragments/6293-add-puppet-skip-tags-option.yaml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - puppet - add new options ``skip_tags`` to exclude certain tagged resources during a puppet agent or apply (https://github.com/ansible-collections/community.general/pull/6293). - diff --git a/changelogs/fragments/6294-fix-one_vm-instantiation.yml b/changelogs/fragments/6294-fix-one_vm-instantiation.yml deleted file mode 100644 index 493ef1c10f..0000000000 --- a/changelogs/fragments/6294-fix-one_vm-instantiation.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - one_vm - fix syntax error when creating VMs with a more complex template (https://github.com/ansible-collections/community.general/issues/6225). diff --git a/changelogs/fragments/6296-LanceNero-Terraform_statefile_check.yml b/changelogs/fragments/6296-LanceNero-Terraform_statefile_check.yml deleted file mode 100644 index f55129db82..0000000000 --- a/changelogs/fragments/6296-LanceNero-Terraform_statefile_check.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - terraform - remove state file check condition and error block, because in the native implementation of terraform will not cause errors due to the non-existent file (https://github.com/ansible-collections/community.general/pull/6296). diff --git a/changelogs/fragments/6300-rundeck-modules-fixes-and-improvements.yml b/changelogs/fragments/6300-rundeck-modules-fixes-and-improvements.yml deleted file mode 100644 index 3f6f3957bc..0000000000 --- a/changelogs/fragments/6300-rundeck-modules-fixes-and-improvements.yml +++ /dev/null @@ -1,8 +0,0 @@ -bugfixes: - - rundeck_acl_policy - fix ``TypeError - byte indices must be integers or slices, not str`` error caused by empty API response. Update the module to use ``module_utils.rundeck`` functions - (https://github.com/ansible-collections/community.general/pull/5887, - https://github.com/ansible-collections/community.general/pull/6300). - - rundeck_project - update the module to use ``module_utils.rundeck`` functions - (https://github.com/ansible-collections/community.general/issues/5742) - (https://github.com/ansible-collections/community.general/pull/6300) - - rundeck module utils - fix errors caused by the API empty responses (https://github.com/ansible-collections/community.general/pull/6300) diff --git a/changelogs/fragments/6303-pipx-fix-state-latest-and-add-system-site-packages.yml b/changelogs/fragments/6303-pipx-fix-state-latest-and-add-system-site-packages.yml deleted file mode 100644 index 1600c8252c..0000000000 --- a/changelogs/fragments/6303-pipx-fix-state-latest-and-add-system-site-packages.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pipx - fixed handling of ``install_deps=true`` with ``state=latest`` and ``state=upgrade`` (https://github.com/ansible-collections/community.general/pull/6303). diff --git a/changelogs/fragments/6308-pipx-add-system-site-packages.yml b/changelogs/fragments/6308-pipx-add-system-site-packages.yml deleted file mode 100644 index 7660ec5f1a..0000000000 --- a/changelogs/fragments/6308-pipx-add-system-site-packages.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - pipx - add ``system_site_packages`` parameter to give application access to system-wide packages (https://github.com/ansible-collections/community.general/pull/6308). diff --git a/changelogs/fragments/6312-nmcli-add-macvlan-connection-type.yml b/changelogs/fragments/6312-nmcli-add-macvlan-connection-type.yml deleted file mode 100644 index 65f2021f3c..0000000000 --- a/changelogs/fragments/6312-nmcli-add-macvlan-connection-type.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - nmcli - add ``macvlan`` connection type (https://github.com/ansible-collections/community.general/pull/6312). diff --git a/changelogs/fragments/6318-add-form-flow.yml b/changelogs/fragments/6318-add-form-flow.yml deleted file mode 100644 index db567f4faf..0000000000 --- a/changelogs/fragments/6318-add-form-flow.yml +++ /dev/null @@ -1,5 +0,0 @@ -bugfixes: - - "keycloak - improve error messages (https://github.com/ansible-collections/community.general/pull/6318)." - -minor_changes: - - "keycloak_authentication - add flow type option to sub flows to allow the creation of 'form-flow' sub flows like in Keycloak's built-in registration flow (https://github.com/ansible-collections/community.general/pull/6318)." diff --git a/changelogs/fragments/6319-redhat_subscription-fix-environment-parameter.yaml b/changelogs/fragments/6319-redhat_subscription-fix-environment-parameter.yaml deleted file mode 100644 index 672d8dc03e..0000000000 --- a/changelogs/fragments/6319-redhat_subscription-fix-environment-parameter.yaml +++ /dev/null @@ -1,5 +0,0 @@ -bugfixes: - - redhat_subscription - do not use D-Bus for registering when ``environment`` is specified, - so it possible to specify again the environment names for registering, - as the D-Bus APIs work only with IDs - (https://github.com/ansible-collections/community.general/pull/6319). diff --git a/changelogs/fragments/6334-dig-support-multiple-domains.yml b/changelogs/fragments/6334-dig-support-multiple-domains.yml deleted file mode 100644 index db9b5222b6..0000000000 --- a/changelogs/fragments/6334-dig-support-multiple-domains.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - dig lookup plugin - Support multiple domains to be queried as indicated in docs - (https://github.com/ansible-collections/community.general/pull/6334). diff --git a/changelogs/fragments/6336-dconf-refactor.yml b/changelogs/fragments/6336-dconf-refactor.yml deleted file mode 100644 index 3e7ddfccd6..0000000000 --- a/changelogs/fragments/6336-dconf-refactor.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - dconf - minor refactoring improving parameters and dependencies validation (https://github.com/ansible-collections/community.general/pull/6336). diff --git a/changelogs/fragments/6351-support-env-variables-to-nmap-dynamic-inventoiry.yaml b/changelogs/fragments/6351-support-env-variables-to-nmap-dynamic-inventoiry.yaml deleted file mode 100644 index 043f725387..0000000000 --- a/changelogs/fragments/6351-support-env-variables-to-nmap-dynamic-inventoiry.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - nmap inventory plugin - added environment variables for configure ``address`` and ``exclude`` (https://github.com/ansible-collections/community.general/issues/6351). diff --git a/changelogs/fragments/6361-snap-alias-regex-bugfix.yml b/changelogs/fragments/6361-snap-alias-regex-bugfix.yml deleted file mode 100644 index 712ef1893d..0000000000 --- a/changelogs/fragments/6361-snap-alias-regex-bugfix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - snap_alias - module would only recognize snap names containing letter, numbers or the underscore character, failing to identify valid snap names such as ``lxd.lxc`` (https://github.com/ansible-collections/community.general/pull/6361). diff --git a/changelogs/fragments/6382-udm-dns-record-refactor.yml b/changelogs/fragments/6382-udm-dns-record-refactor.yml deleted file mode 100644 index 78a18e0714..0000000000 --- a/changelogs/fragments/6382-udm-dns-record-refactor.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - udm_dns_record - minor refactor to the code (https://github.com/ansible-collections/community.general/pull/6382). diff --git a/changelogs/fragments/6383-deps-failed.yml b/changelogs/fragments/6383-deps-failed.yml deleted file mode 100644 index bcd35a7207..0000000000 --- a/changelogs/fragments/6383-deps-failed.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - deps module utils - add function ``failed()`` providing the ability to check the dependency check result without triggering an exception (https://github.com/ansible-collections/community.general/pull/6383). diff --git a/changelogs/fragments/6385-cpan-mh-feat.yml b/changelogs/fragments/6385-cpan-mh-feat.yml deleted file mode 100644 index 41944b60f8..0000000000 --- a/changelogs/fragments/6385-cpan-mh-feat.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - cpanm - minor change, use feature from ``ModuleHelper`` (https://github.com/ansible-collections/community.general/pull/6385). diff --git a/changelogs/fragments/6401-rhsm_release-required.yml b/changelogs/fragments/6401-rhsm_release-required.yml deleted file mode 100644 index bf47fa8237..0000000000 --- a/changelogs/fragments/6401-rhsm_release-required.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "rhsm_release - make ``release`` parameter not required so it is possible to pass ``null`` as a value. This only was possible in the past due to a bug in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6401)." diff --git a/changelogs/fragments/6404-ini_file-section.yml b/changelogs/fragments/6404-ini_file-section.yml deleted file mode 100644 index b9e8a10e76..0000000000 --- a/changelogs/fragments/6404-ini_file-section.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "ini_file - make ``section`` parameter not required so it is possible to pass ``null`` as a value. This only was possible in the past due to a bug in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6404)."