Skip to content

Commit 5c1ab2d

Browse files
authored
Prep changelogs for v1.15.0 release (#1138)
* move go module update note * add changelogs * add more * change enhancement to feature
1 parent 24e7ad7 commit 5c1ab2d

8 files changed

+41
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: ENHANCEMENTS
2+
body: 'resource: Updated `Create`, `Update`, `Read`, and `Delete` request and response objects to support the passing of identity data.'
3+
time: 2025-05-12T16:38:46.963101-04:00
4+
custom:
5+
Issue: "1112"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: ENHANCEMENTS
2+
body: 'resource: Updated `ImportState` method to allow importing by resource identity and returning identity data from import response.'
3+
time: 2025-05-12T16:40:27.088128-04:00
4+
custom:
5+
Issue: "1126"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: FEATURES
2+
body: 'tfsdk: Added `ResourceIdentity` struct to represent managed resource identity data.'
3+
time: 2025-05-12T16:32:15.682993-04:00
4+
custom:
5+
Issue: "1112"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: FEATURES
2+
body: 'resource/identityschema: New package for implementing managed resource identity schemas.'
3+
time: 2025-05-12T16:35:16.722291-04:00
4+
custom:
5+
Issue: "1107"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: FEATURES
2+
body: 'resource: Added new `ImportStatePassthroughWithIdentity` helper that can support both identity and ID importing via a single field.'
3+
time: 2025-05-12T16:41:33.806834-04:00
4+
custom:
5+
Issue: "1134"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
kind: FEATURES
2+
body: 'resource: Added `ResourceWithIdentity` interface for implementing managed resource identity.'
3+
time: 2025-05-12T17:05:10.02242-04:00
4+
custom:
5+
Issue: "1107"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
kind: NOTES
2+
body: 'all: This release contains a new interface and package for implmenting managed resource identity.
3+
Resource identity is data that is defined by a separate schema and is stored alongside resource state.
4+
Identity data is used by Terrform to uniquely identify a remote object and is meant to be immutable during
5+
the remote object''s lifecycle. Resources that support identity can now be imported using the `identity` attribute
6+
in Terraform configuration `import` blocks, available in Terraform v1.12+. The `resource.ResourceWithIdentity` interface
7+
can be implemented to support identity by defining an identity schema. Once the identity schema is defined, you can read
8+
and store identity data in the state file via the new `Identity` fields in the response objects on the resource CRUD methods.'
9+
time: 2025-05-12T16:44:41.300908-04:00
10+
custom:
11+
Issue: "1112"

0 commit comments

Comments
 (0)