Skip to content

Commit 0385759

Browse files
authored
v1.69.0 Changelog (#990)
* chore: update changelog for v1.69.0 release * tests: fix GPG integration tests The upgradeOrganizationSettings method does not appear to be working for these API endpoints, but it is also not needed. Removing the calls to it allowed these tests to succeed.
1 parent de9170a commit 0385759

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Unreleased
22

3+
# v1.69.0
4+
35
## Enhancements
46

7+
* 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)
8+
* Add support for adding/updating key/value tags by @brandonc [#991](https://github.com/hashicorp/go-tfe/pull/991)
9+
* Add support for reading a registry module by its unique identifier by @dsa0x [#988](https://github.com/hashicorp/go-tfe/pull/988)
510
* Add support for enabling Stacks on an organization by @brandonc [#987](https://github.com/hashicorp/go-tfe/pull/987)
611
* Add support for filtering by key/value tags by @brandonc [#987](https://github.com/hashicorp/go-tfe/pull/987)
7-
* Add support for reading a registry module by its unique identifier by @dsa0x
8-
[#988](https://github.com/hashicorp/go-tfe/pull/988)
9-
* 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)
1012
* Adds `SpeculativePlanManagementEnabled` field to `Organization` by @lilincmu [#983](https://github.com/hashicorp/go-tfe/pull/983)
1113

1214
# v1.68.0

gpg_key_integration_test.go

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ func TestGPGKeyList(t *testing.T) {
2121
org2, org2Cleanup := createOrganization(t, client)
2222
t.Cleanup(org2Cleanup)
2323

24-
upgradeOrganizationSubscription(t, client, org1)
25-
upgradeOrganizationSubscription(t, client, org2)
26-
2724
provider1, provider1Cleanup := createRegistryProvider(t, client, org1, PrivateRegistry)
2825
t.Cleanup(provider1Cleanup)
2926

@@ -103,8 +100,6 @@ func TestGPGKeyCreate(t *testing.T) {
103100
org, orgCleanup := createOrganization(t, client)
104101
t.Cleanup(orgCleanup)
105102

106-
upgradeOrganizationSubscription(t, client, org)
107-
108103
provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry)
109104
t.Cleanup(providerCleanup)
110105

@@ -162,8 +157,6 @@ func TestGPGKeyRead(t *testing.T) {
162157
org, orgCleanup := createOrganization(t, client)
163158
t.Cleanup(orgCleanup)
164159

165-
upgradeOrganizationSubscription(t, client, org)
166-
167160
provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry)
168161
t.Cleanup(providerCleanup)
169162

@@ -201,8 +194,6 @@ func TestGPGKeyUpdate(t *testing.T) {
201194
org, orgCleanup := createOrganization(t, client)
202195
t.Cleanup(orgCleanup)
203196

204-
upgradeOrganizationSubscription(t, client, org)
205-
206197
provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry)
207198
t.Cleanup(providerCleanup)
208199

@@ -264,8 +255,6 @@ func TestGPGKeyDelete(t *testing.T) {
264255
org, orgCleanup := createOrganization(t, client)
265256
t.Cleanup(orgCleanup)
266257

267-
upgradeOrganizationSubscription(t, client, org)
268-
269258
provider, providerCleanup := createRegistryProvider(t, client, org, PrivateRegistry)
270259
t.Cleanup(providerCleanup)
271260

0 commit comments

Comments
 (0)