diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 688dc63..24506f6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,31 @@ CHANGE THIS IN changelogs/config.yaml! Release Notes .. contents:: Topics +v0.3.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_info - added the ability to collect information from system.tables, system.dictionaries, system.merge_tree_settings. + +Bugfixes +-------- + +- clickhouse_client - Add support for returned values of types ``IPv4Address`` and ``IPv6Address``. +- clickhouse_client - Add support for returned values of types ``UUID`` and ``decimal``. + +New Modules +----------- + +- clickhouse_db - Creates or removes a ClickHouse database using the clickhouse-driver Client interface v0.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 54f3dbe..213f6c4 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -44,3 +44,30 @@ releases: - 0-clickhouse_info_limit.yml - 0.2.0.yml release_date: '2024-01-31' + 0.3.0: + changes: + bugfixes: + - clickhouse_client - Add support for returned values of types ``IPv4Address`` + and ``IPv6Address``. + - clickhouse_client - Add support for returned values of types ``UUID`` and + ``decimal``. + minor_changes: + - clickhouse_info - added the ability to collect information from system.tables, + system.dictionaries, system.merge_tree_settings. + 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.3.0.yml + - 1-clickhouse_client.yml + - 2-clickhouse_client.yml + modules: + - description: Creates or removes a ClickHouse database using the clickhouse-driver + Client interface + name: clickhouse_db + namespace: '' + release_date: '2024-02-15' diff --git a/changelogs/fragments/0-clickhouse_info.yml b/changelogs/fragments/0-clickhouse_info.yml deleted file mode 100644 index dd420be..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.tables, system.dictionaries, system.merge_tree_settings. \ No newline at end of file diff --git a/changelogs/fragments/1-clickhouse_client.yml b/changelogs/fragments/1-clickhouse_client.yml deleted file mode 100644 index 8b6ef88..0000000 --- a/changelogs/fragments/1-clickhouse_client.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- clickhouse_client - Add support for returned values of types ``UUID`` and ``decimal``. diff --git a/changelogs/fragments/2-clickhouse_client.yml b/changelogs/fragments/2-clickhouse_client.yml deleted file mode 100644 index ab64f79..0000000 --- a/changelogs/fragments/2-clickhouse_client.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- clickhouse_client - Add support for returned values of types ``IPv4Address`` and ``IPv6Address``. diff --git a/galaxy.yml b/galaxy.yml index c788e4b..c28bd81 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: clickhouse -version: 0.2.0 +version: 0.3.0 readme: README.md authors: - Ansible ClickHouse community