You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@
3
3
## Enhancements
4
4
5
5
* Remove `DefaultProject` from `OrganizationUpdateOptions` to prevent updating an organization's default project, by @netramali[#1078](https://github.com/hashicorp/go-tfe/pull/1078)
6
+
* Adds support for creating multiple team tokens by adding `Description` to `TeamTokenCreateOptions`. This provides BETA support, which is EXPERIMENTAL, SUBJECT TO CHANGE, and may not be available to all users, by @mkam[#1083](https://github.com/hashicorp/go-tfe/pull/1083)
7
+
* Adds support for reading and deleting team tokens by ID, by @mkam[#1083](https://github.com/hashicorp/go-tfe/pull/1083)
Copy file name to clipboardExpand all lines: errors.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -236,6 +236,8 @@ var (
236
236
ErrInvalidAccessToken=errors.New("invalid value for access token")
237
237
238
238
ErrInvalidTaskResultsCallbackStatus=fmt.Errorf("invalid value for task result status. Must be either `%s`, `%s`, or `%s`", TaskFailed, TaskPassed, TaskRunning)
239
+
240
+
ErrInvalidDescriptionConflict=errors.New("invalid attributes\n\nValidation failed: Description has already been taken")
0 commit comments