From f38b7c0bfa63508017a29100a8af0b05ca18f86c Mon Sep 17 00:00:00 2001 From: Austin Valle Date: Tue, 18 Mar 2025 16:25:12 -0400 Subject: [PATCH] chore: Prep for `v1.15.0-alpha.1` pre-release --- .changes/unreleased/NOTES-20250318-161843.yaml | 8 ++++++++ .goreleaser.yml | 1 + go.mod | 2 +- go.sum | 4 ++-- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 .changes/unreleased/NOTES-20250318-161843.yaml diff --git a/.changes/unreleased/NOTES-20250318-161843.yaml b/.changes/unreleased/NOTES-20250318-161843.yaml new file mode 100644 index 000000000..9f6fafc22 --- /dev/null +++ b/.changes/unreleased/NOTES-20250318-161843.yaml @@ -0,0 +1,8 @@ +kind: NOTES +body: This alpha pre-release contains an initial implementation for managed resource identity, which can used with Terraform v1.12.0-alpha20250312, + to store and read identity data during plan and apply workflows. A managed resource identity can be used by implementing the + optional `resource.ResourceWithIdentity` interface and defining an identity schema. Once the identity schema is defined, you can + read and store identity data in the state file via the new `Identity` fields in the response objects on the resource CRUD methods. +time: 2025-03-18T16:18:43.661104-04:00 +custom: + Issue: "1112" diff --git a/.goreleaser.yml b/.goreleaser.yml index e8f5fee93..78d877e55 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -5,5 +5,6 @@ builds: milestones: - close: true release: + prerelease: auto ids: - 'none' diff --git a/go.mod b/go.mod index 3687dc3cd..68acdcea9 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ toolchain go1.23.7 require ( github.com/google/go-cmp v0.7.0 - github.com/hashicorp/terraform-plugin-go v0.26.1-0.20250314120210-d406d3409aef + github.com/hashicorp/terraform-plugin-go v0.27.0-alpha.1 github.com/hashicorp/terraform-plugin-log v0.9.0 ) diff --git a/go.sum b/go.sum index 975600260..cf2a09e6c 100644 --- a/go.sum +++ b/go.sum @@ -21,8 +21,8 @@ github.com/hashicorp/go-plugin v1.6.3 h1:xgHB+ZUSYeuJi96WtxEjzi23uh7YQpznjGh0U0U github.com/hashicorp/go-plugin v1.6.3/go.mod h1:MRobyh+Wc/nYy1V4KAXUiYfzxoYhs7V1mlH1Z7iY2h0= github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/terraform-plugin-go v0.26.1-0.20250314120210-d406d3409aef h1:RtNtj/RAsw/ef2bpeMlCDo+HsREcQVyJ+20AzikH3kw= -github.com/hashicorp/terraform-plugin-go v0.26.1-0.20250314120210-d406d3409aef/go.mod h1:MfDwS/KnIy2QzCwdRtuqIjZ23gpYa9Vm+Z8cFpx8qtU= +github.com/hashicorp/terraform-plugin-go v0.27.0-alpha.1 h1:/IZFNUEafGnJGXRe2iNQQ+vtzEw/5qiD+gOxkFrNbi4= +github.com/hashicorp/terraform-plugin-go v0.27.0-alpha.1/go.mod h1:Tf2HngbyKvovAlGXgBOVGm3EDvbNaN/StUaTXwrej4o= github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0= github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow= github.com/hashicorp/terraform-registry-address v0.2.4 h1:JXu/zHB2Ymg/TGVCRu10XqNa4Sh2bWcqCNyKWjnCPJA=