copilot-swe-agent[bot]
9c1db04e27
Improve semver parsing robustness for versions without 'v' prefix
...
Replace chartify.FindSemVerInfo with enhanced findSemVerInfo function that handles
versions with or without 'v' prefix. This addresses the "unable to find semver info
in 5.7.1" error by ensuring consistent version parsing regardless of input format.
- Add findSemVerInfo function with flexible regex pattern
- Update parseHelmVersion to use enhanced version parsing
- Add comprehensive test cases for various version formats including issue #2124 scenarios
- Remove unused chartify import from helmexec package
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
2025-08-14 13:38:52 +00:00
copilot-swe-agent[bot]
6c86962827
Initial plan
2025-08-14 13:14:49 +00:00
Copilot
7f18858182
Fix parseHelmVersion to handle helm versions without 'v' prefix ( #2132 )
...
* Initial plan
* Fix panic in helmfile init when parsing invalid helm versions
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
* Fix parseHelmVersion to handle versions without v prefix
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
* Simplify parseHelmVersion function to be more readable
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: yxxhero <11087727+yxxhero@users.noreply.github.com>
2025-08-14 21:11:09 +08:00
yxxhero
8c123dcdda
refactor(state): extract getMissingFileHandler method for clarity ( #2133 )
...
* refactor(state): extract getMissingFileHandler method for clarity
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-08-14 21:10:44 +08:00
Copilot
bb6df72463
Add comprehensive .github/copilot-instructions.md for coding agents ( #2131 )
2025-08-14 10:21:26 +08:00
yxxhero
444275281f
Update recommended Helm versions in init.go and run.sh ( #2129 )
...
- Bump HelmDiffRecommendedVersion from v3.12.3 to v3.12.5 in pkg/app/init.go
- Bump default HELM_DIFF_VERSION from 3.12.3 to 3.12.5 in test/integration/run.sh
- Update HelmRecommendedVersion from v3.18.4 to v3.18.5 in pkg/app/init.go
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-08-14 08:41:43 +08:00
dependabot[bot]
4aae348a46
build(deps): bump actions/checkout from 4 to 5 ( #2128 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 07:44:59 +08:00
dependabot[bot]
9dbb4a4a27
build(deps): bump golang.org/x/term from 0.33.0 to 0.34.0 ( #2123 )
...
Bumps [golang.org/x/term](https://github.com/golang/term ) from 0.33.0 to 0.34.0.
- [Commits](https://github.com/golang/term/compare/v0.33.0...v0.34.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/term
dependency-version: 0.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 21:27:42 +08:00
dependabot[bot]
64d676a7e3
build(deps): bump actions/download-artifact from 4 to 5 ( #2121 )
...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact ) from 4 to 5.
- [Release notes](https://github.com/actions/download-artifact/releases )
- [Commits](https://github.com/actions/download-artifact/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-07 06:28:40 +08:00
yxxhero
959aae5791
refactor(yaml): switch yaml library import paths from gopkg.in to go.yaml.in ( #2114 )
...
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-08-01 11:28:39 +08:00
Jess
9a88372449
Allow caching of remote files to be disabled ( #2112 )
...
* Allow caching of remote files to be disabled
Make it possible to automatically update the cache of remote
resources by disabling the caching of those resources using a query
string parameter (`cache=false`).
Signed-off-by: Jess <jess@ros.io>
* Fix test that broke
Because query parameters are being re-encoded, = is being encoded to %3D.
Signed-off-by: Jess <jess@ros.io>
* Add test for disabling caching of remote resources
Signed-off-by: Jess <jess@ros.io>
* Include example usage in docs
Signed-off-by: Jess <jess@ros.io>
---------
Signed-off-by: Jess <jess@ros.io>
2025-07-31 13:38:36 +08:00
yxxhero
a76bec234c
refactor(filesystem): add CopyDir method and optimize Fetch function ( #2111 )
...
* refactor(filesystem): add CopyDir method and optimize Fetch function
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix(state): conditionally prepare charts for local helmfile command
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix(state): conditionally prepare charts for local helmfile command
Signed-off-by: yxxhero <aiopsclub@163.com>
* refactor(state): optimize chart path generation and update dependencies
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix(test): update path in fetch-forl-local-chart test
Signed-off-by: yxxhero <aiopsclub@163.com>
* add more test cases
Signed-off-by: yxxhero <aiopsclub@163.com>
---------
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-07-28 16:10:25 -04:00
yxxhero
b0911ab1a2
feat(state): add missingFileHandlerConfig and related logic ( #2105 )
...
* feat(state): add missingFileHandlerConfig and related logic
Signed-off-by: yxxhero <aiopsclub@163.com>
* feat(state): add missingFileHandlerConfig and related logic
Signed-off-by: yxxhero <aiopsclub@163.com>
---------
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-07-21 19:15:51 -04:00
dependabot[bot]
6fd4048653
build(deps): bump github.com/spf13/pflag from 1.0.6 to 1.0.7 ( #2104 )
...
Bumps [github.com/spf13/pflag](https://github.com/spf13/pflag ) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/spf13/pflag/releases )
- [Commits](https://github.com/spf13/pflag/compare/v1.0.6...v1.0.7 )
---
updated-dependencies:
- dependency-name: github.com/spf13/pflag
dependency-version: 1.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-17 19:05:50 -04:00
yxxhero
4a3f923b1a
fix: update Helm version to v3.17.4 in CI and init.go ( #2102 )
...
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-07-17 19:01:31 -04:00
dependabot[bot]
899b7791d2
build(deps): bump k8s.io/apimachinery from 0.33.2 to 0.33.3 ( #2101 )
...
Bumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery ) from 0.33.2 to 0.33.3.
- [Commits](https://github.com/kubernetes/apimachinery/compare/v0.33.2...v0.33.3 )
---
updated-dependencies:
- dependency-name: k8s.io/apimachinery
dependency-version: 0.33.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-17 06:35:01 +08:00
dependabot[bot]
0b29a3bf31
build(deps): bump github.com/helmfile/vals from 0.41.2 to 0.41.3 ( #2100 )
...
Bumps [github.com/helmfile/vals](https://github.com/helmfile/vals ) from 0.41.2 to 0.41.3.
- [Release notes](https://github.com/helmfile/vals/releases )
- [Changelog](https://github.com/helmfile/vals/blob/main/.goreleaser.yml )
- [Commits](https://github.com/helmfile/vals/compare/v0.41.2...v0.41.3 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/vals
dependency-version: 0.41.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-15 06:03:58 +08:00
dependabot[bot]
e6f88adb50
build(deps): bump golang.org/x/term from 0.32.0 to 0.33.0 ( #2098 )
...
Bumps [golang.org/x/term](https://github.com/golang/term ) from 0.32.0 to 0.33.0.
- [Commits](https://github.com/golang/term/compare/v0.32.0...v0.33.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/term
dependency-version: 0.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-11 06:55:14 +08:00
dependabot[bot]
31f2e0c088
build(deps): bump golang.org/x/sync from 0.15.0 to 0.16.0 ( #2099 )
...
Bumps [golang.org/x/sync](https://github.com/golang/sync ) from 0.15.0 to 0.16.0.
- [Commits](https://github.com/golang/sync/compare/v0.15.0...v0.16.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sync
dependency-version: 0.16.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-11 06:33:30 +08:00
yxxhero
c0a046b623
docs: update status section with May 2025 release information ( #2096 )
...
* docs: update status section with May 2025 release information
Signed-off-by: yxxhero <aiopsclub@163.com>
* docs: Update Helmfile v1 proposal link in index.md
Signed-off-by: yxxhero <aiopsclub@163.com>
---------
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-07-10 18:20:04 +08:00
yxxhero
687159a65b
build: update Helm and plugin versions to v3.18.4 and v3.12.3 ( #2093 )
...
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-07-09 18:13:21 +08:00
dependabot[bot]
03a3e78344
build(deps): bump github.com/hashicorp/hcl/v2 from 2.23.0 to 2.24.0 ( #2092 )
...
Bumps [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl ) from 2.23.0 to 2.24.0.
- [Release notes](https://github.com/hashicorp/hcl/releases )
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md )
- [Commits](https://github.com/hashicorp/hcl/compare/v2.23.0...v2.24.0 )
---
updated-dependencies:
- dependency-name: github.com/hashicorp/hcl/v2
dependency-version: 2.24.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-08 08:24:05 +08:00
dependabot[bot]
0e5cfbd482
build(deps): bump github.com/Masterminds/semver/v3 from 3.3.1 to 3.4.0 ( #2089 )
2025-06-28 17:10:37 +08:00
dependabot[bot]
dc3b43bb18
build(deps): bump github.com/helmfile/chartify from 0.24.4 to 0.24.5 ( #2087 )
...
Bumps [github.com/helmfile/chartify](https://github.com/helmfile/chartify ) from 0.24.4 to 0.24.5.
- [Release notes](https://github.com/helmfile/chartify/releases )
- [Commits](https://github.com/helmfile/chartify/compare/v0.24.4...v0.24.5 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/chartify
dependency-version: 0.24.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-21 17:22:11 +08:00
dependabot[bot]
e3559b8260
build(deps): bump k8s.io/apimachinery from 0.33.1 to 0.33.2 ( #2086 )
...
Bumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery ) from 0.33.1 to 0.33.2.
- [Commits](https://github.com/kubernetes/apimachinery/compare/v0.33.1...v0.33.2 )
---
updated-dependencies:
- dependency-name: k8s.io/apimachinery
dependency-version: 0.33.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-21 07:27:13 +08:00
dependabot[bot]
95777777cf
build(deps): bump github.com/helmfile/chartify from 0.24.3 to 0.24.4 ( #2083 )
...
Bumps [github.com/helmfile/chartify](https://github.com/helmfile/chartify ) from 0.24.3 to 0.24.4.
- [Release notes](https://github.com/helmfile/chartify/releases )
- [Commits](https://github.com/helmfile/chartify/compare/v0.24.3...v0.24.4 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/chartify
dependency-version: 0.24.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-18 06:40:49 +08:00
Simske
d84243992e
Expose release version as .Release.ChartVersion for templating ( #2080 )
2025-06-17 19:41:42 +08:00
yxxhero
c03f86de0f
build: update Helm to v3.18.3 and related dependencies ( #2082 )
...
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-06-17 15:09:42 +08:00
ProbstDJakob
8a57db5ffd
fix: `TestToYaml` not working with 32-bit architectures ( #2075 )
...
Signed-off-by: Jakob Probst <git@jakobprobst.de>
2025-06-12 17:15:48 +08:00
yxxhero
131e3f3f04
fix: update helm-diff to version 3.12.2 in CI and Dockerfiles ( #2073 )
...
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-06-11 21:18:31 +08:00
dependabot[bot]
1e3b20c4a7
build(deps): bump github.com/cloudflare/circl from 1.4.0 to 1.6.1 ( #2074 )
...
Bumps [github.com/cloudflare/circl](https://github.com/cloudflare/circl ) from 1.4.0 to 1.6.1.
- [Release notes](https://github.com/cloudflare/circl/releases )
- [Commits](https://github.com/cloudflare/circl/compare/v1.4.0...v1.6.1 )
---
updated-dependencies:
- dependency-name: github.com/cloudflare/circl
dependency-version: 1.6.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-11 06:06:19 +08:00
anontrex
3df6442bd1
fix-insecure-flag ( #2072 )
...
Signed-off-by: tcase44 <toblerone.tc@gmail.com>
Co-authored-by: tcase44 <toblerone.tc@gmail.com>
2025-06-09 17:08:10 +08:00
dependabot[bot]
f0f828b2fd
build(deps): bump golang.org/x/sync from 0.14.0 to 0.15.0 ( #2068 )
...
Bumps [golang.org/x/sync](https://github.com/golang/sync ) from 0.14.0 to 0.15.0.
- [Commits](https://github.com/golang/sync/compare/v0.14.0...v0.15.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sync
dependency-version: 0.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-06 06:34:05 +08:00
dependabot[bot]
b0ca2f351d
build(deps): bump github.com/helmfile/vals from 0.41.1 to 0.41.2 ( #2067 )
...
Bumps [github.com/helmfile/vals](https://github.com/helmfile/vals ) from 0.41.1 to 0.41.2.
- [Release notes](https://github.com/helmfile/vals/releases )
- [Changelog](https://github.com/helmfile/vals/blob/main/.goreleaser.yml )
- [Commits](https://github.com/helmfile/vals/compare/v0.41.1...v0.41.2 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/vals
dependency-version: 0.41.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-05 06:15:53 +08:00
yxxhero
74985fc54c
build: update Helm to v3.18.2 and adjust related configurations ( #2064 )
...
* build: update Helm to v3.18.2 and adjust related configurations
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix tests
Signed-off-by: yxxhero <aiopsclub@163.com>
---------
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-06-04 21:33:00 +08:00
dependabot[bot]
6da4b1e4c5
build(deps): bump github.com/helmfile/chartify from 0.24.2 to 0.24.3 ( #2065 )
...
Bumps [github.com/helmfile/chartify](https://github.com/helmfile/chartify ) from 0.24.2 to 0.24.3.
- [Release notes](https://github.com/helmfile/chartify/releases )
- [Commits](https://github.com/helmfile/chartify/compare/v0.24.2...v0.24.3 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/chartify
dependency-version: 0.24.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-04 06:03:35 +08:00
yxxhero
fe1e51e5ef
build: update Helm and plugin versions in CI and Dockerfiles ( #2059 )
...
* build: update Helm and plugin versions in CI and Dockerfiles
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-05-30 11:45:28 +08:00
dependabot[bot]
3429901363
build(deps): bump github.com/helmfile/chartify from 0.23.0 to 0.24.1 ( #2049 )
...
Bumps [github.com/helmfile/chartify](https://github.com/helmfile/chartify ) from 0.23.0 to 0.24.1.
- [Release notes](https://github.com/helmfile/chartify/releases )
- [Commits](https://github.com/helmfile/chartify/compare/v0.23.0...v0.24.1 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/chartify
dependency-version: 0.24.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-21 17:21:32 +08:00
yxxhero
e197a90597
build(helm) update to v3.18.0 ( #2044 )
...
* build(helm) update to v3.18.0
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-05-21 16:57:36 +08:00
dependabot[bot]
c52bb43f80
build(deps): bump github.com/helmfile/vals from 0.41.0 to 0.41.1 ( #2048 )
...
Bumps [github.com/helmfile/vals](https://github.com/helmfile/vals ) from 0.41.0 to 0.41.1.
- [Release notes](https://github.com/helmfile/vals/releases )
- [Changelog](https://github.com/helmfile/vals/blob/main/.goreleaser.yml )
- [Commits](https://github.com/helmfile/vals/compare/v0.41.0...v0.41.1 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/vals
dependency-version: 0.41.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-21 06:36:06 +08:00
Yusuke Kuoka
efcb1b5ef5
Update README.md ( #2046 )
...
Intends to address https://github.com/helmfile/helmfile/pull/2040#discussion_r2096977864
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-05-20 22:38:01 +08:00
dependabot[bot]
18314af2b2
build(deps): bump github.com/zclconf/go-cty from 1.16.2 to 1.16.3 ( #2043 )
...
Bumps [github.com/zclconf/go-cty](https://github.com/zclconf/go-cty ) from 1.16.2 to 1.16.3.
- [Release notes](https://github.com/zclconf/go-cty/releases )
- [Changelog](https://github.com/zclconf/go-cty/blob/main/CHANGELOG.md )
- [Commits](https://github.com/zclconf/go-cty/compare/v1.16.2...v1.16.3 )
---
updated-dependencies:
- dependency-name: github.com/zclconf/go-cty
dependency-version: 1.16.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-20 06:20:48 +08:00
dependabot[bot]
470a6140cd
build(deps): bump k8s.io/apimachinery from 0.33.0 to 0.33.1 ( #2041 )
...
Bumps [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery ) from 0.33.0 to 0.33.1.
- [Commits](https://github.com/kubernetes/apimachinery/compare/v0.33.0...v0.33.1 )
---
updated-dependencies:
- dependency-name: k8s.io/apimachinery
dependency-version: 0.33.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 08:59:07 +08:00
Zubair Haque
f46f5baca7
Update readme & documentation with 2025 status of helmfile project ( #2040 )
2025-05-15 22:35:01 +08:00
yxxhero
b52ca9ae04
refactor(yaml): upgrade from gopkg.in/yaml.v2 to v3 ( #2039 )
...
* refactor(yaml): upgrade from gopkg.in/yaml.v2 to v3
Signed-off-by: yxxhero <aiopsclub@163.com>
* refactor(yaml): enhance yaml encoding with consistent formatting and quotes
Signed-off-by: yxxhero <aiopsclub@163.com>
* optimize code
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix tests
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix more issues
Signed-off-by: yxxhero <aiopsclub@163.com>
* fix tests
Signed-off-by: yxxhero <aiopsclub@163.com>
---------
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-05-15 10:21:37 -04:00
yxxhero
867bef0f03
feat(yaml): add JSON style encoding option to NewEncoder ( #2038 )
2025-05-13 18:45:22 +08:00
Quan TRAN
84bc096576
[sops, age] update to have SSH key support with sops ( #2036 )
...
Signed-off-by: Quan TRAN <itscaro@users.noreply.github.com>
2025-05-12 21:22:04 +08:00
yxxhero
844726b09b
feat(tmpl): enhance ToYaml test with multiple scenarios ( #2031 )
...
* feat(tmpl): enhance ToYaml test with multiple scenarios
Signed-off-by: yxxhero <aiopsclub@163.com>
2025-05-09 11:56:54 +08:00
dependabot[bot]
833b72383d
build(deps): bump dario.cat/mergo from 1.0.1 to 1.0.2 ( #2035 )
...
Bumps [dario.cat/mergo](https://github.com/imdario/mergo ) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/imdario/mergo/releases )
- [Commits](https://github.com/imdario/mergo/compare/v1.0.1...v1.0.2 )
---
updated-dependencies:
- dependency-name: dario.cat/mergo
dependency-version: 1.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-09 07:39:16 +08:00
dependabot[bot]
443c965a37
build(deps): bump github.com/helmfile/vals from 0.40.1 to 0.41.0 ( #2032 )
...
Bumps [github.com/helmfile/vals](https://github.com/helmfile/vals ) from 0.40.1 to 0.41.0.
- [Release notes](https://github.com/helmfile/vals/releases )
- [Changelog](https://github.com/helmfile/vals/blob/main/.goreleaser.yml )
- [Commits](https://github.com/helmfile/vals/compare/v0.40.1...v0.41.0 )
---
updated-dependencies:
- dependency-name: github.com/helmfile/vals
dependency-version: 0.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 06:11:29 +08:00