From 11a2bafa2191bdcf9f059d4eaec6ebc7a3ed17cc Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 7 Feb 2019 14:08:13 -0800 Subject: [PATCH] New release v2.7.7 --- changelogs/.changes.yaml | 29 +++++++++++++++ changelogs/CHANGELOG-v2.7.rst | 46 ++++++++++++++++++++++++ changelogs/fragments/v2.7.7_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.7.7_summary.yaml diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index 8666aacebef..7a492e737ff 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -757,3 +757,32 @@ releases: - windows_setup_memtotal.yml - yumdnf-better-uri-handling.yaml release_date: '2019-01-17' + 2.7.7: + codename: In the Light + fragments: + - 24633-copy-coherency-between-check-normal-mode.yaml + - 47213-onepassword_facts_fix_password_lookup.yaml + - 49444_fix_check_if_archive_is_created_in_path_to_be_removed.yml + - 50006-azure_rm_inventory_batchrequest_fix.yaml + - 50248-fix-coonfig-backup-glob.yaml + - 51232-docker_swarm_service-endpoint_mode.yaml + - 51406-aci_aaa_user-description.yaml + - 51495-k8s-load-envvars.yaml + - 51602-ec2_instance_single_iface_description.yaml + - cli_config_diff_fix.yaml + - delegate_facts_fix.yaml + - file-touch-non-owner.yaml + - fix_ansible_connect_timeout.yaml + - fix_ir_dupes.yml + - fix_pull_extra.yml + - nios_a_record_delete_failure_with_uppercase_name.yaml + - py37_misc_module_backports.yaml + - reboot-conn-timeout-reset.yaml + - ssh_connection_invalid_password.yaml + - systemd-warn-on-chroot.yaml + - v2.7.7_summary.yaml + - vmware_guest-documentation_fix.yaml + - win_chocolatey.yaml + - win_power_plan-windows10.yaml + - xdg_systemd_fix.yml + release_date: '2019-02-07' diff --git a/changelogs/CHANGELOG-v2.7.rst b/changelogs/CHANGELOG-v2.7.rst index 382bddb09b4..960fb05af3d 100644 --- a/changelogs/CHANGELOG-v2.7.rst +++ b/changelogs/CHANGELOG-v2.7.rst @@ -5,6 +5,52 @@ Ansible 2.7 "In the Light" Release Notes .. contents:: Topics +v2.7.7 +====== + +Release Summary +--------------- + +| Release Date: 2019-02-07 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Allow check_mode with supports_generate_diff capability in cli_config. (https://github.com/ansible/ansible/pull/51417) +- Fixed typo in vmware documentation fragment. Changed "supported added" to "support added". + +Bugfixes +-------- + +- All K8S_AUTH_* environment variables are now properly loaded by the k8s lookup plugin +- Change backup file globbing for network _config modules so backing up one host's config will not delete the backed up config of any host whose hostname is a subset of the first host's hostname (e.g., switch1 and switch11) +- Fixes bug where nios_a_record wasn't getting deleted if an uppercase named a_record was being passed. (https://github.com/ansible/ansible/pull/51539) +- aci_aaa_user - Fix setting user description (https://github.com/ansible/ansible/issues/51406) +- apt_repository - fixed failure under Python 3.7 (https://github.com/ansible/ansible/pull/47219) +- archive - Fix check if archive is created in path to be removed +- azure_rm inventory plugin - fix azure batch request (https://github.com/ansible/ansible/pull/50006) +- cnos_backup - fixed syntax error (https://github.com/ansible/ansible/pull/47219) +- cnos_image - fixed syntax error (https://github.com/ansible/ansible/pull/47219) +- consul_kv - minor error-handling bugfix under Python 3.7 (https://github.com/ansible/ansible/pull/47219) +- copy - align invocation in return value between check and normal mode +- delegate_facts - fix to work properly under block and include_role (https://github.com/ansible/ansible/pull/51553) +- docker_swarm_service - fix ``endpoint_mode`` and ``publish`` idempotency. +- ec2_instance - Correctly adds description when adding a single ENI to the instance +- ensure we have a XDG_RUNTIME_DIR, as it is not handled correctly by some privilege escalation configurations +- file - Allow state=touch on file the user does not own https://github.com/ansible/ansible/issues/50943 +- fix ansible-pull hanlding of extra args, complex quoting is needed for inline JSON +- fix ansible_connect_timeout variable in network_cli,netconf,httpapi and nxos_install_os timeout check +- netapp_e_storagepool - fixed failure under Python 3.7 (https://github.com/ansible/ansible/pull/47219) +- onepassword_facts - Fix an issue looking up some 1Password items which have a 'password' attribute alongside the 'fields' attribute, not inside it. +- prevent import_role from inserting dupe into `roles:` execution when duplicate signature role already exists in the section. +- reboot - Fix bug where the connection timeout was not reset in the same task after rebooting +- ssh connection - do not retry with invalid credentials to prevent account lockout (https://github.com/ansible/ansible/issues/48422) +- systemd - warn when exeuting in a chroot environment rather than failing (https://github.com/ansible/ansible/pull/43904) +- win_chocolatey - Fix hang when used with proxy for the first time - https://github.com/ansible/ansible/issues/47669 +- win_power_plan - Fix issue where win_power_plan failed on newer Windows 10 builds - https://github.com/ansible/ansible/issues/43827 + v2.7.6 ====== diff --git a/changelogs/fragments/v2.7.7_summary.yaml b/changelogs/fragments/v2.7.7_summary.yaml new file mode 100644 index 00000000000..e0f9279e161 --- /dev/null +++ b/changelogs/fragments/v2.7.7_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2019-02-07 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 70b74537941..55d6102d773 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.6.post0' +__version__ = '2.7.7' __author__ = 'Ansible, Inc.' __codename__ = 'In the Light'