New release v2.7.3
This commit is contained in:
parent
f1b6f5d204
commit
c3c4bd2cfb
4 changed files with 64 additions and 1 deletions
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
======
|
||||
|
||||
|
|
3
changelogs/fragments/v2.7.3_summary.yaml
Normal file
3
changelogs/fragments/v2.7.3_summary.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
release_summary: |
|
||||
| Release Date: 2018-11-29
|
||||
| `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.7.2.post0'
|
||||
__version__ = '2.7.3'
|
||||
__author__ = 'Ansible, Inc.'
|
||||
__codename__ = 'In the Light'
|
||||
|
|
Loading…
Reference in a new issue