release v1.6 (#1634)
This commit is contained in:
parent
b33f9655eb
commit
a0c96b4edc
37
CHANGELOG.md
37
CHANGELOG.md
|
|
@ -1,3 +1,40 @@
|
||||||
|
# v1.6.0 Release 2021-04-23
|
||||||
|
This is April's 2021 release.
|
||||||
|
|
||||||
|
The executor images in this release are:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:v1.6.0
|
||||||
|
gcr.io/kaniko-project/executor:latest
|
||||||
|
```
|
||||||
|
The debug images are available at:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:debug
|
||||||
|
gcr.io/kaniko-project/executor:debug-v1.6.0
|
||||||
|
```
|
||||||
|
|
||||||
|
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:slim-v1.6.0
|
||||||
|
```
|
||||||
|
|
||||||
|
* Support warming images by digest [#1629](https://github.com/GoogleContainerTools/kaniko/pull/1629)
|
||||||
|
* Fix resolution of Dockerfile relative dockerignore [#1607](https://github.com/GoogleContainerTools/kaniko/pull/1607)
|
||||||
|
* create parent directory before writing digest files [#1612](https://github.com/GoogleContainerTools/kaniko/pull/1612)
|
||||||
|
* adds ignore-path command arguments to executor [#1622](https://github.com/GoogleContainerTools/kaniko/pull/1622)
|
||||||
|
* Specifying a tarPath will push the image as well [#1597](https://github.com/GoogleContainerTools/kaniko/pull/1597)
|
||||||
|
|
||||||
|
Huge thank you for this release towards our contributors:
|
||||||
|
- Chris Hoffman
|
||||||
|
- Colin
|
||||||
|
- Jon Friesen
|
||||||
|
- Lars Gröber
|
||||||
|
- Sascha Schwarze
|
||||||
|
- Tejal Desai
|
||||||
|
- Viktor Farcic
|
||||||
|
- Vivek Kumar
|
||||||
|
- priyawadhwa
|
||||||
|
|
||||||
# v1.5.2 Release 2021-03-30
|
# v1.5.2 Release 2021-03-30
|
||||||
|
|
||||||
The executor images in this release are:
|
The executor images in this release are:
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -14,8 +14,8 @@
|
||||||
|
|
||||||
# Bump these on release
|
# Bump these on release
|
||||||
VERSION_MAJOR ?= 1
|
VERSION_MAJOR ?= 1
|
||||||
VERSION_MINOR ?= 5
|
VERSION_MINOR ?= 6
|
||||||
VERSION_BUILD ?= 2
|
VERSION_BUILD ?= 0
|
||||||
|
|
||||||
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