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.13.2rc1 #78229

Merged
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
26 changes: 26 additions & 0 deletions changelogs/CHANGELOG-v2.13.rst
Expand Up @@ -5,6 +5,32 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics


v2.13.2rc1
==========

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

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


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

- ansible-test - An improved error message is shown when the download of a pip bootstrap script fails. The download now uses ``urllib2`` instead of ``urllib`` on Python 2.

Bugfixes
--------

- Move undefined check from concat to finalize (https://github.com/ansible/ansible/issues/78156)
- ansible-doc - no longer list module and plugin aliases that are created with symlinks (https://github.com/ansible/ansible/pull/78137).
- ansible-doc - when listing modules in collections, proceed recursively. This fixes module listing for community.general 5.x.y and community.network 4.x.y (https://github.com/ansible/ansible/pull/78137).
- ansible-doc will not add 'website for' in ":ref:" substitutions as it made them confusing.
- file backed cache plugins now handle concurrent access by making atomic updates to the files.
- password lookup does not ignore k=v arguments anymore.
- user - Fix error "Permission denied" in user module while generating SSH keys (https://github.com/ansible/ansible/issues/78017).

v2.13.1
=======

Expand Down
36 changes: 36 additions & 0 deletions changelogs/changelog.yaml
Expand Up @@ -877,3 +877,39 @@ releases:
- v2.13.1rc1_summary.yaml
- windows_conn_option_fix.yml
release_date: '2022-06-13'
2.13.2rc1:
changes:
bugfixes:
- Move undefined check from concat to finalize (https://github.com/ansible/ansible/issues/78156)
- ansible-doc - no longer list module and plugin aliases that are created with
symlinks (https://github.com/ansible/ansible/pull/78137).
- ansible-doc - when listing modules in collections, proceed recursively. This
fixes module listing for community.general 5.x.y and community.network 4.x.y
(https://github.com/ansible/ansible/pull/78137).
- ansible-doc will not add 'website for' in ":ref:" substitutions as it made
them confusing.
- file backed cache plugins now handle concurrent access by making atomic updates
to the files.
- password lookup does not ignore k=v arguments anymore.
- user - Fix error "Permission denied" in user module while generating SSH keys
(https://github.com/ansible/ansible/issues/78017).
minor_changes:
- ansible-test - An improved error message is shown when the download of a pip
bootstrap script fails. The download now uses ``urllib2`` instead of ``urllib``
on Python 2.
release_summary: '| Release Date: 2022-07-11

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

'
codename: Nobody's Fault but Mine
fragments:
- 78137-ansible-doc-list-modules-recursively.yml
- 78156-undefined-check-in-finalize.yml
- ansible-test-pip-bootstrap.yml
- atomic_cache_files.yml
- fix_adoc_text.yml
- password_lookup_fix.yml
- permission-denied-spwd-module.yml
- v2.13.2rc1_summary.yaml
release_date: '2022-07-11'
3 changes: 3 additions & 0 deletions changelogs/fragments/v2.13.2rc1_summary.yaml
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-07-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.13.1.post0'
__version__ = '2.13.2rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"