diff options
-rw-r--r-- | changelogs/CHANGELOG-v2.11.rst | 19 | ||||
-rw-r--r-- | changelogs/changelog.yaml | 27 | ||||
-rw-r--r-- | changelogs/fragments/v2.11.7rc1_summary.yaml | 3 | ||||
-rw-r--r-- | lib/ansible/release.py | 2 |
4 files changed, 50 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst index bdf8b60915..e79bcdfe8d 100644 --- a/changelogs/CHANGELOG-v2.11.rst +++ b/changelogs/CHANGELOG-v2.11.rst @@ -5,6 +5,25 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes .. contents:: Topics +v2.11.7rc1 +========== + +Release Summary +--------------- + +| Release Date: 2021-11-29 +| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ + + +Bugfixes +-------- + +- Ansible.ModuleUtils.LinkUtil - Ignore the ``LIB`` environment variable when loading the ``LinkUtil`` code +- ``action_groups`` - Alias short names in collection action groups to FQCR of the owning collection (https://github.com/ansible/ansible/issues/76164) +- hostname, fix module example using `strategy` instead of `use`. +- set ssh host_key_checking defaults to True, restoring original behaviour (https://github.com/ansible/ansible/issues/75168) +- validate_argument_spec - Skip suboption validation if the top level option is an invalid type (https://github.com/ansible/ansible/issues/75612). + v2.11.6 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 4d0bd4bfdf..8bc89d3da0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2044,3 +2044,30 @@ releases: - powershell-addtype-env-vars.yml - v2.11.6rc1_summary.yaml release_date: '2021-10-04' + 2.11.7rc1: + changes: + bugfixes: + - Ansible.ModuleUtils.LinkUtil - Ignore the ``LIB`` environment variable when + loading the ``LinkUtil`` code + - '``action_groups`` - Alias short names in collection action groups to FQCR + of the owning collection (https://github.com/ansible/ansible/issues/76164) + + ' + - hostname, fix module example using `strategy` instead of `use`. + - set ssh host_key_checking defaults to True, restoring original behaviour (https://github.com/ansible/ansible/issues/75168) + - validate_argument_spec - Skip suboption validation if the top level option + is an invalid type (https://github.com/ansible/ansible/issues/75612). + release_summary: '| Release Date: 2021-11-29 + + | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ + + ' + codename: Hey Hey, What Can I Do + fragments: + - 75635-fix-role-argspec-suboption-validation.yml + - 76164-alias-action-groups-shortnames.yml + - fix_hostname_example.yml + - set-ssh-host_key_checking-defaults.yaml + - v2.11.7rc1_summary.yaml + - win_LinkUtil-ignore-LIB.yml + release_date: '2021-11-29' diff --git a/changelogs/fragments/v2.11.7rc1_summary.yaml b/changelogs/fragments/v2.11.7rc1_summary.yaml new file mode 100644 index 0000000000..3bd5818c1a --- /dev/null +++ b/changelogs/fragments/v2.11.7rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-11-29 + | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index fdaf5e428b..923d94b4c1 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.6.post0' +__version__ = '2.11.7rc1' __author__ = 'Ansible, Inc.' __codename__ = 'Hey Hey, What Can I Do' |