From 8f85594ff9a334c6339520755ec61aaa5301ac30 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Mon, 5 Apr 2021 17:28:27 -0500 Subject: New release v2.11.0rc1 --- changelogs/CHANGELOG-v2.11.rst | 26 ++++++++++++++++ changelogs/changelog.yaml | 35 ++++++++++++++++++++++ changelogs/fragments/v2.11.0rc1_summary.yaml | 3 ++ .../rst/porting_guides/porting_guide_core_2.11.rst | 2 +- lib/ansible/release.py | 2 +- 5 files changed, 66 insertions(+), 2 deletions(-) create mode 100644 changelogs/fragments/v2.11.0rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst index f65c43d542..e56cb8c63e 100644 --- a/changelogs/CHANGELOG-v2.11.rst +++ b/changelogs/CHANGELOG-v2.11.rst @@ -5,6 +5,32 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes .. contents:: Topics +v2.11.0rc1 +========== + +Release Summary +--------------- + +| Release Date: 2021-04-05 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-test - Add constraint for ``decorator`` for Python versions prior to 3.5. +- service_facts - return service state information on OpenBSD. + +Bugfixes +-------- + +- OpenBSD module_utils - update sysctl variable name +- WorkerProcess - Implement workaround for stdout deadlock in multiprocessing shutdown to avoid process hangs. +- ansible-test - Add a ``six < 1.14.0`` constraint for Python 2.6. +- ansible-test - The ``--export`` option for ``ansible-test coverage`` is now limited to the ``combine`` command. It was previously available for reporting commands on which it had no effect. +- ansible-test - The ``ansible-test coverage combine`` option ``--export`` now exports relative paths. This avoids loss of coverage data when aggregating across systems with different absolute paths. Paths will be converted back to absolute when generating reports. +- debug action, prevent setting facts when displaying ansible_facts. + v2.11.0b4 ========= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8124ca8e6b..08ce98e2f0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1586,3 +1586,38 @@ releases: - v2.11.0b4_summary.yaml - wait_for_fix.yml release_date: '2021-03-29' + 2.11.0rc1: + changes: + bugfixes: + - OpenBSD module_utils - update sysctl variable name + - WorkerProcess - Implement workaround for stdout deadlock in multiprocessing + shutdown to avoid process hangs. + - ansible-test - Add a ``six < 1.14.0`` constraint for Python 2.6. + - ansible-test - The ``--export`` option for ``ansible-test coverage`` is now + limited to the ``combine`` command. It was previously available for reporting + commands on which it had no effect. + - ansible-test - The ``ansible-test coverage combine`` option ``--export`` now + exports relative paths. This avoids loss of coverage data when aggregating + across systems with different absolute paths. Paths will be converted back + to absolute when generating reports. + - debug action, prevent setting facts when displaying ansible_facts. + minor_changes: + - ansible-test - Add constraint for ``decorator`` for Python versions prior + to 3.5. + - service_facts - return service state information on OpenBSD. + release_summary: '| Release Date: 2021-04-05 + + | `Porting Guide `__ + + ' + codename: Hey Hey, What Can I Do + fragments: + - ansible-test-decorator-constraint.yml + - ansible-test-fix-coverage-export.yml + - ansible-test-six.yml + - debug_dont_set_facts.yml + - openbsd-service.yml + - openbsd-sysutil.yml + - v2.11.0rc1_summary.yaml + - workerprocess-stdout-deadlock.yml + release_date: '2021-04-05' diff --git a/changelogs/fragments/v2.11.0rc1_summary.yaml b/changelogs/fragments/v2.11.0rc1_summary.yaml new file mode 100644 index 0000000000..2a0d37c5a9 --- /dev/null +++ b/changelogs/fragments/v2.11.0rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-04-05 + | `Porting Guide `__ diff --git a/docs/docsite/rst/porting_guides/porting_guide_core_2.11.rst b/docs/docsite/rst/porting_guides/porting_guide_core_2.11.rst index ec55443a78..eb4315cd01 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_core_2.11.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_core_2.11.rst @@ -9,7 +9,7 @@ This section discusses the behavioral changes between ``ansible-base`` 2.10 and It is intended to assist in updating your playbooks, plugins and other parts of your Ansible infrastructure so they work with this version of ``ansible-core``. -We suggest you read this page along with the `ansible-core Changelog for 2.11 `_ to understand what updates you may need to make. +We suggest you read this page along with the `ansible-core Changelog for 2.11 `_ to understand what updates you may need to make. ``ansible-core`` is mainly of interest for developers and users who only want to use a small, controlled subset of the available collections. Regular users should install Ansible. diff --git a/lib/ansible/release.py b/lib/ansible/release.py index ff59e51dbe..4056954413 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.11.0b4.post0' +__version__ = '2.11.0rc1' __author__ = 'Ansible, Inc.' __codename__ = 'Hey Hey, What Can I Do' -- cgit v1.2.1