diff --git a/plugins/modules/mysql_info.py b/plugins/modules/mysql_info.py index 11b1a80..bc7c076 100644 --- a/plugins/modules/mysql_info.py +++ b/plugins/modules/mysql_info.py @@ -214,14 +214,14 @@ connector_name: sample: - "pymysql" - "MySQLdb" - version_added: '3.6.0' + version_added: '1.5.0' connector_version: description: Version of the python connector used by the module. When the connector is not identified, returns C(Unknown). returned: always type: str sample: - "1.0.2" - version_added: '3.6.0' + version_added: '1.5.0' ''' from decimal import Decimal diff --git a/tests/integration/targets/test_mysql_info/tasks/connector_info.yml b/tests/integration/targets/test_mysql_info/tasks/connector_info.yml index ba76f59..349ccef 100644 --- a/tests/integration/targets/test_mysql_info/tasks/connector_info.yml +++ b/tests/integration/targets/test_mysql_info/tasks/connector_info.yml @@ -1,5 +1,5 @@ --- -# Added in 3.6.0 in +# Added in 1.5.0, 2.4.0 and 3.6.0 in # https://github.com/ansible-collections/community.mysql/pull/497 # TODO: Refactor in PR490.