From 63a52dc33f99416593758fb2384e150607254885 Mon Sep 17 00:00:00 2001 From: Sami Alajrami Date: Tue, 31 Mar 2020 16:33:44 +0200 Subject: [PATCH] releasing v3.2.0 --- .version | 2 +- README.md | 6 +++--- internal/app/main.go | 2 +- release-notes.md | 22 +++++++++++++--------- 4 files changed, 18 insertions(+), 14 deletions(-) diff --git a/.version b/.version index 6c8dc7eb..6d260c3a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v3.1.0 +v3.2.0 diff --git a/README.md b/README.md index 9cbd9642..9fb60a5e 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.0.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.2.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) ![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.0.0/helmsman_3.0.0_linux_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.2.0/helmsman_3.2.0_linux_amd64.tar.gz | tar zx # on MacOS -curl -L https://github.com/Praqma/helmsman/releases/download/v3.0.0/helmsman_3.0.0_darwin_amd64.tar.gz | tar zx +curl -L https://github.com/Praqma/helmsman/releases/download/v3.2.0/helmsman_3.2.0_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 f7e57c54..8a9f74cb 100644 --- a/internal/app/main.go +++ b/internal/app/main.go @@ -6,7 +6,7 @@ import ( const ( helmBin = "helm" - appVersion = "v3.1.0" + appVersion = "v3.2.0" tempFilesDir = ".helmsman-tmp" defaultContextName = "default" resourcePool = 10 diff --git a/release-notes.md b/release-notes.md index d2ff4166..03f20902 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,16 +1,20 @@ -# v3.1.0 +# v3.2.0 -This is a minor release. -It is recommended you read the [Helm 3 migration guide](https://helm.sh/docs/topics/v2_v3_migration/) before using this release. +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: -- Add helm v3.0.3 to Docker images built -- Fix multiple versions of chart found in the helm repositories; PR #397 -- Get existing helm repos first before adding new ones from DSF in order to limit actions to be taken; PR #403 -- Enhance the way -target flag checks releases states; PR #405 -- Take advantage of enhancements in -target flag flow for -group flags; PR #407 +- Disable checking helm-secrets plugin installed when hiera-eyaml used for secrets; PR #408 +- Make decide exiting on pending-upgrade chart state; PR #409 +- Changes to standard output and Slack messages; PR #410 +- Fix local charts installation not being idempotent; PR #411 +- Fix destroy command when repo cache is not up to date; PR #416 +- Fix namespace limits defined in TOML not properly parsed; PR #422 +- Fix race condition when applying limit ranges to multiple namespaces; PR #429 + # New features: -None +- Add `--context-override` flag to skip fetching context name from releases state; PR #420 +- Add `no-cleanup` flag to optionally keep k8s credentials on host; PR #423 +- Add `--migrate-context` flag support renaming helmsman contexts and enable smooth migration of helm 2 releases to 3; PR #427