summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Savineau <dsavinea@redhat.com>2022-01-24 10:57:39 -0500
committerGitHub <noreply@github.com>2022-01-24 10:57:39 -0500
commit98418031a4dda66ea4db99a9440a61ac01a57267 (patch)
treea8f24f35fa073eca941f6d39911bebfd058150a4
parent92fb7dbec1f3ba03a4a55d25ea4ca4ce4179516e (diff)
downloadansible-98418031a4dda66ea4db99a9440a61ac01a57267.tar.gz
New release v2.10.17rc1 (#76829)v2.10.17rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst17
-rw-r--r--changelogs/changelog.yaml20
-rw-r--r--changelogs/fragments/v2.10.17rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 41 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index cb3bf5ce95..ff715c5f4d 100644
--- a/changelogs/CHANGELOG-v2.10.rst
+++ b/changelogs/CHANGELOG-v2.10.rst
@@ -5,6 +5,23 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
+v2.10.17rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2022-01-24
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- ansible-galaxy collection build - Ignore any existing ``MANIFEST.json`` and ``FILES.json`` in the root directory when building a collection.
+- ansible-test - Fix traceback in the ``validate-modules`` sanity test when testing an Ansible module without any callables.
+- backwards compatiblity copy of doc fragment action_common_attributes
+
v2.10.16
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index a1864d2621..d5b4e91f5c 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -2068,6 +2068,26 @@ releases:
- fix_cli_ssh_defaults.yml
- v2.10.16rc1_summary.yaml
release_date: '2021-11-29'
+ 2.10.17rc1:
+ changes:
+ bugfixes:
+ - ansible-galaxy collection build - Ignore any existing ``MANIFEST.json`` and
+ ``FILES.json`` in the root directory when building a collection.
+ - ansible-test - Fix traceback in the ``validate-modules`` sanity test when
+ testing an Ansible module without any callables.
+ - backwards compatiblity copy of doc fragment action_common_attributes
+ release_summary: '| Release Date: 2022-01-24
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: When the Levee Breaks
+ fragments:
+ - aca_bcc.yml
+ - ansible-test-validate-modules-no-callable.yml
+ - galaxy-build-files-ignore.yml
+ - v2.10.17rc1_summary.yaml
+ release_date: '2022-01-24'
2.10.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.10.17rc1_summary.yaml b/changelogs/fragments/v2.10.17rc1_summary.yaml
new file mode 100644
index 0000000000..1c48e570e8
--- /dev/null
+++ b/changelogs/fragments/v2.10.17rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-01-24
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 287eeb2955..ef3edcb5e4 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.16.post0'
+__version__ = '2.10.17rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'