diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 114b359..5e53c1b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,27 @@ Community MySQL and MariaDB Collection Release Notes This changelog describes changes after version 2.0.0. +v3.15.0 +======= + +Release Summary +--------------- + +This is a minor release of the ``community.mysql`` collection. +This changelog contains all changes to the modules and plugins in this collection +that have been made after the previous release.' + +Minor Changes +------------- + +- mysql_db - Add support for ``sql_log_bin`` option (https://github.com/ansible-collections/community.mysql/issues/700). + +Bugfixes +-------- + +- mysql_query - fix a Python 2 compatibility issue caused by the addition of ``execution_time_ms`` in version 3.12 (see https://github.com/ansible-collections/community.mysql/issues/716). +- mysql_user - fix a crash (unable to parse the MySQL grant string: SET DEFAULT ROLE `somerole` FOR `someuser`@`%`) when using the ``mysql_user`` module with a DEFAULT role present in MariaDB. The DEFAULT role is now ignored by the parser (https://github.com/ansible-collections/community.mysql/issues/710). + v3.14.0 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 79ee9cf..4b09970 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -294,6 +294,28 @@ releases: - grant_to_public.yml - release_3_14_0.yml release_date: '2025-05-23' + 3.15.0: + changes: + bugfixes: + - mysql_query - fix a Python 2 compatibility issue caused by the addition of + ``execution_time_ms`` in version 3.12 (see https://github.com/ansible-collections/community.mysql/issues/716). + - 'mysql_user - fix a crash (unable to parse the MySQL grant string: SET DEFAULT + ROLE `somerole` FOR `someuser`@`%`) when using the ``mysql_user`` module with + a DEFAULT role present in MariaDB. The DEFAULT role is now ignored by the + parser (https://github.com/ansible-collections/community.mysql/issues/710).' + minor_changes: + - mysql_db - Add support for ``sql_log_bin`` option (https://github.com/ansible-collections/community.mysql/issues/700). + release_summary: 'This is a minor release of the ``community.mysql`` collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been made after the previous release.''' + fragments: + - 3.15.0.yml + - 723-myqsl_db_supports_sql_log_bin.yaml + - fix_python2_compatibility.yml + - fix_user_module_for_default_roles.yml + release_date: '2025-07-24' 3.2.0: changes: bugfixes: diff --git a/changelogs/fragments/723-myqsl_db_supports_sql_log_bin.yaml b/changelogs/fragments/723-myqsl_db_supports_sql_log_bin.yaml deleted file mode 100644 index 6033811..0000000 --- a/changelogs/fragments/723-myqsl_db_supports_sql_log_bin.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - mysql_db - Add support for ``sql_log_bin`` option (https://github.com/ansible-collections/community.mysql/issues/700). diff --git a/changelogs/fragments/fix_python2_compatibility.yml b/changelogs/fragments/fix_python2_compatibility.yml deleted file mode 100644 index 4341ec8..0000000 --- a/changelogs/fragments/fix_python2_compatibility.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "mysql_query - fix a Python 2 compatibility issue caused by the addition of ``execution_time_ms`` in version 3.12 (see https://github.com/ansible-collections/community.mysql/issues/716)." diff --git a/changelogs/fragments/fix_user_module_for_default_roles.yml b/changelogs/fragments/fix_user_module_for_default_roles.yml deleted file mode 100644 index 920438b..0000000 --- a/changelogs/fragments/fix_user_module_for_default_roles.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "mysql_user - fix a crash (unable to parse the MySQL grant string: SET DEFAULT ROLE `somerole` FOR `someuser`@`%`) when using the ``mysql_user`` module with a DEFAULT role present in MariaDB. The DEFAULT role is now ignored by the parser (https://github.com/ansible-collections/community.mysql/issues/710)." diff --git a/galaxy.yml b/galaxy.yml index e69e4e8..43d9aea 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: community name: mysql -version: 3.14.1 +version: 3.15.0 readme: README.md authors: - Ansible community