From 4d02b00227a073dc4dee548661029023d9719c4b782fd849c60755c8c66d1d2f Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Thu, 15 Sep 2022 09:01:49 +0000 Subject: [PATCH] Accepting request 1003739 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.145.5: This patch release is mainly for fixing the default --skip-needs setting. If you had to add --skip-needs to every helmfile run since v0.145.0, this fixes that- you no longer need to explicitly set --skip-needs. To be clear, --skip-needs has been the default since v0.139.2. We just unintentionally broke it in v0.145.0! See #339 for more details. Thanks a lot for filing the detailed issue @strainovic, and thanks a lot for fixing the issue @yxxhero! * chore: update Jenkins's main helmfile repository in USERS by @lemeurherve in #320 * fix ci error in issue.2118.yaml by @yxxhero in #319 * Add Users information in Readme.md by @yxxhero in #317 * build(deps): bump go.uber.org/zap from 1.22.0 to 1.23.0 by @dependabot in #322 * Fix typos in docs by @dreglad in #329 * Add --interactive option to sync, delete and destroy / Remove --interactive from global options by @yxxhero in #328 * use helmfile testdata by @yxxhero in #326 * chore: remove 'OSS' from Jenkins name by @lemeurherve in #331 * add subshell to USERS.md by @philmtd in #335 * add NDR to USERS.md by @muffl0n in #336 * feat: honor concurrency in withPreparedCharts by @stek29 in #345 * feat: dont prepare on list by @stek29 in #346 * docs: add docs for helmfile list by @stek29 in #350 * build(deps): bump github.com/urfave/cli from 1.22.9 to 1.22.10 by @dependabot in #351 * build(deps): bump github.com/google/go-cmp from 0.5.8 to 0.5.9 by @dependabot in #353 * fixed: selector help msg style by @yxxhero in #348 * update docs for CLI by @yxxhero in #356 * Fix --skip-needs regression introduced in v0.145.0 by @yxxhero in #342 * fix github ci matrix config by @yxxhero in #361 * Fix incorrent exit code issue introduced in v0.145.0 by @yxxhero in #359 - Update to version 0.145.4: This patch release is mainly about fixing readDirEntries added in 0.145.3. @arkaitzj did a lot of awesome work along the way! We appreciate your contribution ❤️ In addition to the fix, this release also covers fixes for a few diff-related flags that were not working since v0.145.0's move to cobra as the CLI library. * Fix for readDir selection, currently any template that uses readDir* functions seems to break by @arkaitzj in #297 * Bring back --set flag to apply subcommand by @mjura in #298 * fix: return diff output config value by @mikelorant in #303 * fix: return diff context config value by @mikelorant in #301 * Fix some multi-value flags to not accept comma-separated values by @yxxhero in #300 * build(deps): bump k8s.io/apimachinery from 0.24.3 to 0.24.4 by @dependabot in #306 * Add logo as .png and .ai (Adobe Illustrator) files by @pathob in #263 * Introduce Helmfile's own filesystem abstraction to correctly unit test some components by @arkaitzj in #307 * fix typo for readme.md by @thenam153 in #312 OBS-URL: https://build.opensuse.org/request/show/1003739 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=63 --- _service | 2 +- _servicedata | 2 +- helmfile-0.145.3.tar.gz | 3 -- helmfile-0.145.5.tar.gz | 3 ++ helmfile.changes | 61 +++++++++++++++++++++++++++++++++++++++++ helmfile.spec | 4 +-- vendor.tar.gz | 4 +-- 7 files changed, 70 insertions(+), 9 deletions(-) delete mode 100644 helmfile-0.145.3.tar.gz create mode 100644 helmfile-0.145.5.tar.gz diff --git a/_service b/_service index 84923e5..25abdd8 100644 --- a/_service +++ b/_service @@ -5,7 +5,7 @@ .git @PARENT_TAG@ v(.*) - v0.145.3 + v0.145.5 enable diff --git a/_servicedata b/_servicedata index 8a90243..65e755a 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/helmfile/helmfile.git - 295d54d8386c5af126bfff032f6506b4cca651e3 \ No newline at end of file + 3ff98c02a1ff92c7d1d3118ee064f73e1a95fa36 diff --git a/helmfile-0.145.3.tar.gz b/helmfile-0.145.3.tar.gz deleted file mode 100644 index bcf1f05..0000000 --- a/helmfile-0.145.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4dd493c77d8dc427ab79e84f413e6e355f174cb312f6e3d5b72d8beeb1f5406 -size 349699 diff --git a/helmfile-0.145.5.tar.gz b/helmfile-0.145.5.tar.gz new file mode 100644 index 0000000..61f5e70 --- /dev/null +++ b/helmfile-0.145.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de432c1421e11c8845a994eba00acda2d7cdfa0b48edec4fc588204845832940 +size 560693 diff --git a/helmfile.changes b/helmfile.changes index bac6b0b..4b06e3a 100644 --- a/helmfile.changes +++ b/helmfile.changes @@ -1,3 +1,64 @@ +------------------------------------------------------------------- +Thu Sep 15 08:42:13 UTC 2022 - manfred.h@gmx.net + +- Update to version 0.145.5: + This patch release is mainly for fixing the default --skip-needs + setting. If you had to add --skip-needs to every helmfile run + since v0.145.0, this fixes that- you no longer need to explicitly + set --skip-needs. To be clear, --skip-needs has been the default + since v0.139.2. We just unintentionally broke it in v0.145.0! + See #339 for more details. Thanks a lot for filing the detailed + issue @strainovic, and thanks a lot for fixing the issue @yxxhero! + * chore: update Jenkins's main helmfile repository in USERS by + @lemeurherve in #320 + * fix ci error in issue.2118.yaml by @yxxhero in #319 + * Add Users information in Readme.md by @yxxhero in #317 + * build(deps): bump go.uber.org/zap from 1.22.0 to 1.23.0 by + @dependabot in #322 + * Fix typos in docs by @dreglad in #329 + * Add --interactive option to sync, delete and destroy / Remove + --interactive from global options by @yxxhero in #328 + * use helmfile testdata by @yxxhero in #326 + * chore: remove 'OSS' from Jenkins name by @lemeurherve in #331 + * add subshell to USERS.md by @philmtd in #335 + * add NDR to USERS.md by @muffl0n in #336 + * feat: honor concurrency in withPreparedCharts by @stek29 in #345 + * feat: dont prepare on list by @stek29 in #346 + * docs: add docs for helmfile list by @stek29 in #350 + * build(deps): bump github.com/urfave/cli from 1.22.9 to 1.22.10 + by @dependabot in #351 + * build(deps): bump github.com/google/go-cmp from 0.5.8 to 0.5.9 + by @dependabot in #353 + * fixed: selector help msg style by @yxxhero in #348 + * update docs for CLI by @yxxhero in #356 + * Fix --skip-needs regression introduced in v0.145.0 by @yxxhero + in #342 + * fix github ci matrix config by @yxxhero in #361 + * Fix incorrent exit code issue introduced in v0.145.0 by @yxxhero + in #359 + +- Update to version 0.145.4: + This patch release is mainly about fixing readDirEntries added + in 0.145.3. @arkaitzj did a lot of awesome work along the way! + We appreciate your contribution ❤️ + In addition to the fix, this release also covers fixes for a + few diff-related flags that were not working since v0.145.0's + move to cobra as the CLI library. + * Fix for readDir selection, currently any template that uses + readDir* functions seems to break by @arkaitzj in #297 + * Bring back --set flag to apply subcommand by @mjura in #298 + * fix: return diff output config value by @mikelorant in #303 + * fix: return diff context config value by @mikelorant in #301 + * Fix some multi-value flags to not accept comma-separated + values by @yxxhero in #300 + * build(deps): bump k8s.io/apimachinery from 0.24.3 to 0.24.4 + by @dependabot in #306 + * Add logo as .png and .ai (Adobe Illustrator) files by + @pathob in #263 + * Introduce Helmfile's own filesystem abstraction to correctly + unit test some components by @arkaitzj in #307 + * fix typo for readme.md by @thenam153 in #312 + ------------------------------------------------------------------- Wed Aug 24 09:49:47 UTC 2022 - manfred.h@gmx.net diff --git a/helmfile.spec b/helmfile.spec index 1124561..ca05c29 100644 --- a/helmfile.spec +++ b/helmfile.spec @@ -17,9 +17,9 @@ # -%define git_commit e44a915d4024a161d2a5642cf078038ea314fc72 +%define git_commit 3ff98c02a1ff92c7d1d3118ee064f73e1a95fa36 Name: helmfile -Version: 0.145.3 +Version: 0.145.5 Release: 0 Summary: Deploy Kubernetes Helm Charts License: MIT diff --git a/vendor.tar.gz b/vendor.tar.gz index f4c5952..8e3e776 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6531d93a8581522826b6378d74fbd3011b769ab07bbb39d62a3671de32f7c8c -size 10860597 +oid sha256:7e37842380bc67fc2130cc8b4004cf7401bb6cd8de7ca4bbaa9f349b70228973 +size 10778268