diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index 6db37c8..b2013fb 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,27 @@ Community MySQL Collection Release Notes .. contents:: Topics +v1.1.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.0.2. + + +Minor Changes +------------- + +- mysql modules - add the ``check_hostname`` option (https://github.com/ansible-collections/community.mysql/issues/28). +- mysql modules - patch the ``Connection`` class to add a destructor that ensures connections to the server are explicitly closed (https://github.com/ansible-collections/community.mysql/pull/44). + +Bugfixes +-------- + +- mysql modules - fix crash when ``!includedir`` option is in config file (https://github.com/ansible-collections/community.mysql/issues/46). + v1.0.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 3f1efd6..fee170d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -133,3 +133,23 @@ releases: - 1.0.2.yml - 40-mysql_user_fix_error_when_host_all_used.yml release_date: '2020-10-01' + 1.1.0: + changes: + bugfixes: + - mysql modules - fix crash when ``!includedir`` option is in config file (https://github.com/ansible-collections/community.mysql/issues/46). + minor_changes: + - mysql modules - add the ``check_hostname`` option (https://github.com/ansible-collections/community.mysql/issues/28). + - mysql modules - patch the ``Connection`` class to add a destructor that ensures + connections to the server are explicitly closed (https://github.com/ansible-collections/community.mysql/pull/44). + 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.0.2. + + ' + fragments: + - 1.1.0.yml + - 35-disable-hostname-check.yml + - 44-close-connection.yml + - 47-mysql_modules_fix_failings_when_include_dir_in_config_file.yml + release_date: '2020-10-13' diff --git a/changelogs/fragments/35-disable-hostname-check.yml b/changelogs/fragments/35-disable-hostname-check.yml deleted file mode 100644 index 8992621..0000000 --- a/changelogs/fragments/35-disable-hostname-check.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mysql modules - add the ``check_hostname`` option (https://github.com/ansible-collections/community.mysql/issues/28). diff --git a/changelogs/fragments/44-close-connection.yml b/changelogs/fragments/44-close-connection.yml deleted file mode 100644 index 03c290c..0000000 --- a/changelogs/fragments/44-close-connection.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mysql modules - patch the ``Connection`` class to add a destructor that ensures connections to the server are explicitly closed (https://github.com/ansible-collections/community.mysql/pull/44). diff --git a/changelogs/fragments/47-mysql_modules_fix_failings_when_include_dir_in_config_file.yml b/changelogs/fragments/47-mysql_modules_fix_failings_when_include_dir_in_config_file.yml deleted file mode 100644 index 4d7009f..0000000 --- a/changelogs/fragments/47-mysql_modules_fix_failings_when_include_dir_in_config_file.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "mysql modules - fix crash when ``!includedir`` option is in config file (https://github.com/ansible-collections/community.mysql/issues/46)." diff --git a/galaxy.yml b/galaxy.yml index 3e90233..a3e606a 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 1.0.3 +version: 1.1.0 readme: README.md authors: - MySQL Working Group (https://github.com/ansible-collections/community.mysql/wiki/MySQL-Working-Group)