Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Housekeeping for version 1.8.2 #344

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/clickhouse/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '1.8.1'
version = '1.8.2'