diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index 928f1ef5..ff36afd6 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,29 @@ Community MySQL Collection Release Notes .. contents:: Topics +v1.1.2 +====== + +Release Summary +--------------- + +This is the patch 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.1. + +Minor Changes +------------- + +- mysql_query - simple refactoring of query type check (https://github.com/ansible-collections/community.mysql/pull/58). +- mysql_user - simple refactoring of priv type check (https://github.com/ansible-collections/community.mysql/pull/58). + +Bugfixes +-------- + +- mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33). +- mysql_replication - fix crashes of mariadb >= 10.5.1 and mysql >= 8.0.22 caused by using deprecated terminology (https://github.com/ansible-collections/community.mysql/issues/70). +- mysql_user - fixed change detection when using append_privs (https://github.com/ansible-collections/community.mysql/pull/72). + v1.1.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 55c280e6..c42726ba 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -168,3 +168,25 @@ releases: - 1.1.1.yml - 53-mysql_query_fix_single_query_with_commas.yml release_date: '2020-11-03' + 1.1.2: + changes: + bugfixes: + - mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33). + - mysql_replication - fix crashes of mariadb >= 10.5.1 and mysql >= 8.0.22 caused + by using deprecated terminology (https://github.com/ansible-collections/community.mysql/issues/70). + - mysql_user - fixed change detection when using append_privs (https://github.com/ansible-collections/community.mysql/pull/72). + minor_changes: + - mysql_query - simple refactoring of query type check (https://github.com/ansible-collections/community.mysql/pull/58). + - mysql_user - simple refactoring of priv type check (https://github.com/ansible-collections/community.mysql/pull/58). + release_summary: 'This is the patch 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.1.' + fragments: + - 1.1.2.yml + - 58-mysql_query_refactoring.yml + - 71-mysql_replication_add_replica_keyword_support.yml + - 72-mysql_db_fix_false_warning.yml + - 72-mysql_user_change_detection.yml + release_date: '2020-12-18' diff --git a/changelogs/fragments/1.1.2.yml b/changelogs/fragments/1.1.2.yml deleted file mode 100644 index f28963c7..00000000 --- a/changelogs/fragments/1.1.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -release_summary: |- - This is the patch 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.1. diff --git a/changelogs/fragments/58-mysql_query_refactoring.yml b/changelogs/fragments/58-mysql_query_refactoring.yml deleted file mode 100644 index 1060b58a..00000000 --- a/changelogs/fragments/58-mysql_query_refactoring.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- mysql_query - simple refactoring of query type check (https://github.com/ansible-collections/community.mysql/pull/58). -- mysql_user - simple refactoring of priv type check (https://github.com/ansible-collections/community.mysql/pull/58). diff --git a/changelogs/fragments/71-mysql_replication_add_replica_keyword_support.yml b/changelogs/fragments/71-mysql_replication_add_replica_keyword_support.yml deleted file mode 100644 index 424077d4..00000000 --- a/changelogs/fragments/71-mysql_replication_add_replica_keyword_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_replication - fix crashes of mariadb >= 10.5.1 and mysql >= 8.0.22 caused by using deprecated terminology (https://github.com/ansible-collections/community.mysql/issues/70). diff --git a/changelogs/fragments/72-mysql_db_fix_false_warning.yml b/changelogs/fragments/72-mysql_db_fix_false_warning.yml deleted file mode 100644 index b4aef56c..00000000 --- a/changelogs/fragments/72-mysql_db_fix_false_warning.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33). diff --git a/changelogs/fragments/72-mysql_user_change_detection.yml b/changelogs/fragments/72-mysql_user_change_detection.yml deleted file mode 100644 index 21c61413..00000000 --- a/changelogs/fragments/72-mysql_user_change_detection.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fixed change detection when using append_privs (https://github.com/ansible-collections/community.mysql/pull/72).