From ff5dc459eb2b64ca67ed7eddebe620ebbe66178a Mon Sep 17 00:00:00 2001 From: Sebastian Rivera Date: Thu, 24 Feb 2022 17:39:12 -0500 Subject: [PATCH] Add Changelog v1 --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..c48224041 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# v1.0.0 + +## Breaking Changes +* Renamed methods named Generate to Create for `AgentTokens`, `OrganizationTokens`, `TeamTokens`, `UserTokens` [#327](https://github.com/hashicorp/go-tfe/pull/327) +* Methods that express an action on a relationship have been prefixed with a verb, e.g `Current()` is now `ReadCurrent()` [#327](https://github.com/hashicorp/go-tfe/pull/327) +* All list option structs are now pointers [#309](https://github.com/hashicorp/go-tfe/pull/309) +* All errors have been refactored into constants in `errors.go` [#310](https://github.com/hashicorp/go-tfe/pull/310) +* The `ID` field in Create/Update option structs has been renamed to `Type` in accordance with the JSON:API spec [#190](https://github.com/hashicorp/go-tfe/pull/190), [#323](https://github.com/hashicorp/go-tfe/pull/323), [#332](https://github.com/hashicorp/go-tfe/pull/332) +* ID tuples (of 3 IDs or more) used to identify a resource have been refactored into a struct [#337](https://github.com/hashicorp/go-tfe/pull/337) + + +## Enhancements +* Added missing include fields for `AdminRuns`, `AgentPools`, `ConfigurationVersions`, `OAuthClients`, `Organizations`, `PolicyChecks`, `PolicySets`, `Policies` and `RunTriggers` [#334](https://github.com/hashicorp/go-tfe/pull/334) +* Cleanup documentation and improve consistency [#331](https://github.com/hashicorp/go-tfe/pull/331) +* Add more linters to our CI pipeline [#326](https://github.com/hashicorp/go-tfe/pull/326) + +## Bug Fixes +* Fixed invalid memory address error when `AdminSMTPSettingsUpdateOptions.Auth` field is empty and accessed [#335](https://github.com/hashicorp/go-tfe/pull/335) +