diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 24506f6..c86fc89 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,32 @@ CHANGE THIS IN changelogs/config.yaml! Release Notes .. contents:: Topics +v0.4.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.clickhouse`` collection. +This changelog contains all changes to the modules and plugins in this collection +that have been made after the previous release. + +Minor Changes +------------- + +- clickhouse_db - add the ``cluster`` argument to execute commands on all cluster hosts. +- clickhouse_db - add the ``comment`` argument to set a comment on databases. +- clickhouse_db - add the ``target`` argument to rename the database. +- clickhouse_db - added the ability to rename databases. +- clickhouse_info - added the ability to collect information from system.functions. +- clickhouse_info - added the ability to collect information from system.quotas, system.settings_profiles. +- clickhouse_info - added the ability to collect information from system.storage_policies. + +New Modules +----------- + +- clickhouse_user - Creates or removes a ClickHouse user using the clickhouse-driver Client interface + v0.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 213f6c4..d29a513 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -71,3 +71,34 @@ releases: name: clickhouse_db namespace: '' release_date: '2024-02-15' + 0.4.0: + changes: + minor_changes: + - clickhouse_db - add the ``cluster`` argument to execute commands on all cluster + hosts. + - clickhouse_db - add the ``comment`` argument to set a comment on databases. + - clickhouse_db - add the ``target`` argument to rename the database. + - clickhouse_db - added the ability to rename databases. + - clickhouse_info - added the ability to collect information from system.functions. + - clickhouse_info - added the ability to collect information from system.quotas, + system.settings_profiles. + - clickhouse_info - added the ability to collect information from system.storage_policies. + release_summary: 'This is the minor release of the ``community.clickhouse`` + collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been made after the previous release.' + fragments: + - 0-clickhouse_info.yml + - 0.4.0.yml + - 1-clickhouse_db.yml + - 2-clickhouse_db.yml + - 2-clickhouse_info.yml + - 3-clickhouse_info.yml + modules: + - description: Creates or removes a ClickHouse user using the clickhouse-driver + Client interface + name: clickhouse_user + namespace: '' + release_date: '2024-03-14' diff --git a/changelogs/fragments/0-clickhouse_info.yml b/changelogs/fragments/0-clickhouse_info.yml deleted file mode 100644 index 926caef..0000000 --- a/changelogs/fragments/0-clickhouse_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - added the ability to collect information from system.quotas, system.settings_profiles. diff --git a/changelogs/fragments/1-clickhouse_db.yml b/changelogs/fragments/1-clickhouse_db.yml deleted file mode 100644 index c9508b8..0000000 --- a/changelogs/fragments/1-clickhouse_db.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_db - add the ``comment`` argument to set a comment on databases. diff --git a/changelogs/fragments/2-clickhouse_db.yml b/changelogs/fragments/2-clickhouse_db.yml deleted file mode 100644 index ca49d86..0000000 --- a/changelogs/fragments/2-clickhouse_db.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- clickhouse_db - added the ability to rename databases. -- clickhouse_db - add the ``cluster`` argument to execute commands on all cluster hosts. -- clickhouse_db - add the ``target`` argument to rename the database. \ No newline at end of file diff --git a/changelogs/fragments/2-clickhouse_info.yml b/changelogs/fragments/2-clickhouse_info.yml deleted file mode 100644 index ccb37f6..0000000 --- a/changelogs/fragments/2-clickhouse_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - added the ability to collect information from system.functions. diff --git a/changelogs/fragments/3-clickhouse_info.yml b/changelogs/fragments/3-clickhouse_info.yml deleted file mode 100644 index 2d7492e..0000000 --- a/changelogs/fragments/3-clickhouse_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - added the ability to collect information from system.storage_policies. diff --git a/galaxy.yml b/galaxy.yml index c28bd81..73798cf 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: clickhouse -version: 0.3.0 +version: 0.4.0 readme: README.md authors: - Ansible ClickHouse community