From 04e197fe5555ea1a1343d9777474a64b3fca87c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Inderm=C3=BChle?= Date: Fri, 5 May 2023 13:32:40 +0200 Subject: [PATCH] Release 3.7.0 commit (#544) --- CHANGELOG.rst | 16 ++++++++++++++++ changelogs/changelog.yaml | 17 +++++++++++++++++ ...-change_deprecated_connection_parameters.yml | 2 -- .../490_refactor_integration_tests.yml | 6 ------ ...23-add-max_statement_time_resource-limit.yml | 2 -- galaxy.yml | 3 ++- 6 files changed, 35 insertions(+), 11 deletions(-) delete mode 100644 changelogs/fragments/177-change_deprecated_connection_parameters.yml delete mode 100644 changelogs/fragments/490_refactor_integration_tests.yml delete mode 100644 changelogs/fragments/523-add-max_statement_time_resource-limit.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 720ea41..95fef3d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,22 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.7.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. + +Minor Changes +------------- + +- mysql module utils - change deprecated connection parameters ``passwd`` and ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/177). +- mysql_user - add ``MAX_STATEMENT_TIME`` support for mariadb to the ``resource_limits`` argument (https://github.com/ansible-collections/community.mysql/issues/211). + v3.6.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e272941..def5b73 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -300,3 +300,20 @@ releases: - 503-fix-revoke-grant-only.yml - mysql_variables_allow_uppercase_identifiers.yml release_date: '2023-02-08' + 3.7.0: + changes: + minor_changes: + - mysql module utils - change deprecated connection parameters ``passwd`` and + ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/177). + - mysql_user - add ``MAX_STATEMENT_TIME`` support for mariadb to the ``resource_limits`` + argument (https://github.com/ansible-collections/community.mysql/issues/211). + 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.7.0.yml + - 177-change_deprecated_connection_parameters.yml + - 523-add-max_statement_time_resource-limit.yml + release_date: '2023-05-05' diff --git a/changelogs/fragments/177-change_deprecated_connection_parameters.yml b/changelogs/fragments/177-change_deprecated_connection_parameters.yml deleted file mode 100644 index 3c9e088..0000000 --- a/changelogs/fragments/177-change_deprecated_connection_parameters.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql module utils - change deprecated connection parameters ``passwd`` and ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/177). \ No newline at end of file diff --git a/changelogs/fragments/490_refactor_integration_tests.yml b/changelogs/fragments/490_refactor_integration_tests.yml deleted file mode 100644 index 0762adf..0000000 --- a/changelogs/fragments/490_refactor_integration_tests.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -minor_changes: - - Integration tests - Add more versions of MariaDB - - Integration tests - Carefully verify every component of the tests in the new target 'setup_controller' to ensure expected versions are correct Python, Ansible, connector and MySQL/MariaDB. - - Integration tests - Add tools to test locally the same as on GHA by using same containers and virtualenv. Custom test containers are published in ghcr.io by this repo's workflows. MySQL/MariaDB are official Docker Hub images. - - Integration tests - New name for many tasks to makes it easier to find failing tests. Rename duplicates. Add name for tasks which doesn't had one, refactor some tests files to better group tests by subject, ... diff --git a/changelogs/fragments/523-add-max_statement_time_resource-limit.yml b/changelogs/fragments/523-add-max_statement_time_resource-limit.yml deleted file mode 100644 index b42d63c..0000000 --- a/changelogs/fragments/523-add-max_statement_time_resource-limit.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - mysql_user - add ``MAX_STATEMENT_TIME`` support for mariadb to the ``resource_limits`` argument (https://github.com/ansible-collections/community.mysql/issues/211). diff --git a/galaxy.yml b/galaxy.yml index bb7e2be..6c1df2b 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,7 @@ +--- namespace: community name: mysql -version: 3.6.0 +version: 3.7.0 readme: README.md authors: - Ansible community