Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ansible-core for openSUSE:Factory 
checked in at 2023-02-07 18:49:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ansible-core (Old)
 and      /work/SRC/openSUSE:Factory/.ansible-core.new.4462 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ansible-core"

Tue Feb  7 18:49:07 2023 rev:9 rq:1063484 version:2.14.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ansible-core/ansible-core.changes        
2022-12-09 13:19:30.139550300 +0100
+++ /work/SRC/openSUSE:Factory/.ansible-core.new.4462/ansible-core.changes      
2023-02-07 18:49:12.647172209 +0100
@@ -1,0 +2,65 @@
+Tue Jan 31 15:08:40 UTC 2023 - Johannes Kastl <ka...@b1-systems.de>
+
+- update to 2.14.2:
+  Full changelog 
https://github.com/ansible/ansible/blob/v2.14.2/changelogs/CHANGELOG-v2.14.rst
+  * Major Changes
+    - ansible-test - Docker Desktop on WSL2 is now supported (additional 
configuration required).
+    - ansible-test - Docker and Podman are now supported on hosts with cgroup 
v2 unified. Previously only cgroup v1 and cgroup v2 hybrid were supported.
+    - ansible-test - Podman now works on container hosts without systemd. 
Previously only some containers worked, while others required rootfull or 
rootless Podman, but would not work with both. Some containers did not work at 
all.
+    - ansible-test - Podman on WSL2 is now supported.
+    - ansible-test - When additional cgroup setup is required on the container 
host, this will be automatically detected. Instructions on how to configure the 
host will be provided in the error message shown.
+  * Minor Changes
+    - ansible-test - A new audit option is available when running custom 
containers. This option can be used to indicate whether a container requires 
the AUDIT_WRITE capability. The default is required, which most containers will 
need when using Podman. If necessary, the none option can be used to opt-out of 
the capability. This has no effect on Docker, which always provides the 
capability.
+    - ansible-test - A new cgroup option is available when running custom 
containers. This option can be used to indicate a container requires cgroup v1 
or that it does not use cgroup. The default behavior assumes the container 
works with cgroup v2 (as well as v1).
+    - ansible-test - Additional log details are shown when containers fail to 
start or SSH connections to containers fail.
+    - ansible-test - Connection failures to remote provisioned hosts now show 
failure details as a warning.
+    - ansible-test - Containers included with ansible-test no longer disable 
seccomp by default.
+    - ansible-test - Failure to connect to a container over SSH now results in 
a clear error. Previously tests would be attempted even after initial 
connection attempts failed.
+    - ansible-test - Integration tests can be excluded from retries triggered 
by the --retry-on-error option by adding the retry/never alias. This is useful 
for tests that cannot pass on a retry or are too slow to make retries useful.
+    - ansible-test - More details are provided about an instance when 
provisioning fails.
+    - ansible-test - Reduce the polling limit for SSHD startup in containers 
from 60 retries to 10. The one second delay between retries remains in place.
+    - ansible-test - SSH connections from OpenSSH 8.8+ to CentOS 6 containers 
now work without additional configuration. However, clients older than OpenSSH 
7.0 can no longer connect to CentOS 6 containers as a result. The container 
must have centos6 in the image name for this work-around to be applied.
+    - ansible-test - SSH shell connections from OpenSSH 8.8+ to ansible-test 
provisioned network instances now work without additional configuration. 
However, clients older than OpenSSH 7.0 can no longer open shell sessions for 
ansible-test provisioned network instances as a result.
+    - ansible-test - The ansible-test env command now detects and reports the 
container ID if running in a container.
+    - ansible-test - Unit tests now support network disconnect by default when 
running under Podman. Previously this feature only worked by default under 
Docker.
+    - ansible-test - Use stop --time 0 followed by rm to remove ephemeral 
containers instead of rm -f. This speeds up teardown of ephemeral containers.
+    - ansible-test - Warnings are now shown when using containers that were 
built with VOLUME instructions.
+    - ansible-test - When setting the max open files for containers, the 
container host's limit will be checked. If the host limit is lower than the 
preferred value, it will be used and a warning will be shown.
+    - ansible-test - When using Podman, ansible-test will detect if the 
loginuid used in containers is incorrect. When this occurs a warning is 
displayed and the container is run with the AUDIT_CONTROL capability. 
Previously containers would fail under this situation, with no useful warnings 
or errors given.
+  * Bugfixes
+    - Correctly count rescued tasks in play recap (#79711)
+    - Fix traceback when using the template module and running with 
ANSIBLE_DEBUG=1 (#79763)
+    - Fix using GALAXY_IGNORE_CERTS in conjunction with collections in 
requirements files which specify a specific source that isn't in the configured 
servers.
+    - Fix using GALAXY_IGNORE_CERTS when downloading tarballs from Galaxy 
servers (#79557).
+    - Module and role argument validation - include the valid suboption 
choices in the error when an invalid suboption is provided.
+    - ansible-doc now will correctly display short descriptions on listing 
filters/tests no matter the directory sorting.
+    - ansible-inventory will not explicitly sort groups/hosts anymore, giving 
a chance (depending on output format) to match the order in the input sources.
+    - ansible-test - Added a work-around for a traceback under Python 3.11 
when completing certain command line options.
+    - ansible-test - Avoid using exec after container startup when possible. 
This improves container startup performance and avoids intermittent startup 
issues with some old containers.
+    - ansible-test - Connection attempts to managed remote instances no longer 
abort on Permission denied errors.
+    - ansible-test - Detection for running in a Podman or Docker container has 
been fixed to detect more scenarios. The new detection relies on 
/proc/self/mountinfo instead of /proc/self/cpuset. Detection now works with 
custom cgroups and private cgroup namespaces.
+    - ansible-test - Fix validate-modules error when retrieving PowerShell 
argspec when retrieved inside a Cmdlet
+    - ansible-test - Handle server errors when executing the docker info 
command.
+    - ansible-test - Multiple containers now work under Podman without 
specifying the --docker-network option.
+    - ansible-test - Pass the XDG_RUNTIME_DIR environment variable through to 
container commands.
+    - ansible-test - Perform PyPI proxy configuration after instances are 
ready and bootstrapping has been completed. Only target instances are affected, 
as controller instances were already handled this way. This avoids proxy 
configuration errors when target instances are not yet ready for use.
+    - ansible-test - Prevent concurrent / repeat inspections of the same 
container image.
+    - ansible-test - Prevent concurrent / repeat pulls of the same container 
image.
+    - ansible-test - Prevent concurrent execution of cached methods.
+    - ansible-test - Show the exception type when reporting errors during 
instance provisioning.
+    - ansible-test sanity - correctly report invalid YAML in validate-modules 
(#75837).
+    - argument spec validation - again report deprecated parameters for 
Python-based modules. This was accidentally removed in ansible-core 2.11 when 
argument spec validation was refactored (#79680, #79681).
+    - argument spec validation - ensure that deprecated aliases in suboptions 
are also reported (#79740).
+    - argument spec validation - fix warning message when two aliases of the 
same option are used for suboptions to also mention the option's name they are 
in (#79740).
+    - connection local now avoids traceback on invalid user being used to 
execuet ansible (valid in host, but not in container).
+    - file - touch action in check mode was always returning ok. Fix now 
evaluates the different conditions and returns the appropriate changed status. 
(#79360)
+    - get_url - Ensure we are passing ciphers to all url_get calls (#79717)
+    - plugin filter now works with rejectlist as documented (still falls back 
to blacklist if used).
+    - uri - improve JSON content type detection
+  * Known Issues
+    - ansible-test - Additional configuration may be required for certain 
container host and container combinations. Further details are available in the 
testing documentation.
+    - ansible-test - Custom containers with VOLUME instructions may be unable 
to start, when previously the containers started correctly. Remove the VOLUME 
instructions to resolve the issue. Containers with this condition will cause 
ansible-test to emit a warning.
+    - ansible-test - Systems with Podman networking issues may be unable to 
run containers, when previously the issue went unreported. Correct the 
networking issues to continue using ansible-test with Podman.
+    - ansible-test - Using Docker on systems with SELinux may require setting 
SELinux to permissive mode. Podman should work with SELinux in enforcing mode.
+
+-------------------------------------------------------------------

Old:
----
  ansible-core-2.14.1.tar.gz

New:
----
  ansible-core-2.14.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ansible-core.spec ++++++
--- /var/tmp/diff_new_pack.jpYWUS/_old  2023-02-07 18:49:13.507176832 +0100
+++ /var/tmp/diff_new_pack.jpYWUS/_new  2023-02-07 18:49:13.519176896 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ansible-core
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,7 +31,7 @@
 %endif
 
 Name:           ansible-core
-Version:        2.14.1
+Version:        2.14.2
 Release:        0
 Summary:        Radically simple IT automation
 License:        GPL-3.0-or-later

++++++ ansible-core-2.14.1.tar.gz -> ansible-core-2.14.2.tar.gz ++++++
/work/SRC/openSUSE:Factory/ansible-core/ansible-core-2.14.1.tar.gz 
/work/SRC/openSUSE:Factory/.ansible-core.new.4462/ansible-core-2.14.2.tar.gz 
differ: char 5, line 1

Reply via email to