diff --git a/CHANGELOG.md b/CHANGELOG.md index ff20c4cea..1a9ca3207 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,14 @@ # Unreleased +# v1.69.0 + ## Enhancements +* Adds BETA support for a variable set `Parent` relation, which is EXPERIMENTAL, SUBJECT TO CHANGE, and may not be available to all users by @jbonhag [#992](https://github.com/hashicorp/go-tfe/pull/992) +* Add support for adding/updating key/value tags by @brandonc [#991](https://github.com/hashicorp/go-tfe/pull/991) +* Add support for reading a registry module by its unique identifier by @dsa0x [#988](https://github.com/hashicorp/go-tfe/pull/988) * Add support for enabling Stacks on an organization by @brandonc [#987](https://github.com/hashicorp/go-tfe/pull/987) * Add support for filtering by key/value tags by @brandonc [#987](https://github.com/hashicorp/go-tfe/pull/987) -* Add support for reading a registry module by its unique identifier by @dsa0x - [#988](https://github.com/hashicorp/go-tfe/pull/988) -* Adds BETA support for a variable set `Parent` relation, which is EXPERIMENTAL, SUBJECT TO CHANGE, and may not be available to all users by @jbonhag [#992](https://github.com/hashicorp/go-tfe/pull/992) * Adds `SpeculativePlanManagementEnabled` field to `Organization` by @lilincmu [#983](https://github.com/hashicorp/go-tfe/pull/983) # v1.68.0 diff --git a/gpg_key_integration_test.go b/gpg_key_integration_test.go index bb86b626b..fa7d7f756 100644 --- a/gpg_key_integration_test.go +++ b/gpg_key_integration_test.go @@ -21,9 +21,6 @@ func TestGPGKeyList(t *testing.T) { org2, org2Cleanup := createOrganization(t, client) t.Cleanup(org2Cleanup) - upgradeOrganizationSubscription(t, client, org1) - upgradeOrganizationSubscription(t, client, org2) - provider1, provider1Cleanup := createRegistryProvider(t, client, org1, PrivateRegistry) t.Cleanup(provider1Cleanup) @@ -103,8 +100,6 @@ func TestGPGKeyCreate(t *testing.T) { org, orgCleanup := createOrganization(t, client) t.Cleanup(orgCleanup) - upgradeOrganizationSubscription(t, client, org) - provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry) t.Cleanup(providerCleanup) @@ -162,8 +157,6 @@ func TestGPGKeyRead(t *testing.T) { org, orgCleanup := createOrganization(t, client) t.Cleanup(orgCleanup) - upgradeOrganizationSubscription(t, client, org) - provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry) t.Cleanup(providerCleanup) @@ -201,8 +194,6 @@ func TestGPGKeyUpdate(t *testing.T) { org, orgCleanup := createOrganization(t, client) t.Cleanup(orgCleanup) - upgradeOrganizationSubscription(t, client, org) - provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry) t.Cleanup(providerCleanup) @@ -264,8 +255,6 @@ func TestGPGKeyDelete(t *testing.T) { org, orgCleanup := createOrganization(t, client) t.Cleanup(orgCleanup) - upgradeOrganizationSubscription(t, client, org) - provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry) t.Cleanup(providerCleanup)