summaryrefslogtreecommitdiff
path: root/docs/docsite/rst/porting_guides
diff options
context:
space:
mode:
authorDavid Moreau Simard <moi@dmsimard.com>2022-03-15 16:06:07 -0400
committerGitHub <noreply@github.com>2022-03-15 16:06:07 -0400
commitd8687bd0158c23e63b13c8c05f83d1a8628e1264 (patch)
tree2b4d45f6310c8583373fd83f4c08f4039e968a2e /docs/docsite/rst/porting_guides
parentdfda04894f25a9f491b5bde7ae051da01d12d654 (diff)
downloadansible-d8687bd0158c23e63b13c8c05f83d1a8628e1264.tar.gz
docs: Update porting guide for Ansible 5.5.0 (#77287)
Diffstat (limited to 'docs/docsite/rst/porting_guides')
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_5.rst30
1 files changed, 30 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 14a2ea425b..f618a2848d 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_5.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_5.rst
@@ -127,6 +127,36 @@ Networking
No notable changes
+Porting Guide for v5.5.0
+========================
+
+Known Issues
+------------
+
+cisco.ios
+~~~~~~~~~
+
+- `ios_bgp_global` - Added capability of configure network options.
+- `ios_bgp_global` - Added community and local_preference for route_reflector_client.
+- `ios_bgp_global` - Added update_source for neighbors.
+- `ios_bgp_global` - Correct misspelled attributes with alternates/alias.
+- `ios_bgp_global` - Facts and config code optimized for using rm_templates.
+- `ios_bgp_global` - Parsers added for non-implemented attributes.
+
+community.general
+~~~~~~~~~~~~~~~~~
+
+- pacman - ``update_cache`` cannot differentiate between up to date and outdated package lists and will report ``changed`` in both situations (https://github.com/ansible-collections/community.general/pull/4318).
+- pacman - binaries specified in the ``executable`` parameter must support ``--print-format`` in order to be used by this module. In particular, AUR helper ``yay`` is known not to currently support it (https://github.com/ansible-collections/community.general/pull/4312).
+
+Deprecated Features
+-------------------
+
+community.general
+~~~~~~~~~~~~~~~~~
+
+- pacman - from community.general 5.0.0 on, the ``changed`` status of ``update_cache`` will no longer be ignored if ``name`` or ``upgrade`` is specified. To keep the old behavior, add something like ``register: result`` and ``changed_when: result.packages | length > 0`` to your task (https://github.com/ansible-collections/community.general/pull/4329).
+
Porting Guide for v5.4.0
========================