forked from pool/helmfile
Accepting request 1111541 from home:manfred-h:devel:kubic
- Update to version 0.157.0: What's Changed * bump github.com/helmfile/vals by @jkroepke in #982 * fix snapshot tests random error by @yxxhero in #985 * feat: keyring supportting by @yxxhero in #984 * update keyring docs by @yxxhero in #986 * Update docs for running as container by @PointyShinyBurning in #988 * Add missing documentation for isFile function by @anessi in #996 * Update workflows by @bonddim in #998 * build(deps): bump actions/checkout from 3 to 4 by @dependabot in #999 * build(deps): bump gitpython from 3.1.32 to 3.1.34 in /docs by @dependabot in #1004 * chore: added a note in the doc. by @rlnchow in #1006 * build(deps): bump gitpython from 3.1.34 to 3.1.35 in /docs by @dependabot in #1008 - Update to version 0.156.0: What's Changed * build(deps): bump github.com/hashicorp/go-getter from 1.7.1 to 1.7.2 by @dependabot in #949 * build(deps): bump go.uber.org/zap from 1.24.0 to 1.25.0 by @dependabot in #957 * build(deps): bump github.com/helmfile/chartify from 0.14.0 to 0.15.0 by @dependabot in #956 * build(deps): bump github.com/helmfile/vals from 0.26.1 to 0.26.2 by @dependabot in #962 * build(deps): bump golang.org/x/term from 0.10.0 to 0.11.0 by @dependabot in #961 * fix re-using environment state in sub-helmfiles issue by @yxxhero in #951 * feat: add friendly tips for helmfile config order by @yxxhero in #710 * chore: join with space by @wrenix in #963 * Implement --diff-args by @jkroepke in #959 * build(deps): bump gitpython from 3.1.30 to 3.1.32 in /docs by @dependabot in #970 * build(deps): bump helm.sh/helm/v3 from 3.12.2 to 3.12.3 by @dependabot in #968 * bump helm to v3.12.3 by @yxxhero in #971 * bump go to 1.21 by @yxxhero in #972 * Support functions written by KCL to mutate or validate manifests for Helmfile @Peefy #827 OBS-URL: https://build.opensuse.org/request/show/1111541 OBS-URL: https://build.opensuse.org/package/show/devel:kubic/helmfile?expand=0&rev=88
This commit is contained in:
parent
28a1fe41b9
commit
535c9bb1b2
10
_service
10
_service
@ -1,19 +1,19 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="url">https://github.com/helmfile/helmfile.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="revision">v0.155.1</param>
|
||||
<param name="revision">v0.157.0</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">helmfile-*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled">
|
||||
<service name="set_version" mode="manual">
|
||||
<param name="basename">helmfile</param>
|
||||
</service>
|
||||
<service name="go_modules" mode="disabled"/>
|
||||
<service name="go_modules" mode="manual"/>
|
||||
</services>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/helmfile/helmfile.git</param>
|
||||
<param name="changesrevision">c19f220f06aa6c68cacad90d6c3271a1cd637766</param></service></servicedata>
|
||||
<param name="changesrevision">e7560afe04406ff95c31b492671ab32209d13715</param></service></servicedata>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d00db152f1108c54fa5edf50e45f2df4b2b969a4a1930c2e3f4873ffa61dde38
|
||||
size 598558
|
3
helmfile-0.157.0.tar.gz
Normal file
3
helmfile-0.157.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2acaae6ee4fd3c8cb5eeddd70def3447a98d37d461db942c5a9e7ae7de1ea1a6
|
||||
size 602910
|
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 15 11:13:10 UTC 2023 - Manfred Hollstein <manfred.h@gmx.net>
|
||||
|
||||
- Update to version 0.157.0:
|
||||
What's Changed
|
||||
* bump github.com/helmfile/vals by @jkroepke in #982
|
||||
* fix snapshot tests random error by @yxxhero in #985
|
||||
* feat: keyring supportting by @yxxhero in #984
|
||||
* update keyring docs by @yxxhero in #986
|
||||
* Update docs for running as container by @PointyShinyBurning
|
||||
in #988
|
||||
* Add missing documentation for isFile function by @anessi in #996
|
||||
* Update workflows by @bonddim in #998
|
||||
* build(deps): bump actions/checkout from 3 to 4 by @dependabot
|
||||
in #999
|
||||
* build(deps): bump gitpython from 3.1.32 to 3.1.34 in /docs
|
||||
by @dependabot in #1004
|
||||
* chore: added a note in the doc. by @rlnchow in #1006
|
||||
* build(deps): bump gitpython from 3.1.34 to 3.1.35 in /docs by
|
||||
@dependabot in #1008
|
||||
|
||||
- Update to version 0.156.0:
|
||||
What's Changed
|
||||
* build(deps): bump github.com/hashicorp/go-getter from 1.7.1 to
|
||||
1.7.2 by @dependabot in #949
|
||||
* build(deps): bump go.uber.org/zap from 1.24.0 to 1.25.0 by
|
||||
@dependabot in #957
|
||||
* build(deps): bump github.com/helmfile/chartify from 0.14.0 to
|
||||
0.15.0 by @dependabot in #956
|
||||
* build(deps): bump github.com/helmfile/vals from 0.26.1 to
|
||||
0.26.2 by @dependabot in #962
|
||||
* build(deps): bump golang.org/x/term from 0.10.0 to 0.11.0
|
||||
by @dependabot in #961
|
||||
* fix re-using environment state in sub-helmfiles issue by
|
||||
@yxxhero in #951
|
||||
* feat: add friendly tips for helmfile config order by @yxxhero
|
||||
in #710
|
||||
* chore: join with space by @wrenix in #963
|
||||
* Implement --diff-args by @jkroepke in #959
|
||||
* build(deps): bump gitpython from 3.1.30 to 3.1.32 in /docs
|
||||
by @dependabot in #970
|
||||
* build(deps): bump helm.sh/helm/v3 from 3.12.2 to 3.12.3
|
||||
by @dependabot in #968
|
||||
* bump helm to v3.12.3 by @yxxhero in #971
|
||||
* bump go to 1.21 by @yxxhero in #972
|
||||
* Support functions written by KCL to mutate or validate
|
||||
manifests for Helmfile @Peefy #827
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 12 09:05:31 UTC 2023 - Manfred Hollstein <manfred.h@gmx.net>
|
||||
|
||||
|
@ -17,9 +17,9 @@
|
||||
#
|
||||
|
||||
|
||||
%define git_commit c19f220f06aa6c68cacad90d6c3271a1cd637766
|
||||
%define git_commit e7560afe04406ff95c31b492671ab32209d13715
|
||||
Name: helmfile
|
||||
Version: 0.155.1
|
||||
Version: 0.157.0
|
||||
Release: 0
|
||||
Summary: Deploy Kubernetes Helm Charts
|
||||
License: MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ffa22d22f94ba63dcd3768ff64d7c495a6e0cacc209657ae8cdf70418bf1d9ad
|
||||
size 13560021
|
||||
oid sha256:84a64aff8f3a46543058d754cdcc0aef72f3e99a0f480167a00521903287a10f
|
||||
size 13928454
|
||||
|
Loading…
Reference in New Issue
Block a user