From 9acbd55e44962546238761bb848d12b2c28f8de0 Mon Sep 17 00:00:00 2001 From: Markus Bergholz Date: Wed, 8 Feb 2023 10:34:35 +0100 Subject: [PATCH] prepare community.mysql 3.6.0 (#507) --- CHANGELOG.rst | 29 +++++++++++++- changelogs/changelog.yaml | 39 +++++++++++++++++++ .../fragments/0_mysql_user_session_vars.yml | 2 - ...vice_name_to_plugin_pam_auth_pam_usage.yml | 3 -- ...re_informative_invalid_priv_exceptiion.yml | 5 --- .../fragments/479_enable_auto_commit.yml | 3 -- .../479_enable_auto_commit_part2.yml | 3 -- .../fragments/491_fix_download_url.yaml | 3 -- ...nfo_returns_connector_name_and_version.yml | 3 -- .../fragments/503-fix-revoke-grant-only.yml | 2 - ..._variables_allow_uppercase_identifiers.yml | 6 --- galaxy.yml | 2 +- 12 files changed, 68 insertions(+), 32 deletions(-) delete mode 100644 changelogs/fragments/0_mysql_user_session_vars.yml delete mode 100644 changelogs/fragments/445_add_service_name_to_plugin_pam_auth_pam_usage.yml delete mode 100644 changelogs/fragments/465-display_more_informative_invalid_priv_exceptiion.yml delete mode 100644 changelogs/fragments/479_enable_auto_commit.yml delete mode 100644 changelogs/fragments/479_enable_auto_commit_part2.yml delete mode 100644 changelogs/fragments/491_fix_download_url.yaml delete mode 100644 changelogs/fragments/497_mysql_info_returns_connector_name_and_version.yml delete mode 100644 changelogs/fragments/503-fix-revoke-grant-only.yml delete mode 100644 changelogs/fragments/mysql_variables_allow_uppercase_identifiers.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb5e2cd..720ea41 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,33 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.6.0 +====== + +Release Summary +--------------- + +This is the 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_info - add ``connector_name`` and ``connector_version`` to returned values (https://github.com/ansible-collections/community.mysql/pull/497). +- mysql_role - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). +- mysql_user - add plugin_auth_string as optional parameter to use a specific pam service if pam/auth_pam plugin is used (https://github.com/ansible-collections/community.mysql/pull/445). +- mysql_user - add the ``session_vars`` argument to set session variables at the beginning of module execution (https://github.com/ansible-collections/community.mysql/issues/478). +- mysql_user - display a more informative invalid privilege exception. Changes the exception handling of the granting permission logic to show the query executed , params and the exception message granting privileges fails` (https://github.com/ansible-collections/community.mysql/issues/465). +- mysql_user - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). +- setup_mysql - update MySQL tarball URL (https://github.com/ansible-collections/community.mysql/pull/491). + +Bugfixes +-------- + +- mysql_user - when revoke privs consists only of ``GRANT``, a 2nd revoke query is executed with empty privs to revoke that ended in an SQL exception (https://github.com/ansible-collections/community.mysql/pull/503). +- mysql_variables - add uppercase character pattern to regex to allow GLOBAL variables containing uppercase characters. This recognizes variable names used in Galera, for example, ``wsrep_OSU_method``, which breaks the normal pattern of all lowercase characters (https://github.com/ansible-collections/community.mysql/pull/501). + v3.5.1 ====== @@ -216,7 +243,7 @@ that have been added after the release of ``community.mysql`` 2.3.2. Breaking Changes / Porting Guide -------------------------------- -- mysql_replication - remove ``Is_Slave`` and ``Is_Master`` return values (were replaced with ``Is_Primary`` and ``Is_Replica`` (https://github.com/ansible-collections /community.mysql/issues/145). +- mysql_replication - remove ``Is_Slave`` and ``Is_Master`` return values (were replaced with ``Is_Primary`` and ``Is_Replica`` (https://github.com/ansible-collections/community.mysql/issues/145). - mysql_replication - remove the mode options values containing ``master``/``slave`` and the master_use_gtid option ``slave_pos`` (were replaced with corresponding ``primary``/``replica`` values) (https://github.com/ansible-collections/community.mysql/issues/145). - mysql_user - remove support for the `REQUIRESSL` special privilege as it has ben superseded by the `tls_requires` option (https://github.com/ansible-collections/community.mysql/discussions/121). - mysql_user - validate privileges using database engine directly (https://github.com/ansible-collections/community.mysql/issues/234 https://github.com/ansible-collections/community.mysql/pull/243). Do not validate privileges in this module anymore. diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ce080f8..e272941 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -261,3 +261,42 @@ releases: - 3.5.1.yml - 438-fix-privilege-changing-everytime.yml release_date: '2022-09-09' + 3.6.0: + changes: + bugfixes: + - mysql_user - when revoke privs consists only of ``GRANT``, a 2nd revoke query + is executed with empty privs to revoke that ended in an SQL exception (https://github.com/ansible-collections/community.mysql/pull/503). + - mysql_variables - add uppercase character pattern to regex to allow GLOBAL + variables containing uppercase characters. This recognizes variable names + used in Galera, for example, ``wsrep_OSU_method``, which breaks the normal + pattern of all lowercase characters (https://github.com/ansible-collections/community.mysql/pull/501). + minor_changes: + - mysql_info - add ``connector_name`` and ``connector_version`` to returned + values (https://github.com/ansible-collections/community.mysql/pull/497). + - mysql_role - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). + - mysql_user - add plugin_auth_string as optional parameter to use a specific + pam service if pam/auth_pam plugin is used (https://github.com/ansible-collections/community.mysql/pull/445). + - mysql_user - add the ``session_vars`` argument to set session variables at + the beginning of module execution (https://github.com/ansible-collections/community.mysql/issues/478). + - mysql_user - display a more informative invalid privilege exception. Changes + the exception handling of the granting permission logic to show the query + executed , params and the exception message granting privileges fails` (https://github.com/ansible-collections/community.mysql/issues/465). + - mysql_user - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). + - setup_mysql - update MySQL tarball URL (https://github.com/ansible-collections/community.mysql/pull/491). + release_summary: 'This is the 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: + - 0_mysql_user_session_vars.yml + - 3.6.0.yml + - 445_add_service_name_to_plugin_pam_auth_pam_usage.yml + - 465-display_more_informative_invalid_priv_exceptiion.yml + - 479_enable_auto_commit.yml + - 479_enable_auto_commit_part2.yml + - 491_fix_download_url.yaml + - 497_mysql_info_returns_connector_name_and_version.yml + - 503-fix-revoke-grant-only.yml + - mysql_variables_allow_uppercase_identifiers.yml + release_date: '2023-02-08' diff --git a/changelogs/fragments/0_mysql_user_session_vars.yml b/changelogs/fragments/0_mysql_user_session_vars.yml deleted file mode 100644 index 55bcd6c..0000000 --- a/changelogs/fragments/0_mysql_user_session_vars.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_user - add the ``session_vars`` argument to set session variables at the beginning of module execution (https://github.com/ansible-collections/community.mysql/issues/478). diff --git a/changelogs/fragments/445_add_service_name_to_plugin_pam_auth_pam_usage.yml b/changelogs/fragments/445_add_service_name_to_plugin_pam_auth_pam_usage.yml deleted file mode 100644 index 2b9a523..0000000 --- a/changelogs/fragments/445_add_service_name_to_plugin_pam_auth_pam_usage.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - mysql_user - add plugin_auth_string as optional parameter to use a specific pam service if pam/auth_pam plugin is used (https://github.com/ansible-collections/community.mysql/pull/445). diff --git a/changelogs/fragments/465-display_more_informative_invalid_priv_exceptiion.yml b/changelogs/fragments/465-display_more_informative_invalid_priv_exceptiion.yml deleted file mode 100644 index fc47d37..0000000 --- a/changelogs/fragments/465-display_more_informative_invalid_priv_exceptiion.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -minor_changes: - - mysql_user - display a more informative invalid privilege exception. - Changes the exception handling of the granting permission logic to show the query executed , params - and the exception message granting privileges fails` (https://github.com/ansible-collections/community.mysql/issues/465). \ No newline at end of file diff --git a/changelogs/fragments/479_enable_auto_commit.yml b/changelogs/fragments/479_enable_auto_commit.yml deleted file mode 100644 index 5701f30..0000000 --- a/changelogs/fragments/479_enable_auto_commit.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - mysql_user - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). diff --git a/changelogs/fragments/479_enable_auto_commit_part2.yml b/changelogs/fragments/479_enable_auto_commit_part2.yml deleted file mode 100644 index a447acf..0000000 --- a/changelogs/fragments/479_enable_auto_commit_part2.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- - minor_changes: - - mysql_role - enable auto_commit to avoid MySQL metadata table lock (https://github.com/ansible-collections/community.mysql/issues/479). diff --git a/changelogs/fragments/491_fix_download_url.yaml b/changelogs/fragments/491_fix_download_url.yaml deleted file mode 100644 index 27628bb..0000000 --- a/changelogs/fragments/491_fix_download_url.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - setup_mysql - update MySQL tarball URL (https://github.com/ansible-collections/community.mysql/pull/491). diff --git a/changelogs/fragments/497_mysql_info_returns_connector_name_and_version.yml b/changelogs/fragments/497_mysql_info_returns_connector_name_and_version.yml deleted file mode 100644 index 11fc4f5..0000000 --- a/changelogs/fragments/497_mysql_info_returns_connector_name_and_version.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - mysql_info - add ``connector_name`` and ``connector_version`` to returned values (https://github.com/ansible-collections/community.mysql/pull/497). diff --git a/changelogs/fragments/503-fix-revoke-grant-only.yml b/changelogs/fragments/503-fix-revoke-grant-only.yml deleted file mode 100644 index 5de4d4b..0000000 --- a/changelogs/fragments/503-fix-revoke-grant-only.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - mysql_user - when revoke privs consists only of ``GRANT``, a 2nd revoke query is executed with empty privs to revoke that ended in an SQL exception (https://github.com/ansible-collections/community.mysql/pull/503). \ No newline at end of file diff --git a/changelogs/fragments/mysql_variables_allow_uppercase_identifiers.yml b/changelogs/fragments/mysql_variables_allow_uppercase_identifiers.yml deleted file mode 100644 index 0d35467..0000000 --- a/changelogs/fragments/mysql_variables_allow_uppercase_identifiers.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -bugfixes: - - mysql_variables - add uppercase character pattern to regex to allow GLOBAL - variables containing uppercase characters. - This recognizes variable names used in Galera, for example, ``wsrep_OSU_method``, - which breaks the normal pattern of all lowercase characters (https://github.com/ansible-collections/community.mysql/pull/501). diff --git a/galaxy.yml b/galaxy.yml index 733762d..bb7e2be 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.5.1 +version: 3.6.0 readme: README.md authors: - Ansible community