Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tailscale for openSUSE:Factory 
checked in at 2025-08-29 18:37:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tailscale (Old)
 and      /work/SRC/openSUSE:Factory/.tailscale.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tailscale"

Fri Aug 29 18:37:33 2025 rev:35 rq:1301939 version:1.86.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/tailscale/tailscale.changes      2025-07-30 
11:46:53.678490292 +0200
+++ /work/SRC/openSUSE:Factory/.tailscale.new.1977/tailscale.changes    
2025-08-29 18:39:51.001938888 +0200
@@ -1,0 +2,15 @@
+Fri Aug 29 12:57:59 UTC 2025 - Richard Rahl <rra...@opensuse.org>
+
+- add patch fix-CVE-2025-58058.patch, fixing bsc#1248920
+
+-------------------------------------------------------------------
+Fri Aug 29 11:10:29 UTC 2025 - Richard Rahl <rra...@opensuse.org>
+
+- update to version 1.86.5:
+  * cmd/k8s-proxy,k8s-operator: fix serve config for userspace mode
+- update to version 1.86.4:
+  * nothing of relevance
+- update to version 1.86.3:
+  * nothing of relevance
+
+-------------------------------------------------------------------

Old:
----
  tailscale-1.86.2.tar.gz

New:
----
  fix-CVE-2025-58058.patch
  tailscale-1.86.5.tar.gz

----------(New B)----------
  New:
- add patch fix-CVE-2025-58058.patch, fixing bsc#1248920
----------(New E)----------

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

Other differences:
------------------
++++++ tailscale.spec ++++++
--- /var/tmp/diff_new_pack.9G62XE/_old  2025-08-29 18:39:53.862060350 +0200
+++ /var/tmp/diff_new_pack.9G62XE/_new  2025-08-29 18:39:53.862060350 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tailscale
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           tailscale
-Version:        1.86.2
+Version:        1.86.5
 Release:        0
 Summary:        The easiest, most secure way to use WireGuard and 2FA
 License:        BSD-3-Clause
@@ -28,6 +28,7 @@
 Source3:        %{name}d.defaults
 Patch0:         build-verbose.patch
 Patch1:         disable-auto-update.patch
+Patch2:         fix-CVE-2025-58058.patch
 BuildRequires:  bash-completion
 BuildRequires:  fish
 BuildRequires:  git-core

++++++ _service ++++++
--- /var/tmp/diff_new_pack.9G62XE/_old  2025-08-29 18:39:54.054068504 +0200
+++ /var/tmp/diff_new_pack.9G62XE/_new  2025-08-29 18:39:54.086069863 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/tailscale/tailscale.git</param>
     <param name="scm">git</param>
     <param name="package-meta">yes</param>
-    <param name="revision">refs/tags/v1.86.2</param>
+    <param name="revision">refs/tags/v1.86.5</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">disable</param>

++++++ fix-CVE-2025-58058.patch ++++++
diff --git a/go.mod b/go.mod
index 3d7514158..837fc8c44 100644
--- a/go.mod
+++ b/go.mod
@@ -382,7 +382,7 @@ require (
        github.com/tomarrell/wrapcheck/v2 v2.8.3 // indirect
        github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
        github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701 // indirect
-       github.com/ulikunitz/xz v0.5.11 // indirect
+       github.com/ulikunitz/xz v0.5.15 // indirect
        github.com/ultraware/funlen v0.1.0 // indirect
        github.com/ultraware/whitespace v0.1.0 // indirect
        github.com/uudashr/gocognit v1.1.2 // indirect
diff --git a/go.sum b/go.sum
index 995b93010..715cd6dea 100644
--- a/go.sum
+++ b/go.sum
@@ -1010,8 +1010,8 @@ github.com/u-root/u-root v0.14.0 
h1:Ka4T10EEML7dQ5XDvO9c3MBN8z4nuSnGjcd1jmU2ivg=
 github.com/u-root/u-root v0.14.0/go.mod 
h1:hAyZorapJe4qzbLWlAkmSVCJGbfoU9Pu4jpJ1WMluqE=
 github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701 
h1:pyC9PaHYZFgEKFdlp3G8RaCKgVpHZnecvArXvPXcFkM=
 github.com/u-root/uio v0.0.0-20240224005618-d2acac8f3701/go.mod 
h1:P3a5rG4X7tI17Nn3aOIAYr5HbIMukwXG0urG0WuL8OA=
-github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8=
-github.com/ulikunitz/xz v0.5.11/go.mod 
h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
+github.com/ulikunitz/xz v0.5.15 h1:9DNdB5s+SgV3bQ2ApL10xRc35ck0DuIX/isZvIk+ubY=
+github.com/ulikunitz/xz v0.5.15/go.mod 
h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
 github.com/ultraware/funlen v0.1.0 
h1:BuqclbkY6pO+cvxoq7OsktIXZpgBSkYTQtmwhAK81vI=
 github.com/ultraware/funlen v0.1.0/go.mod 
h1:XJqmOQja6DpxarLj6Jj1U7JuoS8PvL4nEqDaQhy22p4=
 github.com/ultraware/whitespace v0.1.0 
h1:O1HKYoh0kIeqE8sFqZf1o0qbORXUCOQFrlaQyZsczZw=

++++++ tailscale-1.86.2.tar.gz -> tailscale-1.86.5.tar.gz ++++++
/work/SRC/openSUSE:Factory/tailscale/tailscale-1.86.2.tar.gz 
/work/SRC/openSUSE:Factory/.tailscale.new.1977/tailscale-1.86.5.tar.gz differ: 
char 20, line 1

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/tailscale/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.tailscale.new.1977/vendor.tar.gz differ: char 9, 
line 1

Reply via email to