1========================================================
2ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes
3========================================================
4
5.. contents:: Topics
6
7
8v2.11.6
9=======
10
11Release Summary
12---------------
13
14| Release Date: 2021-10-11
15| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
17
18Minor Changes
19-------------
20
21- ansible-galaxy - Non-HTTP exceptions from Galaxy servers are now a warning and only fatal if the collection to download|install|verify is not available from any of the servers (https://github.com/ansible/ansible/issues/75443).
22
23Security Fixes
24--------------
25
26- Do not include params in exception when a call to ``set_options`` fails. Additionally, block the exception that is returned from being displayed to stdout. (CVE-2021-3620)
27
28Bugfixes
29--------
30
31- PowerShell - Ignore the ``LIB`` environment variable when compiling C# Ansible code
32- ansible-galaxy - Fix handling HTTP exceptions from Galaxy servers. Continue to the next server in the list until the collection is found.
33- ansible-test pslint - Fix error when encountering validation results that are highly nested - https://github.com/ansible/ansible/issues/74151
34- config - use ``callbacks_enabled`` instead ``callback_enabled`` in a deprecated message (https://github.com/ansible/ansible/issues/70028).
35- netconf - catch and handle exception to prevent stack trace when running in FIPS mode
36- roles - fix unexpected ``AttributeError`` when an empty ``argument_specs.yml`` is present (https://github.com/ansible/ansible/pull/75604).
37
38v2.11.5
39=======
40
41Release Summary
42---------------
43
44| Release Date: 2021-09-13
45| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
46
47
48Bugfixes
49--------
50
51- Fix templating task action with host-specific vars (https://github.com/ansible/ansible/issues/75568)
52- Since ansible/2.11 doc site was removed, the current relative messages point to a 404 url, this fixes it by chainging the target to ansible-core/2.11
53- ansible-galaxy - Fix a bug with build_ignore when installing collections from source (https://github.com/ansible/ansible/issues/75528).
54- ansible-galaxy - Improve error message from dependency resolution when a candidate has inconsistent requirements (https://github.com/ansible/ansible/issues/75139).
55- ansible-playbook, more robust handling of --list-hosts and undefined vars in hosts keyword.
56- command module, clarify order of remove/creates checks.
57- command module, correctly handles chdir to symlinks.
58- command module, move to standarized messages in 'msg' vs abusing 'stdout'.
59- command module, now all options work in ad-hoc execution.
60- command module, now always returns what we documented as 'returns always'.
61- get_bin_path, clarify with quotes what the missing required executable is.
62- make previous versions compatible we new attributres w/o implementing them.
63- paramiko_ssh - mark connection as connected when ``_connect()`` is called (https://github.com/ansible/ansible/issues/74081)
64- setup module should now not truncate hpux interface names.
65- validate_argument_spec, correct variable precedence and merge method and add missing examples
66- variable manager, avoid sourcing delegated variables when no inventory hostname is present. This affects scenarios like syntax check and imports.
67
68v2.11.4
69=======
70
71Release Summary
72---------------
73
74| Release Date: 2021-08-16
75| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
76
77
78Bugfixes
79--------
80
81- Fix ``when`` evaluation on Native Jinja and Python 3.10.
82- Jinja2 globals should be accessible even when importing a template without the context (https://github.com/ansible/ansible/issues/75371)
83- ansible-test - add packaging python module to ``ansible-doc`` sanity test requirements.
84- ansible-test validate-modules - correctly validate positional parameters to ``AnsibleModules`` (https://github.com/ansible/ansible/pull/75332).
85- cli defaults for ssh args set to None as '' was bypassing normal default.
86- dnf module - Use all components of a package name to determine if it's installed (https://github.com/ansible/ansible/issues/75311).
87- do not trigger interpreter discovery in the forced_local module path as they should use the ansible playbook python unless otherwise configured.
88- find action, correctly convert path to text when warning about skiping.
89- remote tmpdir permissions - fix type error in macOS chmod ACL fallback (https://github.com/ansible/ansible/pull/74613).
90- template - ensure Jinja2 overrides from template header are used (https://github.com/ansible/ansible/issues/75275)
91- unarchive - move failure for missing binary to ``can_handle_archive()`` rather than ``__init__()``
92
93v2.11.3
94=======
95
96Release Summary
97---------------
98
99| Release Date: 2021-07-19
100| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
101
102
103Minor Changes
104-------------
105
106- ansible-test - aws creates and exposes a new tiny_prefix variable to provide a shorter prefix for the AWS tests.
107
108Bugfixes
109--------
110
111- Add unicode support to ``ansible-inventory`` CLI (https://github.com/ansible/ansible/issues/57378)
112- Ensure we get full path for extra vars into cliargs to avoid realpath issues after initial load.
113- ansible-doc - in text output, do not show empty ``version_added_collection`` values (https://github.com/ansible/ansible/pull/74999).
114- ansible-test - restrict ``packaging`` to ``< 21.0`` for Python ``< 3.6`` (https://github.com/ansible/ansible/pull/75186).
115- command - remove unreachable code path when trying to convert the value for ``chdir`` to bytes (https://github.com/ansible/ansible/pull/75036)
116- module_common - handle exception when multiple workers try to create the cache directory
117- roles - make sure argspec validation task templates suboptions (https://github.com/ansible/ansible/issues/75070).
118- slurp - improve the logic in the error handling and remove ``os.stat()`` call (https://github.com/ansible/ansible/pull/75038)
119- ssh_connection - rename ``retries`` to ``reconnection_retries`` to avoid conflicts with task vars (https://github.com/ansible/ansible/issues/75142).
120- ssh_connection - set the default for ``reconnection_retries`` back to ``0`` (https://github.com/ansible/ansible/issues/75142).
121- task_executor/ssh_connection - use the ``retries`` value from ``ssh_connection`` settings, not the default from the ``Task`` field attributes (https://github.com/ansible/ansible/issues/75142).
122
123v2.11.2
124=======
125
126Release Summary
127---------------
128
129| Release Date: 2021-06-22
130| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
131
132
133Security Fixes
134--------------
135
136- templating engine fix for not preserving usnafe status when trying to preserve newlines. CVE-2021-3583
137
138Bugfixes
139--------
140
141- AnsibleModule.set_mode_if_different - don't check file existence when check_mode is activated (https://github.com/ansible/ansible/issues/61185).
142- Apply ``display_failed_stderr`` callback option on loop item results. (https://github.com/ansible/ansible/issues/74864)
143- Avoid task executor from ending early as vars can come from delegated to host.
144- ansible-pull - update documentation for ``--directory`` option to clarify path must be absolute.
145- config, ensure 'quoted' lists from ini or env do not take the quotes literally as part of the list item.
146- gather_facts, package, service - fix using module_defaults for the modules in addition to the action plugins. (https://github.com/ansible/ansible/issues/72918)
147- psrp - Always cleanup the last run pipeline if a second pipeline is invoked to avoid violating any resource limits.
148- psrp - Fix error when resetting a connection that was initialised but not connected - (https://github.com/ansible/ansible/issues/74092).
149- psrp - Try to clean up any server-side resources when resetting a connection.
150- roles - make sure argspec validation task is tagged with ``always`` (https://github.com/ansible/ansible/pull/74994).
151- slurp - Fix error messages for unreadable files and directories (https://github.com/ansible/ansible/issues/67340).
152- slurp - handle error when ``path`` is a directory and not a file (https://github.com/ansible/ansible/pull/74930).
153- ssh connection - fix interaction between transfer settings options.
154- subversion - fix stack trace when getting information about the repository (https://github.com/ansible/ansible/issues/36498)
155- version test - improve error message when an empty version is provided
156
157v2.11.1
158=======
159
160Release Summary
161---------------
162
163| Release Date: 2021-05-24
164| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
165
166
167Minor Changes
168-------------
169
170- ansible adhoc, clarified the help to some options, also added some comments to code.
171- command - update the user warning message to point out command name (https://github.com/ansible/ansible/pull/74475).
172
173Bugfixes
174--------
175
176- Add RockyLinux to fact gathering (https://github.com/ansible/ansible/pull/74530).
177- Improve resilience of ``ansible-galaxy collection`` by increasing the page size to make fewer requests overall and retrying queries with a jittered exponential backoff when rate limiting HTTP codes (520 and 429) occur. (https://github.com/ansible/ansible/issues/74191)
178- Prevent ``ansible_failed_task`` from further templating (https://github.com/ansible/ansible/issues/74036)
179- Remove 'default' from ssh plugin as we want to rely on default from ssh itself or ssh/config.
180- The error message about the failure to import a ``gpg`` key by the ``apt_key`` module was incorrect (https://github.com/ansible/ansible/issues/74423).
181- ansible-test - Avoid publishing the port used by the ``pypi-test-container`` since it is only accessed by other containers. This avoids issues when trying to run tests in parallel on a single host.
182- ansible-test - Fix docker container IP address detection. The ``bridge`` network is no longer assumed to be the default.
183- ansible-test - Use documented API to retrieve build information from Azure Pipelines.
184- ansible.builtin.cron - Keep non-empty crontabs, when removing cron jobs (https://github.com/ansible/ansible/pull/74497).
185- ansible.utils.encrypt now handles missing or unusable 'crypt' library.
186- ansible_test - add constraint for ``MarkupSafe`` (https://github.com/ansible/ansible/pull/74666)
187- apt_key - Binary GnuPG keys downloaded via URLs were corrupted so GnuPG could not import them (https://github.com/ansible/ansible/issues/74424).
188- become - fix a regression on Solaris where chmod can return 5 which we interpret as auth failure and stop trying become tmpdir permission fallbacks
189- become - work around setfacl not existing on modern Solaris (and possibly failing on some filesystems even when it does exist)
190- callback default, now uses task delegate_to instead of delegate vars to display delegate to host
191- callbacks, restores missing delegate_vars
192- correct doc links for become on warnings over world readable settings.
193- correctly use world readable setting since old constant is not 'settable' anymore.
194- facts - detect homebrew installed at /opt/homebrew/bin/brew
195- filter plugins - patch new versions of Jinja2 to prevent warnings/errors on renamed filter decorators (https://github.com/ansible/ansible/issues/74667)
196- get_url - Fixed checksum validation for binary files (leading asterisk) in checksum files (https://github.com/ansible/ansible/pull/74502).
197- hostname - Add Rocky Linux support
198- ini lookup - handle errors for duplicate keys and missing sections (https://github.com/ansible/ansible/issues/74601)
199- interpreter discovery - Debian 8 and lower will avoid unsupported Python3 version in interpreter discovery
200- pause - ensure control characters are always set to an appropriate value (https://github.com/ansible/ansible/issues/73264)
201- playbook loaded from collection subdir now does not ignore subdirs.
202- plugin config now allows list type options to have multiple valid choices (#74225).
203- replace - better handling of file operation exceptions (https://github.com/ansible/ansible/pull/74686).
204- roles - allow for role arg specs in new meta file (https://github.com/ansible/ansible/issues/74525).
205- service - compare version without LooseVersion API (https://github.com/ansible/ansible/issues/74488).
206
207v2.11.0
208=======
209
210Release Summary
211---------------
212
213| Release Date: 2021-04-26
214| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
215
216
217Major Changes
218-------------
219
220- A collection can be reinstalled with new version requirements without using the ``--force`` flag. The collection's dependencies will also be updated if necessary with the new requirements. Use ``--upgrade`` to force transitive dependency updates.
221- AnsibleModule - use ``ArgumentSpecValidator`` class for validating argument spec and remove private methods related to argument spec validation. Any modules using private methods should now use the ``ArgumentSpecValidator`` class or the appropriate validation function.
222- Declared ``resolvelib >= 0.5.3, < 0.6.0`` a direct dependency of
223  ansible-core. Refs:
224  - https://github.com/sarugaku/resolvelib
225  - https://pypi.org/p/resolvelib
226  - https://pradyunsg.me/blog/2020/03/27/pip-resolver-testing
227- It became possible to install Ansible Collections from local folders and namespaces folder similar to SCM structure with multiple collections.
228- It became possible to upgrade Ansible collections from Galaxy servers using the ``--upgrade`` option with ``ansible-galaxy collection install``.
229- Support for role argument specification validation at role execution time. When a role contains an argument spec, an implicit validation task is inserted at the start of role execution.
230- add ``ArgumentSpecValidator`` class for validating parameters against an argument spec outside of ``AnsibleModule`` (https://github.com/ansible/ansible/pull/73335)
231- ansible-test - Tests run with the ``centos6`` and ``default`` test containers now use a PyPI proxy container to access PyPI when Python 2.6 is used. This allows tests running under Python 2.6 to continue functioning even though PyPI is discontinuing support for non-SNI capable clients.
232
233Minor Changes
234-------------
235
236- Add ``--format`` CLI option to ``ansible-galaxy collection list`` which allows for ``human`` (default), ``yaml``, or ``json``. (https://github.com/ansible/ansible/pull/73474)
237- Add an example for using var in with_sequence (https://github.com/ansible/ansible/issues/68836).
238- Add new rolespec_validate option to the import/include_role modules do allow disabling of the implicit role arg validation task on a per-role basis.
239- Add option to pass extra vars to ansible-inventory
240- Add path of collection location in Ansible CLI version info.
241- Add standard Python 2/3 compatibility boilerplate to setup script, module_utils and docs_fragments which were missing them.
242- Add support for `argument_specs` data in role metadata.
243- Add support for datetime.date object type in module result (https://github.com/ansible/ansible/issues/70583).
244- Add which conditional is being evaluated at each step when debugging.
245- Add yum/dnf version comparison documentation for package install
246- Added NO_COLOR environment var to ansible color configuration, allowing it to integrate with existing convention.
247- Added name of aliases in user error (https://github.com/ansible/ansible/issues/58752).
248- Added support for GSSAPI/Kerberos authentication with ``urls.py`` that is used by ``uri`` and ``get_url``.
249- Added support for specify custom credentials for GSSAPI authentication.
250- Allow an attribute to be passed to the min and max filters with Jinja 2.10+
251- Allow for the skipped filter to be used on a registered looped task results. (https://github.com/ansible/ansible/issues/16949)
252- Allow inventory plugins access to extra vars by default
253- Allow unsafe_writes to be set on target via env var, for those targets that need a blanket setting.
254- Also added extra vars cli option to console CLI.
255- AnsiballZ - Improve performance of ``ModuleDepFinder`` by using faster lookups and reducing the object types that are walked while looking for ``import`` statements. (https://github.com/ansible/ansible/pull/70475)
256- CLI - Specify jinja version in ``--version`` output
257- CLI - Specify whether PyYAML includes libyaml support in version output
258- CLI version displays clarified as core version
259- Callbacks - Migrate more places in the ``TaskExecutor`` to sending callbacks directly over the queue, instead of sending them as ``TaskResult`` and short circuiting in the Strategy to send the callback. This enables closer to real time callbacks of retries and loop results (https://github.com/ansible/ansible/issues/73899)
260- Collection routing: Cisco NSO content from community.network migrated to cisco.nso (https://github.com/ansible/ansible/pull/73046).
261- Collection routing: DellEMC content from community.general migrated to dellemc.openmanage (https://github.com/ansible/ansible/pull/73046).
262- Collection routing: FortiOS content from community.network migrated to community.fortios (https://github.com/ansible/ansible/pull/73046).
263- Collection routing: Google content from community.general migrated to community.google (https://github.com/ansible/ansible/pull/73046).
264- Collection routing: Hashi Vault content from community.general migrated to community.hashi_vault (https://github.com/ansible/ansible/pull/73046).
265- Collection routing: Hetzner Robot content from community.general migrated to community.hrobot (https://github.com/ansible/ansible/pull/73046).
266- Collection routing: KubeVirt content from community.general migrated to community.kubevirt (https://github.com/ansible/ansible/pull/73046).
267- Collection routing: OC content from community.general migrated to community.okd (https://github.com/ansible/ansible/pull/73046).
268- Collection routing: PostgreSQL content from community.general migrated to community.postgresql (https://github.com/ansible/ansible/pull/73046).
269- Collection routing: RouterOS content from community.network migrated to community.routeros (https://github.com/ansible/ansible/pull/73046).
270- Collection routing: docker content from community.general migrated to community.docker (https://github.com/ansible/ansible/pull/73046).
271- Controller - Add warning for Ansible 2.11 when running a Python version older than Python 3.8 to inform users that 2.12 will only support Python 3.8 and newer on the controller. Starting with Ansible 2.11, the project will only be packaged for Python 3.8 and newer.
272- Discourage the use of 'hexdigits' in password lookup, as it distorts expected entropy.
273- Enable extra vars for inventory plugin options
274- Errors - Ensure that errors passed with ``orig_exc`` include the context of that exception (https://github.com/ansible/ansible/issues/68605)
275- Filters - Add new ``split`` filter for splitting strings
276- Fixed ansible-doc to not substitute for words followed by parenthesis.  For instance, ``IBM(International Business Machines)`` will no longer be substituted with a link to a non-existent module. https://github.com/ansible/ansible/pull/71070
277- Force the template module to use non-native Jinja2 (https://github.com/ansible/ansible/issues/46169)
278- Internal config entries will not be documented, to mark an entry as internal it must start with `_`.
279- Interpreter Discovery - Add Python 3.8 and Python 3.9 to the fallback list
280- Minor code cleanup in plugin loader.
281- Module API - libselinux-python is no longer required for basic module API selinux operations (affects core modules assemble, blockinfile, copy, cron, file, get_url, lineinfile, setup, replace, unarchive, uri, user, yum_repository)
282- Module API - new module_respawn API allows modules that need to run under a specific Python interpreter to respawn in place under that interpreter
283- Module iptables multiport destination support added (https://github.com/ansible/ansible/pull/72928)
284- Module iptables set/ipset support added (https://github.com/ansible/ansible/pull/72984)
285- New 'timeout' feature added to adhoc and console CLIs, corresponding to the recent 'timeout' task keyword.
286- New virtualization facts, ``virtualization_tech_guest`` and ``virtualization_tech_host`` now allow for conveying when a system is a host or guest of multiple virtualization technologies.
287- Now 'choices' keyword in config definitions also restricts valid values for the entry.
288- Refactored ``ansible-galaxy collection [download|install|list|verify]`` CLI subcommands with the public interface kept intact.
289- Restructured _fixup_perms2() in ansible.plugins.action to make it more linear
290- Shadow prompt input to ansible-vault encrypt-string unless the ``--show-input`` flag is set
291- Switch to hashlib.sha256() for ansible-test to allow for FIPs mode.
292- TOML inventory plugin is no longer in preview status
293- Templar - reduce the complexity of ``Templar._lookup`` (https://github.com/ansible/ansible/pull/73277)
294- The ``csvfile`` lookup plugin now uses ``parse_kv()`` internally. As a result, multi-word search keys can now be passed.
295- The ``csvfile`` lookup plugin's documentation has been fixed; it erroneously said that the delimiter could be ``t`` which was never true. We now accept ``\t``, however, and the error in the documentation has been fixed to note that.
296- The constructed inventory plugin has new option to force using vars plugins on previouslly processed inventory sources.
297- The find module is now more specific about the reasons it skips candidate files.
298- The logging functionality in module_utils.basic now returns a nicer error when it falls back to syslog but ends up getting a TypeError thrown back.
299- The new dependency resolver prefers ``MANIFEST.json`` over ``galaxy.yml`` if it exists in the target directory.
300- The plugin loader now keeps track of the collection where a plugin was resolved to, in particular whether the plugin was loaded from ansible-core's internal paths (``ansible.builtin``) or from user-supplied paths (no collection name).
301- Toggle allowing usage of extra_vars in compose
302- When connecting as an unprivileged user, and becoming an unprivileged user, we now fall back to also trying ``chmod +a`` which works on macOS and makes use of ACLs.
303- allow tree callback plugin to be configurable, for use with playbooks.
304- ansible-doc - In Windows setup steps, ``ExecutionPolicy`` should be restored to default value ``RemoteSigned`` (https://github.com/ansible/ansible/pull/72993).
305- ansible-doc - provide ``has_action`` field in JSON output for modules. That information is currently only available in the text view (https://github.com/ansible/ansible/pull/72359).
306- ansible-doc has new option to show keyword documentation.
307- ansible-doc will now format, ``L()``, ``R()``, and ``HORIZONTALLINE`` in plugin docs just as the website docs do.  https://github.com/ansible/ansible/pull/71070
308- ansible-galaxy - Add installation successful message
309- ansible-galaxy - Added caching mechanisms when retrieving collection info to speed up installs and downloads
310- ansible-galaxy - Change the output verbosity level of the download message from 3 to 0 (https://github.com/ansible/ansible/issues/70010)
311- ansible-galaxy - Ensure ``get_collection_versions`` returns an empty list when a collection does not exist for consistency across API versions.
312- ansible-galaxy - find any collection dependencies in the globally configured Galaxy servers and not just the server the parent collection is from.
313- ansible-galaxy CLI - ``collection verify`` command now exits with a non-zero exit code on verification failure
314- ansible-galaxy CLI - ``collection verify`` command now supports a ``--offline`` option for local-only verification
315- ansible-test - A warning is no longer emitted when a ``pip*`` or ``python*`` binary is found without a matching couterpart.
316- ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote`` option.
317- ansible-test - Add a ``--docker-network`` option to choose the network for running containers when using the ``--docker`` option.
318- ansible-test - Add constraint for ``decorator`` for Python versions prior to 3.5.
319- ansible-test - Add support for running tests on Fedora 33 (https://github.com/ansible/ansible/pull/72861).
320- ansible-test - Added Ubuntu 20.04 LTS image to the default completion list
321- ansible-test - Added a ``--export`` option to the ``ansible-test coverage combine`` command to facilitate multi-stage aggregation of coverage in CI pipelines.
322- ansible-test - Added the ``-remote rhel/7.9`` option to run tests on RHEL 7.9
323- ansible-test - Allow custom ``--remote-stage`` options for development and testing.
324- ansible-test - CentOS 8 container is now 8.2.2004 (https://github.com/ansible/distro-test-containers/pull/45).
325- ansible-test - Changed the internal name of the custom plugin used to identify use of unwanted imports and functions.
326- ansible-test - Cleaned up code to resolve warnings and errors reported by PyCharm.
327- ansible-test - Code cleanup in the ``import`` sanity test.
328- ansible-test - Code cleanup in the internal logic for code coverage collection of PowerShell modules.
329- ansible-test - Collections can now specify pip constraints for unit and integration test requirements using ``tests/unit/constraints.txt`` and ``tests/integration/constraints.txt`` respectively.
330- ansible-test - Containers used with the ``--remote`` option have been updated to version 1.29.0 to include the latest Ansible requirements.
331- ansible-test - Files used to track remote instances no longer have a region suffix.
332- ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``, ``html``, ``xml``) on Python 2.6.
333- ansible-test - Fix container hostname/IP discovery for the ``acme`` test plugin.
334- ansible-test - FreeBSD 11.4 and 12.2 provisioning can now be used with the ``--python 3.8`` option.
335- ansible-test - FreeBSD instances provisioned with ``--remote`` now make ``libyaml`` available for use with PyYAML installation.
336- ansible-test - Generation of an ``egg-info`` directory, if needed, is now done after installing test dependencies and before running tests. When running from an installed version of ``ansible-test`` a temporary directory is used to avoid permissions issues. Previously it was done before installing test dependencies and adjacent to the installed directory.
337- ansible-test - Implemented CloudStack test container selection by ENV variable `ANSIBLE_CLOUDSTACK_CONTAINER` with a default to `quay.io/ansible/cloudstack-test-container:1.4.0`.
338- ansible-test - Improved handling of minimum Python version requirements for sanity tests. Supported versions are now included in warning messages displayed when tests are skipped.
339- ansible-test - More sanity test requirements have been pinned to specific versions to provide consistent test results.
340- ansible-test - Most sanity test specific ``pip`` constraints are now used only when running sanity tests. This should reduce conflicts with ``pip`` requirements and constraints when testing collections.
341- ansible-test - Most sanity tests are now skipped on Python 3.5 and earlier with a warning. Previously this was done for Python 2.7 and earlier.
342- ansible-test - Now supports freebsd/11.4 remote (https://github.com/ansible/ansible/issues/48782).
343- ansible-test - Now supports freebsd/12.2 remote (https://github.com/ansible/ansible/issues/72366).
344- ansible-test - OpenSuse container now uses Leap 15.2 (https://github.com/ansible/distro-test-containers/pull/48).
345- ansible-test - Pin the ``virtualenv`` version used for ``--remote`` pip installs to the latest version supported by Python 2.x, which is version 16.7.10.
346- ansible-test - Provisioning of RHEL instances now includes installation of pinned versions of ``packaging`` and ``pyparsing`` to match the downstream vendored versions.
347- ansible-test - RHEL 8.2+ provisioning can now be used with the ``--python 3.8`` option, taking advantage of the Python 3.8 AppStream.
348- ansible-test - Raise the number of bytes scanned by ansible-test to determine if a file is binary to 4096.
349- ansible-test - Refactor code for installing ``cryptography`` to allow re-use in the future.
350- ansible-test - Refactor code to remove unused logic for obsolete support of multiple provisioning endpoints.
351- ansible-test - Remove ``pytest < 6.0.0`` constraint for managed installations on Python 3.x now that pytest 6 is supported.
352- ansible-test - Remove em dash from the Pytest configuration file in order to be readable on systems where preferred encoding is ASCII. (https://github.com/ansible/ansible/issues/71739)
353- ansible-test - Remove outdated ``--docker`` completion entries: fedora30, fedora31, ubuntu1604
354- ansible-test - Remove outdated ``--remote`` completion entries: freebsd/11.1, freebsd/12.1, osx/10.11, macos/10.15, rhel/7.6, rhel/7.8, rhel/8.1, rhel/8.2
355- ansible-test - Remove outdated ``--windows`` completion entries: 2008, 2008-R2
356- ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region`` option.
357- ansible-test - Remove unused ``--remote`` completion entry: power/centos/7
358- ansible-test - Removed ``pip`` constraints related to integration tests that have been moved to collections. This should reduce conflicts with ``pip`` requirements and constraints when testing collections.
359- ansible-test - Removed the obsolete ``--remote-aws-region`` provisioning option.
360- ansible-test - Removed the obsolete ``tower`` test plugin for testing Tower modules.
361- ansible-test - Removed unused provisioning code and cleaned up remote provider management logic.
362- ansible-test - Rename internal functions to match associated constant names that were previously updated.
363- ansible-test - Reorganize internal ``pylint`` configuration files for easier comparison and maintenance.
364- ansible-test - Report the correct line number in the ``yamllint`` sanity test when reporting ``libyaml`` parse errors in module documentation.
365- ansible-test - Request remote resources by provider name for all provider types.
366- ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option is used.
367- ansible-test - Silence ``pip`` warnings about Python 3.5 being EOL when installing requirements.
368- ansible-test - Support custom remote endpoints with the ``--remote-endpoint`` option.
369- ansible-test - The ``--remote`` option no longer pre-installs the ``virtualenv`` module on Python 3.x instances. The Python built-in ``venv`` module should be used instead.
370- ansible-test - The ``default`` container for both collections and core have been updated to versions 2.11.0 and 1.9.0 respectively.
371- ansible-test - The ``pylint`` sanity test is now skipped with a warning on Python 3.9 due to unresolved upstream regressions.
372- ansible-test - The ``pylint`` sanity test is now supported on Python 3.8.
373- ansible-test - The ``rstcheck`` sanity test is no longer used for collections, but continues to be used for ansible-core.
374- ansible-test - The generated ``resource_prefix`` variable now meets the host name syntax requirements specified in RFC 1123 and RFC 952. The value used for local tests now places the random number before the hostname component, rather than after. If the resulting value is too long, it will be truncated.
375- ansible-test - Ubuntu containers as well as ``default-test-container`` and ``ansible-base-test-container`` are now slightly smaller due to apt cleanup (https://github.com/ansible/distro-test-containers/pull/46).
376- ansible-test - Update ``pylint`` and its dependencies to the latest available versions to support Python 3.9.
377- ansible-test - Update built-in service endpoints for the ``--remote`` option.
378- ansible-test - Update distribution test containers from version 2.0.1 to 2.0.2.
379- ansible-test - Update the Ansible Core and Ansible Collection default test containers to 3.2.0 and 3.2.2 respectively.
380- ansible-test - Updated the default test containers to version 3.1.0.
381- ansible-test - Upgrade ansible-runner version used in compatibility tests, remove some tasks that were only needed with older versions, and skip in python2 because ansible-runner is soon dropping it.
382- ansible-test - Use new endpoint for Parallels based instances with the ``--remote`` option.
383- ansible-test - ``default-test-container`` and ``ansible-base-test-container`` now use Python 3.9.0 instead of 3.9.0rc1.
384- ansible-test - add https endpoint for ansible-test
385- ansible-test - add macOS 11.1 as a remote target (https://github.com/ansible/ansible/pull/72622)
386- ansible-test - add the collection plugin directories ``plugin_utils`` and ``sub_plugins`` to list of plugin types. This ensures such plugins are tested for the ``import`` sanity test (https://github.com/ansible/ansible/pull/73599).
387- ansible-test - centos6 end of life - container image updated to point to vault base repository (https://github.com/ansible/distro-test-containers/pull/54)
388- ansible-test - centos6 image now has multiple fallback yum repositories for CentOS Vault.
389- ansible-test - default container now uses default-test-container 2.7.0 and ansible-base-test-container 1.6.0. This brings in Python 3.9.0rc1 for testing.
390- ansible-test - now makes a better attempt to support podman when calling ``docker images`` and asking for JSON format.
391- ansible-test - python-cryptography is now bounded at <3.2, as 3.2 drops support for OpenSSL 1.0.2 upon which some of our CI infrastructure still depends.
392- ansible-test - remote macOS instances no longer install ``virtualenv`` during provisioning
393- ansible-test - the ACME test container was updated, it now supports external account creation and has a basic OCSP responder (https://github.com/ansible/ansible/pull/71097, https://github.com/ansible/acme-test-container/releases/tag/2.0.0).
394- ansible-test - the ``import`` sanity test now also tries to import all non-module and non-module_utils Python files in ``lib/ansible/`` resp. ``plugins/`` (https://github.com/ansible/ansible/pull/72497).
395- ansible-test - virtualenv helper scripts now prefer ``venv`` on Python 3 over ``virtualenv``
396- ansible-test Now supports RHEL 8.3
397- ansible-test pylint - ensure that removal collection version numbers conform to the semantic versioning specification at https://semver.org/ (https://github.com/ansible/ansible/pull/71679).
398- ansible-test pylint sanity test - stop ignoring ``used-before-assignment`` errors (https://github.com/ansible/ansible/pull/73639).
399- ansible-test runtime-metadata - compare deprecation and tombstone versions to the current version to ensure that they are correct (https://github.com/ansible/ansible/pull/72625).
400- ansible-test runtime-metadata - ensure that removal collection version numbers conform to the semantic versioning specification at https://semver.org/ (https://github.com/ansible/ansible/pull/71679).
401- ansible-test runtime-metadata - ensure that the tombstone removal date is not in the future (https://github.com/ansible/ansible/pull/72625).
402- ansible-test runtime-metadata - validate removal version numbers, and check removal dates more strictly (https://github.com/ansible/ansible/pull/71679).
403- ansible-test validate-modules - ensure that removal collection version numbers and version_added collection version numbers conform to the semantic versioning specification at https://semver.org/ (https://github.com/ansible/ansible/pull/71679).
404- ansible-test validate-modules - no longer assume that ``default`` for ``type=bool`` options is ``false``, as the default is ``none`` and for some modules, ``none`` and ``false`` mean different things (https://github.com/ansible/ansible/issues/69561).
405- ansible-test validate-modules - option names that seem to indicate they contain secret information that should be marked ``no_log=True`` are now flagged in the validate-modules sanity test. False positives can be marked by explicitly setting ``no_log=False`` for these options in the argument spec. Please note that many false positives are expected; the assumption is that it is by far better to have false positives than false negatives (https://github.com/ansible/ansible/pull/73508).
406- ansible-test validate-modules - validate removal version numbers (https://github.com/ansible/ansible/pull/71679).
407- ansible.utils.encrypt now returns `AnsibleError` instead of crypt.crypt's `OSError` on Python 3.9
408- apt - module now works under any supported Python interpreter
409- apt_repository - module now works under any supported Python interpreter
410- callback plugins - ``meta`` tasks now get sent to ``v2_playbook_on_task_start``. Explicit tasks are always sent. Plugins can opt in to receiving implicit ones.
411- callbacks - Add feature allowing forks to send callback events (https://github.com/ansible/ansible/issues/14681)
412- conditionals - change the default of CONDITIONAL_BARE_VARS to False (https://github.com/ansible/ansible/issues/70682).
413- config - more types are now automatically coerced to string when ``type: str`` is used and the value is parsed as a different type
414- constructed - Add a toggle to allow the separator to be omitted if no prefix has been provided.
415- constructed inventory plugin - Sanitize group names created from the ``groups`` option silently.
416- create ``get_type_validator`` standalone function and move that functionality out of ``AnsibleModule`` (https://github.com/ansible/ansible/pull/72667)
417- create ``get_unsupported_parameters`` validation function (https://github.com/ansible/ansible/pull/72447/files)
418- debconf - add a note about no_log=True since module might expose sensitive information to logs (https://github.com/ansible/ansible/issues/32386).
419- default callback - add ``show_task_path_on_failure`` option to display file and line number of tasks only on failed tasks when running at normal verbosity level (https://github.com/ansible/ansible/issues/64625)
420- default callback - task name is now shown for ``include_tasks`` when using the ``free`` strategy (https://github.com/ansible/ansible/issues/71277).
421- default callback - task name is now shown for ``include_tasks`` when using the ``linear`` strategy with ``ANSIBLE_DISPLAY_SKIPPED_HOSTS=0``.
422- default_callback - moving 'check_mode_markers' documentation in default_callback doc_fragment (https://github.com/ansible-collections/community.general/issues/565).
423- distribution - add facts about Amazon Linux Distribution facts (https://github.com/ansible/ansible/issues/73742).
424- distribution - add support for DragonFly distribution (https://github.com/ansible/ansible/issues/43739).
425- distribution - added distribution fact and hostname support for Parrot OS (https://github.com/ansible/ansible/pull/69158).
426- distribution - handle NetBSD OS Family (https://github.com/ansible/ansible/issues/43739).
427- distribution facts - ``distribution_release`` is now ``"Stream"`` on CentOS Stream (https://github.com/ansible/ansible/issues/73027).
428- dnf - Add nobest option (https://github.com/ansible/ansible/issues/69983)
429- dnf - When ``state: absent``, package names are now matched similarly to how the ``dnf`` CLI matches them (https://github.com/ansible/ansible/issues/72809).
430- dnf - module now works under any supported Python interpreter
431- dnf - now shows specific package changes (installations/removals) under ``results`` in check_mode. (https://github.com/ansible/ansible/issues/66132)
432- facts - ``/dev/kvm`` is now consulted in Linux virtualization facts, and the host is considered a KVM host if this file exists and none of the pre-existing checks matched.
433- facts - add new fact ``date_time['tz_dst']``, which returns the daylight saving timezone (https://github.com/ansible/ansible/issues/69004).
434- facts - add uptime to openbsd
435- find module - Now has a ``read_whole_file`` boolean parameter which allows for reading the whole file and doing an ``re.search()`` regex evaluation on it when searching using the ``contains`` option. This allows (for example) for ensuring the very end of the file matches a pattern.
436- galaxy - add documentation about galaxy parameters in examples/ansible.cfg (https://github.com/ansible/ansible/issues/68402).
437- galaxy - handle token as dict while loading from yaml file (https://github.com/ansible/ansible/issues/70887).
438- get_url - allow checksum urls to point to file:// resources, moving scheme test to function
439- get_url - handle same SHA sum for checksum file (https://github.com/ansible/ansible/issues/71420).
440- git - add ``single_branch`` parameter (https://github.com/ansible/ansible/pull/28465)
441- hash filter - fail when unsupported hash type is passed as an argument (https://github.com/ansible/ansible/issues/70258)
442- inventory cache - do not show a warning when the cache file does not (yet) exist.
443- iptables - add a note about ipv6-icmp in protocol parameter (https://github.com/ansible/ansible/issues/70905).
444- iptables - fixed get_chain_policy API (https://github.com/ansible/ansible/issues/68612).
445- iptables - reorder comment postition to be at the end (https://github.com/ansible/ansible/issues/71444).
446- lineinfile - add search_string parameter for non-regexp searching (https://github.com/ansible/ansible/issues/70470)
447- linux facts - Add additional check to ensure 'container' virtual fact gets added to guest_tech when appropriate (https://github.com/ansible/ansible/pull/71385)
448- meta - now include a ``skip_reason`` when skipped (https://github.com/ansible/ansible/pull/71355).
449- module payload builder - module_utils imports in any nested block (eg, ``try``, ``if``) are treated as optional during module payload builds; this allows modules to implement runtime fallback behavior for module_utils that do not exist in older versions of Ansible.
450- module_utils - ``get_file_attributes()`` now takes an optional ``include_version`` boolean parameter. When ``True`` (default), the file's version/generation number is included in the result (but requires ``lsattr -v`` to work on the target platform).
451- now !unsafe works on all types of data, not just strings, even recursively for mappings and sequences.
452- package_facts - module support for apt and rpm now works under any supported Python interpreter
453- pipe lookup - update docs for Popen with shell=True usages (https://github.com/ansible/ansible/issues/70159).
454- plugin examples - Allow non-YAML examples, so that examples for plugins like the INI and TOML inventory plugins can be directly represented (https://github.com/ansible/ansible/pull/71184)
455- plugin option validation - now the option type ``dict``/``dictionary`` is also validated by the config manager (https://github.com/ansible/ansible/pull/71928).
456- reboot - add ``reboot_command`` parameter to allow specifying the command used to reboot the system (https://github.com/ansible/ansible/issues/51359)
457- remove ``excommunicate`` debug command from AnsiballZ
458- selinux - return selinux_getpolicytype facts correctly.
459- service_facts - return service state information on AIX.
460- service_facts - return service state information on OpenBSD.
461- setup - allow list of filters (https://github.com/ansible/ansible/pull/68551).
462- setup - fix distribution facts for Older Amazon Linux with ``/etc/os-release`` (https://github.com/ansible/ansible/issues/73946).
463- setup.py - Declare that Python 3.9 is now supported (https://github.com/ansible/ansible/pull/72861).
464- setup.py - Skip doing conflict checks for ``sdist`` and ``egg_info`` commands (https://github.com/ansible/ansible/pull/71310)
465- subelements - clarify the lookup plugin documentation for parameter handling (https://github.com/ansible/ansible/issues/38182).
466- subversion - ``validate_certs`` option, which, when true, will avoid passing ``--trust-server-cert`` to ``svn`` commands (https://github.com/ansible/ansible/issues/22599).
467- unarchive - Add support for .tar.zst (zstd compression) (https://github.com/ansible/ansible/pull/73265).
468- unarchive - add ``RETURN`` documentation (https://github.com/ansible/ansible/issues/67445).
469- unarchive - add ``include`` parameter to allow extracting specific files from an archive (https://github.com/ansible/ansible/pull/40522)
470- update sphinx to 2.1.2 and rstcheck to 3.3.1 for building documentation.
471- uri - add ``ca_path`` argument to allow specification of a CA certificate (https://github.com/ansible/ansible/pull/71979).
472- user - add new parameters ``password_expire_max`` and ``password_expire_min`` for controlling password expiration (https://github.com/ansible/ansible/issues/68775)
473- varnames lookup plugin - Fixed grammar error in exception message when the plugin is given a non-string term.
474- vault - Provide better error for single value encrypted values to indicate the file, line, and column of the errant vault (https://github.com/ansible/ansible/issues/72276)
475- version test - Add semantic version functionality
476- virtual facts - containerd cgroup is now recognized as container tech (https://github.com/ansible/ansible/issues/66304).
477- virtualization facts - Detect ``vdsmd`` in addition to ``vdsm`` when trying to detect RHEV hosts. (https://github.com/ansible/ansible/issues/66147)
478- winrm - Added ``ansible_winrm_kinit_args`` that can be used to control the args that are sent to the ``kinit`` call for Kerberos authentication.
479- yum - module now works under any supported Python interpreter
480- yum_repository - added boolean option module_hotfixes which allows to enable functionality for dnf.
481
482Breaking Changes / Porting Guide
483--------------------------------
484
485- Made SCM collections be reinstalled regardless of ``--force`` being present.
486- NetBSD virtualization facts (specifically ``ansible_virtualization_type``) now returns a more accurate value by checking the value of the ``machdep.hypervisor`` ``sysctl`` key. This change is breaking because in some cases previously, we would erroneously report ``xen`` even when the target is not running on Xen. This prevents that behavior in most cases. (https://github.com/ansible/ansible/issues/69352)
487- Replaced the in-tree dependency resolver with an external implementation that pip >= 20.3 uses now by default — ``resolvelib``. (https://github.com/ansible/ansible/issues/71784)
488- The ``meta`` module now supports tags for user-defined tasks. Internal ``meta`` tasks continue to always run. (https://github.com/ansible/ansible/issues/64558)
489- ansible-galaxy login command has been removed (see https://github.com/ansible/ansible/issues/71560)
490
491Deprecated Features
492-------------------
493
494- Starting in 2.14, shell and command modules will no longer have the option to warn and suggest modules in lieu of commands. The ``warn`` parameter to these modules is now deprecated and defaults to ``False``. Similarly, the ``COMMAND_WARNINGS`` configuration option is also deprecated and defaults to ``False``. These will be removed and their presence will become an error in 2.14.
495- apt_key - the parameter ``key`` does not have any effect, has been deprecated and will be removed in ansible-core version 2.14 (https://github.com/ansible/ansible/pull/70319).
496- psrp - Set the minimum version of ``pypsrp`` to ``0.4.0``.
497
498Removed Features (previously deprecated)
499----------------------------------------
500
501- Removed `SharedPluginLoaderObj` class from ansible.plugins.strategy. It was deprecated in favor of using the standard plugin loader.
502- Removed `_get_item()` alias from callback plugin base class which had been deprecated in favor of `_get_item_label()`.
503- The "user" parameter was previously deprecated and is now removed in favor of "scope"
504- The deprecated ``ansible.constants.BECOME_METHODS`` has been removed.
505- The deprecated ``ansible.constants.get_config()`` has been removed.
506- The deprecated ``ansible.constants.mk_boolean()`` has been removed.
507- `with_*` loops are no longer optimized for modules whose `name` parameters can take lists (mostly package managers). Use `name` instead of looping over individual names with `with_items` and friends.
508
509Security Fixes
510--------------
511
512- **security issue** - Mask default and fallback values for ``no_log`` module options (CVE-2021-20228)
513- **security issue** - copy - Redact the value of the no_log 'content' parameter in the result's invocation.module_args in check mode. Previously when used with check mode and with '-vvv', the module would not censor the content if a change would be made to the destination path. (CVE-2020-14332)
514- Sanitize no_log values from any response keys that might be returned from the uri module (CVE-2020-14330).
515- dnf - Previously, regardless of the ``disable_gpg_check`` option, packages were not GPG validated. They are now. (CVE-2020-14365)
516
517Bugfixes
518--------
519
520- A handler defined within a role will now search handlers subdir for included tasks (issue https://github.com/ansible/ansible/issues/71222).
521- ALLOW_WORLD_READABLE_TMP, switched to 'moved' message as 'deprecation' is misleading since config settings still work w/o needing change.
522- ANSIBLE_COLLECTIONS_PATHS - remove deprecation so that users of Ansible 2.9 and 2.10+ can use the same var when specifying a collection path without a warning.
523- Added unsafe_writes test.
524- Address compat with rpmfluff-0.6 for integration tests
525- Address the deprecation of the use of stdlib distutils in packaging. It's a short-term hotfix for the problem (https://github.com/ansible/ansible/issues/70456, https://github.com/pypa/setuptools/issues/2230, https://github.com/pypa/setuptools/commit/bd110264)
526- Adjust various hard-coded action names to also include their ``ansible.builtin.`` and ``ansible.legacy.`` prefixed version (https://github.com/ansible/ansible/issues/71817, https://github.com/ansible/ansible/issues/71818, https://github.com/ansible/ansible/pull/71824).
527- Allow TypeErrors on Undefined variables in filters to be handled or deferred when processing for loops.
528- Allow `~` to be present in file names in galaxy roles (https://github.com/ansible/ansible/issues/72966)
529- Always mention the name of the deprecated or tombstoned plugin in routing deprecation/tombstone messages (https://github.com/ansible/ansible/pull/73059).
530- Ansible output now uses stdout to determine column width instead of stdin
531- AnsibleModule - added arg ``ignore_invalid_cwd`` to ``AnsibleModule.run_command()``, to control its behaviour when ``cwd`` is invalid. (https://github.com/ansible/ansible/pull/72390)
532- Apply ``_wrap_native_text`` only for builtin filters specified in STRING_TYPE_FILTERS.
533- Automatically remove async cache files for polled async tasks that have completed (issue https://github.com/ansible/ansible/issues/73206).
534- Be smarter about collection paths ending with ansible_collections, emulating a-galaxy behaviour. Issue 72628
535- CLI - Restore git information in version output when running from source
536- Collection callbacks were ignoring options and rules for stdout and adhoc cases.
537- Collections - Ensure ``action_loader.get`` is called with ``collection_list`` to properly find collections when ``collections:`` search is specified (https://github.com/ansible/ansible/issues/72170)
538- Command module now returns stdout & stderr if executable is missing or an unknown error occurs
539- ConfigManager - Normalize ConfigParser between Python2 and Python3 to for handling comments (https://github.com/ansible/ansible/issues/73709)
540- Continue execution when  'flatten' filter when it hits a None/null value as part of the list.
541- Correct the inventory source error parse handling, specifically make the config INVENTORY_ANY_UNPARSED_IS_FAILED work as expected.
542- Correctly set template_path and template_fullpath for usage in template lookup and action plugins.
543- Deal with failures when sorting JSON and you have incompatible key types.
544- Display - Use wcswidth to calculate printable width of a text string (https://github.com/ansible/ansible/issues/63105)
545- Enabled unsafe_writes for get_url which was ignoring the paramter.
546- Ensure Ansible's unique filter preserves order (https://github.com/ansible/ansible/issues/63417)
547- Ensure if a traceback halts ``strategy.run`` that we still attempt to clean up (https://github.com/ansible/ansible/issues/23958)
548- Ensure password passed in by -k is used on delegated hosts that do not have ansible_password set
549- Ensure the correct options are used when ssh executables are used that don't match ssh executable names.
550- Facts collection - get serial number of NVMe device without sg_inq (https://github.com/ansible/ansible/issues/66663).
551- Fix --list-tasks format `role_name : task_name` when task name contains the role name. (https://github.com/ansible/ansible/issues/72505)
552- Fix ``RecursionError`` when templating large vars structures (https://github.com/ansible/ansible/issues/71920)
553- Fix ``delegate_facts: true`` when ``ansible_python_interpreter`` is not set. (https://github.com/ansible/ansible/issues/70168)
554- Fix adding unrelated candidate names to the plugin loader redirect list.
555- Fix an exit code for a non-failing playbook (https://github.com/ansible/ansible/issues/71306)
556- Fix ansible-galaxy collection list to show collections in site-packages (https://github.com/ansible/ansible/issues/70147)
557- Fix bytestring vs string comparison in module_utils.basic.is_special_selinux_path() so that special-cased filesystems which don't support SELinux context attributes still allow files to be manipulated on them. (https://github.com/ansible/ansible/issues/70244)
558- Fix execution of the meta tasks 'clear_facts', 'clear_host_errors', 'end_play', 'end_host', and 'reset_connection' when the CLI flag '--flush-cache' is provided.
559- Fix fileglob bug where it could return different results for different order of parameters (https://github.com/ansible/ansible/issues/72873).
560- Fix incorrect msg in the results dict in loops
561- Fix incorrect re-run of roles with tags (https://github.com/ansible/ansible/issues/69848)
562- Fix incorrect variable scoping when using ``import with context`` in Jinja2 templates. (https://github.com/ansible/ansible/issues/72615)
563- Fix jsonfile cache plugin option '_uri' to be a type path instead of a string. (https://github.com/ansible/ansible/issues/38002)
564- Fix notifying handlers via `role_name : handler_name` when handler name contains the role name. (https://github.com/ansible/ansible/issues/70582)
565- Fix parsing of values when using empty string as a key (https://github.com/ansible/ansible/issues/57132)
566- Fix statistics reporting when rescue block contains another block (issue https://github.com/ansible/ansible/issues/61253).
567- Fix to previous deprecation change (#70504) which caused command warning deprecation to show in all cases, even when not specified by the user.
568- Fixed TypeError instancemethod expecting at least 2 arguments for apt_repository(issue https://github.com/ansible/ansible/issues/69308, PR https://github.com/ansible/ansible/pull/69463)
569- Fixed issue when `netstat` is either missing or doesn't have execution permissions leading to incorrect command being executed.
570- Fixes ``ansible-galaxy role info`` to support multiple roles on the command line (https://github.com/ansible/ansible/pull/70148)
571- Fixes ansible-test traceback when plugin author is not a string or a list of strings (https://github.com/ansible/ansible/pull/70507)
572- Handle more varnames that can create conflicts, expand a function in general, handle jinja2 globals in particular (https://github.com/ansible/ansible/issues/41955).
573- INTERPRETER_PYTHON_DISTRO_MAP - prefer ``/usr/libexec/platform-python`` on ``oraclelinux 8`` when other pythons are present.
574- Improve Ansible config deprecations to show the source of the deprecation (ansible-core). Also remove space before a comma in config deprecations (https://github.com/ansible/ansible/pull/72697).
575- Improved/fixed regular expressions in ``validate-modules/validate_modules/schema.py`` and ``utils/collection_loader/_collection_finder.py`` (https://github.com/ansible/ansible/pull/73577).
576- Includes - Explicitly get the include task, and not assume it is the parent (https://github.com/ansible/ansible/issues/65710)
577- InventoryManager - Fix unhandled exception when given limit file was actually a directory.
578- InventoryManager - Fix unhandled exception when inventory directory was empty or contained empty subdirectories (https://github.com/ansible/ansible/issues/73658).
579- JSON Encoder - Ensure we treat single vault encrypted values as strings (https://github.com/ansible/ansible/issues/70784)
580- Lookup user by UID in password database if login name is not found (https://github.com/ansible/ansible/issues/17029)
581- OpenBSD module_utils - update sysctl variable name
582- Pass expression in angle-bracket notation as filename argument to a ``compile()`` built-in function, so that Python debuggers do not try to parse it as filename.
583- Pass the connection's timeout to connection plugins instead of the task's timeout.
584- Provide more information in AnsibleUndefinedVariable (https://github.com/ansible/ansible/issues/55152)
585- Python module_utils finder - refactor logic to eliminate many corner cases, remove recursion, fix base module_utils redirections
586- Remove an embedded function from RoleMixin and add tests for it (https://github.com/ansible/ansible/pull/72754).
587- Remove the warning displayed when validating the arg spec of a role with dependencies and add it to the documentation.
588- Restore the ability for changed_when/failed_when to function with group_by (#70844).
589- Restored unsafe_writes functionality which was being skipped.
590- Restructured pipelining settings to be at the connection plugins leaving base config as global and for backwards compatiblity.
591- SSH plugin - Improve error message when ssh client is not found on the host
592- Setup virtualization_facts - add RHV and oVirt type. This change will fully work for VMs in clusters at cluster level 4.4 or newer (https://github.com/ansible/ansible/pull/72876).
593- Skip invalid collection names when listing in ansible-doc instead of throwing exception. Issue#72257
594- Skip literal_eval for string filters results in native jinja. (https://github.com/ansible/ansible/issues/70831)
595- Stop adding the connection variables to the output results
596- Strategy - When building the task in the Strategy from the Worker, ensure it is properly marked as finalized and squashed. Addresses an issue with ``ansible_failed_task``. (https://github.com/ansible/ansible/issues/57399)
597- Suppress warning when user directory used in --playbook-dir option with ansible-inventory command (https://github.com/ansible/ansible/issues/65262).
598- TOML inventory - Ensure we register dump functions for ``AnsibleUnsafe`` to support dumping unsafe values. Note that the TOML format has no functionality to mark that the data is unsafe for re-consumption. (https://github.com/ansible/ansible/issues/71307)
599- Terminal plugins - add "\e[m" to the list of ANSI sequences stripped from device output
600- The ``docker`` and ``k8s`` action groups / module default groups now also support the moved modules in `community.docker <https://galaxy.ansible.com/community/docker>`_, `community.kubevirt <https://github.com/ansible-collections/community.kubevirt>`_, `community.okd <https://galaxy.ansible.com/community/okd>`_, and `kubernetes.core <https://galaxy.ansible.com/kubernetes/core>`_ (https://github.com/ansible/ansible/pull/72428).
601- The ``flush()`` method of ``CachePluginAdjudicator`` now calls the plugin's ``flush()`` method instead of iterating over the keys that the adjudicator knows about and deleting those from the cache. (https://github.com/ansible/ansible/issues/68770)
602- The `ansible_become` value was not being treated as a boolean value when set in an INI format inventory file (fixes bug https://github.com/ansible/ansible/issues/70476).
603- The machine-readable changelog ``changelogs/changelog.yaml`` is now contained in the release.
604- Try to avoid kernel 'blocking' state on reading files while fact gathering.
605- Updated docs and added warning on max_fail_percentage and free strategy usage. fixes issue 16666.
606- VariableManager - Add the 'vars' key before getting delegated variables (https://github.com/ansible/ansible/issues/71092).
607- Vault - Allow single vault encrypted values to be used directly as module parameters. (https://github.com/ansible/ansible/issues/68275)
608- WorkerProcess - Implement workaround for stdout deadlock in multiprocessing shutdown to avoid process hangs.
609- WorkerProcess - Python 3.5 fix for workaround for stdout deadlock in multiprocessing shutdown to avoid process hangs. (https://github.com/ansible/ansible/issues/74149)
610- [set_fact] Corrected and expanded documentation as well as now raise errors that were previously ignored.
611- account for bug in Python 2.6 that occurs during interpreter shutdown to avoid stack trace
612- action plugins - change all action/module delegations to use FQ names while allowing overrides (https://github.com/ansible/ansible/issues/69788)
613- add AlmaLinux to fact gathering (https://github.com/ansible/ansible/pull/73458)
614- add constraints file for ``ansible_runner`` test since an update to ``psutil`` is now causing test failures
615- add magic/connection vars updates from delegated host info.
616- add support for alpine linux 'apk' package manager in package_facts
617- allow become method 'su' to work on 'local' connection by allocating a fake tty.
618- ansible-console - Ctrl+C (in a task) abort current task, and put you back on prompt (this behavior doesn't change) (ditto)
619- ansible-console - Ctrl+C (on prompt) used to exit the shell, unlike most shells, it should just reset the current line (ie. abort it and spawn a new prompt) (https://github.com/ansible/ansible/issues/68529)
620- ansible-console - Ctrl+D (on prompt) now exit the shell, this is the expected behavior in a shell (cf bash, sh, zsh, ipython, ...) (ditto)
621- ansible-console - add more documentation, specifically on various commands[1] (https://github.com/ansible/ansible/issues/72195)
622- ansible-console - fixes few strings' typos
623- ansible-console - remove useless and poorly formatted comment section (replaced with [1])
624- ansible-doc - account for an empty ``meta/main.yml`` file when displaying role information (https://github.com/ansible/ansible/pull/73590)
625- ansible-doc - collection name for plugin top-level deprecation was not inserted when deprecating by version (https://github.com/ansible/ansible/pull/70344).
626- ansible-doc - improve error message in text formatter when ``description`` is missing for a (sub-)option or a return value or its ``contains`` (https://github.com/ansible/ansible/pull/70046).
627- ansible-doc - improve man page formatting to avoid problems when YAML anchors are used (https://github.com/ansible/ansible/pull/70045).
628- ansible-doc - include the collection name in the text output (https://github.com/ansible/ansible/pull/70401).
629- ansible-doc - plugin option deprecations now also get ``collection_name`` added (https://github.com/ansible/ansible/pull/71735).
630- ansible-doc - properly show plugin name when ``name:`` is used instead of ``<plugin_type>:`` (https://github.com/ansible/ansible/pull/71966).
631- ansible-galaxy - Cache the responses for available collection versions after getting all pages. (https://github.com/ansible/ansible/issues/73071)
632- ansible-galaxy - Instead of assuming the first defined server is galaxy, filter based on the servers that support the v1 API, and return the first of those (https://github.com/ansible/ansible/issues/65440)
633- ansible-galaxy - Use ``sys.exit`` instead of ``exit`` when reporting an error for the removed login command.
634- ansible-galaxy - correct ``collections-path`` command line argument (https://github.com/ansible/ansible/issues/73127)
635- ansible-galaxy - fixed galaxy role init command (https://github.com/ansible/ansible/issues/71977).
636- ansible-galaxy collection download - fix downloading tar.gz files and collections in git repositories (https://github.com/ansible/ansible/issues/70429)
637- ansible-galaxy collection install - fix fallback mechanism if the AH server did not have the collection requested - https://github.com/ansible/ansible/issues/70940
638- ansible-galaxy download - fix bug when downloading a collection in a SCM subdirectory
639- ansible-pull - Run all playbooks that when multiple are supplied via the command line (https://github.com/ansible/ansible/issues/72708)
640- ansible-test - Add ``pytest < 6.0.0`` constraint for managed installations on Python 3.x to avoid issues with relative imports.
641- ansible-test - Add a ``six < 1.14.0`` constraint for Python 2.6.
642- ansible-test - Always connect additional Docker containers to the network used by the current container (if any).
643- ansible-test - Always map ``/var/run/docker.sock`` into test containers created by the ``--docker`` option if the docker host is not ``localhost``.
644- ansible-test - Attempt to detect the Docker hostname instead of assuming ``localhost``.
645- ansible-test - Avoid using ``/tmp`` to resolve occasional failures starting tests with the ``--docker`` option.
646- ansible-test - Change classification using ``--changed`` now consistently handles common configuration files for supported CI providers.
647- ansible-test - Change detection now properly resolves relative imports instead of treating them as absolute imports.
648- ansible-test - Correctly detect changes in a GitHub pull request when running on Azure Pipelines.
649- ansible-test - Correctly detect running in a Docker container on Azure Pipelines.
650- ansible-test - Do not try to validate PowerShell modules ``setup.ps1``, ``slurp.ps1``, and ``async_status.ps1``
651- ansible-test - Prefer container IP at ``.NetworkSettings.Networks.{NetworkName}.IPAddress`` over ``.NetworkSettings.IPAddress``.
652- ansible-test - Running tests using an installed version of ``ansible-test`` against one Python version from another no longer fails due to a missing ``egg-info`` directory. This could occur when testing plugins which import ``pkg_resources``.
653- ansible-test - Running tests using an installed version of ``ansible-test`` no longer generates an error attempting to create an ``egg-info`` directory when an existing one is not found in the expected location. This could occur if the existing ``egg-info`` directory included a Python version specifier in the name.
654- ansible-test - Skip installing requirements if they are already installed.
655- ansible-test - Symbolic links are no longer used to inject ``python`` into the environment, since they do not work reliably in all cases. Instead, the existing Python based exec wrapper is always used.
656- ansible-test - Temporarily limit ``cryptography`` to versions before 3.4 to enable tests to function.
657- ansible-test - The ``--export`` option for ``ansible-test coverage`` is now limited to the ``combine`` command. It was previously available for reporting commands on which it had no effect.
658- ansible-test - The ``--raw`` option for ``ansible-test shell --remote`` now uses ``sh`` for the shell instead of ``bash``, which may not be present.
659- ansible-test - The ``--remote`` option has been updated for Python 2.7 to work around breaking changes in the newly released ``get-pip.py`` bootstrapper.
660- ansible-test - The ``--remote`` option has been updated to use a versioned ``get-pip.py`` bootstrapper to avoid issues with future releases.
661- ansible-test - The ``ansible-doc`` sanity test now works for ``netconf`` plugins.
662- ansible-test - The ``ansible-test coverage combine`` option ``--export`` now exports relative paths. This avoids loss of coverage data when aggregating across systems with different absolute paths. Paths will be converted back to absolute when generating reports.
663- ansible-test - The ``changelog`` sanity test has been updated to ensure ``rstcheck`` does not load the ``sphinx`` module.
664- ansible-test - The ``cs`` and ``openshift`` test plugins now search for containers on the current network instead of assuming the ``bridge`` network.
665- ansible-test - The ``resource_prefix`` variable provided to tests running on Azure Pipelines is now converted to lowercase to match other CI providers.
666- ansible-test - Unified SSH key management for all instances created with the ``--remote`` or ``--docker`` options.
667- ansible-test - Using the ``--remote`` option on Azure Pipelines now works from a job running in a container.
668- ansible-test - ``cryptography`` is now limited to versions prior to 3.2 only when an incompatible OpenSSL version (earlier than 1.1.0) is detected
669- ansible-test - add constraint for ``cffi`` to prevent failure on systems with older versions of ``gcc`` (https://foss.heptapod.net/pypy/cffi/-/issues/480)
670- ansible-test - convert target paths to unicode on Python 2 to avoid ``UnicodeDecodeError`` (https://github.com/ansible/ansible/issues/68398, https://github.com/ansible/ansible/pull/72623).
671- ansible-test - ensure the correct unit test target is given when the ``__init__.py`` file is modified inside the connection plugins directory
672- ansible-test - ensure unit test paths for connection and inventory plugins are correctly identified for collections (https://github.com/ansible/ansible/issues/73876).
673- ansible-test - improve classification of changes to ``.gitignore``, ``COPYING``, ``LICENSE``, ``Makefile``, and all files ending with one of ``.in`, ``.md`, ``.rst``, ``.toml``, ``.txt`` in the collection root directory (https://github.com/ansible/ansible/pull/72353).
674- ansible-test - integration and unit test change detection now works for filter, lookup and test plugins
675- ansible-test now always uses the ``--python`` option for ``virtualenv`` to select the correct interpreter when creating environments with the ``--venv`` option
676- ansible-test sanity changelog test - bump dependency on antsibull-changelog to 0.9.0 so that `fragments that add new plugins or objects <https://github.com/ansible-community/antsibull-changelog/blob/main/docs/changelogs.rst#adding-new-roles-playbooks-test-and-filter-plugins>`_ will not fail validation (https://github.com/ansible/ansible/pull/73428).
677- ansible-test units - fixed collection location code to work under pytest >= 6.0.0
678- ansible-test validate-modules - ``version_added`` on module level was not validated for modules in collections (https://github.com/ansible/ansible/pull/70869).
679- ansible-test validate-modules - return correct error codes ``option-invalid-version-added`` resp. ``return-invalid-version-added`` instead of the wrong error ``deprecation-either-date-or-version`` when an invalid value of ``version_added`` is specified for an option or a return value (https://github.com/ansible/ansible/pull/70869).
680- ansible-test validate-modules - when a module uses ``add_file_common_args=True`` and does not use a keyword argument for ``argument_spec`` in ``AnsibleModule()``, the common file arguments were not considered added during validation (https://github.com/ansible/ansible/pull/72334).
681- ansible_pkg_mgr fact - now correctly returns ``atomic_container`` when run on "RHEL for Edge" images and Fedora/RHEL/CentOS Atomic Host (https://github.com/ansible/ansible/issues/73084).
682- api - time.clock is removed in Python 3.8, add backward compatible code (https://github.com/ansible/ansible/issues/70649).
683- apt - add ``fail_on_autoremove`` param to apt module to avoid unintended package removals (https://github.com/ansible/ansible/issues/63231)
684- apt - fix policy_rc_d parameter throwing an exception when restoring original file (https://github.com/ansible/ansible/issues/66211)
685- apt - include exception message from apt python library in error output
686- apt_key - Specifying ``file`` as mutually exclusive with ``data``, ``keyserver``, ``url`` (https://github.com/ansible/ansible/pull/70492).
687- apt_repository - fixes ``mode`` doc to remove ineffective default (https://github.com/ansible/ansible/pull/70319).
688- argument spec validation - fix behavior of ``apply_defaults=True`` when an empty dictionary is specified for such an option (https://github.com/ansible/ansible/pull/74029).
689- assemble - fix decrypt argument in the module (https://github.com/ansible/ansible/issues/65450).
690- async - Fix Python 3 interpreter parsing from module by comparing with bytes (https://github.com/ansible/ansible/issues/70690)
691- async_wrapper - Fix race condition when ``~/.ansible_async`` folder tries to be created by multiple async tasks at the same time - https://github.com/ansible/ansible/issues/59306
692- avoid possible errors accessing os.environ by not assuming existance of variables.
693- basic - handle exceptions for default selectors in Python 2.7 (https://github.com/ansible/ansible/issues/71704).
694- basic - use PollSelector implementation when DefaultSelector fails (https://github.com/ansible/ansible/issues/70238).
695- bcrypt hashing - Ensure we repair the salt, to avoid warnings (https://github.com/ansible/ansible/issues/36129)
696- blockinfile - properly insert a block at the end of a file that does not have a trailing newline character (https://github.com/ansible/ansible/issues/72055)
697- blockinfile now returns name of backup file when this option is used.
698- clarified changed status to reflect existing rule that had never been written down.
699- collection loader - fix bogus code coverage entries for synthetic packages
700- collection metadata - ensure collection loader uses libyaml/CSafeLoader to parse collection metadata if available
701- connection/ssh, ensure parameters come from correct source get_option, so functionality matches docs.
702- connection/ssh, fix reset to use same parameters to check if socket exists as actually used, was hardcoded to default string construction previouslly.
703- cron - cron file should not be empty after adding var (https://github.com/ansible/ansible/pull/71207)
704- cron - encode and decode crontab files in UTF-8 explicitly to allow non-ascii chars in cron filepath and job (https://github.com/ansible/ansible/issues/69492)
705- debug action, prevent setting facts when displaying ansible_facts.
706- default callback - Ensure that the ``host_pinned`` strategy is not treated as lockstep (https://github.com/ansible/ansible/issues/73364)
707- delegate_to - Ensure that calculating ``delegate_to`` vars with a loop uses the correct context to correctly evaluate the loop (https://github.com/ansible/ansible/issues/37132)
708- display correct error information when an error exists in the last line of the file (https://github.com/ansible/ansible/issues/16456)
709- distribution - add support for Pardus Linux distribution (https://github.com/ansible/ansible/issues/71636).
710- distribution facts - Allow ``distribution_major_version`` and ``distribution_version`` to work for RC and PRERELEASE versions of FreeBSD (and derived distributions) (https://github.com/ansible/ansible/issues/72331).
711- dnf - fix filtering to avoid dependncy conflicts (https://github.com/ansible/ansible/issues/72316)
712- dnf - it is now possible to specify both ``security: true`` and ``bugfix: true`` to install updates of both types. Previously, only security would get installed if both were true. (https://github.com/ansible/ansible/issues/70854)
713- ensure 'local' connection always has the correct default user for actions to consume.
714- ensure delegated vars can resolve hostvars object and access vars from hostvars[inventory_hostname].
715- ensure find_mount_point consistently returns text.
716- ensure we don't clobber role vars data when getting an empty file
717- expect - Operate pexpect with bytes to avoid potential encoding issues (https://github.com/ansible/ansible/issues/29351)
718- facts - account for Slackware OS with ``+`` in the name (https://github.com/ansible/ansible/issues/38760)
719- facts - fix distribution fact for SLES4SAP (https://github.com/ansible/ansible/pull/71559).
720- facts - fix incorrect UTC timestamp in ``iso8601_micro`` and ``iso8601``
721- facts - properly report virtualization facts for Linux guests running on bhyve (https://github.com/ansible/ansible/issues/73167)
722- file - prevent link src from being rewritten when src is not specified explicitly (https://github.com/ansible/ansible/issues/65448)
723- file - the module should warn in check_mode when path an owner/group don't exist (https://github.com/ansible/ansible/issues/67307).
724- find module - Don't treat empty excludes as a match (https://github.com/ansible/ansible/issues/70640)
725- find module - Stop traversing directories past the requested depth. (https://github.com/ansible/ansible/issues/73627)
726- find module, fix default pattern when use_regex is true.
727- fix issue with inventory_hostname and delegated host vars mixing on connection settings.
728- fortimanager httpapi plugin - fix redirect to point to the ``fortinet.fortimanager`` collection (https://github.com/ansible/ansible/pull/71073).
729- galaxy - handle plus sign in user token appearing in role url (https://github.com/ansible/ansible/issues/45475).
730- get_sysctl now handles multiline values and does not die silently anymore.
731- get_url - skip checksum during ``--check`` (https://github.com/ansible/ansible/issues/61369).
732- git - Only pass ``--raw`` flag to git verify commands (verify-tag, verify-commit) when ``gpg_whitelist`` is in use. Otherwise don't pass it so that non-whitelist GPG validation still works on older Git versions. (https://github.com/ansible/ansible/issues/64469)
733- gluster modules - fix redirect to point to the ``gluster.gluster`` collection (https://github.com/ansible/ansible/pull/71240).
734- hostname - Fixed an issue where the hostname on the alinux could not be set.
735- hostname - add Almalinux support (https://github.com/ansible/ansible/pull/73619)
736- hostname - add macOS support (https://github.com/ansible/ansible/pull/54439)
737- if the ``type`` for a module parameter in the argument spec is callable, do not pass ``kwargs`` to avoid errors (https://github.com/ansible/ansible/issues/70017)
738- import_playbook - change warning about extra parameters to deprecation (https://github.com/ansible/ansible/issues/72745)
739- improve deprecation message when using bare variable (https://github.com/ansible/ansible/pull/70687)
740- inventory - pass the vars dictionary to combine_vars instead of an individual key's value (https://github.com/ansible/ansible/issues/72975).
741- inventory plugins - Let plugins define the sanitization method for the constructed ``groups`` feature.
742- inventory_hostnames - Use ``InventoryManager`` instead of trying to replicate its behavior (https://github.com/ansible/ansible/issues/17268)
743- is_string/vault - Ensure the is_string helper properly identifies AnsibleVaultEncryptedUnicode as a string (https://github.com/ansible/ansible/pull/71609)
744- j2 plugin loader clarified comments, made note with better fqcn detection.
745- lineinfile - fix not subscriptable error in exception handling around file creation
746- linux network facts - get the correct value for broadcast address (https://github.com/ansible/ansible/issues/64384)
747- native jinja2 types - properly handle Undefined in nested data.
748- notify keyword is not ignored anymore on import_tasks, also able to apply to blocks now.
749- package - use list of built in package managers from facts rather than creating a new list
750- paramiko connection plugin - Ensure we only reset the connection when one has been previously established (https://github.com/ansible/ansible/issues/65812)
751- password hashing - Ensure we validate salts against allowed characters and length when using ``crypt`` (https://github.com/ansible/ansible/issues/71107)
752- password lookup - Try to automatically generate salts using known salt sizes (https://github.com/ansible/ansible/issues/53750)
753- pause - Fix indefinite hang when using a pause task on a background process (https://github.com/ansible/ansible/issues/32142)
754- pause - catch additional error on setting up curses (https://github.com/ansible/ansible/pull/73588).
755- pause - do not accept enter to continue when a timeout is set (https://github.com/ansible/ansible/issues/73948)
756- pause - do not warn when running in the background if a timeout is provided (https://github.com/ansible/ansible/issues/73042)
757- pause - handle exception when there is no stdout (https://github.com/ansible/ansible/pull/47851)
758- powershell - fix escaping of strings that broken modules like fetch when dealing with special chars - https://github.com/ansible/ansible/issues/62781
759- powershell - fix the CLIXML parser when it contains nested CLIXML objects - https://github.com/ansible/ansible/issues/69550
760- powershell - remove getting the PowerShell version from the env var ``POWERSHELL_VERSION``. This feature never worked properly and can cause conflicts with other libraries that use this var
761- psrp - Fix hang when copying an empty file to the remote target
762- psrp - Use native PSRP mechanism when copying files to support custom endpoints
763- quote filter - normalize how ``None`` is handled, to match Python3 behavior (https://github.com/ansible/ansible/issues/32174)
764- reboot - Add support for the runit init system, used on Void Linux, that does not support the normal Linux syntax.
765- remove contradictory recomendation from template docs. https://github.com/ansible/ansible/issues/63484
766- remove redundant remote_user setting in play_context for local as plugin already does it, also removes fork/thread issue from use of pwd library.
767- reset logging level to INFO due to CVE-2019-14846.
768- restrict module valid JSON parsed output to objects as lists are not valid responses.
769- runas - create a new token when running as ``SYSTEM`` to ensure it has the full privileges assigned to that account
770- service - Fix for the BSD rcconf code using a Python 2 specific string replace function
771- set_mode_if_different - handle symlink if it is inside a directory with sticky bit set (https://github.com/ansible/ansible/pull/45198)
772- setup module, fix error handling on bad subset given
773- setup, don't give up on all local facts gathering if one script file fails.
774- several fixes to make apt_key better at identifying needs for change and also to avoid changes in check_mode.
775- shell - fix quoting of mkdir command in creation of remote_tmp in order to allow spaces and other special characters (https://github.com/ansible/ansible/issues/69577).
776- splunk httpapi plugin - switch from splunk.enterprise_security to splunk.es in runtime.yml to reflect upstream change of Collection Name
777- ssh connection plugin - use ``get_option()`` rather than ``_play_context`` to ensure ``ANSBILE_SSH_ARGS`` are applied properly (https://github.com/ansible/ansible/issues/70437)
778- stat - handle colons in filename while parsing the mimetype output (https://github.com/ansible/ansible/issues/70256).
779- strftime filter - Input epoch is allowed to be a float (https://github.com/ansible/ansible/issues/71257)
780- su become plugin, ensure correct type for localization option.
781- systemd - account for templated unit files using ``@`` when searching for the unit file (https://github.com/ansible/ansible/pull/72347#issuecomment-730626228)
782- systemd - fixed chroot usage on new versions of systemd, that broke because of upstream changes in systemctl output
783- systemd - follow up fix to https://github.com/ansible/ansible/issues/72338 to use ``list-unit-files`` rather than ``list-units`` in order to show all units files on the system.
784- systemd - made the systemd module work correctly when the SYSTEMD_OFFLINE environment variable is set
785- systemd - preserve the full unit name when using a templated service and ``systemd`` failed to parse dbus due to a known bug in ``systemd`` (https://github.com/ansible/ansible/pull/72985)
786- systemd - work around bug with ``systemd`` 245 and 5.8 kernel that does not correctly report service state (https://github.com/ansible/ansible/issues/71528)
787- task parsing - strip spaces from action name when using ``action: foo bar=baz`` form. (https://github.com/ansible/ansible/issues/62136)
788- templating - fix error message for ``x in y`` when y is undefined (https://github.com/ansible/ansible/issues/70984)
789- the unvault lookup plugin returned a byte string. Now returns a real string.
790- to_text(stdout) before json.loads in psrp.Connection.put_file in case stdout is bytes
791- unarchive - ``zip`` unarchive no longer errors on RHEL/CentOS 6 and old Fedora when attempting to use a numeric gid (https://github.com/ansible/ansible/issues/71903).
792- unarchive - check ``fut_gid`` against ``run_gid`` in addition to supplemental groups (https://github.com/ansible/ansible/issues/49284)
793- undeprecate hash_merge setting and add more docs clarifying its use and why not to use it.
794- uri - ``status_code`` elements are type ``int``
795- url lookup - make sure that options supplied in ansible.cfg are actually used (https://github.com/ansible/ansible/pull/71736).
796- url lookup - set default user agent to ``ansible-httpget`` (https://github.com/ansible/ansible/pull/72324)
797- urls - Close filedescriptor of certificate chain tempfile to prevent stale filedescriptor leakage (https://github.com/ansible/ansible/pull/71825).
798- user - AnsibleModule.run_command returns a tuple of return code, stdout and stderr. The module main function of the user module expects user.create_user to return a tuple of return code, stdout and stderr. Fix the locations where stdout and stderr got reversed.
799- user - Local users with an expiry date cannot be created as the ``luseradd`` / ``lusermod`` commands do not support the ``-e`` option. Set the expiry time in this case via ``lchage`` after the user was created / modified. (https://github.com/ansible/ansible/issues/71942)
800- user - do the right thing when ``password_lock=True`` and ``password`` are used together (https://github.com/ansible/ansible/issues/72992)
801- user - don't create home directory and missing parents when create_home == false (https://github.com/ansible/ansible/pull/70600).
802- validate-modules - do not raise an ``AttributeError`` if a value is assigned to a module attribute in a try/except block.
803- vault - Support reading raw binary data from stdin under python3
804- virtual facts - kubevirt is now identified as "KubeVirt" and with a "guest" role instead of "kvm" and "host" role (https://github.com/ansible/ansible/issues/72001).
805- wait_for - catch and ignore errors when getting active connections with psutil (https://github.com/ansible/ansible/issues/72322)
806- wait_for module, move missing socket into function to get proper comparrison in time.
807- win setup - Fix redirection path for the windows setup module
808- windows async - use full path when calling PowerShell to reduce reliance on environment vars being correct - https://github.com/ansible/ansible/issues/70655
809- winrm - preserve winrm forensic data on put_file failures
810- yamllint - do not raise an ``AttributeError`` if a value is assigned to a module attribute at the top of the module.
811
812Known Issues
813------------
814
815- ansible-test - The ``pylint`` sanity test no longer correctly detects "bad" variable names for non-constants. See https://github.com/PyCQA/pylint/issues/3701 for additional details.
816
817New Modules
818-----------
819
820- validate_argument_spec - Validate role argument specs.
821