diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c261665a32..e3d369bf16 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,88 @@ Community General Release Notes This changelog describes changes after version 3.0.0. +v4.2.0 +====== + +Release Summary +--------------- + +Regular bugfix and feature release. + +Minor Changes +------------- + +- aix_filesystem - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3833). +- aix_lvg - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3834). +- gitlab - add more token authentication support with the new options ``api_oauth_token`` and ``api_job_token`` (https://github.com/ansible-collections/community.general/issues/705). +- gitlab_group, gitlab_project - add new option ``avatar_path`` (https://github.com/ansible-collections/community.general/pull/3792). +- gitlab_project - add new option ``default_branch`` to gitlab_project (if ``readme = true``) (https://github.com/ansible-collections/community.general/pull/3792). +- hponcfg - revamped module using ModuleHelper (https://github.com/ansible-collections/community.general/pull/3840). +- icinga2 inventory plugin - added the ``display_name`` field to variables (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). +- icinga2 inventory plugin - inventory object names are changable using ``inventory_attr`` in your config file to the host object name, address, or display_name fields (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). +- ip_netns - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3822). +- iso_extract - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3805). +- java_cert - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3835). +- jira - add support for Bearer token auth (https://github.com/ansible-collections/community.general/pull/3838). +- keycloak_user_federation - add sssd user federation support (https://github.com/ansible-collections/community.general/issues/3767). +- logentries - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3807). +- logstash_plugin - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3808). +- lxc_container - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3851). +- lxd connection plugin - make sure that ``ansible_lxd_host``, ``ansible_executable``, and ``ansible_lxd_executable`` work (https://github.com/ansible-collections/community.general/pull/3798). +- lxd inventory plugin - support virtual machines (https://github.com/ansible-collections/community.general/pull/3519). +- module_helper module utils - added decorators ``check_mode_skip`` and ``check_mode_skip_returns`` for skipping methods when ``check_mode=True`` (https://github.com/ansible-collections/community.general/pull/3849). +- monit - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3821). +- nmcli - add multiple addresses support for ``ip6`` parameter (https://github.com/ansible-collections/community.general/issues/1088). +- nmcli - add support for ``eui64`` and ``ipv6privacy`` parameters (https://github.com/ansible-collections/community.general/issues/3357). +- python_requirements_info - returns python version broken down into its components, and some minor refactoring (https://github.com/ansible-collections/community.general/pull/3797). +- svc - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3829). +- xattr - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3806). +- xfconf - minor refactor on the base class for the module (https://github.com/ansible-collections/community.general/pull/3919). + +Deprecated Features +------------------- + +- module_helper module utils - deprecated the attribute ``ModuleHelper.VarDict`` (https://github.com/ansible-collections/community.general/pull/3801). + +Bugfixes +-------- + +- icinga2 inventory plugin - handle 404 error when filter produces no results (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). +- interfaces_file - fixed the check for existing option in interface (https://github.com/ansible-collections/community.general/issues/3841). +- jira - fixed bug where module returns error related to dictionary key ``body`` (https://github.com/ansible-collections/community.general/issues/3419). +- nmcli - fix returning "changed" when no mask set for IPv4 or IPv6 addresses on task rerun (https://github.com/ansible-collections/community.general/issues/3768). +- nmcli - pass ``flags``, ``ingress``, ``egress`` params to ``nmcli`` (https://github.com/ansible-collections/community.general/issues/1086). +- nrdp callback plugin - fix error ``string arguments without an encoding`` (https://github.com/ansible-collections/community.general/issues/3903). +- opentelemetry_plugin - honour ``ignore_errors`` when a task has failed instead of reporting an error (https://github.com/ansible-collections/community.general/pull/3837). +- pipx - passes the correct command line option ``--include-apps`` (https://github.com/ansible-collections/community.general/issues/3791). +- proxmox - fixed ``onboot`` parameter causing module failures when undefined (https://github.com/ansible-collections/community.general/issues/3844). +- python_requirements_info - fails if version operator used without version (https://github.com/ansible-collections/community.general/pull/3785). + +New Modules +----------- + +Net Tools +~~~~~~~~~ + +- dnsimple_info - Pull basic info from DNSimple API + +Remote Management +~~~~~~~~~~~~~~~~~ + +redfish +^^^^^^^ + +- ilo_redfish_config - Sets or updates configuration attributes on HPE iLO with Redfish OEM extensions +- ilo_redfish_info - Gathers server information through iLO using Redfish APIs + +Source Control +~~~~~~~~~~~~~~ + +gitlab +^^^^^^ + +- gitlab_branch - Create or delete a branch + v4.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 89f4b403fb..455cc2337a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1117,3 +1117,124 @@ releases: name: revbitspss namespace: null release_date: '2021-11-23' + 4.2.0: + changes: + bugfixes: + - icinga2 inventory plugin - handle 404 error when filter produces no results + (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). + - interfaces_file - fixed the check for existing option in interface (https://github.com/ansible-collections/community.general/issues/3841). + - jira - fixed bug where module returns error related to dictionary key ``body`` + (https://github.com/ansible-collections/community.general/issues/3419). + - nmcli - fix returning "changed" when no mask set for IPv4 or IPv6 addresses + on task rerun (https://github.com/ansible-collections/community.general/issues/3768). + - nmcli - pass ``flags``, ``ingress``, ``egress`` params to ``nmcli`` (https://github.com/ansible-collections/community.general/issues/1086). + - nrdp callback plugin - fix error ``string arguments without an encoding`` + (https://github.com/ansible-collections/community.general/issues/3903). + - opentelemetry_plugin - honour ``ignore_errors`` when a task has failed instead + of reporting an error (https://github.com/ansible-collections/community.general/pull/3837). + - pipx - passes the correct command line option ``--include-apps`` (https://github.com/ansible-collections/community.general/issues/3791). + - proxmox - fixed ``onboot`` parameter causing module failures when undefined + (https://github.com/ansible-collections/community.general/issues/3844). + - python_requirements_info - fails if version operator used without version + (https://github.com/ansible-collections/community.general/pull/3785). + deprecated_features: + - module_helper module utils - deprecated the attribute ``ModuleHelper.VarDict`` + (https://github.com/ansible-collections/community.general/pull/3801). + minor_changes: + - aix_filesystem - calling ``run_command`` with arguments as ``list`` instead + of ``str`` (https://github.com/ansible-collections/community.general/pull/3833). + - aix_lvg - calling ``run_command`` with arguments as ``list`` instead of ``str`` + (https://github.com/ansible-collections/community.general/pull/3834). + - gitlab - add more token authentication support with the new options ``api_oauth_token`` + and ``api_job_token`` (https://github.com/ansible-collections/community.general/issues/705). + - gitlab_group, gitlab_project - add new option ``avatar_path`` (https://github.com/ansible-collections/community.general/pull/3792). + - gitlab_project - add new option ``default_branch`` to gitlab_project (if ``readme + = true``) (https://github.com/ansible-collections/community.general/pull/3792). + - hponcfg - revamped module using ModuleHelper (https://github.com/ansible-collections/community.general/pull/3840). + - icinga2 inventory plugin - added the ``display_name`` field to variables (https://github.com/ansible-collections/community.general/issues/3875, + https://github.com/ansible-collections/community.general/pull/3906). + - icinga2 inventory plugin - inventory object names are changable using ``inventory_attr`` + in your config file to the host object name, address, or display_name fields + (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). + - ip_netns - calling ``run_command`` with arguments as ``list`` instead of ``str`` + (https://github.com/ansible-collections/community.general/pull/3822). + - iso_extract - calling ``run_command`` with arguments as ``list`` instead of + ``str`` (https://github.com/ansible-collections/community.general/pull/3805). + - java_cert - calling ``run_command`` with arguments as ``list`` instead of + ``str`` (https://github.com/ansible-collections/community.general/pull/3835). + - jira - add support for Bearer token auth (https://github.com/ansible-collections/community.general/pull/3838). + - keycloak_user_federation - add sssd user federation support (https://github.com/ansible-collections/community.general/issues/3767). + - logentries - calling ``run_command`` with arguments as ``list`` instead of + ``str`` (https://github.com/ansible-collections/community.general/pull/3807). + - logstash_plugin - calling ``run_command`` with arguments as ``list`` instead + of ``str`` (https://github.com/ansible-collections/community.general/pull/3808). + - lxc_container - calling ``run_command`` with arguments as ``list`` instead + of ``str`` (https://github.com/ansible-collections/community.general/pull/3851). + - lxd connection plugin - make sure that ``ansible_lxd_host``, ``ansible_executable``, + and ``ansible_lxd_executable`` work (https://github.com/ansible-collections/community.general/pull/3798). + - lxd inventory plugin - support virtual machines (https://github.com/ansible-collections/community.general/pull/3519). + - module_helper module utils - added decorators ``check_mode_skip`` and ``check_mode_skip_returns`` + for skipping methods when ``check_mode=True`` (https://github.com/ansible-collections/community.general/pull/3849). + - monit - calling ``run_command`` with arguments as ``list`` instead of ``str`` + (https://github.com/ansible-collections/community.general/pull/3821). + - nmcli - add multiple addresses support for ``ip6`` parameter (https://github.com/ansible-collections/community.general/issues/1088). + - nmcli - add support for ``eui64`` and ``ipv6privacy`` parameters (https://github.com/ansible-collections/community.general/issues/3357). + - python_requirements_info - returns python version broken down into its components, + and some minor refactoring (https://github.com/ansible-collections/community.general/pull/3797). + - svc - calling ``run_command`` with arguments as ``list`` instead of ``str`` + (https://github.com/ansible-collections/community.general/pull/3829). + - xattr - calling ``run_command`` with arguments as ``list`` instead of ``str`` + (https://github.com/ansible-collections/community.general/pull/3806). + - xfconf - minor refactor on the base class for the module (https://github.com/ansible-collections/community.general/pull/3919). + release_summary: Regular bugfix and feature release. + fragments: + - 1088-add_multiple_ipv6_address_support.yml + - 3357-nmcli-eui64-and-ipv6privacy.yml + - 3519-inventory-support-lxd-4.yml + - 3768-nmcli_fix_changed_when_no_mask_set.yml + - 3780-add-keycloak-sssd-user-federation.yml + - 3785-python_requirements_info-versionless-op.yaml + - 3792-improve_gitlab_group_and_project.yml + - 3797-python_requirements_info-improvements.yaml + - 3798-fix-lxd-connection-option-vars-support.yml + - 3800-pipx-include-apps.yaml + - 3801-mh-deprecate-vardict-attr.yaml + - 3805-iso_extract-run_command-list.yaml + - 3806-xattr-run_command-list.yaml + - 3807-logentries-run_command-list.yaml + - 3808-logstash_plugin-run_command-list.yaml + - 3821-monit-run-list.yaml + - 3822-ip_netns-run-list.yaml + - 3829-svc-run-list.yaml + - 3833-aix_filesystem-run-list.yaml + - 3834-aix-lvg-run-list.yaml + - 3835-java-cert-run-list.yaml + - 3837-opentelemetry_plugin-honour_ignore_errors.yaml + - 3838-jira-token.yaml + - 3840-hponcfg-mh-revamp.yaml + - 3849-mh-check-mode-decos.yaml + - 3851-lxc-container-run-list.yaml + - 3862-interfaces-file-fix-dup-option.yaml + - 3867-jira-fix-body.yaml + - 3874-proxmox-fix-onboot-param.yml + - 3875-icinga2-inv-fix.yml + - 3896-nmcli_vlan_missing_options.yaml + - 3909-nrdp_fix_string_args_without_encoding.yaml + - 3919-xfconf-baseclass.yaml + - 4.2.0.yml + - 705-gitlab-auth-support.yml + modules: + - description: Pull basic info from DNSimple API + name: dnsimple_info + namespace: net_tools + - description: Create or delete a branch + name: gitlab_branch + namespace: source_control.gitlab + - description: Sets or updates configuration attributes on HPE iLO with Redfish + OEM extensions + name: ilo_redfish_config + namespace: remote_management.redfish + - description: Gathers server information through iLO using Redfish APIs + name: ilo_redfish_info + namespace: remote_management.redfish + release_date: '2021-12-21' diff --git a/changelogs/fragments/1088-add_multiple_ipv6_address_support.yml b/changelogs/fragments/1088-add_multiple_ipv6_address_support.yml deleted file mode 100644 index f55473fc50..0000000000 --- a/changelogs/fragments/1088-add_multiple_ipv6_address_support.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - nmcli - add multiple addresses support for ``ip6`` parameter - (https://github.com/ansible-collections/community.general/issues/1088). diff --git a/changelogs/fragments/3357-nmcli-eui64-and-ipv6privacy.yml b/changelogs/fragments/3357-nmcli-eui64-and-ipv6privacy.yml deleted file mode 100644 index 3628779980..0000000000 --- a/changelogs/fragments/3357-nmcli-eui64-and-ipv6privacy.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - nmcli - add support for ``eui64`` and ``ipv6privacy`` parameters (https://github.com/ansible-collections/community.general/issues/3357). diff --git a/changelogs/fragments/3519-inventory-support-lxd-4.yml b/changelogs/fragments/3519-inventory-support-lxd-4.yml deleted file mode 100644 index 0d7e9710d0..0000000000 --- a/changelogs/fragments/3519-inventory-support-lxd-4.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - lxd inventory plugin - support virtual machines (https://github.com/ansible-collections/community.general/pull/3519). diff --git a/changelogs/fragments/3768-nmcli_fix_changed_when_no_mask_set.yml b/changelogs/fragments/3768-nmcli_fix_changed_when_no_mask_set.yml deleted file mode 100644 index 0ea7298ba1..0000000000 --- a/changelogs/fragments/3768-nmcli_fix_changed_when_no_mask_set.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - nmcli - fix returning "changed" when no mask set for IPv4 or IPv6 addresses on task rerun - (https://github.com/ansible-collections/community.general/issues/3768). \ No newline at end of file diff --git a/changelogs/fragments/3780-add-keycloak-sssd-user-federation.yml b/changelogs/fragments/3780-add-keycloak-sssd-user-federation.yml deleted file mode 100644 index 48600605df..0000000000 --- a/changelogs/fragments/3780-add-keycloak-sssd-user-federation.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - keycloak_user_federation - add sssd user federation support (https://github.com/ansible-collections/community.general/issues/3767). diff --git a/changelogs/fragments/3785-python_requirements_info-versionless-op.yaml b/changelogs/fragments/3785-python_requirements_info-versionless-op.yaml deleted file mode 100644 index 8ae420d0c8..0000000000 --- a/changelogs/fragments/3785-python_requirements_info-versionless-op.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - python_requirements_info - fails if version operator used without version (https://github.com/ansible-collections/community.general/pull/3785). diff --git a/changelogs/fragments/3792-improve_gitlab_group_and_project.yml b/changelogs/fragments/3792-improve_gitlab_group_and_project.yml deleted file mode 100644 index cb632f523a..0000000000 --- a/changelogs/fragments/3792-improve_gitlab_group_and_project.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - gitlab_group, gitlab_project - add new option ``avatar_path`` (https://github.com/ansible-collections/community.general/pull/3792). - - gitlab_project - add new option ``default_branch`` to gitlab_project (if ``readme = true``) (https://github.com/ansible-collections/community.general/pull/3792). diff --git a/changelogs/fragments/3797-python_requirements_info-improvements.yaml b/changelogs/fragments/3797-python_requirements_info-improvements.yaml deleted file mode 100644 index a0c2a06dad..0000000000 --- a/changelogs/fragments/3797-python_requirements_info-improvements.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - python_requirements_info - returns python version broken down into its components, and some minor refactoring (https://github.com/ansible-collections/community.general/pull/3797). diff --git a/changelogs/fragments/3798-fix-lxd-connection-option-vars-support.yml b/changelogs/fragments/3798-fix-lxd-connection-option-vars-support.yml deleted file mode 100644 index 799929a887..0000000000 --- a/changelogs/fragments/3798-fix-lxd-connection-option-vars-support.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - lxd connection plugin - make sure that ``ansible_lxd_host``, ``ansible_executable``, and - ``ansible_lxd_executable`` work (https://github.com/ansible-collections/community.general/pull/3798). diff --git a/changelogs/fragments/3800-pipx-include-apps.yaml b/changelogs/fragments/3800-pipx-include-apps.yaml deleted file mode 100644 index 49113ed450..0000000000 --- a/changelogs/fragments/3800-pipx-include-apps.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pipx - passes the correct command line option ``--include-apps`` (https://github.com/ansible-collections/community.general/issues/3791). diff --git a/changelogs/fragments/3801-mh-deprecate-vardict-attr.yaml b/changelogs/fragments/3801-mh-deprecate-vardict-attr.yaml deleted file mode 100644 index 1bb30e7452..0000000000 --- a/changelogs/fragments/3801-mh-deprecate-vardict-attr.yaml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: - - module_helper module utils - deprecated the attribute ``ModuleHelper.VarDict`` (https://github.com/ansible-collections/community.general/pull/3801). diff --git a/changelogs/fragments/3805-iso_extract-run_command-list.yaml b/changelogs/fragments/3805-iso_extract-run_command-list.yaml deleted file mode 100644 index 3def756aa1..0000000000 --- a/changelogs/fragments/3805-iso_extract-run_command-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - iso_extract - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3805). diff --git a/changelogs/fragments/3806-xattr-run_command-list.yaml b/changelogs/fragments/3806-xattr-run_command-list.yaml deleted file mode 100644 index ca90f6209d..0000000000 --- a/changelogs/fragments/3806-xattr-run_command-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - xattr - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3806). diff --git a/changelogs/fragments/3807-logentries-run_command-list.yaml b/changelogs/fragments/3807-logentries-run_command-list.yaml deleted file mode 100644 index 1a69df1dfe..0000000000 --- a/changelogs/fragments/3807-logentries-run_command-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - logentries - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3807). diff --git a/changelogs/fragments/3808-logstash_plugin-run_command-list.yaml b/changelogs/fragments/3808-logstash_plugin-run_command-list.yaml deleted file mode 100644 index 9c92ab793a..0000000000 --- a/changelogs/fragments/3808-logstash_plugin-run_command-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - logstash_plugin - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3808). diff --git a/changelogs/fragments/3821-monit-run-list.yaml b/changelogs/fragments/3821-monit-run-list.yaml deleted file mode 100644 index de2862fe76..0000000000 --- a/changelogs/fragments/3821-monit-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - monit - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3821). diff --git a/changelogs/fragments/3822-ip_netns-run-list.yaml b/changelogs/fragments/3822-ip_netns-run-list.yaml deleted file mode 100644 index 7bbcb59277..0000000000 --- a/changelogs/fragments/3822-ip_netns-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ip_netns - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3822). diff --git a/changelogs/fragments/3829-svc-run-list.yaml b/changelogs/fragments/3829-svc-run-list.yaml deleted file mode 100644 index 5a6b6d2338..0000000000 --- a/changelogs/fragments/3829-svc-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - svc - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3829). diff --git a/changelogs/fragments/3833-aix_filesystem-run-list.yaml b/changelogs/fragments/3833-aix_filesystem-run-list.yaml deleted file mode 100644 index 6d439a8dd4..0000000000 --- a/changelogs/fragments/3833-aix_filesystem-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - aix_filesystem - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3833). diff --git a/changelogs/fragments/3834-aix-lvg-run-list.yaml b/changelogs/fragments/3834-aix-lvg-run-list.yaml deleted file mode 100644 index e7177baade..0000000000 --- a/changelogs/fragments/3834-aix-lvg-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - aix_lvg - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3834). diff --git a/changelogs/fragments/3835-java-cert-run-list.yaml b/changelogs/fragments/3835-java-cert-run-list.yaml deleted file mode 100644 index 7cebe7d2cb..0000000000 --- a/changelogs/fragments/3835-java-cert-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - java_cert - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3835). diff --git a/changelogs/fragments/3837-opentelemetry_plugin-honour_ignore_errors.yaml b/changelogs/fragments/3837-opentelemetry_plugin-honour_ignore_errors.yaml deleted file mode 100644 index 2f33f45eec..0000000000 --- a/changelogs/fragments/3837-opentelemetry_plugin-honour_ignore_errors.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - opentelemetry_plugin - honour ``ignore_errors`` when a task has failed instead of reporting an error (https://github.com/ansible-collections/community.general/pull/3837). diff --git a/changelogs/fragments/3838-jira-token.yaml b/changelogs/fragments/3838-jira-token.yaml deleted file mode 100644 index 21aadd5ab8..0000000000 --- a/changelogs/fragments/3838-jira-token.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - jira - add support for Bearer token auth (https://github.com/ansible-collections/community.general/pull/3838). diff --git a/changelogs/fragments/3840-hponcfg-mh-revamp.yaml b/changelogs/fragments/3840-hponcfg-mh-revamp.yaml deleted file mode 100644 index ee4d063f68..0000000000 --- a/changelogs/fragments/3840-hponcfg-mh-revamp.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - hponcfg - revamped module using ModuleHelper (https://github.com/ansible-collections/community.general/pull/3840). diff --git a/changelogs/fragments/3849-mh-check-mode-decos.yaml b/changelogs/fragments/3849-mh-check-mode-decos.yaml deleted file mode 100644 index 48ba0119a4..0000000000 --- a/changelogs/fragments/3849-mh-check-mode-decos.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - module_helper module utils - added decorators ``check_mode_skip`` and ``check_mode_skip_returns`` for skipping methods when ``check_mode=True`` (https://github.com/ansible-collections/community.general/pull/3849). diff --git a/changelogs/fragments/3851-lxc-container-run-list.yaml b/changelogs/fragments/3851-lxc-container-run-list.yaml deleted file mode 100644 index c7d1ff746e..0000000000 --- a/changelogs/fragments/3851-lxc-container-run-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - lxc_container - calling ``run_command`` with arguments as ``list`` instead of ``str`` (https://github.com/ansible-collections/community.general/pull/3851). diff --git a/changelogs/fragments/3862-interfaces-file-fix-dup-option.yaml b/changelogs/fragments/3862-interfaces-file-fix-dup-option.yaml deleted file mode 100644 index 54cf17bf7d..0000000000 --- a/changelogs/fragments/3862-interfaces-file-fix-dup-option.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - interfaces_file - fixed the check for existing option in interface (https://github.com/ansible-collections/community.general/issues/3841). diff --git a/changelogs/fragments/3867-jira-fix-body.yaml b/changelogs/fragments/3867-jira-fix-body.yaml deleted file mode 100644 index 0edb395e70..0000000000 --- a/changelogs/fragments/3867-jira-fix-body.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - jira - fixed bug where module returns error related to dictionary key ``body`` (https://github.com/ansible-collections/community.general/issues/3419). diff --git a/changelogs/fragments/3874-proxmox-fix-onboot-param.yml b/changelogs/fragments/3874-proxmox-fix-onboot-param.yml deleted file mode 100644 index 705174dd5d..0000000000 --- a/changelogs/fragments/3874-proxmox-fix-onboot-param.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - proxmox - fixed ``onboot`` parameter causing module failures when undefined - (https://github.com/ansible-collections/community.general/issues/3844). diff --git a/changelogs/fragments/3875-icinga2-inv-fix.yml b/changelogs/fragments/3875-icinga2-inv-fix.yml deleted file mode 100644 index 60bf58b840..0000000000 --- a/changelogs/fragments/3875-icinga2-inv-fix.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -minor_changes: - - icinga2 inventory plugin - inventory object names are changable using ``inventory_attr`` in your config file to the host object name, address, or display_name fields - (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). - - icinga2 inventory plugin - added the ``display_name`` field to variables - (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). -bugfixes: - - icinga2 inventory plugin - handle 404 error when filter produces no results - (https://github.com/ansible-collections/community.general/issues/3875, https://github.com/ansible-collections/community.general/pull/3906). \ No newline at end of file diff --git a/changelogs/fragments/3896-nmcli_vlan_missing_options.yaml b/changelogs/fragments/3896-nmcli_vlan_missing_options.yaml deleted file mode 100644 index 8fab1ac37c..0000000000 --- a/changelogs/fragments/3896-nmcli_vlan_missing_options.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - pass ``flags``, ``ingress``, ``egress`` params to ``nmcli`` (https://github.com/ansible-collections/community.general/issues/1086). diff --git a/changelogs/fragments/3909-nrdp_fix_string_args_without_encoding.yaml b/changelogs/fragments/3909-nrdp_fix_string_args_without_encoding.yaml deleted file mode 100644 index bc96830844..0000000000 --- a/changelogs/fragments/3909-nrdp_fix_string_args_without_encoding.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nrdp callback plugin - fix error ``string arguments without an encoding`` (https://github.com/ansible-collections/community.general/issues/3903). diff --git a/changelogs/fragments/3919-xfconf-baseclass.yaml b/changelogs/fragments/3919-xfconf-baseclass.yaml deleted file mode 100644 index 85625a769d..0000000000 --- a/changelogs/fragments/3919-xfconf-baseclass.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - xfconf - minor refactor on the base class for the module (https://github.com/ansible-collections/community.general/pull/3919). diff --git a/changelogs/fragments/4.2.0.yml b/changelogs/fragments/4.2.0.yml deleted file mode 100644 index 4b1469c9fe..0000000000 --- a/changelogs/fragments/4.2.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix and feature release. diff --git a/changelogs/fragments/705-gitlab-auth-support.yml b/changelogs/fragments/705-gitlab-auth-support.yml deleted file mode 100644 index 12ba3ca6b7..0000000000 --- a/changelogs/fragments/705-gitlab-auth-support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - gitlab - add more token authentication support with the new options ``api_oauth_token`` and ``api_job_token`` (https://github.com/ansible-collections/community.general/issues/705).