chore(release): release v1.12.1 (#2604)
This commit is contained in:
parent
974c494b9a
commit
9a30501c44
30
CHANGELOG.md
30
CHANGELOG.md
|
|
@ -1,3 +1,33 @@
|
||||||
|
# v1.12.1 Release 2023-06-29
|
||||||
|
|
||||||
|
The executor images in this release are:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:v1.12.1
|
||||||
|
gcr.io/kaniko-project/executor:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
The debug images are available at:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:debug
|
||||||
|
gcr.io/kaniko-project/executor:v1.12.1-debug
|
||||||
|
```
|
||||||
|
|
||||||
|
The slim executor images which don't contain any authentication binaries are available at:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:slim
|
||||||
|
gcr.io/kaniko-project/executor:v1.12.1-slim
|
||||||
|
```
|
||||||
|
|
||||||
|
The warmer images are available at:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/warmer:v1.12.1
|
||||||
|
gcr.io/kaniko-project/warmer:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
* fix: resolve issue where warmer CLI always validated optional arg -> breakage for majority of users [#2603](https://github.com/GoogleContainerTools/kaniko/pull/2603)
|
||||||
|
|
||||||
|
|
||||||
# v1.12.0 Release 2023-06-28
|
# v1.12.0 Release 2023-06-28
|
||||||
|
|
||||||
The executor images in this release are:
|
The executor images in this release are:
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -15,7 +15,7 @@
|
||||||
# Bump these on release
|
# Bump these on release
|
||||||
VERSION_MAJOR ?= 1
|
VERSION_MAJOR ?= 1
|
||||||
VERSION_MINOR ?= 12
|
VERSION_MINOR ?= 12
|
||||||
VERSION_BUILD ?= 0
|
VERSION_BUILD ?= 1
|
||||||
|
|
||||||
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||||
VERSION_PACKAGE = $(REPOPATH/pkg/version)
|
VERSION_PACKAGE = $(REPOPATH/pkg/version)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue