diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index d67b7cdf078..7cf459659ba 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -513,3 +513,33 @@ releases: - user-do-not-pass-ssh_key_passphrase-on-cmdline.yaml - v2.6.7_summary.yaml release_date: '2018-10-31' + 2.6.8: + codename: Heartbreaker + fragments: + - 43997-docker_network-inspect.yaml + - 44988-acme-post-as-get.yaml + - 45508-parse-docker-service-parameter.yaml + - 46275-fix-_cond_not_supported_warn.yaml + - 46521-zabbix_host-fix-link-template-error.yml + - 46961_fix_aws_ec2_cache.yaml + - 47096-junos-terminal-regex-fix.yml + - 47296-docker_container-memory_swappiness.yaml + - 47313-vmware_utils-handle_requests_import_error.yaml + - 47395-docker_container-ipvX_address.yaml + - 47396-docker_container-detach-auto-remove.yaml + - 47712-docker_container-detach-auto-remove.yml + - 47722-vmware_guest_powerstate-restore_timeout.yaml + - 47889-vmware_doc-fix_privilege_names.yaml + - 47900-docker_container-paused.yml + - 47997-docker_container-ipc-pid-mode.yml + - 48061-docker_container-auto_removal.yml + - docker_volume-force-change-detection.yaml + - lvg_fix_47301.yaml + - nxos_26_changelog.yaml + - openssl-python3.yaml + - postgresql_user-not-sup-error.yaml + - psexec-handle-socket-errors.yaml + - psexec-imp-error.yaml + - v2.6.8_summary.yaml + - win_uri-junk-data.yaml + release_date: '2018-11-15' diff --git a/changelogs/CHANGELOG-v2.6.rst b/changelogs/CHANGELOG-v2.6.rst index 830b5fdc6aa..d148b6898c9 100644 --- a/changelogs/CHANGELOG-v2.6.rst +++ b/changelogs/CHANGELOG-v2.6.rst @@ -2,6 +2,52 @@ Ansible 2.6 "Heartbreaker" Release Notes ======================================== +v2.6.8 +====== + +Release Summary +--------------- + +| Release Date: 2018-11-15 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Update plugin filter documentation. + +Bugfixes +-------- + +- ACME modules support `POST-as-GET `__ and will be able to access Let's Encrypt ACME v2 endpoint after November 1st, 2019. +- Add force disruptive option nxos_instal_os module (https://github.com/ansible/ansible/pull/47694). +- Avoid misleading PyVmomi error if requests import fails in vmware module utils. +- Fix for StrategyModule object has no attribute _cond_not_supported_warn (https://github.com/ansible/ansible/issues/46275) +- Fix trailing command in net_neighbors nxos_facts (https://github.com/ansible/ansible/pull/47548). +- Restore timeout in set_vm_power_state operation in vmware_guest_powerstate module. +- aws_ec2 - fixed issue where cache did not contain the computed groups +- docker_container - do not fail when removing a container which has ``auto_remove: yes``. +- docker_container - fail if ``ipv4_address`` or ``ipv6_address`` is used with a too old docker-py version. +- docker_container - fix ``ipc_mode`` and ``pid_mode`` idempotency if the ``host:`` form is used (as opposed to ``host:``). +- docker_container - fix ``memory_swappiness`` documentation. +- docker_container - fix ``paused`` option (which never worked). +- docker_container - fix behavior of ``detach: yes`` if ``auto_remove: yes`` is specified. +- docker_container - fixing race condition when ``detach`` and ``auto_remove`` are both ``true``. +- docker_network - fixes idempotency issues (https://github.com/ansible/ansible/issues/33045) and name substring issue (https://github.com/ansible/ansible/issues/32926). +- docker_service - correctly parse string values for the `scale` parameter https://github.com/ansible/ansible/pull/45508 +- docker_volume - fix ``force`` and change detection logic. If not both evaluated to ``True``, the volume was not recreated. +- junos - fix terminal prompt regex (https://github.com/ansible/ansible/pull/47096) +- lvg - fixed an idempotency regression in the lvg module (https://github.com/ansible/ansible/issues/47301) +- nxos_evpn_vni check_mode (https://github.com/ansible/ansible/pull/46612). +- nxos_file_copy fix for binary files (https://github.com/ansible/ansible/pull/46822). +- openssl_csr - fix byte encoding issue on Python 3 +- postgresql_user - create pretty error message when creating a user without an encrypted password on newer PostgreSQL versions +- psexec - Handle socket.error exceptions properly +- psexec - give proper error message when the psexec requirements are not installed +- win_uri - stop junk output from being returned to Ansible - https://github.com/ansible/ansible/issues/47998 +- zabbix_host - module was failing when zabbix host was updated with new interface and template depending on that interface at the same time + v2.6.7 ====== diff --git a/changelogs/fragments/v2.6.8_summary.yaml b/changelogs/fragments/v2.6.8_summary.yaml new file mode 100644 index 00000000000..21d6525320c --- /dev/null +++ b/changelogs/fragments/v2.6.8_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2018-11-15 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index a1fd488c3d5..c751bec64dd 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.6.7.post0' +__version__ = '2.6.8' __author__ = 'Ansible, Inc.' __codename__ = 'Heartbreaker'