From 1d1934a55fd6335ce3317f0f1a01fcfb8d22ea35 Mon Sep 17 00:00:00 2001 From: Michael Yocca Date: Fri, 15 Jul 2022 14:12:23 -0700 Subject: [PATCH 1/3] add ConfigurationSource option --- configuration_version.go | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration_version.go b/configuration_version.go index 4f55b886b..b02e8143a 100644 --- a/configuration_version.go +++ b/configuration_version.go @@ -74,6 +74,7 @@ const ( ConfigurationSourceBitbucket ConfigurationSource = "bitbucket" ConfigurationSourceGithub ConfigurationSource = "github" ConfigurationSourceGitlab ConfigurationSource = "gitlab" + ConfigurationSourceAdo ConfigurationSource = "ado" ConfigurationSourceTerraform ConfigurationSource = "terraform" ) From 60a0dfb32699d94215c4d9d6c94317be548e5ced Mon Sep 17 00:00:00 2001 From: Michael Yocca Date: Mon, 18 Jul 2022 09:16:42 -0700 Subject: [PATCH 2/3] add entry to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 393cae96a..5885ea4c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ * Add `Query` param field to `AgentPoolListOptions` to allow searching based on agent pool name, by @JarrettSpiker [#417](https://github.com/hashicorp/go-tfe/pull/417) * Add organization scope and allowed workspaces field for scope agents by @Netra2104 [#453](https://github.com/hashicorp/go-tfe/pull/453) * Adds `Namespace` and `RegistryName` fields to `RegistryModuleID` to allow reading of Public Registry Modules by @Uk1288 [#464](https://github.com/hashicorp/go-tfe/pull/464) +* Adds `ConfigurationSourceAdo` configuration source option [#467](https://github.com/hashicorp/go-tfe/pull/467) ## Bug fixes * Fixed JSON mapping for Configuration Versions failing to properly set the `speculative` property [#459](https://github.com/hashicorp/go-tfe/pull/459) From c6d6ddd1d6f66f3fb6e1f1bc4114cc8a58253193 Mon Sep 17 00:00:00 2001 From: Michael Yocca Date: Mon, 18 Jul 2022 09:51:39 -0700 Subject: [PATCH 3/3] update changelog entry to correct release --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5885ea4c4..8d50e8cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ # v1.6.0 * Add `Name` field to `OAuthClient` by @barrettclark [#466](https://github.com/hashicorp/go-tfe/pull/466) +* Add `ConfigurationSourceAdo` configuration source option by @mjyocca [#467](https://github.com/hashicorp/go-tfe/pull/467) # v1.5.0 @@ -10,7 +11,6 @@ * Add `Query` param field to `AgentPoolListOptions` to allow searching based on agent pool name, by @JarrettSpiker [#417](https://github.com/hashicorp/go-tfe/pull/417) * Add organization scope and allowed workspaces field for scope agents by @Netra2104 [#453](https://github.com/hashicorp/go-tfe/pull/453) * Adds `Namespace` and `RegistryName` fields to `RegistryModuleID` to allow reading of Public Registry Modules by @Uk1288 [#464](https://github.com/hashicorp/go-tfe/pull/464) -* Adds `ConfigurationSourceAdo` configuration source option [#467](https://github.com/hashicorp/go-tfe/pull/467) ## Bug fixes * Fixed JSON mapping for Configuration Versions failing to properly set the `speculative` property [#459](https://github.com/hashicorp/go-tfe/pull/459)