From 72a8b55920d873e82188f97b24f9d3ee75094da3 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Mon, 14 Sep 2020 13:04:22 -0500 Subject: [PATCH] New release v2.10.1 --- changelogs/CHANGELOG-v2.10.rst | 44 +++++------------------ changelogs/changelog.yaml | 11 ++++++ changelogs/fragments/v2.10.1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 23 insertions(+), 37 deletions(-) create mode 100644 changelogs/fragments/v2.10.1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst index 7565b93e320822..0525568b483dea 100644 --- a/changelogs/CHANGELOG-v2.10.rst +++ b/changelogs/CHANGELOG-v2.10.rst @@ -5,22 +5,26 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes .. contents:: Topics -v2.10.1rc3 -========== +v2.10.1 +======= Release Summary --------------- -| Release Date: 2020-09-07 +| Release Date: 2020-09-14 | `Porting Guide `__ Minor Changes ------------- +- Fixed ansible-doc to not substitute for words followed by parenthesis. For instance, ``IBM(International Business Machines)`` will no longer be substituted with a link to a non-existent module. https://github.com/ansible/ansible/pull/71070 +- Updated network integration auth timeout to 90 secs. +- ansible-doc will now format, ``L()``, ``R()``, and ``HORIZONTALLINE`` in plugin docs just as the website docs do. https://github.com/ansible/ansible/pull/71070 - ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote`` option. - ansible-test - Allow custom ``--remote-stage`` options for development and testing. - ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``, ``html``, ``xml``) on Python 2.6. +- ansible-test - Remove ``pytest < 6.0.0`` constraint for managed installations on Python 3.x now that pytest 6 is supported. - ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region`` option. - ansible-test - Request remote resources by provider name for all provider types. - ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option is used. @@ -28,39 +32,6 @@ Minor Changes - ansible-test - Update built-in service endpoints for the ``--remote`` option. - ansible-test - Use new endpoint for Parallels based instances with the ``--remote`` option. - ansible-test - default container now uses default-test-container 2.7.0 and ansible-base-test-container 1.6.0. This brings in Python 3.9.0rc1 for testing. - -v2.10.1rc2 -========== - -Release Summary ---------------- - -| Release Date: 2020-09-01 -| `Porting Guide `__ - - -Security Fixes --------------- - -- The fix for CVE-2020-1736 has been reverted. Users are encouraged to specify a ``mode`` parameter in their file-based tasks when the files being manipulated contain sensitive data. - -v2.10.1rc1 -========== - -Release Summary ---------------- - -| Release Date: 2020-08-31 -| `Porting Guide `__ - - -Minor Changes -------------- - -- Fixed ansible-doc to not substitute for words followed by parenthesis. For instance, ``IBM(International Business Machines)`` will no longer be substituted with a link to a non-existent module. https://github.com/ansible/ansible/pull/71070 -- Updated network integration auth timeout to 90 secs. -- ansible-doc will now format, ``L()``, ``R()``, and ``HORIZONTALLINE`` in plugin docs just as the website docs do. https://github.com/ansible/ansible/pull/71070 -- ansible-test - Remove ``pytest < 6.0.0`` constraint for managed installations on Python 3.x now that pytest 6 is supported. - ansible-test - the ACME test container was updated, it now supports external account creation and has a basic OCSP responder (https://github.com/ansible/ansible/pull/71097, https://github.com/ansible/acme-test-container/releases/tag/2.0.0). - galaxy - add documentation about galaxy parameters in examples/ansible.cfg (https://github.com/ansible/ansible/issues/68402). - iptables - add a note about ipv6-icmp in protocol parameter (https://github.com/ansible/ansible/issues/70905). @@ -71,6 +42,7 @@ Security Fixes -------------- - **security issue** - copy - Redact the value of the no_log 'content' parameter in the result's invocation.module_args in check mode. Previously when used with check mode and with '-vvv', the module would not censor the content if a change would be made to the destination path. (CVE-2020-14332) +- The fix for CVE-2020-1736 has been reverted. Users are encouraged to specify a ``mode`` parameter in their file-based tasks when the files being manipulated contain sensitive data. - dnf - Previously, regardless of the ``disable_gpg_check`` option, packages were not GPG validated. They are now. (CVE-2020-14365) Bugfixes diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ec638f04919166..c318974db8411f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1800,6 +1800,17 @@ releases: - lineinfile_exc_fix.yml - v2.10.0rc4_summary.yaml release_date: '2020-07-30' + 2.10.1: + changes: + release_summary: '| Release Date: 2020-09-14 + + | `Porting Guide `__ + + ' + codename: When the Levee Breaks + fragments: + - v2.10.1_summary.yaml + release_date: '2020-09-14' 2.10.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.10.1_summary.yaml b/changelogs/fragments/v2.10.1_summary.yaml new file mode 100644 index 00000000000000..524ef3e80d03f4 --- /dev/null +++ b/changelogs/fragments/v2.10.1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2020-09-14 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index a279d863c48f4f..a719cd43c32fdc 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.1rc3.post0' +__version__ = '2.10.1' __author__ = 'Ansible, Inc.' __codename__ = 'When the Levee Breaks'