From c0619821deec556fdfed29ec89180107032e7d9d Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 18 Jan 2022 12:59:38 +0300 Subject: [PATCH] Release 3.1.0 commit (#275) --- changelogs/CHANGELOG.rst | 21 ++++++++++++++++ changelogs/changelog.yaml | 24 +++++++++++++++++++ ...orted-database-and-connector-versions.yaml | 2 -- .../266-default-database-for-mysql-user.yml | 2 -- .../267-prepare_for_distutils_be_removed.yml | 2 -- galaxy.yml | 2 +- 6 files changed, 46 insertions(+), 7 deletions(-) delete mode 100644 changelogs/fragments/141-supported-database-and-connector-versions.yaml delete mode 100644 changelogs/fragments/266-default-database-for-mysql-user.yml delete mode 100644 changelogs/fragments/267-prepare_for_distutils_be_removed.yml diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index ce4c0c7..6a1872c 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -6,6 +6,27 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.1.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.0.0. + +Minor Changes +------------- + +- Added explicit description of the supported versions of databases and connectors. Changes to the collection are **NOT** tested against database versions older than `mysql 5.7.31` and `mariadb 10.2.37` or connector versions older than `pymysql 0.7.10` and `mysqlclient 2.0.1`. (https://github.com/ansible-collections/community.mysql/discussions/141) +- mysql_user - added the ``force_context`` boolean option to set the default database context for the queries to be the ``mysql`` database. This way replication/binlog filters can catch the statements (https://github.com/ansible-collections/community.mysql/issues/265). + +Bugfixes +-------- + +- Collection core functions - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.mysql/pull/269). + v3.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 67264f4..e131686 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -24,3 +24,27 @@ releases: - 3.0.0.yml - 300-mysql_replication_remove_master_slave.yml release_date: '2021-12-01' + 3.1.0: + changes: + bugfixes: + - Collection core functions - use vendored version of ``distutils.version`` + instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.mysql/pull/269). + minor_changes: + - Added explicit description of the supported versions of databases and connectors. + Changes to the collection are **NOT** tested against database versions older + than `mysql 5.7.31` and `mariadb 10.2.37` or connector versions older than + `pymysql 0.7.10` and `mysqlclient 2.0.1`. (https://github.com/ansible-collections/community.mysql/discussions/141) + - mysql_user - added the ``force_context`` boolean option to set the default + database context for the queries to be the ``mysql`` database. This way replication/binlog + filters can catch the statements (https://github.com/ansible-collections/community.mysql/issues/265). + 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.0.0.' + fragments: + - 141-supported-database-and-connector-versions.yaml + - 266-default-database-for-mysql-user.yml + - 267-prepare_for_distutils_be_removed.yml + - 3.1.0.yml + release_date: '2022-01-18' diff --git a/changelogs/fragments/141-supported-database-and-connector-versions.yaml b/changelogs/fragments/141-supported-database-and-connector-versions.yaml deleted file mode 100644 index 1527239..0000000 --- a/changelogs/fragments/141-supported-database-and-connector-versions.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Added explicit description of the supported versions of databases and connectors. Changes to the collection are **NOT** tested against database versions older than `mysql 5.7.31` and `mariadb 10.2.37` or connector versions older than `pymysql 0.7.10` and `mysqlclient 2.0.1`. (https://github.com/ansible-collections/community.mysql/discussions/141) diff --git a/changelogs/fragments/266-default-database-for-mysql-user.yml b/changelogs/fragments/266-default-database-for-mysql-user.yml deleted file mode 100644 index b552a6e..0000000 --- a/changelogs/fragments/266-default-database-for-mysql-user.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_user - added the ``force_context`` boolean option to set the default database context for the queries to be the ``mysql`` database. This way replication/binlog filters can catch the statements (https://github.com/ansible-collections/community.mysql/issues/265). diff --git a/changelogs/fragments/267-prepare_for_distutils_be_removed.yml b/changelogs/fragments/267-prepare_for_distutils_be_removed.yml deleted file mode 100644 index 190b178..0000000 --- a/changelogs/fragments/267-prepare_for_distutils_be_removed.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- Collection core functions - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.mysql/pull/269). diff --git a/galaxy.yml b/galaxy.yml index 8e079f1..d7c45a5 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.0.0 +version: 3.1.0 readme: README.md authors: - Ansible community