Skip to content

Commit

Permalink
Update cluster test versions to correct supported versions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fantapop committed Jun 5, 2024
1 parent 1cd60f1 commit 8054658
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions internal/provider/cluster_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8054658

Please sign in to comment.