diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1dd945e1f..79c0a6181 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 63b727f20..5def314bf 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -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' diff --git a/changelogs/fragments/1241-vmware_vm_info-add_the_posibility_to_get_only_one_vm_by_name.yaml b/changelogs/fragments/1241-vmware_vm_info-add_the_posibility_to_get_only_one_vm_by_name.yaml deleted file mode 100644 index 844767222..000000000 --- a/changelogs/fragments/1241-vmware_vm_info-add_the_posibility_to_get_only_one_vm_by_name.yaml +++ /dev/null @@ -1,3 +0,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) diff --git a/changelogs/fragments/1243-vmware-dvs-host-uplink-ordering.yml b/changelogs/fragments/1243-vmware-dvs-host-uplink-ordering.yml deleted file mode 100644 index 42ce61b22..000000000 --- a/changelogs/fragments/1243-vmware-dvs-host-uplink-ordering.yml +++ /dev/null @@ -1,3 +0,0 @@ -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). diff --git a/changelogs/fragments/fix_shutdownguest_state_idempotency.yml b/changelogs/fragments/fix_shutdownguest_state_idempotency.yml deleted file mode 100644 index c11af16d7..000000000 --- a/changelogs/fragments/fix_shutdownguest_state_idempotency.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - vmware_guest_powerstate - `shutdownguest` power state is not idempotent (https://github.com/ansible-collections/community.vmware/pull/1227). diff --git a/changelogs/fragments/vmware_vm_config_option.yml b/changelogs/fragments/vmware_vm_config_option.yml deleted file mode 100644 index 21ad4b0e0..000000000 --- a/changelogs/fragments/vmware_vm_config_option.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: - - vmware_vm_config_option - Add support_usb_controller, support_ethernet_card, support_disk_controller properties in output of getting VM default configs (https://github.com/ansible-collections/community.vmware/pull/1202). -deprecated_features: - - vmware_vm_config_option - Dict item names in result will be changed from strings joined with spaces to strings joined with underlines, e.g. `Guest fullname` will be changed to `guest_fullname` in version 3. diff --git a/docs/community.vmware.vmware_httpapi.rst b/docs/community.vmware.vmware_httpapi.rst index 6bfb53042..a00609b77 100644 --- a/docs/community.vmware.vmware_httpapi.rst +++ b/docs/community.vmware.vmware_httpapi.rst @@ -35,7 +35,7 @@ Status Authors ~~~~~~~ -- Abhijeet Kasurde (Akasurde) +- Abhijeet Kasurde (@Akasurde) .. hint:: diff --git a/docs/community.vmware.vmware_tools_connection.rst b/docs/community.vmware.vmware_tools_connection.rst index 8b4cf127b..c82524183 100644 --- a/docs/community.vmware.vmware_tools_connection.rst +++ b/docs/community.vmware.vmware_tools_connection.rst @@ -192,6 +192,8 @@ Parameters
ansible_vmware_tools_user
is used for connecting to the VM.ansible_user
is used by Ansible on the VM.true
, please make sure Python >= 2.7.9 is installed on the given machine.