From 7a70fda7844eefacc750c7c23c3744f377f1b1d0 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 23 Nov 2021 05:52:35 +0100 Subject: [PATCH] Release 4.1.0. --- CHANGELOG.rst | 41 ++++++++++++++++ changelogs/changelog.yaml | 48 +++++++++++++++++++ ...8-nmcli_add_multiple_addresses_support.yml | 4 -- ...386-github_repo-fix-idempotency-issues.yml | 2 - ...-redfish-host-interface-config-support.yml | 2 - .../3661-lxd_container-add-vm-support.yml | 2 - ...dd-redfish-host-interface-info-support.yml | 2 - changelogs/fragments/3694-gitlab-cleanup.yml | 2 - .../fragments/3702-ipmi-encryption-key.yml | 4 -- ...3708-listen_ports_facts-add-ss-support.yml | 3 -- ...rraform-missing-parameters-planned-fix.yml | 4 -- .../3758-pacman-add-stdout-stderr.yml | 3 -- .../3765-extend-open_iscsi-with-rescan.yml | 2 - changelogs/fragments/4.1.0.yml | 1 - 14 files changed, 89 insertions(+), 31 deletions(-) delete mode 100644 changelogs/fragments/1088-nmcli_add_multiple_addresses_support.yml delete mode 100644 changelogs/fragments/2386-github_repo-fix-idempotency-issues.yml delete mode 100644 changelogs/fragments/3632-add-redfish-host-interface-config-support.yml delete mode 100644 changelogs/fragments/3661-lxd_container-add-vm-support.yml delete mode 100644 changelogs/fragments/3693-add-redfish-host-interface-info-support.yml delete mode 100644 changelogs/fragments/3694-gitlab-cleanup.yml delete mode 100644 changelogs/fragments/3702-ipmi-encryption-key.yml delete mode 100644 changelogs/fragments/3708-listen_ports_facts-add-ss-support.yml delete mode 100644 changelogs/fragments/3726-terraform-missing-parameters-planned-fix.yml delete mode 100644 changelogs/fragments/3758-pacman-add-stdout-stderr.yml delete mode 100644 changelogs/fragments/3765-extend-open_iscsi-with-rescan.yml delete mode 100644 changelogs/fragments/4.1.0.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index de54c3539e..c261665a32 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,47 @@ Community General Release Notes This changelog describes changes after version 3.0.0. +v4.1.0 +====== + +Release Summary +--------------- + +Regular bugfix and feature release. + +Minor Changes +------------- + +- gitlab - clean up modules and utils (https://github.com/ansible-collections/community.general/pull/3694). +- ipmi_boot - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). +- ipmi_power - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). +- listen_ports_facts - add support for ``ss`` command besides ``netstat`` (https://github.com/ansible-collections/community.general/pull/3708). +- lxd_container - adds ``type`` option which also allows to operate on virtual machines and not just containers (https://github.com/ansible-collections/community.general/pull/3661). +- nmcli - add multiple addresses support for ``ip4`` parameter (https://github.com/ansible-collections/community.general/issues/1088, https://github.com/ansible-collections/community.general/pull/3738). +- open_iscsi - extended module to allow rescanning of established session for one or all targets (https://github.com/ansible-collections/community.general/issues/3763). +- pacman - add ``stdout`` and ``stderr`` as return values (https://github.com/ansible-collections/community.general/pull/3758). +- redfish_command - add ``GetHostInterfaces`` command to enable reporting Redfish Host Interface information (https://github.com/ansible-collections/community.general/issues/3693). +- redfish_command - add ``SetHostInterface`` command to enable configuring the Redfish Host Interface (https://github.com/ansible-collections/community.general/issues/3632). + +Bugfixes +-------- + +- github_repo - ``private`` and ``description`` attributes should not be set to default values when the repo already exists (https://github.com/ansible-collections/community.general/pull/2386). +- terraform - fix command options being ignored during planned/plan in function ``build_plan`` such as ``lock`` or ``lock_timeout`` (https://github.com/ansible-collections/community.general/issues/3707, https://github.com/ansible-collections/community.general/pull/3726). + +New Plugins +----------- + +Inventory +~~~~~~~~~ + +- xen_orchestra - Xen Orchestra inventory source + +Lookup +~~~~~~ + +- revbitspss - Get secrets from RevBits PAM server + v4.0.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 0123e160cb..89f4b403fb 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1069,3 +1069,51 @@ releases: - 4.0.2.yml - deprecate-ansible-2.9-2.10.yml release_date: '2021-11-16' + 4.1.0: + changes: + bugfixes: + - github_repo - ``private`` and ``description`` attributes should not be set + to default values when the repo already exists (https://github.com/ansible-collections/community.general/pull/2386). + - terraform - fix command options being ignored during planned/plan in function + ``build_plan`` such as ``lock`` or ``lock_timeout`` (https://github.com/ansible-collections/community.general/issues/3707, + https://github.com/ansible-collections/community.general/pull/3726). + minor_changes: + - gitlab - clean up modules and utils (https://github.com/ansible-collections/community.general/pull/3694). + - ipmi_boot - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). + - ipmi_power - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). + - listen_ports_facts - add support for ``ss`` command besides ``netstat`` (https://github.com/ansible-collections/community.general/pull/3708). + - lxd_container - adds ``type`` option which also allows to operate on virtual + machines and not just containers (https://github.com/ansible-collections/community.general/pull/3661). + - nmcli - add multiple addresses support for ``ip4`` parameter (https://github.com/ansible-collections/community.general/issues/1088, + https://github.com/ansible-collections/community.general/pull/3738). + - open_iscsi - extended module to allow rescanning of established session for + one or all targets (https://github.com/ansible-collections/community.general/issues/3763). + - pacman - add ``stdout`` and ``stderr`` as return values (https://github.com/ansible-collections/community.general/pull/3758). + - redfish_command - add ``GetHostInterfaces`` command to enable reporting Redfish + Host Interface information (https://github.com/ansible-collections/community.general/issues/3693). + - redfish_command - add ``SetHostInterface`` command to enable configuring the + Redfish Host Interface (https://github.com/ansible-collections/community.general/issues/3632). + release_summary: Regular bugfix and feature release. + fragments: + - 1088-nmcli_add_multiple_addresses_support.yml + - 2386-github_repo-fix-idempotency-issues.yml + - 3632-add-redfish-host-interface-config-support.yml + - 3661-lxd_container-add-vm-support.yml + - 3693-add-redfish-host-interface-info-support.yml + - 3694-gitlab-cleanup.yml + - 3702-ipmi-encryption-key.yml + - 3708-listen_ports_facts-add-ss-support.yml + - 3726-terraform-missing-parameters-planned-fix.yml + - 3758-pacman-add-stdout-stderr.yml + - 3765-extend-open_iscsi-with-rescan.yml + - 4.1.0.yml + plugins: + inventory: + - description: Xen Orchestra inventory source + name: xen_orchestra + namespace: null + lookup: + - description: Get secrets from RevBits PAM server + name: revbitspss + namespace: null + release_date: '2021-11-23' diff --git a/changelogs/fragments/1088-nmcli_add_multiple_addresses_support.yml b/changelogs/fragments/1088-nmcli_add_multiple_addresses_support.yml deleted file mode 100644 index b78f7790f8..0000000000 --- a/changelogs/fragments/1088-nmcli_add_multiple_addresses_support.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - nmcli - add multiple addresses support for ``ip4`` parameter - (https://github.com/ansible-collections/community.general/issues/1088, https://github.com/ansible-collections/community.general/pull/3738). \ No newline at end of file diff --git a/changelogs/fragments/2386-github_repo-fix-idempotency-issues.yml b/changelogs/fragments/2386-github_repo-fix-idempotency-issues.yml deleted file mode 100644 index 4d1133da0c..0000000000 --- a/changelogs/fragments/2386-github_repo-fix-idempotency-issues.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - github_repo - ``private`` and ``description`` attributes should not be set to default values when the repo already exists (https://github.com/ansible-collections/community.general/pull/2386). diff --git a/changelogs/fragments/3632-add-redfish-host-interface-config-support.yml b/changelogs/fragments/3632-add-redfish-host-interface-config-support.yml deleted file mode 100644 index 15017b6d1c..0000000000 --- a/changelogs/fragments/3632-add-redfish-host-interface-config-support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - redfish_command - add ``SetHostInterface`` command to enable configuring the Redfish Host Interface (https://github.com/ansible-collections/community.general/issues/3632). diff --git a/changelogs/fragments/3661-lxd_container-add-vm-support.yml b/changelogs/fragments/3661-lxd_container-add-vm-support.yml deleted file mode 100644 index 6dd3105733..0000000000 --- a/changelogs/fragments/3661-lxd_container-add-vm-support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - lxd_container - adds ``type`` option which also allows to operate on virtual machines and not just containers (https://github.com/ansible-collections/community.general/pull/3661). diff --git a/changelogs/fragments/3693-add-redfish-host-interface-info-support.yml b/changelogs/fragments/3693-add-redfish-host-interface-info-support.yml deleted file mode 100644 index 5e37610778..0000000000 --- a/changelogs/fragments/3693-add-redfish-host-interface-info-support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - redfish_command - add ``GetHostInterfaces`` command to enable reporting Redfish Host Interface information (https://github.com/ansible-collections/community.general/issues/3693). diff --git a/changelogs/fragments/3694-gitlab-cleanup.yml b/changelogs/fragments/3694-gitlab-cleanup.yml deleted file mode 100644 index 201d3c911c..0000000000 --- a/changelogs/fragments/3694-gitlab-cleanup.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - gitlab - clean up modules and utils (https://github.com/ansible-collections/community.general/pull/3694). diff --git a/changelogs/fragments/3702-ipmi-encryption-key.yml b/changelogs/fragments/3702-ipmi-encryption-key.yml deleted file mode 100644 index c26f392de8..0000000000 --- a/changelogs/fragments/3702-ipmi-encryption-key.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - ipmi_boot - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). - - ipmi_power - add support for user-specified IPMI encryption key (https://github.com/ansible-collections/community.general/issues/3698). diff --git a/changelogs/fragments/3708-listen_ports_facts-add-ss-support.yml b/changelogs/fragments/3708-listen_ports_facts-add-ss-support.yml deleted file mode 100644 index 57909a3ef7..0000000000 --- a/changelogs/fragments/3708-listen_ports_facts-add-ss-support.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - listen_ports_facts - add support for ``ss`` command besides ``netstat`` (https://github.com/ansible-collections/community.general/pull/3708). diff --git a/changelogs/fragments/3726-terraform-missing-parameters-planned-fix.yml b/changelogs/fragments/3726-terraform-missing-parameters-planned-fix.yml deleted file mode 100644 index 4615aad85d..0000000000 --- a/changelogs/fragments/3726-terraform-missing-parameters-planned-fix.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - terraform - fix command options being ignored during planned/plan in function ``build_plan`` such as ``lock`` or ``lock_timeout`` - (https://github.com/ansible-collections/community.general/issues/3707, https://github.com/ansible-collections/community.general/pull/3726). \ No newline at end of file diff --git a/changelogs/fragments/3758-pacman-add-stdout-stderr.yml b/changelogs/fragments/3758-pacman-add-stdout-stderr.yml deleted file mode 100644 index 58bd95aaa9..0000000000 --- a/changelogs/fragments/3758-pacman-add-stdout-stderr.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - pacman - add ``stdout`` and ``stderr`` as return values (https://github.com/ansible-collections/community.general/pull/3758). diff --git a/changelogs/fragments/3765-extend-open_iscsi-with-rescan.yml b/changelogs/fragments/3765-extend-open_iscsi-with-rescan.yml deleted file mode 100644 index 6dc4333a16..0000000000 --- a/changelogs/fragments/3765-extend-open_iscsi-with-rescan.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - open_iscsi - extended module to allow rescanning of established session for one or all targets (https://github.com/ansible-collections/community.general/issues/3763). diff --git a/changelogs/fragments/4.1.0.yml b/changelogs/fragments/4.1.0.yml deleted file mode 100644 index 4b1469c9fe..0000000000 --- a/changelogs/fragments/4.1.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix and feature release.