ansible-core 2.16.5rc1__py3-none-any.whl → 2.16.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansible-core might be problematic. Click here for more details.

Files changed (40) hide show
  1. ansible/cli/config.py +5 -3
  2. ansible/cli/inventory.py +1 -21
  3. ansible/config/manager.py +12 -11
  4. ansible/constants.py +40 -0
  5. ansible/executor/play_iterator.py +1 -1
  6. ansible/executor/task_executor.py +8 -2
  7. ansible/galaxy/role.py +10 -12
  8. ansible/module_utils/ansible_release.py +1 -1
  9. ansible/module_utils/facts/virtual/linux.py +1 -1
  10. ansible/modules/blockinfile.py +1 -1
  11. ansible/modules/dnf.py +25 -143
  12. ansible/modules/dnf5.py +42 -21
  13. ansible/modules/find.py +7 -4
  14. ansible/modules/unarchive.py +1 -1
  15. ansible/modules/uri.py +8 -7
  16. ansible/modules/user.py +0 -6
  17. ansible/parsing/mod_args.py +8 -4
  18. ansible/playbook/role/__init__.py +1 -1
  19. ansible/plugins/action/__init__.py +1 -1
  20. ansible/plugins/action/fetch.py +4 -0
  21. ansible/plugins/cache/__init__.py +1 -0
  22. ansible/plugins/connection/psrp.py +1 -1
  23. ansible/plugins/connection/winrm.py +14 -2
  24. ansible/plugins/lookup/url.py +9 -1
  25. ansible/plugins/strategy/free.py +1 -1
  26. ansible/plugins/strategy/linear.py +1 -1
  27. ansible/release.py +1 -1
  28. ansible/template/__init__.py +10 -10
  29. ansible/vars/hostvars.py +6 -22
  30. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/METADATA +1 -1
  31. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/RECORD +40 -40
  32. ansible_test/_data/requirements/constraints.txt +1 -0
  33. ansible_test/_internal/commands/sanity/ansible_doc.py +1 -1
  34. ansible_test/_internal/pypi_proxy.py +8 -1
  35. ansible_test/_util/target/setup/bootstrap.sh +9 -0
  36. {ansible_core-2.16.5rc1.data → ansible_core-2.16.7.data}/scripts/ansible-test +0 -0
  37. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/COPYING +0 -0
  38. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/WHEEL +0 -0
  39. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/entry_points.txt +0 -0
  40. {ansible_core-2.16.5rc1.dist-info → ansible_core-2.16.7.dist-info}/top_level.txt +0 -0
@@ -111,6 +111,15 @@ bootstrap_remote_alpine()
111
111
  echo "Failed to install packages. Sleeping before trying again..."
112
112
  sleep 10
113
113
  done
114
+
115
+ # Upgrade the `libexpat` package to ensure that an upgraded Python (`pyexpat`) continues to work.
116
+ while true; do
117
+ # shellcheck disable=SC2086
118
+ apk upgrade -q libexpat \
119
+ && break
120
+ echo "Failed to upgrade libexpat. Sleeping before trying again..."
121
+ sleep 10
122
+ done
114
123
  }
115
124
 
116
125
  bootstrap_remote_fedora()