From 8a731628f998c07a047cebdff39983e7e5f4d6d8 Mon Sep 17 00:00:00 2001 From: Lars Vogdt Date: Fri, 24 May 2019 22:49:38 +0000 Subject: [PATCH 1/2] Accepting request 705080 from home:tux93:branches:systemsmanagement Update to v2.8.0 OBS-URL: https://build.opensuse.org/request/show/705080 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ansible?expand=0&rev=140 --- ansible-2.7.10.tar.gz | 3 --- ansible-2.8.0.tar.gz | 3 +++ ansible.changes | 28 ++++++++++++++++++++++++++++ ansible.spec | 4 ++-- 4 files changed, 33 insertions(+), 5 deletions(-) delete mode 100644 ansible-2.7.10.tar.gz create mode 100644 ansible-2.8.0.tar.gz diff --git a/ansible-2.7.10.tar.gz b/ansible-2.7.10.tar.gz deleted file mode 100644 index c4ab5ae..0000000 --- a/ansible-2.7.10.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84a42d1e371c4222c82e575cb6961fafd3afe920d84e4b6d87affabe400be294 -size 11844278 diff --git a/ansible-2.8.0.tar.gz b/ansible-2.8.0.tar.gz new file mode 100644 index 0000000..410a636 --- /dev/null +++ b/ansible-2.8.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7234dd7d89150dc5bf035bc1ec3c084a8a0699d89e1c9b06b2af6dd34b2ef3ae +size 14285827 diff --git a/ansible.changes b/ansible.changes index e5972a3..8803fab 100644 --- a/ansible.changes +++ b/ansible.changes @@ -1,3 +1,31 @@ +------------------------------------------------------------------- +Wed May 22 14:42:42 UTC 2019 - Marcel Kuehlhorn + +- Update to version 2.8.0 + Major changes: + * Experimental support for Ansible Collections and content namespacing - + Ansible content can now be packaged in a collection and addressed via + namespaces. This allows for easier sharing, distribution, and installation + of bundled modules/roles/plugins, and consistent rules for accessing + specific content via namespaces. + * Python interpreter discovery - The first time a Python module runs on a + target, Ansible will attempt to discover the proper default Python + interpreter to use for the target platform/version (instead of immediately + defaulting to /usr/bin/python). You can override this behavior by + setting ansible_python_interpreter or via config. + (see https://github.com/ansible/ansible/pull/50163) + * become - The deprecated CLI arguments for --sudo, --sudo-user, + --ask-sudo-pass, -su, --su-user, and --ask-su-pass have been removed, in + favor of the more generic --become, --become-user, --become-method, and + --ask-become-pass. + * become - become functionality has been migrated to a plugin architecture, + to allow customization of become functionality and 3rd party become methods + (https://github.com/ansible/ansible/pull/50991) +- addresses CVE-2018-16859, CVE-2018-16876, CVE-2019-3828, CVE-2018-16837 + +For the full changelog see /usr/share/doc/packages/ansible/changelogs or online: +https://github.com/ansible/ansible/blob/stable-2.8/changelogs/CHANGELOG-v2.8.rst + ------------------------------------------------------------------- Thu Apr 4 17:22:58 UTC 2019 - Michael Ströder diff --git a/ansible.spec b/ansible.spec index ee1070c..6f0a83b 100644 --- a/ansible.spec +++ b/ansible.spec @@ -14,7 +14,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -36,7 +36,7 @@ BuildArch: noarch %endif Name: ansible -Version: 2.7.10 +Version: 2.8.0 Release: 0 Summary: Software automation engine License: GPL-3.0-or-later From 92160bd70bef2a0ac0ce20e8297170cca9a4e716 Mon Sep 17 00:00:00 2001 From: Lars Vogdt Date: Sat, 8 Jun 2019 16:41:44 +0000 Subject: [PATCH 2/2] Accepting request 708761 from home:lrupp:branches:systemsmanagement - Update to version 2.8.1 Full changelog is at /usr/share/doc/packages/ansible/changelogs/ Bugfixes -------- - ACI - DO not encode query_string - ACI modules - Fix non-signature authentication - Add missing directory provided via ``--playbook-dir`` to adjacent collection loading - Fix "Interface not found" errors when using eos_l2_interface with nonexistant interfaces configured - Fix cannot get credential when `source_auth` set to `credential_file`. - Fix netconf_config backup string issue - Fix privilege escalation support for the docker connection plugin when credentials need to be supplied (e.g. sudo with password). - Fix vyos cli prompt inspection - Fixed loading namespaced documentation fragments from collections. - Fixing bug came up after running cnos_vrf module against coverity. - Properly handle data importer failures on PVC creation, instead of timing out. - To fix the ios static route TC failure in CI - To fix the nios member module params - To fix the nios_zone module idempotency failure - add terminal initial prompt for initial connection - allow include_role to work with ansible command - allow python_requirements_facts to report on dependencies containing dashes - asa_config fix - azure_rm_roledefinition - fix a small error in build scope. - azure_rm_virtualnetworkpeering - fix cross subscriptions virtual network peering. - cgroup_perf_recap - When not using file_per_task, make sure we don't prematurely close the perf files - display underlying error when reporting an invalid ``tasks:`` block. OBS-URL: https://build.opensuse.org/request/show/708761 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ansible?expand=0&rev=141 --- ansible-2.8.0.tar.gz | 3 -- ansible-2.8.1.tar.gz | 3 ++ ansible.changes | 117 +++++++++++++++++++++++++++++++++++++++++++ ansible.spec | 2 +- 4 files changed, 121 insertions(+), 4 deletions(-) delete mode 100644 ansible-2.8.0.tar.gz create mode 100644 ansible-2.8.1.tar.gz diff --git a/ansible-2.8.0.tar.gz b/ansible-2.8.0.tar.gz deleted file mode 100644 index 410a636..0000000 --- a/ansible-2.8.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7234dd7d89150dc5bf035bc1ec3c084a8a0699d89e1c9b06b2af6dd34b2ef3ae -size 14285827 diff --git a/ansible-2.8.1.tar.gz b/ansible-2.8.1.tar.gz new file mode 100644 index 0000000..8520fb1 --- /dev/null +++ b/ansible-2.8.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d51d3a88e21238f9e7a49b2b17a49e76c13880242b936ac8a37aee4fe84445 +size 14299403 diff --git a/ansible.changes b/ansible.changes index 8803fab..576ff78 100644 --- a/ansible.changes +++ b/ansible.changes @@ -1,3 +1,120 @@ +------------------------------------------------------------------- +Sat Jun 8 16:33:53 UTC 2019 - Lars Vogdt + +- Update to version 2.8.1 + Full changelog is at /usr/share/doc/packages/ansible/changelogs/ + Bugfixes + -------- + - ACI - DO not encode query_string + - ACI modules - Fix non-signature authentication + - Add missing directory provided via ``--playbook-dir`` to adjacent collection loading + - Fix "Interface not found" errors when using eos_l2_interface with nonexistant + interfaces configured + - Fix cannot get credential when `source_auth` set to `credential_file`. + - Fix netconf_config backup string issue + - Fix privilege escalation support for the docker connection plugin when + credentials need to be supplied (e.g. sudo with password). + - Fix vyos cli prompt inspection + - Fixed loading namespaced documentation fragments from collections. + - Fixing bug came up after running cnos_vrf module against coverity. + - Properly handle data importer failures on PVC creation, instead of timing out. + - To fix the ios static route TC failure in CI + - To fix the nios member module params + - To fix the nios_zone module idempotency failure + - add terminal initial prompt for initial connection + - allow include_role to work with ansible command + - allow python_requirements_facts to report on dependencies containing dashes + - asa_config fix + - azure_rm_roledefinition - fix a small error in build scope. + - azure_rm_virtualnetworkpeering - fix cross subscriptions virtual network + peering. + - cgroup_perf_recap - When not using file_per_task, make sure we don't + prematurely close the perf files + - display underlying error when reporting an invalid ``tasks:`` block. + - dnf - fix wildcard matching for state: absent + - docker connection plugin - accept version ``dev`` as 'newest version' and + print warning. + - docker_container - ``oom_killer`` and ``oom_score_adj`` options are available + since docker-py 1.8.0, not 2.0.0 as assumed by the version check. + - docker_container - fix network creation when ``networks_cli_compatible`` is + enabled. + - docker_container - use docker API's ``restart`` instead of ``stop``/``start`` + to restart a container. + - docker_image - if ``build`` was not specified, the wrong default for + ``build.rm`` is used. + - docker_image - if ``nocache`` set to ``yes`` but not ``build.nocache``, the + module failed. + - docker_image - module failed when ``source: build`` was set but + ``build.path`` options not specified. + - docker_network module - fix idempotency when using ``aux_addresses`` in + ``ipam_config``. + - ec2_instance - make Name tag idempotent + - eos: don't fail modules without become set, instead show message and continue + - eos_config: check for session support when asked to 'diff_against: session' + - eos_eapi: fix idempotency issues when vrf was unspecified. + - fix bugs for ce - more info see + - fix incorrect uses of to_native that should be to_text instead. + - hcloud_volume - Fix idempotency when attaching a server to a volume. + - ibm_storage - Added a check for null fields in ibm_storage utils module. + - include_tasks - whitelist ``listen`` as a valid keyword + - k8s - resource updates applied with force work correctly now + - keep results subset also when not no_log. + - meraki_switchport - improve reliability with native VLAN functionality. + - netapp_e_iscsi_target - fix netapp_e_iscsi_target chap secret size and + clearing functionality + - netapp_e_volumes - fix workload profileId indexing when no previous workload + tags exist on the storage array. + - nxos_acl some platforms/versions raise when no ACLs are present + - nxos_facts fix + - nxos_file_copy fix passwordless workflow + - nxos_interface Fix admin_state check for n6k + - nxos_snmp_traps fix group all for N35 platforms + - nxos_snmp_user fix platform fixes for get_snmp_user + - nxos_vlan mode idempotence bug + - nxos_vlan vlan names containing regex ctl chars should be escaped + - nxos_vtp_* modules fix n6k issues + - openssl_certificate - fix private key passphrase handling for + ``cryptography`` backend. + - openssl_pkcs12 - fixes crash when private key has a passphrase and the module + is run a second time. + - os_stack - Apply tags conditionally so that the module does not throw up an + error when using an older distro of openstacksdk + - pass correct loading context to persistent connections other than local + - pkg_mgr - Ansible 2.8.0 failing to install yum packages on Amazon Linux + - postgresql - added initial SSL related tests + - postgresql - added missing_required_libs, removed excess param mapping + - postgresql - move connect_to_db and get_pg_version into + module_utils/postgres.py (https://github.com/ansible/ansible/pull/55514) + - postgresql_db - add note to the documentation about state dump and the + incorrect rc (https://github.com/ansible/ansible/pull/57297) + - postgresql_db - fix for postgresql_db fails if stderr contains output + - postgresql_ping - fixed a typo in the module documentation + - preserve actual ssh error when we cannot connect. + - route53_facts - the module did not advertise check mode support, causing it + not to be run in check mode. + - sysctl: the module now also checks the output of STDERR to report if values + are correctly set (https://github.com/ansible/ansible/pull/55695) + - ufw - correctly check status when logging is off + - uri - always return a value for status even during failure + - urls - Handle redirects properly for IPv6 address by not splitting on ``:`` + and rely on already parsed hostname and port values + - vmware_vm_facts - fix the support with regular ESXi + - vyos_interface fix + - we don't really need to template vars on definition as we do this on demand + in templating. + - win_acl - Fix qualifier parser when using UNC paths - + - win_hostname - Fix non netbios compliant name handling + - winrm - Fix issue when attempting to parse CLIXML on send input failure + - xenserver_guest - fixed an issue where VM whould be powered off even though + check mode is used if reconfiguration requires VM to be powered off. + - xenserver_guest - proper error message is shown when maximum number of + network interfaces is reached and multiple network interfaces are added at + once. + - yum - Fix false error message about autoremove not being supported + - yum - fix failure when using ``update_cache`` standalone + - yum - handle special "_none_" value for proxy in yum.conf and .repo files + + ------------------------------------------------------------------- Wed May 22 14:42:42 UTC 2019 - Marcel Kuehlhorn diff --git a/ansible.spec b/ansible.spec index 6f0a83b..582531d 100644 --- a/ansible.spec +++ b/ansible.spec @@ -36,7 +36,7 @@ BuildArch: noarch %endif Name: ansible -Version: 2.8.0 +Version: 2.8.1 Release: 0 Summary: Software automation engine License: GPL-3.0-or-later