mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Release 3.1.3 commit (#337)
This commit is contained in:
parent
450cb19027
commit
4aab8ac808
6 changed files with 39 additions and 7 deletions
|
@ -6,6 +6,23 @@ Community MySQL Collection Release Notes
|
|||
|
||||
This changelog describes changes after version 2.0.0.
|
||||
|
||||
v3.1.3
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
This is the patch 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.1.2.
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- mysql_replication - fails when using the `primary_use_gtid` option with `slave_pos` or `replica_pos` (https://github.com/ansible-collections/community.mysql/issues/335).
|
||||
- mysql_role - remove redundant connection closing (https://github.com/ansible-collections/community.mysql/pull/330).
|
||||
- mysql_user - fix the possibility for a race condition that breaks certain (circular) replication configurations when ``DROP USER`` is executed on multiple nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin: no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287).
|
||||
|
||||
v3.1.2
|
||||
======
|
||||
|
||||
|
|
|
@ -76,3 +76,24 @@ releases:
|
|||
- 0-mysqlclient.yml
|
||||
- 3.1.2.yml
|
||||
release_date: '2022-03-14'
|
||||
3.1.3:
|
||||
changes:
|
||||
bugfixes:
|
||||
- mysql_replication - fails when using the `primary_use_gtid` option with `slave_pos`
|
||||
or `replica_pos` (https://github.com/ansible-collections/community.mysql/issues/335).
|
||||
- mysql_role - remove redundant connection closing (https://github.com/ansible-collections/community.mysql/pull/330).
|
||||
- 'mysql_user - fix the possibility for a race condition that breaks certain
|
||||
(circular) replication configurations when ``DROP USER`` is executed on multiple
|
||||
nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin:
|
||||
no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287).'
|
||||
release_summary: 'This is the patch 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.1.2.'
|
||||
fragments:
|
||||
- 0-mysql_replication_replica_pos.yml
|
||||
- 3.1.3.yml
|
||||
- 307-mysql_user_add_if_exists_to_drop.yml
|
||||
- 329-mysql_role-remove-redudant-connection-closing.yml
|
||||
release_date: '2022-04-26'
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- mysql_replication - fails when using the `primary_use_gtid` option with `slave_pos` or `replica_pos` (https://github.com/ansible-collections/community.mysql/issues/335).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- "mysql_user - fix the possibility for a race condition that breaks certain (circular) replication configurations when ``DROP USER`` is executed on multiple nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin: no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287)."
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- "mysql_role - remove redundant connection closing (https://github.com/ansible-collections/community.mysql/pull/330)."
|
|
@ -1,6 +1,6 @@
|
|||
namespace: community
|
||||
name: mysql
|
||||
version: 3.1.2
|
||||
version: 3.1.3
|
||||
readme: README.md
|
||||
authors:
|
||||
- Ansible community
|
||||
|
|
Loading…
Add table
Reference in a new issue