mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 01:45:25 -07:00
2.8 Core Deprecation Removal (#45232)
* Remove deprecated ansible.vars.unsafe_proxy. Fixes #45040 * Remove deprecated validate_md5 alias from fetch module. Fixes #45039 * Remove deprecated private arg from import/include_role. Fixes #45038 * All include deprecations bumped to 2.12. Fixes #45037 * Add changelog for deprecated removals
This commit is contained in:
parent
99aafcc8ca
commit
0015d4cef3
10 changed files with 8 additions and 69 deletions
|
@ -95,7 +95,7 @@ class Playbook:
|
|||
|
||||
if any(action in entry for action in ('import_playbook', 'include')):
|
||||
if 'include' in entry:
|
||||
display.deprecated("'include' for playbook includes. You should use 'import_playbook' instead", version="2.8")
|
||||
display.deprecated("'include' for playbook includes. You should use 'import_playbook' instead", version="2.12")
|
||||
pb = PlaybookInclude.load(entry, basedir=self._basedir, variable_manager=variable_manager, loader=self._loader)
|
||||
if pb is not None:
|
||||
self._entries.extend(pb._entries)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue