Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package minio-client for openSUSE:Factory 
checked in at 2022-10-17 14:58:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and      /work/SRC/openSUSE:Factory/.minio-client.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "minio-client"

Mon Oct 17 14:58:01 2022 rev:18 rq:1011988 version:20221012T181250Z

Changes:
--------
--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes        
2022-10-11 18:04:54.130021989 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2275/minio-client.changes      
2022-10-17 14:58:03.210133488 +0200
@@ -1,0 +2,7 @@
+Mon Oct 17 05:14:19 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221012T181250Z:
+  * list jobTypes currently supported (#4298)
+  * use showAppAndExit() for pager help (#4292)
+
+-------------------------------------------------------------------

Old:
----
  mc-20221009T211059Z.tar.gz

New:
----
  mc-20221012T181250Z.tar.gz

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

Other differences:
------------------
++++++ minio-client.spec ++++++
--- /var/tmp/diff_new_pack.ro638f/_old  2022-10-17 14:58:03.974134956 +0200
+++ /var/tmp/diff_new_pack.ro638f/_new  2022-10-17 14:58:03.978134964 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:           minio-client
-Version:        20221009T211059Z
+Version:        20221012T181250Z
 Release:        0
 Summary:        Client for MinIO
 License:        AGPL-3.0-only

++++++ _service ++++++
--- /var/tmp/diff_new_pack.ro638f/_old  2022-10-17 14:58:04.014135033 +0200
+++ /var/tmp/diff_new_pack.ro638f/_new  2022-10-17 14:58:04.018135041 +0200
@@ -5,7 +5,7 @@
     <param name="exclude">.git</param>
     <param name="changesgenerate">enable</param>
     <param name="versionformat">@PARENT_TAG@</param>
-    <param name="revision">RELEASE.2022-10-09T21-10-59Z</param>
+    <param name="revision">RELEASE.2022-10-12T18-12-50Z</param>
     <param name="match-tag">RELEASE.*</param>
     <param 
name="versionrewrite-pattern">RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)</param>
     <param name="versionrewrite-replacement">\1\2\3\4\5</param>
@@ -21,7 +21,7 @@
     <param name="compression">gz</param>
   </service>
   <service name="go_modules" mode="disabled">
-    <param name="archive">mc-20221009T211059Z.tar.gz</param>
+    <param name="archive">mc-20221012T181250Z.tar.gz</param>
   </service>
 </services>
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.ro638f/_old  2022-10-17 14:58:04.038135079 +0200
+++ /var/tmp/diff_new_pack.ro638f/_new  2022-10-17 14:58:04.042135087 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/minio/mc</param>
-              <param 
name="changesrevision">27322636ae33611cf193a0fe4b5de18f3b096549</param></service></servicedata>
+              <param 
name="changesrevision">3fe6778ee739504b169743cf43fa7b3010e05b99</param></service></servicedata>
 (No newline at EOF)
 

++++++ mc-20221009T211059Z.tar.gz -> mc-20221012T181250Z.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/batch-describe.go 
new/mc-20221012T181250Z/cmd/batch-describe.go
--- old/mc-20221009T211059Z/cmd/batch-describe.go       2022-10-09 
23:10:59.000000000 +0200
+++ new/mc-20221012T181250Z/cmd/batch-describe.go       2022-10-12 
20:12:50.000000000 +0200
@@ -50,7 +50,7 @@
 // checkBatchDescribeSyntax - validate all the passed arguments
 func checkBatchDescribeSyntax(ctx *cli.Context) {
        if len(ctx.Args()) != 2 {
-               cli.ShowCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
+               showCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/batch-generate.go 
new/mc-20221012T181250Z/cmd/batch-generate.go
--- old/mc-20221009T211059Z/cmd/batch-generate.go       2022-10-09 
23:10:59.000000000 +0200
+++ new/mc-20221012T181250Z/cmd/batch-generate.go       2022-10-12 
20:12:50.000000000 +0200
@@ -19,6 +19,7 @@
 
 import (
        "fmt"
+       "strings"
 
        "github.com/minio/cli"
        "github.com/minio/madmin-go"
@@ -38,6 +39,8 @@
 USAGE:
   {{.HelpName}} TARGET JOBTYPE
 
+JOBTYPE:
+` + supportedJobTypes() + `
 FLAGS:
   {{range .VisibleFlags}}{{.}}
   {{end}}
@@ -47,10 +50,20 @@
 `,
 }
 
+func supportedJobTypes() string {
+       var builder strings.Builder
+       for _, jobType := range madmin.SupportedJobTypes {
+               builder.WriteString("  - ")
+               builder.WriteString(string(jobType))
+               builder.WriteString("\n")
+       }
+       return builder.String()
+}
+
 // checkBatchGenerateSyntax - validate all the passed arguments
 func checkBatchGenerateSyntax(ctx *cli.Context) {
        if len(ctx.Args()) != 2 {
-               cli.ShowCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
+               showCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/batch-list.go 
new/mc-20221012T181250Z/cmd/batch-list.go
--- old/mc-20221009T211059Z/cmd/batch-list.go   2022-10-09 23:10:59.000000000 
+0200
+++ new/mc-20221012T181250Z/cmd/batch-list.go   2022-10-12 20:12:50.000000000 
+0200
@@ -120,7 +120,7 @@
 // checkBatchListSyntax - validate all the passed arguments
 func checkBatchListSyntax(ctx *cli.Context) {
        if len(ctx.Args()) != 1 {
-               cli.ShowCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
+               showCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/batch-start.go 
new/mc-20221012T181250Z/cmd/batch-start.go
--- old/mc-20221009T211059Z/cmd/batch-start.go  2022-10-09 23:10:59.000000000 
+0200
+++ new/mc-20221012T181250Z/cmd/batch-start.go  2022-10-12 20:12:50.000000000 
+0200
@@ -75,7 +75,7 @@
 // checkBatchStartSyntax - validate all the passed arguments
 func checkBatchStartSyntax(ctx *cli.Context) {
        if len(ctx.Args()) != 2 {
-               cli.ShowCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
+               showCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/batch-status.go 
new/mc-20221012T181250Z/cmd/batch-status.go
--- old/mc-20221009T211059Z/cmd/batch-status.go 2022-10-09 23:10:59.000000000 
+0200
+++ new/mc-20221012T181250Z/cmd/batch-status.go 2022-10-12 20:12:50.000000000 
+0200
@@ -44,7 +44,7 @@
 // checkBatchStatusSyntax - validate all the passed arguments
 func checkBatchStatusSyntax(ctx *cli.Context) {
        if len(ctx.Args()) != 2 {
-               cli.ShowCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
+               showCommandHelpAndExit(ctx, ctx.Command.Name, 1) // last 
argument is exit code
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/cmd/support-perf.go 
new/mc-20221012T181250Z/cmd/support-perf.go
--- old/mc-20221009T211059Z/cmd/support-perf.go 2022-10-09 23:10:59.000000000 
+0200
+++ new/mc-20221012T181250Z/cmd/support-perf.go 2022-10-12 20:12:50.000000000 
+0200
@@ -240,7 +240,7 @@
                case "net":
                        mainAdminSpeedTestNetperf(ctx, aliasedURL, resultCh)
                default:
-                       cli.ShowCommandHelpAndExit(ctx, "perf", 1) // last 
argument is exit code
+                       showCommandHelpAndExit(ctx, "perf", 1) // last argument 
is exit code
                }
 
                if !globalJSON {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/go.mod 
new/mc-20221012T181250Z/go.mod
--- old/mc-20221009T211059Z/go.mod      2022-10-09 23:10:59.000000000 +0200
+++ new/mc-20221012T181250Z/go.mod      2022-10-12 20:12:50.000000000 +0200
@@ -19,7 +19,7 @@
        github.com/minio/cli v1.24.0
        github.com/minio/colorjson v1.0.2
        github.com/minio/filepath v1.0.0
-       github.com/minio/madmin-go v1.6.0
+       github.com/minio/madmin-go v1.6.4
        github.com/minio/md5-simd v1.1.2 // indirect
        github.com/minio/minio-go/v7 v7.0.40-0.20220928095841-8848d8affe8a
        github.com/minio/pkg v1.4.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221009T211059Z/go.sum 
new/mc-20221012T181250Z/go.sum
--- old/mc-20221009T211059Z/go.sum      2022-10-09 23:10:59.000000000 +0200
+++ new/mc-20221012T181250Z/go.sum      2022-10-12 20:12:50.000000000 +0200
@@ -342,8 +342,8 @@
 github.com/minio/filepath v1.0.0 
h1:fvkJu1+6X+ECRA6G3+JJETj4QeAYO9sV43I79H8ubDY=
 github.com/minio/filepath v1.0.0/go.mod 
h1:/nRZA2ldl5z6jT9/KQuvZcQlxZIMQoFFQPvEXx9T/Bw=
 github.com/minio/madmin-go v1.3.5/go.mod 
h1:vGKGboQgGIWx4DuDUaXixjlIEZOCIp6ivJkQoiVaACc=
-github.com/minio/madmin-go v1.6.0 
h1:ut2rCN5Aw5dhAJ8UIQ8appF1A/+fpSD9Alg2p+huab0=
-github.com/minio/madmin-go v1.6.0/go.mod 
h1:ez87VmMtsxP7DRxjKJKD4RDNW+nhO2QF9KSzwxBDQ98=
+github.com/minio/madmin-go v1.6.4 
h1:s9xY/I4XcU/hWN8A6QRcL4JJ+7c5VPUKNTOqjzh91JE=
+github.com/minio/madmin-go v1.6.4/go.mod 
h1:FVl1TS8T79779KZEboPHL5byffHJ6DyrAAavqgsG6UQ=
 github.com/minio/md5-simd v1.1.0/go.mod 
h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77ZrKZ0Gw=
 github.com/minio/md5-simd v1.1.2 
h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=
 github.com/minio/md5-simd v1.1.2/go.mod 
h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM=

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/minio-client/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.minio-client.new.2275/vendor.tar.gz differ: char 5, 
line 1

Reply via email to