Skip to content

Commit

Permalink
Update changelog for v0.8.10 (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev authored Oct 7, 2024
1 parent 5a14e89 commit 006d4aa
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.8.10 - 2024-10-7

## Features

* Add support for `partition_by` attribute in `materialize_sink_kafka` [#659](https://github.com/MaterializeInc/terraform-provider-materialize/pull/659)
* The `partition_by` attribute accepts a SQL expression used to partition the data in the Kafka sink. Can only be used with `ENVELOPE UPSERT`.
* Example usage:
```hcl
resource "materialize_sink_kafka" "orders_kafka_sink" {
name = "orders_sink"
kafka_connection {
name = "kafka_connection"
}
topic = "orders_topic"
partition_by = "column_name"
# Additional configuration...
}
```

## Misc

* Set `transaction_isolation` as conneciton option instead of executing a `SET` command [#660](https://github.com/MaterializeInc/terraform-provider-materialize/pull/660)
* Routine dependency updates: [#661](https://github.com/MaterializeInc/terraform-provider-materialize/pull/661)

## 0.8.9 - 2024-09-30

### BugFixes
Expand Down

0 comments on commit 006d4aa

Please sign in to comment.