From 8054658c9e283bef3695968264f0cef65cf94314 Mon Sep 17 00:00:00 2001 From: Christopher Fitzner Date: Wed, 5 Jun 2024 14:49:09 -0700 Subject: [PATCH] Update cluster test versions to correct supported versions In our acceptance test we create clusters with the currently supported versions. The versions are out of date so we update them here to be the currently supported versions. --- CHANGELOG.md | 8 ++++++++ internal/provider/cluster_resource_test.go | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86cb95c2..47aeeb2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.2] - 2024-06-05 + +## Fixed + +- Updated cluster_resource tests for latest supported versions of the db. + +- Pinned version of go-releaser and updated arguments so it will work with version 2. + ## [1.7.1] - 2024-06-05 ## Fixed diff --git a/internal/provider/cluster_resource_test.go b/internal/provider/cluster_resource_test.go index 3c066bb4..7903cd91 100644 --- a/internal/provider/cluster_resource_test.go +++ b/internal/provider/cluster_resource_test.go @@ -41,10 +41,10 @@ const ( // The patch versions are just for mocks. They don't need to be the actual // latest available patch versions; they just need to resolve to the correct // major versions. - minSupportedClusterMajorVersion = "v23.1" - minSupportedClusterPatchVersion = "v23.1.0" - latestClusterMajorVersion = "v23.2" - latestClusterPatchVersion = "v23.2.0" + minSupportedClusterMajorVersion = "v23.2" + minSupportedClusterPatchVersion = "v23.2.0" + latestClusterMajorVersion = "v24.1" + latestClusterPatchVersion = "v24.1.0" ) // TestAccClusterResource attempts to create, check, update, and destroy