diff options
author | Matt Martz <matt@sivel.net> | 2022-09-20 14:04:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-20 14:04:29 -0500 |
commit | f8e83264372d583a8f819f7bfe03a0f53f1abc0a (patch) | |
tree | e0ee06035b03b8c341bd38b369108b3599751ebf /docs/docsite/rst/porting_guides | |
parent | 3b937123d26473b7005674b8915423e3f38f6105 (diff) | |
download | ansible-f8e83264372d583a8f819f7bfe03a0f53f1abc0a.tar.gz |
Bump devel to 2.15.0.dev0 (#78817)
Diffstat (limited to 'docs/docsite/rst/porting_guides')
-rw-r--r-- | docs/docsite/rst/porting_guides/core_porting_guides.rst | 1 | ||||
-rw-r--r-- | docs/docsite/rst/porting_guides/porting_guide_core_2.15.rst | 78 |
2 files changed, 79 insertions, 0 deletions
diff --git a/docs/docsite/rst/porting_guides/core_porting_guides.rst b/docs/docsite/rst/porting_guides/core_porting_guides.rst index 6ada427ff4..bba3aee473 100644 --- a/docs/docsite/rst/porting_guides/core_porting_guides.rst +++ b/docs/docsite/rst/porting_guides/core_porting_guides.rst @@ -12,6 +12,7 @@ Please note that this is not a complete list. If you believe any extra informati :maxdepth: 1 :glob: + porting_guide_core_2.15 porting_guide_core_2.14 porting_guide_core_2.13 porting_guide_core_2.12 diff --git a/docs/docsite/rst/porting_guides/porting_guide_core_2.15.rst b/docs/docsite/rst/porting_guides/porting_guide_core_2.15.rst new file mode 100644 index 0000000000..12939c7b83 --- /dev/null +++ b/docs/docsite/rst/porting_guides/porting_guide_core_2.15.rst @@ -0,0 +1,78 @@ + +.. _porting_2.15_guide_core: + +******************************* +Ansible-core 2.15 Porting Guide +******************************* + +This section discusses the behavioral changes between ``ansible-core`` 2.14 and ``ansible-core`` 2.15. + +It is intended to assist in updating your playbooks, plugins and other parts of your Ansible infrastructure so they will work with this version of Ansible. + +We suggest you read this page along with `ansible-core Changelog for 2.15 <https://github.com/ansible/ansible/blob/stable-2.15/changelogs/CHANGELOG-v2.15.rst>`_ to understand what updates you may need to make. + +This document is part of a collection on porting. The complete list of porting guides can be found at :ref:`porting guides <porting_guides>`. + +.. contents:: Topics + + +Playbook +======== + +No notable changes + + +Command Line +============ + +No notable changes + + +Deprecated +========== + +No notable changes + + +Modules +======= + +No notable changes + + +Modules removed +--------------- + +The following modules no longer exist: + +* No notable changes + + +Deprecation notices +------------------- + +No notable changes + + +Noteworthy module changes +------------------------- + +No notable changes + + +Plugins +======= + +No notable changes + + +Porting custom scripts +====================== + +No notable changes + + +Networking +========== + +No notable changes |