From af73fa0d76512b8852354b768455a07f8be41fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Inderm=C3=BChle?= Date: Wed, 3 Aug 2022 11:03:17 +0200 Subject: [PATCH] Release 3.4.0 commit (#414) * Changelog: Fix module name * Release 3.4.0 commit --- CHANGELOG.rst | 28 ++++++++++++++++ changelogs/changelog.yaml | 33 +++++++++++++++++++ .../0-mysql_db_add_chdir_argument.yml | 2 -- ...sql_replication_can_disable_master_ssl.yml | 2 -- changelogs/fragments/2-mysql_db_announce.yml | 6 ---- .../fragments/fix-256-mysql_dump-errors.yml | 7 ---- .../fragments/simplified-bsd-license.yml | 2 -- galaxy.yml | 2 +- 8 files changed, 62 insertions(+), 20 deletions(-) delete mode 100644 changelogs/fragments/0-mysql_db_add_chdir_argument.yml delete mode 100644 changelogs/fragments/1-mysql_replication_can_disable_master_ssl.yml delete mode 100644 changelogs/fragments/2-mysql_db_announce.yml delete mode 100644 changelogs/fragments/fix-256-mysql_dump-errors.yml delete mode 100644 changelogs/fragments/simplified-bsd-license.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3179e87..31c62a2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,34 @@ Community MySQL Collection Release Notes This changelog describes changes after version 2.0.0. +v3.4.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.3.0. + +Major Changes +------------- + +- mysql_db - the ``pipefail`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your target machines do not use ``bash`` as a default interpreter, set ``pipefail`` to ``false`` explicitly. However, we strongly recommend setting up ``bash`` as a default and ``pipefail=true`` as it will protect you from getting broken dumps you don't know about (https://github.com/ansible-collections/community.mysql/issues/407). + +Minor Changes +------------- + +- mysql_db - add the ``chdir`` argument to avoid failings when a dump file contains relative paths (https://github.com/ansible-collections/community.mysql/issues/395). +- mysql_db - add the ``pipefail`` argument to avoid broken dumps when ``state`` is ``dump`` and compression is used (https://github.com/ansible-collections/community.mysql/issues/256). + +Bugfixes +-------- + +- Include ``simplified_bsd.txt`` license file for various module utils. +- mysql_db - Using compression masks errors messages from mysql_dump. By default the fix is inactive to ensure retro-compatibility with system without bash. To activate the fix, use the module option ``pipefail=true`` (https://github.com/ansible-collections/community.mysql/issues/256). +- mysql_replication - when the ``primary_ssl`` argument is set to ``no``, the module will turn off SSL (https://github.com/ansible-collections/community.mysql/issues/393). + v3.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ce4140f..99d7227 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -194,3 +194,36 @@ releases: - 368-mysql_role-fix-member-detection.yml - 369_mysql_role-add-members_must_exist.yml release_date: '2022-06-02' + 3.4.0: + changes: + bugfixes: + - Include ``simplified_bsd.txt`` license file for various module utils. + - mysql_db - Using compression masks errors messages from mysql_dump. By default + the fix is inactive to ensure retro-compatibility with system without bash. + To activate the fix, use the module option ``pipefail=true`` (https://github.com/ansible-collections/community.mysql/issues/256). + - mysql_replication - when the ``primary_ssl`` argument is set to ``no``, the + module will turn off SSL (https://github.com/ansible-collections/community.mysql/issues/393). + major_changes: + - mysql_db - the ``pipefail`` argument's default value will be changed to ``true`` + in community.mysql 4.0.0. If your target machines do not use ``bash`` as a + default interpreter, set ``pipefail`` to ``false`` explicitly. However, we + strongly recommend setting up ``bash`` as a default and ``pipefail=true`` + as it will protect you from getting broken dumps you don't know about (https://github.com/ansible-collections/community.mysql/issues/407). + minor_changes: + - mysql_db - add the ``chdir`` argument to avoid failings when a dump file contains + relative paths (https://github.com/ansible-collections/community.mysql/issues/395). + - mysql_db - add the ``pipefail`` argument to avoid broken dumps when ``state`` + is ``dump`` and compression is used (https://github.com/ansible-collections/community.mysql/issues/256). + 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.3.0.' + fragments: + - 0-mysql_db_add_chdir_argument.yml + - 1-mysql_replication_can_disable_master_ssl.yml + - 2-mysql_db_announce.yml + - 3.4.0.yml + - fix-256-mysql_dump-errors.yml + - simplified-bsd-license.yml + release_date: '2022-08-02' diff --git a/changelogs/fragments/0-mysql_db_add_chdir_argument.yml b/changelogs/fragments/0-mysql_db_add_chdir_argument.yml deleted file mode 100644 index 26ce3dd..0000000 --- a/changelogs/fragments/0-mysql_db_add_chdir_argument.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``chdir`` argument to avoid failings when a dump file contains relative paths (https://github.com/ansible-collections/community.mysql/issues/395). diff --git a/changelogs/fragments/1-mysql_replication_can_disable_master_ssl.yml b/changelogs/fragments/1-mysql_replication_can_disable_master_ssl.yml deleted file mode 100644 index ceb0d5a..0000000 --- a/changelogs/fragments/1-mysql_replication_can_disable_master_ssl.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_replication - when the ``primary_ssl`` argument is set to ``no``, the module will turn off SSL (https://github.com/ansible-collections/community.mysql/issues/393). diff --git a/changelogs/fragments/2-mysql_db_announce.yml b/changelogs/fragments/2-mysql_db_announce.yml deleted file mode 100644 index 87d3c60..0000000 --- a/changelogs/fragments/2-mysql_db_announce.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -minor_changes: -- mysql_db - add the ``pipefail`` argument to avoid broken dumps when ``state`` is ``dump`` and compression is used (https://github.com/ansible-collections/community.mysql/issues/256). - -major_changes: -- mysql_db - the ``pipefail`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your target machines do not use ``bash`` as a default interpreter, set ``pipefail`` to ``false`` explicitly. However, we strongly recommend setting up ``bash`` as a default and ``pipefail=true`` as it will protect you from getting broken dumps you don't know about (https://github.com/ansible-collections/community.mysql/issues/407). diff --git a/changelogs/fragments/fix-256-mysql_dump-errors.yml b/changelogs/fragments/fix-256-mysql_dump-errors.yml deleted file mode 100644 index f3dccc0..0000000 --- a/changelogs/fragments/fix-256-mysql_dump-errors.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- - -bugfixes: - - mysql_dump - using compression masks errors messages from - mysql_dump. By default the fix is inactive to ensure retro-compatibility - with system without bash. To activate the fix, use the module option - ``pipefail=true`` (https://github.com/ansible-collections/community.mysql/issues/256). diff --git a/changelogs/fragments/simplified-bsd-license.yml b/changelogs/fragments/simplified-bsd-license.yml deleted file mode 100644 index 574a695..0000000 --- a/changelogs/fragments/simplified-bsd-license.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Include ``simplified_bsd.txt`` license file for various module utils. diff --git a/galaxy.yml b/galaxy.yml index 262677d..d877dea 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: mysql -version: 3.3.0 +version: 3.4.0 readme: README.md authors: - Ansible community