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

Update changelog fragments for a better porting guide #1490

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
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
removed_features:
- vmware_guest_network - The deprecated parameter ``networks`` has been removed.
- vmware_guest_network - The deprecated parameter ``networks`` has been removed,
use loops to handle multiple interfaces (https://github.com/ansible-collections/community.vmware/pull/1459).
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
removed_features:
- vmware_host_firewall_manager - The module doesn't accept a list for `allowed_hosts` anymore.
- vmware_host_firewall_manager - The module doesn't accept `allowed_hosts` without defining `all_ip` anymore.
- vmware_host_firewall_manager - The module doesn't accept a list for ``allowed_hosts`` anymore, use a dict instead.
Additionally, ``all_ip`` is now a required sub-option of ``allowed_hosts`` (https://github.com/ansible-collections/community.vmware/pull/1463).
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
removed_features:
- vsphere_copy - The deprecated parameters ``host`` and ``login`` have been removed.
Use ``hostname`` and ``username`` instead (https://github.com/ansible-collections/community.vmware/pull/1456).
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
breaking_changes:
- vmware_guest_boot_manager - Remove default for `secure_boot_enabled` parameter (https://github.com/ansible-collections/community.vmware/issues/1257).
- vmware_guest_boot_manager - Remove default for ``secure_boot_enabled`` parameter (https://github.com/ansible-collections/community.vmware/issues/1461).
16 changes: 12 additions & 4 deletions changelogs/fragments/1483-vmware_dvs_portgroup.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
breaking_changes:
- vmware_dvs_portgroup - Remove the default for `network_policy` and add a new sub-option `inherited`
- vmware_dvs_portgroup - Remove the default for `network_policy` and add a new sub-option `inherited`.
This means you can keep the setting as-is by not defining the parameter,
but also that you have to define the setting as not `inherited` if you want to override it at the PG level
(https://github.com/ansible-collections/community.vmware/pull/1483).
- vmware_dvs_portgroup - Change the type of `net_flow` to string to allow setting it implicitly to inherited or to keep the value as-is
- vmware_dvs_portgroup - Change the type of `net_flow` to string to allow setting it implicitly to inherited or to keep the value as-is.
This means you can keep the setting as-is by not defining the parameter,
but also that while `true` or `no` still work, `True` or `Off` (uppercase) won't
(https://github.com/ansible-collections/community.vmware/pull/1483).
- vmware_dvs_portgroup - Add a new sub-option `inherited` to the `in_traffic_shaping` parameter
- vmware_dvs_portgroup - Add a new sub-option `inherited` to the `in_traffic_shaping` parameter.
This means you can keep the setting as-is by not defining the parameter,
but also that you have to define the setting as not `inherited` if you want to override it at the PG level
(https://github.com/ansible-collections/community.vmware/pull/1483).
- vmware_dvs_portgroup - Add a new sub-option `inherited` to the `out_traffic_shaping` parameter
- vmware_dvs_portgroup - Add a new sub-option `inherited` to the `out_traffic_shaping` parameter.
This means you can keep the setting as-is by not defining the parameter,
but also that you have to define the setting as not `inherited` if you want to override it at the PG level
(https://github.com/ansible-collections/community.vmware/pull/1483).
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
removed_features:
- vmware_dns_config - The deprecated module ``vmware_dns_config`` has been removed, can use ``vmware_host_dns`` instead.
- vmware_dns_config - The deprecated module ``vmware_dns_config`` has been removed, you can use ``vmware_host_dns`` instead.
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
removed_features:
- vmware_guest_vnc - The deprecated module ``vmware_guest_vnc`` has been removed.
The VNC support has been dropped with vSphere 7 and later
(https://github.com/ansible-collections/community.vmware/pull/1454).