From 37ce306aca01bc3b6080a10323426eae7ce1e298 Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Fri, 17 Jan 2020 10:46:16 -0800 Subject: [PATCH] release v0.16.0 --- CHANGELOG.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fff49e9b9..fdbfa0e866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,57 @@ +# v0.16.0 Release - 2020-01-17 + +Happy New Year 2020! + +## Bug Fixes +* Support for private registries in the cache warmer [#941](https://github.com/GoogleContainerTools/kaniko/pull/941) +* Fix bug with docker compatibility ArgsEscaped [#964](https://github.com/GoogleContainerTools/kaniko/pull/964) +* Clean code (Condition is always 'false' because 'err' is always 'nil' ). [#967](https://github.com/GoogleContainerTools/kaniko/pull/967) +* Fix #647 Copy dir permissions [#961](https://github.com/GoogleContainerTools/kaniko/pull/961) +* Allow setting serviceAccount in integration test [#965](https://github.com/GoogleContainerTools/kaniko/pull/965) +* Fix #926 cache warmer and method signature [#927](https://github.com/GoogleContainerTools/kaniko/pull/927) +* Fix #948 update valid license years [#949](https://github.com/GoogleContainerTools/kaniko/pull/949) +* Move hash bang to first line. [#954](https://github.com/GoogleContainerTools/kaniko/pull/954) +* Fix #944 include docker-credential-acr-linux [#945](https://github.com/GoogleContainerTools/kaniko/pull/945) +* Fix #925 broken insecure pull [#932](https://github.com/GoogleContainerTools/kaniko/pull/932) +* Push to ECR using instance roles [#930](https://github.com/GoogleContainerTools/kaniko/pull/930) +* Upgrade aws go sdk for supporting eks oidc credential chain [#832](https://github.com/GoogleContainerTools/kaniko/pull/832) +* Push image [#866](https://github.com/GoogleContainerTools/kaniko/pull/866) + +# Updates and Refactors +* Fixes #950 integration test failing on go 1.13 [#955](https://github.com/GoogleContainerTools/kaniko/pull/955) +* Tidy dependencies [#939](https://github.com/GoogleContainerTools/kaniko/pull/939) +* changing to modules from dependencies [#869](https://github.com/GoogleContainerTools/kaniko/pull/869) +* Changing Log to trace [#920](https://github.com/GoogleContainerTools/kaniko/pull/920) + +# Documentation +* docs: fix document on DoBuild [#668](https://github.com/GoogleContainerTools/kaniko/pull/668) +* Update outdated toc in README.md [#867](https://github.com/GoogleContainerTools/kaniko/pull/867) + +Huge thank you for this release towards our contributors: +- Adrian Mouat +- Balint Pato +- Ben Einaudi +- Benjamin EINAUDI +- Carlos Sanchez +- Cole Wippern +- Daniel Strobusch +- Eduard Laur +- Fahri Yardımcı +- Josh Soref +- lou-lan +- Nao YONASHIRO +- poy +- Prashant Arya +- priyawadhwa +- Pweetoo +- Remko van Hunen +- Sam Stoelinga +- Stijn De Haes +- Tejal Desai +- tommaso.doninelli +- Will Ripley + + # v0.15.0 Release - 2019-12-20 ## Bug fixes diff --git a/Makefile b/Makefile index c2a26e0d91..b7d4c4516f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ # Bump these on release VERSION_MAJOR ?= 0 -VERSION_MINOR ?= 15 +VERSION_MINOR ?= 16 VERSION_BUILD ?= 0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)