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-02-03 23:16:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/okteto (Old)
 and      /work/SRC/openSUSE:Factory/.okteto.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "okteto"

Thu Feb  3 23:16:48 2022 rev:3 rq:950893 version:1.15.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/okteto/okteto.changes    2022-02-02 
22:45:02.102059120 +0100
+++ /work/SRC/openSUSE:Factory/.okteto.new.1898/okteto.changes  2022-02-03 
23:17:47.224080100 +0100
@@ -1,0 +2,7 @@
+Thu Feb 03 07:20:24 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 1.15.3:
+  * Fix waiting for the display to finish before running other commands 
(#2218) (#2221)
+  * Add okteto-compose as a valid stack path (#2220) (#2222)
+
+-------------------------------------------------------------------

Old:
----
  okteto-1.15.2.tar.gz

New:
----
  okteto-1.15.3.tar.gz

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

Other differences:
------------------
++++++ okteto.spec ++++++
--- /var/tmp/diff_new_pack.L14Uhs/_old  2022-02-03 23:17:49.620063745 +0100
+++ /var/tmp/diff_new_pack.L14Uhs/_new  2022-02-03 23:17:49.628063690 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package okteto
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:           okteto
-Version:        1.15.2
+Version:        1.15.3
 Release:        0
 Summary:        Develop your applications directly in your Kubernetes Cluster
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.L14Uhs/_old  2022-02-03 23:17:49.660063472 +0100
+++ /var/tmp/diff_new_pack.L14Uhs/_new  2022-02-03 23:17:49.664063445 +0100
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/okteto/okteto</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">1.15.2</param>
+    <param name="revision">1.15.3</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
   </service>
@@ -15,7 +15,7 @@
     <param name="compression">gz</param>
   </service>
   <service name="go_modules" mode="disabled">
-    <param name="archive">okteto-1.15.2.tar.gz</param>
+    <param name="archive">okteto-1.15.3.tar.gz</param>
   </service>
 </services>
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.L14Uhs/_old  2022-02-03 23:17:49.684063308 +0100
+++ /var/tmp/diff_new_pack.L14Uhs/_new  2022-02-03 23:17:49.688063281 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/okteto/okteto</param>
-              <param 
name="changesrevision">e730b0f8eb9485dd69d18a979ac6e5392f00f011</param></service></servicedata>
+              <param 
name="changesrevision">5bdd37cbd4c114f627260dff46d7af3cefc14152</param></service></servicedata>
 (No newline at EOF)
 

++++++ okteto-1.15.2.tar.gz -> okteto-1.15.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteto-1.15.2/cmd/context/utils.go 
new/okteto-1.15.3/cmd/context/utils.go
--- old/okteto-1.15.2/cmd/context/utils.go      2022-01-26 10:35:23.000000000 
+0100
+++ new/okteto-1.15.3/cmd/context/utils.go      2022-02-02 16:26:57.000000000 
+0100
@@ -353,6 +353,12 @@
                ".okteto/okteto-stack.yaml",
                ".okteto/stack.yml",
                ".okteto/stack.yaml",
+
+               "okteto-compose.yml",
+               "okteto-compose.yaml",
+               ".okteto/okteto-compose.yml",
+               ".okteto/okteto-compose.yaml",
+
                "docker-compose.yml",
                "docker-compose.yaml",
                ".okteto/docker-compose.yml",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteto-1.15.2/cmd/utils/executor.go 
new/okteto-1.15.3/cmd/utils/executor.go
--- old/okteto-1.15.2/cmd/utils/executor.go     2022-01-26 10:35:23.000000000 
+0100
+++ new/okteto-1.15.3/cmd/utils/executor.go     2022-02-02 16:26:57.000000000 
+0100
@@ -17,6 +17,7 @@
        "bufio"
        "os"
        "os/exec"
+       "sync"
 
        oktetoLog "github.com/okteto/okteto/pkg/log"
 )
@@ -70,10 +71,9 @@
                return err
        }
 
-       go e.displayer.display(command)
+       e.displayer.display(command)
 
        err := cmd.Wait()
-
        return err
 }
 
@@ -119,19 +119,23 @@
 }
 
 func (e *jsonExecutorDisplayer) display(command string) {
+       var wg sync.WaitGroup
+       wg.Add(2)
        go func() {
                for e.stdoutScanner.Scan() {
                        line := e.stdoutScanner.Text()
 
                        oktetoLog.Println(line)
                }
+               wg.Done()
        }()
 
        go func() {
                for e.stderrScanner.Scan() {
                        line := e.stderrScanner.Text()
                        oktetoLog.Fail(line)
-
                }
+               wg.Done()
        }()
+       wg.Wait()
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteto-1.15.2/cmd/utils/stack.go 
new/okteto-1.15.3/cmd/utils/stack.go
--- old/okteto-1.15.2/cmd/utils/stack.go        2022-01-26 10:35:23.000000000 
+0100
+++ new/okteto-1.15.3/cmd/utils/stack.go        2022-02-02 16:26:57.000000000 
+0100
@@ -32,6 +32,10 @@
                {"stack.yaml"},
                {".okteto", "okteto-stack.yml"},
                {".okteto", "okteto-stack.yaml"},
+               {"okteto-compose.yml"},
+               {"okteto-compose.yaml"},
+               {".okteto", "okteto-compose.yml"},
+               {".okteto", "okteto-compose.yaml"},
                {"docker-compose.yml"},
                {"docker-compose.yaml"},
                {".okteto", "docker-compose.yml"},
@@ -116,7 +120,7 @@
 
 func isPathAComposeFile(path string) bool {
        base := filepath.Base(path)
-       return strings.HasPrefix(base, "docker-compose")
+       return strings.HasPrefix(base, "docker-compose") || 
strings.HasPrefix(base, "okteto-compose")
 }
 
 func isDeprecatedExtension(stackPath string) bool {

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

Reply via email to