Skip to content

Commit

Permalink
Update changelog for v0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Dec 20, 2024
1 parent 2c60d09 commit 084d3d9
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,39 @@
# Changelog

## Unreleased
## 0.8.12 - 2024-12-20

* Remove outdated feature lifecycle annotations for features that are now Generally Available (GA).
## Features

* Support self-hosted instances [#674](https://github.com/MaterializeInc/terraform-provider-materialize/pull/674).
Now users can configure the provider like this:
```hcl
# Self-hosted configuration
provider "materialize" {
host = "localhost" # Required for self-hosted mode
port = 6875 # Optional, defaults to 6875
database = "materialize" # Optional, defaults to materialize
username = "materialize" # Optional, defaults to materialize
password = "" # Optional
sslmode = "disable" # Optional, defaults to require
}
# SaaS configuration (unchanged)
provider "materialize" {
password = "materialize_password"
default_region = "aws/us-east-1"
}
```
## Bug Fixes
* Fix intermittent test failures [#684](https://github.com/MaterializeInc/terraform-provider-materialize/pull/684)
* `materialize_sink_kafka` resource: sort topic config map keys for consistent SQL generation [#677](https://github.com/MaterializeInc/terraform-provider-materialize/pull/677)
## Misc
* Remove outdated feature lifecycle annotations for features that are now Generally Available (GA) [#679](https://github.com/MaterializeInc/terraform-provider-materialize/pull/679)
* Update Redpanda image reference: [#681](https://github.com/MaterializeInc/terraform-provider-materialize/pull/681)
* Routine dependency updates: [#672](https://github.com/MaterializeInc/terraform-provider-materialize/pull/672), [#673](https://github.com/MaterializeInc/terraform-provider-materialize/pull/673), [#678](https://github.com/MaterializeInc/terraform-provider-materialize/pull/678), [#680](https://github.com/MaterializeInc/terraform-provider-materialize/pull/680), [#683](https://github.com/MaterializeInc/terraform-provider-materialize/pull/683)
## 0.8.11 - 2024-11-13
Expand Down

0 comments on commit 084d3d9

Please sign in to comment.