1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Allow removed_in 2.11 (#42119)

This commit is contained in:
John R Barker 2018-06-29 09:42:54 -07:00 committed by GitHub
parent 44e5886385
commit 6024a766e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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