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 for v0.8.4 #611

Merged
merged 1 commit into from
Jul 16, 2024
Merged
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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 0.8.4 - 2024-07-15

### Features

* Add support for adding and removing subsources for the `materialize_source_mysql` resource [#604](https://github.com/MaterializeInc/terraform-provider-materialize/pull/604)
* Allow the `roles` attribute for the `materialize_user` resource to be updated without `forceNew` [#610](https://github.com/MaterializeInc/terraform-provider-materialize/pull/610)
* Add `key_compatibility_level` and `value_compatibility_level` attributes to the
`materialize_sink_kafka` resource [#600](https://github.com/MaterializeInc/terraform-provider-materialize/pull/600)
* Add `progress_topic_replication_factor` attribute to the `materialize_connection_kafka` resource [#598](https://github.com/MaterializeInc/terraform-provider-materialize/pull/598)
* Add topics options to the `materialize_sink_kafka` resource [#597](https://github.com/MaterializeInc/terraform-provider-materialize/pull/597).
See the [Kafka documentation](https://kafka.apache.org/documentation/#topicconfigs) for available configs. For example:
```hcl
topic_replication_factor = 1
topic_partition_count = 6
topic_config = {
"cleanup.policy" = "compact"
"retention.ms" = "86400000"
}
```

### Bug Fixes

* Fix a bug in the `materialize_source_kafka` resource where the value format JSON was not processed correctly [#607](https://github.com/MaterializeInc/terraform-provider-materialize/pull/607)

### Misc

* Fix CI intermittent failing tests [#609](https://github.com/MaterializeInc/terraform-provider-materialize/pull/609)
* Fix connections data source tests [#594](https://github.com/MaterializeInc/terraform-provider-materialize/pull/594)
* Routine dependency updates: [#608](https://github.com/MaterializeInc/terraform-provider-materialize/pull/608)

## 0.8.3 - 2024-07-08

### Features
Expand Down