Skip to content

Commit

Permalink
New release v2.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
relrod committed Dec 14, 2020
1 parent 12b33c7 commit 436d8a1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
7 changes: 4 additions & 3 deletions changelogs/CHANGELOG-v2.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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>`__

Expand Down Expand Up @@ -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).
Expand Down
15 changes: 15 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/v2.10.4_summary.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2020-12-14
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 436d8a1

Please sign in to comment.