From 9cd8610698a36fac88ea7dbe3407db7712d1a8d5f016ab3da43f1651c25e5c9a Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Fri, 23 Dec 2022 15:46:18 +0000 Subject: [PATCH] Accepting request 1045041 from home:manfred-h:devel:kubic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to version 0.149.0: New feature * Declare the use of --reuse-values in helmDefaults (#527) * Pass helmfile.yaml via stdin using -f - (#520) * The secrets field now accept go-getter URLs as well (#560) * Declare the use of Helm’s --post-render via Helmfile flags, helmfile.yaml helmDefaults and release fields (#510) * Support helm v3.10.3 (#579) What's Changed * Enhance make fmt to cover running gci for golangci-lint compat by @mumoshu in #515 * Use log capturing helper in TestApply_hooks by @mumoshu in #516 * Use the new log capturing helper in all remaining tests by @mumoshu in #517 * declare "reuse values" control mode in helmDefaults by @kkoralsky in #527 * Fix getArray function copy error by @xiaomudk in #533 * Remove redundant metadata fields from test samples by @xiaomudk in #535 * Allow helmfile statefile to passed by stdin by @xiaomudk in #520 * Refactor integration tests by @yxxhero in #531 * fix ghr badge by @yxxhero in #537 * fix unit test by @yxxhero in #538 * fix ghcr-badge in docs by @yxxhero in #539 * rework dockerfiles by @jouve in #519 * use dyff as yamldiff tool by @yxxhero in #542 * fix go mod by @yxxhero in #543 * build(deps): bump github.com/Masterminds/semver/v3 from 3.1.1 to 3.2.0 by @dependabot in #551 * build(deps): bump github.com/variantdev/vals from 0.19.0 to 0.20.0 by @dependabot in #552 * rm embrawtest/myapp/foo.yaml.gotmpl by @yxxhero in #554 * build(deps): bump github.com/Masterminds/sprig/v3 from 3.2.2 to 3.2.3 by @dependabot in #556 * typo: fix typo in cmd/apply.go by @yxxhero in #549 * build(deps): bump go.uber.org/zap from 1.23.0 to 1.24.0 by @dependabot in #557 * build(deps): bump golang.org/x/term from 0.2.0 to 0.3.0 by @dependabot in #562 * Use go-getter with secrets as well by @itscaro in #560 * Fix snapshot tests to pass regardless of helm version by @yxxhero in #572 * Fix preapply hooks are not called on no diff when run apply subcommand by @xiaomudk in #522 * build(deps): bump github.com/variantdev/vals from 0.20.0 to 0.21.0 by @dependabot in #570 * build(deps): bump github.com/go-test/deep from 1.0.8 to 1.1.0 by @dependabot in #569 * build(deps): bump k8s.io/apimachinery from 0.25.4 to 0.26.0 by @dependabot in #568 * Add documentation on go-getter cache by @itscaro in #566 * Allow running images with users other than root by @pathob in #546 * add xiaomudk as maintainer by @yxxhero in #504 * Avoid --skip-refresh on local charts by @indrekj in #541 * fea(#507): support assign --post-renderer flags , helmDefaults config , release config when use helm v3 by @tanguofu in #510 * remove temporary dir as well by @itscaro in #563 * build(deps): bump go.uber.org/multierr from 1.6.0 to 1.9.0 by @dependabot in #575 * add post render integration test by @yxxhero in #576 * clean: optimize post-render code by @yxxhero in #577 * build(deps): bump helm.sh/helm/v3 from 3.10.2 to 3.10.3 by @dependabot in #578 * bump helm to v3.10.3 by @yxxhero in #579 * update postrenderer docs by @yxxhero in #580 OBS-URL: https://build.opensuse.org/request/show/1045041 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=72 --- _service | 2 +- _servicedata | 2 +- helmfile-0.148.1.tar.gz | 3 -- helmfile-0.149.0.tar.gz | 3 ++ helmfile.changes | 71 +++++++++++++++++++++++++++++++++++++++++ helmfile.spec | 4 +-- vendor.tar.gz | 4 +-- 7 files changed, 80 insertions(+), 9 deletions(-) delete mode 100644 helmfile-0.148.1.tar.gz create mode 100644 helmfile-0.149.0.tar.gz diff --git a/_service b/_service index beba73c..30161c2 100644 --- a/_service +++ b/_service @@ -5,7 +5,7 @@ .git @PARENT_TAG@ v(.*) - v0.148.1 + v0.149.0 enable diff --git a/_servicedata b/_servicedata index 27bcbc1..88d2fea 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/helmfile/helmfile.git - f09ec18aa9d555f6c8f668bfbcf084a6e5e8ee6b + 7410316cf98a05eeac7b3c34763a1360d8c4d343 diff --git a/helmfile-0.148.1.tar.gz b/helmfile-0.148.1.tar.gz deleted file mode 100644 index f56d1a1..0000000 --- a/helmfile-0.148.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14601db8a2db074c1af000fbf8140ad7dccc221b6fdf5965fb404396a4cb9b42 -size 565020 diff --git a/helmfile-0.149.0.tar.gz b/helmfile-0.149.0.tar.gz new file mode 100644 index 0000000..b74f31d --- /dev/null +++ b/helmfile-0.149.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6e405d08a6bdcb0af7c90ea790a87b6758f38f49bf9fee77f5334787317655 +size 573391 diff --git a/helmfile.changes b/helmfile.changes index dc11bea..44e18b4 100644 --- a/helmfile.changes +++ b/helmfile.changes @@ -1,3 +1,74 @@ +------------------------------------------------------------------- +Fri Dec 23 15:20:12 UTC 2022 - Manfred Hollstein + +- Update to version 0.149.0: + New feature + * Declare the use of --reuse-values in helmDefaults (#527) + * Pass helmfile.yaml via stdin using -f - (#520) + * The secrets field now accept go-getter URLs as well (#560) + * Declare the use of Helm’s --post-render via Helmfile flags, + helmfile.yaml helmDefaults and release fields (#510) + * Support helm v3.10.3 (#579) + + What's Changed + * Enhance make fmt to cover running gci for golangci-lint compat + by @mumoshu in #515 + * Use log capturing helper in TestApply_hooks by @mumoshu in #516 + * Use the new log capturing helper in all remaining tests by + @mumoshu in #517 + * declare "reuse values" control mode in helmDefaults by + @kkoralsky in #527 + * Fix getArray function copy error by @xiaomudk in #533 + * Remove redundant metadata fields from test samples by + @xiaomudk in #535 + * Allow helmfile statefile to passed by stdin by @xiaomudk in #520 + * Refactor integration tests by @yxxhero in #531 + * fix ghr badge by @yxxhero in #537 + * fix unit test by @yxxhero in #538 + * fix ghcr-badge in docs by @yxxhero in #539 + * rework dockerfiles by @jouve in #519 + * use dyff as yamldiff tool by @yxxhero in #542 + * fix go mod by @yxxhero in #543 + * build(deps): bump github.com/Masterminds/semver/v3 from 3.1.1 + to 3.2.0 by @dependabot in #551 + * build(deps): bump github.com/variantdev/vals from 0.19.0 to + 0.20.0 by @dependabot in #552 + * rm embrawtest/myapp/foo.yaml.gotmpl by @yxxhero in #554 + * build(deps): bump github.com/Masterminds/sprig/v3 from 3.2.2 + to 3.2.3 by @dependabot in #556 + * typo: fix typo in cmd/apply.go by @yxxhero in #549 + * build(deps): bump go.uber.org/zap from 1.23.0 to 1.24.0 + by @dependabot in #557 + * build(deps): bump golang.org/x/term from 0.2.0 to 0.3.0 + by @dependabot in #562 + * Use go-getter with secrets as well by @itscaro in #560 + * Fix snapshot tests to pass regardless of helm version by + @yxxhero in #572 + * Fix preapply hooks are not called on no diff when run apply + subcommand by @xiaomudk in #522 + * build(deps): bump github.com/variantdev/vals from 0.20.0 to + 0.21.0 by @dependabot in #570 + * build(deps): bump github.com/go-test/deep from 1.0.8 to + 1.1.0 by @dependabot in #569 + * build(deps): bump k8s.io/apimachinery from 0.25.4 to + 0.26.0 by @dependabot in #568 + * Add documentation on go-getter cache by @itscaro in #566 + * Allow running images with users other than root by @pathob + in #546 + * add xiaomudk as maintainer by @yxxhero in #504 + * Avoid --skip-refresh on local charts by @indrekj in #541 + * fea(#507): support assign --post-renderer flags , helmDefaults + config , release config when use helm v3 by @tanguofu in #510 + * remove temporary dir as well by @itscaro in #563 + * build(deps): bump go.uber.org/multierr from 1.6.0 to 1.9.0 by + @dependabot in #575 + * add post render integration test by @yxxhero in #576 + * clean: optimize post-render code by @yxxhero in #577 + * build(deps): bump helm.sh/helm/v3 from 3.10.2 to 3.10.3 by + @dependabot in #578 + * bump helm to v3.10.3 by @yxxhero in #579 + * update postrenderer docs by @yxxhero in #580 + ------------------------------------------------------------------- Tue Nov 15 09:53:14 UTC 2022 - manfred.h@gmx.net diff --git a/helmfile.spec b/helmfile.spec index c611319..7ecd31b 100644 --- a/helmfile.spec +++ b/helmfile.spec @@ -17,9 +17,9 @@ # -%define git_commit f09ec18aa9d555f6c8f668bfbcf084a6e5e8ee6b +%define git_commit 7410316cf98a05eeac7b3c34763a1360d8c4d343 Name: helmfile -Version: 0.148.1 +Version: 0.149.0 Release: 0 Summary: Deploy Kubernetes Helm Charts License: MIT diff --git a/vendor.tar.gz b/vendor.tar.gz index f8f9b9e..bc0af7c 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87a670ad7304524c45396d3a71825f8612ff4e7b3deb1e48187e310bdf941c2d -size 11759639 +oid sha256:a0ac7b31dd3b6a8d97ac2b969214254049d7a0687fbfc44823f56686a726a980 +size 12080506