diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 31ee41a..f6c6cb8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,30 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.8.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. + +Major Changes +------------- + +- The community.mysql collection no longer supports ``ansible-core 2.12`` and ``ansible-core 2.13``. While we take no active measures to prevent usage and there are no plans to introduce incompatible code to the modules, we will stop testing those versions. Both are or will soon be End of Life and if you are still using them, you should consider upgrading to the ``latest Ansible / ansible-core 2.15 or later`` as soon as possible (https://github.com/ansible-collections/community.mysql/pull/574). +- mysql_role - the ``column_case_sensitive`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your playbook expected the column to be automatically uppercased for your roles privileges, you should set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/578). +- mysql_user - the ``column_case_sensitive`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your playbook expected the column to be automatically uppercased for your users privileges, you should set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/577). + +Minor Changes +------------- + +- mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580). +- mysql_role - add ``column_case_sensitive`` option to prevent field names from being uppercased (https://github.com/ansible-collections/community.mysql/pull/569). +- mysql_user - add ``column_case_sensitive`` option to prevent field names from being uppercased (https://github.com/ansible-collections/community.mysql/pull/569). + v3.7.2 ====== diff --git a/changelogs/569_fix_column_uppercasing.yml b/changelogs/569_fix_column_uppercasing.yml deleted file mode 100644 index 781304e..0000000 --- a/changelogs/569_fix_column_uppercasing.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -minor_changes: - - - mysql_user - add ``column_case_sensitive`` option to prevent field names - from being uppercased - (https://github.com/ansible-collections/community.mysql/pull/569). - - mysql_role - add ``column_case_sensitive`` option to prevent field names - from being uppercased - (https://github.com/ansible-collections/community.mysql/pull/569). - -major_changes: - - mysql_user - the ``column_case_sensitive`` argument's default value will be - changed to ``true`` in community.mysql 4.0.0. If your playbook expected the - column to be automatically uppercased for your users privileges, you should - set this to false explicitly - (https://github.com/ansible-collections/community.mysql/issues/577). - - mysql_role - the ``column_case_sensitive`` argument's default value will be - changed to ``true`` in community.mysql 4.0.0. If your playbook expected the - column to be automatically uppercased for your roles privileges, you should - set this to false explicitly - (https://github.com/ansible-collections/community.mysql/issues/578). diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e3431f3..a97b2a8 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -346,3 +346,37 @@ releases: - 3.7.2.yml - 553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml release_date: '2023-05-25' + 3.8.0: + changes: + major_changes: + - The community.mysql collection no longer supports ``ansible-core 2.12`` and + ``ansible-core 2.13``. While we take no active measures to prevent usage and + there are no plans to introduce incompatible code to the modules, we will + stop testing those versions. Both are or will soon be End of Life and if you + are still using them, you should consider upgrading to the ``latest Ansible + / ansible-core 2.15 or later`` as soon as possible (https://github.com/ansible-collections/community.mysql/pull/574). + - mysql_role - the ``column_case_sensitive`` argument's default value will be + changed to ``true`` in community.mysql 4.0.0. If your playbook expected the + column to be automatically uppercased for your roles privileges, you should + set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/578). + - mysql_user - the ``column_case_sensitive`` argument's default value will be + changed to ``true`` in community.mysql 4.0.0. If your playbook expected the + column to be automatically uppercased for your users privileges, you should + set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/577). + minor_changes: + - mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580). + - mysql_role - add ``column_case_sensitive`` option to prevent field names from + being uppercased (https://github.com/ansible-collections/community.mysql/pull/569). + - mysql_user - add ``column_case_sensitive`` option to prevent field names from + being uppercased (https://github.com/ansible-collections/community.mysql/pull/569). + 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: + - 3.8.0.yml + - 569_fix_column_uppercasing.yml + - drop_ansible_core_2_12_and_2_13.yml + - lie_mysql_info_users_info.yml + release_date: '2023-10-25' diff --git a/changelogs/fragments/drop_ansible_core_2_12_and_2_13.yml b/changelogs/fragments/drop_ansible_core_2_12_and_2_13.yml deleted file mode 100644 index 29a363e..0000000 --- a/changelogs/fragments/drop_ansible_core_2_12_and_2_13.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- - -major_changes: - - - The community.mysql collection no longer supports ``ansible-core 2.12`` and - ``ansible-core 2.13``. While we take no active measures to prevent usage - and there are no plans to introduce incompatible code to the modules, we - will stop testing those versions. Both are or will soon be End of Life and - if you are still using them, you should consider upgrading to the - ``latest Ansible / ansible-core 2.15 or later`` as soon as possible - (https://github.com/ansible-collections/community.mysql/pull/574). diff --git a/changelogs/fragments/lie_mysql_info_users_info.yml b/changelogs/fragments/lie_mysql_info_users_info.yml deleted file mode 100644 index 5d7526f..0000000 --- a/changelogs/fragments/lie_mysql_info_users_info.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- - -minor_changes: - - - mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580). diff --git a/galaxy.yml b/galaxy.yml index 39a271e..c443a7b 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: community name: mysql -version: 3.7.2 +version: 3.8.0 readme: README.md authors: - Ansible community