Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions changelogs/fragments/11205-module_utils.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
deprecated_features:
- "cloud module utils - this module utils is not used by community.general and will thus be removed from community.general 13.0.0.
If you are using it from another collection, please copy it over (https://github.com/ansible-collections/community.general/pull/11205)."
- "database module utils - this module utils is not used by community.general and will thus be removed from community.general 13.0.0.
If you are using it from another collection, please copy it over (https://github.com/ansible-collections/community.general/pull/11205)."
- "known_hosts module utils - this module utils is not used by community.general and will thus be removed from community.general 13.0.0.
If you are using it from another collection, please copy it over (https://github.com/ansible-collections/community.general/pull/11205)."
- "saslprep module utils - this module utils is not used by community.general and will thus be removed from community.general 13.0.0.
If you are using it from another collection, please copy it over (https://github.com/ansible-collections/community.general/pull/11205)."
16 changes: 16 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,14 @@ plugin_routing:
warning_text: This doc fragment was used by rax modules, that relied on the deprecated
package pyrax.
module_utils:
cloud:
deprecation:
removal_version: 13.0.0
warning_text: This code is not used by community.general. If you want to use it in another collection, please copy it over.
database:
deprecation:
removal_version: 13.0.0
warning_text: This code is not used by community.general. If you want to use it in another collection, please copy it over.
dimensiondata:
deprecation:
removal_version: 13.0.0
Expand All @@ -1162,6 +1170,10 @@ plugin_routing:
redirect: community.google.gcp
hetzner:
redirect: community.hrobot.robot
known_hosts:
deprecation:
removal_version: 13.0.0
warning_text: This code is not used by community.general. If you want to use it in another collection, please copy it over.
kubevirt:
redirect: community.kubevirt.kubevirt
net_tools.nios.api:
Expand Down Expand Up @@ -1193,6 +1205,10 @@ plugin_routing:
redirect: dellemc.openmanage.dellemc_idrac
remote_management.dellemc.ome:
redirect: dellemc.openmanage.ome
saslprep:
deprecation:
removal_version: 13.0.0
warning_text: This code is not used by community.general. If you want to use it in another collection, please copy it over.
inventory:
docker_machine:
redirect: community.docker.docker_machine
Expand Down
2 changes: 2 additions & 0 deletions plugins/module_utils/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later

# This module utils is deprecated and will be removed in community.general 13.0.0

from __future__ import annotations


Expand Down
2 changes: 2 additions & 0 deletions plugins/module_utils/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
# SPDX-License-Identifier: BSD-2-Clause

# This module utils is deprecated and will be removed in community.general 13.0.0

from __future__ import annotations

import re
Expand Down
2 changes: 2 additions & 0 deletions plugins/module_utils/known_hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
# SPDX-License-Identifier: BSD-2-Clause

# This module utils is deprecated and will be removed in community.general 13.0.0

from __future__ import annotations

import os
Expand Down
2 changes: 2 additions & 0 deletions plugins/module_utils/saslprep.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
# SPDX-License-Identifier: BSD-2-Clause

# This module utils is deprecated and will be removed in community.general 13.0.0

from __future__ import annotations

from stringprep import (
Expand Down
Loading