Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release v2.14.0rc2 #79257

Merged
merged 1 commit into from Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions changelogs/CHANGELOG-v2.14.rst
Expand Up @@ -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
==========

Expand Down
25 changes: 25 additions & 0 deletions changelogs/changelog.yaml
Expand Up @@ -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'
3 changes: 3 additions & 0 deletions 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>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Expand Up @@ -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"