Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Carrillo Cruz <ricarril@redhat.com>2022-10-17 18:04:05 +0300
committerGitHub <noreply@github.com>2022-10-17 18:04:05 +0300
commit86bdec3661f73714b30980acb0fe5698fe30bef4 (patch)
tree42f292585cd02e8fbddfc3fc4fa24970b366e612
parentfebf071d01c8a8dfe3a0939a1b0004a573e7ec0e (diff)
New release v2.14.0rc1 (#79127)v2.14.0rc1
Signed-off-by: Ricardo Carrillo Cruz <ricarril@redhat.com>
-rw-r--r--changelogs/CHANGELOG-v2.14.rst17
-rw-r--r--changelogs/changelog.yaml20
-rw-r--r--changelogs/fragments/v2.14.0rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 41 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index 6ad65a600f9..d7675e26394 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -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
=========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index a1b61f347b1..7c4882ba623 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -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'
diff --git a/changelogs/fragments/v2.14.0rc1_summary.yaml b/changelogs/fragments/v2.14.0rc1_summary.yaml
new file mode 100644
index 00000000000..4d245c5f35f
--- /dev/null
+++ b/changelogs/fragments/v2.14.0rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-17
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 0cb42f344b9..4e76c9f99a9 100644
--- a/lib/ansible/release.py
+++ b/lib/ansible/release.py
@@ -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"