Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e80cafe

Browse files
committed
community.mysql: release 1.0.0
1 parent 3d41c26 commit e80cafe

File tree

2 files changed

+167
-0
lines changed

2 files changed

+167
-0
lines changed

changelogs/CHANGELOG.rst

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
========================================
2+
Community MySQL Collection Release Notes
3+
========================================
4+
5+
.. contents:: Topics
6+
7+
8+
v1.0.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
This is the first proper release of the ``community.mysql`` collection.
15+
This changelog contains all changes to the modules in this collection that were added after the release of Ansible 2.9.0.
16+
17+
18+
Minor Changes
19+
-------------
20+
21+
- mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048).
22+
- mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688).
23+
- mysql_db - add the ``check_implicit_admin`` parameter (https://github.com/ansible/ansible/issues/24418).
24+
- mysql_db - add the ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/67747).
25+
- mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498).
26+
- mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547).
27+
- mysql_db - add the ``restrict_config_file`` parameter (https://github.com/ansible/ansible/issues/34488).
28+
- mysql_db - add the ``unsafe_login_password`` parameter (https://github.com/ansible/ansible/issues/63955).
29+
- mysql_db - add the ``use_shell`` parameter (https://github.com/ansible/ansible/issues/20196).
30+
- mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319).
31+
- mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189).
32+
- mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727).
33+
- mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311).
34+
- mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243).
35+
- mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252).
36+
- mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326).
37+
- mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648).
38+
- mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036).
39+
- mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter (https://github.com/ansible/ansible/issues/42870).
40+
- mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533).
41+
- mysql_user - add TLS REQUIRES parameters (https://github.com/ansible-collections/community.mysql/pull/9).
42+
- mysql_user - add ``plugin_auth_string`` parameter (https://github.com/ansible/ansible/pull/44267).
43+
- mysql_user - add ``plugin_hash_string`` parameter (https://github.com/ansible/ansible/pull/44267).
44+
- mysql_user - add ``plugin`` parameter (https://github.com/ansible/ansible/pull/44267).
45+
- mysql_user - add the resource_limits parameter (https://github.com/ansible-collections/community.general/issues/133).
46+
- mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119).
47+
48+
Bugfixes
49+
--------
50+
51+
- mysql - dont mask ``mysql_connect`` function errors from modules (https://github.com/ansible/ansible/issues/64560).
52+
- mysql_db - fix Broken pipe error appearance when state is import and the target file is compressed (https://github.com/ansible/ansible/issues/20196).
53+
- mysql_db - fix bug in the ``db_import`` function introduced by https://github.com/ansible/ansible/pull/56721 (https://github.com/ansible/ansible/issues/65351).
54+
- mysql_info - add parameter for __collect to get only what are wanted (https://github.com/ansible-collections/community.general/pull/136).
55+
- mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976).
56+
- mysql_user - Fix idempotence when long grant lists are used (https://github.com/ansible/ansible/issues/68044)
57+
- mysql_user - Remove false positive ``no_log`` warning for ``update_password`` option
58+
- mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283).
59+
- mysql_user - add missed privileges to support (https://github.com/ansible-collections/community.general/issues/617).
60+
- mysql_user - fix ``host_all`` arguments conversion string formatting error (https://github.com/ansible/ansible/issues/29644).
61+
- mysql_user - fix overriding password to the same (https://github.com/ansible-collections/community.general/issues/543).
62+
- mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974).
63+
- mysql_user - fix the error No database selected (https://github.com/ansible/ansible/issues/68070).
64+
- mysql_user - make sure current_pass_hash is a string before using it in comparison (https://github.com/ansible/ansible/issues/60567).
65+
- mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239).

changelogs/changelog.yaml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
ancestor: null
2+
releases:
3+
1.0.0:
4+
changes:
5+
bugfixes:
6+
- mysql - dont mask ``mysql_connect`` function errors from modules (https://github.com/ansible/ansible/issues/64560).
7+
- mysql_db - fix Broken pipe error appearance when state is import and the target
8+
file is compressed (https://github.com/ansible/ansible/issues/20196).
9+
- mysql_db - fix bug in the ``db_import`` function introduced by https://github.com/ansible/ansible/pull/56721
10+
(https://github.com/ansible/ansible/issues/65351).
11+
- mysql_info - add parameter for __collect to get only what are wanted (https://github.com/ansible-collections/community.general/pull/136).
12+
- mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976).
13+
- mysql_user - Fix idempotence when long grant lists are used (https://github.com/ansible/ansible/issues/68044)
14+
- mysql_user - Remove false positive ``no_log`` warning for ``update_password``
15+
option
16+
- mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283).
17+
- mysql_user - add missed privileges to support (https://github.com/ansible-collections/community.general/issues/617).
18+
- mysql_user - fix ``host_all`` arguments conversion string formatting error
19+
(https://github.com/ansible/ansible/issues/29644).
20+
- mysql_user - fix overriding password to the same (https://github.com/ansible-collections/community.general/issues/543).
21+
- mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974).
22+
- mysql_user - fix the error No database selected (https://github.com/ansible/ansible/issues/68070).
23+
- mysql_user - make sure current_pass_hash is a string before using it in comparison
24+
(https://github.com/ansible/ansible/issues/60567).
25+
- mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239).
26+
minor_changes:
27+
- mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048).
28+
- mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688).
29+
- mysql_db - add the ``check_implicit_admin`` parameter (https://github.com/ansible/ansible/issues/24418).
30+
- mysql_db - add the ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/67747).
31+
- mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498).
32+
- mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547).
33+
- mysql_db - add the ``restrict_config_file`` parameter (https://github.com/ansible/ansible/issues/34488).
34+
- mysql_db - add the ``unsafe_login_password`` parameter (https://github.com/ansible/ansible/issues/63955).
35+
- mysql_db - add the ``use_shell`` parameter (https://github.com/ansible/ansible/issues/20196).
36+
- mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319).
37+
- mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189).
38+
- mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727).
39+
- mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311).
40+
- mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243).
41+
- mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252).
42+
- mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326).
43+
- mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648).
44+
- mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036).
45+
- mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter
46+
(https://github.com/ansible/ansible/issues/42870).
47+
- mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533).
48+
- mysql_user - add TLS REQUIRES parameters (https://github.com/ansible-collections/community.mysql/pull/9).
49+
- mysql_user - add ``plugin_auth_string`` parameter (https://github.com/ansible/ansible/pull/44267).
50+
- mysql_user - add ``plugin_hash_string`` parameter (https://github.com/ansible/ansible/pull/44267).
51+
- mysql_user - add ``plugin`` parameter (https://github.com/ansible/ansible/pull/44267).
52+
- mysql_user - add the resource_limits parameter (https://github.com/ansible-collections/community.general/issues/133).
53+
- mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119).
54+
release_summary: 'This is the first proper release of the ``community.mysql``
55+
collection.
56+
57+
This changelog contains all changes to the modules in this collection that
58+
were added after the release of Ansible 2.9.0.
59+
60+
'
61+
fragments:
62+
- 1.0.0.yml
63+
- 142-mysql_user_add_resource_limit_parameter.yml
64+
- 151-mysql_db_add_use_shell_parameter.yml
65+
- 18-mysql_user-update_password-no_log.yml
66+
- 225-mysql_user_fix_no_database_selected.yml
67+
- 285-mysql_user_invoke_lambda_support.yml
68+
- 369-mysql_user_add_tls_requires.yml
69+
- 428-mysql_db_add_unsafe_login_password_param.yml
70+
- 468-mysql_db_add_restrict_config_file_param.yml
71+
- 486-mysql_db_add_check_implicit_admin_parameter.yml
72+
- 490-mysql_user_fix_cursor_errors.yml
73+
- 609-mysql_user_fix_overriding_password_to_the_same.yml
74+
- 618-mysql_user_add_missed_privileges.yml
75+
- 62648-mysql_replication_add_master_use_gtid_param.yml
76+
- 63036-mysql_replication_add_return_value.yml
77+
- 63130-mysql_replication_add_master_delay_parameter.yml
78+
- 63189-mysql_info-global-status.yml
79+
- 63229-mysql_replication_add_connection_name_parameter.yml
80+
- 63271-mysql_replication_add_channel_parameter.yml
81+
- 63321-mysql_replication_add_resetmaster_to_mode.yml
82+
- 63371-mysql_info_add_exclude_fields_parameter.yml
83+
- 63546-mysql_replication_allow_to_pass_empty_values.yml
84+
- 63547-mysql_variables_add_mode_param.yml
85+
- 64059-mysql_user_fix_password_comparison.yaml
86+
- 64585-mysql_dont_mask_mysql_connect_errors_from_modules.yml
87+
- 65498-mysql_db_add_executed_commands_return_val.yml
88+
- 65547-mysql_db_add_force_param.yml
89+
- 65755-mysql_info_doesnt_list_empty_dbs.yml
90+
- 65789-mysql_user_add_plugin_authentication_parameters.yml
91+
- 66048-mysql_add_master_data_parameter.yml
92+
- 66252-mysql_replication_fail_on_error.yml
93+
- 66688-mysql_db_add_skip_lock_tables_option.yml
94+
- 66801-mysql_user_priv_can_be_dict.yml
95+
- 66806-mysql_variables_not_support_variables_with_dot.yml
96+
- 66974-mysql_user_doesnt_support_privs_with_underscore.yml
97+
- 67337-fix-proxysql-mysql-cursor.yaml
98+
- 67747-mysql_db_add_dump_extra_args_param.yml
99+
- 67767-mysql_db_fix_bug_introduced_by_56721.yml
100+
- mysql_info_add_parameter.yml
101+
- mysql_user_idempotency.yml
102+
release_date: '2020-08-17'

0 commit comments

Comments
 (0)