From 9e90a23af8007876d34cc4a93453ec2c4f0b77f4 Mon Sep 17 00:00:00 2001 From: Sebastian Pfahl Date: Tue, 15 Jul 2025 23:11:08 +0200 Subject: [PATCH] fix version strings --- plugins/modules/mysql_replication.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/modules/mysql_replication.py b/plugins/modules/mysql_replication.py index ec1d1f0..e138051 100644 --- a/plugins/modules/mysql_replication.py +++ b/plugins/modules/mysql_replication.py @@ -35,8 +35,8 @@ options: C(resetprimary) (RESET MASTER) - supported since community.mysql 0.1.0, C(resetreplica) (RESET REPLICA), C(resetreplicaall) (RESET REPLICA ALL), - C(startgroupreplication) (START GROUP_REPLICATION) - supported since community.mysql 3.10.0, - C(stopgroupreplication) (STOP GROUP_REPLICATION) - supported since community.mysql 3.10.0. + C(startgroupreplication) (START GROUP_REPLICATION) - supported since community.mysql 3.15.0, + C(stopgroupreplication) (STOP GROUP_REPLICATION) - supported since community.mysql 3.15.0. type: str choices: - changeprimary @@ -200,12 +200,12 @@ options: description: - User for group replication. type: str - version_added: '3.10.0' + version_added: '3.15.0' group_replication_password: description: - Password for group replication user. type: str - version_added: '3.10.0' + version_added: '3.15.0' notes: - Compatible with MariaDB or MySQL. - If an empty value for the parameter of string type is needed, use an empty string.