New release v2.13.6 (#79315)

pull/79323/head v2.13.6
Dimitri Savineau 2 years ago committed by GitHub
parent 99ff446a3b
commit b14bbf1c11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,22 +5,28 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
v2.13.6rc1
==========
v2.13.6
=======
Release Summary
---------------
| Release Date: 2022-10-31
| Release Date: 2022-11-07
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Minor Changes
-------------
- ansible-test - Improve consistency of version specific documentation links.
Bugfixes
--------
- BSD network facts - Do not assume column indexes, look for ``netmask`` and ``broadcast`` for determining the correct columns when parsing ``inet`` line (https://github.com/ansible/ansible/issues/79117)
- ansible-galaxy - make initial call to Galaxy server on-demand only when installing, getting info about, and listing roles.
- ansible-test - Add ``wheel < 0.38.0`` constraint for Python 3.6 and earlier.
- ansible-test - Fix broken documentation link for ``aws`` test plugin error messages.
- copy module will no longer move 'non files' set as src when remote_src=true.
- file lookup now handles missing files more gracefully.
- service_facts - Use python re to parse service output instead of grep (https://github.com/ansible/ansible/issues/78541)

@ -1097,6 +1097,23 @@ releases:
- plugin_loader_fix.yml
- v2.13.5rc1_summary.yaml
release_date: '2022-10-03'
2.13.6:
changes:
bugfixes:
- ansible-test - Fix broken documentation link for ``aws`` test plugin error
messages.
minor_changes:
- ansible-test - Improve consistency of version specific documentation links.
release_summary: '| Release Date: 2022-11-07
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: Nobody's Fault but Mine
fragments:
- ansible-test-docs-links.yml
- v2.13.6_summary.yaml
release_date: '2022-11-07'
2.13.6rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-11-07
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.13.6rc1.post0'
__version__ = '2.13.6'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"

Loading…
Cancel
Save