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

Update changelog #329

Merged
merged 2 commits into from
Jul 28, 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
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
### Unreleased
### Release [1.8.1], 2024-07-11
#### Bug Fix
- ClickHouse dictionaries are now correctly created "on cluster" when a cluster is defined.
* Refresh materialized_view table only if `--full-refresh` is specified.
* Fix temporary table creation to support dbt unit tests.
* ClickHouse dictionaries are now correctly created "on cluster" when a cluster is defined.
#### Improvements
* Added database prefix option for local tables of distributed tables (until this change, only a suffix was supported).
* You can now customize tcp_keepalive configuration for native connections.
* Implement listagg ([groupArray](https://clickhouse.com/docs/en/sql-reference/aggregate-functions/reference/grouparray)) macro.

### Release [1.8.0], 2024-06-13
#### Improvements
- Upgrade the connector to use dbt-core 1.8.0. More info about this upgrade can be found [here](https://github.com/dbt-labs/dbt-adapters/discussions/87).

Beginning in v1.8, dbt-core and adapters are decoupled. Going forward, your installations should explicitly include both dbt-core and the desired adapter. The new pip installation command should look like this:

```pip install dbt-core dbt-clickhouse```


### Release [1.7.7], 2024-05-31
#### Bug Fix
- Fix bool_or behavior (a cross-database dbt macro ).
- Fix query_settings for models with contracts.
- Fix the option to use Nullable and LowCardinality in column constraints.
- Specifying an empty or null value for a connection_overrides field produces invalid DDL for the dictionary materialization. A fix was introduced in this release.

#### Improvements
- The connector is now supporting [column codecs](https://clickhouse.com/blog/optimize-clickhouse-codecs-compression-schema#specialized-codecs).

### Release [1.7.6], 2024-04-12
#### Bug Fix
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ Replicated tables or the related `ON CLUSTER` functionality.
## Installation

Use your favorite Python package manager to install the app from PyPI, e.g.
```bash
pip install dbt-core dbt-clickhouse
```

> **_NOTE:_** Beginning in v1.8, dbt-core and adapters are decoupled. Therefore, the installation mentioned above explicitly includes both dbt-core and the desired adapter.If you use a version prior to 1.8.0 the pip installation command should look like this:


```bash
pip install dbt-clickhouse
Expand Down