diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 31c62a2..0339b22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,26 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.5.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.4.0. + +Minor Changes +------------- + +- mysql_replication - add a new option: ``primary_ssl_verify_server_cert`` (https://github.com//pull/435). + +Bugfixes +-------- + +- mysql_user - grant option was revoked accidentally when modifying users. This fix revokes grant option only when privs are setup to do that (https://github.com/ansible-collections/community.mysql/issues/77#issuecomment-1209693807). + v3.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 99d7227..2413820 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -227,3 +227,21 @@ releases: - fix-256-mysql_dump-errors.yml - simplified-bsd-license.yml release_date: '2022-08-02' + 3.5.0: + changes: + bugfixes: + - mysql_user - grant option was revoked accidentally when modifying users. This + fix revokes grant option only when privs are setup to do that (https://github.com/ansible-collections/community.mysql/issues/77#issuecomment-1209693807). + minor_changes: + - 'mysql_replication - add a new option: ``primary_ssl_verify_server_cert`` + (https://github.com//pull/435).' + 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.4.0.' + fragments: + - 3.5.0.yml + - 434-do-not-revoke-grant-option-always.yaml + - 435-mysql_replication_verify_server_cert.yml + release_date: '2022-09-05' diff --git a/changelogs/fragments/434-do-not-revoke-grant-option-always.yaml b/changelogs/fragments/434-do-not-revoke-grant-option-always.yaml deleted file mode 100644 index a6edb24..0000000 --- a/changelogs/fragments/434-do-not-revoke-grant-option-always.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -bugfixes: - - mysql_user - grant option was revoked accidentally when modifying users. - This fix revokes grant option only when privs are setup to do that - (https://github.com/ansible-collections/community.mysql/issues/77#issuecomment-1209693807). diff --git a/changelogs/fragments/435-mysql_replication_verify_server_cert.yml b/changelogs/fragments/435-mysql_replication_verify_server_cert.yml deleted file mode 100644 index 8e5a2eb..0000000 --- a/changelogs/fragments/435-mysql_replication_verify_server_cert.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - "mysql_replication - add a new option: ``primary_ssl_verify_server_cert`` (https://github.com//pull/435)." \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index b30a3f9..8794398 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.4.1 +version: 3.5.0 readme: README.md authors: - Ansible community