Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package k3sup for openSUSE:Factory checked 
in at 2023-10-29 19:41:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/k3sup (Old)
 and      /work/SRC/openSUSE:Factory/.k3sup.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "k3sup"

Sun Oct 29 19:41:13 2023 rev:8 rq:1120835 version:0.13.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/k3sup/k3sup.changes      2023-09-15 
22:11:04.605152183 +0200
+++ /work/SRC/openSUSE:Factory/.k3sup.new.17445/k3sup.changes   2023-10-29 
19:41:28.206655603 +0100
@@ -1,0 +2,19 @@
+Fri Oct 27 14:50:01 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 0.13.3:
+  * Add --server-k3s-extra-args for disabling traefik etc
+
+-------------------------------------------------------------------
+Fri Oct 27 14:49:16 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 0.13.2:
+  * Add notes to README for k3sup plan
+  * Use node-token from an env-var instead of a file
+  * Use an env-var for the node-token instead of a file
+  * Update examples for k3sup plan
+  * Move temporary file deletion into a defer
+  * Add plan and node-token commands
+  * Fix typo
+  * Alteration to support message
+
+-------------------------------------------------------------------

Old:
----
  k3sup-0.13.1.obscpio

New:
----
  k3sup-0.13.3.obscpio

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

Other differences:
------------------
++++++ k3sup.spec ++++++
--- /var/tmp/diff_new_pack.mXdzaG/_old  2023-10-29 19:41:29.126689074 +0100
+++ /var/tmp/diff_new_pack.mXdzaG/_new  2023-10-29 19:41:29.130689220 +0100
@@ -19,7 +19,7 @@
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:           k3sup
-Version:        0.13.1
+Version:        0.13.3
 Release:        0
 Summary:        Bootstrap Kubernetes with k3s over SSH < 1 min
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.mXdzaG/_old  2023-10-29 19:41:29.158690238 +0100
+++ /var/tmp/diff_new_pack.mXdzaG/_new  2023-10-29 19:41:29.158690238 +0100
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/alexellis/k3sup</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">0.13.1</param>
+    <param name="revision">0.13.3</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
     <param name="versionrewrite-pattern">(.*)</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.mXdzaG/_old  2023-10-29 19:41:29.186691257 +0100
+++ /var/tmp/diff_new_pack.mXdzaG/_new  2023-10-29 19:41:29.186691257 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/alexellis/k3sup</param>
-              <param 
name="changesrevision">16f009cd86de432fa78d08fffa1c12faf9d4c896</param></service></servicedata>
+              <param 
name="changesrevision">0903a7d05c8b9e159f2739b3026e59716a8b65d1</param></service></servicedata>
 (No newline at EOF)
 

++++++ k3sup-0.13.1.obscpio -> k3sup-0.13.3.obscpio ++++++
/work/SRC/openSUSE:Factory/k3sup/k3sup-0.13.1.obscpio 
/work/SRC/openSUSE:Factory/.k3sup.new.17445/k3sup-0.13.3.obscpio differ: char 
49, line 1

++++++ k3sup.obsinfo ++++++
--- /var/tmp/diff_new_pack.mXdzaG/_old  2023-10-29 19:41:29.226692712 +0100
+++ /var/tmp/diff_new_pack.mXdzaG/_new  2023-10-29 19:41:29.230692857 +0100
@@ -1,5 +1,5 @@
 name: k3sup
-version: 0.13.1
-mtime: 1694711178
-commit: 16f009cd86de432fa78d08fffa1c12faf9d4c896
+version: 0.13.3
+mtime: 1698406818
+commit: 0903a7d05c8b9e159f2739b3026e59716a8b65d1
 

++++++ vendor.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/golang.org/x/crypto/ssh/terminal/terminal.go 
new/vendor/golang.org/x/crypto/ssh/terminal/terminal.go
--- old/vendor/golang.org/x/crypto/ssh/terminal/terminal.go     2023-09-15 
11:20:18.000000000 +0200
+++ new/vendor/golang.org/x/crypto/ssh/terminal/terminal.go     1970-01-01 
01:00:00.000000000 +0100
@@ -1,76 +0,0 @@
-// Copyright 2011 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Package terminal provides support functions for dealing with terminals, as
-// commonly found on UNIX systems.
-//
-// Deprecated: this package moved to golang.org/x/term.
-package terminal
-
-import (
-       "io"
-
-       "golang.org/x/term"
-)
-
-// EscapeCodes contains escape sequences that can be written to the terminal in
-// order to achieve different styles of text.
-type EscapeCodes = term.EscapeCodes
-
-// Terminal contains the state for running a VT100 terminal that is capable of
-// reading lines of input.
-type Terminal = term.Terminal
-
-// NewTerminal runs a VT100 terminal on the given ReadWriter. If the 
ReadWriter is
-// a local terminal, that terminal must first have been put into raw mode.
-// prompt is a string that is written at the start of each input line (i.e.
-// "> ").
-func NewTerminal(c io.ReadWriter, prompt string) *Terminal {
-       return term.NewTerminal(c, prompt)
-}
-
-// ErrPasteIndicator may be returned from ReadLine as the error, in addition
-// to valid line data. It indicates that bracketed paste mode is enabled and
-// that the returned line consists only of pasted data. Programs may wish to
-// interpret pasted data more literally than typed data.
-var ErrPasteIndicator = term.ErrPasteIndicator
-
-// State contains the state of a terminal.
-type State = term.State
-
-// IsTerminal returns whether the given file descriptor is a terminal.
-func IsTerminal(fd int) bool {
-       return term.IsTerminal(fd)
-}
-
-// ReadPassword reads a line of input from a terminal without local echo.  This
-// is commonly used for inputting passwords and other sensitive data. The slice
-// returned does not include the \n.
-func ReadPassword(fd int) ([]byte, error) {
-       return term.ReadPassword(fd)
-}
-
-// MakeRaw puts the terminal connected to the given file descriptor into raw
-// mode and returns the previous state of the terminal so that it can be
-// restored.
-func MakeRaw(fd int) (*State, error) {
-       return term.MakeRaw(fd)
-}
-
-// Restore restores the terminal connected to the given file descriptor to a
-// previous state.
-func Restore(fd int, oldState *State) error {
-       return term.Restore(fd, oldState)
-}
-
-// GetState returns the current state of a terminal which may be useful to
-// restore the terminal after a signal.
-func GetState(fd int) (*State, error) {
-       return term.GetState(fd)
-}
-
-// GetSize returns the dimensions of the given terminal.
-func GetSize(fd int) (width, height int, err error) {
-       return term.GetSize(fd)
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/modules.txt new/vendor/modules.txt
--- old/vendor/modules.txt      2023-09-15 11:20:19.000000000 +0200
+++ new/vendor/modules.txt      2023-10-27 16:50:02.000000000 +0200
@@ -28,7 +28,6 @@
 golang.org/x/crypto/ssh
 golang.org/x/crypto/ssh/agent
 golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
-golang.org/x/crypto/ssh/terminal
 # golang.org/x/sys v0.12.0
 ## explicit; go 1.17
 golang.org/x/sys/cpu

Reply via email to