summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesmarshall24 <james.marshall@redhat.com>2022-10-10 10:27:09 -0400
committerGitHub <noreply@github.com>2022-10-10 10:27:09 -0400
commitcd25764de2416b34dae51dd462563bea787b5022 (patch)
tree96bb05c94fd62342cdc088898e13c0509d55572a
parent6bcb90a1417b13f7e842d61b25c5bd6e8264a0ed (diff)
downloadansible-cd25764de2416b34dae51dd462563bea787b5022.tar.gz
New release v2.12.10 (#79074)v2.12.10
-rw-r--r--changelogs/CHANGELOG-v2.12.rst11
-rw-r--r--changelogs/changelog.yaml15
-rw-r--r--changelogs/fragments/v2.12.10_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 27 insertions, 4 deletions
diff --git a/changelogs/CHANGELOG-v2.12.rst b/changelogs/CHANGELOG-v2.12.rst
index 5822f716db..b0bd88445b 100644
--- a/changelogs/CHANGELOG-v2.12.rst
+++ b/changelogs/CHANGELOG-v2.12.rst
@@ -5,16 +5,21 @@ ansible-core 2.12 "Dazed and Confused" Release Notes
.. contents:: Topics
-v2.12.10rc1
-===========
+v2.12.10
+========
Release Summary
---------------
-| Release Date: 2022-10-03
+| Release Date: 2022-10-10
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+Bugfixes
+--------
+
+- paramiko - Add back support for ``ssh_args``, ``ssh_common_args``, and ``ssh_extra_args`` for parsing the ``ProxyCommand`` (https://github.com/ansible/ansible/issues/78750)
+
v2.12.9
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 8dda3000da..64164fae03 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1094,6 +1094,21 @@ releases:
fragments:
- v2.12.1_summary.yaml
release_date: '2021-12-06'
+ 2.12.10:
+ changes:
+ bugfixes:
+ - paramiko - Add back support for ``ssh_args``, ``ssh_common_args``, and ``ssh_extra_args``
+ for parsing the ``ProxyCommand`` (https://github.com/ansible/ansible/issues/78750)
+ release_summary: '| Release Date: 2022-10-10
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Dazed and Confused
+ fragments:
+ - 78750-paramiko-ssh-args-compat.yml
+ - v2.12.10_summary.yaml
+ release_date: '2022-10-10'
2.12.10rc1:
changes:
release_summary: '| Release Date: 2022-10-03
diff --git a/changelogs/fragments/v2.12.10_summary.yaml b/changelogs/fragments/v2.12.10_summary.yaml
new file mode 100644
index 0000000000..a282c2f5bd
--- /dev/null
+++ b/changelogs/fragments/v2.12.10_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-10
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 924a690ef5..1ddecb0f16 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.12.10rc1.post0'
+__version__ = '2.12.10'
__author__ = 'Ansible, Inc.'
__codename__ = 'Dazed and Confused'