Skip to content

Commit

Permalink
prepare release 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Davim committed Nov 24, 2020
1 parent bb26bb1 commit 2764e44
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.6.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.6.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)

Expand Down
2 changes: 1 addition & 1 deletion internal/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

const (
helmBin = "helm"
appVersion = "v3.6.0"
appVersion = "v3.6.1"
tempFilesDir = ".helmsman-tmp"
defaultContextName = "default"
resourcePool = 10
Expand Down
3 changes: 3 additions & 0 deletions internal/app/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ func (s *state) disableUntargetedApps(groups, targets []string) {
}
}

if s.Namespaces == nil || len(s.Namespaces) == 0 {
return
}
for nsName, ns := range s.Namespaces {
if _, ok := namespaces[nsName]; !ok {
ns.Disable()
Expand Down
12 changes: 3 additions & 9 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# v3.6.0
# v3.6.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.
## New features

- Lifecycle hooks can now be shell commands or script in addition to k8s resources (#543)
- The Helm release secrets are annotated with the result from the lifecycle hooks

## Fixes and improvements

- Code cleanup
- Performance improvements (#543; #545; #547)
- Fixed a bug when the chart is renamed (#546)
- Fixed NPE when no config is passed to the NSs (#551)
- Fixed wrong detection of executable hook (#549)

0 comments on commit 2764e44

Please sign in to comment.