mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 23:44:00 -07:00
[5.0.0] Bump version to 5.0.0, remove deprecated features (#4516)
* Remove deprecated features. * Fix changelog. * Remove ignore.txt entries. * One more. * Remove state=get tests.
This commit is contained in:
parent
29c49febd9
commit
54b2f0819d
28 changed files with 79 additions and 500 deletions
|
@ -42,8 +42,6 @@ options:
|
|||
description:
|
||||
- Whether or not to refresh the master package lists. This can be
|
||||
run as part of a package installation or as a separate step.
|
||||
- Alias C(update-cache) has been deprecated and will be removed in community.general 5.0.0.
|
||||
aliases: ['update-cache']
|
||||
type: bool
|
||||
default: yes
|
||||
upgrade:
|
||||
|
@ -286,10 +284,8 @@ def main():
|
|||
'removed']),
|
||||
recurse=dict(default=False, type='bool'),
|
||||
upgrade=dict(default=False, type='bool'),
|
||||
update_cache=dict(
|
||||
default=True, aliases=['update-cache'], type='bool',
|
||||
deprecated_aliases=[dict(name='update-cache', version='5.0.0', collection_name='community.general')]),
|
||||
upgrade_xbps=dict(default=True, type='bool')
|
||||
update_cache=dict(default=True, type='bool'),
|
||||
upgrade_xbps=dict(default=True, type='bool'),
|
||||
),
|
||||
required_one_of=[['name', 'update_cache', 'upgrade']],
|
||||
supports_check_mode=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue