Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.2.0 #724

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ ovirt.ovirt Release Notes
.. contents:: Topics


v3.2.0
======

Minor Changes
-------------

- ovirt_vm - Add tpm_enabled (https://github.com/oVirt/ovirt-ansible-collection/pull/722).
- storage_error_resume_behaviour - Support VM storage error resume behaviour "auto_resume", "kill", "leave_paused". (https://github.com/oVirt/ovirt-ansible-collection/pull/721)
- vm_infra - Support boot disk renaming and resizing. (https://github.com/oVirt/ovirt-ansible-collection/pull/705)

Bugfixes
--------

- ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723).

v3.1.3
======

Expand Down
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

VERSION="3.1.4"
MILESTONE="master"
# MILESTONE=""
RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)"
# RPM_RELEASE="1"
VERSION="3.2.0"
# MILESTONE="master"
MILESTONE=""
# RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)"
RPM_RELEASE="1"

BUILD_TYPE=$2
BUILD_PATH=$3
Expand Down
15 changes: 15 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -955,3 +955,18 @@ releases:
- 706-he-update-README.yml
- 712-ovirt_quota-fix-storage-size-typecast.yml
release_date: '2023-08-23'
3.1.4:
changes:
bugfixes:
- ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723).
minor_changes:
- ovirt_vm - Add tpm_enabled (https://github.com/oVirt/ovirt-ansible-collection/pull/722).
- storage_error_resume_behaviour - Support VM storage error resume behaviour
"auto_resume", "kill", "leave_paused". (https://github.com/oVirt/ovirt-ansible-collection/pull/721)
- vm_infra - Support boot disk renaming and resizing. (https://github.com/oVirt/ovirt-ansible-collection/pull/705)
fragments:
- 705-support-boot-disk-resizing-renaming.yml
- 721-enhancement-vm-storage-error-resume-behaviour.yml
- 722-add-tpm-enabled.yml
- 723-ovirt_role-fix-administrative-condition.yml
release_date: '2023-10-02'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: "@NAMESPACE@"
name: "@NAME@"
version: 3.1.4
version: 3.2.0
authors:
- Martin Necas <[email protected]>
license:
Expand Down
6 changes: 6 additions & 0 deletions ovirt-ansible-collection.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ sh build.sh install %{collectionname}
%license licenses

%changelog
* Mon Oct 2 2023 Martin Necas <[email protected]> - 3.2.0-1
- ovirt_vm - Add tpm_enabled
- storage_error_resume_behaviour - Support VM storage error resume behaviour "auto_resume", "kill", "leave_paused"
- vm_infra - Support boot disk renaming and resizing
- ovirt_role - Fix administrative option when set to False

* Wed Aug 23 2023 Martin Necas <[email protected]> - 3.1.3-1
- HE - add back dependency on python3-jmespath
- HE - drop remaining filters using netaddr
Expand Down
Loading