From 9866a4276529ea632064e9d11ae5edfa22942fa9 Mon Sep 17 00:00:00 2001 From: Sami Alajrami Date: Fri, 15 May 2020 16:34:35 +0200 Subject: [PATCH] releasing v3.4.1 --- .version | 2 +- README.md | 6 +++--- internal/app/main.go | 2 +- release-notes.md | 14 ++++++-------- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.version b/.version index b299be97..3d67a549 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.3.0 +v3.4.1 diff --git a/README.md b/README.md index 9f425fc5..ec351f68 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.4.0&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master) +[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.4.1&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master) ![helmsman-logo](docs/images/helmsman.png) @@ -61,9 +61,9 @@ If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plug Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the different versions. ``` # on Linux -curl -L https://github.com/Praqma/helmsman/releases/download/v3.2.0/helmsman_3.2.0_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.4.1/helmsman_3.4.1_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.2.0/helmsman_3.2.0_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.4.1/helmsman_3.4.1_darwin_amd64.tar.gz | tar zx mv helmsman /usr/local/bin/helmsman ``` diff --git a/internal/app/main.go b/internal/app/main.go index fc17574b..6acad813 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -6,7 +6,7 @@ import ( const ( helmBin = "helm" - appVersion = "v3.4.0" + appVersion = "v3.4.1" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index 1dc536c2..ae9a03c4 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,16 +1,14 @@ -# v3.4.0 +# v3.4.1 If you migrating from Helmsman v1.x, it is recommended you read the [migration guide](https://github.com/Praqma/helmsman/blob/master/docs/how_to/misc/migrate_to_3.md) before using this release. > Starting from Helmsman v3.0.0 GA release, support for Helmsman v1.x will be limited to bug fixes. # Fixes and improvements: -- Respect dry-run flag with kubectl commands; PR #462 -- Add gnupg to Docker image; PR #449 -- Allow absolute paths for values/secrets/etc files; PR #459 -- Fix inconsistent helm args between install and upgrade; PR #458 +- Validate env vars used in DSF (and other) files are set in th environment before expanding them. PR #463 +- Pass chart version to helm show commands to avoid errors with develop chart versions. PR #464 +- Report the right error messages when releases are in pending state. PR #465 +- Randomize Helmsman's temporary file names to avoid errors when using the same file basename multiple times. PR #470 # New features: -- Add lifecycle hooks into Helmsman; PR #421 -- Support for using --history-max helm upgrade flag; PR #460 -- Support the Helm --set-file flag; PR #444 +None.