mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Release 1.3.0 commit
This commit is contained in:
parent
979588e2cd
commit
e8cb81b30e
6 changed files with 54 additions and 11 deletions
|
@ -5,6 +5,33 @@ Community MySQL Collection Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.3.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`` 1.2.0.
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_replication - the mode options values ``getslave``, ``startslave``, ``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option ``slave_pos`` are deprecated (see the alternative values) and will be removed in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97).
|
||||||
|
- mysql_replication - the word ``SLAVE`` in messages returned by the module will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98).
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_replication - deprecate offending terminology, add alternative choices to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106).
|
||||||
|
- mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99).
|
||||||
|
|
||||||
v1.2.0
|
v1.2.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -209,3 +209,29 @@ releases:
|
||||||
- 79-mysql-user-tests-and-fixes.yml
|
- 79-mysql-user-tests-and-fixes.yml
|
||||||
- 87-mysql_user_show_routine_support.yml
|
- 87-mysql_user_show_routine_support.yml
|
||||||
release_date: '2021-01-18'
|
release_date: '2021-01-18'
|
||||||
|
1.3.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106).
|
||||||
|
- mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99).
|
||||||
|
major_changes:
|
||||||
|
- mysql_replication - the mode options values ``getslave``, ``startslave``,
|
||||||
|
``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option
|
||||||
|
``slave_pos`` are deprecated (see the alternative values) and will be removed
|
||||||
|
in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97).
|
||||||
|
- mysql_replication - the word ``SLAVE`` in messages returned by the module
|
||||||
|
will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98).
|
||||||
|
minor_changes:
|
||||||
|
- mysql_replication - deprecate offending terminology, add alternative choices
|
||||||
|
to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78).
|
||||||
|
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`` 1.2.0.'
|
||||||
|
fragments:
|
||||||
|
- 1.3.0.yml
|
||||||
|
- 100-mysql_user_not_idemponent_when_select_on_columns_granted.yml
|
||||||
|
- 107-mysql_user_fix_grant_on_col_handling.yml
|
||||||
|
- 97-mysql_replication_deprecate_offending_terminology.yml
|
||||||
|
release_date: '2021-03-08'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_user - the module is not idempotent when SELECT on columns granted (https://github.com/ansible-collections/community.mysql/issues/99).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_user - fix handling of INSERT, UPDATE, REFERENCES on columns (https://github.com/ansible-collections/community.mysql/issues/106).
|
|
|
@ -1,6 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_replication - deprecate offending terminology, add alternative choices to the ``mode`` option (https://github.com/ansible-collections/community.mysql/issues/78).
|
|
||||||
|
|
||||||
major_changes:
|
|
||||||
- mysql_replication - the word ``SLAVE`` in messages returned by the module will be changed to ``REPLICA`` in ``community.mysql`` 2.0.0 (https://github.com/ansible-collections/community.mysql/issues/98).
|
|
||||||
- mysql_replication - the mode options values ``getslave``, ``startslave``, ``stopslave``, ``resetslave``, ``resetslaveall` and the master_use_gtid option ``slave_pos`` are deprecated (see the alternative values) and will be removed in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/pull/97).
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: community
|
namespace: community
|
||||||
name: mysql
|
name: mysql
|
||||||
version: 1.2.0
|
version: 1.3.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible community
|
- Ansible community
|
||||||
|
|
Loading…
Add table
Reference in a new issue