Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release v2.12.0b2 #76000

Merged
merged 1 commit into from Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 28 additions & 0 deletions changelogs/CHANGELOG-v2.12.rst
Expand Up @@ -5,6 +5,34 @@ ansible-core 2.12 "Dazed and Confused" Release Notes
.. contents:: Topics


v2.12.0b2
=========

Release Summary
---------------

| Release Date: 2021-10-11
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__


Minor Changes
-------------

- ansible-test - Update the ``base`` and ``default`` containers from Python 3.10.0rc2 to 3.10.0.

Security Fixes
--------------

- Do not include params in exception when a call to ``set_options`` fails. Additionally, block the exception that is returned from being displayed to stdout. (CVE-2021-3620)

Bugfixes
--------

- ansible-test - Fix path to inventory file for ``windows-integration`` and ``network-integration`` commands for collections.
- ansible-test - Update distribution test containers to version 3.1.0.
- ansible-test - Use the correct variable to reference the client's SSH key when generating inventory.
- ansible-test pslint - Fix error when encountering validation results that are highly nested - https://github.com/ansible/ansible/issues/74151

v2.12.0b1
=========

Expand Down
33 changes: 31 additions & 2 deletions changelogs/changelog.yaml
Expand Up @@ -1029,6 +1029,35 @@ releases:
- when-eval-native-py310.yml
- winrm-kinit-env.yml
- world_readable_fixes.yml
plugins:
filter: []
release_date: '2021-09-27'
2.12.0b2:
changes:
bugfixes:
- ansible-test - Fix path to inventory file for ``windows-integration`` and
``network-integration`` commands for collections.
- ansible-test - Update distribution test containers to version 3.1.0.
- ansible-test - Use the correct variable to reference the client's SSH key
when generating inventory.
- ansible-test pslint - Fix error when encountering validation results that
are highly nested - https://github.com/ansible/ansible/issues/74151
minor_changes:
- ansible-test - Update the ``base`` and ``default`` containers from Python
3.10.0rc2 to 3.10.0.
release_summary: '| Release Date: 2021-10-11

| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

'
security_fixes:
- Do not include params in exception when a call to ``set_options`` fails. Additionally,
block the exception that is returned from being displayed to stdout. (CVE-2021-3620)
codename: Dazed and Confused
fragments:
- ansible-test-default-base-containers-python-3.10.yaml
- ansible-test-distro-containers-3.1.0.yaml
- ansible-test-inventory-path.yaml
- ansible-test-inventory-ssh-key.yml
- avoid-set_options-leak.yaml
- pslint-sanity-warning.yml
- v2.12.0b2_summary.yaml
release_date: '2021-10-11'
3 changes: 3 additions & 0 deletions changelogs/fragments/v2.12.0b2_summary.yaml
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2021-10-11
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Expand Up @@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

__version__ = '2.12.0b1.post0'
__version__ = '2.12.0b2'
__author__ = 'Ansible, Inc.'
__codename__ = 'Dazed and Confused'