From ca621216ef7a13f729e47e4f8fd09ad5a79f66da Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 29 Sep 2020 09:32:31 +0300 Subject: [PATCH] Generage CHANGELOG.rst --- changelogs/CHANGELOG.rst | 18 ++++++++++++++++++ changelogs/changelog.yaml | 19 +++++++++++++++++++ changelogs/fragments/1.0.1.yml | 3 --- .../fragments/26-remove_tls_requirements.yml | 4 ---- .../34-mysql_db_fix_false_warning.yml | 2 -- 5 files changed, 37 insertions(+), 9 deletions(-) delete mode 100644 changelogs/fragments/1.0.1.yml delete mode 100644 changelogs/fragments/26-remove_tls_requirements.yml delete mode 100644 changelogs/fragments/34-mysql_db_fix_false_warning.yml diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index b6e30ed..a8cb6bb 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,24 @@ Community MySQL Collection Release Notes .. contents:: Topics +v1.0.1 +====== + +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.0.0. + + +Bugfixes +-------- + +- mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33). +- mysql_user - added tests to verify that TLS requirements are removed with an empty ``tls_requires`` option (https://github.com/ansible-collections/community.mysql/issues/20). +- mysql_user - correct procedure to check existing TLS requirements (https://github.com/ansible-collections/community.mysql/pull/26). +- mysql_user - minor syntax fixes (https://github.com/ansible-collections/community.mysql/pull/26). + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 202622d..fa5ba50 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -100,3 +100,22 @@ releases: - mysql_info_add_parameter.yml - mysql_user_idempotency.yml release_date: '2020-08-17' + 1.0.1: + changes: + bugfixes: + - mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33). + - mysql_user - added tests to verify that TLS requirements are removed with + an empty ``tls_requires`` option (https://github.com/ansible-collections/community.mysql/issues/20). + - mysql_user - correct procedure to check existing TLS requirements (https://github.com/ansible-collections/community.mysql/pull/26). + - mysql_user - minor syntax fixes (https://github.com/ansible-collections/community.mysql/pull/26). + 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.0.0. + + ' + fragments: + - 1.0.1.yml + - 26-remove_tls_requirements.yml + - 34-mysql_db_fix_false_warning.yml + release_date: '2020-09-29' diff --git a/changelogs/fragments/1.0.1.yml b/changelogs/fragments/1.0.1.yml deleted file mode 100644 index 3c11e86..0000000 --- a/changelogs/fragments/1.0.1.yml +++ /dev/null @@ -1,3 +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.0.0. diff --git a/changelogs/fragments/26-remove_tls_requirements.yml b/changelogs/fragments/26-remove_tls_requirements.yml deleted file mode 100644 index e32eaa7..0000000 --- a/changelogs/fragments/26-remove_tls_requirements.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- mysql_user - added tests to verify that TLS requirements are removed with an empty ``tls_requires`` option (https://github.com/ansible-collections/community.mysql/issues/20). -- mysql_user - correct procedure to check existing TLS requirements (https://github.com/ansible-collections/community.mysql/pull/26). -- mysql_user - minor syntax fixes (https://github.com/ansible-collections/community.mysql/pull/26). diff --git a/changelogs/fragments/34-mysql_db_fix_false_warning.yml b/changelogs/fragments/34-mysql_db_fix_false_warning.yml deleted file mode 100644 index b4aef56..0000000 --- a/changelogs/fragments/34-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).