From 482a0d8ee96679613fef86b10598b4f1a78269a4 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 2 Jun 2022 09:23:25 +0300 Subject: [PATCH] Release 3.3.0 commit (#389) --- CHANGELOG.rst | 27 +++++++++- changelogs/changelog.yaml | 54 +++++++++++++++++++ ...22-mysql_query_fix_false_change_report.yml | 2 - .../334-mysql_user_fix_logic_on_oncreate.yml | 2 - ...d-on_new_username-and-password_changed.yml | 10 ---- .../367-mysql_role-fix-deatch-members.yml | 2 - .../368-mysql_role-fix-member-detection.yml | 6 --- .../369_mysql_role-add-members_must_exist.yml | 4 -- galaxy.yml | 2 +- 9 files changed, 81 insertions(+), 28 deletions(-) delete mode 100644 changelogs/fragments/322-mysql_query_fix_false_change_report.yml delete mode 100644 changelogs/fragments/334-mysql_user_fix_logic_on_oncreate.yml delete mode 100644 changelogs/fragments/365-mysql_user-add-on_new_username-and-password_changed.yml delete mode 100644 changelogs/fragments/367-mysql_role-fix-deatch-members.yml delete mode 100644 changelogs/fragments/368-mysql_role-fix-member-detection.yml delete mode 100644 changelogs/fragments/369_mysql_role-add-members_must_exist.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9897fa2..3179e87 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,31 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.3.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`` 3.2.1. + +Minor Changes +------------- + +- mysql_role - add the argument ``members_must_exist`` (boolean, default true). The assertion that the users supplied in the ``members`` argument exist is only executed when the new argument ``members_must_exist`` is ``true``, to allow opt-out (https://github.com/ansible-collections/community.mysql/pull/369). +- mysql_user - Add the option ``on_new_username`` to argument ``update_password`` to reuse the password (plugin and authentication_string) when creating a new user if some user with the same name already exists. If the existing user with the same name have varying passwords, the password from the arguments is used like with ``update_password: always`` (https://github.com/ansible-collections/community.mysql/pull/365). +- mysql_user - Add the result field ``password_changed`` (boolean). It is true, when the user got a new password. When the user was created with ``update_password: on_new_username`` and an existing password was reused, ``password_changed`` is false (https://github.com/ansible-collections/community.mysql/pull/365). + +Bugfixes +-------- + +- mysql_query - fix false change reports when ``IF EXISTS/IF NOT EXISTS`` clause is used (https://github.com/ansible-collections/community.mysql/issues/268). +- mysql_role - don't add members to a role when creating the role and ``detach_members: true`` is set (https://github.com/ansible-collections/community.mysql/pull/367). +- mysql_role - in some cases (when "SHOW GRANTS" did not use backticks for quotes), no unwanted members were detached from the role (and redundant "GRANT" statements were executed for wanted members). This is fixed by querying the existing role members from the mysql.role_edges (MySQL) or mysql.roles_mapping (MariaDB) tables instead of parsing the "SHOW GRANTS" output (https://github.com/ansible-collections/community.mysql/pull/368). +- mysql_user - fix logic when ``update_password`` is set to ``on_create`` for users using ``plugin*`` arguments (https://github.com/ansible-collections/community.mysql/issues/334). The ``on_create`` sets ``password`` to None for old mysql_native_authentication but not for authentiation methods which uses the ``plugin*`` arguments. This PR changes this so ``on_create`` also exchange ``plugin``, ``plugin_hash_string``, ``plugin_auth_string`` to None in the list of arguments to change + v3.2.1 ====== @@ -128,7 +153,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 e128bd9..ce4140f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -140,3 +140,57 @@ releases: - 3.2.1.yml - psf-license.yml release_date: '2022-05-17' + 3.3.0: + changes: + bugfixes: + - mysql_query - fix false change reports when ``IF EXISTS/IF NOT EXISTS`` clause + is used (https://github.com/ansible-collections/community.mysql/issues/268). + - 'mysql_role - don''t add members to a role when creating the role and ``detach_members: + true`` is set (https://github.com/ansible-collections/community.mysql/pull/367).' + - 'mysql_role - in some cases (when "SHOW GRANTS" did not use backticks for + quotes), no unwanted members were detached from the role (and redundant "GRANT" + statements were executed for wanted members). This is fixed by querying the + existing role members from the mysql.role_edges (MySQL) or mysql.roles_mapping + (MariaDB) tables instead of parsing the "SHOW GRANTS" output (https://github.com/ansible-collections/community.mysql/pull/368). + + ' + - mysql_user - fix logic when ``update_password`` is set to ``on_create`` for + users using ``plugin*`` arguments (https://github.com/ansible-collections/community.mysql/issues/334). + The ``on_create`` sets ``password`` to None for old mysql_native_authentication + but not for authentiation methods which uses the ``plugin*`` arguments. This + PR changes this so ``on_create`` also exchange ``plugin``, ``plugin_hash_string``, + ``plugin_auth_string`` to None in the list of arguments to change + minor_changes: + - 'mysql_role - add the argument ``members_must_exist`` (boolean, default true). + The assertion that the users supplied in the ``members`` argument exist is + only executed when the new argument ``members_must_exist`` is ``true``, to + allow opt-out (https://github.com/ansible-collections/community.mysql/pull/369). + + ' + - 'mysql_user - Add the option ``on_new_username`` to argument ``update_password`` + to reuse the password (plugin and authentication_string) when creating a new + user if some user with the same name already exists. If the existing user + with the same name have varying passwords, the password from the arguments + is used like with ``update_password: always`` (https://github.com/ansible-collections/community.mysql/pull/365). + + ' + - 'mysql_user - Add the result field ``password_changed`` (boolean). It is true, + when the user got a new password. When the user was created with ``update_password: + on_new_username`` and an existing password was reused, ``password_changed`` + is false (https://github.com/ansible-collections/community.mysql/pull/365). + + ' + 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`` 3.2.1.' + fragments: + - 3.3.0.yml + - 322-mysql_query_fix_false_change_report.yml + - 334-mysql_user_fix_logic_on_oncreate.yml + - 365-mysql_user-add-on_new_username-and-password_changed.yml + - 367-mysql_role-fix-deatch-members.yml + - 368-mysql_role-fix-member-detection.yml + - 369_mysql_role-add-members_must_exist.yml + release_date: '2022-06-02' diff --git a/changelogs/fragments/322-mysql_query_fix_false_change_report.yml b/changelogs/fragments/322-mysql_query_fix_false_change_report.yml deleted file mode 100644 index db53922..0000000 --- a/changelogs/fragments/322-mysql_query_fix_false_change_report.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_query - fix false change reports when ``IF EXISTS/IF NOT EXISTS`` clause is used (https://github.com/ansible-collections/community.mysql/issues/268). diff --git a/changelogs/fragments/334-mysql_user_fix_logic_on_oncreate.yml b/changelogs/fragments/334-mysql_user_fix_logic_on_oncreate.yml deleted file mode 100644 index 4ac88a1..0000000 --- a/changelogs/fragments/334-mysql_user_fix_logic_on_oncreate.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "mysql_user - fix logic when ``update_password`` is set to ``on_create`` for users using ``plugin*`` arguments (https://github.com/ansible-collections/community.mysql/issues/334). The ``on_create`` sets ``password`` to None for old mysql_native_authentication but not for authentiation methods which uses the ``plugin*`` arguments. This PR changes this so ``on_create`` also exchange ``plugin``, ``plugin_hash_string``, ``plugin_auth_string`` to None in the list of arguments to change" diff --git a/changelogs/fragments/365-mysql_user-add-on_new_username-and-password_changed.yml b/changelogs/fragments/365-mysql_user-add-on_new_username-and-password_changed.yml deleted file mode 100644 index 2796776..0000000 --- a/changelogs/fragments/365-mysql_user-add-on_new_username-and-password_changed.yml +++ /dev/null @@ -1,10 +0,0 @@ -minor_changes: - - > - mysql_user - Add the option ``on_new_username`` to argument ``update_password`` to reuse the password (plugin and - authentication_string) when creating a new user if some user with the same name already exists. - If the existing user with the same name have varying passwords, the password from the arguments is used like with - ``update_password: always`` (https://github.com/ansible-collections/community.mysql/pull/365). - - > - mysql_user - Add the result field ``password_changed`` (boolean). It is true, when the user got a new password. - When the user was created with ``update_password: on_new_username`` and an existing password was reused, - ``password_changed`` is false (https://github.com/ansible-collections/community.mysql/pull/365). diff --git a/changelogs/fragments/367-mysql_role-fix-deatch-members.yml b/changelogs/fragments/367-mysql_role-fix-deatch-members.yml deleted file mode 100644 index 5a4d414..0000000 --- a/changelogs/fragments/367-mysql_role-fix-deatch-members.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "mysql_role - don't add members to a role when creating the role and ``detach_members: true`` is set (https://github.com/ansible-collections/community.mysql/pull/367)." diff --git a/changelogs/fragments/368-mysql_role-fix-member-detection.yml b/changelogs/fragments/368-mysql_role-fix-member-detection.yml deleted file mode 100644 index b7cbd3e..0000000 --- a/changelogs/fragments/368-mysql_role-fix-member-detection.yml +++ /dev/null @@ -1,6 +0,0 @@ -bugfixes: - - > - mysql_role - in some cases (when "SHOW GRANTS" did not use backticks for quotes), no unwanted members were detached - from the role (and redundant "GRANT" statements were executed for wanted members). This is fixed by querying the - existing role members from the mysql.role_edges (MySQL) or mysql.roles_mapping (MariaDB) tables instead of parsing - the "SHOW GRANTS" output (https://github.com/ansible-collections/community.mysql/pull/368). diff --git a/changelogs/fragments/369_mysql_role-add-members_must_exist.yml b/changelogs/fragments/369_mysql_role-add-members_must_exist.yml deleted file mode 100644 index c2d420c..0000000 --- a/changelogs/fragments/369_mysql_role-add-members_must_exist.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: - - > - mysql_role - add the argument ``members_must_exist`` (boolean, default true). The assertion that the users supplied in - the ``members`` argument exist is only executed when the new argument ``members_must_exist`` is ``true``, to allow opt-out (https://github.com/ansible-collections/community.mysql/pull/369). diff --git a/galaxy.yml b/galaxy.yml index 294d37d..262677d 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.2.1 +version: 3.3.0 readme: README.md authors: - Ansible community