Skip to content

Commit 11a2baf

Browse files
committed
New release v2.7.7
1 parent ad71a9a commit 11a2baf

File tree

4 files changed

+79
-1
lines changed

4 files changed

+79
-1
lines changed

changelogs/.changes.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -757,3 +757,32 @@ releases:
757757
- windows_setup_memtotal.yml
758758
- yumdnf-better-uri-handling.yaml
759759
release_date: '2019-01-17'
760+
2.7.7:
761+
codename: In the Light
762+
fragments:
763+
- 24633-copy-coherency-between-check-normal-mode.yaml
764+
- 47213-onepassword_facts_fix_password_lookup.yaml
765+
- 49444_fix_check_if_archive_is_created_in_path_to_be_removed.yml
766+
- 50006-azure_rm_inventory_batchrequest_fix.yaml
767+
- 50248-fix-coonfig-backup-glob.yaml
768+
- 51232-docker_swarm_service-endpoint_mode.yaml
769+
- 51406-aci_aaa_user-description.yaml
770+
- 51495-k8s-load-envvars.yaml
771+
- 51602-ec2_instance_single_iface_description.yaml
772+
- cli_config_diff_fix.yaml
773+
- delegate_facts_fix.yaml
774+
- file-touch-non-owner.yaml
775+
- fix_ansible_connect_timeout.yaml
776+
- fix_ir_dupes.yml
777+
- fix_pull_extra.yml
778+
- nios_a_record_delete_failure_with_uppercase_name.yaml
779+
- py37_misc_module_backports.yaml
780+
- reboot-conn-timeout-reset.yaml
781+
- ssh_connection_invalid_password.yaml
782+
- systemd-warn-on-chroot.yaml
783+
- v2.7.7_summary.yaml
784+
- vmware_guest-documentation_fix.yaml
785+
- win_chocolatey.yaml
786+
- win_power_plan-windows10.yaml
787+
- xdg_systemd_fix.yml
788+
release_date: '2019-02-07'

changelogs/CHANGELOG-v2.7.rst

+46
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,52 @@ Ansible 2.7 "In the Light" Release Notes
55
.. contents:: Topics
66

77

8+
v2.7.7
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
| Release Date: 2019-02-07
15+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16+
17+
18+
Minor Changes
19+
-------------
20+
21+
- Allow check_mode with supports_generate_diff capability in cli_config. (https://github.com/ansible/ansible/pull/51417)
22+
- Fixed typo in vmware documentation fragment. Changed "supported added" to "support added".
23+
24+
Bugfixes
25+
--------
26+
27+
- All K8S_AUTH_* environment variables are now properly loaded by the k8s lookup plugin
28+
- 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)
29+
- 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)
30+
- aci_aaa_user - Fix setting user description (https://github.com/ansible/ansible/issues/51406)
31+
- apt_repository - fixed failure under Python 3.7 (https://github.com/ansible/ansible/pull/47219)
32+
- archive - Fix check if archive is created in path to be removed
33+
- azure_rm inventory plugin - fix azure batch request (https://github.com/ansible/ansible/pull/50006)
34+
- cnos_backup - fixed syntax error (https://github.com/ansible/ansible/pull/47219)
35+
- cnos_image - fixed syntax error (https://github.com/ansible/ansible/pull/47219)
36+
- consul_kv - minor error-handling bugfix under Python 3.7 (https://github.com/ansible/ansible/pull/47219)
37+
- copy - align invocation in return value between check and normal mode
38+
- delegate_facts - fix to work properly under block and include_role (https://github.com/ansible/ansible/pull/51553)
39+
- docker_swarm_service - fix ``endpoint_mode`` and ``publish`` idempotency.
40+
- ec2_instance - Correctly adds description when adding a single ENI to the instance
41+
- ensure we have a XDG_RUNTIME_DIR, as it is not handled correctly by some privilege escalation configurations
42+
- file - Allow state=touch on file the user does not own https://github.com/ansible/ansible/issues/50943
43+
- fix ansible-pull hanlding of extra args, complex quoting is needed for inline JSON
44+
- fix ansible_connect_timeout variable in network_cli,netconf,httpapi and nxos_install_os timeout check
45+
- netapp_e_storagepool - fixed failure under Python 3.7 (https://github.com/ansible/ansible/pull/47219)
46+
- onepassword_facts - Fix an issue looking up some 1Password items which have a 'password' attribute alongside the 'fields' attribute, not inside it.
47+
- prevent import_role from inserting dupe into `roles:` execution when duplicate signature role already exists in the section.
48+
- reboot - Fix bug where the connection timeout was not reset in the same task after rebooting
49+
- ssh connection - do not retry with invalid credentials to prevent account lockout (https://github.com/ansible/ansible/issues/48422)
50+
- systemd - warn when exeuting in a chroot environment rather than failing (https://github.com/ansible/ansible/pull/43904)
51+
- win_chocolatey - Fix hang when used with proxy for the first time - https://github.com/ansible/ansible/issues/47669
52+
- win_power_plan - Fix issue where win_power_plan failed on newer Windows 10 builds - https://github.com/ansible/ansible/issues/43827
53+
854
v2.7.6
955
======
1056

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
release_summary: |
2+
| Release Date: 2019-02-07
3+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

lib/ansible/release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from __future__ import (absolute_import, division, print_function)
2020
__metaclass__ = type
2121

22-
__version__ = '2.7.6.post0'
22+
__version__ = '2.7.7'
2323
__author__ = 'Ansible, Inc.'
2424
__codename__ = 'In the Light'

0 commit comments

Comments
 (0)