From 25fe87f94c783e604c0697a7621b4644b1e1a9ed Mon Sep 17 00:00:00 2001 From: bobbyiliev Date: Mon, 20 Oct 2025 13:50:01 +0300 Subject: [PATCH 1/2] Update changelog for v0.9.0 --- CHANGELOG.md | 15 +++++++++++++++ pkg/provider/provider.go | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 183efcc5..a42ce70b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.9.0 - 2025-10-20 + +### Breaking Changes + +* Removed the `COUNTER` and `KEY VALUE` load generator types from the `materialize_source_load_generator` resource. These types are no longer supported in Materialize. [#748](https://github.com/MaterializeInc/terraform-provider-materialize/pull/748) + + This change aligns the provider with recent updates to Materialize's new `CREATE TABLE ... FROM SOURCE` model, which simplifies how sources and tables are managed. The removed load generator types were legacy single-output generators that are no longer available in the product. + + The rest of the load generator types (`AUCTION`, `MARKETING`, and `TPCH`) remain supported. + +### Misc + +* Routine dependency updates: [#749](https://github.com/MaterializeInc/terraform-provider-materialize/pull/749) +* Removed invalid secrets examples from documentation [#745](https://github.com/MaterializeInc/terraform-provider-materialize/pull/745) + ## 0.8.22 - 2025-09-18 ### Features diff --git a/pkg/provider/provider.go b/pkg/provider/provider.go index 029605d3..023d8137 100644 --- a/pkg/provider/provider.go +++ b/pkg/provider/provider.go @@ -38,7 +38,7 @@ func Provider(version string) *schema.Provider { DefaultFunc: schema.EnvDefaultFunc("MZ_SSLMODE", "require"), Description: "For testing purposes, the SSL mode to use.", }, - // TODO: Switch name to Admin Endpoint for consistency: + // TODO: Switch name to Admin Endpoint for consistency "endpoint": { Type: schema.TypeString, Optional: true, From 72ca44d17d20f92e6644bed6851da558eac205be Mon Sep 17 00:00:00 2001 From: Bobby Iliev Date: Mon, 20 Oct 2025 14:06:15 +0300 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Dennis Felsing --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a42ce70b..7c47e488 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ### Breaking Changes -* Removed the `COUNTER` and `KEY VALUE` load generator types from the `materialize_source_load_generator` resource. These types are no longer supported in Materialize. [#748](https://github.com/MaterializeInc/terraform-provider-materialize/pull/748) +* Removed the `COUNTER` and `KEY VALUE` load generator types from the `materialize_source_load_generator` resource. These load generators are no longer supported in Materialize. [#748](https://github.com/MaterializeInc/terraform-provider-materialize/pull/748) This change aligns the provider with recent updates to Materialize's new `CREATE TABLE ... FROM SOURCE` model, which simplifies how sources and tables are managed. The removed load generator types were legacy single-output generators that are no longer available in the product.