diff options
author | David Moreau Simard <moi@dmsimard.com> | 2021-10-19 13:30:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 13:30:42 -0400 |
commit | 43d09710c81f36113fec8d68e650a6b6d82dca05 (patch) | |
tree | e8a40713a6e4acc09a89226b7d9515b6446eaada /docs/docsite/rst/porting_guides | |
parent | afb8a008c2c4807fb121a4e6da4240e5a2930439 (diff) | |
download | ansible-43d09710c81f36113fec8d68e650a6b6d82dca05.tar.gz |
Update porting guide for Ansible 5.0.0a2 (#76083)
Diffstat (limited to 'docs/docsite/rst/porting_guides')
-rw-r--r-- | docs/docsite/rst/porting_guides/porting_guide_5.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/docsite/rst/porting_guides/porting_guide_5.rst b/docs/docsite/rst/porting_guides/porting_guide_5.rst index fbd844a29a..58b7b62b9c 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_5.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_5.rst @@ -115,6 +115,26 @@ Networking No notable changes +Porting Guide for v5.0.0a2 +========================== + +Breaking Changes +---------------- + +community.routeros +~~~~~~~~~~~~~~~~~~ + +- api - splitting commands no longer uses a naive split by whitespace, but a more RouterOS CLI compatible splitting algorithm (https://github.com/ansible-collections/community.routeros/pull/45). +- command - the module now always indicates that a change happens. If this is not correct, please use ``changed_when`` to determine the correct changed status for a task (https://github.com/ansible-collections/community.routeros/pull/50). + +Deprecated Features +------------------- + +community.vmware +~~~~~~~~~~~~~~~~ + +- vmware_guest_vnc - Sphere 7.0 removed the built-in VNC server (https://docs.vmware.com/en/VMware-vSphere/7.0/rn/vsphere-esxi-vcenter-server-70-release-notes.html#productsupport). + Porting Guide for v5.0.0a1 ========================== |