diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 91596d02b0..aef4b3b01b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,6 +5,93 @@ Community General Release Notes
.. contents:: Topics
+v1.2.0
+======
+
+Release Summary
+---------------
+
+Regular bimonthly minor release.
+
+Minor Changes
+-------------
+
+- hashi_vault - support ``VAULT_NAMESPACE`` environment variable for namespaced lookups against Vault Enterprise (in addition to the ``namespace=`` flag supported today) (https://github.com/ansible-collections/community.general/pull/929).
+- hashi_vault lookup - add ``VAULT_TOKEN_FILE`` as env option to specify ``token_file`` param (https://github.com/ansible-collections/community.general/issues/373).
+- hashi_vault lookup - add ``VAULT_TOKEN_PATH`` as env option to specify ``token_path`` param (https://github.com/ansible-collections/community.general/issues/373).
+- ipa_user - add ``userauthtype`` option (https://github.com/ansible-collections/community.general/pull/951).
+- iptables_state - use FQCN when calling a module from action plugin (https://github.com/ansible-collections/community.general/pull/967).
+- nagios - add the ``acknowledge`` action (https://github.com/ansible-collections/community.general/pull/820).
+- nagios - add the ``host`` and ``all`` values for the ``forced_check`` action (https://github.com/ansible-collections/community.general/pull/998).
+- nagios - add the ``service_check`` action (https://github.com/ansible-collections/community.general/pull/820).
+- nagios - rename the ``service_check`` action to ``forced_check`` since we now are able to check both a particular service, all services of a particular host and the host itself (https://github.com/ansible-collections/community.general/pull/998).
+- pkgutil - module can now accept a list of packages (https://github.com/ansible-collections/community.general/pull/799).
+- pkgutil - module has a new option, ``force``, equivalent to the ``-f`` option to the `pkgutil `_ command (https://github.com/ansible-collections/community.general/pull/799).
+- pkgutil - module now supports check mode (https://github.com/ansible-collections/community.general/pull/799).
+- postgresql_privs - add the ``usage_on_types`` option (https://github.com/ansible-collections/community.general/issues/884).
+- proxmox_kvm - improve code readability (https://github.com/ansible-collections/community.general/pull/934).
+- pushover - add device parameter (https://github.com/ansible-collections/community.general/pull/802).
+- redfish_command - add sub-command for ``EnableContinuousBootOverride`` and ``DisableBootOverride`` to allow setting BootSourceOverrideEnabled Redfish property (https://github.com/ansible-collections/community.general/issues/824).
+- redfish_command - support same reset actions on Managers as on Systems (https://github.com/ansible-collections/community.general/issues/901).
+- slack - add support for updating messages (https://github.com/ansible-collections/community.general/issues/304).
+- xml - fixed issue were changed was returned when removing non-existent xpath (https://github.com/ansible-collections/community.general/pull/1007).
+- zypper_repository - proper failure when python-xml is missing (https://github.com/ansible-collections/community.general/pull/939).
+
+Bugfixes
+--------
+
+- aerospike_migrations - handle exception when unstable-cluster is returned (https://github.com/ansible-collections/community.general/pull/900).
+- django_manage - fix idempotence for ``createcachetable`` (https://github.com/ansible-collections/community.general/pull/699).
+- docker_container - fix idempotency problem with ``published_ports`` when strict comparison is used and list is empty (https://github.com/ansible-collections/community.general/issues/978).
+- gem - fix get_installed_versions: correctly parse ``default`` version (https://github.com/ansible-collections/community.general/pull/783).
+- hashi_vault - add missing ``mount_point`` parameter for approle auth (https://github.com/ansible-collections/community.general/pull/897).
+- hashi_vault lookup - ``token_path`` in config file overridden by env ``HOME`` (https://github.com/ansible-collections/community.general/issues/373).
+- homebrew_cask - fixed issue where a cask with ``@`` in the name is incorrectly reported as invalid (https://github.com/ansible-collections/community.general/issues/733).
+- interfaces_file - escape regular expression characters in old value (https://github.com/ansible-collections/community.general/issues/777).
+- launchd - fix for user-level services (https://github.com/ansible-collections/community.general/issues/896).
+- nmcli - set ``C`` locale when executing ``nmcli`` (https://github.com/ansible-collections/community.general/issues/989).
+- parted - fix creating partition when label is changed (https://github.com/ansible-collections/community.general/issues/522).
+- pkg5 - now works when Python 3 is used on the target (https://github.com/ansible-collections/community.general/pull/789).
+- postgresql_privs - allow to pass ``PUBLIC`` role written in lowercase letters (https://github.com/ansible-collections/community.general/issues/857).
+- postgresql_privs - fix the module mistakes a procedure for a function (https://github.com/ansible-collections/community.general/issues/994).
+- postgresql_privs - rollback if nothing changed (https://github.com/ansible-collections/community.general/issues/885).
+- postgresql_privs - the module was attempting to revoke grant options even though ``grant_option`` was not specified (https://github.com/ansible-collections/community.general/pull/796).
+- proxmox_kvm - defer error-checking for non-existent VMs in order to fix idempotency of tasks using ``state=absent`` and properly recognize a success (https://github.com/ansible-collections/community.general/pull/811).
+- proxmox_kvm - improve handling of long-running tasks by creating a dedicated function (https://github.com/ansible-collections/community.general/pull/831).
+- slack - fix ``xox[abp]`` token identification to capture everything after ``xox[abp]``, as the token is the only thing that should be in this argument (https://github.com/ansible-collections/community.general/issues/862).
+- terraform - fix incorrectly reporting a status of unchanged when number of resources added or destroyed are multiples of 10 (https://github.com/ansible-collections/community.general/issues/561).
+- timezone - support Python3 on macos/darwin (https://github.com/ansible-collections/community.general/pull/945).
+- zfs - fixed ``invalid character '@' in pool name"`` error when working with snapshots on a root zvol (https://github.com/ansible-collections/community.general/issues/932).
+
+New Plugins
+-----------
+
+Inventory
+~~~~~~~~~
+
+- proxmox - Proxmox inventory source
+- stackpath_compute - StackPath Edge Computing inventory source
+
+New Modules
+-----------
+
+Cloud
+~~~~~
+
+scaleway
+^^^^^^^^
+
+- scaleway_database_backup - Scaleway database backups management module
+
+Source Control
+~~~~~~~~~~~~~~
+
+gitlab
+^^^^^^
+
+- gitlab_group_members - Manage group members on GitLab Server
+- gitlab_group_variable - Creates, updates, or deletes GitLab groups variables
+
v1.1.0
======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index d38dd8e6b0..9972264b35 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1104,3 +1104,130 @@ releases:
name: sysupgrade
namespace: system
release_date: '2020-08-18'
+ 1.2.0:
+ changes:
+ bugfixes:
+ - aerospike_migrations - handle exception when unstable-cluster is returned
+ (https://github.com/ansible-collections/community.general/pull/900).
+ - django_manage - fix idempotence for ``createcachetable`` (https://github.com/ansible-collections/community.general/pull/699).
+ - docker_container - fix idempotency problem with ``published_ports`` when strict
+ comparison is used and list is empty (https://github.com/ansible-collections/community.general/issues/978).
+ - 'gem - fix get_installed_versions: correctly parse ``default`` version (https://github.com/ansible-collections/community.general/pull/783).'
+ - hashi_vault - add missing ``mount_point`` parameter for approle auth (https://github.com/ansible-collections/community.general/pull/897).
+ - hashi_vault lookup - ``token_path`` in config file overridden by env ``HOME``
+ (https://github.com/ansible-collections/community.general/issues/373).
+ - homebrew_cask - fixed issue where a cask with ``@`` in the name is incorrectly
+ reported as invalid (https://github.com/ansible-collections/community.general/issues/733).
+ - interfaces_file - escape regular expression characters in old value (https://github.com/ansible-collections/community.general/issues/777).
+ - launchd - fix for user-level services (https://github.com/ansible-collections/community.general/issues/896).
+ - nmcli - set ``C`` locale when executing ``nmcli`` (https://github.com/ansible-collections/community.general/issues/989).
+ - parted - fix creating partition when label is changed (https://github.com/ansible-collections/community.general/issues/522).
+ - pkg5 - now works when Python 3 is used on the target (https://github.com/ansible-collections/community.general/pull/789).
+ - postgresql_privs - allow to pass ``PUBLIC`` role written in lowercase letters
+ (https://github.com/ansible-collections/community.general/issues/857).
+ - postgresql_privs - fix the module mistakes a procedure for a function (https://github.com/ansible-collections/community.general/issues/994).
+ - postgresql_privs - rollback if nothing changed (https://github.com/ansible-collections/community.general/issues/885).
+ - postgresql_privs - the module was attempting to revoke grant options even
+ though ``grant_option`` was not specified (https://github.com/ansible-collections/community.general/pull/796).
+ - proxmox_kvm - defer error-checking for non-existent VMs in order to fix idempotency
+ of tasks using ``state=absent`` and properly recognize a success (https://github.com/ansible-collections/community.general/pull/811).
+ - proxmox_kvm - improve handling of long-running tasks by creating a dedicated
+ function (https://github.com/ansible-collections/community.general/pull/831).
+ - slack - fix ``xox[abp]`` token identification to capture everything after
+ ``xox[abp]``, as the token is the only thing that should be in this argument
+ (https://github.com/ansible-collections/community.general/issues/862).
+ - terraform - fix incorrectly reporting a status of unchanged when number of
+ resources added or destroyed are multiples of 10 (https://github.com/ansible-collections/community.general/issues/561).
+ - timezone - support Python3 on macos/darwin (https://github.com/ansible-collections/community.general/pull/945).
+ - zfs - fixed ``invalid character '@' in pool name"`` error when working with
+ snapshots on a root zvol (https://github.com/ansible-collections/community.general/issues/932).
+ minor_changes:
+ - hashi_vault - support ``VAULT_NAMESPACE`` environment variable for namespaced
+ lookups against Vault Enterprise (in addition to the ``namespace=`` flag supported
+ today) (https://github.com/ansible-collections/community.general/pull/929).
+ - hashi_vault lookup - add ``VAULT_TOKEN_FILE`` as env option to specify ``token_file``
+ param (https://github.com/ansible-collections/community.general/issues/373).
+ - hashi_vault lookup - add ``VAULT_TOKEN_PATH`` as env option to specify ``token_path``
+ param (https://github.com/ansible-collections/community.general/issues/373).
+ - ipa_user - add ``userauthtype`` option (https://github.com/ansible-collections/community.general/pull/951).
+ - iptables_state - use FQCN when calling a module from action plugin (https://github.com/ansible-collections/community.general/pull/967).
+ - nagios - add the ``acknowledge`` action (https://github.com/ansible-collections/community.general/pull/820).
+ - nagios - add the ``host`` and ``all`` values for the ``forced_check`` action
+ (https://github.com/ansible-collections/community.general/pull/998).
+ - nagios - add the ``service_check`` action (https://github.com/ansible-collections/community.general/pull/820).
+ - nagios - rename the ``service_check`` action to ``forced_check`` since we
+ now are able to check both a particular service, all services of a particular
+ host and the host itself (https://github.com/ansible-collections/community.general/pull/998).
+ - pkgutil - module can now accept a list of packages (https://github.com/ansible-collections/community.general/pull/799).
+ - pkgutil - module has a new option, ``force``, equivalent to the ``-f`` option
+ to the `pkgutil `_ command (https://github.com/ansible-collections/community.general/pull/799).
+ - pkgutil - module now supports check mode (https://github.com/ansible-collections/community.general/pull/799).
+ - postgresql_privs - add the ``usage_on_types`` option (https://github.com/ansible-collections/community.general/issues/884).
+ - proxmox_kvm - improve code readability (https://github.com/ansible-collections/community.general/pull/934).
+ - pushover - add device parameter (https://github.com/ansible-collections/community.general/pull/802).
+ - redfish_command - add sub-command for ``EnableContinuousBootOverride`` and
+ ``DisableBootOverride`` to allow setting BootSourceOverrideEnabled Redfish
+ property (https://github.com/ansible-collections/community.general/issues/824).
+ - redfish_command - support same reset actions on Managers as on Systems (https://github.com/ansible-collections/community.general/issues/901).
+ - slack - add support for updating messages (https://github.com/ansible-collections/community.general/issues/304).
+ - xml - fixed issue were changed was returned when removing non-existent xpath
+ (https://github.com/ansible-collections/community.general/pull/1007).
+ - zypper_repository - proper failure when python-xml is missing (https://github.com/ansible-collections/community.general/pull/939).
+ release_summary: Regular bimonthly minor release.
+ fragments:
+ - 1.2.0.yml
+ - 522-parted_change_label.yml
+ - 563-update-terraform-status-test.yaml
+ - 699-django_manage-createcachetable-fix-idempotence.yml
+ - 777-interfaces_file-re-escape.yml
+ - 783-fix-gem-installed-versions.yaml
+ - 789-pkg5-wrap-to-modify-package-list.yaml
+ - 796-postgresql_privs-grant-option-bug.yaml
+ - 802-pushover-device-parameter.yml
+ - 811-proxmox-kvm-state-absent.yml
+ - 820_nagios_added_acknowledge_and_servicecheck.yml
+ - 825-bootsource-override-option.yaml
+ - 831-proxmox-kvm-wait.yml
+ - 843-update-slack-messages.yml
+ - 858-postgresql_privs_should_allow_public_role_lowercased.yml
+ - 887-rollback-if-nothing-changed.yml
+ - 892-slack-token-validation.yml
+ - 897-lookup-plugin-hashivault-add-approle-mount-point.yaml
+ - 899_launchd_user_service.yml
+ - 900-aerospike-migration-handle-unstable-cluster.yaml
+ - 902-hashi_vault-token-path.yml
+ - 903-enhance-redfish-manager-reset-actions.yml
+ - 929-vault-namespace-support.yml
+ - 939-zypper_repository_proper_failure_on_missing_python-xml.yml
+ - 941-postgresql_privs_usage_on_types_option.yml
+ - 943-proxmox-kvm-code-cleanup.yml
+ - 945-darwin-timezone-py3.yaml
+ - 951-ipa_user-add-userauthtype-param.yaml
+ - 967-use-fqcn-when-calling-a-module-from-action-plugin.yml
+ - 979-docker_container-published_ports-empty-idempotency.yml
+ - 992-nmcli-locale.yml
+ - 996-postgresql_privs_fix_function_handling.yml
+ - 998-nagios-added_forced_check_for_all_services_or_host.yml
+ - homebrew-cask-at-symbol-fix.yaml
+ - pkgutil-check-mode-etc.yaml
+ - xml-remove-changed.yml
+ - zfs-root-snapshot.yml
+ modules:
+ - description: Manage group members on GitLab Server
+ name: gitlab_group_members
+ namespace: source_control.gitlab
+ - description: Creates, updates, or deletes GitLab groups variables
+ name: gitlab_group_variable
+ namespace: source_control.gitlab
+ - description: Scaleway database backups management module
+ name: scaleway_database_backup
+ namespace: cloud.scaleway
+ plugins:
+ inventory:
+ - description: Proxmox inventory source
+ name: proxmox
+ namespace: null
+ - description: StackPath Edge Computing inventory source
+ name: stackpath_compute
+ namespace: null
+ release_date: '2020-09-30'
diff --git a/changelogs/fragments/1.2.0.yml b/changelogs/fragments/1.2.0.yml
deleted file mode 100644
index db7d861f94..0000000000
--- a/changelogs/fragments/1.2.0.yml
+++ /dev/null
@@ -1 +0,0 @@
-release_summary: Regular bimonthly minor release.
diff --git a/changelogs/fragments/522-parted_change_label.yml b/changelogs/fragments/522-parted_change_label.yml
deleted file mode 100644
index 4d30dec1d8..0000000000
--- a/changelogs/fragments/522-parted_change_label.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - "parted - fix creating partition when label is changed (https://github.com/ansible-collections/community.general/issues/522)."
diff --git a/changelogs/fragments/563-update-terraform-status-test.yaml b/changelogs/fragments/563-update-terraform-status-test.yaml
deleted file mode 100644
index 40b0477bff..0000000000
--- a/changelogs/fragments/563-update-terraform-status-test.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-bugfixes:
- - terraform - fix incorrectly reporting a status of unchanged when
- number of resources added or destroyed are multiples of 10
- (https://github.com/ansible-collections/community.general/issues/561).
diff --git a/changelogs/fragments/699-django_manage-createcachetable-fix-idempotence.yml b/changelogs/fragments/699-django_manage-createcachetable-fix-idempotence.yml
deleted file mode 100644
index 1f6e4054fb..0000000000
--- a/changelogs/fragments/699-django_manage-createcachetable-fix-idempotence.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - django_manage - fix idempotence for ``createcachetable`` (https://github.com/ansible-collections/community.general/pull/699).
diff --git a/changelogs/fragments/777-interfaces_file-re-escape.yml b/changelogs/fragments/777-interfaces_file-re-escape.yml
deleted file mode 100644
index a7daee5670..0000000000
--- a/changelogs/fragments/777-interfaces_file-re-escape.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
-- interfaces_file - escape regular expression characters in old value (https://github.com/ansible-collections/community.general/issues/777).
diff --git a/changelogs/fragments/783-fix-gem-installed-versions.yaml b/changelogs/fragments/783-fix-gem-installed-versions.yaml
deleted file mode 100644
index 5ad70f8295..0000000000
--- a/changelogs/fragments/783-fix-gem-installed-versions.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - "gem - fix get_installed_versions: correctly parse ``default`` version (https://github.com/ansible-collections/community.general/pull/783)."
diff --git a/changelogs/fragments/789-pkg5-wrap-to-modify-package-list.yaml b/changelogs/fragments/789-pkg5-wrap-to-modify-package-list.yaml
deleted file mode 100644
index 8d766485e5..0000000000
--- a/changelogs/fragments/789-pkg5-wrap-to-modify-package-list.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - "pkg5 - now works when Python 3 is used on the target (https://github.com/ansible-collections/community.general/pull/789)."
diff --git a/changelogs/fragments/796-postgresql_privs-grant-option-bug.yaml b/changelogs/fragments/796-postgresql_privs-grant-option-bug.yaml
deleted file mode 100644
index 48799923f2..0000000000
--- a/changelogs/fragments/796-postgresql_privs-grant-option-bug.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - postgresql_privs - the module was attempting to revoke grant options even though ``grant_option`` was not specified (https://github.com/ansible-collections/community.general/pull/796).
diff --git a/changelogs/fragments/802-pushover-device-parameter.yml b/changelogs/fragments/802-pushover-device-parameter.yml
deleted file mode 100644
index a9e86c0627..0000000000
--- a/changelogs/fragments/802-pushover-device-parameter.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - pushover - add device parameter (https://github.com/ansible-collections/community.general/pull/802).
diff --git a/changelogs/fragments/811-proxmox-kvm-state-absent.yml b/changelogs/fragments/811-proxmox-kvm-state-absent.yml
deleted file mode 100644
index 7f4f55d4aa..0000000000
--- a/changelogs/fragments/811-proxmox-kvm-state-absent.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
- - proxmox_kvm - defer error-checking for non-existent VMs in order to fix idempotency of tasks using ``state=absent`` and properly recognize a success (https://github.com/ansible-collections/community.general/pull/811).
diff --git a/changelogs/fragments/820_nagios_added_acknowledge_and_servicecheck.yml b/changelogs/fragments/820_nagios_added_acknowledge_and_servicecheck.yml
deleted file mode 100644
index 33d513ea06..0000000000
--- a/changelogs/fragments/820_nagios_added_acknowledge_and_servicecheck.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-minor_changes:
-- nagios - add the ``acknowledge`` action (https://github.com/ansible-collections/community.general/pull/820).
-- nagios - add the ``service_check`` action (https://github.com/ansible-collections/community.general/pull/820).
diff --git a/changelogs/fragments/825-bootsource-override-option.yaml b/changelogs/fragments/825-bootsource-override-option.yaml
deleted file mode 100644
index b7efc22d58..0000000000
--- a/changelogs/fragments/825-bootsource-override-option.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - redfish_command - add sub-command for ``EnableContinuousBootOverride`` and ``DisableBootOverride`` to allow setting BootSourceOverrideEnabled Redfish property (https://github.com/ansible-collections/community.general/issues/824).
diff --git a/changelogs/fragments/831-proxmox-kvm-wait.yml b/changelogs/fragments/831-proxmox-kvm-wait.yml
deleted file mode 100644
index c1975bbe7d..0000000000
--- a/changelogs/fragments/831-proxmox-kvm-wait.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
- - proxmox_kvm - improve handling of long-running tasks by creating a dedicated function (https://github.com/ansible-collections/community.general/pull/831).
diff --git a/changelogs/fragments/843-update-slack-messages.yml b/changelogs/fragments/843-update-slack-messages.yml
deleted file mode 100644
index 3270df109d..0000000000
--- a/changelogs/fragments/843-update-slack-messages.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - slack - add support for updating messages (https://github.com/ansible-collections/community.general/issues/304).
diff --git a/changelogs/fragments/858-postgresql_privs_should_allow_public_role_lowercased.yml b/changelogs/fragments/858-postgresql_privs_should_allow_public_role_lowercased.yml
deleted file mode 100644
index 1e51ec729b..0000000000
--- a/changelogs/fragments/858-postgresql_privs_should_allow_public_role_lowercased.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- postgresql_privs - allow to pass ``PUBLIC`` role written in lowercase letters (https://github.com/ansible-collections/community.general/issues/857).
diff --git a/changelogs/fragments/887-rollback-if-nothing-changed.yml b/changelogs/fragments/887-rollback-if-nothing-changed.yml
deleted file mode 100644
index 7ae40ebb5a..0000000000
--- a/changelogs/fragments/887-rollback-if-nothing-changed.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- postgresql_privs - rollback if nothing changed (https://github.com/ansible-collections/community.general/issues/885).
diff --git a/changelogs/fragments/892-slack-token-validation.yml b/changelogs/fragments/892-slack-token-validation.yml
deleted file mode 100644
index 40eef1fdcc..0000000000
--- a/changelogs/fragments/892-slack-token-validation.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
- - slack - fix ``xox[abp]`` token identification to capture everything after ``xox[abp]``, as the token is the only thing that should be in this argument (https://github.com/ansible-collections/community.general/issues/862).
diff --git a/changelogs/fragments/897-lookup-plugin-hashivault-add-approle-mount-point.yaml b/changelogs/fragments/897-lookup-plugin-hashivault-add-approle-mount-point.yaml
deleted file mode 100644
index cd2f449bd0..0000000000
--- a/changelogs/fragments/897-lookup-plugin-hashivault-add-approle-mount-point.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
- - hashi_vault - add missing ``mount_point`` parameter for approle auth (https://github.com/ansible-collections/community.general/pull/897).
diff --git a/changelogs/fragments/899_launchd_user_service.yml b/changelogs/fragments/899_launchd_user_service.yml
deleted file mode 100644
index 5abca2a6a7..0000000000
--- a/changelogs/fragments/899_launchd_user_service.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- launchd - fix for user-level services (https://github.com/ansible-collections/community.general/issues/896).
diff --git a/changelogs/fragments/900-aerospike-migration-handle-unstable-cluster.yaml b/changelogs/fragments/900-aerospike-migration-handle-unstable-cluster.yaml
deleted file mode 100644
index ac8c0d0869..0000000000
--- a/changelogs/fragments/900-aerospike-migration-handle-unstable-cluster.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-bugfixes:
- - aerospike_migrations - handle exception when unstable-cluster is returned (https://github.com/ansible-collections/community.general/pull/900).
diff --git a/changelogs/fragments/902-hashi_vault-token-path.yml b/changelogs/fragments/902-hashi_vault-token-path.yml
deleted file mode 100644
index 5233b3d105..0000000000
--- a/changelogs/fragments/902-hashi_vault-token-path.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-minor_changes:
- - hashi_vault lookup - add ``VAULT_TOKEN_PATH`` as env option to specify ``token_path`` param (https://github.com/ansible-collections/community.general/issues/373).
- - hashi_vault lookup - add ``VAULT_TOKEN_FILE`` as env option to specify ``token_file`` param (https://github.com/ansible-collections/community.general/issues/373).
-bugfixes:
- - hashi_vault lookup - ``token_path`` in config file overridden by env ``HOME`` (https://github.com/ansible-collections/community.general/issues/373).
diff --git a/changelogs/fragments/903-enhance-redfish-manager-reset-actions.yml b/changelogs/fragments/903-enhance-redfish-manager-reset-actions.yml
deleted file mode 100644
index 14109dbe8f..0000000000
--- a/changelogs/fragments/903-enhance-redfish-manager-reset-actions.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - redfish_command - support same reset actions on Managers as on Systems (https://github.com/ansible-collections/community.general/issues/901).
diff --git a/changelogs/fragments/929-vault-namespace-support.yml b/changelogs/fragments/929-vault-namespace-support.yml
deleted file mode 100644
index bf22978aff..0000000000
--- a/changelogs/fragments/929-vault-namespace-support.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-minor_changes:
- - hashi_vault - support ``VAULT_NAMESPACE`` environment variable for namespaced lookups against Vault Enterprise (in addition to the ``namespace=`` flag supported today) (https://github.com/ansible-collections/community.general/pull/929).
diff --git a/changelogs/fragments/939-zypper_repository_proper_failure_on_missing_python-xml.yml b/changelogs/fragments/939-zypper_repository_proper_failure_on_missing_python-xml.yml
deleted file mode 100644
index 7917972bb0..0000000000
--- a/changelogs/fragments/939-zypper_repository_proper_failure_on_missing_python-xml.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - zypper_repository - proper failure when python-xml is missing (https://github.com/ansible-collections/community.general/pull/939).
diff --git a/changelogs/fragments/941-postgresql_privs_usage_on_types_option.yml b/changelogs/fragments/941-postgresql_privs_usage_on_types_option.yml
deleted file mode 100644
index bfcafe5cd5..0000000000
--- a/changelogs/fragments/941-postgresql_privs_usage_on_types_option.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
-- postgresql_privs - add the ``usage_on_types`` option (https://github.com/ansible-collections/community.general/issues/884).
diff --git a/changelogs/fragments/943-proxmox-kvm-code-cleanup.yml b/changelogs/fragments/943-proxmox-kvm-code-cleanup.yml
deleted file mode 100644
index eab6f3a3e9..0000000000
--- a/changelogs/fragments/943-proxmox-kvm-code-cleanup.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-minor_changes:
- - proxmox_kvm - improve code readability (https://github.com/ansible-collections/community.general/pull/934).
diff --git a/changelogs/fragments/945-darwin-timezone-py3.yaml b/changelogs/fragments/945-darwin-timezone-py3.yaml
deleted file mode 100644
index 98725b9454..0000000000
--- a/changelogs/fragments/945-darwin-timezone-py3.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- timezone - support Python3 on macos/darwin (https://github.com/ansible-collections/community.general/pull/945).
diff --git a/changelogs/fragments/951-ipa_user-add-userauthtype-param.yaml b/changelogs/fragments/951-ipa_user-add-userauthtype-param.yaml
deleted file mode 100644
index c13a83d3c9..0000000000
--- a/changelogs/fragments/951-ipa_user-add-userauthtype-param.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-minor_changes:
- - "ipa_user - add ``userauthtype`` option (https://github.com/ansible-collections/community.general/pull/951)."
diff --git a/changelogs/fragments/967-use-fqcn-when-calling-a-module-from-action-plugin.yml b/changelogs/fragments/967-use-fqcn-when-calling-a-module-from-action-plugin.yml
deleted file mode 100644
index 052e412404..0000000000
--- a/changelogs/fragments/967-use-fqcn-when-calling-a-module-from-action-plugin.yml
+++ /dev/null
@@ -1,4 +0,0 @@
----
-minor_changes:
- - iptables_state - use FQCN when calling a module from action plugin
- (https://github.com/ansible-collections/community.general/pull/967).
diff --git a/changelogs/fragments/979-docker_container-published_ports-empty-idempotency.yml b/changelogs/fragments/979-docker_container-published_ports-empty-idempotency.yml
deleted file mode 100644
index 5df2f7ca12..0000000000
--- a/changelogs/fragments/979-docker_container-published_ports-empty-idempotency.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- "docker_container - fix idempotency problem with ``published_ports`` when strict comparison is used and list is empty (https://github.com/ansible-collections/community.general/issues/978)."
diff --git a/changelogs/fragments/992-nmcli-locale.yml b/changelogs/fragments/992-nmcli-locale.yml
deleted file mode 100644
index 599d795b12..0000000000
--- a/changelogs/fragments/992-nmcli-locale.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- "nmcli - set ``C`` locale when executing ``nmcli`` (https://github.com/ansible-collections/community.general/issues/989)."
diff --git a/changelogs/fragments/996-postgresql_privs_fix_function_handling.yml b/changelogs/fragments/996-postgresql_privs_fix_function_handling.yml
deleted file mode 100644
index 975cf3cd59..0000000000
--- a/changelogs/fragments/996-postgresql_privs_fix_function_handling.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
-- postgresql_privs - fix the module mistakes a procedure for a function (https://github.com/ansible-collections/community.general/issues/994).
diff --git a/changelogs/fragments/998-nagios-added_forced_check_for_all_services_or_host.yml b/changelogs/fragments/998-nagios-added_forced_check_for_all_services_or_host.yml
deleted file mode 100644
index bfa1397e08..0000000000
--- a/changelogs/fragments/998-nagios-added_forced_check_for_all_services_or_host.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-minor_changes:
-- nagios - rename the ``service_check`` action to ``forced_check`` since we now are able to check both a particular service, all services of a particular host and the host itself (https://github.com/ansible-collections/community.general/pull/998).
-- nagios - add the ``host`` and ``all`` values for the ``forced_check`` action (https://github.com/ansible-collections/community.general/pull/998).
diff --git a/changelogs/fragments/homebrew-cask-at-symbol-fix.yaml b/changelogs/fragments/homebrew-cask-at-symbol-fix.yaml
deleted file mode 100644
index 2b7d51bc52..0000000000
--- a/changelogs/fragments/homebrew-cask-at-symbol-fix.yaml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - homebrew_cask - fixed issue where a cask with ``@`` in the name is incorrectly reported as invalid (https://github.com/ansible-collections/community.general/issues/733).
diff --git a/changelogs/fragments/pkgutil-check-mode-etc.yaml b/changelogs/fragments/pkgutil-check-mode-etc.yaml
deleted file mode 100644
index 9c659ba110..0000000000
--- a/changelogs/fragments/pkgutil-check-mode-etc.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-minor_changes:
- - pkgutil - module now supports check mode (https://github.com/ansible-collections/community.general/pull/799).
- - pkgutil - module can now accept a list of packages (https://github.com/ansible-collections/community.general/pull/799).
- - pkgutil - module has a new option, ``force``, equivalent to the ``-f`` option to the `pkgutil `_ command (https://github.com/ansible-collections/community.general/pull/799).
diff --git a/changelogs/fragments/xml-remove-changed.yml b/changelogs/fragments/xml-remove-changed.yml
deleted file mode 100644
index f1fc50b32c..0000000000
--- a/changelogs/fragments/xml-remove-changed.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-minor_changes:
- - xml - fixed issue were changed was returned when removing non-existent xpath (https://github.com/ansible-collections/community.general/pull/1007).
diff --git a/changelogs/fragments/zfs-root-snapshot.yml b/changelogs/fragments/zfs-root-snapshot.yml
deleted file mode 100644
index 13b5e8ce0c..0000000000
--- a/changelogs/fragments/zfs-root-snapshot.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-bugfixes:
- - zfs - fixed ``invalid character '@' in pool name"`` error when working with snapshots on a root zvol (https://github.com/ansible-collections/community.general/issues/932).