Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 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.

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
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading