mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Release 2.3.0 commit (#220)
This commit is contained in:
parent
c5676ff0c9
commit
a6bacefc41
5 changed files with 38 additions and 5 deletions
|
@ -5,6 +5,26 @@ Community MySQL Collection Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v2.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`` 2.2.0.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_info - fix TypeError failure when there are databases that do not contain tables (https://github.com/ansible-collections/community.mysql/issues/204).
|
||||||
|
|
||||||
v2.2.0
|
v2.2.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -335,3 +335,20 @@ releases:
|
||||||
name: mysql_role
|
name: mysql_role
|
||||||
namespace: ''
|
namespace: ''
|
||||||
release_date: '2021-08-11'
|
release_date: '2021-08-11'
|
||||||
|
2.3.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_info - fix TypeError failure when there are databases that do not contain
|
||||||
|
tables (https://github.com/ansible-collections/community.mysql/issues/204).
|
||||||
|
minor_changes:
|
||||||
|
- mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217).
|
||||||
|
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`` 2.2.0.'
|
||||||
|
fragments:
|
||||||
|
- 2.3.0.yml
|
||||||
|
- 205-mysql_info_fix_failure_when_no_tables_in_db.yml
|
||||||
|
- 217-mysql-user-replace-get-valid-privs-from-show-privilegees.yml
|
||||||
|
release_date: '2021-09-23'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_info - fix TypeError failure when there are databases that do not contain tables (https://github.com/ansible-collections/community.mysql/issues/204).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_user - replace VALID_PRIVS constant by get_valid_privs() function (https://github.com/ansible-collections/community.mysql/pull/217).
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: community
|
namespace: community
|
||||||
name: mysql
|
name: mysql
|
||||||
version: 2.2.0
|
version: 2.3.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible community
|
- Ansible community
|
||||||
|
|
Loading…
Add table
Reference in a new issue