diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c84fb1b..d33f3b30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,24 @@ + +## [v3.4.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.3.0...v3.4.0) (2025-04-25) + +### Feat + +* Implement volume_options subpath ([#710](https://github.com/kreuzwerker/terraform-provider-docker/issues/710)) + +### Fix + +* Prevent recreation of image name is intentionally set to a fixed value ([#711](https://github.com/kreuzwerker/terraform-provider-docker/issues/711)) +* Improve container wait handling ([#709](https://github.com/kreuzwerker/terraform-provider-docker/issues/709)) +* Use auth_config block also for registry_image delete functionality ([#708](https://github.com/kreuzwerker/terraform-provider-docker/issues/708)) + + -## [v3.3.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.2.0...v3.3.0) (2025-04-18) +## [v3.3.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.2.0...v3.3.0) (2025-04-19) ### Chore +* Prepare release v3.3.0 ([#705](https://github.com/kreuzwerker/terraform-provider-docker/issues/705)) * Update terraform-plugin-sdk/v2 dependency ([#699](https://github.com/kreuzwerker/terraform-provider-docker/issues/699)) * Update docker/docker and docker/cli to newest stable ([#695](https://github.com/kreuzwerker/terraform-provider-docker/issues/695)) diff --git a/README.md b/README.md index aec6e632..0c5e6132 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.3.0/docs) of the registry +Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.4.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.3.0" + version = "3.4.0" } } } diff --git a/docs/index.md b/docs/index.md index dd09eacd..6b18dda9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { docker = { source = "kreuzwerker/docker" - version = "3.3.0" + version = "3.4.0" } } } diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf index 303bb241..00af1ead 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.3.0" + version = "3.4.0" } } }