SHA256
1
0
forked from pool/helmfile

Accepting request 1066779 from home:manfred-h:devel:kubic

- Update to version 0.151.0:
  New features:
  * Add --skip-charts for destroy for disable prepare charts (#637)
  * Add missingFileHandlerConfig.ignoreMissingGitBranch (#645)
  * Disable double-rendering in V1 (#647)
  * Add gotmpl file ext when using helmfile.d feature (#649)
  * Add chinese readme (#664)
  * Add post-renderer flag for diff and template subcommand (#691)
  * Support helm 3.11.1
  What's Changed:
  * feat: add paths-ignore to ci.yaml and lint.yaml by @gaius-qi in #631
  * build(deps): bump github.com/containerd/containerd from 1.6.6 to
    1.6.12 by @dependabot in #632
  * fix inherit chart empty check issue by @yxxhero in #635
  * build(deps): bump k8s.io/apimachinery from 0.26.0 to 0.26.1 by
    @dependabot in #641
  * add --skip-charts for destroy for disable prepare charts by
    @yxxhero in #637
  * bump helm to v3.11.0 by @yxxhero in #639
  * Remove unused go-getter driver funcs by @mumoshu in #643
  * Fix a minor typo in the v1 proposal by @mumoshu in #646
  * feat: Add missingFileHandlerConfig.ignoreMissingGitBranch by
    @mumoshu in #645
  * remove helm v2 code in tests by @yxxhero in #648
  * Do not load the legacy default charts.yaml in v1 by @mumoshu
    in #651
  * Disable double-rendering in V1 by @mumoshu in #647
  * use latest helm previous minor version for helmfile init by
    @yxxhero in #652
  * feat: add gotmpl file ext when using helmfile.d feature by
    @yxxhero in #649
  * fix(docs): transfer issue link for Docs site by @ChetanGoti
    in #655
  * update examples info by @yxxhero in #658
  * update hooks docs by @yxxhero in #657
  * Bring up the init command in readme #661 by @AmazingTurtle
    in #662
  * docs: Running helmfile withought an internet connection by
    --skip-deps option by @toyamagu-2021 in #659
  * Reformat v1 proposal by @mumoshu in #663
  * add build-in objects docs by @yxxhero in #667
  * Add chinese readme by @xiaomudk in #664
  * fix typo by @yxxhero in #670
  * Bump Go to 1.20 by @yxxhero in #672
  * Use goccy/go-yaml fork to not break dynamic values on helmfile
    v1 by @mumoshu in #675
  * Improve readme readability by @xiaomudk in #678
  * Sync Chinese readme by @xiaomudk in #676
  * breaking: Fix the inherit feature to support multi-inheritance
    by @mumoshu in #674
  * fix: Make the forbid-env-with-releases policy strict on v1 by
    @mumoshu in #683
  * Remove references to .tpl from v1 proposal by @mumoshu in #685
  * build(deps): bump golang.org/x/term from 0.4.0 to 0.5.0 by
    @dependabot in #686
  * Relax the forbid-env-with-releases policy for plain helmfile.yaml
    on v1 by @mumoshu in #684
  * build(deps): bump helm.sh/helm/v3 from 3.11.0 to 3.11.1 by
    @dependabot in #689
  * Fix a typo in the v1 proposal by @mumoshu in #688
  * fix panic issue by @yxxhero in #690
  * bump helm to 3.11.1 by @yxxhero in #695
  * Fix post-renderer flag not working in diff and template
    subcommand by @xiaomudk in #691
  * fix: repos command help message by @yamagai in #698
  * build(deps): bump github.com/hashicorp/go-getter from 1.6.2 to
    1.7.0 by @dependabot in #697
  * build(deps): bump github.com/containerd/containerd from 1.6.15
    to 1.6.18 by @dependabot in #701
  * bump chartify to v0.13.0 by @yxxhero in #702
  * bump vals to v0.22.0 by @yxxhero in #703

OBS-URL: https://build.opensuse.org/request/show/1066779
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=78
This commit is contained in:
Manfred Hollstein 2023-02-20 10:19:47 +00:00 committed by Git OBS Bridge
parent 8783cb1f5d
commit 37d8d3e7ff
7 changed files with 85 additions and 9 deletions

View File

@ -5,7 +5,7 @@
<param name="exclude">.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="revision">v0.150.0</param>
<param name="revision">v0.151.0</param>
<param name="changesgenerate">enable</param>
</service>
<service name="recompress" mode="disabled">

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/helmfile/helmfile.git</param>
<param name="changesrevision">fc634c9ee3ec34140d6e7e4580c972bef377f1a8</param></service></servicedata>
<param name="changesrevision">f629ee1ae6540dcb1b3c9917bf3dbc81f96a07c0</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49358fc1725e273dd087045bacfa7ba533004b6aa46560a8ee4d3431ad6c8f98
size 576451

3
helmfile-0.151.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a22002e531f63bf49dd60f06be2e7f18e1f64f3f469f07ca6f89f601f4e4df29
size 586402

View File

@ -1,3 +1,79 @@
-------------------------------------------------------------------
Mon Feb 20 09:59:27 UTC 2023 - Manfred Hollstein <manfred.h@gmx.net>
- Update to version 0.151.0:
New features:
* Add --skip-charts for destroy for disable prepare charts (#637)
* Add missingFileHandlerConfig.ignoreMissingGitBranch (#645)
* Disable double-rendering in V1 (#647)
* Add gotmpl file ext when using helmfile.d feature (#649)
* Add chinese readme (#664)
* Add post-renderer flag for diff and template subcommand (#691)
* Support helm 3.11.1
What's Changed:
* feat: add paths-ignore to ci.yaml and lint.yaml by @gaius-qi in #631
* build(deps): bump github.com/containerd/containerd from 1.6.6 to
1.6.12 by @dependabot in #632
* fix inherit chart empty check issue by @yxxhero in #635
* build(deps): bump k8s.io/apimachinery from 0.26.0 to 0.26.1 by
@dependabot in #641
* add --skip-charts for destroy for disable prepare charts by
@yxxhero in #637
* bump helm to v3.11.0 by @yxxhero in #639
* Remove unused go-getter driver funcs by @mumoshu in #643
* Fix a minor typo in the v1 proposal by @mumoshu in #646
* feat: Add missingFileHandlerConfig.ignoreMissingGitBranch by
@mumoshu in #645
* remove helm v2 code in tests by @yxxhero in #648
* Do not load the legacy default charts.yaml in v1 by @mumoshu
in #651
* Disable double-rendering in V1 by @mumoshu in #647
* use latest helm previous minor version for helmfile init by
@yxxhero in #652
* feat: add gotmpl file ext when using helmfile.d feature by
@yxxhero in #649
* fix(docs): transfer issue link for Docs site by @ChetanGoti
in #655
* update examples info by @yxxhero in #658
* update hooks docs by @yxxhero in #657
* Bring up the init command in readme #661 by @AmazingTurtle
in #662
* docs: Running helmfile withought an internet connection by
--skip-deps option by @toyamagu-2021 in #659
* Reformat v1 proposal by @mumoshu in #663
* add build-in objects docs by @yxxhero in #667
* Add chinese readme by @xiaomudk in #664
* fix typo by @yxxhero in #670
* Bump Go to 1.20 by @yxxhero in #672
* Use goccy/go-yaml fork to not break dynamic values on helmfile
v1 by @mumoshu in #675
* Improve readme readability by @xiaomudk in #678
* Sync Chinese readme by @xiaomudk in #676
* breaking: Fix the inherit feature to support multi-inheritance
by @mumoshu in #674
* fix: Make the forbid-env-with-releases policy strict on v1 by
@mumoshu in #683
* Remove references to .tpl from v1 proposal by @mumoshu in #685
* build(deps): bump golang.org/x/term from 0.4.0 to 0.5.0 by
@dependabot in #686
* Relax the forbid-env-with-releases policy for plain helmfile.yaml
on v1 by @mumoshu in #684
* build(deps): bump helm.sh/helm/v3 from 3.11.0 to 3.11.1 by
@dependabot in #689
* Fix a typo in the v1 proposal by @mumoshu in #688
* fix panic issue by @yxxhero in #690
* bump helm to 3.11.1 by @yxxhero in #695
* Fix post-renderer flag not working in diff and template
subcommand by @xiaomudk in #691
* fix: repos command help message by @yamagai in #698
* build(deps): bump github.com/hashicorp/go-getter from 1.6.2 to
1.7.0 by @dependabot in #697
* build(deps): bump github.com/containerd/containerd from 1.6.15
to 1.6.18 by @dependabot in #701
* bump chartify to v0.13.0 by @yxxhero in #702
* bump vals to v0.22.0 by @yxxhero in #703
-------------------------------------------------------------------
Thu Feb 9 09:53:40 UTC 2023 - Manfred Hollstein <manfred.h@gmx.net>

View File

@ -17,9 +17,9 @@
#
%define git_commit fc634c9ee3ec34140d6e7e4580c972bef377f1a8
%define git_commit f629ee1ae6540dcb1b3c9917bf3dbc81f96a07c0
Name: helmfile
Version: 0.150.0
Version: 0.151.0
Release: 0
Summary: Deploy Kubernetes Helm Charts
License: MIT

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:548080af55bd0136f0a1a210802577b1a1f506cce69bd430ad17c00ce4b9f07f
size 12243354
oid sha256:b521c1f7cc4efdb9bbe4c0c482f8788867a60cde4c3664a2b209107e2b4d4089
size 12305131