mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Release 1.2.0: add changelog
This commit is contained in:
parent
b25fb5974d
commit
31bd2b567f
6 changed files with 41 additions and 7 deletions
|
@ -5,6 +5,27 @@ Community MySQL Collection Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.2.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.1.2.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_user - refactor to reduce cursor.execute() calls in preparation for adding query logging (https://github.com/ansible-collections/community.mysql/pull/76).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86).
|
||||||
|
- mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79).
|
||||||
|
|
||||||
v1.1.2
|
v1.1.2
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -190,3 +190,22 @@ releases:
|
||||||
- 72-mysql_db_fix_false_warning.yml
|
- 72-mysql_db_fix_false_warning.yml
|
||||||
- 72-mysql_user_change_detection.yml
|
- 72-mysql_user_change_detection.yml
|
||||||
release_date: '2020-12-18'
|
release_date: '2020-12-18'
|
||||||
|
1.2.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86).
|
||||||
|
- mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79).
|
||||||
|
minor_changes:
|
||||||
|
- mysql_user - refactor to reduce cursor.execute() calls in preparation for
|
||||||
|
adding query logging (https://github.com/ansible-collections/community.mysql/pull/76).
|
||||||
|
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.1.2.'
|
||||||
|
fragments:
|
||||||
|
- 1.2.0.yml
|
||||||
|
- 76-mysql-user-query-refact.yaml
|
||||||
|
- 79-mysql-user-tests-and-fixes.yml
|
||||||
|
- 87-mysql_user_show_routine_support.yml
|
||||||
|
release_date: '2021-01-18'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_user - refactor to reduce cursor.execute() calls in preparation for adding query logging (https://github.com/ansible-collections/community.mysql/pull/76).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_user - fixed creating user with encrypted password in MySQL 8.0 (https://github.com/ansible-collections/community.mysql/pull/79).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86).
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: community
|
namespace: community
|
||||||
name: mysql
|
name: mysql
|
||||||
version: 1.1.2
|
version: 1.2.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- MySQL Working Group (https://github.com/ansible-collections/community.mysql/wiki/MySQL-Working-Group)
|
- MySQL Working Group (https://github.com/ansible-collections/community.mysql/wiki/MySQL-Working-Group)
|
||||||
|
|
Loading…
Add table
Reference in a new issue