From a6bacefc4127d3dcd2962c15a3574a4c7d0eb4b9 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 23 Sep 2021 14:39:01 +0300 Subject: [PATCH] Release 2.3.0 commit (#220) --- changelogs/CHANGELOG.rst | 20 +++++++++++++++++++ changelogs/changelog.yaml | 17 ++++++++++++++++ ..._info_fix_failure_when_no_tables_in_db.yml | 2 -- ...-get-valid-privs-from-show-privilegees.yml | 2 -- galaxy.yml | 2 +- 5 files changed, 38 insertions(+), 5 deletions(-) delete mode 100644 changelogs/fragments/205-mysql_info_fix_failure_when_no_tables_in_db.yml delete mode 100644 changelogs/fragments/217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index aacd828..71ce87d 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,26 @@ Community MySQL Collection Release Notes .. contents:: Topics +v2.3.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.mysql`` collection. +This changelog contains all changes to the modules in this collection that +have been added after the release of ``community.mysql`` 2.2.0. + +Minor Changes +------------- + +- mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217). + +Bugfixes +-------- + +- mysql_info - fix TypeError failure when there are databases that do not contain tables (https://github.com/ansible-collections/community.mysql/issues/204). + v2.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 63d8d87..efa0c2d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -335,3 +335,20 @@ releases: name: mysql_role namespace: '' release_date: '2021-08-11' + 2.3.0: + changes: + bugfixes: + - mysql_info - fix TypeError failure when there are databases that do not contain + tables (https://github.com/ansible-collections/community.mysql/issues/204). + minor_changes: + - mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217). + release_summary: 'This is the minor release of the ``community.mysql`` collection. + + This changelog contains all changes to the modules in this collection that + + have been added after the release of ``community.mysql`` 2.2.0.' + fragments: + - 2.3.0.yml + - 205-mysql_info_fix_failure_when_no_tables_in_db.yml + - 217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml + release_date: '2021-09-23' diff --git a/changelogs/fragments/205-mysql_info_fix_failure_when_no_tables_in_db.yml b/changelogs/fragments/205-mysql_info_fix_failure_when_no_tables_in_db.yml deleted file mode 100644 index fd9260e..0000000 --- a/changelogs/fragments/205-mysql_info_fix_failure_when_no_tables_in_db.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_info - fix TypeError failure when there are databases that do not contain tables (https://github.com/ansible-collections/community.mysql/issues/204). diff --git a/changelogs/fragments/217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml b/changelogs/fragments/217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml deleted file mode 100644 index 60cd451..0000000 --- a/changelogs/fragments/217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217). diff --git a/galaxy.yml b/galaxy.yml index bc6ce0e..cfe62f1 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 2.2.0 +version: 2.3.0 readme: README.md authors: - Ansible community