Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package semaphore for openSUSE:Factory 
checked in at 2025-12-16 15:57:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/semaphore (Old)
 and      /work/SRC/openSUSE:Factory/.semaphore.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "semaphore"

Tue Dec 16 15:57:10 2025 rev:22 rq:1323054 version:2.16.46

Changes:
--------
--- /work/SRC/openSUSE:Factory/semaphore/semaphore.changes      2025-11-09 
21:08:46.349330148 +0100
+++ /work/SRC/openSUSE:Factory/.semaphore.new.1939/semaphore.changes    
2025-12-16 16:03:18.416681868 +0100
@@ -1,0 +2,6 @@
+Tue Dec 16 06:13:29 UTC 2025 - Johannes Kastl 
<[email protected]>
+
+- Update to version 2.16.46:
+  * fix(db): use longtext for tf state
+
+-------------------------------------------------------------------

Old:
----
  semaphore-2.16.45.obscpio
  web-2.16.45.tar.gz

New:
----
  semaphore-2.16.46.obscpio
  web-2.16.46.tar.gz

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

Other differences:
------------------
++++++ semaphore.spec ++++++
--- /var/tmp/diff_new_pack.sFOXnC/_old  2025-12-16 16:03:23.896913410 +0100
+++ /var/tmp/diff_new_pack.sFOXnC/_new  2025-12-16 16:03:23.896913410 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           semaphore
-Version:        2.16.45
+Version:        2.16.46
 Release:        0
 Summary:        Modern UI for Ansible
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.sFOXnC/_old  2025-12-16 16:03:23.980916959 +0100
+++ /var/tmp/diff_new_pack.sFOXnC/_new  2025-12-16 16:03:23.984917128 +0100
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/ansible-semaphore/semaphore</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v2.16.45</param>
+    <param name="revision">v2.16.46</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.sFOXnC/_old  2025-12-16 16:03:24.008918142 +0100
+++ /var/tmp/diff_new_pack.sFOXnC/_new  2025-12-16 16:03:24.012918311 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/ansible-semaphore/semaphore</param>
-              <param 
name="changesrevision">cbd5620246aafef38a9328dccca065809b640ed1</param></service></servicedata>
+              <param 
name="changesrevision">bc8a2310c4ff024b0f6f8d994d2e16bb35a2c445</param></service></servicedata>
 (No newline at EOF)
 

++++++ semaphore-2.16.45.obscpio -> semaphore-2.16.46.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/semaphore-2.16.45/db/Migration.go 
new/semaphore-2.16.46/db/Migration.go
--- old/semaphore-2.16.45/db/Migration.go       2025-11-07 19:27:42.000000000 
+0100
+++ new/semaphore-2.16.46/db/Migration.go       2025-12-15 22:43:06.000000000 
+0100
@@ -2,12 +2,13 @@
 
 import (
        "fmt"
-       "github.com/semaphoreui/semaphore/pkg/tz"
-       "github.com/semaphoreui/semaphore/util"
        "slices"
        "strconv"
        "strings"
        "time"
+
+       "github.com/semaphoreui/semaphore/pkg/tz"
+       "github.com/semaphoreui/semaphore/util"
 )
 
 // Migration represents sql schema version
@@ -113,6 +114,7 @@
                {Version: "2.16.0"},
                {Version: "2.16.1"},
                {Version: "2.16.2"},
+               {Version: "2.16.50"},
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/semaphore-2.16.45/db/sql/migrations/v2.16.3.err.sql 
new/semaphore-2.16.46/db/sql/migrations/v2.16.3.err.sql
--- old/semaphore-2.16.45/db/sql/migrations/v2.16.3.err.sql     2025-11-07 
19:27:42.000000000 +0100
+++ new/semaphore-2.16.46/db/sql/migrations/v2.16.3.err.sql     1970-01-01 
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-drop table project__invite;
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/semaphore-2.16.45/db/sql/migrations/v2.16.50.err.sql 
new/semaphore-2.16.46/db/sql/migrations/v2.16.50.err.sql
--- old/semaphore-2.16.45/db/sql/migrations/v2.16.50.err.sql    1970-01-01 
01:00:00.000000000 +0100
+++ new/semaphore-2.16.46/db/sql/migrations/v2.16.50.err.sql    2025-12-15 
22:43:06.000000000 +0100
@@ -0,0 +1 @@
+alter table `project__terraform_inventory_state` change `state` `state` text 
not null
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/semaphore-2.16.45/db/sql/migrations/v2.16.50.sql 
new/semaphore-2.16.46/db/sql/migrations/v2.16.50.sql
--- old/semaphore-2.16.45/db/sql/migrations/v2.16.50.sql        1970-01-01 
01:00:00.000000000 +0100
+++ new/semaphore-2.16.46/db/sql/migrations/v2.16.50.sql        2025-12-15 
22:43:06.000000000 +0100
@@ -0,0 +1 @@
+alter table `project__terraform_inventory_state` change `state` `state` 
longtext not null
\ No newline at end of file

++++++ semaphore.obsinfo ++++++
--- /var/tmp/diff_new_pack.sFOXnC/_old  2025-12-16 16:03:25.128965464 +0100
+++ /var/tmp/diff_new_pack.sFOXnC/_new  2025-12-16 16:03:25.132965634 +0100
@@ -1,5 +1,5 @@
 name: semaphore
-version: 2.16.45
-mtime: 1762540062
-commit: cbd5620246aafef38a9328dccca065809b640ed1
+version: 2.16.46
+mtime: 1765834986
+commit: bc8a2310c4ff024b0f6f8d994d2e16bb35a2c445
 

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/semaphore/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.semaphore.new.1939/vendor.tar.gz differ: char 13, 
line 1

++++++ web-2.16.45.tar.gz -> web-2.16.46.tar.gz ++++++
/work/SRC/openSUSE:Factory/semaphore/web-2.16.45.tar.gz 
/work/SRC/openSUSE:Factory/.semaphore.new.1939/web-2.16.46.tar.gz differ: char 
14, line 1

Reply via email to