mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-03 04:09:29 -05:00
chore: Prepare release v2.23.1
This commit is contained in:
parent
3ccc15181b
commit
4dd3603786
5 changed files with 20 additions and 6 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,7 +1,21 @@
|
|||
|
||||
<a name="v2.23.1"></a>
|
||||
## [v2.23.1](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.23.0...v2.23.1) (2022-11-23)
|
||||
|
||||
### Fix
|
||||
|
||||
* Update shasum of busybox:1.35.0 tag in test.
|
||||
* Handle Auth Header Scopes ([#482](https://github.com/kreuzwerker/terraform-provider-docker/issues/482))
|
||||
* Set OS_ARCH from GOHOSTOS and GOHOSTARCH ([#477](https://github.com/kreuzwerker/terraform-provider-docker/issues/477))
|
||||
|
||||
|
||||
<a name="v2.23.0"></a>
|
||||
## [v2.23.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.22.0...v2.23.0) (2022-11-02)
|
||||
|
||||
### Chore
|
||||
|
||||
* Prepare release v2.23.0
|
||||
|
||||
### Feat
|
||||
|
||||
* wait container healthy state ([#467](https://github.com/kreuzwerker/terraform-provider-docker/issues/467))
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ $ make build
|
|||
|
||||
## Example usage
|
||||
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.23.0/docs) of the registry
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.23.1/docs) of the registry
|
||||
or use the following example:
|
||||
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ terraform {
|
|||
# since new versions are released frequently
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.23.0"
|
||||
version = "2.23.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.23.0"
|
||||
version = "2.23.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
|
|||
|
||||
```terraform
|
||||
provider "docker" {
|
||||
version = "~> 2.23.0"
|
||||
version = "~> 2.23.1"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
provider "docker" {
|
||||
version = "~> 2.23.0"
|
||||
version = "~> 2.23.1"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.23.0"
|
||||
version = "2.23.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue