From 7b414d094c528541d179504d50e5bffb4d1d975b Mon Sep 17 00:00:00 2001 From: "Christian M. Adams" Date: Wed, 8 Sep 2021 09:57:24 -0400 Subject: New release v2.10.14rc1 --- changelogs/CHANGELOG-v2.10.rst | 21 +++++++++++++++++++++ changelogs/changelog.yaml | 23 +++++++++++++++++++++++ changelogs/fragments/v2.10.14rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.10.14rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst index b56726a370..933f457727 100644 --- a/changelogs/CHANGELOG-v2.10.rst +++ b/changelogs/CHANGELOG-v2.10.rst @@ -5,6 +5,27 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes .. contents:: Topics +v2.10.14rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2021-09-08 +| `Porting Guide `__ + + +Bugfixes +-------- + +- Restructured pipelining settings to be at the connection plugins leaving base config as global and for backwards compatiblity. +- command module, clarify order of remove/creates checks. +- command module, correctly handles chdir to symlinks. +- command module, move to standarized messages in 'msg' vs abusing 'stdout'. +- command module, now all options work in ad-hoc execution. +- command module, now always returns what we documented as 'returns always'. +- make previous versions compatible we new attributres w/o implementing them. + v2.10.13 ======== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index cec5712f09..d9b428af52 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1971,6 +1971,29 @@ releases: - unsafe_writes_env.yml - v2.10.13rc1_summary.yaml release_date: '2021-08-10' + 2.10.14rc1: + changes: + bugfixes: + - Restructured pipelining settings to be at the connection plugins leaving base + config as global and for backwards compatiblity. + - command module, clarify order of remove/creates checks. + - command module, correctly handles chdir to symlinks. + - command module, move to standarized messages in 'msg' vs abusing 'stdout'. + - command module, now all options work in ad-hoc execution. + - command module, now always returns what we documented as 'returns always'. + - make previous versions compatible we new attributres w/o implementing them. + release_summary: '| Release Date: 2021-09-08 + + | `Porting Guide `__ + + ' + codename: When the Levee Breaks + fragments: + - attributes_compat.yml + - command_deliver_promisses.yml + - pipelinig_to_plugins.yml + - v2.10.14rc1_summary.yaml + release_date: '2021-09-08' 2.10.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.10.14rc1_summary.yaml b/changelogs/fragments/v2.10.14rc1_summary.yaml new file mode 100644 index 0000000000..cc47ef3d29 --- /dev/null +++ b/changelogs/fragments/v2.10.14rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-09-08 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 99bb0b5d16..f208fb6db2 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.10.13.post0' +__version__ = '2.10.14rc1' __author__ = 'Ansible, Inc.' __codename__ = 'When the Levee Breaks' -- cgit v1.2.1