Skip to content

Commit 9553912

Browse files
authored
Merge pull request #517 from hashicorp/gs/actually-create-task-result
Create a TaskResult object for the client
2 parents 5896f85 + 6297e2d commit 9553912

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## Enhancements
44
* Beta removal for `RunListOptions`, in addition to a Field rename (Name -> User) by @mjyocca [#472](https://github.com/hashicorp/go-tfe/pull/472)
55

6+
## Bug Fixes
7+
* Fixed invalid memory address error when using `TaskResults` field by @glennsarti [#517](https://github.com/hashicorp/go-tfe/pull/517)
8+
69
# v1.8.0
710

811
## Enhancements

tfe.go

+1
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ func NewClient(cfg *Config) (*Client, error) {
386386
client.StateVersionOutputs = &stateVersionOutputs{client: client}
387387
client.StateVersions = &stateVersions{client: client}
388388
client.TaskStages = &taskStages{client: client}
389+
client.TaskResults = &taskResults{client: client}
389390
client.Teams = &teams{client: client}
390391
client.TeamAccess = &teamAccesses{client: client}
391392
client.TeamMembers = &teamMembers{client: client}

0 commit comments

Comments
 (0)