diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0339b22..cb5e2cd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,21 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.5.1 +====== + +Release Summary +--------------- + +This is the patch 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. + +Bugfixes +-------- + +- mysql_user, mysql_role - mysql/mariadb recent versions translate 'ALL PRIVILEGES' to a list of specific privileges. That caused a change every time we modified user privileges. This fix compares privs before and after user modification to avoid this infinite change (https://github.com/ansible-collections/community.mysql/issues/77). + v3.5.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2413820..be7f028 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -245,3 +245,19 @@ releases: - 434-do-not-revoke-grant-option-always.yaml - 435-mysql_replication_verify_server_cert.yml release_date: '2022-09-05' + 3.5.1: + changes: + bugfixes: + - mysql_user, mysql_role - mysql/mariadb recent versions translate 'ALL PRIVILEGES' + to a list of specific privileges. That caused a change every time we modified + user privileges. This fix compares privs before and after user modification + to avoid this infinite change (https://github.com/ansible-collections/community.mysql/issues/77). + release_summary: 'This is the patch 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.5.1.yml + - 438-fix-privilege-changing-everytime.yml + release_date: '2022-09-09' diff --git a/changelogs/fragments/438-fix-privilege-changing-everytime.yml b/changelogs/fragments/438-fix-privilege-changing-everytime.yml deleted file mode 100644 index da7baa8..0000000 --- a/changelogs/fragments/438-fix-privilege-changing-everytime.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -bugfixes: - - mysql_user, mysql_role - mysql/mariadb recent versions translate 'ALL - PRIVILEGES' to a list of specific privileges. That caused a change every time - we modified user privileges. This fix compares privs before and after user - modification to avoid this infinite change - (https://github.com/ansible-collections/community.mysql/issues/77). diff --git a/galaxy.yml b/galaxy.yml index 8794398..733762d 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.5.0 +version: 3.5.1 readme: README.md authors: - Ansible community