Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kubefirst for openSUSE:Factory 
checked in at 2024-07-04 16:26:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kubefirst (Old)
 and      /work/SRC/openSUSE:Factory/.kubefirst.new.2080 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kubefirst"

Thu Jul  4 16:26:48 2024 rev:16 rq:1185258 version:2.4.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/kubefirst/kubefirst.changes      2024-06-11 
18:31:06.944864266 +0200
+++ /work/SRC/openSUSE:Factory/.kubefirst.new.2080/kubefirst.changes    
2024-07-04 16:27:50.069501469 +0200
@@ -1,0 +2,7 @@
+Thu Jul 04 04:49:47 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 2.4.11:
+  * chore: bump launch up version (#2223)
+  * added bubbletea quit method instead of os exit
+
+-------------------------------------------------------------------

Old:
----
  kubefirst-2.4.10.obscpio

New:
----
  kubefirst-2.4.11.obscpio

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

Other differences:
------------------
++++++ kubefirst.spec ++++++
--- /var/tmp/diff_new_pack.NAegZS/_old  2024-07-04 16:27:53.033609673 +0200
+++ /var/tmp/diff_new_pack.NAegZS/_new  2024-07-04 16:27:53.037609820 +0200
@@ -19,7 +19,7 @@
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:           kubefirst
-Version:        2.4.10
+Version:        2.4.11
 Release:        0
 Summary:        CLI for the KubeFirst GitOps Infrastructure & Application 
Delivery Platform
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.NAegZS/_old  2024-07-04 16:27:53.069610987 +0200
+++ /var/tmp/diff_new_pack.NAegZS/_new  2024-07-04 16:27:53.073611134 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/kubefirst/kubefirst</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v2.4.10</param>
+    <param name="revision">v2.4.11</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
     <param name="versionrewrite-pattern">v(.*)</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.NAegZS/_old  2024-07-04 16:27:53.093611864 +0200
+++ /var/tmp/diff_new_pack.NAegZS/_new  2024-07-04 16:27:53.093611864 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/kubefirst/kubefirst</param>
-              <param 
name="changesrevision">55e58cf642db4e48b11bdede6ba0f0a0d6077b4e</param></service></servicedata>
+              <param 
name="changesrevision">819d539c291851c1a2a13a29954aa20bc28f5641</param></service></servicedata>
 (No newline at EOF)
 

++++++ kubefirst-2.4.10.obscpio -> kubefirst-2.4.11.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubefirst-2.4.10/cmd/k3d/create.go 
new/kubefirst-2.4.11/cmd/k3d/create.go
--- old/kubefirst-2.4.10/cmd/k3d/create.go      2024-06-10 21:53:11.000000000 
+0200
+++ new/kubefirst-2.4.11/cmd/k3d/create.go      2024-07-04 00:02:00.000000000 
+0200
@@ -31,6 +31,7 @@
        "github.com/kubefirst/kubefirst/internal/catalog"
        "github.com/kubefirst/kubefirst/internal/gitShim"
        "github.com/kubefirst/kubefirst/internal/segment"
+       "github.com/kubefirst/kubefirst/internal/progress"
        "github.com/kubefirst/kubefirst/internal/utilities"
        "github.com/kubefirst/metrics-client/pkg/telemetry"
        "github.com/kubefirst/runtime/configs"
@@ -1407,7 +1408,7 @@
                
reports.LocalHandoffScreenV2(viper.GetString("components.argocd.password"), 
clusterNameFlag, gitDestDescriptor, cGitOwner, config, ciFlag)
 
                if ciFlag {
-                       os.Exit(0)
+                       progress.Progress.Quit()
                }
        }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubefirst-2.4.10/cmd/logs.go 
new/kubefirst-2.4.11/cmd/logs.go
--- old/kubefirst-2.4.10/cmd/logs.go    2024-06-10 21:53:11.000000000 +0200
+++ new/kubefirst-2.4.11/cmd/logs.go    2024-07-04 00:02:00.000000000 +0200
@@ -8,9 +8,9 @@
 
 import (
        "fmt"
-       "os"
 
        "github.com/kubefirst/kubefirst/internal/provisionLogs"
+       "github.com/kubefirst/kubefirst/internal/progress"
        "github.com/nxadm/tail"
        "github.com/spf13/cobra"
        "github.com/spf13/viper"
@@ -28,7 +28,7 @@
                        t, err := 
tail.TailFile(viper.GetString("k1-paths.log-file"), tail.Config{Follow: true, 
ReOpen: true})
                        if err != nil {
                                fmt.Printf("Error tailing log file: %v\n", err)
-                               os.Exit(1)
+                               progress.Progress.Quit()
                        }
 
                        for line := range t.Lines {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubefirst-2.4.10/cmd/root.go 
new/kubefirst-2.4.11/cmd/root.go
--- old/kubefirst-2.4.10/cmd/root.go    2024-06-10 21:53:11.000000000 +0200
+++ new/kubefirst-2.4.11/cmd/root.go    2024-07-04 00:02:00.000000000 +0200
@@ -8,7 +8,6 @@
 
 import (
        "fmt"
-       "os"
 
        "github.com/kubefirst/kubefirst/cmd/aws"
        "github.com/kubefirst/kubefirst/cmd/civo"
@@ -51,7 +50,7 @@
        err := rootCmd.Execute()
        if err != nil {
                fmt.Printf("\nIf a detailed error message was available, please 
make the necessary corrections before retrying.\nYou can re-run the last 
command to try the operation again.\n\n")
-               os.Exit(1)
+               progress.Progress.Quit()
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubefirst-2.4.10/internal/k3d/menu.go 
new/kubefirst-2.4.11/internal/k3d/menu.go
--- old/kubefirst-2.4.10/internal/k3d/menu.go   2024-06-10 21:53:11.000000000 
+0200
+++ new/kubefirst-2.4.11/internal/k3d/menu.go   2024-07-04 00:02:00.000000000 
+0200
@@ -11,7 +11,7 @@
        "io"
        "os"
        "strings"
-
+       "github.com/kubefirst/kubefirst/internal/progress"
        "github.com/charmbracelet/bubbles/list"
        tea "github.com/charmbracelet/bubbletea"
        "github.com/charmbracelet/lipgloss"
@@ -125,7 +125,7 @@
        model, err := tea.NewProgram(m).Run()
        if err != nil {
                fmt.Println("Error running program:", err)
-               os.Exit(1)
+               progress.Progress.Quit()
        }
 
        var result string
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kubefirst-2.4.10/internal/launch/constants.go 
new/kubefirst-2.4.11/internal/launch/constants.go
--- old/kubefirst-2.4.10/internal/launch/constants.go   2024-06-10 
21:53:11.000000000 +0200
+++ new/kubefirst-2.4.11/internal/launch/constants.go   2024-07-04 
00:02:00.000000000 +0200
@@ -11,7 +11,7 @@
        helmChartName     = "kubefirst"
        helmChartRepoName = "kubefirst"
        helmChartRepoURL  = "https://charts.kubefirst.com";
-       helmChartVersion  = "2.4.10"
+       helmChartVersion  = "2.4.11"
        namespace         = "kubefirst"
        secretName        = "kubefirst-initial-secrets"
 )

++++++ kubefirst.obsinfo ++++++
--- /var/tmp/diff_new_pack.NAegZS/_old  2024-07-04 16:27:53.301619457 +0200
+++ /var/tmp/diff_new_pack.NAegZS/_new  2024-07-04 16:27:53.309619749 +0200
@@ -1,5 +1,5 @@
 name: kubefirst
-version: 2.4.10
-mtime: 1718049191
-commit: 55e58cf642db4e48b11bdede6ba0f0a0d6077b4e
+version: 2.4.11
+mtime: 1720044120
+commit: 819d539c291851c1a2a13a29954aa20bc28f5641
 

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

Reply via email to