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.0rc1 #79127

Merged
merged 1 commit into from
Oct 17, 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
17 changes: 17 additions & 0 deletions changelogs/CHANGELOG-v2.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=========

Expand Down
20 changes: 20 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 3 additions & 0 deletions changelogs/fragments/v2.14.0rc1_summary.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-10-17
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"