mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Release 3.8.0 commit
This commit is contained in:
parent
f31d5a10c1
commit
a47a683f71
6 changed files with 59 additions and 38 deletions
|
@ -6,6 +6,30 @@ Community MySQL Collection Release Notes
|
|||
|
||||
This changelog describes changes after version 2.0.0.
|
||||
|
||||
v3.8.0
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
This is the minor release of the ``community.mysql`` collection.
|
||||
This changelog contains all changes to the modules and plugins in this
|
||||
collection that have been made after the previous release.
|
||||
|
||||
Major Changes
|
||||
-------------
|
||||
|
||||
- The community.mysql collection no longer supports ``ansible-core 2.12`` and ``ansible-core 2.13``. While we take no active measures to prevent usage and there are no plans to introduce incompatible code to the modules, we will stop testing those versions. Both are or will soon be End of Life and if you are still using them, you should consider upgrading to the ``latest Ansible / ansible-core 2.15 or later`` as soon as possible (https://github.com/ansible-collections/community.mysql/pull/574).
|
||||
- mysql_role - the ``column_case_sensitive`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your playbook expected the column to be automatically uppercased for your roles privileges, you should set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/578).
|
||||
- mysql_user - the ``column_case_sensitive`` argument's default value will be changed to ``true`` in community.mysql 4.0.0. If your playbook expected the column to be automatically uppercased for your users privileges, you should set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/577).
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580).
|
||||
- mysql_role - add ``column_case_sensitive`` option to prevent field names from being uppercased (https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
- mysql_user - add ``column_case_sensitive`` option to prevent field names from being uppercased (https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
|
||||
v3.7.2
|
||||
======
|
||||
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
minor_changes:
|
||||
|
||||
- mysql_user - add ``column_case_sensitive`` option to prevent field names
|
||||
from being uppercased
|
||||
(https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
- mysql_role - add ``column_case_sensitive`` option to prevent field names
|
||||
from being uppercased
|
||||
(https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
|
||||
major_changes:
|
||||
- mysql_user - the ``column_case_sensitive`` argument's default value will be
|
||||
changed to ``true`` in community.mysql 4.0.0. If your playbook expected the
|
||||
column to be automatically uppercased for your users privileges, you should
|
||||
set this to false explicitly
|
||||
(https://github.com/ansible-collections/community.mysql/issues/577).
|
||||
- mysql_role - the ``column_case_sensitive`` argument's default value will be
|
||||
changed to ``true`` in community.mysql 4.0.0. If your playbook expected the
|
||||
column to be automatically uppercased for your roles privileges, you should
|
||||
set this to false explicitly
|
||||
(https://github.com/ansible-collections/community.mysql/issues/578).
|
|
@ -346,3 +346,37 @@ releases:
|
|||
- 3.7.2.yml
|
||||
- 553_fix_connection_arguemnts_for_old_mysqldb_driver.yaml
|
||||
release_date: '2023-05-25'
|
||||
3.8.0:
|
||||
changes:
|
||||
major_changes:
|
||||
- The community.mysql collection no longer supports ``ansible-core 2.12`` and
|
||||
``ansible-core 2.13``. While we take no active measures to prevent usage and
|
||||
there are no plans to introduce incompatible code to the modules, we will
|
||||
stop testing those versions. Both are or will soon be End of Life and if you
|
||||
are still using them, you should consider upgrading to the ``latest Ansible
|
||||
/ ansible-core 2.15 or later`` as soon as possible (https://github.com/ansible-collections/community.mysql/pull/574).
|
||||
- mysql_role - the ``column_case_sensitive`` argument's default value will be
|
||||
changed to ``true`` in community.mysql 4.0.0. If your playbook expected the
|
||||
column to be automatically uppercased for your roles privileges, you should
|
||||
set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/578).
|
||||
- mysql_user - the ``column_case_sensitive`` argument's default value will be
|
||||
changed to ``true`` in community.mysql 4.0.0. If your playbook expected the
|
||||
column to be automatically uppercased for your users privileges, you should
|
||||
set this to false explicitly (https://github.com/ansible-collections/community.mysql/issues/577).
|
||||
minor_changes:
|
||||
- mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580).
|
||||
- mysql_role - add ``column_case_sensitive`` option to prevent field names from
|
||||
being uppercased (https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
- mysql_user - add ``column_case_sensitive`` option to prevent field names from
|
||||
being uppercased (https://github.com/ansible-collections/community.mysql/pull/569).
|
||||
release_summary: 'This is the minor release of the ``community.mysql`` collection.
|
||||
|
||||
This changelog contains all changes to the modules and plugins in this
|
||||
|
||||
collection that have been made after the previous release.'
|
||||
fragments:
|
||||
- 3.8.0.yml
|
||||
- 569_fix_column_uppercasing.yml
|
||||
- drop_ansible_core_2_12_and_2_13.yml
|
||||
- lie_mysql_info_users_info.yml
|
||||
release_date: '2023-10-25'
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
|
||||
major_changes:
|
||||
|
||||
- The community.mysql collection no longer supports ``ansible-core 2.12`` and
|
||||
``ansible-core 2.13``. While we take no active measures to prevent usage
|
||||
and there are no plans to introduce incompatible code to the modules, we
|
||||
will stop testing those versions. Both are or will soon be End of Life and
|
||||
if you are still using them, you should consider upgrading to the
|
||||
``latest Ansible / ansible-core 2.15 or later`` as soon as possible
|
||||
(https://github.com/ansible-collections/community.mysql/pull/574).
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
|
||||
minor_changes:
|
||||
|
||||
- mysql_info - add filter ``users_info`` (https://github.com/ansible-collections/community.mysql/pull/580).
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
namespace: community
|
||||
name: mysql
|
||||
version: 3.7.2
|
||||
version: 3.8.0
|
||||
readme: README.md
|
||||
authors:
|
||||
- Ansible community
|
||||
|
|
Loading…
Add table
Reference in a new issue