Skip to content

Commit 3831a00

Browse files
authored
chore: Prepare release v3.4.0 (#712)
1 parent 0d414d1 commit 3831a00

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11

2+
<a name="v3.4.0"></a>
3+
## [v3.4.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.3.0...v3.4.0) (2025-04-25)
4+
5+
### Feat
6+
7+
* Implement volume_options subpath ([#710](https://github.com/kreuzwerker/terraform-provider-docker/issues/710))
8+
9+
### Fix
10+
11+
* Prevent recreation of image name is intentionally set to a fixed value ([#711](https://github.com/kreuzwerker/terraform-provider-docker/issues/711))
12+
* Improve container wait handling ([#709](https://github.com/kreuzwerker/terraform-provider-docker/issues/709))
13+
* Use auth_config block also for registry_image delete functionality ([#708](https://github.com/kreuzwerker/terraform-provider-docker/issues/708))
14+
15+
216
<a name="v3.3.0"></a>
3-
## [v3.3.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.2.0...v3.3.0) (2025-04-18)
17+
## [v3.3.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.2.0...v3.3.0) (2025-04-19)
418

519
### Chore
620

21+
* Prepare release v3.3.0 ([#705](https://github.com/kreuzwerker/terraform-provider-docker/issues/705))
722
* Update terraform-plugin-sdk/v2 dependency ([#699](https://github.com/kreuzwerker/terraform-provider-docker/issues/699))
823
* Update docker/docker and docker/cli to newest stable ([#695](https://github.com/kreuzwerker/terraform-provider-docker/issues/695))
924

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
2626

2727
## Example usage
2828

29-
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.3.0/docs) of the registry
29+
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.4.0/docs) of the registry
3030
or use the following example:
3131

3232

@@ -38,7 +38,7 @@ terraform {
3838
# since new versions are released frequently
3939
docker = {
4040
source = "kreuzwerker/docker"
41-
version = "3.3.0"
41+
version = "3.4.0"
4242
}
4343
}
4444
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
docker = {
2727
source = "kreuzwerker/docker"
28-
version = "3.3.0"
28+
version = "3.4.0"
2929
}
3030
}
3131
}

examples/provider/provider-tf13.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
docker = {
44
source = "kreuzwerker/docker"
5-
version = "3.3.0"
5+
version = "3.4.0"
66
}
77
}
88
}

0 commit comments

Comments
 (0)