Skip to content

Commit 78f9620

Browse files
Merge branch 'main' into TF-27757/deployment-step-advance
2 parents d1c7595 + 13e81e4 commit 78f9620

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Unreleased
22

3+
# v1.88.0
4+
35
## Enhancements
46

57
* Adds BETA support for reading, testing and updating Organization Audit Configuration by @glennsarti-hashi [#1151](https://github.com/hashicorp/go-tfe/pull/1151)
68
* Adds `Completed` status to `StackConfiguration` by @hwatkins05-hashicorp [#1163](https://github.com/hashicorp/go-tfe/pull/1163)
9+
* Adds `CreatedAt` and `UpdatedAt` fields to `StackConfiguration` by @Maed223 [#1168](https://github.com/hashicorp/go-tfe/pull/1168)
710
* Adds endpoint for advancing `StackDeploymentStep` by @hwatkins05-hashicorp [#1166](https://github.com/hashicorp/go-tfe/pull/1166)
811

912
# v1.87.0

stack.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ type StackConfiguration struct {
131131
ErrorMessage *string `jsonapi:"attr,error-message"`
132132
EventStreamURL string `jsonapi:"attr,event-stream-url"`
133133
Diagnostics []*StackDiagnostic `jsonapi:"attr,diags"`
134+
CreatedAt time.Time `jsonapi:"attr,created-at,iso8601"`
135+
UpdatedAt time.Time `jsonapi:"attr,updated-at,iso8601"`
134136

135137
Stack *Stack `jsonapi:"relation,stack"`
136138
}

0 commit comments

Comments
 (0)