mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-18 14:56:17 -05:00
chore: Prepare release v3.3.0 (#705)
This commit is contained in:
parent
54649a1909
commit
d55c31b383
6 changed files with 27 additions and 21 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -1,9 +1,30 @@
|
|||
|
||||
<a name="v3.3.0"></a>
|
||||
## [v3.3.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.2.0...v3.3.0) (2025-04-18)
|
||||
|
||||
### Chore
|
||||
|
||||
* 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))
|
||||
|
||||
### Feat
|
||||
|
||||
* Implement support for docker context ([#704](https://github.com/kreuzwerker/terraform-provider-docker/issues/704))
|
||||
* disable_docker_daemon_check for provider ([#703](https://github.com/kreuzwerker/terraform-provider-docker/issues/703))
|
||||
* Implement tag triggers for docker_tag resource ([#702](https://github.com/kreuzwerker/terraform-provider-docker/issues/702))
|
||||
* Implement auth_config for docker_registry_image ([#701](https://github.com/kreuzwerker/terraform-provider-docker/issues/701))
|
||||
|
||||
### Fix
|
||||
|
||||
* Store correctly ports from server ([#698](https://github.com/kreuzwerker/terraform-provider-docker/issues/698))
|
||||
|
||||
|
||||
<a name="v3.2.0"></a>
|
||||
## [v3.2.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.1.2...v3.2.0) (2025-04-16)
|
||||
|
||||
### Chore
|
||||
|
||||
* Prepare release v3.2.0 ([#694](https://github.com/kreuzwerker/terraform-provider-docker/issues/694))
|
||||
* Upgrade golangci-lint to next major version ([#686](https://github.com/kreuzwerker/terraform-provider-docker/issues/686))
|
||||
|
||||
### Docs
|
||||
|
|
|
|||
|
|
@ -115,14 +115,14 @@ chlog-%:
|
|||
|
||||
replace-occurences-%:
|
||||
@echo "Replace occurences of old version strings..."
|
||||
sed -i "s/$(shell (svu --tag.prefix='' current))/$*/g" README.md docs/index.md examples/provider/provider-tf12.tf examples/provider/provider-tf13.tf
|
||||
sed -i "s/$(shell (svu --tag.prefix='' current))/$*/g" README.md docs/index.md examples/provider/provider-tf13.tf
|
||||
|
||||
release-%:
|
||||
@echo "Review the changes made by this script then execute the following:"
|
||||
@${MAKE} website-generation
|
||||
@echo "Review the changes made by this script then execute the following:"
|
||||
@echo
|
||||
@echo "git add CHANGELOG.md README.md docs/index.md examples/provider/provider-tf12.tf examples/provider/provider-tf13.tf && git commit -m 'chore: Prepare release $*' && git tag -m 'Release $*' ${TAG_PREFIX}$*"
|
||||
@echo "git add CHANGELOG.md README.md docs/index.md examples/provider/provider-tf13.tf && git commit -m 'chore: Prepare release $*' && git tag -m 'Release $*' ${TAG_PREFIX}$*"
|
||||
@echo
|
||||
@echo "Finally, push the changes:"
|
||||
@echo
|
||||
|
|
|
|||
|
|
@ -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.2.0/docs) of the registry
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/3.3.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.2.0"
|
||||
version = "3.3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "3.2.0"
|
||||
version = "3.3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,15 +0,0 @@
|
|||
provider "docker" {
|
||||
version = "~> 3.2.0"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
# Pulls the image
|
||||
resource "docker_image" "ubuntu" {
|
||||
name = "ubuntu:latest"
|
||||
}
|
||||
|
||||
# Create a container
|
||||
resource "docker_container" "foo" {
|
||||
image = docker_image.ubuntu.image_id
|
||||
name = "foo"
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "3.2.0"
|
||||
version = "3.3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue