Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package helm for openSUSE:Factory checked in 
at 2022-11-11 14:36:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/helm (Old)
 and      /work/SRC/openSUSE:Factory/.helm.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "helm"

Fri Nov 11 14:36:30 2022 rev:44 rq:1035138 version:3.10.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/helm/helm.changes        2022-10-20 
11:12:06.692068290 +0200
+++ /work/SRC/openSUSE:Factory/.helm.new.1597/helm.changes      2022-11-11 
14:36:38.714339999 +0100
@@ -1,0 +2,8 @@
+Thu Nov 10 18:17:06 UTC 2022 - dmuel...@suse.com
+
+- Update to version 3.10.2:
+  * fix a few function names on comments
+  * redirect registry client output to stderr
+  * Readiness & liveness probes correct port
+
+-------------------------------------------------------------------

Old:
----
  helm-3.10.1.tar.gz

New:
----
  helm-3.10.2.tar.gz

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

Other differences:
------------------
++++++ helm.spec ++++++
--- /var/tmp/diff_new_pack.WZEQEn/_old  2022-11-11 14:36:40.410348308 +0100
+++ /var/tmp/diff_new_pack.WZEQEn/_new  2022-11-11 14:36:40.418348347 +0100
@@ -19,9 +19,8 @@
 %define goipath helm.sh/helm/v3
 %define git_commit d506314abfb5d21419df8c7e7e68012379db2354
 %define git_dirty clean
-
 Name:           helm
-Version:        3.10.1
+Version:        3.10.2
 Release:        0
 Summary:        The Kubernetes Package Manager
 License:        Apache-2.0
@@ -40,7 +39,7 @@
 Summary:        Bash Completion for %{name}
 Group:          System/Shells
 Requires:       %{name} = %{version}
-Supplements:    packageand(%{name}:bash-completion)
+Supplements:    (%{name} and bash-completion)
 BuildArch:      noarch
 
 %description bash-completion
@@ -50,7 +49,7 @@
 Summary:        Zsh Completion for %{name}
 Group:          System/Shells
 Requires:       %{name} = %{version}
-Supplements:    packageand(%{name}:zsh)
+Supplements:    (%{name} and zsh)
 BuildArch:      noarch
 
 %description zsh-completion
@@ -60,7 +59,7 @@
 Summary:        Fish Completion for %{name}
 Group:          System/Shells
 Requires:       %{name} = %{version}
-Supplements:    packageand(%{name}:fish)
+Supplements:    (%{name} and fish)
 BuildArch:      noarch
 
 %description fish-completion

++++++ _service ++++++
--- /var/tmp/diff_new_pack.WZEQEn/_old  2022-11-11 14:36:40.462348563 +0100
+++ /var/tmp/diff_new_pack.WZEQEn/_new  2022-11-11 14:36:40.462348563 +0100
@@ -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.10.1</param>
+    <param name="revision">v3.10.2</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="recompress" mode="disabled">

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.WZEQEn/_old  2022-11-11 14:36:40.482348661 +0100
+++ /var/tmp/diff_new_pack.WZEQEn/_new  2022-11-11 14:36:40.486348681 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/helm/helm.git</param>
-              <param 
name="changesrevision">9f88ccb6aee40b9a0535fcc7efea6055e1ef72c9</param></service></servicedata>
+              <param 
name="changesrevision">50f003e5ee8704ec937a756c646870227d7c8b58</param></service></servicedata>
 (No newline at EOF)
 

++++++ helm-3.10.1.tar.gz -> helm-3.10.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.10.1/cmd/helm/root.go 
new/helm-3.10.2/cmd/helm/root.go
--- old/helm-3.10.1/cmd/helm/root.go    2022-10-12 21:58:06.000000000 +0200
+++ new/helm-3.10.2/cmd/helm/root.go    2022-11-10 15:34:48.000000000 +0100
@@ -155,7 +155,7 @@
        registryClient, err := registry.NewClient(
                registry.ClientOptDebug(settings.Debug),
                registry.ClientOptEnableCache(true),
-               registry.ClientOptWriter(out),
+               registry.ClientOptWriter(os.Stderr),
                registry.ClientOptCredentialsFile(settings.RegistryConfig),
        )
        if err != nil {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.10.1/pkg/action/lint.go 
new/helm-3.10.2/pkg/action/lint.go
--- old/helm-3.10.1/pkg/action/lint.go  2022-10-12 21:58:06.000000000 +0200
+++ new/helm-3.10.2/pkg/action/lint.go  2022-11-10 15:34:48.000000000 +0100
@@ -76,7 +76,7 @@
        return result
 }
 
-// HasWaringsOrErrors checks is LintResult has any warnings or errors
+// HasWarningsOrErrors checks is LintResult has any warnings or errors
 func HasWarningsOrErrors(result *LintResult) bool {
        for _, msg := range result.Messages {
                if msg.Severity > support.InfoSev {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.10.1/pkg/chartutil/create.go 
new/helm-3.10.2/pkg/chartutil/create.go
--- old/helm-3.10.1/pkg/chartutil/create.go     2022-10-12 21:58:06.000000000 
+0200
+++ new/helm-3.10.2/pkg/chartutil/create.go     2022-11-10 15:34:48.000000000 
+0100
@@ -312,7 +312,7 @@
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           ports:
             - name: http
-              containerPort: 80
+              containerPort: {{ .Values.service.port }}
               protocol: TCP
           livenessProbe:
             httpGet:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.10.1/pkg/engine/lookup_func.go 
new/helm-3.10.2/pkg/engine/lookup_func.go
--- old/helm-3.10.1/pkg/engine/lookup_func.go   2022-10-12 21:58:06.000000000 
+0200
+++ new/helm-3.10.2/pkg/engine/lookup_func.go   2022-11-10 15:34:48.000000000 
+0100
@@ -77,7 +77,7 @@
        }
 }
 
-// getDynamicClientOnUnstructured returns a dynamic client on an Unstructured 
type. This client can be further namespaced.
+// getDynamicClientOnKind returns a dynamic client on an Unstructured type. 
This client can be further namespaced.
 func getDynamicClientOnKind(apiversion string, kind string, config 
*rest.Config) (dynamic.NamespaceableResourceInterface, bool, error) {
        gvk := schema.FromAPIVersionAndKind(apiversion, kind)
        apiRes, err := getAPIResourceForGVK(gvk, config)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/helm-3.10.1/pkg/plugin/installer/http_installer.go 
new/helm-3.10.2/pkg/plugin/installer/http_installer.go
--- old/helm-3.10.1/pkg/plugin/installer/http_installer.go      2022-10-12 
21:58:06.000000000 +0200
+++ new/helm-3.10.2/pkg/plugin/installer/http_installer.go      2022-11-10 
15:34:48.000000000 +0100
@@ -162,13 +162,13 @@
        return helmpath.DataPath("plugins", i.PluginName)
 }
 
-// CleanJoin resolves dest as a subpath of root.
+// cleanJoin resolves dest as a subpath of root.
 //
 // This function runs several security checks on the path, generating an error 
if
 // the supplied `dest` looks suspicious or would result in dubious behavior on 
the
 // filesystem.
 //
-// CleanJoin assumes that any attempt by `dest` to break out of the CWD is an 
attempt
+// cleanJoin assumes that any attempt by `dest` to break out of the CWD is an 
attempt
 // to be malicious. (If you don't care about this, use the securejoin-filepath 
library.)
 // It will emit an error if it detects paths that _look_ malicious, operating 
on the
 // assumption that we don't actually want to do anything with files that 
already

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

Reply via email to