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.1.3 #718

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


v3.1.3
======

Bugfixes
--------

- HE - add back dependency on python3-jmespath (https://github.com/oVirt/ovirt-ansible-collection/pull/701)
- HE - drop remaining filters using netaddr (https://github.com/oVirt/ovirt-ansible-collection/pull/702)
- HE - drop usage of ipaddr filters and remove dependency on python-netaddr (https://github.com/oVirt/ovirt-ansible-collection/pull/696)
- HE - fix ipv4 and ipv6 check after dropping netaddr (https://github.com/oVirt/ovirt-ansible-collection/pull/704)
- hosted_engine_setup - Update README (https://github.com/oVirt/ovirt-ansible-collection/pull/706)
- 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)

v3.1.1
======

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

VERSION="3.1.3"
MILESTONE="master"
# MILESTONE=""
RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)"
# RPM_RELEASE="1"
# 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
20 changes: 20 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -935,3 +935,23 @@ releases:
- 684-ovirt_cluster_info-fix-example-patter.yml
- 687-ovirt_host-fix-refreshed-state-action.yml
release_date: '2023-03-03'
3.1.3:
changes:
bugfixes:
- HE - add back dependency on python3-jmespath (https://github.com/oVirt/ovirt-ansible-collection/pull/701)
- HE - drop remaining filters using netaddr (https://github.com/oVirt/ovirt-ansible-collection/pull/702)
- HE - drop usage of ipaddr filters and remove dependency on python-netaddr
(https://github.com/oVirt/ovirt-ansible-collection/pull/696)
- HE - fix ipv4 and ipv6 check after dropping netaddr (https://github.com/oVirt/ovirt-ansible-collection/pull/704)
- hosted_engine_setup - Update README (https://github.com/oVirt/ovirt-ansible-collection/pull/706)
- 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)
fragments:
- 696-drop-netaddr.yml
- 700-fix-directlun.yml
- 701-fix-jmespath.yml
- 702-drop-netaddr2.yml
- 704-drop-netaddr3.yml
- 706-he-update-README.yml
- 712-ovirt_quota-fix-storage-size-typecast.yml
release_date: '2023-08-23'
3 changes: 0 additions & 3 deletions changelogs/fragments/696-drop-netaddr.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/700-fix-directlun.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/701-fix-jmespath.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/702-drop-netaddr2.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/704-drop-netaddr3.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/706-he-update-README.yml

This file was deleted.

This file was deleted.

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

%changelog
* Wed Aug 23 2023 Martin Necas <mnecas@redhat.com> - 3.1.3-1
- HE - add back dependency on python3-jmespath
- HE - drop remaining filters using netaddr
- HE - drop usage of ipaddr filters and remove dependency on python-netaddr
- HE - fix ipv4 and ipv6 check after dropping netaddr
- hosted_engine_setup - Update README
- ovirt_disk - Fix issue in detaching the direct LUN
- ovirt_quota - Convert storage size to integer

* Thu Mar 23 2023 Martin Necas <mnecas@redhat.com> - 3.1.2-1
- Add Python 3.11 subpackage to be usable in ansible-core 2.14 for el8

Expand Down
Loading