New release v2.8.5

pull/62230/head v2.8.5
Toshio Kuratomi 5 years ago
parent 659147b2e2
commit eb1995d41d

@ -1853,3 +1853,40 @@ releases:
- win_dsc-datetime.yaml
- win_user-logon-err.yaml
release_date: '2019-08-15'
2.8.5:
codename: How Many More Times
fragments:
- 57096-netapp_e_lun_mapping-Fix-confict-and-zero-lun.yaml
- 57185-fix_vmware_modules_py_pre2.79.yaml
- 58194-vm-name-item-not-yet-present-at-creation-time.yaml
- 59471-systemd-wait-while-deactivating.yaml
- 59745-fix-pipelining-in-buildah-connection-plugin.yml
- 60381-docker_login-logout-change.yml
- 60410-search-project-in-domain.yml
- 60412-ce_bfd_global-to-fix-bugs.yml
- 60461-ovirt-vm-update-template-search-by-datacenter.yml
- 60581-ovirt-vm-add-linux-boot-param-warning.yml
- 60582-ovirt-vm-update-kernel-docs.yml
- 60616-support-multiple-port.yaml
- 60683-backport-57418.yaml
- 60727-acme_certificate-acme-compatibility.yml
- 60737-xenserver_guest-vbd-plug-fix.yml
- 60745-openssl_certificate-idempotency.yml
- 60912-constructed-groups-option-sanitization.yaml
- 60961-docker_compose-fix-deprecation-warning.yml
- 61231-extended-loop-include.yaml
- 61655-fix-digital-ocean-droplet-create.yaml
- 61735-wait-for-s3-bucket-to-exist-before-modifying.yaml
- 61740-docker_container-port-range-parsing.yml
- bigip-monitor-http-receive-parameter.yaml
- meraki-syslog-net-id.yaml
- meraki_syslog_net_id.yaml
- nxos_install_os_28_testfix.yaml
- openbsd-disabled-account-no-warning-for-passwd.yaml
- package_facts-performace-regression-fix.yaml
- purefa_facts-api-version-check-for-admin-and-all.yml
- user-docs-group-fix.yaml
- v2.8.5_summary.yaml
- win_domain-exceptions-2.yaml
- win_domain-exceptions.yaml
release_date: '2019-09-12'

@ -5,6 +5,57 @@ Ansible 2.8 "How Many More Times" Release Notes
.. contents:: Topics
v2.8.5
======
Release Summary
---------------
| Release Date: 2019-09-12
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Minor Changes
-------------
- ovirt_vm - add documentation warning about linux boot params - they will not be suported since oVirt 4.4 (https://bugzilla.redhat.com/1732437)
- ovirt_vm - add warning message about linux boot params - they will not be suported since oVirt 4.4 (https://bugzilla.redhat.com/1732437)
Bugfixes
--------
- Backported to stable-2.8 - Fix
- Extended loop variables now work with includes (https://github.com/ansible/ansible/pull/61231)
- Fix nxos_install_os test cases typo (https://github.com/ansible/ansible/pull/58825).
- Pipelining now works with the buildah plugin.
- acme_certificate - improve compatibility when finalizing ACME v2 orders. Fixes problem with Buypass' ACME v2 testing endpoint.
- apt_facts - fix performance regression when getting facts about apt packages (https://github.com/ansible/ansible/issues/60450)
- aws_s3 - Try to wait for the bucket to exist before setting the access control list.
- bigip_monitor_http - fix issue with receive parameter idempotency (https://github.com/ansible/ansible/pull/59999)
- ce_bfd_global - update to fix some bugs - When BFD is unavailable, tosExp and other parameters are sent down to report errors; this error is corrected and the query results are processed again. (https://github.com/ansible/ansible/pull/60412)
- constructed - Add a warning for the change in behavior in the sanitization of the groups option.
- digital_ocean_droplet - Fix creation of DigitalOcean droplets using digital_ocean_droplet module (https://github.com/ansible/ansible/pull/61655)
- docker_compose - fix issue where docker deprecation warning results in ansible erroneously reporting a failure
- docker_container - improve error behavior when parsing port ranges fails.
- docker_login - report change on successful logout (https://github.com/ansible/ansible/issues/59232)
- docker_swarm_service - allow the same port to be published both with TCP and UDP.
- meraki_syslog - Module would ignore net_id parameter if passed.
- meraki_syslog - Properly handle tasks with `net_id` instead of `net_name`.
- netapp_e_lun_mapping - Fix hosts with same lun number conflict in netapp_e_lun_mapping
- netapp_e_lun_mapping - Fix netapp_e_host module bug when lun=0
- openssl_certificate - if both private key and CSR were specified, the idempotency check for ``selfsigned`` and ``ownca`` providers ignored the CSR.
- os_user - when domain is provided, default_project will be taken from this domain.
- ovirt_vm - update tempalte search by datacenter (https://github.com/ansible/ansible/issues/59189)
- proxmox_kvm - fixed issue when vm has not yet a name item (https://github.com/ansible/ansible/issues/58194)
- purefa_facts - Fix bug which causes module failure when selecting I(admins) or I(all) against an old Purity version
- systemd - wait for a service which is in deactivating state when using ``state=stopped`` (https://github.com/ansible/ansible/pull/59471)
- user - allow 13 asterisk characters in password field without warning
- user - update docs to reflect proper way to remove account from all groups
- vmware - Ensure we can use the modules with Python < 2.7.9 or RHEL/CentOS < 7.4, this as soon as ``validate_certs`` is disabled.
- win_domain - Set reboot required dependent on exception and add exception id to error message
- win_domain_controller - Do not fail the play without the user being able to catch dcpromo failing because of a pending reboot within a playbook using ignore_error or retry logic.
- xenserver_guest - when adding disks to a VM in powered on state, disks are now properly plugged/activated (https://github.com/ansible/ansible/issues/60693).
v2.8.4
======

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2019-09-12
| `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.8.4.post0'
__version__ = '2.8.5'
__author__ = 'Ansible, Inc.'
__codename__ = 'How Many More Times'

Loading…
Cancel
Save