New release v2.14.0rc1 (#79127)

Signed-off-by: Ricardo Carrillo Cruz <ricarril@redhat.com>
pull/79152/head v2.14.0rc1
Ricardo Carrillo Cruz 2 years ago committed by GitHub
parent febf071d01
commit 86bdec3661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,23 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
v2.14.0rc1
==========
Release Summary
---------------
| Release Date: 2022-10-17
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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-config limit shorthand format to assigned values
- ansible-test - Update the ``pylint`` sanity test to use version 2.15.4.
v2.14.0b3
=========

@ -781,3 +781,23 @@ releases:
name: urn
namespace: null
release_date: '2022-10-10'
2.14.0rc1:
changes:
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-config limit shorthand format to assigned values
- ansible-test - Update the ``pylint`` sanity test to use version 2.15.4.
release_summary: '| Release Date: 2022-10-17
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: C'mon Everybody
fragments:
- 79117-bsd-ifconfig-inet-fix.yml
- adjust_config_list.yml
- ansible-test-pylint-2.15.4.yml
- v2.14.0rc1_summary.yaml
release_date: '2022-10-13'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-10-17
| `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.14.0b3.post0'
__version__ = '2.14.0rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"

Loading…
Cancel
Save