Skip to content

Commit e9e6d3d

Browse files
🌱 Update Golang Dependencies group to v3.14.2 (#78)
| datasource | package | from | to | | ---------- | --------------- | ------- | ------- | | go | helm.sh/helm/v3 | v3.14.1 | v3.14.2 | Co-authored-by: cluster-stack-bot[bot] <143188378+cluster-stack-bot[bot]@users.noreply.github.com>
1 parent 55532bd commit e9e6d3d

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
golang.org/x/oauth2 v0.17.0
1212
gopkg.in/src-d/go-git.v4 v4.13.1
1313
gopkg.in/yaml.v3 v3.0.1
14-
helm.sh/helm/v3 v3.14.1
14+
helm.sh/helm/v3 v3.14.2
1515
)
1616

1717
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,8 +597,8 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
597597
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
598598
gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o=
599599
gotest.tools/v3 v3.4.0/go.mod h1:CtbdzLSsqVhDgMtKsx03ird5YTGB3ar27v0u/yKBW5g=
600-
helm.sh/helm/v3 v3.14.1 h1:4AwRLx+wfzlPtvrsbDmWP5PUokGmf9/nAmEdk21vae8=
601-
helm.sh/helm/v3 v3.14.1/go.mod h1:2itvvDv2WSZXTllknfQo6j7u3VVgMAvm8POCDgYH424=
600+
helm.sh/helm/v3 v3.14.2 h1:V71fv+NGZv0icBlr+in1MJXuUIHCiPG1hW9gEBISTIA=
601+
helm.sh/helm/v3 v3.14.2/go.mod h1:2itvvDv2WSZXTllknfQo6j7u3VVgMAvm8POCDgYH424=
602602
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
603603
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
604604
k8s.io/api v0.29.0 h1:NiCdQMY1QOp1H8lfRyeEf8eOwV6+0xA6XEE44ohDX2A=

vendor/helm.sh/helm/v3/pkg/plugin/plugin.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ var validPluginName = regexp.MustCompile("^[A-Za-z0-9_-]+$")
175175

176176
// validatePluginData validates a plugin's YAML data.
177177
func validatePluginData(plug *Plugin, filepath string) error {
178+
// When metadata section missing, initialize with no data
179+
if plug.Metadata == nil {
180+
plug.Metadata = &Metadata{}
181+
}
178182
if !validPluginName.MatchString(plug.Metadata.Name) {
179183
return fmt.Errorf("invalid plugin name at %q", filepath)
180184
}

vendor/helm.sh/helm/v3/pkg/repo/index.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,10 @@ func loadIndex(data []byte, source string) (*IndexFile, error) {
359359
log.Printf("skipping loading invalid entry for chart %q from %s: empty entry", name, source)
360360
continue
361361
}
362+
// When metadata section missing, initialize with no data
363+
if cvs[idx].Metadata == nil {
364+
cvs[idx].Metadata = &chart.Metadata{}
365+
}
362366
if cvs[idx].APIVersion == "" {
363367
cvs[idx].APIVersion = chart.APIVersionV1
364368
}

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ gopkg.in/yaml.v2
663663
# gopkg.in/yaml.v3 v3.0.1
664664
## explicit
665665
gopkg.in/yaml.v3
666-
# helm.sh/helm/v3 v3.14.1
666+
# helm.sh/helm/v3 v3.14.2
667667
## explicit; go 1.21
668668
helm.sh/helm/v3/internal/fileutil
669669
helm.sh/helm/v3/internal/resolver

0 commit comments

Comments
 (0)