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-31 16:33:03 +0300
committerGitHub <noreply@github.com>2022-10-31 16:33:03 +0300
commit6fb5f0c8b8f4d353bcacae47be83867df63b080b (patch)
treebf1d5b56ff0f6a678b5eea286a1a5deeca346bfa
parent3fc245d3c615d2814af8ffc09b8cb319109bd18d (diff)
New release v2.14.0rc2 (#79257)v2.14.0rc2
-rw-r--r--changelogs/CHANGELOG-v2.14.rst23
-rw-r--r--changelogs/changelog.yaml25
-rw-r--r--changelogs/fragments/v2.14.0rc2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 52 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index d7675e26394..43d3cc951cd 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,6 +5,29 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
+v2.14.0rc2
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-10-31
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test - Update ``base`` and ``default`` containers to include Python 3.11.0.
+- ansible-test - Update ``default`` containers to include new ``docs-build`` sanity test requirements.
+
+Bugfixes
+--------
+
+- ansible-test - Add ``wheel < 0.38.0`` constraint for Python 3.6 and earlier.
+- ansible-test - Update the ``pylint`` sanity test requirements to resolve crashes on Python 3.11. (https://github.com/ansible/ansible/issues/78882)
+- ansible-test - Update the ``pylint`` sanity test to use version 2.15.5.
+
v2.14.0rc1
==========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 7c4882ba623..296c9de1288 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -801,3 +801,28 @@ releases:
- ansible-test-pylint-2.15.4.yml
- v2.14.0rc1_summary.yaml
release_date: '2022-10-13'
+ 2.14.0rc2:
+ changes:
+ bugfixes:
+ - ansible-test - Add ``wheel < 0.38.0`` constraint for Python 3.6 and earlier.
+ - ansible-test - Update the ``pylint`` sanity test requirements to resolve crashes
+ on Python 3.11. (https://github.com/ansible/ansible/issues/78882)
+ - ansible-test - Update the ``pylint`` sanity test to use version 2.15.5.
+ minor_changes:
+ - ansible-test - Update ``base`` and ``default`` containers to include Python
+ 3.11.0.
+ - ansible-test - Update ``default`` containers to include new ``docs-build``
+ sanity test requirements.
+ release_summary: '| Release Date: 2022-10-31
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 79187--wheel-0.38.0.yml
+ - ansible-test-containers-docs-build.yml
+ - ansible-test-containers-python-3.11.0.yml
+ - ansible-test-pylint-2.15.5.yml
+ - v2.14.0rc2_summary.yaml
+ release_date: '2022-10-31'
diff --git a/changelogs/fragments/v2.14.0rc2_summary.yaml b/changelogs/fragments/v2.14.0rc2_summary.yaml
new file mode 100644
index 00000000000..07859282091
--- /dev/null
+++ b/changelogs/fragments/v2.14.0rc2_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-31
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 3d7a8d1e2b0..650274b2998 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.0rc1.post0'
+__version__ = '2.14.0rc2'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"