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.12 #687

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
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).
bobbyiliev marked this conversation as resolved.
Show resolved Hide resolved
Now users can configure the provider like this:
```hcl
# Self-hosted configuration
bobbyiliev marked this conversation as resolved.
Show resolved Hide resolved
provider "materialize" {
host = "localhost" # Required for self-hosted mode
bobbyiliev marked this conversation as resolved.
Show resolved Hide resolved
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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this config have any effect for self-managed deployments?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, nevermind. Just slow at reading code on mobile. 🫠

}
```

## 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
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