Skip to content

Commit

Permalink
Update version, modules and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
quintush committed Jul 26, 2021
1 parent 1b78da1 commit 7f27ba3
Show file tree
Hide file tree
Showing 5 changed files with 172 additions and 52 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.2.7 / 2021-07-26
==================
- Added samples for contains mapping (resolves #107)
- Improved errorhandling, show complete error on failure, when failed_template validator is not used (resolves #109)
- Fixed import-values (credits to: @rquinio1A, resolves #115)
- Added samples for subsubcharts and global values (resolves #114)
- Fix small documentation improvements and corrections (credits to: @jglick, @krichter722, @craig-mcmahon)
- Update packages to lates version

0.2.6 / 2021-03-31
==================
- Add support for list of templates on tests (credits to: @stevelipinski)
Expand Down
29 changes: 14 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,33 @@ require (
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
github.com/bradleyjkemp/cupaloy/v2 v2.6.0
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
github.com/fatih/color v1.12.0
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.4.1
github.com/pmezard/go-difflib v1.0.0
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect
golang.org/x/sys v0.0.0-20210603125802-9665404d3644 // indirect
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
google.golang.org/appengine v1.6.7 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210716203947-853a461950ff // indirect
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
helm.sh/helm/v3 v3.6.0
k8s.io/apiextensions-apiserver v0.21.1 // indirect
helm.sh/helm/v3 v3.6.2
k8s.io/apiextensions-apiserver v0.21.3 // indirect
k8s.io/helm v2.17.0+incompatible
k8s.io/klog/v2 v2.9.0 // indirect
k8s.io/utils v0.0.0-20210527160623-6fdb442a123b // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.1.1 // indirect
k8s.io/klog/v2 v2.10.0 // indirect
k8s.io/utils v0.0.0-20210722164352-7f3ee0f31471 // indirect
)
Loading

0 comments on commit 7f27ba3

Please sign in to comment.