diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae599ff..23bbbabd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.8.8 - 2024-08-26 + +### Features + +* Add `wait_until_ready` option to `cluster` resources, which allows graceful cluster reconfiguration (i.e., with no downtime) for clusters with no sources or sinks. [#632](https://github.com/MaterializeInc/terraform-provider-materialize/pull/632) + * Example usage: + ```hcl + resource "materialize_cluster" "cluster" { + name = var.mz_cluster + size = "25cc" + wait_until_ready { + enabled = true + timeout = "10m" + on_timeout = "COMMIT" + } + } + ``` + +### Misc + +* Unify the cluster alter commands [#628](https://github.com/MaterializeInc/terraform-provider-materialize/pull/628) +* Switched tests to use the Rust Frontegg mock service [#634](https://github.com/MaterializeInc/terraform-provider-materialize/pull/634) + + ## 0.8.7 - 2024-08-15 ### Features