New release v2.12.8rc1 (#78471)

pull/78477/head v2.12.8rc1
Christian Adams 4 years ago committed by GitHub
parent 45185b03e2
commit 19bd3ea529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,29 @@ ansible-core 2.12 "Dazed and Confused" Release Notes
.. contents:: Topics
v2.12.8rc1
==========
Release Summary
---------------
| Release Date: 2022-08-08
| `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
--------
- ansible-connection - decrypt vaulted parameters before sending over the socket, as vault secrets are not available on the other side.
- ansible-galaxy - fix setting the cache for paginated responses from Galaxy NG/AH (https://github.com/ansible/ansible/issues/77911).
- ansible-test - Delegation now properly handles arguments given after ``--`` on the command line.
- file backed cache plugins now handle concurrent access by making atomic updates to the files.
v2.12.7
=======

@ -1528,3 +1528,32 @@ releases:
- plugin-loader-deterministic-fuzzy-match.yml
- v2.12.7rc1_summary.yaml
release_date: '2022-06-13'
2.12.8rc1:
changes:
bugfixes:
- ansible-connection - decrypt vaulted parameters before sending over the socket,
as vault secrets are not available on the other side.
- ansible-galaxy - fix setting the cache for paginated responses from Galaxy
NG/AH (https://github.com/ansible/ansible/issues/77911).
- ansible-test - Delegation now properly handles arguments given after ``--``
on the command line.
- file backed cache plugins now handle concurrent access by making atomic updates
to the files.
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-08-08
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: Dazed and Confused
fragments:
- 78325-ansible-galaxy-fix-caching-paginated-responses-from-v3-servers.yml
- ansible-connection_decode.yml
- ansible-test-filter-options.yml
- ansible-test-pip-bootstrap.yml
- atomic_cache_files.yml
- v2.12.8rc1_summary.yaml
release_date: '2022-08-08'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-08-08
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.12.7.post0'
__version__ = '2.12.8rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Dazed and Confused'

Loading…
Cancel
Save