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
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
## [terraform-provider-talos 0.6.1](https://github.com/siderolabs/terraform-provider-talos/releases/tag/v0.6.1) (2024-10-18)

Welcome to the v0.6.1 release of terraform-provider-talos!



Please try out the release binaries and report any issues at
https://github.com/siderolabs/terraform-provider-talos/issues.

### Talos Cluster Kubeconfig

The `talos_cluster_kubeconfig` resource now supports confiuring the certificate renewal check time.


### Component Updates

Talos sdk: v1.8.1


### Contributors

* Noel Georgi

### Changes
<details><summary>3 commits</summary>
<p>

* [`daddfb7`](https://github.com/siderolabs/terraform-provider-talos/commit/daddfb76cec78135ad62e8e46f4d965eb6eed52a) feat: configurable cert refresh time for kubeconfig
* [`96c9a85`](https://github.com/siderolabs/terraform-provider-talos/commit/96c9a857f9df8a28b7f32f1d0cf948a74a8acfcb) fix: resourceplanmodifiers for kubeconfig resource
* [`800573b`](https://github.com/siderolabs/terraform-provider-talos/commit/800573b841c901f562b8b2b151e58d86516944d0) fix: disks wipe on destroy
</p>
</details>

### Dependency Changes

* **github.com/hashicorp/terraform-plugin-framework** v1.11.0 -> v1.12.0
* **github.com/hashicorp/terraform-plugin-go** v0.23.0 -> v0.24.0
* **github.com/siderolabs/crypto** v0.4.4 -> v0.5.0
* **github.com/siderolabs/go-blockdevice** v0.4.7 -> v0.4.8
* **github.com/siderolabs/talos** v1.8.0 -> v1.8.1
* **github.com/siderolabs/talos/pkg/machinery** v1.8.0 -> v1.8.1

Previous release can be found at [v0.6.0](https://github.com/siderolabs/terraform-provider-talos/releases/tag/v0.6.0)


## [terraform-provider-talos 0.6.0](https://github.com/siderolabs/terraform-provider-talos/releases/tag/v0.6.0) (2024-09-23)

Welcome to the v0.6.0 release of terraform-provider-talos!
Expand Down
40 changes: 3 additions & 37 deletions hack/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,53 +5,19 @@ project_name = "terraform-provider-talos"
github_repo = "siderolabs/terraform-provider-talos"
ignore_deps = ["google.golang.org/grpc"]

previous = "v0.5.0"
previous = "v0.6.0"
pre_release = false

[notes]

[notes.talos_machine_secrets]
title = "Talos Machine Secrets"
description = """\
`talos_machine_secrets` resource now regenerates client config when the time to expiry is less than a month.
"""

[notes.talos_cluster_health]
title = "Talos Cluster Health"
description = """\
`talos_cluster_health` data source now has a way to skip running the Kubernetes components health check by setting `skip_kubernetes_checks` to `true`.
"""

[notes.talos_cluster_kubeconfig]
title = "Talos Cluster Kubeconfig"
description = """\
`talos_cluster_kubeconfig` data source is now deprecated and will be removed in the next minor release.
Use `talos_cluster_kubeconfig` resource instead.
The `talos_cluster_kubeconfig` resource will regenerate kubernetes client config when the time to expiry is less than a month.
"""

[notes.talos_machine_configuration_apply]
title = "Talos Machine Configuration Apply"
description = """\
`talos_machine_configuration_apply` resource now optionally supports resetting the machine back to maintenance mode.
"""

[notes.talos_machine_configuration]
title = "Talos Machine Configuration Data Source"
description = """\
`talos_machine_configuration` data source now defaults to generating config with documentation and examples disabled.

To restore the previous behavior, set `docs` and `examples` attributes to `true`.
"""

[notes.image-factory]
title = "Image Factory"
description = """\
Support for querying info from Image Factory and registering schematics is now supported via new Terraform resources.
The `talos_cluster_kubeconfig` resource now supports confiuring the certificate renewal check time.
"""

[notes.updates]
title = "Component Updates"
description = """\
Talos sdk: v1.8.0-alpha.1
Talos sdk: v1.8.1
"""
Loading