Allow removed_in: 2.12 (#45732)

This commit is contained in:
John R Barker 2018-09-17 15:54:00 +01:00 committed by ansibot
parent 05328ebf21
commit 78201d1c32

View file

@ -123,7 +123,7 @@ def deprecation_schema():
# Deprecation cycle changed at 2.4 (though not retroactively)
# 2.3 -> removed_in: "2.5" + n for docs stub
# 2.4 -> removed_in: "2.8" + n for docs stub
Required('removed_in'): Any("2.2", "2.3", "2.4", "2.5", "2.6", "2.8", "2.9", "2.10", "2.11"),
Required('removed_in'): Any("2.2", "2.3", "2.4", "2.5", "2.6", "2.8", "2.9", "2.10", "2.11", "2.12"),
Required('why'): Any(*string_types),
Required('alternative'): Any(*string_types),
'removed': Any(True),