From 31bd2b567fbdec53611b5279895a098a0c677936 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Mon, 18 Jan 2021 09:27:46 +0300 Subject: [PATCH] Release 1.2.0: add changelog --- changelogs/CHANGELOG.rst | 21 +++++++++++++++++++ changelogs/changelog.yaml | 19 +++++++++++++++++ .../fragments/76-mysql-user-query-refact.yaml | 2 -- .../79-mysql-user-tests-and-fixes.yml | 2 -- .../87-mysql_user_show_routine_support.yml | 2 -- galaxy.yml | 2 +- 6 files changed, 41 insertions(+), 7 deletions(-) delete mode 100644 changelogs/fragments/76-mysql-user-query-refact.yaml delete mode 100644 changelogs/fragments/79-mysql-user-tests-and-fixes.yml delete mode 100644 changelogs/fragments/87-mysql_user_show_routine_support.yml diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index ff36afd6..aad2202a 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,27 @@ Community MySQL Collection Release Notes .. contents:: Topics +v1.2.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`` 1.1.2. + +Minor Changes +------------- + +- mysql_user - refactor to reduce cursor.execute() calls in preparation for adding query logging (https://github.com/ansible-collections/community.mysql/pull/76). + +Bugfixes +-------- + +- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86). +- mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79). + v1.1.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c42726ba..426fef59 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -190,3 +190,22 @@ releases: - 72-mysql_db_fix_false_warning.yml - 72-mysql_user_change_detection.yml release_date: '2020-12-18' + 1.2.0: + changes: + bugfixes: + - mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86). + - mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79). + minor_changes: + - mysql_user - refactor to reduce cursor.execute() calls in preparation for + adding query logging (https://github.com/ansible-collections/community.mysql/pull/76). + 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`` 1.1.2.' + fragments: + - 1.2.0.yml + - 76-mysql-user-query-refact.yaml + - 79-mysql-user-tests-and-fixes.yml + - 87-mysql_user_show_routine_support.yml + release_date: '2021-01-18' diff --git a/changelogs/fragments/76-mysql-user-query-refact.yaml b/changelogs/fragments/76-mysql-user-query-refact.yaml deleted file mode 100644 index e5298f6f..00000000 --- a/changelogs/fragments/76-mysql-user-query-refact.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mysql_user - refactor to reduce cursor.execute() calls in preparation for adding query logging (https://github.com/ansible-collections/community.mysql/pull/76). diff --git a/changelogs/fragments/79-mysql-user-tests-and-fixes.yml b/changelogs/fragments/79-mysql-user-tests-and-fixes.yml deleted file mode 100644 index c9871f89..00000000 --- a/changelogs/fragments/79-mysql-user-tests-and-fixes.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79). diff --git a/changelogs/fragments/87-mysql_user_show_routine_support.yml b/changelogs/fragments/87-mysql_user_show_routine_support.yml deleted file mode 100644 index 84568ee1..00000000 --- a/changelogs/fragments/87-mysql_user_show_routine_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86). diff --git a/galaxy.yml b/galaxy.yml index 15ea7bec..5cbb613d 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 1.1.2 +version: 1.2.0 readme: README.md authors: - MySQL Working Group (https://github.com/ansible-collections/community.mysql/wiki/MySQL-Working-Group)