From 43cabd981001595424a05da0bdad229d9b7df66e Mon Sep 17 00:00:00 2001 From: bentsileviav Date: Thu, 22 Aug 2024 19:16:46 +0300 Subject: [PATCH] housekeeping for version 1.8.2 --- CHANGELOG.md | 12 ++++++++++-- dbt/adapters/clickhouse/__version__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d9b686d..a9fc4af5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -### Release [1.8.2], xxxx-xx-xx +### Release [1.8.2], 2024-08-22 +### Bug Fix +* It is now possible to add sn empty seed without rows. +* Fix `__dbt_backup` dropping when working on cluster. #### Improvements * You can now add projections to tables. The projection config should be added to the model config, for instance: ```python @@ -13,7 +16,12 @@ ) }} ``` Please be aware that this feature was added to distributed materialization as well, but might not fully function. -* Added a new *experimental* incremental strategy - `insert_overwrite` was added which replaces existing data in a target table partition by partition, ensuring only the specified partitions are overwritten with new data, which helps maintain performance and data consistency. This feature was not tested with distribution models and might not work with such materializations. +* Added a new *experimental* incremental strategy - `insert_overwrite` was added which replaces existing data in a target table partition by partition, ensuring only the specified partitions are overwritten with new data, which helps maintain performance and data consistency. This feature was not tested with distribution models and might not work with such materializations. +[Anton Bryzgalov](https://github.com/bryzgaloff) Thank you for your contribution! +* Schema changes for incremental models were improved and now include a `sync_all_column` option. For more information please [review this PR](https://github.com/ClickHouse/dbt-clickhouse/pull/332). +[Can Bekleyici](https://github.com/canbekley) huge thanks for your contribution. +* Support query settings in `view` materialization. +* Improve `listagg` macro. [PR](https://github.com/ClickHouse/dbt-clickhouse/pull/318). ### Release [1.8.1], 2024-07-11 diff --git a/dbt/adapters/clickhouse/__version__.py b/dbt/adapters/clickhouse/__version__.py index c642cc88..f9bbb758 100644 --- a/dbt/adapters/clickhouse/__version__.py +++ b/dbt/adapters/clickhouse/__version__.py @@ -1 +1 @@ -version = '1.8.1' +version = '1.8.2'