From 03af96c477e7f667cc04a7ed17e7c64ba170e09b6a41217babb5507e813ec7f5 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Tue, 15 Nov 2022 10:12:49 +0000 Subject: [PATCH] Accepting request 1035804 from home:manfred-h:devel:kubic - Update to version 0.148.1: What's Changed * Introduce a new test helper for easier log snapshot testing by @mumoshu in #514 * fix: helmfile template fails when selector matches a chart fetched with go-getter by @yxxhero in #499 - Update to version 0.148.0: What's Changed * fix: child process not exit when recive term signal by @yxxhero in #418 * deps: build with go1.19 by @chenrui333 in #420 * Update ci.yaml by @mumoshu in #422 * fix helmfile version issue in docker image by @yxxhero in #427 * Prevent excessive log in tests by @mumoshu in #424 * Fix preapply hook behavior by @mumoshu in #423 * build(deps): bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by @dependabot in #433 * deps: update dockerfile dependencies by @chenrui333 in #421 * feat: add helm-diff and kustomize in ci matrix by @yxxhero in #434 * build(deps): bump helm.sh/helm/v3 from 3.10.0 to 3.10.1 by @dependabot in #436 * build(deps): bump k8s.io/apimachinery from 0.25.2 to 0.25.3 by @dependabot in #439 * fix: issue path in test on windows by @yxxhero in #449 * fix: fix deps args by @yxxhero in #446 * fix helmfile diff error in window platform by @yxxhero in #451 * move HELMFILE_UPGRADE_NOTICE_DISABLED into envvar file by @yxxhero in #441 * Add --skip-refresh flag to the build command by @indrekj in #444 * fix: needs logic in chart stage by @yxxhero in #458 * fix typo by @yxxhero in #461 * build(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.1 by @dependabot in #462 * fix --debug flag by @yxxhero in #465 * use curl instead of wget & update helm to 3.10.1 by @itscaro in #467 * add basepath along with filepath into yaml comment by @itscaro in #460 * build(deps): bump github.com/spf13/cobra from 1.6.0 to 1.6.1 by @dependabot in #470 * Fix OCI example by @itscaro in #476 * fix chart needs test issue by @yxxhero in #480 * use fs.Getwd() to get working dir for sub helmfile by @itscaro in #471 * Document git for windows env auto-prefix #481 by @strainovic in #487 * fix oci:// chart by @itscaro in #477 * Allow to override build date with SOURCE_DATE_EPOCH by @bmwiedemann in #486 * Add subcommand init for checks and installs helmfile deps by @xiaomudk in #389 * split run.sh to make run.sh be more clear. by @yxxhero in #485 * remove hooks dir by @yxxhero in #484 * fix: args parse issue by @yxxhero in #457 * fix deps issues by @yxxhero in #492 * test: add template anchors merge e2e test by @yxxhero in #494 * feat: add go test total cover by @yxxhero in #495 * Add --output-dir-template flag to the fetch command by @elchenberg in #456 * build(deps): bump helm.sh/helm/v3 from 3.10.1 to 3.10.2 by @dependabot in #511 * bump: helm to 3.10.2 by @yxxhero in #512 * build(deps): bump k8s.io/apimachinery from 0.25.3 to 0.25.4 by @dependabot in #513 * Add the ability to specify a lock file by @lassizci in #432 OBS-URL: https://build.opensuse.org/request/show/1035804 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=69 --- _service | 2 +- _servicedata | 2 +- helmfile-0.147.0.tar.gz | 3 -- helmfile-0.148.1.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.147.0.tar.gz create mode 100644 helmfile-0.148.1.tar.gz diff --git a/_service b/_service index 3ef6b16..beba73c 100644 --- a/_service +++ b/_service @@ -5,7 +5,7 @@ .git @PARENT_TAG@ v(.*) - v0.147.0 + v0.148.1 enable diff --git a/_servicedata b/_servicedata index ce38ebb..27bcbc1 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/helmfile/helmfile.git - ad257554c9fdd9e9cb036939dcea191540003517 + f09ec18aa9d555f6c8f668bfbcf084a6e5e8ee6b diff --git a/helmfile-0.147.0.tar.gz b/helmfile-0.147.0.tar.gz deleted file mode 100644 index 6918b7d..0000000 --- a/helmfile-0.147.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01ee83360e3bb07a3a0855763d8a6478d44e89ad0e3be55687faac20aacb273c -size 545762 diff --git a/helmfile-0.148.1.tar.gz b/helmfile-0.148.1.tar.gz new file mode 100644 index 0000000..f56d1a1 --- /dev/null +++ b/helmfile-0.148.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14601db8a2db074c1af000fbf8140ad7dccc221b6fdf5965fb404396a4cb9b42 +size 565020 diff --git a/helmfile.changes b/helmfile.changes index fced598..1269d06 100644 --- a/helmfile.changes +++ b/helmfile.changes @@ -1,3 +1,74 @@ +------------------------------------------------------------------- +Tue Nov 15 09:44:47 UTC 2022 - manfred.h@gmx.net + +- Update to version 0.148.1: + What's Changed + * Introduce a new test helper for easier log snapshot testing by + @mumoshu in #514 + * fix: helmfile template fails when selector matches a chart + fetched with go-getter by @yxxhero in #499 + +- Update to version 0.148.0: + What's Changed + * fix: child process not exit when recive term signal by @yxxhero + in #418 + * deps: build with go1.19 by @chenrui333 in #420 + * Update ci.yaml by @mumoshu in #422 + * fix helmfile version issue in docker image by @yxxhero in #427 + * Prevent excessive log in tests by @mumoshu in #424 + * Fix preapply hook behavior by @mumoshu in #423 + * build(deps): bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by + @dependabot in #433 + * deps: update dockerfile dependencies by @chenrui333 in #421 + * feat: add helm-diff and kustomize in ci matrix by @yxxhero + in #434 + * build(deps): bump helm.sh/helm/v3 from 3.10.0 to 3.10.1 by + @dependabot in #436 + * build(deps): bump k8s.io/apimachinery from 0.25.2 to 0.25.3 + by @dependabot in #439 + * fix: issue path in test on windows by @yxxhero in #449 + * fix: fix deps args by @yxxhero in #446 + * fix helmfile diff error in window platform by @yxxhero in #451 + * move HELMFILE_UPGRADE_NOTICE_DISABLED into envvar file by + @yxxhero in #441 + * Add --skip-refresh flag to the build command by @indrekj in #444 + * fix: needs logic in chart stage by @yxxhero in #458 + * fix typo by @yxxhero in #461 + * build(deps): bump github.com/stretchr/testify from 1.8.0 to + 1.8.1 by @dependabot in #462 + * fix --debug flag by @yxxhero in #465 + * use curl instead of wget & update helm to 3.10.1 by @itscaro + in #467 + * add basepath along with filepath into yaml comment by @itscaro + in #460 + * build(deps): bump github.com/spf13/cobra from 1.6.0 to 1.6.1 + by @dependabot in #470 + * Fix OCI example by @itscaro in #476 + * fix chart needs test issue by @yxxhero in #480 + * use fs.Getwd() to get working dir for sub helmfile by @itscaro + in #471 + * Document git for windows env auto-prefix #481 by @strainovic + in #487 + * fix oci:// chart by @itscaro in #477 + * Allow to override build date with SOURCE_DATE_EPOCH by + @bmwiedemann in #486 + * Add subcommand init for checks and installs helmfile deps by + @xiaomudk in #389 + * split run.sh to make run.sh be more clear. by @yxxhero in #485 + * remove hooks dir by @yxxhero in #484 + * fix: args parse issue by @yxxhero in #457 + * fix deps issues by @yxxhero in #492 + * test: add template anchors merge e2e test by @yxxhero in #494 + * feat: add go test total cover by @yxxhero in #495 + * Add --output-dir-template flag to the fetch command by + @elchenberg in #456 + * build(deps): bump helm.sh/helm/v3 from 3.10.1 to 3.10.2 by + @dependabot in #511 + * bump: helm to 3.10.2 by @yxxhero in #512 + * build(deps): bump k8s.io/apimachinery from 0.25.3 to 0.25.4 by + @dependabot in #513 + * Add the ability to specify a lock file by @lassizci in #432 + ------------------------------------------------------------------- Sun Oct 30 08:55:27 UTC 2022 - manfred.h@gmx.net diff --git a/helmfile.spec b/helmfile.spec index fe7fe65..e44042e 100644 --- a/helmfile.spec +++ b/helmfile.spec @@ -17,9 +17,9 @@ # -%define git_commit ad257554c9fdd9e9cb036939dcea191540003517 +%define git_commit f09ec18aa9d555f6c8f668bfbcf084a6e5e8ee6b Name: helmfile -Version: 0.147.0 +Version: 0.148.1 Release: 0 Summary: Deploy Kubernetes Helm Charts License: MIT diff --git a/vendor.tar.gz b/vendor.tar.gz index f20aa97..f8f9b9e 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d74a5247a4048151dbdb59589e19e48ecda4d07822127377a887890a79db8cd -size 11750819 +oid sha256:87a670ad7304524c45396d3a71825f8612ff4e7b3deb1e48187e310bdf941c2d +size 11759639