Skip to content

Commit

Permalink
prepare 2.2.0 release (#1263)
Browse files Browse the repository at this point in the history
prepare 2.2.0 release

New major release 2.2.0!
ansible-playbook tools/prepare_release.yml

Reviewed-by: Gonéri Le Bouder <[email protected]>
  • Loading branch information
mariolenz authored Mar 28, 2022
1 parent 3362bdf commit 155ba79
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 14 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ community.vmware Release Notes
.. contents:: Topics


v2.2.0
======

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

- vmware_vm_info - Add the posibility to get the configuration informations of only one vm by name. (https://github.com/ansible-collections/community.vmware/pull/1241)

Bugfixes
--------

- vmware_dvs_host - match the list of the host nics in the correct order based on the uplink port name in vCenter (https://github.com/ansible-collections/community.vmware/issues/1242).
- vmware_guest_powerstate - `shutdownguest` power state is not idempotent (https://github.com/ansible-collections/community.vmware/pull/1227).

v2.1.0
======

Expand Down
14 changes: 14 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1137,3 +1137,17 @@ releases:
name: vmware_host_user_manager
namespace: ''
release_date: '2022-02-16'
2.2.0:
changes:
bugfixes:
- vmware_dvs_host - match the list of the host nics in the correct order based
on the uplink port name in vCenter (https://github.com/ansible-collections/community.vmware/issues/1242).
- vmware_guest_powerstate - `shutdownguest` power state is not idempotent (https://github.com/ansible-collections/community.vmware/pull/1227).
minor_changes:
- vmware_vm_info - Add the posibility to get the configuration informations
of only one vm by name. (https://github.com/ansible-collections/community.vmware/pull/1241)
fragments:
- 1241-vmware_vm_info-add_the_posibility_to_get_only_one_vm_by_name.yaml
- 1243-vmware-dvs-host-uplink-ordering.yml
- fix_shutdownguest_state_idempotency.yml
release_date: '2022-03-28'

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/1243-vmware-dvs-host-uplink-ordering.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/fix_shutdownguest_state_idempotency.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/vmware_vm_config_option.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_httpapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Status
Authors
~~~~~~~

- Abhijeet Kasurde (Akasurde)
- Abhijeet Kasurde (@Akasurde)


.. hint::
Expand Down
4 changes: 3 additions & 1 deletion docs/community.vmware.vmware_tools_connection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ Parameters
</td>
<td>
<div>VM username.</div>
<div><code>ansible_vmware_tools_user</code> is used for connecting to the VM.</div>
<div><code>ansible_user</code> is used by Ansible on the VM.</div>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -298,7 +300,7 @@ Status
Authors
~~~~~~~

- Deric Crago <[email protected]>
- Deric Crago (@dericcrago) <[email protected]>


.. hint::
Expand Down
27 changes: 27 additions & 0 deletions docs/community.vmware.vmware_vm_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,21 @@ Parameters
<div>If set to <code>true</code>, please make sure Python &gt;= 2.7.9 is installed on the given machine.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>vm_name</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">string</span>
</div>
</td>
<td>
</td>
<td>
<div>Name of the virtual machine to get related configurations information from.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
Expand Down Expand Up @@ -284,6 +299,18 @@ Examples
- debug:
var: vminfo.virtual_machines
- name: Gather one specific VM
community.vmware.vmware_vm_info:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
vm_name: 'vm_name_as_per_vcenter'
delegate_to: localhost
register: vm_info
- debug:
var: vminfo.virtual_machines
- name: Gather only registered virtual machine templates
community.vmware.vmware_vm_info:
hostname: '{{ vcenter_hostname }}'
Expand Down

0 comments on commit 155ba79

Please sign in to comment.