mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #8189/1bbef588 backport][stable-8] Deprecate hipchat callback (#8240)
Deprecate hipchat callback (#8189)
* Deprecate hipchat callback.
* Avoid duplicate 'callback' key.
(cherry picked from commit 1bbef58844
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
3e67b6cc8b
commit
6f60692dd1
3 changed files with 30 additions and 18 deletions
4
changelogs/fragments/hipchat.yml
Normal file
4
changelogs/fragments/hipchat.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
deprecated_features:
|
||||||
|
- "hipchat callback plugin - the hipchat service has been discontinued and the self-hosted variant has been End of Life since 2020.
|
||||||
|
The callback plugin is therefore deprecated and will be removed from community.general 10.0.0 if nobody provides compelling reasons to still keep it
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/8184, https://github.com/ansible-collections/community.general/pull/8189)."
|
|
@ -13,6 +13,28 @@ action_groups:
|
||||||
- consul_session
|
- consul_session
|
||||||
- consul_token
|
- consul_token
|
||||||
plugin_routing:
|
plugin_routing:
|
||||||
|
callback:
|
||||||
|
actionable:
|
||||||
|
tombstone:
|
||||||
|
removal_version: 2.0.0
|
||||||
|
warning_text: Use the 'default' callback plugin with 'display_skipped_hosts
|
||||||
|
= no' and 'display_ok_hosts = no' options.
|
||||||
|
full_skip:
|
||||||
|
tombstone:
|
||||||
|
removal_version: 2.0.0
|
||||||
|
warning_text: Use the 'default' callback plugin with 'display_skipped_hosts
|
||||||
|
= no' option.
|
||||||
|
hipchat:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 10.0.0
|
||||||
|
warning_text: The hipchat service has been discontinued and the self-hosted variant has been End of Life since 2020.
|
||||||
|
osx_say:
|
||||||
|
redirect: community.general.say
|
||||||
|
stderr:
|
||||||
|
tombstone:
|
||||||
|
removal_version: 2.0.0
|
||||||
|
warning_text: Use the 'default' callback plugin with 'display_failed_stderr
|
||||||
|
= yes' option.
|
||||||
connection:
|
connection:
|
||||||
docker:
|
docker:
|
||||||
redirect: community.docker.docker
|
redirect: community.docker.docker
|
||||||
|
@ -4707,24 +4729,6 @@ plugin_routing:
|
||||||
redirect: dellemc.openmanage.dellemc_idrac
|
redirect: dellemc.openmanage.dellemc_idrac
|
||||||
remote_management.dellemc.ome:
|
remote_management.dellemc.ome:
|
||||||
redirect: dellemc.openmanage.ome
|
redirect: dellemc.openmanage.ome
|
||||||
callback:
|
|
||||||
actionable:
|
|
||||||
tombstone:
|
|
||||||
removal_version: 2.0.0
|
|
||||||
warning_text: Use the 'default' callback plugin with 'display_skipped_hosts
|
|
||||||
= no' and 'display_ok_hosts = no' options.
|
|
||||||
full_skip:
|
|
||||||
tombstone:
|
|
||||||
removal_version: 2.0.0
|
|
||||||
warning_text: Use the 'default' callback plugin with 'display_skipped_hosts
|
|
||||||
= no' option.
|
|
||||||
osx_say:
|
|
||||||
redirect: community.general.say
|
|
||||||
stderr:
|
|
||||||
tombstone:
|
|
||||||
removal_version: 2.0.0
|
|
||||||
warning_text: Use the 'default' callback plugin with 'display_failed_stderr
|
|
||||||
= yes' option.
|
|
||||||
inventory:
|
inventory:
|
||||||
docker_machine:
|
docker_machine:
|
||||||
redirect: community.docker.docker_machine
|
redirect: community.docker.docker_machine
|
||||||
|
|
|
@ -18,6 +18,10 @@ DOCUMENTATION = '''
|
||||||
description:
|
description:
|
||||||
- This callback plugin sends status updates to a HipChat channel during playbook execution.
|
- This callback plugin sends status updates to a HipChat channel during playbook execution.
|
||||||
- Before 2.4 only environment variables were available for configuring this plugin.
|
- Before 2.4 only environment variables were available for configuring this plugin.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 10.0.0
|
||||||
|
why: The hipchat service has been discontinued and the self-hosted variant has been End of Life since 2020.
|
||||||
|
alternative: There is none.
|
||||||
options:
|
options:
|
||||||
token:
|
token:
|
||||||
description: HipChat API token for v1 or v2 API.
|
description: HipChat API token for v1 or v2 API.
|
||||||
|
|
Loading…
Reference in a new issue