diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index aad2202..a80c771 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,33 @@ Community MySQL Collection Release Notes .. contents:: Topics +v1.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`` 1.2.0. + +Major Changes +------------- + +- mysql_replication - the mode options values ``getslave``, ``startslave``, ``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option ``slave_pos`` are deprecated (see the alternative values) and will be removed in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97). +- mysql_replication - the word ``SLAVE`` in messages returned by the module will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98). + +Minor Changes +------------- + +- mysql_replication - deprecate offending terminology, add alternative choices to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78). + +Bugfixes +-------- + +- mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106). +- mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99). + v1.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 426fef5..c163341 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -209,3 +209,29 @@ releases: - 79-mysql-user-tests-and-fixes.yml - 87-mysql_user_show_routine_support.yml release_date: '2021-01-18' + 1.3.0: + changes: + bugfixes: + - mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106). + - mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99). + major_changes: + - mysql_replication - the mode options values ``getslave``, ``startslave``, + ``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option + ``slave_pos`` are deprecated (see the alternative values) and will be removed + in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97). + - mysql_replication - the word ``SLAVE`` in messages returned by the module + will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98). + minor_changes: + - mysql_replication - deprecate offending terminology, add alternative choices + to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78). + 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`` 1.2.0.' + fragments: + - 1.3.0.yml + - 100-mysql_user_not_idemponent_when_select_on_columns_granted.yml + - 107-mysql_user_fix_grant_on_col_handling.yml + - 97-mysql_replication_deprecate_offending_terminology.yml + release_date: '2021-03-08' diff --git a/changelogs/fragments/100-mysql_user_not_idemponent_when_select_on_columns_granted.yml b/changelogs/fragments/100-mysql_user_not_idemponent_when_select_on_columns_granted.yml deleted file mode 100644 index 3c370dc..0000000 --- a/changelogs/fragments/100-mysql_user_not_idemponent_when_select_on_columns_granted.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99). diff --git a/changelogs/fragments/107-mysql_user_fix_grant_on_col_handling.yml b/changelogs/fragments/107-mysql_user_fix_grant_on_col_handling.yml deleted file mode 100644 index 38dd297..0000000 --- a/changelogs/fragments/107-mysql_user_fix_grant_on_col_handling.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106). diff --git a/changelogs/fragments/97-mysql_replication_deprecate_offending_terminology.yml b/changelogs/fragments/97-mysql_replication_deprecate_offending_terminology.yml deleted file mode 100644 index 7bf4da7..0000000 --- a/changelogs/fragments/97-mysql_replication_deprecate_offending_terminology.yml +++ /dev/null @@ -1,6 +0,0 @@ -minor_changes: -- mysql_replication - deprecate offending terminology, add alternative choices to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78). - -major_changes: -- mysql_replication - the word ``SLAVE`` in messages returned by the module will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98). -- mysql_replication - the mode options values ``getslave``, ``startslave``, ``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option ``slave_pos`` are deprecated (see the alternative values) and will be removed in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97). diff --git a/galaxy.yml b/galaxy.yml index 146b20f..dad76b9 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 1.2.0 +version: 1.3.0 readme: README.md authors: - Ansible community