summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2018-11-29 09:02:47 -0800
committerToshio Kuratomi <a.badger@gmail.com>2018-11-29 09:02:47 -0800
commitc3c4bd2cfbf8c323aed06a3e32290eff8989721f (patch)
treed5e251a5402280c81f1042eef39df7074082423a
parentf1b6f5d2045004f5105963c00292b1090c524696 (diff)
downloadansible-c3c4bd2cfbf8c323aed06a3e32290eff8989721f.tar.gz
New release v2.7.3v2.7.3
-rw-r--r--changelogs/.changes.yaml22
-rw-r--r--changelogs/CHANGELOG-v2.7.rst38
-rw-r--r--changelogs/fragments/v2.7.3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 64 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 26ae267af4..4e5c1d682d 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -628,3 +628,25 @@ releases:
- yum-handle-obsoletes-check-update.yaml
- yumdnf-autoremove.yaml
release_date: '2018-11-15'
+ 2.7.3:
+ codename: In the Light
+ fragments:
+ - 15732-wait_for-documentation_fix.yaml
+ - 46044-puppet-puppet6-fix.yaml
+ - 47198-fix-setuptools-distutils.yaml
+ - 47747-ftd-http-api-fixes.yaml
+ - 48580-apt_key-no-tty.yaml
+ - 48673-fix-omit-on-play-keywords.yaml
+ - 48675-cs_template-fix-keyerror-state-extracted.yml
+ - 48809-sysvinit_defaults_if_no_runlevels.yaml
+ - 48836-proxymox_kvm-dictionary.yaml
+ - 49078-docker_container-min-version-fix.yml
+ - cfg_mgr_fix.yml
+ - deal_with_bad_config_types.yml
+ - dnf-modularity.yaml
+ - docker_network-driver_options.yaml
+ - ec2_group-rule-purge-fix.yaml
+ - ps_sb_logging.yaml
+ - v2.7.3_summary.yaml
+ - win_security_policy-rights.yaml
+ release_date: '2018-11-29'
diff --git a/changelogs/CHANGELOG-v2.7.rst b/changelogs/CHANGELOG-v2.7.rst
index 0762dd4474..b24ea80c7a 100644
--- a/changelogs/CHANGELOG-v2.7.rst
+++ b/changelogs/CHANGELOG-v2.7.rst
@@ -5,6 +5,44 @@ Ansible 2.7 "In the Light" Release Notes
.. contents:: Topics
+v2.7.3
+======
+
+Release Summary
+---------------
+
+| Release Date: 2018-11-29
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Document Path and Port are mutually exclusive parameters in wait_for module.
+- Puppet module remove ``--ignorecache`` to allow Puppet 6 support
+- dnf properly support modularity appstream installation via overloaded group modifier syntax
+- proxmox_kvm - fix exception.
+- win_security_policy - warn users to use win_user_right instead when editing ``Privilege Rights``
+
+Bugfixes
+--------
+
+- Fix the issue that FTD HTTP API retries authentication-related HTTP requests.
+- Fix the issue that module fails when the Swagger model does not have required fields.
+- Fix the issue with comparing string-like objects.
+- Fix using omit on play keywords (https://github.com/ansible/ansible/issues/48673)
+- Windows - prevent sensitive content from appearing in scriptblock logging (CVE 2018-16859)
+- apt_key - Disable TTY requirement in GnuPG for the module to work correctly when SSH pipelining is enabled (https://github.com/ansible/ansible/pull/48580)
+- better error message when bad type in config, deal with EVNAR= more gracefully https://github.com/ansible/ansible/issues/22470
+- configuration retrieval would fail on non primed plugins
+- cs_template - Fixed a KeyError on state=extracted.
+- docker_container - fix idempotency problems with docker-py caused by previous ``init`` idempotency fix.
+- docker_container - fix interplay of docker-py version check with argument_spec validation improvements.
+- docker_network - ``driver_options`` containing Python booleans would cause Docker to throw exceptions.
+- ec2_group - Fix comparison of determining which rules to purge by ignoring descriptions - https://github.com/ansible/ansible/issues/47904
+- pip module - fix setuptools/distutils replacement (https://github.com/ansible/ansible/issues/47198)
+- sysvinit - enabling a service should use "defaults" if no runlevels are specified
+
v2.7.2
======
diff --git a/changelogs/fragments/v2.7.3_summary.yaml b/changelogs/fragments/v2.7.3_summary.yaml
new file mode 100644
index 0000000000..d21d39b440
--- /dev/null
+++ b/changelogs/fragments/v2.7.3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2018-11-29
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 3e954b22c9..4f68e227b5 100644
--- a/lib/ansible/release.py
+++ b/lib/ansible/release.py
@@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
-__version__ = '2.7.2.post0'
+__version__ = '2.7.3'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'