Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package helm for openSUSE:Factory checked in 
at 2024-06-20 16:48:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/helm (Old)
 and      /work/SRC/openSUSE:Factory/.helm.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "helm"

Thu Jun 20 16:48:30 2024 rev:67 rq:1181881 version:3.15.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/helm/helm.changes        2024-06-03 
17:43:50.059850273 +0200
+++ /work/SRC/openSUSE:Factory/.helm.new.18349/helm.changes     2024-06-20 
16:49:06.641662586 +0200
@@ -1,0 +2,11 @@
+Thu Jun 13 05:16:23 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 3.15.2:
+  * fix: wrong cli description
+  * fix typo in load_plugins.go
+  * fix docs of DeployedAll
+  * Bump github.com/docker/docker
+  * bump oras minor version
+  * feat(load.go): add warning on requirements.lock
+
+-------------------------------------------------------------------

Old:
----
  helm-3.15.1.obscpio

New:
----
  helm-3.15.2.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ helm.spec ++++++
--- /var/tmp/diff_new_pack.ApeZfG/_old  2024-06-20 16:49:08.037711688 +0200
+++ /var/tmp/diff_new_pack.ApeZfG/_new  2024-06-20 16:49:08.041711829 +0200
@@ -19,7 +19,7 @@
 %define goipath helm.sh/helm/v3
 %define git_dirty clean
 Name:           helm
-Version:        3.15.1
+Version:        3.15.2
 Release:        0
 Summary:        The Kubernetes Package Manager
 License:        Apache-2.0
@@ -71,7 +71,9 @@
 %goprep %{goipath}
 export K8S_MINOR=$(grep k8s.io/client-go go.mod | cut -d. -f3)
 export GO111MODULE=on
+%ifnarch s390x
 export CGO_ENABLED=0
+%endif
 %gobuild -trimpath -tags '' -mod vendor -buildmode pie -ldflags \
     "-X %{goipath}/internal/version.version=v%{version} \
      -X %{goipath}/internal/version.gitCommit=$(sed -n 's/commit: \(.*\)/\1/p' 
%_sourcedir/%{name}.obsinfo) \

++++++ _service ++++++
--- /var/tmp/diff_new_pack.ApeZfG/_old  2024-06-20 16:49:08.073712954 +0200
+++ /var/tmp/diff_new_pack.ApeZfG/_new  2024-06-20 16:49:08.073712954 +0200
@@ -5,7 +5,7 @@
     <param name="exclude">.git</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
-    <param name="revision">v3.15.1</param>
+    <param name="revision">v3.15.2</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="set_version" mode="manual">

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.ApeZfG/_old  2024-06-20 16:49:08.097713798 +0200
+++ /var/tmp/diff_new_pack.ApeZfG/_new  2024-06-20 16:49:08.101713939 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/helm/helm.git</param>
-              <param 
name="changesrevision">e211f2aa62992bd72586b395de50979e31231829</param></service></servicedata>
+              <param 
name="changesrevision">1a500d5625419a524fdae4b33de351cc4f58ec35</param></service></servicedata>
 (No newline at EOF)
 

++++++ helm-3.15.1.obscpio -> helm-3.15.2.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/cmd/helm/load_plugins.go 
new/helm-3.15.2/cmd/helm/load_plugins.go
--- old/helm-3.15.1/cmd/helm/load_plugins.go    2024-05-23 16:26:20.000000000 
+0200
+++ new/helm-3.15.2/cmd/helm/load_plugins.go    2024-06-12 15:27:04.000000000 
+0200
@@ -154,7 +154,7 @@
 func manuallyProcessArgs(args []string) ([]string, []string) {
        known := []string{}
        unknown := []string{}
-       kvargs := []string{"--kube-context", "--namespace", "-n", 
"--kubeconfig", "--kube-apiserver", "--kube-token", "--kube-as-user", 
"--kube-as-group", "--kube-ca-file", "--registry-config", "--repository-cache", 
"--repository-config", "--insecure-skip-tls-verify", "--tls-server-name"}
+       kvargs := []string{"--kube-context", "--namespace", "-n", 
"--kubeconfig", "--kube-apiserver", "--kube-token", "--kube-as-user", 
"--kube-as-group", "--kube-ca-file", "--registry-config", "--repository-cache", 
"--repository-config", "--kube-insecure-skip-tls-verify", 
"--kube-tls-server-name"}
        knownArg := func(a string) bool {
                for _, pre := range kvargs {
                        if strings.HasPrefix(a, pre+"=") {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/cmd/helm/plugin_install.go 
new/helm-3.15.2/cmd/helm/plugin_install.go
--- old/helm-3.15.1/cmd/helm/plugin_install.go  2024-05-23 16:26:20.000000000 
+0200
+++ new/helm-3.15.2/cmd/helm/plugin_install.go  2024-06-12 15:27:04.000000000 
+0200
@@ -39,8 +39,8 @@
 func newPluginInstallCmd(out io.Writer) *cobra.Command {
        o := &pluginInstallOptions{}
        cmd := &cobra.Command{
-               Use:     "install [options] <path|url>...",
-               Short:   "install one or more Helm plugins",
+               Use:     "install [options] <path|url>",
+               Short:   "install a Helm plugin",
                Long:    pluginInstallDesc,
                Aliases: []string{"add"},
                Args:    require.ExactArgs(1),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/go.mod new/helm-3.15.2/go.mod
--- old/helm-3.15.1/go.mod      2024-05-23 16:26:20.000000000 +0200
+++ new/helm-3.15.2/go.mod      2024-06-12 15:27:04.000000000 +0200
@@ -24,7 +24,7 @@
        github.com/mattn/go-shellwords v1.0.12
        github.com/mitchellh/copystructure v1.2.0
        github.com/moby/term v0.5.0
-       github.com/opencontainers/image-spec v1.1.0-rc5
+       github.com/opencontainers/image-spec v1.1.0-rc6
        github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
        github.com/pkg/errors v0.9.1
        github.com/rubenv/sql-migrate v1.5.2
@@ -44,7 +44,7 @@
        k8s.io/client-go v0.30.0
        k8s.io/klog/v2 v2.120.1
        k8s.io/kubectl v0.30.0
-       oras.land/oras-go v1.2.4
+       oras.land/oras-go v1.2.5
        sigs.k8s.io/yaml v1.4.0
 )
 
@@ -65,14 +65,14 @@
        github.com/containerd/log v0.1.0 // indirect
        github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
        github.com/davecgh/go-spew v1.1.1 // indirect
-       github.com/docker/cli v24.0.6+incompatible // indirect
-       github.com/docker/distribution v2.8.2+incompatible // indirect
-       github.com/docker/docker v24.0.9+incompatible // indirect
+       github.com/distribution/reference v0.5.0 // indirect
+       github.com/docker/cli v25.0.1+incompatible // indirect
+       github.com/docker/distribution v2.8.3+incompatible // indirect
+       github.com/docker/docker v25.0.5+incompatible // indirect
        github.com/docker/docker-credential-helpers v0.7.0 // indirect
-       github.com/docker/go-connections v0.4.0 // indirect
+       github.com/docker/go-connections v0.5.0 // indirect
        github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // 
indirect
        github.com/docker/go-metrics v0.0.1 // indirect
-       github.com/docker/go-units v0.5.0 // indirect
        github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1 // 
indirect
        github.com/emicklei/go-restful/v3 v3.11.0 // indirect
        github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // 
indirect
@@ -123,7 +123,6 @@
        github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // 
indirect
        github.com/modern-go/reflect2 v1.0.2 // indirect
        github.com/monochromegane/go-gitignore 
v0.0.0-20200626010858-205db1a8cc00 // indirect
-       github.com/morikuni/aec v1.0.0 // indirect
        github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // 
indirect
        github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // 
indirect
        github.com/opencontainers/go-digest v1.0.0 // indirect
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/go.sum new/helm-3.15.2/go.sum
--- old/helm-3.15.1/go.sum      2024-05-23 16:26:20.000000000 +0200
+++ new/helm-3.15.2/go.sum      2024-06-12 15:27:04.000000000 +0200
@@ -76,22 +76,22 @@
 github.com/davecgh/go-spew v1.1.1/go.mod 
h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
 github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2 
h1:aBfCb7iqHmDEIp6fBvC/hQUddQfg+3qdYjwzaiP9Hnc=
 github.com/distribution/distribution/v3 
v3.0.0-20221208165359-362910506bc2/go.mod 
h1:WHNsWjnIn2V1LYOrME7e8KxSeKunYHsxEm4am0BUtcI=
-github.com/docker/cli v24.0.6+incompatible 
h1:fF+XCQCgJjjQNIMjzaSmiKJSCcfcXb3TWTcc7GAneOY=
-github.com/docker/cli v24.0.6+incompatible/go.mod 
h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
-github.com/docker/distribution v2.8.2+incompatible 
h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
-github.com/docker/distribution v2.8.2+incompatible/go.mod 
h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
-github.com/docker/docker v24.0.9+incompatible 
h1:HPGzNmwfLZWdxHqK9/II92pyi1EpYKsAqcl4G0Of9v0=
-github.com/docker/docker v24.0.9+incompatible/go.mod 
h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
+github.com/distribution/reference v0.5.0 
h1:/FUIFXtfc/x2gpa5/VGfiGLuOIdYa1t65IKK2OFGvA0=
+github.com/distribution/reference v0.5.0/go.mod 
h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
+github.com/docker/cli v25.0.1+incompatible 
h1:mFpqnrS6Hsm3v1k7Wa/BO23oz0k121MTbTO1lpcGSkU=
+github.com/docker/cli v25.0.1+incompatible/go.mod 
h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
+github.com/docker/distribution v2.8.3+incompatible 
h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
+github.com/docker/distribution v2.8.3+incompatible/go.mod 
h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
+github.com/docker/docker v25.0.5+incompatible 
h1:UmQydMduGkrD5nQde1mecF/YnSbTOaPeFIeP5C4W+DE=
+github.com/docker/docker v25.0.5+incompatible/go.mod 
h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
 github.com/docker/docker-credential-helpers v0.7.0 
h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A=
 github.com/docker/docker-credential-helpers v0.7.0/go.mod 
h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0=
-github.com/docker/go-connections v0.4.0 
h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
-github.com/docker/go-connections v0.4.0/go.mod 
h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
+github.com/docker/go-connections v0.5.0 
h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c=
+github.com/docker/go-connections v0.5.0/go.mod 
h1:ov60Kzw0kKElRwhNs9UlUHAE/F9Fe6GLaXnqyDdmEXc=
 github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c 
h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=
 github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod 
h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA=
 github.com/docker/go-metrics v0.0.1 
h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=
 github.com/docker/go-metrics v0.0.1/go.mod 
h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw=
-github.com/docker/go-units v0.5.0 
h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
-github.com/docker/go-units v0.5.0/go.mod 
h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
 github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1 
h1:ZClxb8laGDf5arXfYcAtECDFgAgHklGI8CxgjHnXKJ4=
 github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod 
h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE=
 github.com/emicklei/go-restful/v3 v3.11.0 
h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g=
@@ -304,8 +304,6 @@
 github.com/modern-go/reflect2 v1.0.2/go.mod 
h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
 github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 
h1:n6/2gBQ3RWajuToeY6ZtZTIKv2v7ThUy5KKusIT0yc0=
 github.com/monochromegane/go-gitignore 
v0.0.0-20200626010858-205db1a8cc00/go.mod 
h1:Pm3mSP3c5uWn86xMLZ5Sa7JB9GsEZySvHYXCTK4E9q4=
-github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=
-github.com/morikuni/aec v1.0.0/go.mod 
h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc=
 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 
h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod 
h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
 github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod 
h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
@@ -317,8 +315,8 @@
 github.com/onsi/gomega v1.31.0/go.mod 
h1:DW9aCi7U6Yi40wNVAvT6kzFnEVEI5n3DloYBiKiT6zk=
 github.com/opencontainers/go-digest v1.0.0 
h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
 github.com/opencontainers/go-digest v1.0.0/go.mod 
h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
-github.com/opencontainers/image-spec v1.1.0-rc5 
h1:Ygwkfw9bpDvs+c9E34SdgGOj41dX/cbdlwvlWt0pnFI=
-github.com/opencontainers/image-spec v1.1.0-rc5/go.mod 
h1:X4pATf0uXsnn3g5aiGIsVnJBR4mxhKzfwmvK/B2NTm8=
+github.com/opencontainers/image-spec v1.1.0-rc6 
h1:XDqvyKsJEbRtATzkgItUqBA7QHk58yxX1Ov9HERHNqU=
+github.com/opencontainers/image-spec v1.1.0-rc6/go.mod 
h1:W4s4sFTMaBeK1BQLXbG4AdM2szdn85PY75RI83NrTrM=
 github.com/peterbourgon/diskv v2.0.1+incompatible 
h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=
 github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod 
h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
 github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 
h1:Ii+DKncOVM8Cu1Hc+ETb5K+23HdAMvESYE3ZJ5b5cMI=
@@ -580,8 +578,8 @@
 k8s.io/kubectl v0.30.0/go.mod h1:zgolRw2MQXLPwmic2l/+iHs239L49fhSeICuMhQQXTI=
 k8s.io/utils v0.0.0-20230726121419-3b25d923346b 
h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI=
 k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod 
h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
-oras.land/oras-go v1.2.4 h1:djpBY2/2Cs1PV87GSJlxv4voajVOMZxqqtq9AB8YNvY=
-oras.land/oras-go v1.2.4/go.mod h1:DYcGfb3YF1nKjcezfX2SNlDAeQFKSXmf+qrFmrh4324=
+oras.land/oras-go v1.2.5 h1:XpYuAwAb0DfQsunIyMfeET92emK8km3W4yEzZvUbsTo=
+oras.land/oras-go v1.2.5/go.mod h1:PuAwRShRZCsZb7g8Ar3jKKQR/2A/qN+pkYxIOd/FAoo=
 sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd 
h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
 sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod 
h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
 sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 
h1:XX3Ajgzov2RKUdc5jW3t5jwY7Bo7dcRm+tFxT+NfgY0=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/pkg/chart/loader/load.go 
new/helm-3.15.2/pkg/chart/loader/load.go
--- old/helm-3.15.1/pkg/chart/loader/load.go    2024-05-23 16:26:20.000000000 
+0200
+++ new/helm-3.15.2/pkg/chart/loader/load.go    2024-06-12 15:27:04.000000000 
+0200
@@ -134,6 +134,9 @@
                        if c.Metadata == nil {
                                c.Metadata = new(chart.Metadata)
                        }
+                       if c.Metadata.APIVersion != chart.APIVersionV1 {
+                               log.Printf("Warning: Dependency locking is 
handled in Chart.lock since apiVersion \"v2\". We recommend migrating to 
Chart.lock.")
+                       }
                        if c.Metadata.APIVersion == chart.APIVersionV1 {
                                c.Files = append(c.Files, &chart.File{Name: 
f.Name, Data: f.Data})
                        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.15.1/pkg/storage/storage.go 
new/helm-3.15.2/pkg/storage/storage.go
--- old/helm-3.15.1/pkg/storage/storage.go      2024-05-23 16:26:20.000000000 
+0200
+++ new/helm-3.15.2/pkg/storage/storage.go      2024-06-12 15:27:04.000000000 
+0200
@@ -111,7 +111,7 @@
 }
 
 // Deployed returns the last deployed release with the provided release name, 
or
-// returns ErrReleaseNotFound if not found.
+// returns driver.NewErrNoDeployedReleases if not found.
 func (s *Storage) Deployed(name string) (*rspb.Release, error) {
        ls, err := s.DeployedAll(name)
        if err != nil {
@@ -130,7 +130,7 @@
 }
 
 // DeployedAll returns all deployed releases with the provided name, or
-// returns ErrReleaseNotFound if not found.
+// returns driver.NewErrNoDeployedReleases if not found.
 func (s *Storage) DeployedAll(name string) ([]*rspb.Release, error) {
        s.Log("getting deployed releases from %q history", name)
 
@@ -149,7 +149,7 @@
 }
 
 // History returns the revision history for the release with the provided 
name, or
-// returns ErrReleaseNotFound if no such release name exists.
+// returns driver.ErrReleaseNotFound if no such release name exists.
 func (s *Storage) History(name string) ([]*rspb.Release, error) {
        s.Log("getting release history for %q", name)
 

++++++ helm.obsinfo ++++++
--- /var/tmp/diff_new_pack.ApeZfG/_old  2024-06-20 16:49:08.665733777 +0200
+++ /var/tmp/diff_new_pack.ApeZfG/_new  2024-06-20 16:49:08.669733917 +0200
@@ -1,5 +1,5 @@
 name: helm
-version: 3.15.1
-mtime: 1716474380
-commit: e211f2aa62992bd72586b395de50979e31231829
+version: 3.15.2
+mtime: 1718198824
+commit: 1a500d5625419a524fdae4b33de351cc4f58ec35
 

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/helm/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.helm.new.18349/vendor.tar.gz differ: char 5, line 1

Reply via email to