v0.3.0
Features
- Add
key_not_enforced
tomaterialize_sink_kafka
#361
BugFixes
- Fix a bug where topics were defined after keys in
materialize_sink_kafka
create statements #358 - Correct
ForceNew
for column attributes inmaterialize_table
#363
Misc
- Update go.mod version to
1.20
#369
Breaking Changes
- Previously, blocks within resources that included optional
schema_name
anddatabase_name
attributes would inherit the top level attributes of the resource if set. So in the following example:The Postgres connection would have the schema name ofresource "materialize_source_postgres" "example_source_postgres" { name = "source_postgres" schema_name = "my_schema" database_name = "my_database" postgres_connection { name = "postgres_connection" } }
my_schema
and database namemy_database
. Now, ifschema_name
ordatabase_name
are not set, they will use the same defaults as top level attributes (public
for schema andmaterialize
for database) #353
Full Changelog: v0.2.2...v0.3.0