diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d5947c3..f7b2324 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,27 @@ Community ProxySQL Collection Release Notes .. contents:: Topics +v1.5.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.proxysql`` collection. + +Minor Changes +------------- + +- roles/proxysql - add support for configuring REST API (https://github.com/ansible-collections/community.proxysql/pull/110). + +Bugfixes +-------- + +- proxysql_query_rules_fast_routing - fix query parameter order, that prevents updating ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). +- proxysql_query_rules_fast_routing - remove unnecessary ``flagIN`` check, that makes it impossible to update the ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). +- roles/proxysql - Fix wait_for task when `proxysql_admin_bind_address` is overridden (https://github.com/ansible-collections/community.proxysql/pull/115). +- roles/proxysql - Missing proxysql_global_variables module parameters (https://github.com/ansible-collections/community.proxysql/pull/116). + v1.4.0 ====== @@ -17,7 +38,7 @@ Because ansible <= 2.10 is EOL, ``community.proxysql`` will only be tested again Bugfixes -------- -- roles/proxysql - As of ProxySQL 2.4.0, ``client_found_rows`` mysql variable has been removed (https://github.com/ansible-collections/community.proxysql/pull/101). +- roles/proxysql - As of ProxySQL 2.4.0, `client_found_rows` mysql variable has been removed (https://github.com/ansible-collections/community.proxysql/pull/101). v1.3.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 981db35..0a0d16f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -97,9 +97,29 @@ releases: has been removed (https://github.com/ansible-collections/community.proxysql/pull/101). release_summary: 'This is the minor release of the ``community.proxysql`` collection. - Because ansible <= 2.10 is EOL, ``community.proxysql`` will only be tested against ansible > 2.10.' - + Because ansible <= 2.10 is EOL, ``community.proxysql`` will only be tested + against ansible > 2.10.' fragments: - 1.4.0.yml - 101-removed-mysql-variable.yml release_date: '2022-05-23' + 1.5.0: + changes: + bugfixes: + - proxysql_query_rules_fast_routing - fix query parameter order, that prevents + updating ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). + - proxysql_query_rules_fast_routing - remove unnecessary ``flagIN`` check, that + makes it impossible to update the ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). + - roles/proxysql - Fix wait_for task when `proxysql_admin_bind_address` is overridden + (https://github.com/ansible-collections/community.proxysql/pull/115). + - roles/proxysql - Missing proxysql_global_variables module parameters (https://github.com/ansible-collections/community.proxysql/pull/116). + minor_changes: + - roles/proxysql - add support for configuring REST API (https://github.com/ansible-collections/community.proxysql/pull/110). + release_summary: This is the minor release of the ``community.proxysql`` collection. + fragments: + - 1.5.0.yml + - 107-update_destination_hostgroup.yml + - 110-restapi.yml + - 115-wait-for-fix.yml + - 116-proxysql-global-variables-parameters.yml + release_date: '2023-01-04' diff --git a/changelogs/fragments/107-update_destination_hostgroup.yml b/changelogs/fragments/107-update_destination_hostgroup.yml deleted file mode 100644 index c79e0f9..0000000 --- a/changelogs/fragments/107-update_destination_hostgroup.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - proxysql_query_rules_fast_routing - remove unnecessary ``flagIN`` check, that makes it impossible to update the ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). - - proxysql_query_rules_fast_routing - fix query parameter order, that prevents updating ``destination_hostgroup`` parameter (https://github.com/ansible-collections/community.proxysql/pull/108). \ No newline at end of file diff --git a/changelogs/fragments/110-restapi.yml b/changelogs/fragments/110-restapi.yml deleted file mode 100644 index 64548cc..0000000 --- a/changelogs/fragments/110-restapi.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - roles/proxysql - add support for configuring REST API (https://github.com/ansible-collections/community.proxysql/pull/110). diff --git a/changelogs/fragments/115-wait-for-fix.yml b/changelogs/fragments/115-wait-for-fix.yml deleted file mode 100644 index 346759c..0000000 --- a/changelogs/fragments/115-wait-for-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - roles/proxysql - Fix wait_for task when `proxysql_admin_bind_address` is overridden (https://github.com/ansible-collections/community.proxysql/pull/115). diff --git a/changelogs/fragments/116-proxysql-global-variables-parameters.yml b/changelogs/fragments/116-proxysql-global-variables-parameters.yml deleted file mode 100644 index c037fb2..0000000 --- a/changelogs/fragments/116-proxysql-global-variables-parameters.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - roles/proxysql - Missing proxysql_global_variables module parameters (https://github.com/ansible-collections/community.proxysql/pull/116). diff --git a/galaxy.yml b/galaxy.yml index 43b1b4a..4d1513e 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: proxysql -version: 1.4.0 +version: 1.5.0 readme: README.md authors: - Ansible ProxySQL community