New release v2.10.4

This commit is contained in:
Rick Elrod 2020-12-14 14:44:44 -06:00
parent 12b33c79ee
commit 436d8a13b4
4 changed files with 23 additions and 4 deletions

View file

@ -5,13 +5,13 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
v2.10.4rc1
==========
v2.10.4
=======
Release Summary
---------------
| Release Date: 2020-12-07
| Release Date: 2020-12-14
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@ -43,6 +43,7 @@ Bugfixes
- account for bug in Python 2.6 that occurs during interpreter shutdown to avoid stack trace
- ansible-test - Correctly detect changes in a GitHub pull request when running on Azure Pipelines.
- ansible-test - Skip installing requirements if they are already installed.
- ansible-test - ``cryptography`` is now limited to versions prior to 3.2 only when an incompatible OpenSSL version (earlier than 1.1.0) is detected
- ansible-test - add constraint for ``cffi`` to prevent failure on systems with older versions of ``gcc`` (https://foss.heptapod.net/pypy/cffi/-/issues/480)
- ansible-test - convert target paths to unicode on Python 2 to avoid ``UnicodeDecodeError`` (https://github.com/ansible/ansible/issues/68398, https://github.com/ansible/ansible/pull/72623).
- ansible-test - improve classification of changes to ``.gitignore``, ``COPYING``, ``LICENSE``, ``Makefile``, and all files ending with one of ``.in`, ``.md`, ``.rst``, ``.toml``, ``.txt`` in the collection root directory (https://github.com/ansible/ansible/pull/72353).

View file

@ -2129,6 +2129,21 @@ releases:
- url-lookup-ini.yml
- v2.10.3rc1_summary.yaml
release_date: '2020-10-26'
2.10.4:
changes:
bugfixes:
- ansible-test - ``cryptography`` is now limited to versions prior to 3.2 only
when an incompatible OpenSSL version (earlier than 1.1.0) is detected
release_summary: '| Release Date: 2020-12-14
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: When the Levee Breaks
fragments:
- ansible-test-constraints-cryptography.yml
- v2.10.4_summary.yaml
release_date: '2020-12-14'
2.10.4rc1:
changes:
bugfixes:

View file

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

View file

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.10.4rc1.post0'
__version__ = '2.10.4'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'