Update README with supported versions (#250)

This commit is contained in:
Jorge Rodriguez (A.K.A. Tiriel) 2021-12-15 09:55:23 +01:00 committed by GitHub
parent 1b061131dd
commit ce3192b34a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 2 deletions

View file

@ -59,19 +59,34 @@ Every voice is important and every idea is valuable. If you have something on yo
- [mysql_user](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_user_module.html)
- [mysql_variables](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_variables_module.html)
## Tested with Ansible
## Tested with
### Ansible
- 2.9
- 2.10
- 2.11
- 2.12
- devel
### Databases
- mysql 5.7.31
- mysql 8.0.22
- mariadb 10.2.37
- mariadb 10.5.9
### Database connectors
- pymysql 0.7.10
- pymysql 0.9.3
- mysqlclient 2.0.1
## External requirements
The MySQL modules rely on a MySQL connector. The list of supported drivers is below:
- [PyMySQL](https://github.com/PyMySQL/PyMySQL)
- [MySQLdb](https://github.com/PyMySQL/mysqlclient-python)
- [mysqlclient](https://github.com/PyMySQL/mysqlclient)
- Support for other Python MySQL connectors may be added in a future release.
## Using this collection

View file

@ -0,0 +1,2 @@
minor_changes:
- Added explicit description of the supported versions of databases and connectors. Changes to the collection are **NOT** tested against database versions older than `mysql 5.7.31` and `mariadb 10.2.37` or connector versions older than `pymysql 0.7.10` and `mysqlclient 2.0.1`. (https://github.com/ansible-collections/community.mysql/discussions/141)