diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 29764dc..640b3b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,33 @@ CHANGE THIS IN changelogs/config.yaml! Release Notes .. contents:: Topics +v0.7.0 +====== + +Release Summary +--------------- + +This is a 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 - add the ``grants`` return value for users and roles. +- clickhouse_info - add the ``grants`` returns all grants for users and roles. +- clickhouse_info - add the ``settings_profile_elements`` returns all settings for users, profiles and roles. + +Breaking Changes / Porting Guide +-------------------------------- + +- clickhouse_info - removed ``functions`` for collecting information of created functions. A rare and unpopular feature. + +New Modules +----------- + +- clickhouse_cfg_info - Retrieves ClickHouse config file content and returns it as JSON + v0.6.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index da7ae3e..26a8ef7 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -143,3 +143,29 @@ releases: - 0-clickhouse_user.yml - 0.6.0.yml release_date: '2024-08-26' + 0.7.0: + changes: + breaking_changes: + - clickhouse_info - removed ``functions`` for collecting information of created + functions. A rare and unpopular feature. + minor_changes: + - clickhouse_info - add the ``grants`` return value for users and roles. + - clickhouse_info - add the ``grants`` returns all grants for users and roles. + - clickhouse_info - add the ``settings_profile_elements`` returns all settings + for users, profiles and roles. + release_summary: 'This is a 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-info_add_grants.yml + - 0.7.0.yml + - 1-info_add_all_grants.yml + - 2-info_add_all_settings_profiles.yml + - 3-info_get_functions.yml + modules: + - description: Retrieves ClickHouse config file content and returns it as JSON + name: clickhouse_cfg_info + namespace: '' + release_date: '2024-11-05' diff --git a/changelogs/fragments/0-info_add_grants.yml b/changelogs/fragments/0-info_add_grants.yml deleted file mode 100644 index d7480d5..0000000 --- a/changelogs/fragments/0-info_add_grants.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - add the ``grants`` return value for users and roles. diff --git a/changelogs/fragments/1-info_add_all_grants.yml b/changelogs/fragments/1-info_add_all_grants.yml deleted file mode 100644 index 4db7586..0000000 --- a/changelogs/fragments/1-info_add_all_grants.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - add the ``grants`` returns all grants for users and roles. diff --git a/changelogs/fragments/2-info_add_all_settings_profiles.yml b/changelogs/fragments/2-info_add_all_settings_profiles.yml deleted file mode 100644 index 48d191e..0000000 --- a/changelogs/fragments/2-info_add_all_settings_profiles.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- clickhouse_info - add the ``settings_profile_elements`` returns all settings for users, profiles and roles. diff --git a/changelogs/fragments/3-info_get_functions.yml b/changelogs/fragments/3-info_get_functions.yml deleted file mode 100644 index 8f70140..0000000 --- a/changelogs/fragments/3-info_get_functions.yml +++ /dev/null @@ -1,2 +0,0 @@ -breaking_changes: -- clickhouse_info - removed ``functions`` for collecting information of created functions. A rare and unpopular feature. diff --git a/galaxy.yml b/galaxy.yml index 833fbd7..d37027b 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: clickhouse -version: 0.6.0 +version: 0.7.0 readme: README.md authors: - Ansible ClickHouse community