diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 8b4ad8f0..4f494de9 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -39,6 +39,9 @@ jobs: - v3.6.4 - v3.6.5 - v3.6.6 + - v3.6.7 + - v3.6.8 + - v3.6.9 steps: - uses: actions/checkout@v4 - name: Set up Go diff --git a/GNUmakefile b/GNUmakefile index 7b0335a5..07efb0db 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ TEST_FUNC?=TestAccNetboxLocation_basic GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) DOCKER_COMPOSE=docker-compose -export NETBOX_VERSION=v3.6.5 +export NETBOX_VERSION=v3.6.9 export NETBOX_SERVER_URL=http://localhost:8001 export NETBOX_API_TOKEN=0123456789abcdef0123456789abcdef01234567 export NETBOX_TOKEN=$(NETBOX_API_TOKEN) diff --git a/README.md b/README.md index 47a3a505..92049a79 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Since version [1.6.6](https://github.com/e-breuninger/terraform-provider-netbox/ | Netbox version | Provider version | | --------------- | ---------------- | -| v3.6.0 - 3.6.6 | v3.7.0 and up | +| v3.6.0 - 3.6.9 | v3.7.0 and up | | v3.5.1 - 3.5.9 | v3.6.x | | v3.4.3 - 3.4.10 | v3.5.x | | v3.3.0 - 3.4.2 | v3.0.x - 3.5.1 | diff --git a/docs/index.md b/docs/index.md index 49981f98..eb9cb473 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,7 +16,7 @@ Netbox often makes breaking API changes even in non-major releases. Check the ta | Netbox version | Provider version | | --------------- | ---------------- | -| v3.6.0 - 3.6.6 | v3.7.0 and up | +| v3.6.0 - 3.6.9 | v3.7.0 and up | | v3.5.1 - 3.5.9 | v3.6.x | | v3.4.3 - 3.4.10 | v3.5.x | | v3.3.0 - 3.4.2 | v3.0.x - 3.5.1 | diff --git a/netbox/provider.go b/netbox/provider.go index fc8fcd76..0d118738 100644 --- a/netbox/provider.go +++ b/netbox/provider.go @@ -285,7 +285,7 @@ func providerConfigure(ctx context.Context, data *schema.ResourceData) (interfac netboxVersion := res.GetPayload().(map[string]interface{})["netbox-version"].(string) - supportedVersions := []string{"3.6.0", "3.6.1", "3.6.2", "3.6.3", "3.6.4", "3.6.5", "3.6.6"} + supportedVersions := []string{"3.6.0", "3.6.1", "3.6.2", "3.6.3", "3.6.4", "3.6.5", "3.6.6", "3.6.7", "3.6.8", "3.6.9"} if !slices.Contains(supportedVersions, netboxVersion) { // Currently, there is no way to test these warnings. There is an issue to track this: https://github.com/hashicorp/terraform-plugin-sdk/issues/864 diff --git a/templates/index.md.tmpl b/templates/index.md.tmpl index f8bc5ef7..2eab8195 100644 --- a/templates/index.md.tmpl +++ b/templates/index.md.tmpl @@ -16,7 +16,7 @@ Netbox often makes breaking API changes even in non-major releases. Check the ta | Netbox version | Provider version | | --------------- | ---------------- | -| v3.6.0 - 3.6.6 | v3.7.0 and up | +| v3.6.0 - 3.6.9 | v3.7.0 and up | | v3.5.1 - 3.5.9 | v3.6.x | | v3.4.3 - 3.4.10 | v3.5.x | | v3.3.0 - 3.4.2 | v3.0.x - 3.5.1 |