summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian M. Adams <chadams@redhat.com>2021-09-08 09:57:24 -0400
committerChristian M. Adams <chadams@redhat.com>2021-09-08 09:57:24 -0400
commit7b414d094c528541d179504d50e5bffb4d1d975b (patch)
treea85eca3fbf0511d0c848a55bc201695ccebc9942
parente10a4d511dc8d9fc909b5709a52dd467447f5119 (diff)
downloadansible-7b414d094c528541d179504d50e5bffb4d1d975b.tar.gz
New release v2.10.14rc1v2.10.14rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst21
-rw-r--r--changelogs/changelog.yaml23
-rw-r--r--changelogs/fragments/v2.10.14rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 48 insertions, 1 deletions
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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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'