From 438063efb08d0d364bc9a32ee49f0da0188827a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ne=C4=8Das?= Date: Thu, 9 Jun 2022 11:17:21 +0200 Subject: [PATCH] Release 2.1.0-1 (#529) * Release 2.1.0-1 * Remove fragments --- CHANGELOG.rst | 22 ++++++++++++++ build.sh | 6 ++-- changelogs/changelog.yaml | 30 +++++++++++++++++++ .../fragments/483-ovirt_vm-fix-None-args.yml | 3 -- .../503-fix-ansible-ModuleNotFoundError.yml | 3 -- ...ted_engine_setup-use-firewalld-command.yml | 3 -- .../515-add-convert_to_bytes-filter.yml | 3 -- .../fragments/516-remove-distutils-usage.yml | 3 -- ...setup-allow-to-disable-cert-validation.yml | 3 -- changelogs/fragments/518-ci-changes.yml | 3 -- changelogs/fragments/519-sync-cloud_py.yml | 3 -- changelogs/fragments/521-optional-cleanup.yml | 3 -- .../524-ovirt_vm-add-wait_after_lease.yml | 3 -- .../525-ovirt_vm-check-if-snap-exists.yml | 3 -- galaxy.yml | 2 +- ovirt-ansible-collection.spec.in | 12 ++++++++ 16 files changed, 68 insertions(+), 37 deletions(-) delete mode 100644 changelogs/fragments/483-ovirt_vm-fix-None-args.yml delete mode 100644 changelogs/fragments/503-fix-ansible-ModuleNotFoundError.yml delete mode 100644 changelogs/fragments/508-ovirt_hosted_engine_setup-use-firewalld-command.yml delete mode 100644 changelogs/fragments/515-add-convert_to_bytes-filter.yml delete mode 100644 changelogs/fragments/516-remove-distutils-usage.yml delete mode 100644 changelogs/fragments/517-engien_setup-allow-to-disable-cert-validation.yml delete mode 100644 changelogs/fragments/518-ci-changes.yml delete mode 100644 changelogs/fragments/519-sync-cloud_py.yml delete mode 100644 changelogs/fragments/521-optional-cleanup.yml delete mode 100644 changelogs/fragments/524-ovirt_vm-add-wait_after_lease.yml delete mode 100644 changelogs/fragments/525-ovirt_vm-check-if-snap-exists.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 475cdd73..adab9a0e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ ovirt.ovirt Release Notes .. contents:: Topics +v2.1.0 +====== + +Minor Changes +------------- + +- Add convert_to_bytes filter (https://github.com/oVirt/ovirt-ansible-collection/pull/515). +- automation - Use python38 on el8 with ansible-core 2.12 and python39 on el9 with ansible-core 2.13 (https://github.com/oVirt/ovirt-ansible-collection/pull/518). +- cloud.py - Sync with orgin (https://github.com/oVirt/ovirt-ansible-collection/pull/519). +- engine_setup - Allow to disable cert validation (https://github.com/oVirt/ovirt-ansible-collection/pull/517). +- hosted_engine_setup - make vdsm config cleanup optional (https://github.com/oVirt/ovirt-ansible-collection/pull/521). +- ovirt - Remove deprecated distutils (https://github.com/oVirt/ovirt-ansible-collection/pull/516). +- ovirt_vm - add wait_after_lease (https://github.com/oVirt/ovirt-ansible-collection/pull/524). + +Bugfixes +-------- + +- hosted_engine_setup - Fix "'ansible' ModuleNotFoundError" in Disaster Recovery scripts (https://github.com/oVirt/ovirt-ansible-collection/pull/503). +- hosted_engine_setup - Use command instead of firewalld module (https://github.com/oVirt/ovirt-ansible-collection/pull/508). +- ovirt_vm - Fix parsing None arguments (https://github.com/oVirt/ovirt-ansible-collection/pull/486). +- ovirt_vm - check if the snapshot exists (https://github.com/oVirt/ovirt-ansible-collection/pull/525). + v2.0.4 ====== diff --git a/build.sh b/build.sh index 6e6220b1..ddd2f322 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,8 @@ #!/bin/bash -VERSION="2.0.5" -MILESTONE=master -RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)" +VERSION="2.1.0" +MILESTONE="" +RPM_RELEASE="1" BUILD_TYPE=$2 BUILD_PATH=$3 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index baeda996..ed31578e 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -712,3 +712,33 @@ releases: - 509-fix-keycloak-activation.yml - 510-cluster-upgrade-fix-wait_condition.yml release_date: '2022-06-03' + 2.1.0: + changes: + bugfixes: + - hosted_engine_setup - Fix "'ansible' ModuleNotFoundError" in Disaster Recovery + scripts (https://github.com/oVirt/ovirt-ansible-collection/pull/503). + - hosted_engine_setup - Use command instead of firewalld module (https://github.com/oVirt/ovirt-ansible-collection/pull/508). + - ovirt_vm - Fix parsing None arguments (https://github.com/oVirt/ovirt-ansible-collection/pull/486). + - ovirt_vm - check if the snapshot exists (https://github.com/oVirt/ovirt-ansible-collection/pull/525). + minor_changes: + - Add convert_to_bytes filter (https://github.com/oVirt/ovirt-ansible-collection/pull/515). + - automation - Use python38 on el8 with ansible-core 2.12 and python39 on el9 + with ansible-core 2.13 (https://github.com/oVirt/ovirt-ansible-collection/pull/518). + - cloud.py - Sync with orgin (https://github.com/oVirt/ovirt-ansible-collection/pull/519). + - engine_setup - Allow to disable cert validation (https://github.com/oVirt/ovirt-ansible-collection/pull/517). + - hosted_engine_setup - make vdsm config cleanup optional (https://github.com/oVirt/ovirt-ansible-collection/pull/521). + - ovirt - Remove deprecated distutils (https://github.com/oVirt/ovirt-ansible-collection/pull/516). + - ovirt_vm - add wait_after_lease (https://github.com/oVirt/ovirt-ansible-collection/pull/524). + fragments: + - 483-ovirt_vm-fix-None-args.yml + - 503-fix-ansible-ModuleNotFoundError.yml + - 508-ovirt_hosted_engine_setup-use-firewalld-command.yml + - 515-add-convert_to_bytes-filter.yml + - 516-remove-distutils-usage.yml + - 517-engien_setup-allow-to-disable-cert-validation.yml + - 518-ci-changes.yml + - 519-sync-cloud_py.yml + - 521-optional-cleanup.yml + - 524-ovirt_vm-add-wait_after_lease.yml + - 525-ovirt_vm-check-if-snap-exists.yml + release_date: '2022-06-09' diff --git a/changelogs/fragments/483-ovirt_vm-fix-None-args.yml b/changelogs/fragments/483-ovirt_vm-fix-None-args.yml deleted file mode 100644 index 84d2b80e..00000000 --- a/changelogs/fragments/483-ovirt_vm-fix-None-args.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ovirt_vm - Fix parsing None arguments (https://github.com/oVirt/ovirt-ansible-collection/pull/486). diff --git a/changelogs/fragments/503-fix-ansible-ModuleNotFoundError.yml b/changelogs/fragments/503-fix-ansible-ModuleNotFoundError.yml deleted file mode 100644 index 9d274309..00000000 --- a/changelogs/fragments/503-fix-ansible-ModuleNotFoundError.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - hosted_engine_setup - Fix "'ansible' ModuleNotFoundError" in Disaster Recovery scripts (https://github.com/oVirt/ovirt-ansible-collection/pull/503). diff --git a/changelogs/fragments/508-ovirt_hosted_engine_setup-use-firewalld-command.yml b/changelogs/fragments/508-ovirt_hosted_engine_setup-use-firewalld-command.yml deleted file mode 100644 index cde653fc..00000000 --- a/changelogs/fragments/508-ovirt_hosted_engine_setup-use-firewalld-command.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - hosted_engine_setup - Use command instead of firewalld module (https://github.com/oVirt/ovirt-ansible-collection/pull/508). diff --git a/changelogs/fragments/515-add-convert_to_bytes-filter.yml b/changelogs/fragments/515-add-convert_to_bytes-filter.yml deleted file mode 100644 index 4c59d982..00000000 --- a/changelogs/fragments/515-add-convert_to_bytes-filter.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - Add convert_to_bytes filter (https://github.com/oVirt/ovirt-ansible-collection/pull/515). diff --git a/changelogs/fragments/516-remove-distutils-usage.yml b/changelogs/fragments/516-remove-distutils-usage.yml deleted file mode 100644 index f0cc0bfa..00000000 --- a/changelogs/fragments/516-remove-distutils-usage.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - ovirt - Remove deprecated distutils (https://github.com/oVirt/ovirt-ansible-collection/pull/516). diff --git a/changelogs/fragments/517-engien_setup-allow-to-disable-cert-validation.yml b/changelogs/fragments/517-engien_setup-allow-to-disable-cert-validation.yml deleted file mode 100644 index d24e0e40..00000000 --- a/changelogs/fragments/517-engien_setup-allow-to-disable-cert-validation.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - engine_setup - Allow to disable cert validation (https://github.com/oVirt/ovirt-ansible-collection/pull/517). diff --git a/changelogs/fragments/518-ci-changes.yml b/changelogs/fragments/518-ci-changes.yml deleted file mode 100644 index 848c6188..00000000 --- a/changelogs/fragments/518-ci-changes.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - automation - Use python38 on el8 with ansible-core 2.12 and python39 on el9 with ansible-core 2.13 (https://github.com/oVirt/ovirt-ansible-collection/pull/518). diff --git a/changelogs/fragments/519-sync-cloud_py.yml b/changelogs/fragments/519-sync-cloud_py.yml deleted file mode 100644 index 94a097b3..00000000 --- a/changelogs/fragments/519-sync-cloud_py.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - cloud.py - Sync with orgin (https://github.com/oVirt/ovirt-ansible-collection/pull/519). diff --git a/changelogs/fragments/521-optional-cleanup.yml b/changelogs/fragments/521-optional-cleanup.yml deleted file mode 100644 index 9a47dcdd..00000000 --- a/changelogs/fragments/521-optional-cleanup.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - hosted_engine_setup - make vdsm config cleanup optional (https://github.com/oVirt/ovirt-ansible-collection/pull/521). diff --git a/changelogs/fragments/524-ovirt_vm-add-wait_after_lease.yml b/changelogs/fragments/524-ovirt_vm-add-wait_after_lease.yml deleted file mode 100644 index 10dd21fe..00000000 --- a/changelogs/fragments/524-ovirt_vm-add-wait_after_lease.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - ovirt_vm - add wait_after_lease (https://github.com/oVirt/ovirt-ansible-collection/pull/524). diff --git a/changelogs/fragments/525-ovirt_vm-check-if-snap-exists.yml b/changelogs/fragments/525-ovirt_vm-check-if-snap-exists.yml deleted file mode 100644 index 900b7da9..00000000 --- a/changelogs/fragments/525-ovirt_vm-check-if-snap-exists.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ovirt_vm - check if the snapshot exists (https://github.com/oVirt/ovirt-ansible-collection/pull/525). diff --git a/galaxy.yml b/galaxy.yml index 1deccd1a..be80718b 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: "@NAMESPACE@" name: "@NAME@" -version: 2.0.5 +version: 2.1.0 authors: - Martin Necas license: diff --git a/ovirt-ansible-collection.spec.in b/ovirt-ansible-collection.spec.in index c306dd7b..c08a7461 100644 --- a/ovirt-ansible-collection.spec.in +++ b/ovirt-ansible-collection.spec.in @@ -87,6 +87,18 @@ sh build.sh install %{collectionname} %license licenses %changelog +* Thu Jun 9 2022 Martin Necas - 2.1.0-1 +- Add convert_to_bytes filter +- automation - Use python38 on el8 with ansible-core 2.12 and python39 on el9 with ansible-core 2.13 +- engine_setup - Allow to disable cert validation +- ovirt - Remove deprecated distutils +- ovirt_vm - add wait_after_lease +- ovirt_vm - Fix parsing None arguments +- ovirt_vm - check if the snapshot exists +- hosted_engine_setup - make vdsm config cleanup optional +- hosted_engine_setup - Fix "'ansible' ModuleNotFoundError" in Disaster Recovery scripts +- hosted_engine_setup - Use command instead of firewalld module + * Fri Jun 3 2022 Martin Necas - 2.0.4-1 - Fix the admin user name when using keycloak - Use cryptography < 37.0.0, as 37.0.0 emits a warning that fails testing