Skip to content

Commit 99ac3e6

Browse files
authored
prepare 5.5.0 release (#2362)
ansible-playbook tools/prepare_release.yml
1 parent 6966997 commit 99ac3e6

14 files changed

+87
-42
lines changed

CHANGELOG.rst

+38
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,44 @@ community.vmware Release Notes
66

77
This changelog describes changes after version 4.7.0.
88

9+
v5.5.0
10+
======
11+
12+
Minor Changes
13+
-------------
14+
15+
- vcenter_standard_key_provider - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
16+
- vmware_category - Don't test for vSphere < 7 anymore (https://github.com/ansible-collections/community.vmware/pull/2326).
17+
- vmware_guest - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
18+
- vmware_guest_storage_policy - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
19+
- vmware_guest_tpm - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
20+
- vmware_host_graphics - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
21+
- vmware_host_lockdown - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
22+
- vmware_host_lockdown_exceptions - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
23+
- vmware_host_snmp - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
24+
- vmware_migrate_vmk - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
25+
- vmware_migrate_vmk - Inherit from / sub-class PyVmomi (https://github.com/ansible-collections/community.vmware/pull/2324).
26+
- vmware_resource_pool - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
27+
- vmware_vc_infraprofile_info - Don't test for vSphere < 7 anymore (https://github.com/ansible-collections/community.vmware/pull/2326).
28+
- vmware_vm_config_option - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
29+
- vmware_vm_vss_dvs_migrate - Inherit from / sub-class PyVmomi (https://github.com/ansible-collections/community.vmware/pull/2325).
30+
- vmware_vsan_health_info - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
31+
32+
Deprecated Features
33+
-------------------
34+
35+
- vcenter_folder - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2340).
36+
- vmware_cluster_ha - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2321).
37+
- vmware_content_deploy_ovf_template - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2332).
38+
- vmware_content_deploy_template - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2332).
39+
- vmware_content_library_manager - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2345).
40+
- vmware_host - the module has been deprecated and will be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2337).
41+
42+
Bugfixes
43+
--------
44+
45+
- vmware_object_role_permission - The module ignores changing ``recursive`` (https://github.com/ansible-collections/community.vmware/pull/2350).
46+
947
v5.4.0
1048
======
1149

changelogs/changelog.yaml

+48
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,51 @@ releases:
168168
- 2306-deprecate-plugins.httpapi.yml
169169
- 2311-deprecate-unsed-methods-and-functions.yml
170170
release_date: '2025-02-18'
171+
5.5.0:
172+
changes:
173+
bugfixes:
174+
- vmware_object_role_permission - The module ignores changing ``recursive``
175+
(https://github.com/ansible-collections/community.vmware/pull/2350).
176+
deprecated_features:
177+
- vcenter_folder - the module has been deprecated and will be removed in community.vmware
178+
7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2340).
179+
- vmware_cluster_ha - the module has been deprecated and will be removed in
180+
community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2321).
181+
- vmware_content_deploy_ovf_template - the module has been deprecated and will
182+
be removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2332).
183+
- vmware_content_deploy_template - the module has been deprecated and will be
184+
removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2332).
185+
- vmware_content_library_manager - the module has been deprecated and will be
186+
removed in community.vmware 7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2345).
187+
- vmware_host - the module has been deprecated and will be removed in community.vmware
188+
7.0.0 (https://github.com/ansible-collections/community.vmware/pull/2337).
189+
minor_changes:
190+
- vcenter_standard_key_provider - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
191+
- vmware_category - Don't test for vSphere < 7 anymore (https://github.com/ansible-collections/community.vmware/pull/2326).
192+
- vmware_guest - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
193+
- vmware_guest_storage_policy - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
194+
- vmware_guest_tpm - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
195+
- vmware_host_graphics - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
196+
- vmware_host_lockdown - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
197+
- vmware_host_lockdown_exceptions - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
198+
- vmware_host_snmp - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
199+
- vmware_migrate_vmk - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
200+
- vmware_migrate_vmk - Inherit from / sub-class PyVmomi (https://github.com/ansible-collections/community.vmware/pull/2324).
201+
- vmware_resource_pool - Drop unnecessary HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2328).
202+
- vmware_vc_infraprofile_info - Don't test for vSphere < 7 anymore (https://github.com/ansible-collections/community.vmware/pull/2326).
203+
- vmware_vm_config_option - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
204+
- vmware_vm_vss_dvs_migrate - Inherit from / sub-class PyVmomi (https://github.com/ansible-collections/community.vmware/pull/2325).
205+
- vmware_vsan_health_info - Drop unused HAS_PYVMOMI (https://github.com/ansible-collections/community.vmware/pull/2327).
206+
fragments:
207+
- 2321-deprecate-vmware_cluster_ha.yml
208+
- 2324-vmware_migrate_vmk.yml
209+
- 2325-vmware_vm_vss_dvs_migrate.yml
210+
- 2326-drop-test-lt7.yml
211+
- 2327-drop-HAS_PYVMOMI.yml
212+
- 2328-drop-HAS_PYVMOMI.yml
213+
- 2332-deprecate-vmware_content_deploy_ovf_template-vmware_content_deploy_template.yml
214+
- 2337-deprecate-vmware_host.yml
215+
- 2340-deprecate-vcenter_folder.yml
216+
- 2345-deprecate.vmware_content_library_manager.yml
217+
- 2351-vmware_object_role_permission.yml
218+
release_date: '2025-03-23'

changelogs/fragments/2321-deprecate-vmware_cluster_ha.yml

-3
This file was deleted.

changelogs/fragments/2324-vmware_migrate_vmk.yml

-2
This file was deleted.

changelogs/fragments/2325-vmware_vm_vss_dvs_migrate.yml

-2
This file was deleted.

changelogs/fragments/2326-drop-test-lt7.yml

-3
This file was deleted.

changelogs/fragments/2327-drop-HAS_PYVMOMI.yml

-6
This file was deleted.

changelogs/fragments/2328-drop-HAS_PYVMOMI.yml

-8
This file was deleted.

changelogs/fragments/2332-deprecate-vmware_content_deploy_ovf_template-vmware_content_deploy_template.yml

-5
This file was deleted.

changelogs/fragments/2337-deprecate-vmware_host.yml

-3
This file was deleted.

changelogs/fragments/2340-deprecate-vcenter_folder.yml

-3
This file was deleted.

changelogs/fragments/2345-deprecate.vmware_content_library_manager.yml

-3
This file was deleted.

changelogs/fragments/2351-vmware_object_role_permission.yml

-3
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: vmware
55
# https://github.com/ansible-network/releases/tree/master/ansible_releases/cmd
66
# A script based on https://pypi.org/project/pbr/ will generate the version
77
# key. The version value depends on the tag or the last git tag.
8-
version: null
8+
version: 5.5.0
99
readme: README.md
1010
authors:
1111
- Ansible (https://github.com/ansible)

0 commit comments

Comments
 (0)