From 5cacb0ffc57fdd6409468d3e4a5ff4ea6c5232ad Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 6 May 2025 22:42:46 +0200 Subject: [PATCH] chore: Prepare release v3.5.0 (#721) --- CHANGELOG.md | 15 +++++++++++++++ README.md | 4 ++-- docs/index.md | 2 +- examples/provider/provider-tf13.tf | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d33f3b30..b9675493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,22 @@ + +## [v3.5.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.4.0...v3.5.0) (2025-05-06) + +### Feat + +* Implement using of buildx for docker_image ([#717](https://github.com/kreuzwerker/terraform-provider-docker/issues/717)) +* Support registries that return empty auth scope [#646](https://github.com/kreuzwerker/terraform-provider-docker/issues/646) +* Implement registry_image_manifests data source ([#714](https://github.com/kreuzwerker/terraform-provider-docker/issues/714)) +* Implement healthcheck start interval ([#713](https://github.com/kreuzwerker/terraform-provider-docker/issues/713)) + + ## [v3.4.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.3.0...v3.4.0) (2025-04-25) +### Chore + +* Prepare release v3.4.0 ([#712](https://github.com/kreuzwerker/terraform-provider-docker/issues/712)) + ### Feat * Implement volume_options subpath ([#710](https://github.com/kreuzwerker/terraform-provider-docker/issues/710)) diff --git a/README.md b/README.md index 0c5e6132..3915ade6 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide]( ## Example usage -Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.4.0/docs) of the registry +Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.5.0/docs) of the registry or use the following example: @@ -38,7 +38,7 @@ terraform { # since new versions are released frequently docker = { source = "kreuzwerker/docker" - version = "3.4.0" + version = "3.5.0" } } } diff --git a/docs/index.md b/docs/index.md index 6b18dda9..26f10869 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "3.4.0" + version = "3.5.0" } } } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index 00af1ead..015e1b41 100644 --- a/examples/provider/provider-tf13.tf +++ b/examples/provider/provider-tf13.tf @@ -2,7 +2,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "3.4.0" + version = "3.5.0" } } }