Skip to content

Commit

Permalink
prepare 1.9.0 release (#767)
Browse files Browse the repository at this point in the history
prepare 1.9.0 release

Reviewed-by: https://github.com/apps/ansible-zuul
  • Loading branch information
goneri authored Apr 3, 2021
1 parent 2f9c504 commit 4648ac3
Show file tree
Hide file tree
Showing 194 changed files with 310 additions and 264 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,47 @@ community.vmware Release Notes
.. contents:: Topics


v1.9.0
======

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

- vmware_guest_instant_clone - supported esxi_hostname parameter as an alias (https://github.com/ansible-collections/community.vmware/pull/745).
- vmware_resource_pool - Add parent_resource_pool parameter which is mutually exclusive with cluster and esxi_hostname (https://github.com/ansible-collections/community.vmware/issues/717)
- vmware_vm_inventory - add an example of FQDN as hostname (https://github.com/ansible-collections/community.vmware/issues/678).
- vmware_vm_inventory - skip disconnected VMs.

Deprecated Features
-------------------

- vmware_vmkernel_ip_config - deprecate in favor of vmware_vmkernel (https://github.com/ansible-collections/community.vmware/pull/667).

Security Fixes
--------------

- vmware_host_iscsi - mark the ``chap_secret`` parameter as ``no_log`` to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_host_iscsi - mark the ``mutual_chap_secret`` parameter as ``no_log`` to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_vc_infraprofile_info - mark the ``decryption_key`` parameter as ``no_log`` to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_vc_infraprofile_info - mark the ``encryption_key`` parameter as ``no_log`` to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).

Bugfixes
--------

- vmware - add the default value of parameter resource_pool_name in the find_resource_pool_by_name function (https://github.com/ansible-collections/community.vmware/pull/670).
- vmware_cluster_vsan - fixed a bug that made the module fail when advanced_options is not set (https://github.com/ansible-collections/community.vmware/issues/728).
- vmware_deploy_ovf - fixed an issue that a return value hasn't the instance key when the power_on parameter is False (https://github.com/ansible-collections/community.vmware/pull/698).
- vmware_deploy_ovf - fixed an issue that deploy template in datacenter with more than one standalone hosts (https://github.com/ansible-collections/community.vmware/pull/670).
- vmware_guest - fixed a bug that made the module fail when disk.controller_number or disk.unit_number are 0 (https://github.com/ansible-collections/community.vmware/issues/703).
- vmware_local_user_manager - fixed to require local_user_password when the state is present (https://github.com/ansible-collections/community.vmware/pull/724).
- vmware_vm_inventory - Skip over ghost tags attached to virtual machines (https://github.com/ansible-collections/community.vmware/issues/681).

New Modules
-----------

- vmware_guest_instant_clone - Instant Clone VM
- vmware_guest_storage_policy - Set VM Home and disk(s) storage policy profiles.

v1.8.0
======

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ Name | Description
[community.vmware.vmware_guest_file_operation](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_file_operation_module.rst)|Files operation in a VMware guest operating system without network
[community.vmware.vmware_guest_find](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_find_module.rst)|Find the folder path(s) for a virtual machine by name or UUID
[community.vmware.vmware_guest_info](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_info_module.rst)|Gather info about a single VM
[community.vmware.vmware_guest_instant_clone](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_instant_clone_module.rst)|Instant Clone VM
[community.vmware.vmware_guest_move](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_move_module.rst)|Moves virtual machines in vCenter
[community.vmware.vmware_guest_network](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_network_module.rst)|Manage network adapters of specified virtual machine in given vCenter infrastructure
[community.vmware.vmware_guest_powerstate](https://github.com/ansible-collections/community.vmware/blob/main/docs/community.vmware.vmware_guest_powerstate_module.rst)|Manages power states of virtual machines in vCenter
Expand Down
55 changes: 55 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -608,3 +608,58 @@ releases:
- 682-vmware_vm_storage_policy.yml
- 693-vmware_guest_register_operation.yml
release_date: '2021-03-05'
1.9.0:
changes:
bugfixes:
- vmware - add the default value of parameter resource_pool_name in the find_resource_pool_by_name
function (https://github.com/ansible-collections/community.vmware/pull/670).
- vmware_cluster_vsan - fixed a bug that made the module fail when advanced_options
is not set (https://github.com/ansible-collections/community.vmware/issues/728).
- vmware_deploy_ovf - fixed an issue that a return value hasn't the instance
key when the power_on parameter is False (https://github.com/ansible-collections/community.vmware/pull/698).
- vmware_deploy_ovf - fixed an issue that deploy template in datacenter with
more than one standalone hosts (https://github.com/ansible-collections/community.vmware/pull/670).
- vmware_guest - fixed a bug that made the module fail when disk.controller_number
or disk.unit_number are 0 (https://github.com/ansible-collections/community.vmware/issues/703).
- vmware_local_user_manager - fixed to require local_user_password when the
state is present (https://github.com/ansible-collections/community.vmware/pull/724).
- vmware_vm_inventory - Skip over ghost tags attached to virtual machines (https://github.com/ansible-collections/community.vmware/issues/681).
deprecated_features:
- vmware_vmkernel_ip_config - deprecate in favor of vmware_vmkernel (https://github.com/ansible-collections/community.vmware/pull/667).
minor_changes:
- vmware_guest_instant_clone - supported esxi_hostname parameter as an alias
(https://github.com/ansible-collections/community.vmware/pull/745).
- vmware_resource_pool - Add parent_resource_pool parameter which is mutually
exclusive with cluster and esxi_hostname (https://github.com/ansible-collections/community.vmware/issues/717)
- vmware_vm_inventory - add an example of FQDN as hostname (https://github.com/ansible-collections/community.vmware/issues/678).
- vmware_vm_inventory - skip disconnected VMs.
security_fixes:
- vmware_host_iscsi - mark the ``chap_secret`` parameter as ``no_log`` to avoid
accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_host_iscsi - mark the ``mutual_chap_secret`` parameter as ``no_log``
to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_vc_infraprofile_info - mark the ``decryption_key`` parameter as ``no_log``
to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
- vmware_vc_infraprofile_info - mark the ``encryption_key`` parameter as ``no_log``
to avoid accidental leaking of secrets in logs (https://github.com/ansible-collections/community.vmware/pull/715).
fragments:
- 667-vmware_vmkernel_ip_config.yml
- 670-vmware_deploy_ovf_and_vmware.yml
- 681_vmware_inventory.yml
- 698-vmware_deploy_ovf.yml
- 703-vmware_guest.yml
- 717-vmware_resource_pool.yml
- 724-vmware_local_user_manager.yml
- 728-vmware_cluster_vsan.yml
- 745-vmware_guest_instant_clone.yml
- disconnect_inventory.yml
- no_log_sanity.yml
- vmware_inventory_example.yml
modules:
- description: Instant Clone VM
name: vmware_guest_instant_clone
namespace: ''
- description: Set VM Home and disk(s) storage policy profiles.
name: vmware_guest_storage_policy
namespace: ''
release_date: '2021-04-01'
2 changes: 0 additions & 2 deletions changelogs/fragments/667-vmware_vmkernel_ip_config.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/670-vmware_deploy_ovf_and_vmware.yml

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/698-vmware_deploy_ovf.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/703-vmware_guest.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/717-vmware_resource_pool.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/724-vmware_local_user_manager.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/728-vmware_cluster_vsan.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/745-vmware_guest_instant_clone.yml

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/no_log_sanity.yml

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion docs/community.vmware.vca_fw_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
#Add a set of firewall rules
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vca_nat_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
#An example for a source nat
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vca_vapp_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Creates a new vApp in a VCA instance
community.vmware.vca_vapp:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather all domain user and group of vsphere.local
community.vmware.vcenter_domain_user_group_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vcenter_extension_facts_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather facts about vCenter Extensions
community.vmware.vcenter_extension_facts:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vcenter_extension_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather info about vCenter Extensions
community.vmware.vcenter_extension_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vcenter_extension_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Register vCenter Extension
community.vmware.vcenter_extension:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vcenter_folder_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Create a VM folder on given datacenter
community.vmware.vcenter_folder:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vcenter_license_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Add a new vCenter license
community.vmware.vcenter_license:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_about_facts_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Provide information about vCenter
community.vmware.vmware_about_facts:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_about_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Provide information about vCenter
community.vmware.vmware_about_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_category_facts_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather facts about tag categories
community.vmware.vmware_category_facts:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_category_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather info about tag categories
community.vmware.vmware_category_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_category_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Create a category
community.vmware.vmware_category:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cfg_backup_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Save the ESXi configuration locally by authenticating directly against the ESXi host
community.vmware.vmware_cfg_backup:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cluster_drs_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Enable DRS
community.vmware.vmware_cluster_drs:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cluster_ha_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Enable HA without admission control
community.vmware.vmware_cluster_ha:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cluster_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather cluster info from given datacenter
community.vmware.vmware_cluster_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cluster_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ See Also
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Create Cluster
community.vmware.vmware_cluster:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_cluster_vsan_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Parameters
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Enable vSAN
community.vmware.vmware_cluster_vsan:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Deploy Virtual Machine from OVF template in content library
community.vmware.vmware_content_deploy_ovf_template:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Deploy Virtual Machine from template in content library
community.vmware.vmware_content_deploy_template:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Get List of Content Libraries
community.vmware.vmware_content_library_info:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Create Local Content Library
community.vmware.vmware_content_library_manager:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_datacenter_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Gather information about all datacenters
community.vmware.vmware_datacenter_info:
Expand Down
2 changes: 1 addition & 1 deletion docs/community.vmware.vmware_datacenter_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Create Datacenter
community.vmware.vmware_datacenter:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ Notes
Examples
--------

.. code-block:: yaml+jinja
.. code-block:: yaml
- name: Add datastore to the given datastore cluster
community.vmware.vmware_datastore_cluster_manager:
Expand Down
Loading

0 comments on commit 4648ac3

Please sign in to comment.