From a81b6fc0816a52d181505509a1edc8412f0acf94 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 25 May 2023 13:30:17 +0200 Subject: [PATCH] Release 3.7.2 commit (#556) --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/changelog.yaml | 14 ++++++++++++++ ...nnection_arguemnts_for_old_mysqldb_driver.yaml | 2 -- galaxy.yml | 2 +- 4 files changed, 30 insertions(+), 3 deletions(-) delete mode 100644 changelogs/fragments/553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d381f5c1..31ee41a8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,21 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.7.2 +====== + +Release Summary +--------------- + +This is a patch release of the community.mysql collection. +This changelog contains all changes to the modules and plugins in this collection +that have been made after the previous release. + +Bugfixes +-------- + +- mysql module utils - use the connection arguments ``db`` instead of ``database`` and ``passwd`` instead of ``password`` when running with MySQLdb < 2.0.0 (https://github.com/ansible-collections/community.mysql/pull/553). + v3.7.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 196a6bd0..e3431f34 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -332,3 +332,17 @@ releases: - 3.7.1.yml - 551-fix_connection_arguments_driver_compatability.yaml release_date: '2023-05-22' + 3.7.2: + changes: + bugfixes: + - mysql module utils - use the connection arguments ``db`` instead of ``database`` + and ``passwd`` instead of ``password`` when running with MySQLdb < 2.0.0 (https://github.com/ansible-collections/community.mysql/pull/553). + release_summary: 'This is a patch release of the community.mysql collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been made after the previous release.' + fragments: + - 3.7.2.yml + - 553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml + release_date: '2023-05-25' diff --git a/changelogs/fragments/553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml b/changelogs/fragments/553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml deleted file mode 100644 index d0f53163..00000000 --- a/changelogs/fragments/553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - mysql module utils - use the connection arguments ``db`` instead of ``database`` and ``passwd`` instead of ``password`` when running with MySQLdb < 2.0.0 (https://github.com/ansible-collections/community.mysql/pull/553). diff --git a/galaxy.yml b/galaxy.yml index f7256159..39a271e9 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: community name: mysql -version: 3.7.1 +version: 3.7.2 readme: README.md authors: - Ansible community