Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package okteto for openSUSE:Factory checked 
in at 2022-12-02 13:13:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/okteto (Old)
 and      /work/SRC/openSUSE:Factory/.okteto.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "okteto"

Fri Dec  2 13:13:04 2022 rev:34 rq:1039385 version:2.10.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/okteto/okteto.changes    2022-12-01 
17:21:02.598175093 +0100
+++ /work/SRC/openSUSE:Factory/.okteto.new.1835/okteto.changes  2022-12-02 
13:13:19.049911339 +0100
@@ -1,0 +2,7 @@
+Thu Dec 01 19:48:54 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 2.10.1:
+  * Fix inline export when image tag and cache tag are the same (#3261) (#3262)
+  * Include 'destroy-error' status as a failure in WaitForActionToFinish 
function. This was provoking that if the pipeline fails, we don't indicate the 
error in the CLI (#3258) (#3260)
+
+-------------------------------------------------------------------

Old:
----
  okteto-2.10.0.tar.gz

New:
----
  okteto-2.10.1.tar.gz

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

Other differences:
------------------
++++++ okteto.spec ++++++
--- /var/tmp/diff_new_pack.AvATjw/_old  2022-12-02 13:13:20.221917784 +0100
+++ /var/tmp/diff_new_pack.AvATjw/_new  2022-12-02 13:13:20.225917806 +0100
@@ -19,7 +19,7 @@
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:           okteto
-Version:        2.10.0
+Version:        2.10.1
 Release:        0
 Summary:        Develop your applications directly in your Kubernetes Cluster
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.AvATjw/_old  2022-12-02 13:13:20.273918069 +0100
+++ /var/tmp/diff_new_pack.AvATjw/_new  2022-12-02 13:13:20.281918114 +0100
@@ -3,10 +3,10 @@
     <param name="url">https://github.com/okteto/okteto</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">2.10.0</param>
+    <param name="revision">2.10.1</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
-    <param name="match-tag">2.10.0</param>
+    <param name="match-tag">2.10.1</param>
   </service>
   <service name="set_version" mode="disabled">
     <param name="basename">okteto</param>
@@ -16,7 +16,7 @@
     <param name="compression">gz</param>
   </service>
   <service name="go_modules" mode="disabled">
-    <param name="archive">okteto-2.10.0.tar.gz</param>
+    <param name="archive">okteto-2.10.1.tar.gz</param>
   </service>
 </services>
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.AvATjw/_old  2022-12-02 13:13:20.321918334 +0100
+++ /var/tmp/diff_new_pack.AvATjw/_new  2022-12-02 13:13:20.325918356 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/okteto/okteto</param>
-              <param 
name="changesrevision">6dc6018f02291a45f46e4b8b3faa2f139ca64c12</param></service></servicedata>
+              <param 
name="changesrevision">c9b1cc3a7c128d0905811a03697b396444e9ebb6</param></service></servicedata>
 (No newline at EOF)
 

++++++ okteto-2.10.0.tar.gz -> okteto-2.10.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteto-2.10.0/pkg/cmd/build/buildkit.go 
new/okteto-2.10.1/pkg/cmd/build/buildkit.go
--- old/okteto-2.10.0/pkg/cmd/build/buildkit.go 2022-11-28 18:27:22.000000000 
+0100
+++ new/okteto-2.10.1/pkg/cmd/build/buildkit.go 2022-12-01 20:09:06.000000000 
+0100
@@ -131,17 +131,17 @@
        }
 
        if buildOptions.ExportCache != "" {
-               mode := "min"
+               exportType := "inline"
                if buildOptions.ExportCache != buildOptions.Tag {
-                       mode = "max"
+                       exportType = "registry"
                }
                opt.CacheExports = append(
                        opt.CacheExports,
                        client.CacheOptionsEntry{
-                               Type: "registry",
+                               Type: exportType,
                                Attrs: map[string]string{
                                        "ref":  buildOptions.ExportCache,
-                                       "mode": mode,
+                                       "mode": "max",
                                },
                        },
                )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteto-2.10.0/pkg/okteto/action.go 
new/okteto-2.10.1/pkg/okteto/action.go
--- old/okteto-2.10.0/pkg/okteto/action.go      2022-11-28 18:27:22.000000000 
+0100
+++ new/okteto-2.10.1/pkg/okteto/action.go      2022-12-01 20:09:06.000000000 
+0100
@@ -58,7 +58,7 @@
                        switch a.Status {
                        case "progressing", "queued":
                                continue
-                       case "error":
+                       case "error", "destroy-error":
                                oktetoLog.Infof("action '%s' failed", 
actionName)
                                return fmt.Errorf("pipeline '%s' failed", 
pipelineName)
                        default:

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

Reply via email to