Skip to content

Commit

Permalink
v1.69.0 Changelog (#990)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
ctrombley authored Oct 25, 2024
1 parent de9170a commit 0385759
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 0 additions & 11 deletions gpg_key_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 0385759

Please sign in to comment.