From aae5734e0e12ea7ca6654909ce34b99fa9bc7751 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 9 Jun 2025 09:38:55 -0700 Subject: [PATCH] Fix deprecation versions in template lookup (#85288) (cherry picked from commit 4956619ac222b491058121e100ea7cbff476ac72) --- lib/ansible/plugins/lookup/template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/plugins/lookup/template.py b/lib/ansible/plugins/lookup/template.py index e4f459c218f..141d6684746 100644 --- a/lib/ansible/plugins/lookup/template.py +++ b/lib/ansible/plugins/lookup/template.py @@ -22,7 +22,7 @@ DOCUMENTATION = """ default: true deprecated: why: This option is no longer used in the Ansible Core code base. - version: "2.21" + version: "2.23" alternatives: Jinja2 native mode is now the default and only option, which is mutually exclusive with this option. variable_start_string: description: The string marking the beginning of a print statement. @@ -45,7 +45,7 @@ DOCUMENTATION = """ type: bool deprecated: why: This option is no longer used in the Ansible Core code base. - version: "2.21" + version: "2.23" alternatives: Jinja2 native mode is now the default and only option. template_vars: description: A dictionary, the keys become additional variables available for templating.