diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2c80822d1b..7453a970e0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,36 @@ Community General Release Notes .. contents:: Topics +v1.3.3 +====== + +Release Summary +--------------- + +Bugfix/security release that addresses CVE-2021-20178. + +Major Changes +------------- + +- For community.general 2.0.0, the kubevirt modules will be moved to the `community.kubevirt `_ collection. + A redirection will be inserted so that users using ansible-base 2.10 or newer do not have to change anything. + + If you use Ansible 2.9 and explicitly use kubevirt modules from this collection, you will need to adjust your playbooks and roles to use FQCNs starting with ``community.kubevirt.`` instead of ``community.general.``, + for example replace ``community.general.kubevirt_vm`` in a task by ``community.kubevirt.kubevirt_vm``. + + If you use ansible-base and installed ``community.general`` manually and rely on the kubevirt modules, you have to make sure to install the ``community.kubevirt`` collection as well. + If you are using FQCNs, for example ``community.general.kubevirt_vm`` instead of ``kubevirt_vm``, it will continue working, but we still recommend to adjust the FQCNs as well. + +Security Fixes +-------------- + +- snmp_facts - **CVE-2021-20178** - hide user sensitive information such as ``privkey`` and ``authkey`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1621). + +Bugfixes +-------- + +- terraform - fix ``init_reconfigure`` option for proper CLI args (https://github.com/ansible-collections/community.general/pull/1620). + v1.3.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 899851955f..ef1e7c0e82 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1764,3 +1764,41 @@ releases: - jira_improvements.yaml - oc-migration.yml release_date: '2021-01-04' + 1.3.3: + changes: + bugfixes: + - terraform - fix ``init_reconfigure`` option for proper CLI args (https://github.com/ansible-collections/community.general/pull/1620). + major_changes: + - 'For community.general 2.0.0, the kubevirt modules will be moved to the `community.kubevirt + `_ collection. + + A redirection will be inserted so that users using ansible-base 2.10 or newer + do not have to change anything. + + + If you use Ansible 2.9 and explicitly use kubevirt modules from this collection, + you will need to adjust your playbooks and roles to use FQCNs starting with + ``community.kubevirt.`` instead of ``community.general.``, + + for example replace ``community.general.kubevirt_vm`` in a task by ``community.kubevirt.kubevirt_vm``. + + + If you use ansible-base and installed ``community.general`` manually and rely + on the kubevirt modules, you have to make sure to install the ``community.kubevirt`` + collection as well. + + If you are using FQCNs, for example ``community.general.kubevirt_vm`` instead + of ``kubevirt_vm``, it will continue working, but we still recommend to adjust + the FQCNs as well. + + ' + release_summary: Bugfix/security release that addresses CVE-2021-20178. + security_fixes: + - snmp_facts - **CVE-2021-20178** - hide user sensitive information such as + ``privkey`` and ``authkey`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1621). + fragments: + - 1.3.3.yml + - 1620-terraform_init_reconfigure_fix.yml + - kubevirt-migration.yml + - snmp_facts.yml + release_date: '2021-01-13' diff --git a/changelogs/fragments/1.3.3.yml b/changelogs/fragments/1.3.3.yml deleted file mode 100644 index 1fb2c17719..0000000000 --- a/changelogs/fragments/1.3.3.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Bugfix/security release that addresses CVE-2021-20178. diff --git a/changelogs/fragments/1620-terraform_init_reconfigure_fix.yml b/changelogs/fragments/1620-terraform_init_reconfigure_fix.yml deleted file mode 100644 index 9b8bab8f49..0000000000 --- a/changelogs/fragments/1620-terraform_init_reconfigure_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- terraform - fix ``init_reconfigure`` option for proper CLI args (https://github.com/ansible-collections/community.general/pull/1620). diff --git a/changelogs/fragments/kubevirt-migration.yml b/changelogs/fragments/kubevirt-migration.yml deleted file mode 100644 index 249575a8eb..0000000000 --- a/changelogs/fragments/kubevirt-migration.yml +++ /dev/null @@ -1,10 +0,0 @@ -major_changes: -- | - For community.general 2.0.0, the kubevirt modules will be moved to the `community.kubevirt `_ collection. - A redirection will be inserted so that users using ansible-base 2.10 or newer do not have to change anything. - - If you use Ansible 2.9 and explicitly use kubevirt modules from this collection, you will need to adjust your playbooks and roles to use FQCNs starting with ``community.kubevirt.`` instead of ``community.general.``, - for example replace ``community.general.kubevirt_vm`` in a task by ``community.kubevirt.kubevirt_vm``. - - If you use ansible-base and installed ``community.general`` manually and rely on the kubevirt modules, you have to make sure to install the ``community.kubevirt`` collection as well. - If you are using FQCNs, for example ``community.general.kubevirt_vm`` instead of ``kubevirt_vm``, it will continue working, but we still recommend to adjust the FQCNs as well. diff --git a/changelogs/fragments/snmp_facts.yml b/changelogs/fragments/snmp_facts.yml deleted file mode 100644 index 09c5164b5e..0000000000 --- a/changelogs/fragments/snmp_facts.yml +++ /dev/null @@ -1,2 +0,0 @@ -security_fixes: -- 'snmp_facts - **CVE-2021-20178** - hide user sensitive information such as ``privkey`` and ``authkey`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1621).'