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 2.4.3 #730

Merged
merged 1 commit into from
Oct 11, 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
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ ovirt.ovirt Release Notes
.. contents:: Topics


v2.4.3
======

Bugfixes
--------

- ovirt_disk - Fix issue in detaching the direct LUN (https://github.com/oVirt/ovirt-ansible-collection/pull/700).
- ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712).
- ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723).

v2.4.2
======

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

VERSION="2.4.3"
MILESTONE="master"
RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)"
# 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
11 changes: 11 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -908,3 +908,14 @@ releases:
- 663-replace-getargspec-with-getfullargspec.yml
- 667-wait-for-host-to-be-in-result-state.yml
release_date: '2023-01-24'
2.4.3:
changes:
bugfixes:
- ovirt_disk - Fix issue in detaching the direct LUN (https://github.com/oVirt/ovirt-ansible-collection/pull/700)
- ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712)
- ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723).
fragments:
- 700-fix-directlun.yml
- 712-ovirt_quota-fix-storage-size-typecast.yml
- 723-ovirt_role-fix-administrative-condition.yml
release_date: '2023-10-11'
3 changes: 0 additions & 3 deletions changelogs/fragments/700-fix-directlun.yml

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 5 additions & 0 deletions ovirt-ansible-collection.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ sh build.sh install %{collectionname}
%license licenses

%changelog
* Wed Oct 11 2023 Martin Necas <[email protected]> - 2.4.3-1
- ovirt_disk - Fix issue in detaching the direct LUN
- ovirt_quota - Convert storage size to integer
- ovirt_role - Fix administrative option when set to False

* Tue Jan 24 2023 Martin Necas <[email protected]> - 2.4.2-1
- info modules - Use dynamic collection name instead of ovirt.ovirt for deprecation warning
- module_utils - Replace `getargspec` with `getfullargspec` to support newer python 3.y versions
Expand Down