From 006d4aad86d2be65d773c34bdcdccc190a6e8c64 Mon Sep 17 00:00:00 2001 From: Bobby Iliev Date: Mon, 7 Oct 2024 19:18:51 +0300 Subject: [PATCH] Update changelog for v0.8.10 (#662) --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 863e7857..c30f8bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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