release notes for v1.5.1 (#1589)
* release notes for v1.5.1 * release notes for v1.5.1
This commit is contained in:
parent
ea96245f64
commit
eda57e5400
40
CHANGELOG.md
40
CHANGELOG.md
|
|
@ -1,3 +1,37 @@
|
||||||
|
# v1.5.1 Release 2021-02-22
|
||||||
|
This release is a minor release with following a fix to version number for v1.5.0
|
||||||
|
The kaniko images now report the right version number.
|
||||||
|
|
||||||
|
The executor images in this release are:
|
||||||
|
```
|
||||||
|
gcr.io/kaniko-project/executor:v1.5.1
|
||||||
|
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.5.1 and
|
||||||
|
```
|
||||||
|
|
||||||
|
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.5.1
|
||||||
|
```
|
||||||
|
|
||||||
|
In this release, we have 1 new feature:
|
||||||
|
* Improve retry behavior for push operation [#1578](https://github.com/GoogleContainerTools/kaniko/pull/1578)
|
||||||
|
|
||||||
|
And followinf refactors/updates to documentation
|
||||||
|
* Added a video introduction to Kaniko [#1517](https://github.com/GoogleContainerTools/kaniko/pull/1517)
|
||||||
|
* Use up-to-date ca-certificates during build [#1580](https://github.com/GoogleContainerTools/kaniko/pull/1580)
|
||||||
|
|
||||||
|
|
||||||
|
Huge thank you for this release towards our contributors:
|
||||||
|
- Sascha Schwarze
|
||||||
|
- Tejal Desai
|
||||||
|
- Viktor Farcic
|
||||||
|
|
||||||
# v1.5.0 Release 2021-01-25
|
# v1.5.0 Release 2021-01-25
|
||||||
|
|
||||||
This releases publishes multi-arch image kaniko images for following platforms
|
This releases publishes multi-arch image kaniko images for following platforms
|
||||||
|
|
@ -9,19 +43,19 @@ If you want to add other platforms, please talk to @tejal29.
|
||||||
|
|
||||||
The executor images in this release are:
|
The executor images in this release are:
|
||||||
```
|
```
|
||||||
gcr.io/kaniko-project/executor:v1.4.0
|
gcr.io/kaniko-project/executor:v1.5.0
|
||||||
gcr.io/kaniko-project/executor:latest
|
gcr.io/kaniko-project/executor:latest
|
||||||
```
|
```
|
||||||
The debug images are available at:
|
The debug images are available at:
|
||||||
```
|
```
|
||||||
gcr.io/kaniko-project/executor:debug
|
gcr.io/kaniko-project/executor:debug
|
||||||
gcr.io/kaniko-project/executor:debug-v1.4.0 and
|
gcr.io/kaniko-project/executor:debug-v1.5.0 and
|
||||||
```
|
```
|
||||||
|
|
||||||
In this release, we have 2 slim executor images which don't contain any authentication binaries.
|
In this release, we have 2 slim executor images which don't contain any authentication binaries.
|
||||||
|
|
||||||
1. `gcr.io/kaniko-project/executor:slim` &
|
1. `gcr.io/kaniko-project/executor:slim` &
|
||||||
2. `gcr.io/kaniko-project/executor:slim-v1.4.0`
|
2. `gcr.io/kaniko-project/executor:slim-v1.5.0`
|
||||||
|
|
||||||
|
|
||||||
# New features:
|
# New features:
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -14,8 +14,8 @@
|
||||||
|
|
||||||
# Bump these on release
|
# Bump these on release
|
||||||
VERSION_MAJOR ?= 1
|
VERSION_MAJOR ?= 1
|
||||||
VERSION_MINOR ?= 3
|
VERSION_MINOR ?= 5
|
||||||
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