commit minio-client for openSUSE:Factory

2024-09-23 Thread Source-Sync
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 2024-09-23 15:20:06

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.29891 (New)


Package is "minio-client"

Mon Sep 23 15:20:06 2024 rev:96 rq:1202369 version:20240916T174314Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-09-15 12:41:53.838288695 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.29891/minio-client.changes 
2024-09-23 15:21:05.462627815 +0200
@@ -1,0 +2,10 @@
+Sat Sep 21 16:18:19 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240916T174314Z:
+  * iam export:designate zip file name (#4995)
+  * mirror:Add the printing of event time (#4953)
+  * alias: `mc alias list` command outputs the alias information
+specified by MC_CONFIG_ENV_FILE (#5028)
+  * idp-ldap: Fix create-with-login command (#5036)
+
+---

Old:

  minio-client-20240909T075310Z.obscpio

New:

  minio-client-20240916T174314Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.CL4Jbv/_old  2024-09-23 15:21:07.042693344 +0200
+++ /var/tmp/diff_new_pack.CL4Jbv/_new  2024-09-23 15:21:07.042693344 +0200
@@ -19,7 +19,7 @@
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
 Name:   minio-client
-Version:20240909T075310Z
+Version:20240916T174314Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.CL4Jbv/_old  2024-09-23 15:21:07.082695003 +0200
+++ /var/tmp/diff_new_pack.CL4Jbv/_new  2024-09-23 15:21:07.086695168 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-09-09T07-53-10Z
+RELEASE.2024-09-16T17-43-14Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5

++ _servicedata ++
--- /var/tmp/diff_new_pack.CL4Jbv/_old  2024-09-23 15:21:07.114696330 +0200
+++ /var/tmp/diff_new_pack.CL4Jbv/_new  2024-09-23 15:21:07.118696496 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  04c5116c9bdf8b762acc54b5500a9a276a5ec05a
+  11ebe952ea30e426e564f66e78d178465ae7c432
 (No newline at EOF)
 

++ minio-client-20240909T075310Z.obscpio -> 
minio-client-20240916T174314Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/minio-client-20240909T075310Z/cmd/admin-cluster-iam-export.go 
new/minio-client-20240916T174314Z/cmd/admin-cluster-iam-export.go
--- old/minio-client-20240909T075310Z/cmd/admin-cluster-iam-export.go   
2024-09-09 09:53:10.0 +0200
+++ new/minio-client-20240916T174314Z/cmd/admin-cluster-iam-export.go   
2024-09-16 19:43:14.0 +0200
@@ -32,13 +32,23 @@
"github.com/minio/pkg/v3/console"
 )
 
+// iam export specific flags.
+var (
+   iamExportFlags = []cli.Flag{
+   cli.StringFlag{
+   Name:  "output,o",
+   Usage: "output iam export to a custom file path",
+   },
+   }
+)
+
 var adminClusterIAMExportCmd = cli.Command{
Name:"export",
Usage:   "exports IAM info to zipped file",
Action:  mainClusterIAMExport,
OnUsageError:onUsageError,
Before:  setGlobalsFromContext,
-   Flags:   globalFlags,
+   Flags:   append(iamExportFlags, globalFlags...),
HideHelpCommand: true,
CustomHelpTemplate: `NAME:
   {{.HelpName}} - {{.Usage}}
@@ -52,6 +62,9 @@
 EXAMPLES:
   1. Download all IAM metadata for cluster into zip file.
  {{.Prompt}} {{.HelpName}} myminio
+
+  2. Download all IAM metadata to a custom file.
+ {{.Prompt}} {{.HelpName}} myminio --output /tmp/myminio-iam.zip
 `,
 }
 
@@ -97,6 +110,9 @@
tmpFile.Close()
 
downloadPath := fmt.Sprintf("%s-iam-info.%s", aliasedURL, ext)
+   if ctx.String("output") != "" {
+   downloadPath = ctx.String("output")
+   }
fi, e := os.Stat(downloadPath)
if e == nil && !fi.IsDir() {
e = moveFile(downloadPath, 
downloadPath+"."+time.Now().Format(dateTimeFormatFilename))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/minio-client-20240909T075310Z/cmd/alias-list.go 
new/minio-client-20240916T174314Z/cmd/alias-list.go
--- old/minio-client-20240909T075310Z/cmd/alias-list.go 2024-09-09 
09:53:10.0 +0200
+++ new/minio-client-20240916T174314Z/cmd/alias-list.go 2024-09-16 
19:43

commit minio-client for openSUSE:Factory

2024-09-15 Thread Source-Sync
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 2024-09-15 12:38:12

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.29891 (New)


Package is "minio-client"

Sun Sep 15 12:38:12 2024 rev:95 rq:1201159 version:20240909T075310Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-08-18 18:19:48.293792113 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.29891/minio-client.changes 
2024-09-15 12:41:53.838288695 +0200
@@ -1,0 +2,27 @@
+Sat Sep 14 15:34:07 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240909T075310Z:
+  * Fix regression (#5034)
+  * scanner-status: Support both old & new scanner metrics (#4683)
+  * tier: Add hidden --force to remove tiering command (#5031)
+  * Update to print skipped entities during IAM import (#5032)
+  * Add `edit`, `enable`, and `disable` to `mc idp ldap accesskey`
+(#5033)
+  * mirror: Print errors in --json format when --skip-errs is
+provided (#5030)
+  * fix: docker buildx warnings
+
+---
+Sat Sep 14 15:30:01 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240826T104958Z:
+  * upgrade pkg/v3, minio-go/v7 deps (#5027)
+  * heal: Do not show heal ETA when there is a retry attempt
+(#5025)
+  * allow cat to take part by part numbers (#5026)
+  * Add commands for managing Bucket CORS (#5019)
+  * heal: Adapt the status based on a new Finished flag (#5017)
+  * fix:  Use TLS for STS endpoint when STS endpoint uses https
+scheme. (#5022)
+
+---

Old:

  mc-20240817T113350Z.obscpio
  mc.obsinfo

New:

  minio-client-20240909T075310Z.obscpio
  minio-client.obsinfo



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.dVosnF/_old  2024-09-15 12:41:55.506358082 +0200
+++ /var/tmp/diff_new_pack.dVosnF/_new  2024-09-15 12:41:55.506358082 +0200
@@ -18,16 +18,13 @@
 
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 
-%define archive_name mc
-%define binary_name minio-client
-
 Name:   minio-client
-Version:20240817T113350Z
+Version:20240909T075310Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only
 URL:https://github.com/minio/mc
-Source: %{archive_name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.gz
 Source1:vendor.tar.gz
 BuildRequires:  go1.22
 
@@ -39,23 +36,25 @@
 `minio-client`.
 
 %prep
-%autosetup -p1 -a1 -n %{archive_name}-%{version}
+%autosetup -p 1 -a 1
 
 %build
+COMMIT_HASH="$(sed -n 's/commit: \(.*\)/\1/p' %_sourcedir/%{name}.obsinfo)"
+
 go build \
-mod=vendor \
-buildmode=pie \
-trimpath -tags kqueue \
-   -ldflags="-s -w -X github.com/minio/mc/cmd.Version=%{version} \
-   -X github.com/minio/mc/cmd.ReleaseTag=%{version}" \
-   -o bin/%{binary_name}
+   -ldflags="-X github.com/minio/mc/cmd.Version=%{version} \
+   -X github.com/minio/mc/cmd.ReleaseTag=${COMMIT_HASH}" \
+   -o bin/%{name}
 
 %install
 # Install the binary.
-install -D -m 0755 bin/%{binary_name} "%{buildroot}/%{_bindir}/%{binary_name}"
+install -D -m 0755 bin/%{name} %{buildroot}/%{_bindir}/%{name}
 
 %files
 %doc README.md
 %license LICENSE
-%{_bindir}/%{binary_name}
+%{_bindir}/%{name}
 

++ _service ++
--- /var/tmp/diff_new_pack.dVosnF/_old  2024-09-15 12:41:55.546359746 +0200
+++ /var/tmp/diff_new_pack.dVosnF/_new  2024-09-15 12:41:55.550359912 +0200
@@ -5,21 +5,22 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-08-17T11-33-50Z
+RELEASE.2024-09-09T07-53-10Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
+minio-client
   
   
-mc
   
-  
+  
+  
+  
+  
+  
   
 *.tar
 gz
   
-  
-mc-20240817T113350Z.obscpio
-  
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.dVosnF/_old  2024-09-15 12:41:55.578361077 +0200
+++ /var/tmp/diff_new_pack.dVosnF/_new  2024-09-15 12:41:55.582361243 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  2c94b8d03979ed96a6379ecabc3435b271398efc
+  04c5116c9bdf8b762acc54b5500a9a276a5ec05a
 (No newline at EOF)
 

++ minio-client.obsinfo ++
name: minio-client
version: 20240909T075310Z
mtime: 1725868390
commit: 04c5116c9bdf8b762acc54b5500a9a276a5ec05a

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


commit minio-client for openSUSE:Factory

2024-08-03 Thread Source-Sync
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 2024-08-03 20:07:09

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.7232 (New)


Package is "minio-client"

Sat Aug  3 20:07:09 2024 rev:92 rq:1191426 version:20240731T155833Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-07-28 17:20:30.234336023 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.7232/minio-client.changes  
2024-08-03 20:07:29.542335766 +0200
@@ -1,0 +2,8 @@
+Sat Aug 03 07:58:55 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240731T155833Z:
+  * Rework `mc idp ldap accesskey list` to use new API endpoint
+(#4946)
+  * #4988 fixed prometheus metrics usage message (#5000)
+
+---

Old:

  mc-20240726T130844Z.obscpio

New:

  mc-20240731T155833Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.zQ3mKK/_old  2024-08-03 20:07:30.374369949 +0200
+++ /var/tmp/diff_new_pack.zQ3mKK/_new  2024-08-03 20:07:30.374369949 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240726T130844Z
+Version:20240731T155833Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.zQ3mKK/_old  2024-08-03 20:07:30.410371428 +0200
+++ /var/tmp/diff_new_pack.zQ3mKK/_new  2024-08-03 20:07:30.414371593 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-07-26T13-08-44Z
+RELEASE.2024-07-31T15-58-33Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240726T130844Z.obscpio
+mc-20240731T155833Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.zQ3mKK/_old  2024-08-03 20:07:30.438372579 +0200
+++ /var/tmp/diff_new_pack.zQ3mKK/_new  2024-08-03 20:07:30.442372743 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  8ad22bb69435c831b6a16d4cb03c248145929d95
+  f0d2ad47084cf1fbda8f955e9c6f4ee5d9c1daec
 (No newline at EOF)
 

++ mc-20240726T130844Z.obscpio -> mc-20240731T155833Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mc-20240726T130844Z/cmd/admin-prometheus-metrics-v3.go 
new/mc-20240731T155833Z/cmd/admin-prometheus-metrics-v3.go
--- old/mc-20240726T130844Z/cmd/admin-prometheus-metrics-v3.go  2024-07-26 
15:08:44.0 +0200
+++ new/mc-20240731T155833Z/cmd/admin-prometheus-metrics-v3.go  2024-07-31 
17:58:33.0 +0200
@@ -32,7 +32,7 @@
metricsV3Flags = []cli.Flag{
cli.StringFlag{
Name:  "bucket",
-   Usage: "bucket name to list metrics for. only 
applicable with api version v3 for metric type 'bucket'",
+   Usage: "bucket name to list metrics for. only 
applicable with api version v3 for metric type 'api, replication'",
},
}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240726T130844Z/cmd/idp-ldap-accesskey-list.go 
new/mc-20240731T155833Z/cmd/idp-ldap-accesskey-list.go
--- old/mc-20240726T130844Z/cmd/idp-ldap-accesskey-list.go  2024-07-26 
15:08:44.0 +0200
+++ new/mc-20240731T155833Z/cmd/idp-ldap-accesskey-list.go  2024-07-31 
17:58:33.0 +0200
@@ -41,6 +41,14 @@
Name:  "svcacc-only",
Usage: "only list service account access keys",
},
+   cli.BoolFlag{
+   Name:  "self",
+   Usage: "list access keys for the authenticated user",
+   },
+   cli.BoolFlag{
+   Name:  "all",
+   Usage: "list all access keys for all LDAP users",
+   },
 }
 
 var idpLdapAccesskeyListCmd = cli.Command{
@@ -95,7 +103,7 @@
labelStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("#04B575"))
o := strings.Builder{}
 
-   o.WriteString(iFmt(0, "%s\n", labelStyle.Render("DN "+m.DN)))
+   o.WriteString(iFmt(0, "%s %s\n", labelStyle.Render("DN:"), m.DN))
if len(m.STSKeys) > 0 {
o.WriteString(iFmt(2, "%s\n", labelStyle.Render("STS Access 
Keys:")))
for _, k := range m.STSKeys {
@@ -108,7 +116,6 @@
o.WriteString(iFmt(4, "%s\n", k.AccessKey))
}
}
-   o.WriteString("\n")
 
return o.String()
 }
@@ -126,73 +133,65 @@
}
 
us

commit minio-client for openSUSE:Factory

2024-07-28 Thread Source-Sync
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 2024-07-28 17:19:55

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1882 (New)


Package is "minio-client"

Sun Jul 28 17:19:55 2024 rev:91 rq:1189898 version:20240726T130844Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-07-25 15:49:15.971409122 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1882/minio-client.changes  
2024-07-28 17:20:30.234336023 +0200
@@ -1,0 +2,7 @@
+Sat Jul 27 11:35:58 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240726T130844Z:
+  * trace: avoid aggregate statistics TX/RX with --all (#4998)
+  * Make trace stats more compact (#4999)
+
+---

Old:

  mc-20240722T200249Z.obscpio

New:

  mc-20240726T130844Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.DazcxB/_old  2024-07-28 17:20:31.430383816 +0200
+++ /var/tmp/diff_new_pack.DazcxB/_new  2024-07-28 17:20:31.434383976 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240722T200249Z
+Version:20240726T130844Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.DazcxB/_old  2024-07-28 17:20:31.462385095 +0200
+++ /var/tmp/diff_new_pack.DazcxB/_new  2024-07-28 17:20:31.466385255 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-07-22T20-02-49Z
+RELEASE.2024-07-26T13-08-44Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240722T200249Z.obscpio
+mc-20240726T130844Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.DazcxB/_old  2024-07-28 17:20:31.486386054 +0200
+++ /var/tmp/diff_new_pack.DazcxB/_new  2024-07-28 17:20:31.486386054 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  58c42bc91bbab04e4073bd8d018b0420ccb21591
+  8ad22bb69435c831b6a16d4cb03c248145929d95
 (No newline at EOF)
 

++ mc-20240722T200249Z.obscpio -> mc-20240726T130844Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240722T200249Z/cmd/admin-trace.go 
new/mc-20240726T130844Z/cmd/admin-trace.go
--- old/mc-20240722T200249Z/cmd/admin-trace.go  2024-07-22 22:02:49.0 
+0200
+++ new/mc-20240726T130844Z/cmd/admin-trace.go  2024-07-26 15:08:44.0 
+0200
@@ -529,7 +529,7 @@
traceCh := client.ServiceTrace(ctxt, opts)
if stats {
filteredTraces := make(chan madmin.ServiceTraceInfo, 1)
-   ui := tea.NewProgram(initTraceStatsUI(ctx.Int("stats-n"), 
filteredTraces))
+   ui := tea.NewProgram(initTraceStatsUI(ctx.Bool("all"), 
ctx.Int("stats-n"), filteredTraces))
var te error
go func() {
for t := range traceCh {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240722T200249Z/cmd/support-top-api.go 
new/mc-20240726T130844Z/cmd/support-top-api.go
--- old/mc-20240722T200249Z/cmd/support-top-api.go  2024-07-22 
22:02:49.0 +0200
+++ new/mc-20240726T130844Z/cmd/support-top-api.go  2024-07-26 
15:08:44.0 +0200
@@ -104,7 +104,7 @@
traceCh := client.ServiceTrace(ctxt, opts)
 
filteredTraces := make(chan madmin.ServiceTraceInfo, 1)
-   ui := tea.NewProgram(initTraceStatsUI(30, filteredTraces))
+   ui := tea.NewProgram(initTraceStatsUI(false, 30, filteredTraces))
var te error
go func() {
for t := range traceCh {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240722T200249Z/cmd/trace-stats-ui.go 
new/mc-20240726T130844Z/cmd/trace-stats-ui.go
--- old/mc-20240722T200249Z/cmd/trace-stats-ui.go   2024-07-22 
22:02:49.0 +0200
+++ new/mc-20240726T130844Z/cmd/trace-stats-ui.go   2024-07-26 
15:08:44.0 +0200
@@ -28,7 +28,7 @@
"github.com/charmbracelet/bubbles/spinner"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
-   humanize "github.com/dustin/go-humanize"
+   "github.com/dustin/go-humanize"
"github.com/fatih/color"
"github.com/minio/madmin-go/v3"
"github.com/minio/pkg/v3/console"
@@ -43,6 +43,7 @@
meter  spinner.Model
quitting   bool
maxEntries

commit minio-client for openSUSE:Factory

2024-07-15 Thread Source-Sync
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 2024-07-15 19:47:02

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.17339 (New)


Package is "minio-client"

Mon Jul 15 19:47:02 2024 rev:88 rq:1187293 version:20240711T180128Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-07-11 20:32:37.731659858 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.17339/minio-client.changes 
2024-07-15 19:47:34.823930809 +0200
@@ -1,0 +2,8 @@
+Sat Jul 13 10:08:01 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240711T180128Z:
+  * Fix non-recursive compares against alias+key on Windows (#4983)
+  * Support metrics-v3 api in `admin prometheus generate` (#4985)
+  * Support metrics-v3 api in `admin prometheus metrics` (#4982)
+
+---

Old:

  mc-20240708T205924Z.obscpio

New:

  mc-20240711T180128Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.nxEUMi/_old  2024-07-15 19:47:35.707963216 +0200
+++ /var/tmp/diff_new_pack.nxEUMi/_new  2024-07-15 19:47:35.711963362 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240708T205924Z
+Version:20240711T180128Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.nxEUMi/_old  2024-07-15 19:47:35.739964389 +0200
+++ /var/tmp/diff_new_pack.nxEUMi/_new  2024-07-15 19:47:35.743964535 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-07-08T20-59-24Z
+RELEASE.2024-07-11T18-01-28Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240708T205924Z.obscpio
+mc-20240711T180128Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.nxEUMi/_old  2024-07-15 19:47:35.763965269 +0200
+++ /var/tmp/diff_new_pack.nxEUMi/_new  2024-07-15 19:47:35.767965415 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  21d3ec0089a1fa297cbdc23db413012535e2ff9e
+  4d498deb35e878efd601dae056f52c6134ddf37f
 (No newline at EOF)
 

++ mc-20240708T205924Z.obscpio -> mc-20240711T180128Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240708T205924Z/cmd/admin-prometheus-generate.go 
new/mc-20240711T180128Z/cmd/admin-prometheus-generate.go
--- old/mc-20240708T205924Z/cmd/admin-prometheus-generate.go2024-07-08 
22:59:24.0 +0200
+++ new/mc-20240711T180128Z/cmd/admin-prometheus-generate.go2024-07-11 
20:01:28.0 +0200
@@ -1,4 +1,4 @@
-// Copyright (c) 2015-2022 MinIO, Inc.
+// Copyright (c) 2015-2024 MinIO, Inc.
 //
 // This file is part of MinIO Object Storage stack
 //
@@ -31,22 +31,15 @@
 )
 
 const (
-   defaultJobName  = "minio-job"
-   nodeJobName = "minio-job-node"
-   bucketJobName   = "minio-job-bucket"
-   defaultMetricsPath  = "/minio/v2/metrics/cluster"
-   nodeMetricsPath = "/minio/v2/metrics/node"
-   bucketMetricsPath   = "/minio/v2/metrics/bucket"
-   resourceJobName = "minio-job-resource"
-   resourceMetricsPath = "/minio/v2/metrics/resource"
+   defaultJobName= "minio-job"
+   metricsV2BasePath = "/minio/v2/metrics"
 )
 
-var prometheusFlags = []cli.Flag{
+var prometheusFlags = append(metricsFlags,
cli.BoolFlag{
Name:  "public",
Usage: "disable bearer token generation for scrape_configs",
-   },
-}
+   })
 
 var adminPrometheusGenerateCmd = cli.Command{
Name:"generate",
@@ -63,14 +56,56 @@
   {{.HelpName}} TARGET [METRIC-TYPE]
 
 METRIC-TYPE:
-  valid values are ['cluster', 'node', 'bucket']. Defaults to 'cluster' if not 
specified.
+  valid values are
+api-version v2 ['cluster', 'node', 'bucket', 'resource']. defaults to 
'cluster' if not specified.
+api-version v3 ["api", "system", "debug", "cluster", "ilm", "audit", 
"logger", "replication", "notification", "scanner"]. defaults to all if not 
specified.
 
 FLAGS:
   {{range .VisibleFlags}}{{.}}
   {{end}}
-EXAMPLES:
+EXAMPLES (v3):
+  1. Generate a default prometheus config.
+ {{.Prompt}} {{.HelpName}} play --api-version v3
+
+  2. Generate prometheus config for api metrics.
+ {{.Prompt}} {{.HelpName}} play api --api-version v3
+
+  3. Generate prometheus config for api metrics of bucket 'mybucket'.
+ {{.Prompt}} {{.HelpName}} pla

commit minio-client for openSUSE:Factory

2024-07-11 Thread Source-Sync
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 2024-07-11 20:32:31

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.17339 (New)


Package is "minio-client"

Thu Jul 11 20:32:31 2024 rev:87 rq:1186740 version:20240708T205924Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-07-09 20:05:42.292446601 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.17339/minio-client.changes 
2024-07-11 20:32:37.731659858 +0200
@@ -1,0 +2,7 @@
+Thu Jul 11 05:31:59 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240708T205924Z:
+  * improve 'admin service restart' UI (#4979)
+  * update deps (#4978)
+
+---

Old:

  mc-20240703T201725Z.obscpio

New:

  mc-20240708T205924Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.sUiydV/_old  2024-07-11 20:32:41.379793168 +0200
+++ /var/tmp/diff_new_pack.sUiydV/_new  2024-07-11 20:32:41.379793168 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240703T201725Z
+Version:20240708T205924Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.sUiydV/_old  2024-07-11 20:32:41.411794337 +0200
+++ /var/tmp/diff_new_pack.sUiydV/_new  2024-07-11 20:32:41.415794484 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-07-03T20-17-25Z
+RELEASE.2024-07-08T20-59-24Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240703T201725Z.obscpio
+mc-20240708T205924Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.sUiydV/_old  2024-07-11 20:32:41.439795361 +0200
+++ /var/tmp/diff_new_pack.sUiydV/_new  2024-07-11 20:32:41.443795507 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  d6ff97012549bfd91396447249297411ccfc79a7
+  21d3ec0089a1fa297cbdc23db413012535e2ff9e
 (No newline at EOF)
 

++ mc-20240703T201725Z.obscpio -> mc-20240708T205924Z.obscpio ++
 1867 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.sUiydV/_old  2024-07-11 20:32:41.703805008 +0200
+++ /var/tmp/diff_new_pack.sUiydV/_new  2024-07-11 20:32:41.707805155 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20240703T201725Z
-mtime: 1720037845
-commit: d6ff97012549bfd91396447249297411ccfc79a7
+version: 20240708T205924Z
+mtime: 1720472364
+commit: 21d3ec0089a1fa297cbdc23db413012535e2ff9e
 

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


commit minio-client for openSUSE:Factory

2024-06-24 Thread Source-Sync
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 2024-06-24 20:52:23

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.18349 (New)


Package is "minio-client"

Mon Jun 24 20:52:23 2024 rev:84 rq:1182577 version:20240620T145054Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-06-17 19:28:45.924652259 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.18349/minio-client.changes 
2024-06-24 20:53:12.848135524 +0200
@@ -1,0 +2,12 @@
+Sat Jun 22 10:07:34 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240620T145054Z:
+  * make 'mc admin service restart' more descriptive of what it
+does (#4965)
+  * list versions including DEL marker when figuring out Stat()
+(#4951)
+  * enable batch expiry option in trace (#4964)
+  * fix: support 'mc put --if-not-exists' (#4963)
+  * Adding support for Hex keys (#4962)
+
+---

Old:

  mc-20240612T143403Z.obscpio

New:

  mc-20240620T145054Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.uZEvXv/_old  2024-06-24 20:53:13.708166991 +0200
+++ /var/tmp/diff_new_pack.uZEvXv/_new  2024-06-24 20:53:13.712167137 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240612T143403Z
+Version:20240620T145054Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.uZEvXv/_old  2024-06-24 20:53:13.740168161 +0200
+++ /var/tmp/diff_new_pack.uZEvXv/_new  2024-06-24 20:53:13.744168308 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-06-12T14-34-03Z
+RELEASE.2024-06-20T14-50-54Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240612T143403Z.obscpio
+mc-20240620T145054Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.uZEvXv/_old  2024-06-24 20:53:13.764169039 +0200
+++ /var/tmp/diff_new_pack.uZEvXv/_new  2024-06-24 20:53:13.764169039 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  e7c9a733c680fe62066d24e8718f81938b4f6606
+  dda9e96887a452b60f23ef18ea68e8898836c017
 (No newline at EOF)
 

++ mc-20240612T143403Z.obscpio -> mc-20240620T145054Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240612T143403Z/cmd/admin-service-restart.go 
new/mc-20240620T145054Z/cmd/admin-service-restart.go
--- old/mc-20240612T143403Z/cmd/admin-service-restart.go2024-06-12 
16:34:03.0 +0200
+++ new/mc-20240620T145054Z/cmd/admin-service-restart.go2024-06-20 
16:50:54.0 +0200
@@ -67,12 +67,13 @@
Statusstring `json:"status"`
ServerURL string `json:"serverURL"`
Resultmadmin.ServiceActionResult `json:"result"`
+   TimeTaken time.Duration  `json:"timeTaken"`
 }
 
 // String colorized service restart command message.
 func (s serviceRestartCommand) String() string {
var s1 strings.Builder
-   s1.WriteString("Restart command successfully sent to `" + s.ServerURL + 
"`. Type Ctrl-C to quit or wait to follow the status of the restart process.")
+   s1.WriteString("Restart command successfully acknowledged by `" + 
s.ServerURL + "` in " + 
timeDurationToHumanizedDuration(s.TimeTaken).StringShort() + ". Type Ctrl-C to 
quit or wait to follow the status of the restart process.")
 
if len(s.Result.Results) > 0 {
s1.WriteString("\n")
@@ -119,7 +120,7 @@
 // String colorized service restart message.
 func (s serviceRestartMessage) String() string {
if s.Err == nil {
-   return console.Colorize("ServiceRestart", 
fmt.Sprintf("\nRestarted `%s` successfully in %s", s.ServerURL, 
timeDurationToHumanizedDuration(s.TimeTaken).StringShort()))
+   return console.Colorize("ServiceRestart", 
fmt.Sprintf("\nEstablished quorum on `%s` successfully in %s", s.ServerURL, 
timeDurationToHumanizedDuration(s.TimeTaken).StringShort()))
}
return console.Colorize("FailedServiceRestart", "Failed to restart 
`"+s.ServerURL+"`. error: "+s.Err.Error())
 }
@@ -159,6 +160,7 @@
client, err := newAdminClient(aliasedURL)
fatalIf(err, "Unable to initialize admin connection.")
 
+   t := time.Now()
// Restart the specified MinIO server
result, e := client.Se

commit minio-client for openSUSE:Factory

2024-06-17 Thread Source-Sync
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 2024-06-17 19:28:03

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.19518 (New)


Package is "minio-client"

Mon Jun 17 19:28:03 2024 rev:83 rq:1180963 version:20240612T143403Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-06-12 15:39:32.156800328 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.19518/minio-client.changes 
2024-06-17 19:28:45.924652259 +0200
@@ -1,0 +2,8 @@
+Fri Jun 14 18:12:51 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240612T143403Z:
+  * fix replicate status display for older replication config
+(#4957)
+  * switch RX and TX arrow marks correctly
+
+---

Old:

  mc-20240610T164415Z.obscpio

New:

  mc-20240612T143403Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.6LZSjt/_old  2024-06-17 19:28:46.680679927 +0200
+++ /var/tmp/diff_new_pack.6LZSjt/_new  2024-06-17 19:28:46.684680074 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240610T164415Z
+Version:20240612T143403Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.6LZSjt/_old  2024-06-17 19:28:46.724681538 +0200
+++ /var/tmp/diff_new_pack.6LZSjt/_new  2024-06-17 19:28:46.728681684 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-06-10T16-44-15Z
+RELEASE.2024-06-12T14-34-03Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240610T164415Z.obscpio
+mc-20240612T143403Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.6LZSjt/_old  2024-06-17 19:28:46.756682709 +0200
+++ /var/tmp/diff_new_pack.6LZSjt/_new  2024-06-17 19:28:46.764683002 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  7a0a8f54d901fe3ee7b8854347025f54ce3ebbfc
+  e7c9a733c680fe62066d24e8718f81938b4f6606
 (No newline at EOF)
 

++ mc-20240610T164415Z.obscpio -> mc-20240612T143403Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240610T164415Z/cmd/admin-trace.go 
new/mc-20240612T143403Z/cmd/admin-trace.go
--- old/mc-20240610T164415Z/cmd/admin-trace.go  2024-06-10 18:44:15.0 
+0200
+++ new/mc-20240612T143403Z/cmd/admin-trace.go  2024-06-12 16:34:03.0 
+0200
@@ -1152,12 +1152,12 @@
if v.CallStatsCount > 0 {
var s, r []string
if v.CallStats.Rx > 0 {
-   s = append(s, fmt.Sprintf("↓ %s", 
humanize.IBytes(uint64(v.CallStats.Rx/v.CallStatsCount
-   r = append(r, fmt.Sprintf("↓ %s", 
humanize.IBytes(uint64(float64(v.CallStats.Rx)/dur.Minutes()
+   s = append(s, fmt.Sprintf("↑ %s", 
humanize.IBytes(uint64(v.CallStats.Rx/v.CallStatsCount
+   r = append(r, fmt.Sprintf("↑ %s", 
humanize.IBytes(uint64(float64(v.CallStats.Rx)/dur.Minutes()
}
if v.CallStats.Tx > 0 {
-   s = append(s, fmt.Sprintf("↑ %s", 
humanize.IBytes(uint64(v.CallStats.Tx/v.CallStatsCount
-   r = append(r, fmt.Sprintf("↑ %s", 
humanize.IBytes(uint64(float64(v.CallStats.Tx)/dur.Minutes()
+   s = append(s, fmt.Sprintf("↓ %s", 
humanize.IBytes(uint64(v.CallStats.Tx/v.CallStatsCount
+   r = append(r, fmt.Sprintf("↓ %s", 
humanize.IBytes(uint64(float64(v.CallStats.Tx)/dur.Minutes()
}
if len(s) > 0 {
sz = strings.Join(s, " ")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240610T164415Z/cmd/replicate-status.go 
new/mc-20240612T143403Z/cmd/replicate-status.go
--- old/mc-20240610T164415Z/cmd/replicate-status.go 2024-06-10 
18:44:15.0 +0200
+++ new/mc-20240612T143403Z/cmd/replicate-status.go 2024-06-12 
16:34:03.0 +0200
@@ -116,7 +116,7 @@
for arn, st := range rs.Stats { // Remove stale ARNs from stats
staleARN := true
for _, r := range s.cfg.Rules {
-   if r.Destination.Bucket == arn {
+

commit minio-client for openSUSE:Factory

2024-06-09 Thread Source-Sync
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 2024-06-09 20:20:58

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.19518 (New)


Package is "minio-client"

Sun Jun  9 20:20:58 2024 rev:81 rq:1179368 version:20240605T181330Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-06-05 17:43:17.892067660 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.19518/minio-client.changes 
2024-06-09 20:24:05.797886301 +0200
@@ -1,0 +2,8 @@
+Fri Jun 07 19:31:40 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240605T181330Z:
+  * add vulncheck with go upgrade
+  * add space between upload/download indicators
+  * Add sizes to mc admin trace (#4949)
+
+---

Old:

  mc-20240601T150335Z.obscpio

New:

  mc-20240605T181330Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.NS5ikG/_old  2024-06-09 20:24:06.525912572 +0200
+++ /var/tmp/diff_new_pack.NS5ikG/_new  2024-06-09 20:24:06.525912572 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240601T150335Z
+Version:20240605T181330Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.NS5ikG/_old  2024-06-09 20:24:06.561913871 +0200
+++ /var/tmp/diff_new_pack.NS5ikG/_new  2024-06-09 20:24:06.565914015 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-06-01T15-03-35Z
+RELEASE.2024-06-05T18-13-30Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240601T150335Z.obscpio
+mc-20240605T181330Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.NS5ikG/_old  2024-06-09 20:24:06.589914881 +0200
+++ /var/tmp/diff_new_pack.NS5ikG/_new  2024-06-09 20:24:06.593915025 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  3cfa8642fdab18e3c1599360be26167e377063cf
+  17adf0abbbca8a1d3153932a9b467a19c8371cc4
 (No newline at EOF)
 

++ mc-20240601T150335Z.obscpio -> mc-20240605T181330Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240601T150335Z/.github/workflows/vulncheck.yml 
new/mc-20240605T181330Z/.github/workflows/vulncheck.yml
--- old/mc-20240601T150335Z/.github/workflows/vulncheck.yml 2024-06-01 
17:03:35.0 +0200
+++ new/mc-20240605T181330Z/.github/workflows/vulncheck.yml 2024-06-05 
20:13:30.0 +0200
@@ -16,7 +16,7 @@
   - name: Set up Go
 uses: actions/setup-go@v5
 with:
-  go-version: 1.22.3
+  go-version: 1.22.x
   check-latest: true
   - name: Get official govulncheck
 run: go install golang.org/x/vuln/cmd/govulncheck@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240601T150335Z/cmd/admin-trace.go 
new/mc-20240605T181330Z/cmd/admin-trace.go
--- old/mc-20240601T150335Z/cmd/admin-trace.go  2024-06-01 17:03:35.0 
+0200
+++ new/mc-20240605T181330Z/cmd/admin-trace.go  2024-06-05 20:13:30.0 
+0200
@@ -24,6 +24,7 @@
"hash/fnv"
"net/http"
"net/url"
+   "os"
"path"
"sort"
"strconv"
@@ -41,7 +42,9 @@
"github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/v3/console"
+   "github.com/muesli/reflow/truncate"
"github.com/olekukonko/tablewriter"
+   "golang.org/x/term"
 )
 
 var adminTraceFlags = []cli.Flag{
@@ -582,6 +585,7 @@
StatusCode int   `json:"statusCode"`
StatusMsg  string`json:"statusMsg"`
Type   string`json:"type"`
+   Size   int64 `json:"size,omitempty"`
Error  string`json:"error"`
Extra  map[string]string `json:"extra"`
trcTypemadmin.TraceType
@@ -650,6 +654,7 @@
s.Duration = t.Duration
s.StatusMsg = t.Message
s.Extra = t.Custom
+   s.Size = t.Bytes
 
switch t.TraceType {
case madmin.TraceS3, madmin.TraceInternal:
@@ -703,10 +708,15 @@
console.Colorize("ErrStatus", s.Error),
console.Colorize("HeaderValue", s.Duration))
} else {
-   fmt.Fprintf(b, "[%s] %s %s %s %2s", 
console.Colorize("RespS

commit minio-client for openSUSE:Factory

2024-06-05 Thread Source-Sync
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 2024-06-05 17:42:35

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.24587 (New)


Package is "minio-client"

Wed Jun  5 17:42:35 2024 rev:80 rq:1178651 version:20240601T150335Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-05-31 22:16:48.788012646 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.24587/minio-client.changes 
2024-06-05 17:43:17.892067660 +0200
@@ -1,0 +2,9 @@
+Wed Jun 05 05:29:26 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240601T150335Z:
+  * fix: rm command with `--newer-than` not working (#4944)
+  * Fix support top net JSON (#4948)
+  * fix: avoid HeadObject call for mc get (#4947)
+  * remote flaky bucket_replication test for now
+
+---

Old:

  mc-20240524T090849Z.obscpio

New:

  mc-20240601T150335Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.3rqQNE/_old  2024-06-05 17:43:18.756099127 +0200
+++ /var/tmp/diff_new_pack.3rqQNE/_new  2024-06-05 17:43:18.760099272 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240524T090849Z
+Version:20240601T150335Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.3rqQNE/_old  2024-06-05 17:43:18.800100729 +0200
+++ /var/tmp/diff_new_pack.3rqQNE/_new  2024-06-05 17:43:18.808101020 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-05-24T09-08-49Z
+RELEASE.2024-06-01T15-03-35Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240524T090849Z.obscpio
+mc-20240601T150335Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.3rqQNE/_old  2024-06-05 17:43:18.832101894 +0200
+++ /var/tmp/diff_new_pack.3rqQNE/_new  2024-06-05 17:43:18.836102040 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  a8fdcbe7cb2f85ce98d60e904717aa00016a7d37
+  3cfa8642fdab18e3c1599360be26167e377063cf
 (No newline at EOF)
 

++ mc-20240524T090849Z.obscpio -> mc-20240601T150335Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240524T090849Z/cmd/client-s3.go 
new/mc-20240601T150335Z/cmd/client-s3.go
--- old/mc-20240524T090849Z/cmd/client-s3.go2024-05-24 11:08:49.0 
+0200
+++ new/mc-20240601T150335Z/cmd/client-s3.go2024-06-01 17:03:35.0 
+0200
@@ -953,7 +953,8 @@
// Disallow automatic decompression for some objects with 
content-encoding set.
o.Set("Accept-Encoding", "identity")
 
-   reader, e := c.api.GetObject(ctx, bucket, object, o)
+   cr := minio.Core{Client: c.api}
+   reader, objectInfo, _, e := cr.GetObject(ctx, bucket, object, o)
if e != nil {
errResponse := minio.ToErrorResponse(e)
if errResponse.Code == "NoSuchBucket" {
@@ -971,25 +972,7 @@
}
return nil, nil, probe.NewError(e)
}
-   objStat, e := reader.Stat()
-   if e != nil {
-   errResponse := minio.ToErrorResponse(e)
-   if errResponse.Code == "NoSuchBucket" {
-   return nil, nil, probe.NewError(BucketDoesNotExist{
-   Bucket: bucket,
-   })
-   }
-   if errResponse.Code == "InvalidBucketName" {
-   return nil, nil, probe.NewError(BucketInvalid{
-   Bucket: bucket,
-   })
-   }
-   if errResponse.Code == "NoSuchKey" {
-   return nil, nil, probe.NewError(ObjectMissing{})
-   }
-   return nil, nil, probe.NewError(e)
-   }
-   return reader, c.objectInfo2ClientContent(bucket, objStat), nil
+   return reader, c.objectInfo2ClientContent(bucket, objectInfo), nil
 }
 
 // Copy - copy object, uses server side copy API. Also uses an abstracted API
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240524T090849Z/cmd/rm-main.go 
new/mc-20240601T150335Z/cmd/rm-main.go
--- old/mc-20240524T090849Z/cmd/rm-main.go  2024-05-24 11:08:49.0 
+0200
+++ new/mc-20240601T150335Z/cmd/rm-main.go  2024-06-01 17:03:35.0 
+0200
@@ -329,7 +329,7 @@
   

commit minio-client for openSUSE:Factory

2024-05-31 Thread Source-Sync
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 2024-05-31 22:16:00

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.24587 (New)


Package is "minio-client"

Fri May 31 22:16:00 2024 rev:79 rq:110 version:20240524T090849Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-05-10 12:06:45.685029016 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.24587/minio-client.changes 
2024-05-31 22:16:48.788012646 +0200
@@ -1,0 +2,11 @@
+Thu May 30 14:36:24 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240524T090849Z:
+  * restructure credential creation with simplified expectations
+(#4939)
+  * Bump up minio/pkg to v3 (#4940)
+  * simplify histograms, make it based on the server return (#4935)
+  * keep pool display order and also pretty it (#4931)
+  * fix: mirror --summary should work like -q (#4923)
+
+---

Old:

  mc-20240509T170424Z.obscpio

New:

  mc-20240524T090849Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.r9xf8P/_old  2024-05-31 22:16:51.240101965 +0200
+++ /var/tmp/diff_new_pack.r9xf8P/_new  2024-05-31 22:16:51.252102402 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240509T170424Z
+Version:20240524T090849Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.r9xf8P/_old  2024-05-31 22:16:51.444109397 +0200
+++ /var/tmp/diff_new_pack.r9xf8P/_new  2024-05-31 22:16:51.476110562 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-05-09T17-04-24Z
+RELEASE.2024-05-24T09-08-49Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240509T170424Z.obscpio
+mc-20240524T090849Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.r9xf8P/_old  2024-05-31 22:16:51.616115662 +0200
+++ /var/tmp/diff_new_pack.r9xf8P/_new  2024-05-31 22:16:51.644116682 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  fdb36acbb1d793b6cca622a55e6292f0d52309f0
+  a8fdcbe7cb2f85ce98d60e904717aa00016a7d37
 (No newline at EOF)
 

++ mc-20240509T170424Z.obscpio -> mc-20240524T090849Z.obscpio ++
 3182 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.r9xf8P/_old  2024-05-31 22:16:52.484147281 +0200
+++ /var/tmp/diff_new_pack.r9xf8P/_new  2024-05-31 22:16:52.492147572 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20240509T170424Z
-mtime: 1715274264
-commit: fdb36acbb1d793b6cca622a55e6292f0d52309f0
+version: 20240524T090849Z
+mtime: 1716541729
+commit: a8fdcbe7cb2f85ce98d60e904717aa00016a7d37
 

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


commit minio-client for openSUSE:Factory

2024-05-10 Thread Source-Sync
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 2024-05-10 12:05:39

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1880 (New)


Package is "minio-client"

Fri May 10 12:05:39 2024 rev:78 rq:1173023 version:20240509T170424Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-05-09 12:08:49.971967350 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1880/minio-client.changes  
2024-05-10 12:06:45.685029016 +0200
@@ -1,0 +2,13 @@
+Fri May 10 05:01:31 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240509T170424Z:
+  * fix: test regression since #4920 (#4928)
+  * fix: mc find --metadata work without prefix (#4926)
+  * showing disable-pager flag as an option (#4929)
+  * fix: mc rb --force return ok with bucketNotExists (#4927)
+  * fix replication bandwidth unit conversion (#4922)
+  * Correct spelling in message (#4924)
+  * Added test for bucket replication (#4920)
+  * Fix panic in `mc admin health` command (#4921)
+
+---

Old:

  mc-20240503T112107Z.obscpio

New:

  mc-20240509T170424Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.QzmCov/_old  2024-05-10 12:06:47.881109036 +0200
+++ /var/tmp/diff_new_pack.QzmCov/_new  2024-05-10 12:06:47.893109473 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240503T112107Z
+Version:20240509T170424Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.QzmCov/_old  2024-05-10 12:06:48.169119530 +0200
+++ /var/tmp/diff_new_pack.QzmCov/_new  2024-05-10 12:06:48.197120550 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-05-03T11-21-07Z
+RELEASE.2024-05-09T17-04-24Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240503T112107Z.obscpio
+mc-20240509T170424Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.QzmCov/_old  2024-05-10 12:06:48.333125506 +0200
+++ /var/tmp/diff_new_pack.QzmCov/_new  2024-05-10 12:06:48.369126818 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  b471de8d1882cae21ca84e98d56c2a5e2c321164
+  fdb36acbb1d793b6cca622a55e6292f0d52309f0
 (No newline at EOF)
 

++ mc-20240503T112107Z.obscpio -> mc-20240509T170424Z.obscpio ++
 2434 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.QzmCov/_old  2024-05-10 12:06:49.497167921 +0200
+++ /var/tmp/diff_new_pack.QzmCov/_new  2024-05-10 12:06:49.537169378 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20240503T112107Z
-mtime: 1714735267
-commit: b471de8d1882cae21ca84e98d56c2a5e2c321164
+version: 20240509T170424Z
+mtime: 1715274264
+commit: fdb36acbb1d793b6cca622a55e6292f0d52309f0
 

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


commit minio-client for openSUSE:Factory

2024-05-09 Thread Source-Sync
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 2024-05-09 12:08:16

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1880 (New)


Package is "minio-client"

Thu May  9 12:08:16 2024 rev:77 rq:1172691 version:20240503T112107Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-05-01 14:56:02.533015739 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1880/minio-client.changes  
2024-05-09 12:08:49.971967350 +0200
@@ -1,0 +2,9 @@
+Wed May 08 10:35:46 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240503T112107Z:
+  * Add standard EC setting to admin info (#4918)
+  * fix: honor S3v2 if configured (#4917)
+  * make s3Config Transport a roundTripper (#4914)
+  * updating prefix validation and adding some tests (#4907)
+
+---

Old:

  mc-20240429T095605Z.obscpio

New:

  mc-20240503T112107Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.Pt1SEa/_old  2024-05-09 12:08:50.851999335 +0200
+++ /var/tmp/diff_new_pack.Pt1SEa/_new  2024-05-09 12:08:50.855999480 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240429T095605Z
+Version:20240503T112107Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.Pt1SEa/_old  2024-05-09 12:08:50.896000934 +0200
+++ /var/tmp/diff_new_pack.Pt1SEa/_new  2024-05-09 12:08:50.91080 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-04-29T09-56-05Z
+RELEASE.2024-05-03T11-21-07Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240429T095605Z.obscpio
+mc-20240503T112107Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.Pt1SEa/_old  2024-05-09 12:08:50.920001806 +0200
+++ /var/tmp/diff_new_pack.Pt1SEa/_new  2024-05-09 12:08:50.924001952 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5b7b2223717a32ff01d63d57c2d040a719ca581e
+  b471de8d1882cae21ca84e98d56c2a5e2c321164
 (No newline at EOF)
 

++ mc-20240429T095605Z.obscpio -> mc-20240503T112107Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240429T095605Z/cmd/admin-info.go 
new/mc-20240503T112107Z/cmd/admin-info.go
--- old/mc-20240429T095605Z/cmd/admin-info.go   2024-04-29 11:56:05.0 
+0200
+++ new/mc-20240503T112107Z/cmd/admin-info.go   2024-05-03 13:21:07.0 
+0200
@@ -296,9 +296,10 @@
}
// Summary on total no of online and total
// number of offline drives at the Cluster level
-   msg += fmt.Sprintf("%s online, %s offline\n",
+   msg += fmt.Sprintf("%s online, %s offline, EC:%d\n",
english.Plural(u.Info.Backend.OnlineDisks, "drive", ""),
-   english.Plural(u.Info.Backend.OfflineDisks, "drive", 
""))
+   english.Plural(u.Info.Backend.OfflineDisks, "drive", 
""),
+   u.Info.Backend.StandardSCParity)
}
 
// Remove the last new line if any
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240429T095605Z/cmd/alias-set.go 
new/mc-20240503T112107Z/cmd/alias-set.go
--- old/mc-20240429T095605Z/cmd/alias-set.go2024-04-29 11:56:05.0 
+0200
+++ new/mc-20240503T112107Z/cmd/alias-set.go2024-05-03 13:21:07.0 
+0200
@@ -363,12 +363,16 @@
 // TLS root CAs of s3Config. Once configured, any client
 // initialized with this config trusts the given peer certificate.
 func configurePeerCertificate(s3Config *Config, peerCert *x509.Certificate) {
+   tr, ok := s3Config.Transport.(*http.Transport)
+   if !ok {
+   return
+   }
switch {
-   case s3Config.Transport == nil:
+   case tr == nil:
if globalRootCAs != nil {
globalRootCAs.AddCert(peerCert)
}
-   s3Config.Transport = &http.Transport{
+   tr = &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout:   10 * time.Second,
@@ -381,12 +385,13 @@
DisableCompression:true,
TLSClientConfig:   &tls.Config{RootCAs:

commit minio-client for openSUSE:Factory

2024-04-02 Thread Source-Sync
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 2024-04-02 16:41:21

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1905 (New)


Package is "minio-client"

Tue Apr  2 16:41:21 2024 rev:74 rq:1163711 version:20240330T152952Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-03-25 21:13:53.193714522 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1905/minio-client.changes  
2024-04-02 16:43:03.602541213 +0200
@@ -1,0 +2,17 @@
+Sat Mar 30 15:55:41 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240330T152952Z:
+  * doc update (#4867)
+  * Functional tests: add a parameter for the full site cleaning
+test (#4877)
+  * Expose health diagnostics related functions (#4885)
+  * Update madmin to existing master (#4888)
+
+---
+Sat Mar 30 10:13:47 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240325T164114Z:
+  * fix resync to find peers by deployment ID instead of site names
+(#4884)
+
+---

Old:

  mc-20240320T210729Z.obscpio

New:

  mc-20240330T152952Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.4HD5S8/_old  2024-04-02 16:43:04.374568771 +0200
+++ /var/tmp/diff_new_pack.4HD5S8/_new  2024-04-02 16:43:04.378568914 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240320T210729Z
+Version:20240330T152952Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.4HD5S8/_old  2024-04-02 16:43:04.402569771 +0200
+++ /var/tmp/diff_new_pack.4HD5S8/_new  2024-04-02 16:43:04.406569913 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-03-20T21-07-29Z
+RELEASE.2024-03-30T15-29-52Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240320T210729Z.obscpio
+mc-20240330T152952Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.4HD5S8/_old  2024-04-02 16:43:04.422570485 +0200
+++ /var/tmp/diff_new_pack.4HD5S8/_new  2024-04-02 16:43:04.426570627 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  9043bbf545d244b2dee9eefc5031d5dca1ccf78f
+  9f8147bf0e037730077a1b3baef25e53181099b0
 (No newline at EOF)
 

++ mc-20240320T210729Z.obscpio -> mc-20240330T152952Z.obscpio ++
 3615 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.4HD5S8/_old  2024-04-02 16:43:04.718581051 +0200
+++ /var/tmp/diff_new_pack.4HD5S8/_new  2024-04-02 16:43:04.722581193 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20240320T210729Z
-mtime: 1710968849
-commit: 9043bbf545d244b2dee9eefc5031d5dca1ccf78f
+version: 20240330T152952Z
+mtime: 1711812592
+commit: 9f8147bf0e037730077a1b3baef25e53181099b0
 

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


commit minio-client for openSUSE:Factory

2024-02-11 Thread Source-Sync
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 2024-02-11 15:45:18

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1815 (New)


Package is "minio-client"

Sun Feb 11 15:45:18 2024 rev:69 rq:1145567 version:20240209T221824Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-02-02 15:47:11.160480624 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1815/minio-client.changes  
2024-02-11 15:45:27.778435188 +0100
@@ -1,0 +2,6 @@
+Sat Feb 10 06:31:08 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240209T221824Z:
+  * Removing terminal whitelist for pager mechanism (#4843)
+
+---

Old:

  mc-20240131T085940Z.obscpio

New:

  mc-20240209T221824Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.ch24Q0/_old  2024-02-11 15:45:28.706468554 +0100
+++ /var/tmp/diff_new_pack.ch24Q0/_new  2024-02-11 15:45:28.710468698 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240131T085940Z
+Version:20240209T221824Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.ch24Q0/_old  2024-02-11 15:45:28.734469561 +0100
+++ /var/tmp/diff_new_pack.ch24Q0/_new  2024-02-11 15:45:28.738469705 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-01-31T08-59-40Z
+RELEASE.2024-02-09T22-18-24Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240131T085940Z.obscpio
+mc-20240209T221824Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.ch24Q0/_old  2024-02-11 15:45:28.754470280 +0100
+++ /var/tmp/diff_new_pack.ch24Q0/_new  2024-02-11 15:45:28.758470424 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  62b12a2770828f9d35ee7c5614d900b95ff6e6ab
+  669cb0a9a475e4f66d837a305800d3eb8ae784a1
 (No newline at EOF)
 

++ mc-20240131T085940Z.obscpio -> mc-20240209T221824Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240131T085940Z/cmd/globals.go 
new/mc-20240209T221824Z/cmd/globals.go
--- old/mc-20240131T085940Z/cmd/globals.go  2024-01-31 09:59:40.0 
+0100
+++ new/mc-20240209T221824Z/cmd/globals.go  2024-02-09 23:18:24.0 
+0100
@@ -22,7 +22,6 @@
"context"
"crypto/x509"
"net/url"
-   "os"
"time"
 
"github.com/charmbracelet/lipgloss"
@@ -86,26 +85,14 @@
// Terminal height/width, zero if not found
globalTermWidth, globalTermHeight int
 
-   globalDisablePagerFlag  = "--disable-pager"
-   globalPagerDisabled = false
-   globalHelpPager *termPager
-   globalPagerEnabledTerms = map[string]bool{
-   "screen-256color": true,
-   "xterm":   true,
-   "xterm-256color":  true,
-   "tmux":true,
-   "tmux-256color":   true,
-   }
+   globalDisablePagerFlag = "--disable-pager"
+   globalPagerDisabled= false
+   globalHelpPager*termPager
 
// CA root certificates, a nil value means system certs pool will be 
used
globalRootCAs *x509.CertPool
 )
 
-func terminalSupportsPager() (ok bool) {
-   _, ok = globalPagerEnabledTerms[os.Getenv("TERM")]
-   return
-}
-
 func parsePagerDisableFlag(args []string) {
for _, arg := range args {
if arg == globalDisablePagerFlag {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240131T085940Z/cmd/main.go 
new/mc-20240209T221824Z/cmd/main.go
--- old/mc-20240131T085940Z/cmd/main.go 2024-01-31 09:59:40.0 +0100
+++ new/mc-20240209T221824Z/cmd/main.go 2024-02-09 23:18:24.0 +0100
@@ -512,7 +512,7 @@
app.EnableBashCompletion = true
app.OnUsageError = onUsageError
 
-   if isTerminal() && terminalSupportsPager() && !globalPagerDisabled {
+   if isTerminal() && !globalPagerDisabled {
app.HelpWriter = globalHelpPager
} else {
app.HelpWriter = os.Stdout

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.ch24Q0/_old  2024-02-11 15:45:29.118483367 +0100
+++ /var/tmp/diff_new_pack.ch24Q0/_new  2024-02-11 15:45:29.122483511 +0100
@@ -1,5 +1,5 @@
 name: mc
-version: 20240131T085940Z
-mtime: 17066915

commit minio-client for openSUSE:Factory

2024-02-02 Thread Source-Sync
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 2024-02-02 15:46:57

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1815 (New)


Package is "minio-client"

Fri Feb  2 15:46:57 2024 rev:68 rq:1143482 version:20240131T085940Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-01-30 18:25:23.557893485 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1815/minio-client.changes  
2024-02-02 15:47:11.160480624 +0100
@@ -1,0 +2,10 @@
+Thu Feb 01 18:34:36 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240131T085940Z:
+  * fix: mirror with local path (#4825)
+  * Fix syntax in examples (#4834)
+  * fix validation in replicate rm to allow stale target cleanup
+(#4838)
+  * fix prometheus metrics response on success (#4835)
+
+---

Old:

  mc-20240128T162314Z.obscpio

New:

  mc-20240131T085940Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.dj1U56/_old  2024-02-02 15:47:17.344705067 +0100
+++ /var/tmp/diff_new_pack.dj1U56/_new  2024-02-02 15:47:17.344705067 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240128T162314Z
+Version:20240131T085940Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.dj1U56/_old  2024-02-02 15:47:17.376706229 +0100
+++ /var/tmp/diff_new_pack.dj1U56/_new  2024-02-02 15:47:17.376706229 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-01-28T16-23-14Z
+RELEASE.2024-01-31T08-59-40Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240128T162314Z.obscpio
+mc-20240131T085940Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.dj1U56/_old  2024-02-02 15:47:17.396706954 +0100
+++ /var/tmp/diff_new_pack.dj1U56/_new  2024-02-02 15:47:17.400707100 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  ba9fc6a3075df6d8a413cc7e423645706aaefae1
+  62b12a2770828f9d35ee7c5614d900b95ff6e6ab
 (No newline at EOF)
 

++ mc-20240128T162314Z.obscpio -> mc-20240131T085940Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240128T162314Z/cmd/admin-prometheus-metrics.go 
new/mc-20240131T085940Z/cmd/admin-prometheus-metrics.go
--- old/mc-20240128T162314Z/cmd/admin-prometheus-metrics.go 2024-01-28 
17:23:14.0 +0100
+++ new/mc-20240131T085940Z/cmd/admin-prometheus-metrics.go 2024-01-31 
09:59:40.0 +0100
@@ -118,6 +118,7 @@
 
if resp.StatusCode == http.StatusOK {
printMsg(prometheusMetricsReader{Reader: resp.Body})
+   return nil
}
 
return errors.New(resp.Status)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240128T162314Z/cmd/anonymous-main.go 
new/mc-20240131T085940Z/cmd/anonymous-main.go
--- old/mc-20240128T162314Z/cmd/anonymous-main.go   2024-01-28 
17:23:14.0 +0100
+++ new/mc-20240131T085940Z/cmd/anonymous-main.go   2024-01-31 
09:59:40.0 +0100
@@ -80,7 +80,7 @@
  {{.Prompt}} {{.HelpName}} set public s3/public-commons/images
 
   5. Set a custom prefix based bucket anonymous on Amazon S3 cloud storage 
using a JSON file.
- {{.Prompt}} {{.HelpName}} set-json s3/public-commons/images 
/path/to/anonymous.json
+ {{.Prompt}} {{.HelpName}} set-json /path/to/anonymous.json 
s3/public-commons/images 
 
   6. Get bucket permissions.
  {{.Prompt}} {{.HelpName}} get s3/shared
@@ -488,7 +488,7 @@
switch ctx.Args().First() {
case "set", "set-json", "get", "get-json":
// anonymous set [private|public|download|upload] 
alias/bucket/prefix
-   // anonymous set-json alias/bucket/prefix 
path-to-anonymous-json-file
+   // anonymous set-json path-to-anonymous-json-file 
alias/bucket/prefix
// anonymous get alias/bucket/prefix
// anonymous get-json alias/bucket/prefix
runAnonymousCmd(ctx.Args())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240128T162314Z/cmd/difference_test.go 
new/mc-20240131T085940Z/cmd/difference_test.go
--- old/mc-20240128T162314Z/cmd/difference_test.go  2024-01-28 
17:23:14.0 +0100
+++ new/mc-20240131T085940Z/cmd/di

commit minio-client for openSUSE:Factory

2024-01-30 Thread Source-Sync
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 2024-01-30 18:25:09

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1815 (New)


Package is "minio-client"

Tue Jan 30 18:25:09 2024 rev:67 rq:1142616 version:20240128T162314Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-01-22 20:33:03.690669832 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1815/minio-client.changes  
2024-01-30 18:25:23.557893485 +0100
@@ -1,0 +2,12 @@
+Mon Jan 29 17:40:18 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240128T162314Z:
+  * fix: remove prometheus metrics arbitrary body limit (#4832)
+  * feat: service restart/update provides now per node status
+(#4827)
+  * Bump github.com/lestrrat-go/jwx from 1.2.27 to 1.2.28 (#4830)
+  * feat: add skip-errors to mc mirror (#4831)
+  * fix: allow -q by turning of pipe progress bar (#4828)
+  * Adding screen-256color to pager enabled terms (#4829)
+
+---

Old:

  mc-20240118T070339Z.obscpio

New:

  mc-20240128T162314Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.eDoctX/_old  2024-01-30 18:25:25.033946735 +0100
+++ /var/tmp/diff_new_pack.eDoctX/_new  2024-01-30 18:25:25.033946735 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240118T070339Z
+Version:20240128T162314Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.eDoctX/_old  2024-01-30 18:25:25.061947746 +0100
+++ /var/tmp/diff_new_pack.eDoctX/_new  2024-01-30 18:25:25.065947890 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-01-18T07-03-39Z
+RELEASE.2024-01-28T16-23-14Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240118T070339Z.obscpio
+mc-20240128T162314Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.eDoctX/_old  2024-01-30 18:25:25.081948467 +0100
+++ /var/tmp/diff_new_pack.eDoctX/_new  2024-01-30 18:25:25.085948611 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  bb25267eaadc0e025243b443a94ff33bde6302ad
+  ba9fc6a3075df6d8a413cc7e423645706aaefae1
 (No newline at EOF)
 

++ mc-20240118T070339Z.obscpio -> mc-20240128T162314Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240118T070339Z/cmd/admin-prometheus-metrics.go 
new/mc-20240128T162314Z/cmd/admin-prometheus-metrics.go
--- old/mc-20240118T070339Z/cmd/admin-prometheus-metrics.go 2024-01-18 
08:03:39.0 +0100
+++ new/mc-20240128T162314Z/cmd/admin-prometheus-metrics.go 2024-01-28 
17:23:14.0 +0100
@@ -18,15 +18,16 @@
 package cmd
 
 import (
+   "errors"
"io"
"net/http"
+   "os"
"time"
 
"github.com/minio/cli"
json "github.com/minio/colorjson"
+   "github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
-   dto "github.com/prometheus/client_model/go"
-   "github.com/prometheus/prom2json"
 )
 
 var adminPrometheusMetricsCmd = cli.Command{
@@ -62,10 +63,7 @@
 `,
 }
 
-const (
-   metricsRespBodyLimit = 10 << 20 // 10 MiB
-   metricsEndPointRoot  = "/minio/v2/metrics/"
-)
+const metricsEndPointRoot = "/minio/v2/metrics/"
 
 // checkSupportMetricsSyntax - validate arguments passed by a user
 func checkSupportMetricsSyntax(ctx *cli.Context) {
@@ -105,7 +103,11 @@
if e != nil {
return e
}
-   req.Header.Add("Authorization", "Bearer "+token)
+
+   if token != "" {
+   req.Header.Add("Authorization", "Bearer "+token)
+   }
+
client := httpClient(60 * time.Second)
resp, e := client.Do(req)
if e != nil {
@@ -115,32 +117,29 @@
defer resp.Body.Close()
 
if resp.StatusCode == http.StatusOK {
-   printMsg(prometheusMetricsReader{Reader: 
io.LimitReader(resp.Body, metricsRespBodyLimit)})
+   printMsg(prometheusMetricsReader{Reader: resp.Body})
}
-   return nil
+
+   return errors.New(resp.Status)
 }
 
 // JSON returns jsonified message
 func (pm prometheusMetricsReader) JSON() string {
-   mfChan := make(chan *dto.MetricFamily)
-   go func() {
-   fatalIf(probe.NewError(prom2json.ParseReader(pm.Reader, 
mfChan)), "Unable to parse Prometheus metric

commit minio-client for openSUSE:Factory

2024-01-22 Thread Source-Sync
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 2024-01-22 20:32:36

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.16006 (New)


Package is "minio-client"

Mon Jan 22 20:32:36 2024 rev:66 rq:1140179 version:20240118T070339Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2024-01-17 22:19:33.376379783 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.16006/minio-client.changes 
2024-01-22 20:33:03.690669832 +0100
@@ -1,0 +2,7 @@
+Sat Jan 20 17:09:30 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240118T070339Z:
+  * feat: add action for mc undo recursive (#4822)
+  * Add ability to replay JSON file in scanner info (#4824)
+
+---

Old:

  mc-20240116T160634Z.obscpio

New:

  mc-20240118T070339Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.0aK9VB/_old  2024-01-22 20:33:04.506699634 +0100
+++ /var/tmp/diff_new_pack.0aK9VB/_new  2024-01-22 20:33:04.506699634 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20240116T160634Z
+Version:20240118T070339Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.0aK9VB/_old  2024-01-22 20:33:04.534700657 +0100
+++ /var/tmp/diff_new_pack.0aK9VB/_new  2024-01-22 20:33:04.538700803 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2024-01-16T16-06-34Z
+RELEASE.2024-01-18T07-03-39Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20240116T160634Z.obscpio
+mc-20240118T070339Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.0aK9VB/_old  2024-01-22 20:33:04.558701533 +0100
+++ /var/tmp/diff_new_pack.0aK9VB/_new  2024-01-22 20:33:04.562701680 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  7484802005d75b2f078be373afbbd44106f8cc4b
+  bb25267eaadc0e025243b443a94ff33bde6302ad
 (No newline at EOF)
 

++ mc-20240116T160634Z.obscpio -> mc-20240118T070339Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20240116T160634Z/cmd/admin-scanner-status.go 
new/mc-20240118T070339Z/cmd/admin-scanner-status.go
--- old/mc-20240116T160634Z/cmd/admin-scanner-status.go 2024-01-16 
17:06:34.0 +0100
+++ new/mc-20240118T070339Z/cmd/admin-scanner-status.go 2024-01-18 
08:03:39.0 +0100
@@ -18,10 +18,13 @@
 package cmd
 
 import (
+   "bufio"
"bytes"
"context"
"errors"
"fmt"
+   "io"
+   "os"
"sort"
"strings"
"time"
@@ -58,6 +61,11 @@
Usage: "maximum number of active paths to show. -1 for 
unlimited",
Value: -1,
},
+   cli.StringFlag{
+   Name:   "in",
+   Hidden: true,
+   Usage:  "read previously saved json from file and replay",
+   },
 }
 
 var adminScannerInfo = cli.Command{
@@ -87,6 +95,9 @@
 
 // checkAdminTopAPISyntax - validate all the passed arguments
 func checkAdminScannerInfoSyntax(ctx *cli.Context) {
+   if ctx.String("in") != "" {
+   return
+   }
if len(ctx.Args()) == 0 || len(ctx.Args()) > 1 {
showCommandHelpAndExit(ctx, 1) // last argument is exit code
}
@@ -97,13 +108,49 @@
 
aliasedURL := ctx.Args().Get(0)
 
+   ui := tea.NewProgram(initScannerMetricsUI(ctx.Int("max-paths")))
+   ctxt, cancel := context.WithCancel(globalContext)
+   defer cancel()
+
+   // Replay from file
+   if inFile := ctx.String("in"); inFile != "" {
+   go func() {
+   if _, e := ui.Run(); e != nil {
+   cancel()
+   fatalIf(probe.NewError(e).Trace(aliasedURL), 
"Unable to fetch scanner metrics")
+   }
+   }()
+   f, e := os.Open(inFile)
+   fatalIf(probe.NewError(e).Trace(aliasedURL), "Unable to open 
input")
+   sc := bufio.NewReader(f)
+   var lastTime time.Time
+   for {
+   b, e := sc.ReadBytes('\n')
+   if e == io.EOF {
+   break
+   }
+   var metrics madmin.RealtimeMetrics
+   e = json.Unmarshal(b, &metrics

commit minio-client for openSUSE:Factory

2024-01-07 Thread Source-Sync
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 2024-01-07 21:40:24

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.28375 (New)


Package is "minio-client"

Sun Jan  7 21:40:24 2024 rev:63 rq:1137376 version:20240105T050432Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-12-21 23:39:59.657562694 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.28375/minio-client.changes 
2024-01-07 21:40:41.768878678 +0100
@@ -1,0 +2,26 @@
+Sun Jan 07 15:59:45 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20240105T050432Z:
+  * ILM rule type filter flags should work with --json (#4814)
+  * Add missing space between 'at' and filename (#4813)
+  * honor correct content-type for any files when passed via SQL
+query (#4809)
+  * feat: support summary for mc mirror (#4811)
+
+---
+Sun Jan 07 15:58:28 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20231229T201529Z:
+  * Use correct target path during mirroring objects (#4807)
+  * fix: tree traversal issue with empty folders (#4810)
+  * properly ignore permission denied error with mirror (#4803)
+
+---
+Sun Jan 07 15:56:55 UTC 2024 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20231223T084721Z:
+  * Add `ldap accesskey create`, update `accesskey list` with new
+endpoint (#4760)
+  * Accept --license flag in `mc license register` (#4795)
+
+---

Old:

  mc-20231220T071422Z.obscpio

New:

  mc-20240105T050432Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.VhObcT/_old  2024-01-07 21:40:42.860918402 +0100
+++ /var/tmp/diff_new_pack.VhObcT/_new  2024-01-07 21:40:42.860918402 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minio-client
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231220T071422Z
+Version:20240105T050432Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.VhObcT/_old  2024-01-07 21:40:42.892919566 +0100
+++ /var/tmp/diff_new_pack.VhObcT/_new  2024-01-07 21:40:42.892919566 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-12-20T07-14-22Z
+RELEASE.2024-01-05T05-04-32Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231220T071422Z.obscpio
+mc-20240105T050432Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.VhObcT/_old  2024-01-07 21:40:42.912920294 +0100
+++ /var/tmp/diff_new_pack.VhObcT/_new  2024-01-07 21:40:42.916920439 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  8e1573ec1b9c174e9f8d82ee9996d002c1d9caaa
+  59eca9fea8984adec1e8e7a1c95d0ea23107ceff
 (No newline at EOF)
 

++ mc-20231220T071422Z.obscpio -> mc-20240105T050432Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231220T071422Z/cmd/auto-complete.go 
new/mc-20240105T050432Z/cmd/auto-complete.go
--- old/mc-20231220T071422Z/cmd/auto-complete.go2023-12-20 
08:14:22.0 +0100
+++ new/mc-20240105T050432Z/cmd/auto-complete.go2024-01-05 
06:04:32.0 +0100
@@ -383,7 +383,9 @@
 
"/idp/ldap/accesskey/create": aliasCompleter,
"/idp/ldap/accesskey/list":   aliasCompleter,
+   "/idp/ldap/accesskey/ls": aliasCompleter,
"/idp/ldap/accesskey/remove": aliasCompleter,
+   "/idp/ldap/accesskey/rm": aliasCompleter,
"/idp/ldap/accesskey/info":   aliasCompleter,
 
"/admin/policy/info": aliasCompleter,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231220T071422Z/cmd/idp-ldap-accesskey-create.go 
new/mc-20240105T050432Z/cmd/idp-ldap-accesskey-create.go
--- old/mc-20231220T071422Z/cmd/idp-ldap-accesskey-create.go1970-01-01 
01:00:00.0 +0100
+++ new/mc-20240105T050432Z/cmd/idp-ldap-accesskey-create.go2024-01-05 
06:04:32.0 +0100
@@ -0,0 +1,251 @@
+// Copyright (c) 2015-2023 MinIO, Inc.
+//
+// This file is part of Min

commit minio-client for openSUSE:Factory

2023-12-21 Thread Source-Sync
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 2023-12-21 23:39:53

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1840 (New)


Package is "minio-client"

Thu Dec 21 23:39:53 2023 rev:62 rq:1134525 version:20231220T071422Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-12-15 21:47:54.811541145 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1840/minio-client.changes  
2023-12-21 23:39:59.657562694 +0100
@@ -1,0 +2,14 @@
+Wed Dec 20 12:54:16 UTC 2023 - opensuse_buildserv...@ojkastl.de
+
+- Update to version 20231220T071422Z:
+  * Set exitcode on copy/mirror source failure (#4798)
+  * update dependencies to address new CVE (#4799)
+  * tier: Support AWS web identity token file for MinIO EKS pods
+(#4789)
+  * use explicit operation handling for anonymous operations to
+prevent undesirable checks (#4791)
+  * decom: status clearly shows that the it is about raw disk usage
+(#4792)
+  * Read new key license_v2 from SUBNET response (#4788)
+
+---

Old:

  mc-20231214T003741Z.obscpio

New:

  mc-20231220T071422Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.qG5KHE/_old  2023-12-21 23:40:00.729601842 +0100
+++ /var/tmp/diff_new_pack.qG5KHE/_new  2023-12-21 23:40:00.733601988 +0100
@@ -22,14 +22,14 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231214T003741Z
+Version:20231220T071422Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only
 URL:https://github.com/minio/mc
 Source: %{archive_name}-%{version}.tar.gz
 Source1:vendor.tar.gz
-BuildRequires:  go >= 1.19
+BuildRequires:  go >= 1.21
 
 %description
 MinIO Client is a replacement for ls, cp, mkdir, diff and rsync commands for 
filesystems and object storage.

++ _service ++
--- /var/tmp/diff_new_pack.qG5KHE/_old  2023-12-21 23:40:00.773603448 +0100
+++ /var/tmp/diff_new_pack.qG5KHE/_new  2023-12-21 23:40:00.777603595 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-12-14T00-37-41Z
+RELEASE.2023-12-20T07-14-22Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231214T003741Z.obscpio
+mc-20231220T071422Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.qG5KHE/_old  2023-12-21 23:40:00.797604326 +0100
+++ /var/tmp/diff_new_pack.qG5KHE/_new  2023-12-21 23:40:00.797604326 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  8da737f8fd63de58dc475bf88eb9e285d206e3ae
+  8e1573ec1b9c174e9f8d82ee9996d002c1d9caaa
 (No newline at EOF)
 

++ mc-20231214T003741Z.obscpio -> mc-20231220T071422Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231214T003741Z/CREDITS 
new/mc-20231220T071422Z/CREDITS
--- old/mc-20231214T003741Z/CREDITS 2023-12-14 01:37:41.0 +0100
+++ new/mc-20231220T071422Z/CREDITS 2023-12-20 08:14:22.0 +0100
@@ -139,33 +139,6 @@
 
 
 
-github.com/benbjohnson/clock
-https://github.com/benbjohnson/clock
-
-The MIT License (MIT)
-
-Copyright (c) 2014 Ben Johnson
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-
-
 github.com/beorn7/perks
 https://gi

commit minio-client for openSUSE:Factory

2023-12-15 Thread Source-Sync
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 2023-12-15 21:47:43

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.25432 (New)


Package is "minio-client"

Fri Dec 15 21:47:43 2023 rev:61 rq:1133068 version:20231214T003741Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-12-10 19:39:46.299233605 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.25432/minio-client.changes 
2023-12-15 21:47:54.811541145 +0100
@@ -1,0 +2,10 @@
+Thu Dec 14 10:49:26 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231214T003741Z:
+  * tier: Add support of service principal auth for Azure (#4787)
+  * support: --debug flag will print http requests for easier
+debugging (#4776)
+  * fix: broken 'anonymous get-json'
+  * Use subnet package in pkg for license validation (#4784)
+
+---

Old:

  mc-20231207T221317Z.obscpio

New:

  mc-20231214T003741Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.ePYbJA/_old  2023-12-15 21:47:56.115588810 +0100
+++ /var/tmp/diff_new_pack.ePYbJA/_new  2023-12-15 21:47:56.119588957 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231207T221317Z
+Version:20231214T003741Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.ePYbJA/_old  2023-12-15 21:47:56.147589980 +0100
+++ /var/tmp/diff_new_pack.ePYbJA/_new  2023-12-15 21:47:56.151590126 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-12-07T22-13-17Z
+RELEASE.2023-12-14T00-37-41Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231207T221317Z.obscpio
+mc-20231214T003741Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.ePYbJA/_old  2023-12-15 21:47:56.171590857 +0100
+++ /var/tmp/diff_new_pack.ePYbJA/_new  2023-12-15 21:47:56.175591004 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  1ba9435365a772d6b4cab225458306a70dfb2309
+  8da737f8fd63de58dc475bf88eb9e285d206e3ae
 (No newline at EOF)
 

++ mc-20231207T221317Z.obscpio -> mc-20231214T003741Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231207T221317Z/cmd/access-perms.go 
new/mc-20231214T003741Z/cmd/access-perms.go
--- old/mc-20231207T221317Z/cmd/access-perms.go 2023-12-07 23:13:17.0 
+0100
+++ new/mc-20231214T003741Z/cmd/access-perms.go 2023-12-14 01:37:41.0 
+0100
@@ -36,7 +36,6 @@
 func (b accessPerms) isValidAccessFile() bool {
file, err := os.Open(string(b))
if err != nil {
-   fatalIf(errDummy().Trace(), "Unable to open access file.")
return false
}
defer file.Close()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231207T221317Z/cmd/ilm-tier-add.go 
new/mc-20231214T003741Z/cmd/ilm-tier-add.go
--- old/mc-20231207T221317Z/cmd/ilm-tier-add.go 2023-12-07 23:13:17.0 
+0100
+++ new/mc-20231214T003741Z/cmd/ilm-tier-add.go 2023-12-14 01:37:41.0 
+0100
@@ -66,6 +66,21 @@
Usage: "Azure Blob Storage account key",
},
cli.StringFlag{
+   Name:  "az-sp-tenant-id",
+   Value: "",
+   Usage: "Directory ID for the Azure service principal account",
+   },
+   cli.StringFlag{
+   Name:  "az-sp-client-id",
+   Value: "",
+   Usage: "The client ID of the Azure service principal account",
+   },
+   cli.StringFlag{
+   Name:  "az-sp-client-secret",
+   Value: "",
+   Usage: "The client secret of the Azure service principal 
account",
+   },
+   cli.StringFlag{
Name:  "credentials-file",
Value: "",
Usage: "path to Google Cloud Storage credentials file",
@@ -237,13 +252,17 @@
case madmin.Azure:
accountName := ctx.String("account-name")
accountKey := ctx.String("account-key")
-   if accountName == "" || accountKey == "" {
-   fatalIf(errInvalidArgument().Trace(), fmt.Sprintf("%s 
remote tier requires access credentials", tierType))
+   if accountName == "" {
+   fatalIf(errDummy().Trace(), fmt.Sprintf("%

commit minio-client for openSUSE:Factory

2023-12-10 Thread Source-Sync
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 2023-12-10 19:39:43

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.25432 (New)


Package is "minio-client"

Sun Dec 10 19:39:43 2023 rev:60 rq:1132265 version:20231207T221317Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-12-06 23:49:45.618622874 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.25432/minio-client.changes 
2023-12-10 19:39:46.299233605 +0100
@@ -1,0 +2,8 @@
+Sat Dec 09 19:55:41 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231207T221317Z:
+  * Fix a panic for bucket heal (#4781)
+  * ready: Do not quit when the target server is offline or any
+other error (#4783)
+
+---

Old:

  mc-20231202T112410Z.obscpio

New:

  mc-20231207T221317Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.fRO1Kq/_old  2023-12-10 19:39:47.931293711 +0100
+++ /var/tmp/diff_new_pack.fRO1Kq/_new  2023-12-10 19:39:47.935293858 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231202T112410Z
+Version:20231207T221317Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.fRO1Kq/_old  2023-12-10 19:39:47.963294889 +0100
+++ /var/tmp/diff_new_pack.fRO1Kq/_new  2023-12-10 19:39:47.967295037 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-12-02T11-24-10Z
+RELEASE.2023-12-07T22-13-17Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231202T112410Z.obscpio
+mc-20231207T221317Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.fRO1Kq/_old  2023-12-10 19:39:47.991295921 +0100
+++ /var/tmp/diff_new_pack.fRO1Kq/_new  2023-12-10 19:39:47.991295921 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  d920e2b34b22a15bca4cd081201d3b301c623d87
+  1ba9435365a772d6b4cab225458306a70dfb2309
 (No newline at EOF)
 

++ mc-20231202T112410Z.obscpio -> mc-20231207T221317Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T112410Z/.github/workflows/vulncheck.yml 
new/mc-20231207T221317Z/.github/workflows/vulncheck.yml
--- old/mc-20231202T112410Z/.github/workflows/vulncheck.yml 2023-12-02 
12:24:10.0 +0100
+++ new/mc-20231207T221317Z/.github/workflows/vulncheck.yml 2023-12-07 
23:13:17.0 +0100
@@ -16,7 +16,7 @@
 - name: Set up Go
   uses: actions/setup-go@v3
   with:
-go-version: 1.21.4
+go-version: 1.21.5
 check-latest: true
 - name: Get official govulncheck
   run: go install golang.org/x/vuln/cmd/govulncheck@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T112410Z/cmd/admin-heal-result-item.go 
new/mc-20231207T221317Z/cmd/admin-heal-result-item.go
--- old/mc-20231202T112410Z/cmd/admin-heal-result-item.go   2023-12-02 
12:24:10.0 +0100
+++ new/mc-20231207T221317Z/cmd/admin-heal-result-item.go   2023-12-07 
23:13:17.0 +0100
@@ -61,9 +61,18 @@
getColCode := func(numAvail int) (c col, err error) {
// calculate color code for replicated object similar
// to erasure coded objects
-   quorum := h.DiskCount/h.SetCount/2 + 1
-   surplus := numAvail/h.SetCount - quorum
-   parity := h.DiskCount/h.SetCount - quorum
+   var quorum, surplus, parity int
+   if h.SetCount > 0 {
+   quorum = h.DiskCount/h.SetCount/2 + 1
+   surplus = numAvail/h.SetCount - quorum
+   parity = h.DiskCount/h.SetCount - quorum
+   } else {
+   // in case of bucket healing, disk count is for the node
+   // also explicitly set count would be set to invalid 
value of -1
+   quorum = h.DiskCount/2 + 1
+   surplus = numAvail - quorum
+   parity = h.DiskCount - quorum
+   }
c, err = getHColCode(surplus, parity)
return
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T112410Z/cmd/ready.go 
new/mc-20231207T221317Z/cmd/ready.go
--- old/mc-20231202T112

commit minio-client for openSUSE:Factory

2023-12-06 Thread Source-Sync
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 2023-12-06 23:49:03

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.25432 (New)


Package is "minio-client"

Wed Dec  6 23:49:03 2023 rev:59 rq:1131349 version:20231202T112410Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-12-04 23:01:12.634957945 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.25432/minio-client.changes 
2023-12-06 23:49:45.618622874 +0100
@@ -1,0 +2,6 @@
+Wed Dec 06 12:06:10 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231202T112410Z:
+  * Add support to batch-expire jobs (#4677)
+
+---

Old:

  mc-20231202T020328Z.obscpio

New:

  mc-20231202T112410Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.TN96d5/_old  2023-12-06 23:49:46.974672844 +0100
+++ /var/tmp/diff_new_pack.TN96d5/_new  2023-12-06 23:49:46.974672844 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231202T020328Z
+Version:20231202T112410Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.TN96d5/_old  2023-12-06 23:49:47.002673876 +0100
+++ /var/tmp/diff_new_pack.TN96d5/_new  2023-12-06 23:49:47.006674024 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-12-02T02-03-28Z
+RELEASE.2023-12-02T11-24-10Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231202T020328Z.obscpio
+mc-20231202T112410Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.TN96d5/_old  2023-12-06 23:49:47.026674761 +0100
+++ /var/tmp/diff_new_pack.TN96d5/_new  2023-12-06 23:49:47.030674908 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  f5f7147b9ec4cf78eb67f1cdc91b63d191852e6a
+  d920e2b34b22a15bca4cd081201d3b301c623d87
 (No newline at EOF)
 

++ mc-20231202T020328Z.obscpio -> mc-20231202T112410Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T020328Z/cmd/admin-trace.go 
new/mc-20231202T112410Z/cmd/admin-trace.go
--- old/mc-20231202T020328Z/cmd/admin-trace.go  2023-12-02 03:03:28.0 
+0100
+++ new/mc-20231202T112410Z/cmd/admin-trace.go  2023-12-02 12:24:10.0 
+0100
@@ -140,6 +140,11 @@
o.BatchKeyRotation = true
return "Trace Batch KeyRotation (alias: brot)"
},
+   "batch-expiration": func(o *madmin.ServiceTraceOpts) string {
+   o.BatchExpire = true
+   return "Trace Batch Expiration (alias: bexp)"
+   },
+
"decommission": func(o *madmin.ServiceTraceOpts) string {
o.Decommission = true
return "Trace Decommission operations (alias: decom)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T020328Z/cmd/batch-generate.go 
new/mc-20231202T112410Z/cmd/batch-generate.go
--- old/mc-20231202T020328Z/cmd/batch-generate.go   2023-12-02 
03:03:28.0 +0100
+++ new/mc-20231202T112410Z/cmd/batch-generate.go   2023-12-02 
12:24:10.0 +0100
@@ -80,10 +80,14 @@
adminClient, err := newAdminClient(aliasedURL)
fatalIf(err, "Unable to initialize admin connection.")
 
-   switch jobType {
-   case string(madmin.BatchJobReplicate):
-   case string(madmin.BatchJobKeyRotate):
-   default:
+   var found bool
+   for _, job := range madmin.SupportedJobTypes {
+   if jobType == string(job) {
+   found = true
+   break
+   }
+   }
+   if !found {
fatalIf(errInvalidArgument().Trace(jobType), "Unable to 
generate a job template for the specified job type")
}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231202T020328Z/cmd/batch-status.go 
new/mc-20231202T112410Z/cmd/batch-status.go
--- old/mc-20231202T020328Z/cmd/batch-status.go 2023-12-02 03:03:28.0 
+0100
+++ new/mc-20231202T112410Z/cmd/batch-status.go 2023-12-02 12:24:10.0 
+0100
@@ -229,6 +229,17 @@
addLine("Transferred: ", 
humanize.IBytes(uint64(m.current.Replicate.BytesTransferred)))
addLine("Elapsed: ", accElapsedTime.String())
addLine("CurrObjName: ", m.current.

commit minio-client for openSUSE:Factory

2023-12-04 Thread Source-Sync
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 2023-12-04 23:00:49

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.25432 (New)


Package is "minio-client"

Mon Dec  4 23:00:49 2023 rev:58 rq:1130615 version:20231202T020328Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-11-21 21:32:36.224640725 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.25432/minio-client.changes 
2023-12-04 23:01:12.634957945 +0100
@@ -1,0 +2,13 @@
+Sun Dec 03 18:52:47 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231202T020328Z:
+  * do not auto-decompress objects with content-encoding (#4777)
+  * Update minio-go to incl ilm fix (#4779)
+  * chore update minio/pkg and madmin-go (#4774)
+  * set-json to fail on custom policies without .json (#4745)
+  * make STS support for 'mc' alias specific (#4771)
+  * ilm: Add support for size based filters (#4770)
+  * Option to enable disable ILM expiry for site replication
+(#4698)
+
+---

Old:

  mc-20231120T163059Z.obscpio

New:

  mc-20231202T020328Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.UbA33u/_old  2023-12-04 23:01:14.627031296 +0100
+++ /var/tmp/diff_new_pack.UbA33u/_new  2023-12-04 23:01:14.631031443 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231120T163059Z
+Version:20231202T020328Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.UbA33u/_old  2023-12-04 23:01:14.663032621 +0100
+++ /var/tmp/diff_new_pack.UbA33u/_new  2023-12-04 23:01:14.663032621 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-11-20T16-30-59Z
+RELEASE.2023-12-02T02-03-28Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231120T163059Z.obscpio
+mc-20231202T020328Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.UbA33u/_old  2023-12-04 23:01:14.687033505 +0100
+++ /var/tmp/diff_new_pack.UbA33u/_new  2023-12-04 23:01:14.687033505 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  937b34616f012ad30e1cd6fd61e1da25ff931648
+  f5f7147b9ec4cf78eb67f1cdc91b63d191852e6a
 (No newline at EOF)
 

++ mc-20231120T163059Z.obscpio -> mc-20231202T020328Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231120T163059Z/cmd/access-perms.go 
new/mc-20231202T020328Z/cmd/access-perms.go
--- old/mc-20231120T163059Z/cmd/access-perms.go 2023-11-20 17:30:59.0 
+0100
+++ new/mc-20231202T020328Z/cmd/access-perms.go 2023-12-02 03:03:28.0 
+0100
@@ -17,7 +17,12 @@
 
 package cmd
 
-import "path/filepath"
+import (
+   "os"
+
+   json "github.com/minio/colorjson"
+   "github.com/minio/minio-go/v7/pkg/policy"
+)
 
 // isValidAccessPERM - is provided access perm string supported.
 func (b accessPerms) isValidAccessPERM() bool {
@@ -29,7 +34,32 @@
 }
 
 func (b accessPerms) isValidAccessFile() bool {
-   return filepath.Ext(string(b)) == ".json"
+   file, err := os.Open(string(b))
+   if err != nil {
+   fatalIf(errDummy().Trace(), "Unable to open access file.")
+   return false
+   }
+   defer file.Close()
+
+   var policy policy.BucketAccessPolicy
+   if json.NewDecoder(file).Decode(&policy) != nil {
+   fatalIf(errDummy().Trace(), "Unable to parse access file.")
+   return false
+   }
+
+   if policy.Version != "2012-10-17" {
+   fatalIf(errDummy().Trace(), "Invalid policy version. Only 
2012-10-17 is supported.")
+   return false
+   }
+
+   for _, statement := range policy.Statements {
+   if statement.Effect != "Allow" && statement.Effect != "Deny" {
+   fatalIf(errDummy().Trace(), "Invalid policy effect. 
Only Allow and Deny are supported.")
+   return false
+   }
+   }
+
+   return true
 }
 
 // accessPerms - access level.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231120T163059Z/cmd/admin-replicate-add.go 
new/mc-20231202T020328Z/cmd/admin-replicate-add.go
--- old/mc-20231120T163059Z/cmd/admin-replicate-add.go  2023-11-20 
17:30:59.0 +0100
+++ new/mc-20231202T020328Z/cmd/admin-replicate

commit minio-client for openSUSE:Factory

2023-11-13 Thread Source-Sync
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 2023-11-13 22:21:27

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.17445 (New)


Package is "minio-client"

Mon Nov 13 22:21:27 2023 rev:55 rq:1125391 version:20231110T213717Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-11-09 21:35:09.140341460 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.17445/minio-client.changes 
2023-11-13 22:25:05.628831754 +0100
@@ -1,0 +2,9 @@
+Mon Nov 13 06:17:28 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231110T213717Z:
+  * Updating example with correct flag (#4751)
+  * Change go version to 1.21.4 to fix vulncheck failures (#4749)
+  * fix: broken docker builds for microdnf command (#4746)
+  * Add anonymize flag to support-diag (#4742)
+
+---

Old:

  mc-20231106T041923Z.obscpio

New:

  mc-20231110T213717Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.BYK5j5/_old  2023-11-13 22:25:06.580866807 +0100
+++ /var/tmp/diff_new_pack.BYK5j5/_new  2023-11-13 22:25:06.584866954 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231106T041923Z
+Version:20231110T213717Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.BYK5j5/_old  2023-11-13 22:25:06.608867838 +0100
+++ /var/tmp/diff_new_pack.BYK5j5/_new  2023-11-13 22:25:06.612867985 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-11-06T04-19-23Z
+RELEASE.2023-11-10T21-37-17Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231106T041923Z.obscpio
+mc-20231110T213717Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.BYK5j5/_old  2023-11-13 22:25:06.628868574 +0100
+++ /var/tmp/diff_new_pack.BYK5j5/_new  2023-11-13 22:25:06.632868722 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  011c61b2547e9db988262f9ef12c64e981c42705
+  56803d21674f9cb9960b86381fe2c527f51fb07b
 (No newline at EOF)
 

++ mc-20231106T041923Z.obscpio -> mc-20231110T213717Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231106T041923Z/.github/workflows/vulncheck.yml 
new/mc-20231110T213717Z/.github/workflows/vulncheck.yml
--- old/mc-20231106T041923Z/.github/workflows/vulncheck.yml 2023-11-06 
05:19:23.0 +0100
+++ new/mc-20231110T213717Z/.github/workflows/vulncheck.yml 2023-11-10 
22:37:17.0 +0100
@@ -16,7 +16,7 @@
 - name: Set up Go
   uses: actions/setup-go@v3
   with:
-go-version: 1.21.3
+go-version: 1.21.4
 check-latest: true
 - name: Get official govulncheck
   run: go install golang.org/x/vuln/cmd/govulncheck@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231106T041923Z/Dockerfile.dev 
new/mc-20231110T213717Z/Dockerfile.dev
--- old/mc-20231106T041923Z/Dockerfile.dev  2023-11-06 05:19:23.0 
+0100
+++ new/mc-20231110T213717Z/Dockerfile.dev  2023-11-10 22:37:17.0 
+0100
@@ -7,8 +7,8 @@
 COPY LICENSE /licenses/LICENSE
 
 RUN  \
- microdnf update --nodocs && \
- microdnf install ca-certificates --nodocs && \
+ microdnf update --nodocs --assumeyes && \
+ microdnf install ca-certificates --nodocs --assumeyes && \
  microdnf clean all
 
 ENTRYPOINT ["mc"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231106T041923Z/Dockerfile.hotfix 
new/mc-20231110T213717Z/Dockerfile.hotfix
--- old/mc-20231106T041923Z/Dockerfile.hotfix   2023-11-06 05:19:23.0 
+0100
+++ new/mc-20231110T213717Z/Dockerfile.hotfix   2023-11-10 22:37:17.0 
+0100
@@ -1,8 +1,8 @@
-FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.2 as 
build
+FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:latest 
as build
 
-RUN microdnf update --nodocs && microdnf install ca-certificates --nodocs && 
microdnf clean all
+RUN microdnf update --nodocs --assumeyes  && microdnf install ca-certificates 
--nodocs --assumeyes 
 
-FROM registry.access.redhat.com/ubi9/ubi-micro:9.2
+FROM registry.access.redhat.com/ubi9/ubi-micro:latest
 
 ARG TARGETARCH
 ARG RELEASE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'

commit minio-client for openSUSE:Factory

2023-11-09 Thread Source-Sync
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 2023-11-09 21:34:51

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.17445 (New)


Package is "minio-client"

Thu Nov  9 21:34:51 2023 rev:54 rq:1124340 version:20231106T041923Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-11-01 22:11:18.334612684 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.17445/minio-client.changes 
2023-11-09 21:35:09.140341460 +0100
@@ -1,0 +2,7 @@
+Thu Nov 09 06:29:30 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231106T041923Z:
+  * Add support for STS credentials (#4744)
+  * Show net info spinner in health diagnostics (#4741)
+
+---

Old:

  mc-20231030T184332Z.obscpio

New:

  mc-20231106T041923Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.FVU6LL/_old  2023-11-09 21:35:10.364386566 +0100
+++ /var/tmp/diff_new_pack.FVU6LL/_new  2023-11-09 21:35:10.368386713 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231030T184332Z
+Version:20231106T041923Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.FVU6LL/_old  2023-11-09 21:35:10.424388777 +0100
+++ /var/tmp/diff_new_pack.FVU6LL/_new  2023-11-09 21:35:10.428388924 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-10-30T18-43-32Z
+RELEASE.2023-11-06T04-19-23Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231030T184332Z.obscpio
+mc-20231106T041923Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.FVU6LL/_old  2023-11-09 21:35:10.452389809 +0100
+++ /var/tmp/diff_new_pack.FVU6LL/_new  2023-11-09 21:35:10.452389809 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  9f2fb2b6a9f86684cbea0628c5926dafcff7de28
+  011c61b2547e9db988262f9ef12c64e981c42705
 (No newline at EOF)
 

++ mc-20231030T184332Z.obscpio -> mc-20231106T041923Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231030T184332Z/cmd/client-s3.go 
new/mc-20231106T041923Z/cmd/client-s3.go
--- old/mc-20231030T184332Z/cmd/client-s3.go2023-10-30 19:43:32.0 
+0100
+++ new/mc-20231106T041923Z/cmd/client-s3.go2023-11-06 05:19:23.0 
+0100
@@ -38,6 +38,8 @@
"sync"
"time"
 
+   "github.com/minio/pkg/v2/env"
+
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
"github.com/minio/minio-go/v7/pkg/encrypt"
@@ -158,12 +160,6 @@
var api *minio.Client
var found bool
if api, found = clientCache[confSum]; !found {
-   // if Signature version '4' use NewV4 directly.
-   creds := credentials.NewStaticV4(config.AccessKey, 
config.SecretKey, config.SessionToken)
-   // if Signature version '2' use NewV2 directly.
-   if strings.ToUpper(config.Signature) == "S3V2" {
-   creds = 
credentials.NewStaticV2(config.AccessKey, config.SecretKey, "")
-   }
 
var transport http.RoundTripper
 
@@ -223,6 +219,51 @@
}
}
 
+   var credsChain []credentials.Provider
+
+   // if an STS endpoint is set, we will add that to the 
chain
+   if stsEndpoint := env.Get("MC_STS_ENDPOINT", ""); 
stsEndpoint != "" {
+   // set AWS_WEB_IDENTITY_TOKEN_FILE is 
MC_WEB_IDENTITY_TOKEN_FILE is set
+   if val := env.Get("MC_WEB_IDENTITY_TOKEN_FILE", 
""); val != "" {
+   
os.Setenv("AWS_WEB_IDENTITY_TOKEN_FILE", val)
+   }
+
+   stsEndpointURL, err := url.Parse(stsEndpoint)
+   if err != nil {
+   return nil, 
probe.NewError(fmt.Errorf("Error parsing sts endpoint: %v", err))
+   }
+   credsSts := &credentials.IAM{
+   Client: &http.Client{
+   Transport: transport,
+   

commit minio-client for openSUSE:Factory

2023-11-01 Thread Source-Sync
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 2023-11-01 22:10:43

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.17445 (New)


Package is "minio-client"

Wed Nov  1 22:10:43 2023 rev:53 rq:1121606 version:20231030T184332Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-10-25 18:05:07.627093113 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.17445/minio-client.changes 
2023-11-01 22:11:18.334612684 +0100
@@ -1,0 +2,13 @@
+Wed Nov 01 12:24:49 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231030T184332Z:
+  * upgrade madmin-go/v3 (#4738)
+  * Removing un-used variables and fixing an error condition
+(#4737)
+  * upgrade madmin-go/v3 (#4735)
+  * Add `idp ldap accesskey` (#4686)
+  * Bump google.golang.org/grpc from 1.58.0 to 1.58.3 (#4731)
+  * add top locks owner as well (#4733)
+  * update container base image to ubi9 (#4730)
+
+---

Old:

  mc-20231024T214222Z.obscpio

New:

  mc-20231030T184332Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.tbOmzJ/_old  2023-11-01 22:11:18.922634467 +0100
+++ /var/tmp/diff_new_pack.tbOmzJ/_new  2023-11-01 22:11:18.922634467 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231024T214222Z
+Version:20231030T184332Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.tbOmzJ/_old  2023-11-01 22:11:18.950635504 +0100
+++ /var/tmp/diff_new_pack.tbOmzJ/_new  2023-11-01 22:11:18.954635653 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-10-24T21-42-22Z
+RELEASE.2023-10-30T18-43-32Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231024T214222Z.obscpio
+mc-20231030T184332Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.tbOmzJ/_old  2023-11-01 22:11:18.974636394 +0100
+++ /var/tmp/diff_new_pack.tbOmzJ/_new  2023-11-01 22:11:18.974636394 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  75e722216a2269b39316494a66e1bfa182c0403e
+  9f2fb2b6a9f86684cbea0628c5926dafcff7de28
 (No newline at EOF)
 

++ mc-20231024T214222Z.obscpio -> mc-20231030T184332Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231024T214222Z/.gitignore 
new/mc-20231030T184332Z/.gitignore
--- old/mc-20231024T214222Z/.gitignore  2023-10-24 23:42:22.0 +0200
+++ new/mc-20231030T184332Z/.gitignore  2023-10-30 19:43:32.0 +0100
@@ -13,4 +13,5 @@
 .idea/
 mc.RELEASE*
 mc.gz
-.DS_Store
\ No newline at end of file
+.DS_Store
+.vscode/
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231024T214222Z/CREDITS 
new/mc-20231030T184332Z/CREDITS
--- old/mc-20231024T214222Z/CREDITS 2023-10-24 23:42:22.0 +0200
+++ new/mc-20231030T184332Z/CREDITS 2023-10-30 19:43:32.0 +0100
@@ -58,6 +58,60 @@
 
 
 
+github.com/VividCortex/ewma
+https://github.com/VividCortex/ewma
+
+The MIT License
+
+Copyright (c) 2013 VividCortex
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+
+
+github.com/acarl005/

commit minio-client for openSUSE:Factory

2023-10-25 Thread Source-Sync
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 2023-10-25 18:04:25

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.24901 (New)


Package is "minio-client"

Wed Oct 25 18:04:25 2023 rev:52 rq:1120217 version:20231024T214222Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-10-24 20:09:02.986035291 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.24901/minio-client.changes 
2023-10-25 18:05:07.627093113 +0200
@@ -1,0 +2,8 @@
+Wed Oct 25 08:44:24 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231024T214222Z:
+  * fix: print updates/merge multiple policy for a user (#4691)
+  * revamp spinner in `mc support diag` (#4727)
+  * use Dockerfile ADD feature deprecate curl (#4728)
+
+---

Old:

  mc-20231024T051828Z.obscpio

New:

  mc-20231024T214222Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.cH0eb0/_old  2023-10-25 18:05:08.875135086 +0200
+++ /var/tmp/diff_new_pack.cH0eb0/_new  2023-10-25 18:05:08.879135221 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231024T051828Z
+Version:20231024T214222Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.cH0eb0/_old  2023-10-25 18:05:08.911136297 +0200
+++ /var/tmp/diff_new_pack.cH0eb0/_new  2023-10-25 18:05:08.915136432 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-10-24T05-18-28Z
+RELEASE.2023-10-24T21-42-22Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231024T051828Z.obscpio
+mc-20231024T214222Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.cH0eb0/_old  2023-10-25 18:05:08.939137239 +0200
+++ /var/tmp/diff_new_pack.cH0eb0/_new  2023-10-25 18:05:08.943137374 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  97cc12fdc539361cf175ffc2f00480eec0836d82
+  75e722216a2269b39316494a66e1bfa182c0403e
 (No newline at EOF)
 

++ mc-20231024T051828Z.obscpio -> mc-20231024T214222Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231024T051828Z/CREDITS 
new/mc-20231024T214222Z/CREDITS
--- old/mc-20231024T051828Z/CREDITS 2023-10-24 07:18:28.0 +0200
+++ new/mc-20231024T214222Z/CREDITS 2023-10-24 23:42:22.0 +0200
@@ -11595,3 +11595,32 @@
 
 
 
+github.com/vbauerster/mpb
+https://github.com/vbauerster/mpb
+
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to 
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231024T051828Z/Dockerfile.release 
new/mc-20231024T214222Z/Dockerfile.release
--- old/mc-20231024T051828Z/Dockerfile.release  2023-10-24 07:18:28.0 
+0200
+++ new/mc-20231024T214222Z/Dockerfile.release  2023-10-24 23:42:22.0 
+0200
@@ -17,8 +17,8 @@
 COPY CREDITS /licenses/CREDITS
 COPY LICENSE /licenses/LICENSE
 
-RUN \
-curl -s -q 
https://dl.minio.io/client/mc/release

commit minio-client for openSUSE:Factory

2023-10-24 Thread Source-Sync
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 2023-10-24 20:08:57

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.24901 (New)


Package is "minio-client"

Tue Oct 24 20:08:57 2023 rev:51 rq:1119926 version:20231024T051828Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-10-16 23:01:27.730005074 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.24901/minio-client.changes 
2023-10-24 20:09:02.986035291 +0200
@@ -1,0 +2,17 @@
+Tue Oct 24 09:24:15 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231024T051828Z:
+  * Add average TTFB for statistics (#4726)
+  * use ubi-micro instead of ubi-minimal (#4725)
+  * Add --bucket-bandwidth flag to `mc admin replicate update`
+(#4687)
+  * Created a retry mechanism and added a --retry flag to mc mirror
+(#4715)
+  * Fix missing colours on windows (#4721)
+  * add support for min/max time in 'trace --stats' (#4723)
+  * allow 'mc' flags to have ENV equivalent (#4720)
+  * Preventing duplicate transfers during cp and mv when prefixes
+overlap (#4719)
+  * chore: update docs to indicate where is present  (#4718)
+
+---

Old:

  mc-20231014T015703Z.obscpio

New:

  mc-20231024T051828Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.zqrc8s/_old  2023-10-24 20:09:05.110112515 +0200
+++ /var/tmp/diff_new_pack.zqrc8s/_new  2023-10-24 20:09:05.122112951 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231014T015703Z
+Version:20231024T051828Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.zqrc8s/_old  2023-10-24 20:09:05.366121822 +0200
+++ /var/tmp/diff_new_pack.zqrc8s/_new  2023-10-24 20:09:05.390122695 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-10-14T01-57-03Z
+RELEASE.2023-10-24T05-18-28Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231014T015703Z.obscpio
+mc-20231024T051828Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.zqrc8s/_old  2023-10-24 20:09:05.550128512 +0200
+++ /var/tmp/diff_new_pack.zqrc8s/_new  2023-10-24 20:09:05.582129675 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  d158b9a478a6a5a74795f01097d069be82edfff6
+  97cc12fdc539361cf175ffc2f00480eec0836d82
 (No newline at EOF)
 

++ mc-20231014T015703Z.obscpio -> mc-20231024T051828Z.obscpio ++
 1730 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.zqrc8s/_old  2023-10-24 20:09:06.054146836 +0200
+++ /var/tmp/diff_new_pack.zqrc8s/_new  2023-10-24 20:09:06.098148436 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20231014T015703Z
-mtime: 1697248623
-commit: d158b9a478a6a5a74795f01097d069be82edfff6
+version: 20231024T051828Z
+mtime: 1698124708
+commit: 97cc12fdc539361cf175ffc2f00480eec0836d82
 

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


commit minio-client for openSUSE:Factory

2023-10-16 Thread Source-Sync
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 2023-10-16 23:01:24

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.20540 (New)


Package is "minio-client"

Mon Oct 16 23:01:24 2023 rev:50 rq:1118013 version:20231014T015703Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-10-10 20:59:05.223442759 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.20540/minio-client.changes 
2023-10-16 23:01:27.730005074 +0200
@@ -1,0 +2,12 @@
+Sat Oct 14 18:52:28 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231014T015703Z:
+  * prom: Allow insecure TLS connections if --insecure is provided
+(#4716)
+  * Bump golang.org/x/net from 0.15.0 to 0.17.0 (#4713)
+  * Validation optimization - reduce HEAD calls during cp and mv
+operations (#4710)
+  * Use the new golang version 1.21.3 (#4714)
+  * Add --stats to traces (#4669)
+
+---

Old:

  mc-20231004T065256Z.obscpio

New:

  mc-20231014T015703Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.TpbW7H/_old  2023-10-16 23:01:28.666038875 +0200
+++ /var/tmp/diff_new_pack.TpbW7H/_new  2023-10-16 23:01:28.666038875 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20231004T065256Z
+Version:20231014T015703Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.TpbW7H/_old  2023-10-16 23:01:28.702040175 +0200
+++ /var/tmp/diff_new_pack.TpbW7H/_new  2023-10-16 23:01:28.706040319 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-10-04T06-52-56Z
+RELEASE.2023-10-14T01-57-03Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20231004T065256Z.obscpio
+mc-20231014T015703Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.TpbW7H/_old  2023-10-16 23:01:28.726041042 +0200
+++ /var/tmp/diff_new_pack.TpbW7H/_new  2023-10-16 23:01:28.730041186 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  eca8310ac822cf0e533c6bd3fb85c8d6099d1465
+  d158b9a478a6a5a74795f01097d069be82edfff6
 (No newline at EOF)
 

++ mc-20231004T065256Z.obscpio -> mc-20231014T015703Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231004T065256Z/.github/workflows/vulncheck.yml 
new/mc-20231014T015703Z/.github/workflows/vulncheck.yml
--- old/mc-20231004T065256Z/.github/workflows/vulncheck.yml 2023-10-04 
08:52:56.0 +0200
+++ new/mc-20231014T015703Z/.github/workflows/vulncheck.yml 2023-10-14 
03:57:03.0 +0200
@@ -16,7 +16,7 @@
 - name: Set up Go
   uses: actions/setup-go@v3
   with:
-go-version: 1.21.1
+go-version: 1.21.3
 check-latest: true
 - name: Get official govulncheck
   run: go install golang.org/x/vuln/cmd/govulncheck@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231004T065256Z/cmd/admin-scanner-status.go 
new/mc-20231014T015703Z/cmd/admin-scanner-status.go
--- old/mc-20231004T065256Z/cmd/admin-scanner-status.go 2023-10-04 
08:52:56.0 +0200
+++ new/mc-20231014T015703Z/cmd/admin-scanner-status.go 2023-10-14 
03:57:03.0 +0200
@@ -208,11 +208,13 @@
return m, tea.Quit
}
return m, nil
+   case spinner.TickMsg:
+   var cmd tea.Cmd
+   m.spinner, cmd = m.spinner.Update(msg)
+   return m, cmd
}
 
-   var cmd tea.Cmd
-   m.spinner, cmd = m.spinner.Update(msg)
-   return m, cmd
+   return m, nil
 }
 
 func (m *scannerMetricsUI) View() string {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20231004T065256Z/cmd/admin-scanner-trace.go 
new/mc-20231014T015703Z/cmd/admin-scanner-trace.go
--- old/mc-20231004T065256Z/cmd/admin-scanner-trace.go  2023-10-04 
08:52:56.0 +0200
+++ new/mc-20231014T015703Z/cmd/admin-scanner-trace.go  2023-10-14 
03:57:03.0 +0200
@@ -169,7 +169,7 @@
if traceInfo.Err != nil {
fatalIf(probe.NewError(traceInfo.Err), "Unable to 
listen to http trace")
}
-   if matchTrace(mopts, traceInfo) {
+   if mopts.matches(traceInfo) {
printTrace(

commit minio-client for openSUSE:Factory

2023-10-13 Thread Source-Sync
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 2023-10-10 20:58:52

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.28202 (New)


Package is "minio-client"

Tue Oct 10 20:58:52 2023 rev:49 rq:1116328 version:20231004T065256Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-10-02 20:10:12.790889115 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.28202/minio-client.changes 
2023-10-10 20:59:05.223442759 +0200
@@ -1,0 +2,9 @@
+Sun Oct 08 16:04:34 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20231004T065256Z:
+  * Add support for resource metrics (#4689)
+  * scanner: Limit the active disks if no enough term space (#4705)
+  * Fix mirror stats with --quiet flag (#4703)
+  * add 'mc admin trace' filtering based on request queries (#4704)
+
+---

Old:

  mc-20230929T164122Z.obscpio

New:

  mc-20231004T065256Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.LzUiY2/_old  2023-10-10 20:59:07.107511080 +0200
+++ /var/tmp/diff_new_pack.LzUiY2/_new  2023-10-10 20:59:07.107511080 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230929T164122Z
+Version:20231004T065256Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.LzUiY2/_old  2023-10-10 20:59:07.143512386 +0200
+++ /var/tmp/diff_new_pack.LzUiY2/_new  2023-10-10 20:59:07.147512530 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-29T16-41-22Z
+RELEASE.2023-10-04T06-52-56Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230929T164122Z.obscpio
+mc-20231004T065256Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.LzUiY2/_old  2023-10-10 20:59:07.163513111 +0200
+++ /var/tmp/diff_new_pack.LzUiY2/_new  2023-10-10 20:59:07.167513256 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  d47a2ba53a5e10cd1bc8b946c05f4cadb71d4ee3
+  eca8310ac822cf0e533c6bd3fb85c8d6099d1465
 (No newline at EOF)
 

++ mc-20230929T164122Z.obscpio -> mc-20231004T065256Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230929T164122Z/cmd/accounting-reader.go 
new/mc-20231004T065256Z/cmd/accounting-reader.go
--- old/mc-20230929T164122Z/cmd/accounting-reader.go2023-09-29 
18:41:22.0 +0200
+++ new/mc-20231004T065256Z/cmd/accounting-reader.go2023-10-04 
08:52:56.0 +0200
@@ -32,7 +32,7 @@
 type accounter struct {
current int64
 
-   Totalint64
+   totalint64
startTimetime.Time
startValue   int64
refreshRate  time.Duration
@@ -44,7 +44,7 @@
 // Instantiate a new accounter.
 func newAccounter(total int64) *accounter {
acct := &accounter{
-   Total:total,
+   total:total,
startTime:time.Now(),
startValue:   0,
refreshRate:  time.Millisecond * 200,
@@ -112,7 +112,7 @@
var acntStat accountStat
a.finishOnce.Do(func() {
close(a.isFinished)
-   acntStat.Total = a.Total
+   acntStat.Total = a.total
acntStat.Transferred = atomic.LoadInt64(&a.current)
acntStat.Speed = a.write(atomic.LoadInt64(&a.current))
})
@@ -139,7 +139,8 @@
return atomic.LoadInt64(&a.current)
 }
 
-func (a *accounter) SetTotal(int64) {
+func (a *accounter) SetTotal(n int64) {
+   atomic.StoreInt64(&a.total, n)
 }
 
 // Add add to current value atomically.
@@ -149,6 +150,13 @@
 
 // Read implements Reader which internally updates current value.
 func (a *accounter) Read(p []byte) (n int, err error) {
+   defer func() {
+   // Upload retry can read one object twice; Avoid read to be 
greater than Total
+   if n, t := a.Get(), atomic.LoadInt64(&a.total); t > 0 && n > t {
+   a.Set(t)
+   }
+   }()
+
n = len(p)
a.Add(int64(n))
return
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230929T164122Z/cmd/admin-prometheus-generate.go 
new/mc-20231004T065256Z/cmd/admin-prometheus-generate.go
--- old/mc-20230929T164122Z/cmd/admin-prometheus-generate.go2023-09-29 
18:41:2

commit minio-client for openSUSE:Factory

2023-10-02 Thread Source-Sync
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 2023-10-02 20:08:16

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.28202 (New)


Package is "minio-client"

Mon Oct  2 20:08:16 2023 rev:48 rq:1114658 version:20230929T164122Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-09-25 20:52:13.200398176 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.28202/minio-client.changes 
2023-10-02 20:10:12.790889115 +0200
@@ -1,0 +2,17 @@
+Mon Oct 02 05:29:51 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230929T164122Z:
+  * Add min, max and total request time to top api command (#4702)
+  * Use latest madmin-go (v3.0.21) (#4701)
+  * perf net: Do not show Err: tag if there is no error (#4700)
+
+---
+Fri Sep 29 08:46:51 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230928T174830Z:
+  * change 6->3 decimal resolution, to conserve terminal realestate
+  * Add ART and ATP to 'support top api' command (#4699)
+  * broaden reach of `--no-color` flag (#4697)
+  * Show heal checks performed on missing (#4692)
+
+---

Old:

  mc-20230922T050746Z.obscpio

New:

  mc-20230929T164122Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.jMfWdU/_old  2023-10-02 20:10:14.334944644 +0200
+++ /var/tmp/diff_new_pack.jMfWdU/_new  2023-10-02 20:10:14.334944644 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230922T050746Z
+Version:20230929T164122Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only
@@ -37,8 +37,7 @@
 Please note: In contrast to upstream this package provides the executable as 
`minio-client`.
 
 %prep
-%setup -q -n %{archive_name}-%{version}
-%setup -q -n %{archive_name}-%{version} -T -D -a 1
+%autosetup -p1 -a1 -n %{archive_name}-%{version}
 
 %build
 go build \

++ _service ++
--- /var/tmp/diff_new_pack.jMfWdU/_old  2023-10-02 20:10:14.362945651 +0200
+++ /var/tmp/diff_new_pack.jMfWdU/_new  2023-10-02 20:10:14.366945795 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-22T05-07-46Z
+RELEASE.2023-09-29T16-41-22Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230922T050746Z.obscpio
+mc-20230929T164122Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.jMfWdU/_old  2023-10-02 20:10:14.382946370 +0200
+++ /var/tmp/diff_new_pack.jMfWdU/_new  2023-10-02 20:10:14.386946514 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  ae05d451739bb8cd35952f7cac0b11f60407cd52
+  d47a2ba53a5e10cd1bc8b946c05f4cadb71d4ee3
 (No newline at EOF)
 

++ mc-20230922T050746Z.obscpio -> mc-20230929T164122Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230922T050746Z/cmd/admin-scanner-status.go 
new/mc-20230929T164122Z/cmd/admin-scanner-status.go
--- old/mc-20230922T050746Z/cmd/admin-scanner-status.go 2023-09-22 
07:07:46.0 +0200
+++ new/mc-20230929T164122Z/cmd/admin-scanner-status.go 2023-09-29 
18:41:22.0 +0200
@@ -273,26 +273,24 @@
addRowF(title("Current cycle:") + " (between cycles)")
addRowF(title("Active drives:")+"  %s", 
ui(uint64(len(sc.ActivePaths
}
+   getRate := func(x madmin.TimedAction) string {
+   if x.AccTime > 0 {
+   return fmt.Sprintf("; Rate: %v/day", 
ui(uint64(float64(24*time.Hour)/(float64(time.Minute)/float64(x.Count)
+   }
+   return ""
+   }
addRow("-- Last Minute Statistics 
---")
objs := uint64(0)
x := sc.LastMinute.Actions["ScanObject"]
{
avg := x.Avg()
-   rate := ""
-   if x.AccTime > 0 {
-   rate = fmt.Sprintf("; Rate: %v/day", 
ui(uint64(float64(24*time.Hour)/(float64(time.Minute)/float64(x.Count)
-   }
-   addRowF(title("Objects Scanned:")+"   %s objects; Avg: 
%v%s", ui(x.Count), metricsDuration(avg), rate)
+   addRowF(title("Objects Scanned:")+"   %s objects; Avg: 
%v%s", ui(x.Count), metricsDuration(avg), getRate(x))
objs = x.Count
}
x = sc.Last

commit minio-client for openSUSE:Factory

2023-09-25 Thread Source-Sync
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 2023-09-25 20:03:34

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1770 (New)


Package is "minio-client"

Mon Sep 25 20:03:34 2023 rev:47 rq:1113352 version:20230922T050746Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-09-21 22:22:06.442816659 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1770/minio-client.changes  
2023-09-25 20:52:13.200398176 +0200
@@ -1,0 +2,6 @@
+Mon Sep 25 05:52:33 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230922T050746Z:
+  * upgrade minio/pkg v2.0.2 (#4694)
+
+---

Old:

  mc-20230920T152231Z.obscpio

New:

  mc-20230922T050746Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.dKUHxA/_old  2023-09-25 20:52:14.740453811 +0200
+++ /var/tmp/diff_new_pack.dKUHxA/_new  2023-09-25 20:52:14.744453955 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230920T152231Z
+Version:20230922T050746Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.dKUHxA/_old  2023-09-25 20:52:14.772454968 +0200
+++ /var/tmp/diff_new_pack.dKUHxA/_new  2023-09-25 20:52:14.776455112 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-20T15-22-31Z
+RELEASE.2023-09-22T05-07-46Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230920T152231Z.obscpio
+mc-20230922T050746Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.dKUHxA/_old  2023-09-25 20:52:14.796455834 +0200
+++ /var/tmp/diff_new_pack.dKUHxA/_new  2023-09-25 20:52:14.800455979 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  38b8665e9e8649f98e6162bdb5163172e6ecc187
+  ae05d451739bb8cd35952f7cac0b11f60407cd52
 (No newline at EOF)
 

++ mc-20230920T152231Z.obscpio -> mc-20230922T050746Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230920T152231Z/go.mod 
new/mc-20230922T050746Z/go.mod
--- old/mc-20230920T152231Z/go.mod  2023-09-20 17:22:31.0 +0200
+++ new/mc-20230922T050746Z/go.mod  2023-09-22 07:07:46.0 +0200
@@ -47,7 +47,7 @@
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/juju/ratelimit v1.0.2
github.com/minio/madmin-go/v3 v3.0.18
-   github.com/minio/pkg/v2 v2.0.1
+   github.com/minio/pkg/v2 v2.0.2
github.com/muesli/reflow v0.3.0
github.com/navidys/tvxwidgets v0.3.0
github.com/olekukonko/tablewriter v0.0.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230920T152231Z/go.sum 
new/mc-20230922T050746Z/go.sum
--- old/mc-20230920T152231Z/go.sum  2023-09-20 17:22:31.0 +0200
+++ new/mc-20230922T050746Z/go.sum  2023-09-22 07:07:46.0 +0200
@@ -144,8 +144,8 @@
 github.com/minio/minio-go/v7 v7.0.63/go.mod 
h1:Q6X7Qjb7WMhvG65qKf4gUgA5XaiSox74kR1uAEjxRS4=
 github.com/minio/mux v1.9.0 h1:dWafQFyEfGhJvK6AwLOt83bIG5bxKxKJnKMCi0XAaoA=
 github.com/minio/mux v1.9.0/go.mod 
h1:1pAare17ZRL5GpmNL+9YmqHoWnLmMZF9C/ioUCfy0BQ=
-github.com/minio/pkg/v2 v2.0.1 h1:MI3xMGCxoN5EEBRp98uEU5J0LlaF+8fLPtL8oHTHLX0=
-github.com/minio/pkg/v2 v2.0.1/go.mod 
h1:6xTAr5M9yobpUroXAAaTrGJ9fhOZIqKYOT0I87u2yZ4=
+github.com/minio/pkg/v2 v2.0.2 h1:cytXmC21fBNS+0NVKEE5FuYmQfY+HFTqis6Kkj3U9ac=
+github.com/minio/pkg/v2 v2.0.2/go.mod 
h1:6xTAr5M9yobpUroXAAaTrGJ9fhOZIqKYOT0I87u2yZ4=
 github.com/minio/selfupdate v0.6.0 
h1:i76PgT0K5xO9+hjzKcacQtO7+MjJ4JKA8Ak8XQ9DDwU=
 github.com/minio/selfupdate v0.6.0/go.mod 
h1:bO02GTIPCMQFTEvE5h4DjYB58bCoZ35XLeBf0buTDdM=
 github.com/minio/sha256-simd v1.0.1 
h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM=

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.dKUHxA/_old  2023-09-25 20:52:15.068465661 +0200
+++ /var/tmp/diff_new_pack.dKUHxA/_new  2023-09-25 20:52:15.072465806 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230920T152231Z
-mtime: 1695223351
-commit: 38b8665e9e8649f98e6162bdb5163172e6ecc187
+version: 20230922T050746Z
+mtime: 1695359266
+commit: ae05d451739bb8cd35952f7cac0b11f60407cd52
 

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


commit minio-client for openSUSE:Factory

2023-09-21 Thread Source-Sync
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 2023-09-21 22:22:04

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1770 (New)


Package is "minio-client"

Thu Sep 21 22:22:04 2023 rev:46 rq:1112663 version:20230920T152231Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-09-20 13:27:41.199414772 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1770/minio-client.changes  
2023-09-21 22:22:06.442816659 +0200
@@ -1,0 +2,11 @@
+Thu Sep 21 04:46:19 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230920T152231Z:
+  * perf net: Show the error with the bandwidth results (#4688)
+  * add exclude-storageclass flag for mirror (#4684)
+  * Support multiple policies in 'mc admin user policy' command
+(#4685)
+  * hide all old deprecate heal options (#4682)
+  * Add download links (#4681)
+
+---

Old:

  mc-20230913T230858Z.obscpio

New:

  mc-20230920T152231Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.kEi7Rs/_old  2023-09-21 22:22:08.778901428 +0200
+++ /var/tmp/diff_new_pack.kEi7Rs/_new  2023-09-21 22:22:08.778901428 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230913T230858Z
+Version:20230920T152231Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.kEi7Rs/_old  2023-09-21 22:22:08.806902445 +0200
+++ /var/tmp/diff_new_pack.kEi7Rs/_new  2023-09-21 22:22:08.810902589 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-13T23-08-58Z
+RELEASE.2023-09-20T15-22-31Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230913T230858Z.obscpio
+mc-20230920T152231Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.kEi7Rs/_old  2023-09-21 22:22:08.830903315 +0200
+++ /var/tmp/diff_new_pack.kEi7Rs/_new  2023-09-21 22:22:08.830903315 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  e561bc770e9ba6659a13a094e08a530a9685748c
+  38b8665e9e8649f98e6162bdb5163172e6ecc187
 (No newline at EOF)
 

++ mc-20230913T230858Z.obscpio -> mc-20230920T152231Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230913T230858Z/README.md 
new/mc-20230920T152231Z/README.md
--- old/mc-20230913T230858Z/README.md   2023-09-14 01:08:58.0 +0200
+++ new/mc-20230920T152231Z/README.md   2023-09-20 17:22:31.0 +0200
@@ -88,7 +88,9 @@
 | Platform | Architecture | URL |
 | -- |  |--|
 |GNU/Linux|64-bit Intel|https://dl.min.io/client/mc/release/linux-amd64/mc |
-||64-bit PPC|https://dl.min.io/client/mc/release/linux-ppc64le/mc |
+|GNU/Linux|64-bit PPC|https://dl.min.io/client/mc/release/linux-ppc64le/mc |
+|GNU/Linux|64-bit ARM|https://dl.min.io/client/mc/release/linux-arm64/mc |
+|Linux/s390x|S390X|https://dl.min.io/client/mc/release/linux-s390x/mc |
 
 ```
 wget https://dl.min.io/client/mc/release/linux-amd64/mc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230913T230858Z/cmd/admin-heal.go 
new/mc-20230920T152231Z/cmd/admin-heal.go
--- old/mc-20230913T230858Z/cmd/admin-heal.go   2023-09-14 01:08:58.0 
+0200
+++ new/mc-20230920T152231Z/cmd/admin-heal.go   2023-09-20 17:22:31.0 
+0200
@@ -41,37 +41,45 @@
 
 var adminHealFlags = []cli.Flag{
cli.StringFlag{
-   Name:  "scan",
-   Usage: "select the healing scan mode (normal/deep)",
-   Value: scanNormalMode,
+   Name:   "scan",
+   Usage:  "select the healing scan mode (normal/deep)",
+   Value:  scanNormalMode,
+   Hidden: true,
},
cli.BoolFlag{
-   Name:  "recursive, r",
-   Usage: "heal recursively",
+   Name:   "recursive, r",
+   Usage:  "heal recursively",
+   Hidden: true,
},
cli.BoolFlag{
-   Name:  "dry-run, n",
-   Usage: "only inspect data, but do not mutate",
+   Name:   "dry-run, n",
+   Usage:  "only inspect data, but do not mutate",
+   Hidden: true,
},
cli.BoolFlag{
-   Name:  "force-start, f",
-   Usage: "force start a new heal sequence",
+   Na

commit minio-client for openSUSE:Factory

2023-09-20 Thread Source-Sync
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 2023-09-20 13:25:53

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.16627 (New)


Package is "minio-client"

Wed Sep 20 13:25:53 2023 rev:45 rq:831 version:20230913T230858Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-09-08 21:16:45.193069962 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.16627/minio-client.changes 
2023-09-20 13:27:41.199414772 +0200
@@ -1,0 +2,6 @@
+Mon Sep 18 05:36:06 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230913T230858Z:
+  * update all dependencies (#4679)
+
+---

Old:

  mc-20230907T224855Z.obscpio

New:

  mc-20230913T230858Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.hB0lgU/_old  2023-09-20 13:27:43.539498607 +0200
+++ /var/tmp/diff_new_pack.hB0lgU/_new  2023-09-20 13:27:43.543498750 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230907T224855Z
+Version:20230913T230858Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.hB0lgU/_old  2023-09-20 13:27:43.567499610 +0200
+++ /var/tmp/diff_new_pack.hB0lgU/_new  2023-09-20 13:27:43.571499753 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-07T22-48-55Z
+RELEASE.2023-09-13T23-08-58Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230907T224855Z.obscpio
+mc-20230913T230858Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.hB0lgU/_old  2023-09-20 13:27:43.591500470 +0200
+++ /var/tmp/diff_new_pack.hB0lgU/_new  2023-09-20 13:27:43.595500613 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  9dcef8825fae8d438fc0be518ecd5ca289f6e18f
+  e561bc770e9ba6659a13a094e08a530a9685748c
 (No newline at EOF)
 

++ mc-20230907T224855Z.obscpio -> mc-20230913T230858Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230907T224855Z/CREDITS 
new/mc-20230913T230858Z/CREDITS
--- old/mc-20230907T224855Z/CREDITS 2023-09-08 00:48:55.0 +0200
+++ new/mc-20230913T230858Z/CREDITS 2023-09-14 01:08:58.0 +0200
@@ -225,7 +225,7 @@
 
 MIT License
 
-Copyright (c) 2021 Charmbracelet, Inc
+Copyright (c) 2021-2023 Charmbracelet, Inc
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -5047,8 +5047,8 @@
 
 
 
-github.com/minio/pkg
-https://github.com/minio/pkg
+github.com/minio/pkg/v2
+https://github.com/minio/pkg/v2
 
 GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
@@ -9934,31 +9934,6 @@
 
 
 
-go.uber.org/atomic
-https://go.uber.org/atomic
-
-Copyright (c) 2016 Uber Technologies, Inc.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-
-
 go.uber.org/goleak
 https://go.uber.org/goleak
 

commit minio-client for openSUSE:Factory

2023-09-08 Thread Source-Sync
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 2023-09-08 21:15:48

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1766 (New)


Package is "minio-client"

Fri Sep  8 21:15:48 2023 rev:44 rq:1109653 version:20230907T224855Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-09-06 19:01:22.626368525 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1766/minio-client.changes  
2023-09-08 21:16:45.193069962 +0200
@@ -1,0 +2,7 @@
+Fri Sep 08 04:42:06 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230907T224855Z:
+  * fix: alignment issues in help for svacct sub-commands (#4676)
+  * fix: alignment in 'replicate status' help (#4675)
+
+---

Old:

  mc-20230902T212803Z.obscpio

New:

  mc-20230907T224855Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.Kikh4l/_old  2023-09-08 21:16:46.681123144 +0200
+++ /var/tmp/diff_new_pack.Kikh4l/_new  2023-09-08 21:16:46.685123287 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230902T212803Z
+Version:20230907T224855Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.Kikh4l/_old  2023-09-08 21:16:46.717124431 +0200
+++ /var/tmp/diff_new_pack.Kikh4l/_new  2023-09-08 21:16:46.717124431 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-09-02T21-28-03Z
+RELEASE.2023-09-07T22-48-55Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230902T212803Z.obscpio
+mc-20230907T224855Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.Kikh4l/_old  2023-09-08 21:16:46.737125146 +0200
+++ /var/tmp/diff_new_pack.Kikh4l/_new  2023-09-08 21:16:46.741125289 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  e2056fb057897a515d2cad25aa461f5dfd32695d
+  9dcef8825fae8d438fc0be518ecd5ca289f6e18f
 (No newline at EOF)
 

++ mc-20230902T212803Z.obscpio -> mc-20230907T224855Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230902T212803Z/.github/workflows/vulncheck.yml 
new/mc-20230907T224855Z/.github/workflows/vulncheck.yml
--- old/mc-20230902T212803Z/.github/workflows/vulncheck.yml 2023-09-02 
23:28:03.0 +0200
+++ new/mc-20230907T224855Z/.github/workflows/vulncheck.yml 2023-09-08 
00:48:55.0 +0200
@@ -16,7 +16,7 @@
 - name: Set up Go
   uses: actions/setup-go@v3
   with:
-go-version: 1.21.0
+go-version: 1.21.1
 check-latest: true
 - name: Get official govulncheck
   run: go install golang.org/x/vuln/cmd/govulncheck@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230902T212803Z/cmd/admin-user-svcacct-add.go 
new/mc-20230907T224855Z/cmd/admin-user-svcacct-add.go
--- old/mc-20230902T212803Z/cmd/admin-user-svcacct-add.go   2023-09-02 
23:28:03.0 +0200
+++ new/mc-20230907T224855Z/cmd/admin-user-svcacct-add.go   2023-09-08 
00:48:55.0 +0200
@@ -79,7 +79,7 @@
   {{.HelpName}} - {{.Usage}}
 
 USAGE:
-  {{.HelpName}} ALIAS ACCOUNT
+  {{.HelpName}} ALIAS ACCOUNT [FLAGS]
 
 ACCOUNT:
   An account could be a regular MinIO user, STS or LDAP user.
@@ -90,18 +90,18 @@
 EXAMPLES:
   1. Add a new service account for user 'foobar' to MinIO server with a name 
and description.
  {{.Prompt}} {{.HelpName}} myminio foobar --name uploaderKey --description 
"foobar uploader scripts"
+
   2. Add a new service account to MinIO server with specified access key and 
secret key for user 'foobar'.
  {{.Prompt}} {{.HelpName}} myminio foobar --access-key "myaccesskey" 
--secret-key "mysecretkey"
+
   3. Add a new service account to MinIO server with specified access key and 
random secret key for user 'foobar'.
  {{.Prompt}} {{.HelpName}} myminio foobar --access-key "myaccesskey"
+
   4. Add a new service account to MinIO server with specified secret key and 
random access key for user 'foobar'.
  {{.Prompt}} {{.HelpName}} myminio foobar --secret-key "mysecretkey"
-   5. Add a new service account to MinIO server with specified expiry date 
in the future for user 'foobar'.
- {{.Prompt}} {{.HelpName}} myminio foobar --expiry 2023-06-24
-{{.Prompt}} {{.HelpName}} myminio foobar --expiry 
2023-06-24T

commit minio-client for openSUSE:Factory

2023-09-06 Thread Source-Sync
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 2023-09-06 18:57:42

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1766 (New)


Package is "minio-client"

Wed Sep  6 18:57:42 2023 rev:43 rq:1109072 version:20230902T212803Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-08-06 16:30:09.191916638 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1766/minio-client.changes  
2023-09-06 19:01:22.626368525 +0200
@@ -1,0 +2,49 @@
+Tue Sep 05 14:05:18 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230902T212803Z:
+  * Update to minio/pkg v2 (#4674)
+
+---
+Tue Sep 05 13:40:54 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230830T080226Z:
+  * Change replicate status metrics to show additional info (#4582)
+
+---
+Tue Sep 05 13:32:38 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230829T225506Z:
+  * support all scanner events to be reported for excessive
+versions (#4672)
+  * Added `mc admin kms key list ALIAS` command (#4663)
+  * update contribution license PR template
+
+---
+Tue Sep 05 13:27:54 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230818T215755Z:
+  * fix: bandwidth displayed in `mc replicate status` (#4664)
+
+---
+Tue Sep 05 13:23:12 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230815T230309Z:
+  * add new PR template license terms and go1.21.x build (#4662)
+  * fix: batch status responsiveness (#4661)
+  * kms-status: Show unknown for decryption when encryption fails
+(#4659)
+  * mv: Do not error out when a bucket has an object lock config
+(#4654)
+  * fix license register error in airgap mode (#4653)
+  * feat: support perf client to show `TX` from client to server
+(#4645)
+
+---
+Tue Sep 05 13:17:55 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230808T172359Z:
+  * fix: provide an option for Prometheus config for node and
+bucket endpoints (#4652)
+  * update go1.20.7 for vulncheck
+
+---

Old:

  mc-20230801T233057Z.obscpio

New:

  mc-20230902T212803Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.lSzoC8/_old  2023-09-06 19:01:25.558473048 +0200
+++ /var/tmp/diff_new_pack.lSzoC8/_new  2023-09-06 19:01:25.562473191 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230801T233057Z
+Version:20230902T212803Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.lSzoC8/_old  2023-09-06 19:01:25.594474332 +0200
+++ /var/tmp/diff_new_pack.lSzoC8/_new  2023-09-06 19:01:25.598474474 +0200
@@ -1,16 +1,16 @@
 
-  
+  
 https://github.com/minio/mc
 git
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-08-01T23-30-57Z
+RELEASE.2023-09-02T21-28-03Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
   
-  
+  
 mc
   
   
@@ -18,8 +18,8 @@
 *.tar
 gz
   
-  
-mc-20230801T233057Z.obscpio
+  
+mc-20230902T212803Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.lSzoC8/_old  2023-09-06 19:01:25.614475045 +0200
+++ /var/tmp/diff_new_pack.lSzoC8/_new  2023-09-06 19:01:25.618475187 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  0a529d5e642f1a50a74b256c683be453e26bf7e9
+  e2056fb057897a515d2cad25aa461f5dfd32695d
 (No newline at EOF)
 

++ mc-20230801T233057Z.obscpio -> mc-20230902T212803Z.obscpio ++
 3956 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.lSzoC8/_old  2023-09-06 19:01:25.898485169 +0200
+++ /var/tmp/diff_new_pack.lSzoC8/_new  2023-09-06 19:01:25.902485311 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230801T233057Z
-mtime: 1690932657
-commit: 0a529d5e642f1a50a74b256c683be453e26bf7e9
+version: 20230902T212803Z
+mtime: 1693690083
+commit: e2056fb057897a515d2cad25aa461f5dfd32695d
 

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


commit minio-client for openSUSE:Factory

2023-08-06 Thread Source-Sync
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 2023-08-06 16:29:50

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.22712 (New)


Package is "minio-client"

Sun Aug  6 16:29:50 2023 rev:42 rq:1102552 version:20230801T233057Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-07-25 11:52:25.665917794 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.22712/minio-client.changes 
2023-08-06 16:30:09.191916638 +0200
@@ -1,0 +2,8 @@
+Sun Aug 06 08:00:30 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230801T233057Z:
+  * update deps to latest packages and update CREDITS (#4649)
+  * add TTFB as part of 'mc admin trace' in pretty form (#4648)
+  * Do not allow registration of play cluster (#4647)
+
+---

Old:

  mc-20230721T204427Z.obscpio

New:

  mc-20230801T233057Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.BYI5Tt/_old  2023-08-06 16:30:10.391923912 +0200
+++ /var/tmp/diff_new_pack.BYI5Tt/_new  2023-08-06 16:30:10.399923960 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230721T204427Z
+Version:20230801T233057Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.BYI5Tt/_old  2023-08-06 16:30:10.455924300 +0200
+++ /var/tmp/diff_new_pack.BYI5Tt/_new  2023-08-06 16:30:10.463924348 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-07-21T20-44-27Z
+RELEASE.2023-08-01T23-30-57Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230721T204427Z.obscpio
+mc-20230801T233057Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.BYI5Tt/_old  2023-08-06 16:30:10.495924542 +0200
+++ /var/tmp/diff_new_pack.BYI5Tt/_new  2023-08-06 16:30:10.499924566 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  1c17ff4c995d772c97eed8c5a269f2074a9425fe
+  0a529d5e642f1a50a74b256c683be453e26bf7e9
 (No newline at EOF)
 

++ mc-20230721T204427Z.obscpio -> mc-20230801T233057Z.obscpio ++
 1884 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.BYI5Tt/_old  2023-08-06 16:30:10.795926360 +0200
+++ /var/tmp/diff_new_pack.BYI5Tt/_new  2023-08-06 16:30:10.815926481 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230721T204427Z
-mtime: 1689972267
-commit: 1c17ff4c995d772c97eed8c5a269f2074a9425fe
+version: 20230801T233057Z
+mtime: 1690932657
+commit: 0a529d5e642f1a50a74b256c683be453e26bf7e9
 

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


commit minio-client for openSUSE:Factory

2023-07-25 Thread Source-Sync
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 2023-07-25 11:50:47

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1467 (New)


Package is "minio-client"

Tue Jul 25 11:50:47 2023 rev:41 rq:1100229 version:20230721T204427Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-07-19 19:10:38.652569720 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1467/minio-client.changes  
2023-07-25 11:52:25.665917794 +0200
@@ -1,0 +2,13 @@
+Mon Jul 24 04:59:11 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230721T204427Z:
+  * Enabled option to show node and bucket metrics (#4632)
+  * admin-info: Include delete markers count (#4642)
+  * fix replicate update to check for older role ARN (#4640)
+  * properly report bandwidth if not configured (#4641)
+  * fix: remove count flag and show the byteRate for support top
+net (#4639)
+  * fix: Enable byHost filtering by supplying server host list
+(#4637)
+
+---

Old:

  mc-20230718T210538Z.obscpio

New:

  mc-20230721T204427Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.mrRQ6e/_old  2023-07-25 11:52:27.293927326 +0200
+++ /var/tmp/diff_new_pack.mrRQ6e/_new  2023-07-25 11:52:27.297927349 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230718T210538Z
+Version:20230721T204427Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.mrRQ6e/_old  2023-07-25 11:52:27.345927630 +0200
+++ /var/tmp/diff_new_pack.mrRQ6e/_new  2023-07-25 11:52:27.349927654 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-07-18T21-05-38Z
+RELEASE.2023-07-21T20-44-27Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230718T210538Z.obscpio
+mc-20230721T204427Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.mrRQ6e/_old  2023-07-25 11:52:27.373927794 +0200
+++ /var/tmp/diff_new_pack.mrRQ6e/_new  2023-07-25 11:52:27.377927818 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  216aae32b9685dcdb4fdb83b6d99b00545ac6ab0
+  1c17ff4c995d772c97eed8c5a269f2074a9425fe
 (No newline at EOF)
 

++ mc-20230718T210538Z.obscpio -> mc-20230721T204427Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230718T210538Z/cmd/admin-info.go 
new/mc-20230721T204427Z/cmd/admin-info.go
--- old/mc-20230718T210538Z/cmd/admin-info.go   2023-07-18 23:05:38.0 
+0200
+++ new/mc-20230721T204427Z/cmd/admin-info.go   2023-07-21 22:44:27.0 
+0200
@@ -1,4 +1,4 @@
-// Copyright (c) 2015-2022 MinIO, Inc.
+// Copyright (c) 2015-2023 MinIO, Inc.
 //
 // This file is part of MinIO Object Storage stack
 //
@@ -285,6 +285,9 @@
if u.Info.Versions.Count > 0 {
msg += ", " + 
english.Plural(int(u.Info.Versions.Count), "Version", "")
}
+   if u.Info.DeleteMarkers.Count > 0 {
+   msg += ", " + 
english.Plural(int(u.Info.DeleteMarkers.Count), "Delete Marker", "")
+   }
msg += "\n"
}
if backendType == madmin.Erasure {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230718T210538Z/cmd/admin-prometheus-metrics.go 
new/mc-20230721T204427Z/cmd/admin-prometheus-metrics.go
--- old/mc-20230718T210538Z/cmd/admin-prometheus-metrics.go 2023-07-18 
23:05:38.0 +0200
+++ new/mc-20230721T204427Z/cmd/admin-prometheus-metrics.go 2023-07-21 
22:44:27.0 +0200
@@ -39,24 +39,34 @@
CustomHelpTemplate: `NAME:
   {{.HelpName}} - {{.Usage}}
 USAGE:
-  {{.HelpName}} TARGET
+  {{.HelpName}} TARGET [METRIC-TYPE]
+
+METRIC-TYPE:
+  valid values are ['cluster', 'node', 'bucket']. Defaults to 'cluster' if not 
specified.
+
 FLAGS:
   {{range .VisibleFlags}}{{.}}
   {{end}}
 EXAMPLES:
   1. List of metrics reported cluster wide.
  {{.Prompt}} {{.HelpName}} play
+
+  2. List of metrics reported at node level.
+ {{.Prompt}} {{.HelpName}} play node
+
+  3. List of metrics reported at bucket level.
+ {{.Prompt}} {{.HelpName}} play bucket
 `,
 }
 
 const (
metricsRespBodyLimit = 10 << 20 // 10 MiB
-   metricsEndPoint  = "/minio/v2/metrics/cluster"
+   metricsEndPointRoot  = "/m

commit minio-client for openSUSE:Factory

2023-07-19 Thread Source-Sync
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 2023-07-19 19:10:37

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.5570 (New)


Package is "minio-client"

Wed Jul 19 19:10:37 2023 rev:40 rq:1099360 version:20230718T210538Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-07-12 17:28:18.966903518 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.5570/minio-client.changes  
2023-07-19 19:10:38.652569720 +0200
@@ -1,0 +2,14 @@
+Wed Jul 19 04:26:25 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230718T210538Z:
+  * fix: with --purge flag ignore path validation errors (#4636)
+  * Support mc top net (#4626)
+  * Fixing misleading usage help for mc anonymous set-json (#4621)
+  * run gofumpt -extra on all source files (#4634)
+  * Ensure `--airgap` is available on all support commands (#4633)
+  * Added `endpoint` and `version` attributes to KMS details
+(#4591)
+  * Rename mc replicate diff as mc replicate backlog  (#4568)
+  * allow purge to happen on quorum lost objects (#4629)
+
+---

Old:

  mc-20230711T233044Z.obscpio

New:

  mc-20230718T210538Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.tAdWGi/_old  2023-07-19 19:10:40.168578587 +0200
+++ /var/tmp/diff_new_pack.tAdWGi/_new  2023-07-19 19:10:40.172578611 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230711T233044Z
+Version:20230718T210538Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.tAdWGi/_old  2023-07-19 19:10:40.208578821 +0200
+++ /var/tmp/diff_new_pack.tAdWGi/_new  2023-07-19 19:10:40.216578868 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-07-11T23-30-44Z
+RELEASE.2023-07-18T21-05-38Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230711T233044Z.obscpio
+mc-20230718T210538Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.tAdWGi/_old  2023-07-19 19:10:40.244579031 +0200
+++ /var/tmp/diff_new_pack.tAdWGi/_new  2023-07-19 19:10:40.248579055 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  c1193fc29d61d8aa69e3725a519abd95ee9da910
+  216aae32b9685dcdb4fdb83b6d99b00545ac6ab0
 (No newline at EOF)
 

++ mc-20230711T233044Z.obscpio -> mc-20230718T210538Z.obscpio ++
 2481 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.tAdWGi/_old  2023-07-19 19:10:40.536580740 +0200
+++ /var/tmp/diff_new_pack.tAdWGi/_new  2023-07-19 19:10:40.540580763 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230711T233044Z
-mtime: 1689118244
-commit: c1193fc29d61d8aa69e3725a519abd95ee9da910
+version: 20230718T210538Z
+mtime: 1689714338
+commit: 216aae32b9685dcdb4fdb83b6d99b00545ac6ab0
 

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


commit minio-client for openSUSE:Factory

2023-07-12 Thread Source-Sync
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 2023-07-12 17:27:44

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.8922 (New)


Package is "minio-client"

Wed Jul 12 17:27:44 2023 rev:39 rq:1098303 version:20230711T233044Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-07-09 20:42:59.070084678 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.8922/minio-client.changes  
2023-07-12 17:28:18.966903518 +0200
@@ -1,0 +2,8 @@
+Wed Jul 12 06:39:54 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230711T233044Z:
+  * This release contains a security fix in the Golang `net/http`
+standard library - it is built with Go 1.19.11.
+  * add update UBI image to 8.8 (#4625)
+
+---

Old:

  mc-20230707T052551Z.obscpio

New:

  mc-20230711T233044Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.ZJupFK/_old  2023-07-12 17:28:19.914910080 +0200
+++ /var/tmp/diff_new_pack.ZJupFK/_new  2023-07-12 17:28:19.918910107 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230707T052551Z
+Version:20230711T233044Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.ZJupFK/_old  2023-07-12 17:28:19.950910329 +0200
+++ /var/tmp/diff_new_pack.ZJupFK/_new  2023-07-12 17:28:19.954910357 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-07-07T05-25-51Z
+RELEASE.2023-07-11T23-30-44Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230707T052551Z.obscpio
+mc-20230711T233044Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.ZJupFK/_old  2023-07-12 17:28:19.970910468 +0200
+++ /var/tmp/diff_new_pack.ZJupFK/_new  2023-07-12 17:28:19.974910495 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  1b992864ee0682b8be6a590ccbda080475dcadd3
+  c1193fc29d61d8aa69e3725a519abd95ee9da910
 (No newline at EOF)
 

++ mc-20230707T052551Z.obscpio -> mc-20230711T233044Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230707T052551Z/Dockerfile 
new/mc-20230711T233044Z/Dockerfile
--- old/mc-20230707T052551Z/Dockerfile  2023-07-07 07:25:51.0 +0200
+++ new/mc-20230711T233044Z/Dockerfile  2023-07-12 01:30:44.0 +0200
@@ -1,4 +1,4 @@
-FROM golang:1.18-alpine as builder
+FROM golang:1.19-alpine as builder
 
 LABEL maintainer="MinIO Inc "
 
@@ -11,7 +11,7 @@
  git clone https://github.com/minio/mc && cd mc && \
  go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)"
 
-FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
+FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
 
 ARG TARGETARCH
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230707T052551Z/Dockerfile.dev 
new/mc-20230711T233044Z/Dockerfile.dev
--- old/mc-20230707T052551Z/Dockerfile.dev  2023-07-07 07:25:51.0 
+0200
+++ new/mc-20230711T233044Z/Dockerfile.dev  2023-07-12 01:30:44.0 
+0200
@@ -1,4 +1,4 @@
-FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
+FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
 
 LABEL maintainer="MinIO Inc "
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230707T052551Z/Dockerfile.hotfix 
new/mc-20230711T233044Z/Dockerfile.hotfix
--- old/mc-20230707T052551Z/Dockerfile.hotfix   2023-07-07 07:25:51.0 
+0200
+++ new/mc-20230711T233044Z/Dockerfile.hotfix   2023-07-12 01:30:44.0 
+0200
@@ -1,4 +1,4 @@
-FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
+FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
 
 ARG RELEASE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230707T052551Z/Dockerfile.release 
new/mc-20230711T233044Z/Dockerfile.release
--- old/mc-20230707T052551Z/Dockerfile.release  2023-07-07 07:25:51.0 
+0200
+++ new/mc-20230711T233044Z/Dockerfile.release  2023-07-12 01:30:44.0 
+0200
@@ -1,4 +1,4 @@
-FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
+FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
 
 ARG TARGETARCH
 

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.ZJupFK/_old  2023-07-12 17:28:20.222912212 +0200
+++ /var/tmp/diff_new_pack.ZJupFK/_new  2023-0

commit minio-client for openSUSE:Factory

2023-07-09 Thread Source-Sync
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 2023-07-09 20:40:54

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.23466 (New)


Package is "minio-client"

Sun Jul  9 20:40:54 2023 rev:38 rq:1097763 version:20230707T052551Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-06-29 17:29:35.262701943 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.23466/minio-client.changes 
2023-07-09 20:42:59.070084678 +0200
@@ -1,0 +2,9 @@
+Sat Jul 08 19:38:03 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230707T052551Z:
+  * Enhance user info output with authentication info (#4613)
+  * admin replicate update: rename --sync flag to --mode (#4623)
+  * fix: miss count for 'mc support top drive' (#4624)
+  * support site perf replication (#4608)
+
+---

Old:

  mc-20230628T215417Z.obscpio

New:

  mc-20230707T052551Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.SfHyoE/_old  2023-07-09 20:42:59.730088648 +0200
+++ /var/tmp/diff_new_pack.SfHyoE/_new  2023-07-09 20:42:59.734088672 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230628T215417Z
+Version:20230707T052551Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.SfHyoE/_old  2023-07-09 20:42:59.77009 +0200
+++ /var/tmp/diff_new_pack.SfHyoE/_new  2023-07-09 20:42:59.774088913 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-06-28T21-54-17Z
+RELEASE.2023-07-07T05-25-51Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230628T215417Z.obscpio
+mc-20230707T052551Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.SfHyoE/_old  2023-07-09 20:42:59.794089033 +0200
+++ /var/tmp/diff_new_pack.SfHyoE/_new  2023-07-09 20:42:59.798089057 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  eebdcdf36501cec35c893d7e8ab7a7473ff6860a
+  1b992864ee0682b8be6a590ccbda080475dcadd3
 (No newline at EOF)
 

++ mc-20230628T215417Z.obscpio -> mc-20230707T052551Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230628T215417Z/cmd/admin-replicate-update.go 
new/mc-20230707T052551Z/cmd/admin-replicate-update.go
--- old/mc-20230628T215417Z/cmd/admin-replicate-update.go   2023-06-28 
23:54:17.0 +0200
+++ new/mc-20230707T052551Z/cmd/admin-replicate-update.go   2023-07-07 
07:25:51.0 +0200
@@ -39,9 +39,16 @@
Usage: "endpoint for the site",
},
cli.StringFlag{
-   Name:  "sync",
-   Usage: "enable synchronous replication for this target, valid 
values are ['enable', 'disable'].",
-   Value: "disable",
+   Name:  "mode",
+   Usage: "change mode of replication for this target, valid 
values are ['sync', 'async'].",
+   Value: "",
+   },
+   cli.StringFlag{
+   Name:   "sync",
+   Usage:  "enable synchronous replication for this target, valid 
values are ['enable', 'disable'].",
+   Value:  "disable",
+   Hidden: true, // deprecated Jul 2023
+
},
 }
 
@@ -115,11 +122,15 @@
if !ctx.IsSet("deployment-id") {
fatalIf(errInvalidArgument(), "--deployment-id is a required 
flag")
}
-   if !ctx.IsSet("endpoint") && !ctx.IsSet("sync") {
-   fatalIf(errInvalidArgument(), "--endpoint or --sync is a 
required flag")
+   if !ctx.IsSet("endpoint") && !ctx.IsSet("mode") && !ctx.IsSet("sync") {
+   fatalIf(errInvalidArgument(), "--endpoint or --mode is a 
required flag")
}
+   if ctx.IsSet("mode") && ctx.IsSet("sync") {
+   fatalIf(errInvalidArgument(), "either --sync or --mode flag 
should be specified")
+   }
+
var syncState string
-   if ctx.IsSet("sync") {
+   if ctx.IsSet("sync") { // for backward compatibility - deprecated Jul 
2023
syncState = strings.ToLower(ctx.String("sync"))
switch syncState {
case "enable", "disable":
@@ -127,6 +138,18 @@
fatalIf(errInvalidArgument().Trace(args...), "--sync 
can be either [enable|disable]")
}
}
+
+   if ctx.IsSet("mode") {
+ 

commit minio-client for openSUSE:Factory

2023-06-29 Thread Source-Sync
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 2023-06-29 17:29:14

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.13546 (New)


Package is "minio-client"

Thu Jun 29 17:29:14 2023 rev:37 rq:1095934 version:20230628T215417Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-06-20 16:49:01.907604254 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.13546/minio-client.changes 
2023-06-29 17:29:35.262701943 +0200
@@ -1,0 +2,14 @@
+Thu Jun 29 08:35:13 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230628T215417Z:
+  * Upgrade madmin-go/v3 to 3.0.4 (#4618)
+  * Fix issues related to 'mc admin svcacct list --json' cmd
+(#4619)
+  * improve user messaging in 'support perf' and 'mc rm --dry-run'
+(#4617)
+  *  fix: allow cluster bucket export to export single bucket
+ (#4614)
+  * Improve consistency in mc cmds (#4609)
+  * Update minio dependencies (#4610)
+
+---

Old:

  mc-20230619T193119Z.obscpio

New:

  mc-20230628T215417Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.xFrvxW/_old  2023-06-29 17:29:36.330708199 +0200
+++ /var/tmp/diff_new_pack.xFrvxW/_new  2023-06-29 17:29:36.334708223 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230619T193119Z
+Version:20230628T215417Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.xFrvxW/_old  2023-06-29 17:29:36.366708410 +0200
+++ /var/tmp/diff_new_pack.xFrvxW/_new  2023-06-29 17:29:36.366708410 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-06-19T19-31-19Z
+RELEASE.2023-06-28T21-54-17Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230619T193119Z.obscpio
+mc-20230628T215417Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.xFrvxW/_old  2023-06-29 17:29:36.386708527 +0200
+++ /var/tmp/diff_new_pack.xFrvxW/_new  2023-06-29 17:29:36.390708551 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5f39522e69025bea6be0d350b65fdec2de2785c8
+  eebdcdf36501cec35c893d7e8ab7a7473ff6860a
 (No newline at EOF)
 

++ mc-20230619T193119Z.obscpio -> mc-20230628T215417Z.obscpio ++
 1845 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.xFrvxW/_old  2023-06-29 17:29:36.646710050 +0200
+++ /var/tmp/diff_new_pack.xFrvxW/_new  2023-06-29 17:29:36.650710074 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230619T193119Z
-mtime: 1687203079
-commit: 5f39522e69025bea6be0d350b65fdec2de2785c8
+version: 20230628T215417Z
+mtime: 1687989257
+commit: eebdcdf36501cec35c893d7e8ab7a7473ff6860a
 

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


commit minio-client for openSUSE:Factory

2023-06-20 Thread Source-Sync
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 2023-06-20 16:48:52

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.15902 (New)


Package is "minio-client"

Tue Jun 20 16:48:52 2023 rev:36 rq:1093855 version:20230619T193119Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-06-16 16:56:59.602468160 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.15902/minio-client.changes 
2023-06-20 16:49:01.907604254 +0200
@@ -1,0 +2,6 @@
+Tue Jun 20 04:55:56 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230619T193119Z:
+  * Add response details for policy attach/detach cmd (#4602)
+
+---

Old:

  mc-20230615T150826Z.obscpio

New:

  mc-20230619T193119Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.x8AdJs/_old  2023-06-20 16:49:02.959610576 +0200
+++ /var/tmp/diff_new_pack.x8AdJs/_new  2023-06-20 16:49:02.963610600 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230615T150826Z
+Version:20230619T193119Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.x8AdJs/_old  2023-06-20 16:49:02.999610817 +0200
+++ /var/tmp/diff_new_pack.x8AdJs/_new  2023-06-20 16:49:03.003610840 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-06-15T15-08-26Z
+RELEASE.2023-06-19T19-31-19Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230615T150826Z.obscpio
+mc-20230619T193119Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.x8AdJs/_old  2023-06-20 16:49:03.023610961 +0200
+++ /var/tmp/diff_new_pack.x8AdJs/_new  2023-06-20 16:49:03.027610985 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  bf3924b58341eb7a71785653a29bf26ca9fac95e
+  5f39522e69025bea6be0d350b65fdec2de2785c8
 (No newline at EOF)
 

++ mc-20230615T150826Z.obscpio -> mc-20230619T193119Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mc-20230615T150826Z/cmd/admin-cluster-bucket-import.go 
new/mc-20230619T193119Z/cmd/admin-cluster-bucket-import.go
--- old/mc-20230615T150826Z/cmd/admin-cluster-bucket-import.go  2023-06-15 
17:08:26.0 +0200
+++ new/mc-20230619T193119Z/cmd/admin-cluster-bucket-import.go  2023-06-19 
21:31:19.0 +0200
@@ -30,7 +30,7 @@
"github.com/klauspost/compress/zip"
"github.com/minio/cli"
json "github.com/minio/colorjson"
-   "github.com/minio/madmin-go/v2"
+   "github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/console"
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230615T150826Z/cmd/admin-config-get.go 
new/mc-20230619T193119Z/cmd/admin-config-get.go
--- old/mc-20230615T150826Z/cmd/admin-config-get.go 2023-06-15 
17:08:26.0 +0200
+++ new/mc-20230619T193119Z/cmd/admin-config-get.go 2023-06-19 
21:31:19.0 +0200
@@ -27,7 +27,7 @@
"github.com/fatih/color"
"github.com/minio/cli"
json "github.com/minio/colorjson"
-   "github.com/minio/madmin-go/v2"
+   "github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/console"
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230615T150826Z/cmd/admin-config-help.go 
new/mc-20230619T193119Z/cmd/admin-config-help.go
--- old/mc-20230615T150826Z/cmd/admin-config-help.go2023-06-15 
17:08:26.0 +0200
+++ new/mc-20230619T193119Z/cmd/admin-config-help.go2023-06-19 
21:31:19.0 +0200
@@ -24,7 +24,7 @@
 
"github.com/fatih/color"
json "github.com/minio/colorjson"
-   "github.com/minio/madmin-go/v2"
+   "github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230615T150826Z/cmd/admin-config-set.go 
new/mc-20230619T193119Z/cmd/admin-config-set.go
--- old/mc-20230615T150826Z/cmd/admin-config-set.go 2023-06-15 
17:08:26.0 +0200
+++ new/mc-20230619T193119Z/cmd/admin-config-set.go 2023-06-19 
21:31:19.0 +0200
@@ -24,7 +24,7 @@
"github.com/fatih/color"
"github.com/minio/cli"
json 

commit minio-client for openSUSE:Factory

2023-06-16 Thread Source-Sync
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 2023-06-16 16:55:55

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.15902 (New)


Package is "minio-client"

Fri Jun 16 16:55:55 2023 rev:35 rq:1093482 version:20230615T150826Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-06-13 16:10:50.519356869 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.15902/minio-client.changes 
2023-06-16 16:56:59.602468160 +0200
@@ -1,0 +2,13 @@
+Fri Jun 16 06:14:28 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230615T150826Z:
+  * resync status: show current status (#4604)
+  * Bump github.com/lestrrat-go/jwx from 1.2.25 to 1.2.26 (#4601)
+  * Improve output readability for `mc stat` command (#4597)
+  * Fix unconfigured IDP output in `idp info` command (#4600)
+  * Set theme color for `mc admin user svcacct set` output (#4599)
+  * remove unnecessary newline and contextualize the success
+(#4598)
+  * fix: copy progress crash (#4596)
+
+---

Old:

  mc-20230606T134856Z.obscpio

New:

  mc-20230615T150826Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.0ON3RH/_old  2023-06-16 16:57:00.678474508 +0200
+++ /var/tmp/diff_new_pack.0ON3RH/_new  2023-06-16 16:57:00.682474531 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230606T134856Z
+Version:20230615T150826Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.0ON3RH/_old  2023-06-16 16:57:00.722474767 +0200
+++ /var/tmp/diff_new_pack.0ON3RH/_new  2023-06-16 16:57:00.726474791 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-06-06T13-48-56Z
+RELEASE.2023-06-15T15-08-26Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230606T134856Z.obscpio
+mc-20230615T150826Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.0ON3RH/_old  2023-06-16 16:57:00.746474909 +0200
+++ /var/tmp/diff_new_pack.0ON3RH/_new  2023-06-16 16:57:00.746474909 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5e4ab1ec484fd398acbbda89cf17b381f8618184
+  bf3924b58341eb7a71785653a29bf26ca9fac95e
 (No newline at EOF)
 

++ mc-20230606T134856Z.obscpio -> mc-20230615T150826Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230606T134856Z/.gitignore 
new/mc-20230615T150826Z/.gitignore
--- old/mc-20230606T134856Z/.gitignore  2023-06-06 15:48:56.0 +0200
+++ new/mc-20230615T150826Z/.gitignore  2023-06-15 17:08:26.0 +0200
@@ -12,4 +12,5 @@
 .run*
 .idea/
 mc.RELEASE*
-mc.gz
\ No newline at end of file
+mc.gz
+.DS_Store
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230606T134856Z/cmd/admin-config-reset.go 
new/mc-20230615T150826Z/cmd/admin-config-reset.go
--- old/mc-20230606T134856Z/cmd/admin-config-reset.go   2023-06-06 
15:48:56.0 +0200
+++ new/mc-20230615T150826Z/cmd/admin-config-reset.go   2023-06-15 
17:08:26.0 +0200
@@ -65,17 +65,18 @@
 type configResetMessage struct {
Status  string `json:"status"`
targetAlias string
+   key string
restart bool
 }
 
 // String colorized service status message.
 func (u configResetMessage) String() (msg string) {
msg += console.Colorize("ResetConfigSuccess",
-   "Key is successfully reset.\n")
-   suggestion := fmt.Sprintf("mc admin service restart %s", u.targetAlias)
+   fmt.Sprintf("'%s' is successfully reset.", u.key))
if u.restart {
+   suggestion := fmt.Sprintf("mc admin service restart %s", 
u.targetAlias)
msg += console.Colorize("ResetConfigSuccess",
-   fmt.Sprintf("Please restart your server with `%s`.\n", 
suggestion))
+   fmt.Sprintf("\nPlease restart your server with `%s`.", 
suggestion))
}
return
 }
@@ -144,6 +145,7 @@
printMsg(configResetMessage{
targetAlias: aliasedURL,
restart: restart,
+   key: input,
})
 
return nil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/mc-20230606T134856Z/cmd/admin-replicate-

commit minio-client for openSUSE:Factory

2023-06-13 Thread Source-Sync
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 2023-06-13 16:10:47

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.15902 (New)


Package is "minio-client"

Tue Jun 13 16:10:47 2023 rev:34 rq:1092826 version:20230606T134856Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-05-28 19:24:12.249448265 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.15902/minio-client.changes 
2023-06-13 16:10:50.519356869 +0200
@@ -1,0 +2,16 @@
+Tue Jun 13 06:12:51 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230606T134856Z:
+  * add ftp trace support (#4590)
+  * print in tabular form for callhome status (#4588)
+
+---
+Tue Jun 13 06:09:35 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230530T224138Z:
+  * Implement '--expiry' flag for 'mc admin user svcacct add &
+edit' (#4570)
+  * Make mc ping useful for startup checks (#4584)
+  * fix proxy not being used to test connectivity (#4583)
+
+---

Old:

  mc-20230526T233154Z.obscpio

New:

  mc-20230606T134856Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.EPsVy5/_old  2023-06-13 16:10:51.487362578 +0200
+++ /var/tmp/diff_new_pack.EPsVy5/_new  2023-06-13 16:10:51.491362603 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230526T233154Z
+Version:20230606T134856Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.EPsVy5/_old  2023-06-13 16:10:51.531362839 +0200
+++ /var/tmp/diff_new_pack.EPsVy5/_new  2023-06-13 16:10:51.535362862 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-05-26T23-31-54Z
+RELEASE.2023-06-06T13-48-56Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230526T233154Z.obscpio
+mc-20230606T134856Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.EPsVy5/_old  2023-06-13 16:10:51.555362980 +0200
+++ /var/tmp/diff_new_pack.EPsVy5/_new  2023-06-13 16:10:51.559363003 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  9cb069e7afaa45c64c45b7b59ba65c0441019efd
+  5e4ab1ec484fd398acbbda89cf17b381f8618184
 (No newline at EOF)
 

++ mc-20230526T233154Z.obscpio -> mc-20230606T134856Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230526T233154Z/cmd/admin-trace.go 
new/mc-20230606T134856Z/cmd/admin-trace.go
--- old/mc-20230526T233154Z/cmd/admin-trace.go  2023-05-27 01:31:54.0 
+0200
+++ new/mc-20230606T134856Z/cmd/admin-trace.go  2023-06-06 15:48:56.0 
+0200
@@ -105,6 +105,7 @@
"scanner":   func(o *madmin.ServiceTraceOpts) string { o.Scanner = 
true; return "Trace Scanner calls" },
"bootstrap": func(o *madmin.ServiceTraceOpts) string { o.Bootstrap = 
true; return "Trace Bootstrap operations" },
"ilm":   func(o *madmin.ServiceTraceOpts) string { o.ILM = true; 
return "Trace ILM operations" },
+   "ftp":   func(o *madmin.ServiceTraceOpts) string { o.FTP = true; 
return "Trace FTP operations" },
 
"healing": func(o *madmin.ServiceTraceOpts) string {
o.Healing = true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230526T233154Z/cmd/admin-user-svcacct-add.go 
new/mc-20230606T134856Z/cmd/admin-user-svcacct-add.go
--- old/mc-20230526T233154Z/cmd/admin-user-svcacct-add.go   2023-05-27 
01:31:54.0 +0200
+++ new/mc-20230606T134856Z/cmd/admin-user-svcacct-add.go   2023-06-06 
15:48:56.0 +0200
@@ -62,6 +62,10 @@
Hidden: true,
Usage:  "description for the service account (DEPRECATED: use 
--description instead)",
},
+   cli.StringFlag{
+   Name:  "expiry",
+   Usage: "time of expiration for the service account",
+   },
 }
 
 var adminUserSvcAcctAddCmd = cli.Command{
@@ -86,12 +90,18 @@
 EXAMPLES:
   1. Add a new service account for user 'foobar' to MinIO server with a name 
and description.
  {{.Prompt}} {{.HelpName}} myminio foobar --name uploaderKey --description 
"foobar uploader scripts"
-  2. Add a new service account to MinIO server with specified access key and 
secret key for user'foobar'.
+  2. Add a new service account

commit minio-client for openSUSE:Factory

2023-05-28 Thread Source-Sync
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 2023-05-28 19:23:49

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1533 (New)


Package is "minio-client"

Sun May 28 19:23:49 2023 rev:33 rq:1089434 version:20230526T233154Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-05-19 11:56:19.907541261 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1533/minio-client.changes  
2023-05-28 19:24:12.249448265 +0200
@@ -1,0 +2,14 @@
+Sun May 28 08:46:15 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230526T233154Z:
+  * Corrected message to align with other messages (#4577)
+  * List expiration dates for 'mc admin user svcacct list' command
+(#4576)
+  * Add updatedAt for ilm-rule-ls (#4579)
+  * fix: limit manual GC to bigger objects (#4581)
+  * Show groups with their policy details while listing users
+(#4578)
+  * Move `mc admin idp` to `mc idp` (#4574)
+  * Add sorting order to top drive command (#4575)
+
+---

Old:

  mc-20230518T165900Z.obscpio

New:

  mc-20230526T233154Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.aB0omp/_old  2023-05-28 19:24:14.281460355 +0200
+++ /var/tmp/diff_new_pack.aB0omp/_new  2023-05-28 19:24:14.289460403 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230518T165900Z
+Version:20230526T233154Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.aB0omp/_old  2023-05-28 19:24:14.317460570 +0200
+++ /var/tmp/diff_new_pack.aB0omp/_new  2023-05-28 19:24:14.321460594 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-05-18T16-59-00Z
+RELEASE.2023-05-26T23-31-54Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230518T165900Z.obscpio
+mc-20230526T233154Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.aB0omp/_old  2023-05-28 19:24:14.341460713 +0200
+++ /var/tmp/diff_new_pack.aB0omp/_new  2023-05-28 19:24:14.341460713 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  43745a9a597547f6bcd381b63b2e3c509d9c51ac
+  9cb069e7afaa45c64c45b7b59ba65c0441019efd
 (No newline at EOF)
 

++ mc-20230518T165900Z.obscpio -> mc-20230526T233154Z.obscpio ++
 4329 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.aB0omp/_old  2023-05-28 19:24:14.597462236 +0200
+++ /var/tmp/diff_new_pack.aB0omp/_new  2023-05-28 19:24:14.601462260 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230518T165900Z
-mtime: 1684429140
-commit: 43745a9a597547f6bcd381b63b2e3c509d9c51ac
+version: 20230526T233154Z
+mtime: 1685143914
+commit: 9cb069e7afaa45c64c45b7b59ba65c0441019efd
 

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


commit minio-client for openSUSE:Factory

2023-05-19 Thread Source-Sync
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 2023-05-19 11:55:49

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1533 (New)


Package is "minio-client"

Fri May 19 11:55:49 2023 rev:32 rq:1087873 version:20230518T165900Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-05-08 17:24:24.976742166 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1533/minio-client.changes  
2023-05-19 11:56:19.907541261 +0200
@@ -1,0 +2,14 @@
+Fri May 19 04:59:19 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230518T165900Z:
+  * Deprecate older idp commands (#4572)
+  * Add name and description for service accounts (#4569)
+  * bug: panic on nil pointer dereference for "mc admin heal" when
+disk i… (#4571)
+  * Load Subnet proxy and API key from the env if found (#4557)
+  * randomly generate AK and SK on mc client (#4565)
+  * info: Correctly show pool config with offline node(s) (#4567)
+  * Support setting subnet url via env var in dev mode (#4564)
+- BuildRequire go1.19
+
+---

Old:

  mc-20230504T181016Z.obscpio

New:

  mc-20230518T165900Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.yhSI7J/_old  2023-05-19 11:56:21.443550042 +0200
+++ /var/tmp/diff_new_pack.yhSI7J/_new  2023-05-19 11:56:21.447550065 +0200
@@ -22,14 +22,14 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230504T181016Z
+Version:20230518T165900Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only
 URL:https://github.com/minio/mc
 Source: %{archive_name}-%{version}.tar.gz
 Source1:vendor.tar.gz
-BuildRequires:  go >= 1.18
+BuildRequires:  go >= 1.19
 
 %description
 MinIO Client is a replacement for ls, cp, mkdir, diff and rsync commands for 
filesystems and object storage.

++ _service ++
--- /var/tmp/diff_new_pack.yhSI7J/_old  2023-05-19 11:56:21.479550248 +0200
+++ /var/tmp/diff_new_pack.yhSI7J/_new  2023-05-19 11:56:21.483550271 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-05-04T18-10-16Z
+RELEASE.2023-05-18T16-59-00Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230504T181016Z.obscpio
+mc-20230518T165900Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.yhSI7J/_old  2023-05-19 11:56:21.507550408 +0200
+++ /var/tmp/diff_new_pack.yhSI7J/_new  2023-05-19 11:56:21.511550431 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5a0d5116f4936f25b7a1a67c8119cdcad6112cce
+  43745a9a597547f6bcd381b63b2e3c509d9c51ac
 (No newline at EOF)
 

++ mc-20230504T181016Z.obscpio -> mc-20230518T165900Z.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230504T181016Z/cmd/admin-heal.go 
new/mc-20230518T165900Z/cmd/admin-heal.go
--- old/mc-20230504T181016Z/cmd/admin-heal.go   2023-05-04 20:10:16.0 
+0200
+++ new/mc-20230518T165900Z/cmd/admin-heal.go   2023-05-18 18:59:00.0 
+0200
@@ -380,7 +380,7 @@
stateText = 
console.Colorize("DiskFailed", d.State)
}
fmt.Fprintf(&msg, "  +  %s : %s\n", 
d.DrivePath, stateText)
-   if d.Healing {
+   if d.Healing && d.HealInfo != nil {
now := time.Now().UTC()
scanSpeed := float64(d.UsedSpace) / 
float64(now.Sub(d.HealInfo.Started))
remainingTime := 
time.Duration(float64(setsStatus[setIndex{d.PoolIndex, 
d.SetIndex}].maxUsedSpace-d.UsedSpace) / scanSpeed)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230504T181016Z/cmd/admin-idp-info.go 
new/mc-20230518T165900Z/cmd/admin-idp-info.go
--- old/mc-20230504T181016Z/cmd/admin-idp-info.go   2023-05-04 
20:10:16.0 +0200
+++ new/mc-20230518T165900Z/cmd/admin-idp-info.go   2023-05-18 
18:59:00.0 +0200
@@ -19,7 +19,6 @@
 
 import (
"github.com/minio/cli"
-   "github.com/minio/madmin-go/v2"
 )
 
 var adminIDPInfoCmd = cli.Command{
@@ -30,44 +29,13 @@
OnUsageError: onUsageError,
Hidden:   true,
Flags:globalFlags,
-   CustomHelpTemplate: `NAME:
-  {{.He

commit minio-client for openSUSE:Factory

2023-05-08 Thread Source-Sync
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 2023-05-08 17:24:22

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1533 (New)


Package is "minio-client"

Mon May  8 17:24:22 2023 rev:31 rq:1085371 version:20230504T181016Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-04-13 14:11:03.536403854 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1533/minio-client.changes  
2023-05-08 17:24:24.976742166 +0200
@@ -1,0 +2,18 @@
+Mon May 08 04:37:44 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230504T181016Z:
+  * mirror: Fix removal of FS target without a trailing slash
+(#4560)
+  * Remove tags for object versions (#4563)
+  * mirror: Honor --fake for target bucket removal (#4561)
+  * Ensure perf results file has an extension (#4551)
+  * info: Show nodes in initializing state (#4556)
+  * allow aliases to be `/` at the end and handle such cases
+(#4554)
+  * Consistent subcommand naming for list and remove with shortname
+(#4548)
+  * Fix dry run message crash (#4546)
+  * doc: Update mc admin doc (#4529)
+  * build: support loong64 (#4549)
+
+---

Old:

  mc-20230412T022151Z.obscpio

New:

  mc-20230504T181016Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.nGOpVP/_old  2023-05-08 17:24:27.188755243 +0200
+++ /var/tmp/diff_new_pack.nGOpVP/_new  2023-05-08 17:24:27.192755266 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230412T022151Z
+Version:20230504T181016Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.nGOpVP/_old  2023-05-08 17:24:27.228755479 +0200
+++ /var/tmp/diff_new_pack.nGOpVP/_new  2023-05-08 17:24:27.232755503 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-04-12T02-21-51Z
+RELEASE.2023-05-04T18-10-16Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230412T022151Z.obscpio
+mc-20230504T181016Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.nGOpVP/_old  2023-05-08 17:24:27.256755645 +0200
+++ /var/tmp/diff_new_pack.nGOpVP/_new  2023-05-08 17:24:27.256755645 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  1843717c57fb87612469b7610344a7d49d97a497
+  5a0d5116f4936f25b7a1a67c8119cdcad6112cce
 (No newline at EOF)
 

++ mc-20230412T022151Z.obscpio -> mc-20230504T181016Z.obscpio ++
 4568 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.nGOpVP/_old  2023-05-08 17:24:27.552757395 +0200
+++ /var/tmp/diff_new_pack.nGOpVP/_new  2023-05-08 17:24:27.556757418 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230412T022151Z
-mtime: 1681266111
-commit: 1843717c57fb87612469b7610344a7d49d97a497
+version: 20230504T181016Z
+mtime: 1683223816
+commit: 5a0d5116f4936f25b7a1a67c8119cdcad6112cce
 

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


commit minio-client for openSUSE:Factory

2023-04-13 Thread Source-Sync
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 2023-04-13 14:11:00

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.19717 (New)


Package is "minio-client"

Thu Apr 13 14:11:00 2023 rev:30 rq:1079082 version:20230412T022151Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-03-26 20:19:54.447180720 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.19717/minio-client.changes 
2023-04-13 14:11:03.536403854 +0200
@@ -1,0 +2,29 @@
+Thu Apr 13 07:55:45 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230412T022151Z:
+  * Remove diskInfo structure in heal report (#4545)
+  * heal: Fix summary ETA with multiple disks healing in one set
+(#4543)
+  * update minio-go/v7 -> v7.0.52 (#4544)
+  * stat: fix printing bucket usage info (#4542)
+  * fix: remove replace directive merged incorrectly
+  * perf: Add --noclear flag to avoid doing cleanup (#4473)
+  * Add trace for ilm call type (#4538)
+  * do not crash on zero values (#4536)
+  * Add metadata and tags to mc find (#4531)
+  * Add flag to `admin replicate update` to toggle synchronous
+replication (#4514)
+  * Improve errInvalidAlias (#4532)
+  * Dont send blank perf report to SUBNET (#4533)
+  * print RestoreInfo to check status of restored objects (#4534)
+
+---
+Thu Apr 13 07:43:54 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230406T165110Z:
+  * Add errors for deprecated commands (#4498)
+  * Add trace options for batch key rotation (#4507)
+  * Upgrade madmin-go to 2.0.18 (#4535)
+  * fix: redact secretKey from printed on screen (#4526)
+
+---

Old:

  mc-20230323T200304Z.obscpio

New:

  mc-20230412T022151Z.obscpio



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.sdSuwV/_old  2023-04-13 14:11:04.496409366 +0200
+++ /var/tmp/diff_new_pack.sdSuwV/_new  2023-04-13 14:11:04.504409413 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230323T200304Z
+Version:20230412T022151Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.sdSuwV/_old  2023-04-13 14:11:04.536409596 +0200
+++ /var/tmp/diff_new_pack.sdSuwV/_new  2023-04-13 14:11:04.540409619 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-03-23T20-03-04Z
+RELEASE.2023-04-12T02-21-51Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -19,7 +19,7 @@
 gz
   
   
-mc-20230323T200304Z.obscpio
+mc-20230412T022151Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.sdSuwV/_old  2023-04-13 14:11:04.556409711 +0200
+++ /var/tmp/diff_new_pack.sdSuwV/_new  2023-04-13 14:11:04.560409734 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  81453d7c8fcc7621f976cfd8e8a72e78f4d243c7
+  1843717c57fb87612469b7610344a7d49d97a497
 (No newline at EOF)
 

++ mc-20230323T200304Z.obscpio -> mc-20230412T022151Z.obscpio ++
 1780 lines of diff (skipped)

++ mc.obsinfo ++
--- /var/tmp/diff_new_pack.sdSuwV/_old  2023-04-13 14:11:04.812411181 +0200
+++ /var/tmp/diff_new_pack.sdSuwV/_new  2023-04-13 14:11:04.812411181 +0200
@@ -1,5 +1,5 @@
 name: mc
-version: 20230323T200304Z
-mtime: 1679601784
-commit: 81453d7c8fcc7621f976cfd8e8a72e78f4d243c7
+version: 20230412T022151Z
+mtime: 1681266111
+commit: 1843717c57fb87612469b7610344a7d49d97a497
 

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


commit minio-client for openSUSE:Factory

2023-03-26 Thread Source-Sync
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 2023-03-26 20:19:53

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.31432 (New)


Package is "minio-client"

Sun Mar 26 20:19:53 2023 rev:29 rq:1074412 version:20230323T200304Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-02-28 12:56:34.375114581 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.31432/minio-client.changes 
2023-03-26 20:19:54.447180720 +0200
@@ -1,0 +2,36 @@
+Sun Mar 26 08:25:07 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230323T200304Z:
+  * stat: Fix output when stat a prefix which has other prefixes
+(#4501)
+  * honor context cancellation on long-running lists (#4519)
+  * Revert query parameter `src` while diag upload to SUBNET
+(#4516)
+  * cp: Descriptive error about why unable to locate the source
+(#4517)
+  * add Expiration: info if present for sts/svc accounts (#4515)
+
+---
+Wed Mar 22 12:00:00 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230320T171753Z:
+  * Incl. rules with NewerNoncurrentVersions > 0 (#4505)
+  * Add `batch cancel` command (#4506)
+  * Fix decommission status crash (#4510)
+  * update functional tests for admin_users with 'policy commands'
+(#4508)
+  * heal: Summary output based on disks utilization (#4474)
+  * Restructure adding and removing policies from users and groups
+(#4428)
+  * rm: --dry-run with --versions to print versions modtime (#4495)
+  * fix: ldap commands don't accept config name (#4499)
+  * fix: windows stat command (#4503)
+  * Added query parameter `src` while diag upload to SUBNET (#4504)
+  * replicate ls: fix panic (#4497)
+  * replicate status - drop stale ARNs from stats (#4494)
+  * Allow `support proxy set|remove` without registration (#4488)
+  * Skip subnet config get while `--airgap` mode of license
+register (#4479)
+  * upgrade dependencies and move to go1.20.x (#4490)
+
+---

Old:

  mc-20230228T001259Z.tar.gz

New:

  mc-20230323T200304Z.obscpio
  mc.obsinfo



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.5ng5YV/_old  2023-03-26 20:19:55.195184629 +0200
+++ /var/tmp/diff_new_pack.5ng5YV/_new  2023-03-26 20:19:55.199184649 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230228T001259Z
+Version:20230323T200304Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.5ng5YV/_old  2023-03-26 20:19:55.235184837 +0200
+++ /var/tmp/diff_new_pack.5ng5YV/_new  2023-03-26 20:19:55.239184858 +0200
@@ -1,11 +1,11 @@
 
-  
+  
 https://github.com/minio/mc
 git
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-02-28T00-12-59Z
+RELEASE.2023-03-23T20-03-04Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -13,15 +13,13 @@
   
 mc
   
-  
-mc
-  
-  
+  
+  
 *.tar
 gz
   
   
-mc-20230228T001259Z.tar.gz
+mc-20230323T200304Z.obscpio
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.5ng5YV/_old  2023-03-26 20:19:55.259184963 +0200
+++ /var/tmp/diff_new_pack.5ng5YV/_new  2023-03-26 20:19:55.263184984 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5fbe8c26bab5592f0bc521db00665f8670a0fb31
+  81453d7c8fcc7621f976cfd8e8a72e78f4d243c7
 (No newline at EOF)
 

++ mc.obsinfo ++
name: mc
version: 20230323T200304Z
mtime: 1679601784
commit: 81453d7c8fcc7621f976cfd8e8a72e78f4d243c7

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


commit minio-client for openSUSE:Factory

2023-02-28 Thread Source-Sync
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 2023-02-28 12:56:33

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.31432 (New)


Package is "minio-client"

Tue Feb 28 12:56:33 2023 rev:28 rq:1068138 version:20230228T001259Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-02-23 16:47:47.135184143 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.31432/minio-client.changes 
2023-02-28 12:56:34.375114581 +0100
@@ -1,0 +2,9 @@
+Tue Feb 28 09:20:06 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230228T001259Z:
+  * tier-add:  --force flag to ignore in use check (#4481)
+  * subnet: Avoid general hard timeout for requests (#4478)
+  * inspect: Avoid memory usage in subnet upload (#4477)
+  * Print custom info in trace (#4476)
+
+---

Old:

  mc-20230216T192011Z.tar.gz

New:

  mc-20230228T001259Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.SGWtYW/_old  2023-02-28 12:56:35.611121295 +0100
+++ /var/tmp/diff_new_pack.SGWtYW/_new  2023-02-28 12:56:35.615121316 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230216T192011Z
+Version:20230228T001259Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.SGWtYW/_old  2023-02-28 12:56:35.643121468 +0100
+++ /var/tmp/diff_new_pack.SGWtYW/_new  2023-02-28 12:56:35.647121491 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-02-16T19-20-11Z
+RELEASE.2023-02-28T00-12-59Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20230216T192011Z.tar.gz
+mc-20230228T001259Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.SGWtYW/_old  2023-02-28 12:56:35.683121686 +0100
+++ /var/tmp/diff_new_pack.SGWtYW/_new  2023-02-28 12:56:35.723121904 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  54e2edd1be94831eab8dc62b4d0b048825ff5cc3
+  5fbe8c26bab5592f0bc521db00665f8670a0fb31
 (No newline at EOF)
 

++ mc-20230216T192011Z.tar.gz -> mc-20230228T001259Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20230216T192011Z/cmd/admin-trace.go 
new/mc-20230228T001259Z/cmd/admin-trace.go
--- old/mc-20230216T192011Z/cmd/admin-trace.go  2023-02-16 20:20:11.0 
+0100
+++ new/mc-20230228T001259Z/cmd/admin-trace.go  2023-02-28 01:12:59.0 
+0100
@@ -436,6 +436,7 @@
console.SetColor("ErrStatus", color.New(color.Bold, color.FgRed))
 
console.SetColor("Response", color.New(color.FgGreen))
+   console.SetColor("Extra", color.New(color.FgBlue))
console.SetColor("Body", color.New(color.FgYellow))
for _, c := range colors {
console.SetColor(fmt.Sprintf("Node%d", c), color.New(c))
@@ -471,19 +472,20 @@
 
 // Short trace record
 type shortTraceMsg struct {
-   Status string`json:"status"`
-   Host   string`json:"host"`
-   Time   time.Time `json:"time"`
-   Client string`json:"client"`
-   CallStats  *callStats`json:"callStats,omitempty"`
-   Duration   time.Duration `json:"duration"`
-   FuncName   string`json:"api"`
-   Path   string`json:"path"`
-   Query  string`json:"query"`
-   StatusCode int   `json:"statusCode"`
-   StatusMsg  string`json:"statusMsg"`
-   Type   string`json:"type"`
-   Error  string`json:"error"`
+   Status string`json:"status"`
+   Host   string`json:"host"`
+   Time   time.Time `json:"time"`
+   Client string`json:"client"`
+   CallStats  *callStats`json:"callStats,omitempty"`
+   Duration   time.Duration `json:"duration"`
+   FuncName   string`json:"api"`
+   Path   string`json:"path"`
+   Query  string`json:"query"`
+   StatusCode int   `json:"statusCode"`
+   StatusMsg  string`json:"statusMsg"`
+   Type   string`json:"type"`
+   Error  string`json:"error"`
+   Extra  map[string]string `json:"extra"`
trcTypemadmin.TraceType
 }
 
@@ -530,6 +532,7 @@
Respons

commit minio-client for openSUSE:Factory

2023-02-23 Thread Source-Sync
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 2023-02-23 16:28:36

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1706 (New)


Package is "minio-client"

Thu Feb 23 16:28:36 2023 rev:27 rq:1067151 version:20230216T192011Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-02-02 18:28:37.263552182 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1706/minio-client.changes  
2023-02-23 16:47:47.135184143 +0100
@@ -1,0 +2,20 @@
+Wed Feb 22 12:33:50 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230216T192011Z:
+  * support unix-pipes with bigger buffers for performance (#4472)
+  * add more debugging tools to 'mc' container (#4475)
+  * Update madmin-go library (#4471)
+  * fix: do not print empty logs on screen (#4470)
+  * Implement 'mc admin user sts info' command (#4377)
+  * Remove `mc admin bucket remote bandwidth` command and introduce (#4430)
+  * Added code to print the copy resume information (#4454)
+  * mc rm: disallow --purge with flags other than --force (#4467)
+  * Fix parsing --response-duration in trace command (#4466)
+  * remove replace flag for go-ieproxy to allow go install
+  * update to newer libraries (#4464)
+  * mc admin user list --json output doesn't include user groups (#4433) 
(#4463)
+  * locks: Use timestamp when elapsed is zero (#4462)
+  * Improve `replicate ls` output (#4460)
+  * Fix replicate add/update cmds to allow prefix in rule (#4459)
+
+---

Old:

  mc-20230128T202938Z.tar.gz

New:

  mc-20230216T192011Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.xqnWij/_old  2023-02-23 16:47:47.659187164 +0100
+++ /var/tmp/diff_new_pack.xqnWij/_new  2023-02-23 16:47:47.671187233 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230128T202938Z
+Version:20230216T192011Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.xqnWij/_old  2023-02-23 16:47:47.711187464 +0100
+++ /var/tmp/diff_new_pack.xqnWij/_new  2023-02-23 16:47:47.715187487 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-01-28T20-29-38Z
+RELEASE.2023-02-16T19-20-11Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20230128T202938Z.tar.gz
+mc-20230216T192011Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.xqnWij/_old  2023-02-23 16:47:47.743187648 +0100
+++ /var/tmp/diff_new_pack.xqnWij/_new  2023-02-23 16:47:47.747187671 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  2e95a70c98fb9c2629cd89817b8759bfa109a4d0
+  54e2edd1be94831eab8dc62b4d0b048825ff5cc3
 (No newline at EOF)
 

++ mc-20230128T202938Z.tar.gz -> mc-20230216T192011Z.tar.gz ++
 3422 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2023-02-02 Thread Source-Sync
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 2023-02-02 18:08:46

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.32243 (New)


Package is "minio-client"

Thu Feb  2 18:08:46 2023 rev:26 rq:1062590 version:20230128T202938Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-01-14 00:03:26.553789472 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.32243/minio-client.changes 
2023-02-02 18:28:37.263552182 +0100
@@ -1,0 +2,16 @@
+Thu Feb 02 07:22:08 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230128T202938Z:
+  * Use --api-key flag on register when provided (#4458)
+  * fix: hide duration flag its not useful for users (#4457)
+  * Add support for restoring SSE-C encrypted objects (#4456)
+  * use humanize.IBytes instead of humanize.Bytes (#4455)
+  * cleanup mc to use 'go' errs to be 'e' (#4450)
+  * Corrected the logic for calculating the expiration no of days (#4451)
+  * Corrected output for command `mc admin info` (#4448)
+  * Support --airgap in unregister command (#4441)
+  * Add support of giving a comment to service accounts (#4438)
+  * Improve message when profile upload fails (#4443)
+  * Simplify/speedup container image publishing script (#4442)
+
+---

Old:

  mc-20230111T031416Z.tar.gz

New:

  mc-20230128T202938Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.oPSefY/_old  2023-02-02 18:28:38.703561004 +0100
+++ /var/tmp/diff_new_pack.oPSefY/_new  2023-02-02 18:28:38.707561028 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20230111T031416Z
+Version:20230128T202938Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.oPSefY/_old  2023-02-02 18:28:38.751561298 +0100
+++ /var/tmp/diff_new_pack.oPSefY/_new  2023-02-02 18:28:38.755561323 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2023-01-11T03-14-16Z
+RELEASE.2023-01-28T20-29-38Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20230111T031416Z.tar.gz
+mc-20230128T202938Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.oPSefY/_old  2023-02-02 18:28:38.775561445 +0100
+++ /var/tmp/diff_new_pack.oPSefY/_new  2023-02-02 18:28:38.779561469 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  14c2e506fa78b53fb6db88bcf87d8f6d3fb6989e
+  2e95a70c98fb9c2629cd89817b8759bfa109a4d0
 (No newline at EOF)
 

++ mc-20230111T031416Z.tar.gz -> mc-20230128T202938Z.tar.gz ++
 1644 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2023-01-13 Thread Source-Sync
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 2023-01-14 00:02:46

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.32243 (New)


Package is "minio-client"

Sat Jan 14 00:02:46 2023 rev:25 rq:1058119 version:20230111T031416Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2023-01-04 20:18:21.661546307 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.32243/minio-client.changes 
2023-01-14 00:03:26.553789472 +0100
@@ -1,0 +2,13 @@
+Fri Jan 13 06:10:14 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20230111T031416Z:
+  * Add confirm flag to `mc admin update --yes` (#4439)
+  * Renew license online if license file not passed (#4429)
+  * Rename admin replicate subcommands (#4383)
+  * support concurrent uploads for 'mc pipe' (#4435)
+  * rb: avoid throwing error for force delete of prefix (#4436)
+  * Upload inspect data to SUBNET (#4420)
+  * trace: Add bootstrap tracing type (#4416)
+  * Allow mirror to continue syncing after an object fails to sync (#4427)
+
+---

Old:

  mc-20221224T152138Z.tar.gz

New:

  mc-20230111T031416Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.A7AMNC/_old  2023-01-14 00:03:28.053798210 +0100
+++ /var/tmp/diff_new_pack.A7AMNC/_new  2023-01-14 00:03:28.061798256 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221224T152138Z
+Version:20230111T031416Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.A7AMNC/_old  2023-01-14 00:03:28.101798489 +0100
+++ /var/tmp/diff_new_pack.A7AMNC/_new  2023-01-14 00:03:28.101798489 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-12-24T15-21-38Z
+RELEASE.2023-01-11T03-14-16Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221224T152138Z.tar.gz
+mc-20230111T031416Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.A7AMNC/_old  2023-01-14 00:03:28.125798629 +0100
+++ /var/tmp/diff_new_pack.A7AMNC/_new  2023-01-14 00:03:28.129798652 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  176072dee43de613569aaa56061eba9d6d550290
+  14c2e506fa78b53fb6db88bcf87d8f6d3fb6989e
 (No newline at EOF)
 

++ mc-20221224T152138Z.tar.gz -> mc-20230111T031416Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221224T152138Z/.gitignore 
new/mc-20230111T031416Z/.gitignore
--- old/mc-20221224T152138Z/.gitignore  2022-12-24 16:21:38.0 +0100
+++ new/mc-20230111T031416Z/.gitignore  2023-01-11 04:14:16.0 +0100
@@ -11,4 +11,5 @@
 mc
 .run*
 .idea/
-mc.RELEASE*
\ No newline at end of file
+mc.RELEASE*
+mc.gz
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221224T152138Z/cmd/admin-replicate-edit.go 
new/mc-20230111T031416Z/cmd/admin-replicate-edit.go
--- old/mc-20221224T152138Z/cmd/admin-replicate-edit.go 2022-12-24 
16:21:38.0 +0100
+++ new/mc-20230111T031416Z/cmd/admin-replicate-edit.go 1970-01-01 
01:00:00.0 +0100
@@ -1,128 +0,0 @@
-// Copyright (c) 2015-2022 MinIO, Inc.
-//
-// This file is part of MinIO Object Storage stack
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Affero General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU Affero General Public License for more details.
-//
-// You should have received a copy of the GNU Affero General Public License
-// along with this program.  If not, see .
-
-package cmd
-
-import (
-   "net/url"
-   "strings"
-
-   "github.com/fatih/color"
-   "github.com/minio/cli"
-   json "github.com/minio/colorjson"
-   "github.com/minio/madmin-go/v2"
-   "github.com/minio/mc/pkg/probe"
-   "github.com/minio/pkg/console"
-)
-
-var adminReplicateEditFlags = []cli.Flag{
-   cli.StringFlag{
-   Name:  "deployment-id",
-   Usage: "deploy

commit minio-client for openSUSE:Factory

2023-01-04 Thread Source-Sync
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 2023-01-04 20:18:20

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1563 (New)


Package is "minio-client"

Wed Jan  4 20:18:20 2023 rev:24 rq:1055940 version:20221224T152138Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-12-17 20:36:58.880748739 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1563/minio-client.changes  
2023-01-04 20:18:21.661546307 +0100
@@ -1,0 +2,20 @@
+Wed Jan 04 15:48:50 UTC 2023 - ka...@b1-systems.de
+
+- Update to version 20221224T152138Z:
+  * trace: Add input and output filters options (#4353)
+  * upgrade UBI image to 8.7 (#4425)
+  * avoid converting API types to local forms in 'mc' (#4424)
+  * Change formatting of `mc stat` (#4397)
+  * Change `mc replicate add|update` to integrate create remote targets (#4403)
+  * admin-trace: Fix support for tracing scanner calls (#4417)
+  * fix: Correctly print svc accounts list (#4422)
+  * fix: replicate remove show partial operations if any (#4418)
+  * reorganize ILM tier commands (#4385)
+  * Print 'Cancel upon user request' when the global context is cancelled 
(#4406)
+  * fix: improve the information on retention config (#4411)
+  * show endpoint in the replication status (#4412)
+  * heal: Reword new disks healing summary (#4413)
+  * fix: IDP enable/disable command (#4410)
+  * Upgrade golang.org/x/net (#4405)
+
+---

Old:

  mc-20221213T002328Z.tar.gz

New:

  mc-20221224T152138Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.PjHouO/_old  2023-01-04 20:18:22.585551800 +0100
+++ /var/tmp/diff_new_pack.PjHouO/_new  2023-01-04 20:18:22.593551848 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minio-client
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221213T002328Z
+Version:20221224T152138Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.PjHouO/_old  2023-01-04 20:18:22.629552062 +0100
+++ /var/tmp/diff_new_pack.PjHouO/_new  2023-01-04 20:18:22.633552086 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-12-13T00-23-28Z
+RELEASE.2022-12-24T15-21-38Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221213T002328Z.tar.gz
+mc-20221224T152138Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.PjHouO/_old  2023-01-04 20:18:22.653552205 +0100
+++ /var/tmp/diff_new_pack.PjHouO/_new  2023-01-04 20:18:22.657552228 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  4b4cab0441f000db100c5b5d9329221181bf61f2
+  176072dee43de613569aaa56061eba9d6d550290
 (No newline at EOF)
 

++ mc-20221213T002328Z.tar.gz -> mc-20221224T152138Z.tar.gz ++
 7372 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-12-17 Thread Source-Sync
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-12-17 20:36:41

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1835 (New)


Package is "minio-client"

Sat Dec 17 20:36:41 2022 rev:23 rq:1043458 version:20221213T002328Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-12-05 18:02:07.236881998 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1835/minio-client.changes  
2022-12-17 20:36:58.880748739 +0100
@@ -1,0 +2,20 @@
+Fri Dec 16 13:11:17 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221213T002328Z:
+  * Add LDAP policy attach/detach commands (#4390)
+  * mirror: continue operations even if source object goes missing (#4402)
+  * Add full list of call types. (#4401)
+  * trace: Add two validations for passed arguments (#4399)
+  * admin update: Add a prompt for confirmation (#4400)
+  * stat: avoid unix epoch time when printing date (#4398)
+  * Stat: Do not append a slash when --rewind is specified (#4396)
+  * find: Add support of --versions flag (#4394)
+  * Report data usage in `mc stat` of bucket (#4392)
+  * Add staticheck to make lint (#4395)
+  * add HiddenAliases to avoid printing aliases when deprecated (#4393)
+  * Move `mc admin bucket quota` to `mc quota` (#4389)
+  * add support for upload/download limits (#4388)
+  * rename force-delete to purge hidden flag (#4387)
+  * Add staticcheck to CI (#4386)
+
+---

Old:

  mc-20221202T234847Z.tar.gz

New:

  mc-20221213T002328Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.gZ4rag/_old  2022-12-17 20:36:59.600752695 +0100
+++ /var/tmp/diff_new_pack.gZ4rag/_new  2022-12-17 20:36:59.604752717 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221202T234847Z
+Version:20221213T002328Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.gZ4rag/_old  2022-12-17 20:36:59.640752914 +0100
+++ /var/tmp/diff_new_pack.gZ4rag/_new  2022-12-17 20:36:59.648752958 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-12-02T23-48-47Z
+RELEASE.2022-12-13T00-23-28Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221202T234847Z.tar.gz
+mc-20221213T002328Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.gZ4rag/_old  2022-12-17 20:36:59.672753090 +0100
+++ /var/tmp/diff_new_pack.gZ4rag/_new  2022-12-17 20:36:59.676753112 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  a55d40caf78302f2a1ac9259f2b62650b5e526d2
+  4b4cab0441f000db100c5b5d9329221181bf61f2
 (No newline at EOF)
 

++ mc-20221202T234847Z.tar.gz -> mc-20221213T002328Z.tar.gz ++
 3577 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-12-05 Thread Source-Sync
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-12-05 18:01:54

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1835 (New)


Package is "minio-client"

Mon Dec  5 18:01:54 2022 rev:22 rq:1040220 version:20221202T234847Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-11-18 16:45:02.521200283 +0100
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1835/minio-client.changes  
2022-12-05 18:02:07.236881998 +0100
@@ -1,0 +2,14 @@
+Mon Dec 05 10:20:13 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221202T234847Z:
+  * fix: IDP remove commands (#4384)
+  * Bump up madmin-go to v2 (#4382)
+  * Use NewArnFromString when parsing user-provided ARN string (#4378)
+  * Move `support logs` to `admin logs` (#4381)
+  * Add commands to set, show and remove proxy (#4375)
+  * Restructure `mc support callhome` command (#4372)
+  * top-locks: Include lock duration in --json output (#4366)
+  * fix: stat --json output for single alias (#4376)
+  * Add site resync commands (#4269)
+
+---

Old:

  mc-20221117T212039Z.tar.gz

New:

  mc-20221202T234847Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.CbHC12/_old  2022-12-05 18:02:08.152886986 +0100
+++ /var/tmp/diff_new_pack.CbHC12/_new  2022-12-05 18:02:08.156887008 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221117T212039Z
+Version:20221202T234847Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.CbHC12/_old  2022-12-05 18:02:08.204887269 +0100
+++ /var/tmp/diff_new_pack.CbHC12/_new  2022-12-05 18:02:08.208887291 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-11-17T21-20-39Z
+RELEASE.2022-12-02T23-48-47Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221117T212039Z.tar.gz
+mc-20221202T234847Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.CbHC12/_old  2022-12-05 18:02:08.240887465 +0100
+++ /var/tmp/diff_new_pack.CbHC12/_new  2022-12-05 18:02:08.244887487 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  2770f13a73c5e98ae1a0665c76cf099f5f578a13
+  a55d40caf78302f2a1ac9259f2b62650b5e526d2
 (No newline at EOF)
 

++ mc-20221117T212039Z.tar.gz -> mc-20221202T234847Z.tar.gz ++
 3457 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-11-18 Thread Source-Sync
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-11-18 16:45:01

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1597 (New)


Package is "minio-client"

Fri Nov 18 16:45:01 2022 rev:21 rq:1036670 version:20221117T212039Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-10-29 20:19:01.578824303 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1597/minio-client.changes  
2022-11-18 16:45:02.521200283 +0100
@@ -1,0 +2,36 @@
+Fri Nov 18 13:37:54 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221117T212039Z:
+  * ilm-ls: report ExpiredObjectDeleteMarker correctly (#4373)
+  * fix `cp --zip` so it copies to given destination name (#4358)
+  * fix: mc stat for filesystem items (#4371)
+  * ls: Fix listing versions when the system clock is off (#4370)
+  * du: Do not count directories in FS mode (#4369)
+  * fix: examples for `mc admin idp` commands (#4368)
+  * update license headers to 2022 (#4360)
+  * fix: 'du' clean the input path to avoid extra counting (#4361)
+  * encrypt: remove sse-s3 example (#4357)
+  * Improve ilm-add flags and ilm-ls output (#4262)
+  * Add LDAP Policy Entities command (#4318)
+
+---
+Tue Nov 15 15:44:17 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221107T234739Z:
+  * Bump up madmin-go for IDP API client bugfix (#4351)
+  * Replicate-update instead of replicate-edit (#4346)
+  * replicate diff: change ui (#4347)
+  * Handling newerNoncurrentVersions Expiry and Transition in validation 
(#4348)
+  * More improvements in format of perf test results (#4350)
+  * Update admin IDP commands with new design (#4310)
+  * Update version of madmin-go to v1.7.3 (#4344)
+  * add help menu for cmd 'mc admin user add' (#4337)
+  * modify operation type in message (#4339)
+  * fix: stat command with a directory marker (#4341)
+  * generalize input for ctx.Command.Name (#4338)
+  * Fix typo in rebalance-stop output (#4336)
+  * fix up rebalance commands for 'mc' error conventions and usage (#4333)
+  * feat: admin-rebalance subcommands (#4186)
+  * Add support for inspect data v2 (#4185)
+
+---

Old:

  mc-20221029T100923Z.tar.gz

New:

  mc-20221117T212039Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.OOr04U/_old  2022-11-18 16:45:03.329204154 +0100
+++ /var/tmp/diff_new_pack.OOr04U/_new  2022-11-18 16:45:03.333204174 +0100
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221029T100923Z
+Version:20221117T212039Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.OOr04U/_old  2022-11-18 16:45:03.365204327 +0100
+++ /var/tmp/diff_new_pack.OOr04U/_new  2022-11-18 16:45:03.369204346 +0100
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-10-29T10-09-23Z
+RELEASE.2022-11-17T21-20-39Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221029T100923Z.tar.gz
+mc-20221117T212039Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.OOr04U/_old  2022-11-18 16:45:03.405204519 +0100
+++ /var/tmp/diff_new_pack.OOr04U/_new  2022-11-18 16:45:03.405204519 +0100
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  929062c86be50d7f6350ab2da929585720f4fe74
+  2770f13a73c5e98ae1a0665c76cf099f5f578a13
 (No newline at EOF)
 

++ mc-20221029T100923Z.tar.gz -> mc-20221117T212039Z.tar.gz ++
 9944 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-10-29 Thread Source-Sync
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-29 20:17:50

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2275 (New)


Package is "minio-client"

Sat Oct 29 20:17:50 2022 rev:20 rq:1032217 version:20221029T100923Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-10-25 11:39:45.428515762 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2275/minio-client.changes  
2022-10-29 20:19:01.578824303 +0200
@@ -1,0 +2,9 @@
+Sat Oct 29 15:39:08 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221029T100923Z:
+  * Add new healing summary (#4323)
+  * support inspect: bump up metadata version (#4331)
+  * Improve format of perf tests output (#4330)
+  * Updating usage for mc replicate edit (#4328)
+
+---

Old:

  mc-20221022T033929Z.tar.gz

New:

  mc-20221029T100923Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.hcx4xp/_old  2022-10-29 20:19:02.418828778 +0200
+++ /var/tmp/diff_new_pack.hcx4xp/_new  2022-10-29 20:19:02.426828821 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221022T033929Z
+Version:20221029T100923Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.hcx4xp/_old  2022-10-29 20:19:02.486829141 +0200
+++ /var/tmp/diff_new_pack.hcx4xp/_new  2022-10-29 20:19:02.490829162 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-10-22T03-39-29Z
+RELEASE.2022-10-29T10-09-23Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221022T033929Z.tar.gz
+mc-20221029T100923Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.hcx4xp/_old  2022-10-29 20:19:02.514829290 +0200
+++ /var/tmp/diff_new_pack.hcx4xp/_new  2022-10-29 20:19:02.522829332 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  88796ea618092bb27368c00e2b387857945357fb
+  929062c86be50d7f6350ab2da929585720f4fe74
 (No newline at EOF)
 

++ mc-20221022T033929Z.tar.gz -> mc-20221029T100923Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221022T033929Z/cmd/admin-heal.go 
new/mc-20221029T100923Z/cmd/admin-heal.go
--- old/mc-20221022T033929Z/cmd/admin-heal.go   2022-10-22 05:39:29.0 
+0200
+++ new/mc-20221029T100923Z/cmd/admin-heal.go   2022-10-29 12:09:23.0 
+0200
@@ -19,13 +19,14 @@
 
 import (
"fmt"
+   "math"
"net/url"
"path/filepath"
"sort"
"strings"
"time"
 
-   humanize "github.com/dustin/go-humanize"
+   "github.com/dustin/go-humanize"
"github.com/fatih/color"
"github.com/minio/cli"
json "github.com/minio/colorjson"
@@ -465,11 +466,17 @@
 func (s shortBackgroundHealStatusMessage) String() string {
healPrettyMsg := ""
var (
-   totalItems  uint64
-   totalBytes  uint64
-   itemsHealed uint64
-   bytesHealed uint64
-   startedAt   time.Time
+   totalItems uint64
+   totalBytes uint64
+   itemsHealeduint64
+   bytesHealeduint64
+   itemsFaileduint64
+   bytesFaileduint64
+   itemsHealedPerSec  float64
+   bytesHealedPerSec  float64
+   startedAt  time.Time
+   setsExceedsStd int
+   setsExceedsReduced int
 
// The addition of Elapsed time of each parallel healing 
operation
// this is needed to calculate the rate of healing
@@ -481,50 +488,70 @@
 
var problematicDisks int
 
-   dedup := make(map[setIndex]struct{})
-
for _, set := range s.HealInfo.Sets {
setsStatus := generateSetsStatus(set.Disks)
+   // Furthest along disk...
+   var furthestHealingDisk *madmin.Disk
+   missingInSet := 0
for _, disk := range set.Disks {
// Ignore disk with non 'ok' status
if disk.State != madmin.DriveStateOk {
if disk.State != madmin.DriveStateUnformatted {
+   missingInSet++
problematicD

commit minio-client for openSUSE:Factory

2022-10-25 Thread Source-Sync
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-25 11:39:44

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2275 (New)


Package is "minio-client"

Tue Oct 25 11:39:44 2022 rev:19 rq:1031041 version:20221022T033929Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-10-17 14:58:03.210133488 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2275/minio-client.changes  
2022-10-25 11:39:45.428515762 +0200
@@ -1,0 +2,23 @@
+Tue Oct 25 04:44:22 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221022T033929Z:
+  * improve retention CLI errors and comply with 'mc' style (#4321)
+  * Fixing typo in MC (#4320)
+
+---
+Fri Oct 21 10:57:25 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221020T232633Z:
+  * make sure to pass jobType to GenerateBatchJob() (#4319)
+  * replication diff: add header (#4288)
+  * Add command to unregister a cluster (#4314)
+  * Add LDAP support for IDP Config commands (#4296)
+  * Improve help text for `support profile|perf` (#4311)
+  * update new deps (#4303)
+  * change example bucket names to simple names (#4308)
+  * Add number of offline disks in heal info summary (#4305)
+  * avoid unnecessary tea program for 'license info' (#4306)
+  * Print license info table with solid lines (#4301)
+- BuildRequire go1.18
+
+---

Old:

  mc-20221012T181250Z.tar.gz

New:

  mc-20221022T033929Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.Vsp2f4/_old  2022-10-25 11:39:47.824521060 +0200
+++ /var/tmp/diff_new_pack.Vsp2f4/_new  2022-10-25 11:39:47.828521069 +0200
@@ -22,14 +22,14 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221012T181250Z
+Version:20221022T033929Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only
 URL:https://github.com/minio/mc
 Source: %{archive_name}-%{version}.tar.gz
 Source1:vendor.tar.gz
-BuildRequires:  go >= 1.17
+BuildRequires:  go >= 1.18
 
 %description
 MinIO Client is a replacement for ls, cp, mkdir, diff and rsync commands for 
filesystems and object storage.

++ _service ++
--- /var/tmp/diff_new_pack.Vsp2f4/_old  2022-10-25 11:39:47.880521184 +0200
+++ /var/tmp/diff_new_pack.Vsp2f4/_new  2022-10-25 11:39:47.884521193 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-10-12T18-12-50Z
+RELEASE.2022-10-22T03-39-29Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221012T181250Z.tar.gz
+mc-20221022T033929Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.Vsp2f4/_old  2022-10-25 11:39:47.912521255 +0200
+++ /var/tmp/diff_new_pack.Vsp2f4/_new  2022-10-25 11:39:47.916521264 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  3fe6778ee739504b169743cf43fa7b3010e05b99
+  88796ea618092bb27368c00e2b387857945357fb
 (No newline at EOF)
 

++ mc-20221012T181250Z.tar.gz -> mc-20221022T033929Z.tar.gz ++
 3139 lines of diff (skipped)

++ 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


commit minio-client for openSUSE:Factory

2022-10-17 Thread Source-Sync
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 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-10-09T21-10-59Z
+RELEASE.2022-10-12T18-12-50Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221009T211059Z.tar.gz
+mc-20221012T181250Z.tar.gz
   
 
 

++ _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 @@
 
 
 https://github.com/minio/mc
-  27322636ae33611cf193a0fe4b5de18f3b096549
+  3fe6778ee739504b169743cf43fa7b3010e05b99
 (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.0 +0200
+++ new/mc-20221012T181250Z/cmd/batch-describe.go   2022-10-12 
20:12:50.0 +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.0 +0200
+++ new/mc-20221012T181250Z/cmd/batch-generate.go   2022-10-12 
20:12:50.0 +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.0 
+0200
+++ new/mc-20221012T181250Z/cmd/batch-li

commit minio-client for openSUSE:Factory

2022-10-11 Thread Source-Sync
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-11 18:02:16

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2275 (New)


Package is "minio-client"

Tue Oct 11 18:02:16 2022 rev:17 rq:1009248 version:20221009T211059Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-10-04 20:38:10.808955048 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2275/minio-client.changes  
2022-10-11 18:04:54.130021989 +0200
@@ -1,0 +2,19 @@
+Mon Oct 10 06:16:28 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221009T211059Z:
+  * feat: Introduce 'mc batch' command (#4225)
+  * Support `--dev` flag in license info|update (#4281)
+  * Keep help output after quitting (#4289)
+  * Replace 'policy' with 'anonymous' in readme (#4287)
+  * Show airgapped registration link in different color (#4282)
+
+---
+Mon Oct 10 06:12:07 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221006T012006Z:
+  * upgrade pkg and madmin-go deps
+  * Upgrade minio/pkg dependency (#4280)
+  * fix: updateURL when customURL is not passed (#4279)
+  * upgrade minio/pkg v1.4.3
+
+---

Old:

  mc-20221001T075614Z.tar.gz

New:

  mc-20221009T211059Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.kRJZNP/_old  2022-10-11 18:04:54.710022927 +0200
+++ /var/tmp/diff_new_pack.kRJZNP/_new  2022-10-11 18:04:54.714022933 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20221001T075614Z
+Version:20221009T211059Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.kRJZNP/_old  2022-10-11 18:04:54.742022979 +0200
+++ /var/tmp/diff_new_pack.kRJZNP/_new  2022-10-11 18:04:54.746022985 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-10-01T07-56-14Z
+RELEASE.2022-10-09T21-10-59Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20221001T075614Z.tar.gz
+mc-20221009T211059Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.kRJZNP/_old  2022-10-11 18:04:54.762023011 +0200
+++ /var/tmp/diff_new_pack.kRJZNP/_new  2022-10-11 18:04:54.766023018 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  f73adff2383976d6b5644668bbd491b0551a1c96
+  27322636ae33611cf193a0fe4b5de18f3b096549
 (No newline at EOF)
 

++ mc-20221001T075614Z.tar.gz -> mc-20221009T211059Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221001T075614Z/README.md 
new/mc-20221009T211059Z/README.md
--- old/mc-20221001T075614Z/README.md   2022-10-01 09:56:14.0 +0200
+++ new/mc-20221009T211059Z/README.md   2022-10-09 23:10:59.0 +0200
@@ -24,11 +24,11 @@
 legalhold   set legal hold for object(s)
 difflist differences in object name, size, and date between two buckets
 rm  remove objects
-encryptmanage bucket encryption config
+encrypt manage bucket encryption config
 event   manage object notifications
 watch   listen for object notification events
 undoundo PUT/DELETE operations
-policy  manage anonymous access to buckets and objects
+anonymous   manage anonymous access to buckets and objects
 tag manage tags for bucket(s) and object(s)
 ilm manage bucket lifecycle
 version manage bucket versioning
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20221001T075614Z/README_zh_CN.md 
new/mc-20221009T211059Z/README_zh_CN.md
--- old/mc-20221001T075614Z/README_zh_CN.md 2022-10-01 09:56:14.0 
+0200
+++ new/mc-20221009T211059Z/README_zh_CN.md 2022-10-09 23:10:59.0 
+0200
@@ -5,23 +5,23 @@
 
 
 ```
-ls   ???
-mb   ??
-cat  ??
-pipe ?STDIN??STDOUT???
-share?URL???
-cp   
-mirror   
-find ???
-diff 
-rm   
-events   ?
-watch?
-policy   ?
-session  ??

commit minio-client for openSUSE:Factory

2022-10-04 Thread Source-Sync
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-04 20:38:07

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2275 (New)


Package is "minio-client"

Tue Oct  4 20:38:07 2022 rev:16 rq:1007878 version:20221001T075614Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-09-21 14:44:09.318031460 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2275/minio-client.changes  
2022-10-04 20:38:10.808955048 +0200
@@ -1,0 +2,20 @@
+Tue Oct 04 08:26:27 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20221001T075614Z:
+  * update minio-go/v7 master
+  * remove 'mc policy' command (#4276)
+  * Remove perf tests from support diagnostics (#4277)
+  * convert tabs to spaces in all commands (#4275)
+  * Save API key if present in the license (#4266)
+  * re-order the support perf UI (#4268)
+  * error out from support commands if not registered (#4271)
+  * Use a pager for help output (#4245)
+  * avoid expensive threads profile by default (#4270)
+  * Upload results of perf tests to SUBNET (#4254)
+  * update minio-go to address missing userMetadata (#4263)
+  * Fix mc admin scanner info --json (#4264)
+  * Update documentation links with new URLs (#4261)
+  * Print supported flags only if there is at least one flag defined (#4259)
+  * rename disks -> drives almost everywhere (#4257)
+
+---

Old:

  mc-20220916T091647Z.tar.gz

New:

  mc-20221001T075614Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.uSQcio/_old  2022-10-04 20:38:11.748956384 +0200
+++ /var/tmp/diff_new_pack.uSQcio/_new  2022-10-04 20:38:11.752956390 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220916T091647Z
+Version:20221001T075614Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.uSQcio/_old  2022-10-04 20:38:11.784956435 +0200
+++ /var/tmp/diff_new_pack.uSQcio/_new  2022-10-04 20:38:11.788956441 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-09-16T09-16-47Z
+RELEASE.2022-10-01T07-56-14Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220916T091647Z.tar.gz
+mc-20221001T075614Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.uSQcio/_old  2022-10-04 20:38:11.808956469 +0200
+++ /var/tmp/diff_new_pack.uSQcio/_new  2022-10-04 20:38:11.812956475 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  ad4441ef2b4b1d0a6b90b5dd0d71d0423952e417
+  f73adff2383976d6b5644668bbd491b0551a1c96
 (No newline at EOF)
 

++ mc-20220916T091647Z.tar.gz -> mc-20221001T075614Z.tar.gz ++
 4549 lines of diff (skipped)

++ 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


commit minio-client for openSUSE:Factory

2022-09-21 Thread Source-Sync
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-09-21 14:43:09

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2083 (New)


Package is "minio-client"

Wed Sep 21 14:43:09 2022 rev:15 rq:1005154 version:20220916T091647Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-09-08 14:23:48.062689286 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2083/minio-client.changes  
2022-09-21 14:44:09.318031460 +0200
@@ -1,0 +2,28 @@
+Wed Sep 21 08:29:18 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220916T091647Z:
+  * disks must be renamed to drives everywhere for display (#4255)
+  * Upload profile zip to SUBNET (#4226)
+  * Export perf test result related types (#4246)
+  * ilm-add: update flags related to tiering (#4250)
+  * fix: use deadlineconn properly (#4249)
+  * Remove duplicate key in .golangci.yml (#4247)
+  * Do Go vulncheck directly (#4248)
+  * allow support for airgapped 'mc update' URL (#4244)
+  * Add --request-header to trace cmd to filter http requests (#4238)
+  * add vulncheck action to CI (#4243)
+  * add hotfix build support (#4240)
+  * allow terminal control back for 'top api/disk' (#4239)
+  * Avoid cutting policy name in admin policy list command (#4241)
+  * allow terminal control back after bubbletea UI (#4237)
+  * fix: alignment issue in mc ping. (#4218)
+  * Add a pull request github template (#4234)
+  * Add objects sizes histogram to bucket info (#4236)
+  * Update minio-go to for recent pkg/lifecycle fixes (#4235)
+  * ls: Fix ls exit code related to some errors in FS (#4233)
+  * cleanup commands to use Go 'err' as 'e' (#4232)
+  * Add mc admin trace --call=healing (#4229)
+  * use go1.18 alpine image (#4228)
+  * fix: use DurationFlag to response-threshold (#4227)
+
+---

Old:

  mc-20220828T200811Z.tar.gz

New:

  mc-20220916T091647Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.73VRMw/_old  2022-09-21 14:44:09.986033205 +0200
+++ /var/tmp/diff_new_pack.73VRMw/_new  2022-09-21 14:44:09.994033225 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220828T200811Z
+Version:20220916T091647Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.73VRMw/_old  2022-09-21 14:44:10.03400 +0200
+++ /var/tmp/diff_new_pack.73VRMw/_new  2022-09-21 14:44:10.03400 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-08-28T20-08-11Z
+RELEASE.2022-09-16T09-16-47Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220828T200811Z.tar.gz
+mc-20220916T091647Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.73VRMw/_old  2022-09-21 14:44:10.066033414 +0200
+++ /var/tmp/diff_new_pack.73VRMw/_new  2022-09-21 14:44:10.070033424 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  a64491e101feeaf68735a20c204d06993ba531e5
+  ad4441ef2b4b1d0a6b90b5dd0d71d0423952e417
 (No newline at EOF)
 

++ mc-20220828T200811Z.tar.gz -> mc-20220916T091647Z.tar.gz ++
 3311 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-09-08 Thread Source-Sync
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-09-08 14:23:10

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.2083 (New)


Package is "minio-client"

Thu Sep  8 14:23:10 2022 rev:14 rq:1001766 version:20220828T200811Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-08-01 21:34:27.942356501 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.2083/minio-client.changes  
2022-09-08 14:23:48.062689286 +0200
@@ -1,0 +2,59 @@
+Wed Sep 07 13:03:34 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220828T200811Z:
+  * Fix `support callhome status` command (#4222)
+  * change progress unicode style, simplify progress bar init() (#4224)
+  * Fix mb with-versioning (#4223)
+  * Fix `support logs status` command (#4221)
+  * Fix config parsing with updated madmin helper (#4220)
+  * feat: support head with --zip (#4219)
+  * trim response to two-decimal places in ping command (#4214)
+
+---
+Wed Sep 07 13:01:03 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220823T054520Z:
+  * Enhancements in registration and diagnostics (#4200)
+  * remove 'mc mb' short flag to avoid confusion
+  * Add `od` command (#4180)
+  * feat: --with-versioning flag to create bucket as versioned (#4216)
+  * Introduce disk IO statistics UI (#4201)
+  * Update madmin dep to fix a crash (#4215)
+  * Move config parsing logic to madmin (#4212)
+  * Add --disable, --enable and --prefix to ilm commands (#4209)
+  * fix: ping must call AdminInfo only with '--distributed' (#4208)
+  *  Update github.com/minio/cli version (#4192)
+  * Update config output JSON format (#4207)
+  * Clarify error when user has no policy (#4206)
+
+---
+Wed Sep 07 12:59:33 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220811T003048Z:
+  * Make environment variables output highlighted (#4205)
+  * rename mc admin top to mc support top  (#4191)
+  * update minio-go/v7 v7.0.34 (#4203)
+  * Add trace support for decommissioning (#4195)
+  * upgrade CI/CD go1.19 (#4204)
+  *  Change the JSON output of mc support perf (#4198)
+  * Print a better error msg when net perf is unsupported (#4194)
+  * restart: Use health check instead of service info API (#4190)
+  * Fix example description for `mc support perf` (#4193)
+  * apply --status-code only for HTTP traces if present (#4189)
+  * update ping command with new terminal UI (#4163)
+  * rename Remove -> Removed in 'mc rm' (#4187)
+  * Update examples for admin-config-reset (#4160)
+
+---
+Wed Sep 07 12:57:18 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220805T080128Z:
+  * Change ui for admin cluster bucket import (#4184)
+  * rb: Better error message when the user passes an object name (#4183)
+  * rm: Fix successful message for operations on the filesystem (#4182)
+  * support in-place rewrite of objects in heal and convert the format (#4175)
+  * remove sysinfo from errorIf with globalDebug (#4178)
+  * add errors to admin top api command (#4176)
+  * Save api key passed as argument in config (#4157)
+
+---

Old:

  mc-20220729T191716Z.tar.gz

New:

  mc-20220828T200811Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.wuGbju/_old  2022-09-08 14:23:48.734690836 +0200
+++ /var/tmp/diff_new_pack.wuGbju/_new  2022-09-08 14:23:48.738690846 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220729T191716Z
+Version:20220828T200811Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.wuGbju/_old  2022-09-08 14:23:48.770690920 +0200
+++ /var/tmp/diff_new_pack.wuGbju/_new  2022-09-08 14:23:48.774690929 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-07-29T19-17-16Z
+RELEASE.2022-08-28T20-08-11Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220729T191716Z.tar.gz
+mc-20220828T200811Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.wuGbju/_old  2022-09-08 14:23:48.794690975 +0200
+++ /var/tmp/diff_new_pack.wuGbju/_new  2022-09-08 14:23:48.794690975 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  37a83f23f048e3e1265bac5e56d681f750d5ba21
+   

commit minio-client for openSUSE:Factory

2022-08-01 Thread Source-Sync
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-08-01 21:33:15

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1533 (New)


Package is "minio-client"

Mon Aug  1 21:33:15 2022 rev:13 rq:992016 version:20220729T191716Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-07-19 17:20:25.132451181 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1533/minio-client.changes  
2022-08-01 21:34:27.942356501 +0200
@@ -1,0 +2,20 @@
+Mon Aug 01 11:13:22 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220729T191716Z:
+  * change rm color on the terminal (#4171)
+  * rm: add fake message with --fake (#4170)
+  * Remove isURLPrefixExists() call (#4173)
+  * Use madmin-go version 1.4.9 (#4169)
+  * Validate license against deployment id (#4161)
+  * introduce net.Conn deadlines to avoid hung connections (#4164)
+  * New offline registration flow (#4156)
+  * Add admin bucket info command (#4109)
+  * Add `mc replicate diff` cmd to show unreplicated objects (#4127)
+  * support perf to execute all speed tests (#4158)
+  * remove sysinfo from --json mode without --debug (#4159)
+  * Add support for NewerNoncurrentVersions (#4153)
+  * info: Show pools summary of a erasure cluster (#4162)
+  * Add mc cat --tail and --offset (#4149)
+  * Add `license update` command (#4155)
+
+---

Old:

  mc-20220715T092055Z.tar.gz

New:

  mc-20220729T191716Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.77gooq/_old  2022-08-01 21:34:28.814359003 +0200
+++ /var/tmp/diff_new_pack.77gooq/_new  2022-08-01 21:34:28.818359014 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220715T092055Z
+Version:20220729T191716Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.77gooq/_old  2022-08-01 21:34:28.874359175 +0200
+++ /var/tmp/diff_new_pack.77gooq/_new  2022-08-01 21:34:28.878359186 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-07-15T09-20-55Z
+RELEASE.2022-07-29T19-17-16Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220715T092055Z.tar.gz
+mc-20220729T191716Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.77gooq/_old  2022-08-01 21:34:28.906359266 +0200
+++ /var/tmp/diff_new_pack.77gooq/_new  2022-08-01 21:34:28.910359278 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  48e9183957fce660dcc32a36bbee6f3ee4a9d0e9
+  37a83f23f048e3e1265bac5e56d681f750d5ba21
 (No newline at EOF)
 

++ mc-20220715T092055Z.tar.gz -> mc-20220729T191716Z.tar.gz ++
 2212 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-07-19 Thread Source-Sync
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-07-19 17:19:50

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1523 (New)


Package is "minio-client"

Tue Jul 19 17:19:50 2022 rev:12 rq:990095 version:20220715T092055Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-07-18 18:33:21.469708025 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1523/minio-client.changes  
2022-07-19 17:20:25.132451181 +0200
@@ -1,0 +2,8 @@
+Tue Jul 19 08:21:04 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220715T092055Z:
+  * Move mc admin top scanner -> mc admin scanner info (#4151)
+  * update madmin-go to v1.4.5 (#4154)
+  * Move `support register` to `license register` (#4150)
+
+---

Old:

  mc-20220711T161612Z.tar.gz

New:

  mc-20220715T092055Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.ZcCZgT/_old  2022-07-19 17:20:25.756452013 +0200
+++ /var/tmp/diff_new_pack.ZcCZgT/_new  2022-07-19 17:20:25.760452019 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220711T161612Z
+Version:20220715T092055Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.ZcCZgT/_old  2022-07-19 17:20:25.792452061 +0200
+++ /var/tmp/diff_new_pack.ZcCZgT/_new  2022-07-19 17:20:25.792452061 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-07-11T16-16-12Z
+RELEASE.2022-07-15T09-20-55Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220711T161612Z.tar.gz
+mc-20220715T092055Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.ZcCZgT/_old  2022-07-19 17:20:25.812452088 +0200
+++ /var/tmp/diff_new_pack.ZcCZgT/_new  2022-07-19 17:20:25.812452088 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  add7b7b8814c7e7aeeedcc829724cae31d34ee7a
+  48e9183957fce660dcc32a36bbee6f3ee4a9d0e9
 (No newline at EOF)
 

++ mc-20220711T161612Z.tar.gz -> mc-20220715T092055Z.tar.gz ++
 2215 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-07-18 Thread Source-Sync
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-07-18 18:33:14

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1523 (New)


Package is "minio-client"

Mon Jul 18 18:33:14 2022 rev:11 rq:989626 version:20220711T161612Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-07-07 12:58:31.535426790 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1523/minio-client.changes  
2022-07-18 18:33:21.469708025 +0200
@@ -1,0 +2,8 @@
+Sat Jul 16 19:29:23 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220711T161612Z:
+  * add mc ping command (#4074)
+  * update minio-go to v7.0.31
+  * fix: tier-add help (#4148)
+
+---

Old:

  mc-20220706T145436Z.tar.gz

New:

  mc-20220711T161612Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.BJGnid/_old  2022-07-18 18:33:22.177709032 +0200
+++ /var/tmp/diff_new_pack.BJGnid/_new  2022-07-18 18:33:22.181709038 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220706T145436Z
+Version:20220711T161612Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.BJGnid/_old  2022-07-18 18:33:22.209709078 +0200
+++ /var/tmp/diff_new_pack.BJGnid/_new  2022-07-18 18:33:22.213709084 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-07-06T14-54-36Z
+RELEASE.2022-07-11T16-16-12Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220706T145436Z.tar.gz
+mc-20220711T161612Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.BJGnid/_old  2022-07-18 18:33:22.233709112 +0200
+++ /var/tmp/diff_new_pack.BJGnid/_new  2022-07-18 18:33:22.237709118 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  81c4a5ad6ee47ff2fc264b9811d884984ae05f6e
+  add7b7b8814c7e7aeeedcc829724cae31d34ee7a
 (No newline at EOF)
 

++ mc-20220706T145436Z.tar.gz -> mc-20220711T161612Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220706T145436Z/cmd/admin-tier-add.go 
new/mc-20220711T161612Z/cmd/admin-tier-add.go
--- old/mc-20220706T145436Z/cmd/admin-tier-add.go   2022-07-06 
16:54:36.0 +0200
+++ new/mc-20220711T161612Z/cmd/admin-tier-add.go   2022-07-11 
18:16:12.0 +0200
@@ -110,7 +110,7 @@
   {{range .VisibleFlags}}{{.}}
   {{end}}
 EXAMPLES:
-  1. Configure a new remote tier which transitions objects to a bucket in AWS 
S3 with STANDARD storage class:
+  1. Configure a new remote tier which transitions objects to a bucket in a 
MinIO deployment:
  {{.Prompt}} {{.HelpName}} minio myminio WARM-MINIO-TIER --endpoint 
https://warm-minio.com \
 --access-key ACCESSKEY --secret-key SECRETKEY --bucket mybucket 
--prefix myprefix/
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220706T145436Z/cmd/auto-complete.go 
new/mc-20220711T161612Z/cmd/auto-complete.go
--- old/mc-20220706T145436Z/cmd/auto-complete.go2022-07-06 
16:54:36.0 +0200
+++ new/mc-20220711T161612Z/cmd/auto-complete.go2022-07-11 
18:16:12.0 +0200
@@ -432,6 +432,7 @@
 
"/update": nil,
"/ready":  nil,
+   "/ping":   nil,
 }
 
 // flagsToCompleteFlags transforms a cli.Flag to complete.Flags
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220706T145436Z/cmd/main.go 
new/mc-20220711T161612Z/cmd/main.go
--- old/mc-20220706T145436Z/cmd/main.go 2022-07-06 16:54:36.0 +0200
+++ new/mc-20220711T161612Z/cmd/main.go 2022-07-11 18:16:12.0 +0200
@@ -451,6 +451,7 @@
configCmd,
updateCmd,
readyCmd,
+   pingCmd,
 }
 
 func printMCVersion(c *cli.Context) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220706T145436Z/cmd/ping.go 
new/mc-20220711T161612Z/cmd/ping.go
--- old/mc-20220706T145436Z/cmd/ping.go 1970-01-01 01:00:00.0 +0100
+++ new/mc-20220711T161612Z/cmd/ping.go 2022-07-11 18:16:12.0 +0200
@@ -0,0 +1,342 @@
+// Copyright (c) 2015-2022 MinIO, Inc.
+//
+// This file is part of MinIO Object Storage stack
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as publ

commit minio-client for openSUSE:Factory

2022-07-07 Thread Source-Sync
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-07-07 12:57:38

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1523 (New)


Package is "minio-client"

Thu Jul  7 12:57:38 2022 rev:10 rq:987376 version:20220706T145436Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-06-28 15:21:58.065906156 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1523/minio-client.changes  
2022-07-07 12:58:31.535426790 +0200
@@ -1,0 +2,15 @@
+Thu Jul 07 06:40:09 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220706T145436Z:
+  * Add `--api-key` flag to `mc support register` (#4144)
+  * Add commands to manage external IDPs (#4131)
+  * Upgrade madmin (#4145)
+  * reset timer after the function body is finished  (#4143)
+  * Add admin top scanner & trace --call=scanner (#4130)
+  * Implement `mc ready` to check if the cluster is ready or not (#4101)
+  * Add `support status` command (#4140)
+  * update minio-go/v7 to v7.0.30 (#4136)
+  * refactor: replace strings.Replace with strings.ReplaceAll (#4135)
+  * update to RedHat UBI 8.6
+
+---

Old:

  mc-20220626T185148Z.tar.gz

New:

  mc-20220706T145436Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.33BIyU/_old  2022-07-07 12:58:32.047427546 +0200
+++ /var/tmp/diff_new_pack.33BIyU/_new  2022-07-07 12:58:32.051427552 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220626T185148Z
+Version:20220706T145436Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.33BIyU/_old  2022-07-07 12:58:32.079427593 +0200
+++ /var/tmp/diff_new_pack.33BIyU/_new  2022-07-07 12:58:32.083427600 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-06-26T18-51-48Z
+RELEASE.2022-07-06T14-54-36Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220626T185148Z.tar.gz
+mc-20220706T145436Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.33BIyU/_old  2022-07-07 12:58:32.095427617 +0200
+++ /var/tmp/diff_new_pack.33BIyU/_new  2022-07-07 12:58:32.099427623 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  40ee1a4ed60f3b2f618c4eef282ff8b29ace7045
+  81c4a5ad6ee47ff2fc264b9811d884984ae05f6e
 (No newline at EOF)
 

++ mc-20220626T185148Z.tar.gz -> mc-20220706T145436Z.tar.gz ++
 2141 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-06-28 Thread Source-Sync
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-06-28 15:21:46

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1548 (New)


Package is "minio-client"

Tue Jun 28 15:21:46 2022 rev:9 rq:985331 version:20220626T185148Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-06-23 10:25:07.983796233 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1548/minio-client.changes  
2022-06-28 15:21:58.065906156 +0200
@@ -1,0 +2,10 @@
+Mon Jun 27 13:22:50 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220626T185148Z:
+  * change admin console to support logs show (#4132)
+  * admin: add admin cluster iam import/export cmd (#4102)
+  * Save license at the time of registration (#4123)
+  * add further license banners in default 'help' output (#4129)
+  * Switch to last commit time based release (#4128)
+
+---

Old:

  mc-20220617T025250Z.tar.gz

New:

  mc-20220626T185148Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.7ZZsjN/_old  2022-06-28 15:21:58.789907237 +0200
+++ /var/tmp/diff_new_pack.7ZZsjN/_new  2022-06-28 15:21:58.797907249 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220617T025250Z
+Version:20220626T185148Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.7ZZsjN/_old  2022-06-28 15:21:58.825907290 +0200
+++ /var/tmp/diff_new_pack.7ZZsjN/_new  2022-06-28 15:21:58.829907297 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-06-17T02-52-50Z
+RELEASE.2022-06-26T18-51-48Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220617T025250Z.tar.gz
+mc-20220626T185148Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.7ZZsjN/_old  2022-06-28 15:21:58.849907326 +0200
+++ /var/tmp/diff_new_pack.7ZZsjN/_new  2022-06-28 15:21:58.853907333 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  0e44ad30db7ee58386117f9bed143418c79d2980
+  40ee1a4ed60f3b2f618c4eef282ff8b29ace7045
 (No newline at EOF)
 

++ mc-20220617T025250Z.tar.gz -> mc-20220626T185148Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220617T025250Z/buildscripts/gen-ldflags.go 
new/mc-20220626T185148Z/buildscripts/gen-ldflags.go
--- old/mc-20220617T025250Z/buildscripts/gen-ldflags.go 2022-06-16 
22:17:03.0 +0200
+++ new/mc-20220626T185148Z/buildscripts/gen-ldflags.go 2022-06-26 
20:51:48.0 +0200
@@ -28,10 +28,9 @@
"time"
 )
 
-func genLDFlags(now time.Time) string {
-   version := now.Format(time.RFC3339)
-   releaseTag := releaseTag(version)
-   copyrightYear := fmt.Sprintf("%d", now.Year())
+func genLDFlags(version string) string {
+   releaseTag, date := releaseTag(version)
+   copyrightYear := fmt.Sprintf("%d", date.Year())
 
var ldflagsStr string
ldflagsStr = "-s -w -X github.com/minio/mc/cmd.Version=" + version + " "
@@ -42,8 +41,8 @@
return ldflagsStr
 }
 
-// genReleaseTag prints release tag to the console for easy git tagging.
-func releaseTag(version string) string {
+// releaseTag prints release tag to the console for easy git tagging.
+func releaseTag(version string) (string, time.Time) {
relPrefix := "DEVELOPMENT"
if prefix := os.Getenv("MC_RELEASE"); prefix != "" {
relPrefix = prefix
@@ -52,7 +51,12 @@
relTag := strings.Replace(version, " ", "-", -1)
relTag = strings.Replace(relTag, ":", "-", -1)
relTag = strings.Replace(relTag, ",", "", -1)
-   return relPrefix + "." + relTag
+   t, err := time.Parse("2006-01-02T15-04-05Z", relTag)
+   if err != nil {
+   panic(err)
+   }
+
+   return relPrefix + "." + relTag, t
 }
 
 // commitID returns the abbreviated commit-id hash of the last commit.
@@ -72,6 +76,35 @@
return strings.TrimSpace(string(commit))
 }
 
+func commitTime() time.Time {
+   // git log --format=%cD -n1
+   var (
+   commitUnix []byte
+   errerror
+   )
+   cmdName := "git"
+   cmdArgs := []string{"log", "--format=%cI", "-n1"}
+   if commitUnix, err = exec.Command(cmdName, cmdArgs...).Output(); err != 
nil {
+   fmt.Fprintln(os.Stderr, "Error generating gi

commit minio-client for openSUSE:Factory

2022-06-23 Thread Source-Sync
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-06-23 10:24:22

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1548 (New)


Package is "minio-client"

Thu Jun 23 10:24:22 2022 rev:8 rq:984467 version:20220617T025250Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-05-16 18:11:24.349415989 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1548/minio-client.changes  
2022-06-23 10:25:07.983796233 +0200
@@ -1,0 +2,45 @@
+Wed Jun 22 08:50:13 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220617T025250Z:
+  * Update version printing to include more information (#4125)
+  * filter out hidden flags from error printing (#4122)
+  * Healing finish estimation time relies on disk usage space (#4124)
+  * fix: help output formatting for cluster bucket export/import
+  * add unfreeze command to 'unfreeze' S3 API calls (#4121)
+  * Add commands to enable/disable callhome and logs (#4107)
+  * improve UI for driveperf inspired from object perf test (#4118)
+  * add import/export bucket metadata command (#4087)
+  * extend Go's time.ParseDuration to support days, weeks and years (#4116)
+  * improve UI for netperf inspired from object perf test (#4117)
+
+---
+Wed Jun 22 08:44:44 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220611T211036Z:
+  * fix: 'mc admin top api' IOPs, RX/TX remove them (#4115)
+
+---
+Wed Jun 22 08:39:48 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220610T222912Z:
+  * Improve success message in `support register` cmd (#4108)
+  * ignore remove errors for WORM protected objects (#4111)
+  * Bump up linter version (#4114)
+  * update help for 'mc admin top api'
+  * feat: Add 'mc admin top api' for realtime view (#4112)
+  * heal: Fix single disk healing ETA reporting (#4113)
+  * fix: callhome get error when subnet hook not set (#4089)
+  * Fix replicate status detail summary (#4104)
+  * add hidden force-delete option (#4097)
+  * cleanup print message for 'support profile' (#4099)
+  * update go deps for yaml.v3 and minio-go
+  * regression: update golang.org/x/crypto (#4096)
+  * Hide `mc support callhome` command (#4091)
+  * alias: Enable self signed TLS prompt in darwin platforms (#4094)
+  * fix: SubKeyId may not be same AuthorityKeyId for self-signed CA (#4093)
+  * Deprecate --name flag from `support diag` (#4092)
+  * add JSON flag support for decom status (#4086)
+  * modify support profile command (#4061)
+  * trace: Show milliseconds in trace output (#4083)
+
+---

Old:

  mc-20220509T040826Z.tar.gz

New:

  mc-20220617T025250Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.e3y7tC/_old  2022-06-23 10:25:08.647796954 +0200
+++ /var/tmp/diff_new_pack.e3y7tC/_new  2022-06-23 10:25:08.655796963 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220509T040826Z
+Version:20220617T025250Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.e3y7tC/_old  2022-06-23 10:25:08.683796993 +0200
+++ /var/tmp/diff_new_pack.e3y7tC/_new  2022-06-23 10:25:08.687796998 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-05-09T04-08-26Z
+RELEASE.2022-06-17T02-52-50Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220509T040826Z.tar.gz
+mc-20220617T025250Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.e3y7tC/_old  2022-06-23 10:25:08.703797015 +0200
+++ /var/tmp/diff_new_pack.e3y7tC/_new  2022-06-23 10:25:08.707797020 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  b5a0640899f8f8653bcacd19791c92ca22066ba3
+  0e44ad30db7ee58386117f9bed143418c79d2980
 (No newline at EOF)
 

++ mc-20220509T040826Z.tar.gz -> mc-20220617T025250Z.tar.gz ++
 5295 lines of diff (skipped)

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


commit minio-client for openSUSE:Factory

2022-05-16 Thread Source-Sync
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-05-16 18:08:54

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1538 (New)


Package is "minio-client"

Mon May 16 18:08:54 2022 rev:7 rq:977517 version:20220509T040826Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-05-06 18:59:56.965396573 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1538/minio-client.changes  
2022-05-16 18:11:24.349415989 +0200
@@ -1,0 +2,12 @@
+Sat May 14 18:38:17 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220509T040826Z:
+  * Prefix version suspension (#4064)
+  * doc: Fix broken link (#4072)
+  * avoid cascading deletes for active-active setups (#4079)
+  * Fix example for `mc admin replicate edit` (#4080)
+  * Add admin prometheus metrics (#4049)
+  * Use latest version of madmin-go (1.3.13) (#4075)
+  * Add support for minio warm tier (#4009)
+
+---

Old:

  mc-20220504T060755Z.tar.gz

New:

  mc-20220509T040826Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.8XWhU6/_old  2022-05-16 18:11:25.121416602 +0200
+++ /var/tmp/diff_new_pack.8XWhU6/_new  2022-05-16 18:11:25.125416606 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220504T060755Z
+Version:20220509T040826Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.8XWhU6/_old  2022-05-16 18:11:25.161416634 +0200
+++ /var/tmp/diff_new_pack.8XWhU6/_new  2022-05-16 18:11:25.165416637 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-05-04T06-07-55Z
+RELEASE.2022-05-09T04-08-26Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220504T060755Z.tar.gz
+mc-20220509T040826Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.8XWhU6/_old  2022-05-16 18:11:25.189416656 +0200
+++ /var/tmp/diff_new_pack.8XWhU6/_new  2022-05-16 18:11:25.193416659 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5619a78ead66ba651bcbc36df61ef892e470b8ea
+  b5a0640899f8f8653bcacd19791c92ca22066ba3
 (No newline at EOF)
 

++ mc-20220504T060755Z.tar.gz -> mc-20220509T040826Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220504T060755Z/README.md 
new/mc-20220509T040826Z/README.md
--- old/mc-20220504T060755Z/README.md   2022-04-29 16:42:08.0 +0200
+++ new/mc-20220509T040826Z/README.md   2022-05-09 03:15:17.0 +0200
@@ -59,7 +59,7 @@
 then use the [`mc alias` command](#add-a-cloud-storage-service).
 
 ### GitLab CI
-When using the Docker container in GitLab CI, you must [set the entrypoint to 
an empty 
string](https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#overriding-the-entrypoint-of-an-image).
+When using the Docker container in GitLab CI, you must [set the entrypoint to 
an empty 
string](https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#override-the-entrypoint-of-an-image).
 
 ```
 deploy:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220504T060755Z/cmd/admin-prometheus-generate.go 
new/mc-20220509T040826Z/cmd/admin-prometheus-generate.go
--- old/mc-20220504T060755Z/cmd/admin-prometheus-generate.go2022-04-29 
16:42:08.0 +0200
+++ new/mc-20220509T040826Z/cmd/admin-prometheus-generate.go2022-05-09 
03:15:17.0 +0200
@@ -27,7 +27,6 @@
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/console"
 
-   jwtgo "github.com/golang-jwt/jwt/v4"
json "github.com/minio/colorjson"
yaml "gopkg.in/yaml.v2"
 )
@@ -165,17 +164,10 @@
}
 
if !ctx.Bool("public") {
-   jwt := jwtgo.NewWithClaims(jwtgo.SigningMethodHS512, 
jwtgo.StandardClaims{
-   ExpiresAt: 
UTCNow().Add(defaultPrometheusJWTExpiry).Unix(),
-   Subject:   hostConfig.AccessKey,
-   Issuer:"prometheus",
-   })
-
-   token, e := jwt.SignedString([]byte(hostConfig.SecretKey))
+   token, e := getPrometheusToken(hostConfig)
if e != nil {
return e
}
-
// Setting the values
defaultConfig.ScrapeConfigs[0].BearerToken = token
}
diff -urN '--e

commit minio-client for openSUSE:Factory

2022-05-06 Thread Source-Sync
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-05-06 18:59:40

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1538 (New)


Package is "minio-client"

Fri May  6 18:59:40 2022 rev:6 rq:975322 version:20220504T060755Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-04-27 21:42:20.629086448 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1538/minio-client.changes  
2022-05-06 18:59:56.965396573 +0200
@@ -1,0 +2,10 @@
+Fri May 06 06:19:04 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220504T060755Z:
+  * update golang.org/x/crypto (#4068)
+  * fix: support autocompletion for command aliases (#4070)
+  * Document setting multiple policies (#4065)
+  * Fix client-s3 Stat() for prefix with parallel lower prefixes (#4069)
+  * fix: README.md rename config to alias (#4062)
+
+---

Old:

  mc-20220426T180022Z.tar.gz

New:

  mc-20220504T060755Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.2KPqYu/_old  2022-05-06 18:59:57.857397547 +0200
+++ /var/tmp/diff_new_pack.2KPqYu/_new  2022-05-06 18:59:57.861397551 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220426T180022Z
+Version:20220504T060755Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.2KPqYu/_old  2022-05-06 18:59:57.885397577 +0200
+++ /var/tmp/diff_new_pack.2KPqYu/_new  2022-05-06 18:59:57.889397582 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-04-26T18-00-22Z
+RELEASE.2022-05-04T06-07-55Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220426T180022Z.tar.gz
+mc-20220504T060755Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.2KPqYu/_old  2022-05-06 18:59:57.905397599 +0200
+++ /var/tmp/diff_new_pack.2KPqYu/_new  2022-05-06 18:59:57.905397599 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  276e1db70d7bb495025b414f509b63f88c74c634
+  5619a78ead66ba651bcbc36df61ef892e470b8ea
 (No newline at EOF)
 

++ mc-20220426T180022Z.tar.gz -> mc-20220504T060755Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220426T180022Z/README.md 
new/mc-20220504T060755Z/README.md
--- old/mc-20220426T180022Z/README.md   2022-04-26 13:30:21.0 +0200
+++ new/mc-20220504T060755Z/README.md   2022-04-29 16:42:08.0 +0200
@@ -56,7 +56,7 @@
 docker run -it --entrypoint=/bin/sh minio/mc
 ```
 
-then use the [`mc config` command](#add-a-cloud-storage-service).
+then use the [`mc alias` command](#add-a-cloud-storage-service).
 
 ### GitLab CI
 When using the Docker container in GitLab CI, you must [set the entrypoint to 
an empty 
string](https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#overriding-the-entrypoint-of-an-image).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220426T180022Z/cmd/admin-policy-set.go 
new/mc-20220504T060755Z/cmd/admin-policy-set.go
--- old/mc-20220426T180022Z/cmd/admin-policy-set.go 2022-04-26 
13:30:21.0 +0200
+++ new/mc-20220504T060755Z/cmd/admin-policy-set.go 2022-04-29 
16:42:08.0 +0200
@@ -41,7 +41,7 @@
   {{.HelpName}} TARGET POLICYNAME [ user=username1 | group=groupname1 ]
 
 POLICYNAME:
-  Name of the policy on the MinIO server.
+  Name of the policy on the MinIO server. To set multiple policies, separate 
names with a comma (,).
 
 FLAGS:
   {{range .VisibleFlags}}{{.}}
@@ -52,6 +52,9 @@
 
   2. Set the "readonly" policy for group "auditors".
  {{.Prompt}} {{.HelpName}} myminio readonly group=auditors
+
+  3. Set the "readonly" and the "diagnostics" policies for user "alice"
+ {{.Prompt}} {{.HelpName}} myminio readonly,diagnostics user=alice
 `,
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220426T180022Z/cmd/auto-complete.go 
new/mc-20220504T060755Z/cmd/auto-complete.go
--- old/mc-20220426T180022Z/cmd/auto-complete.go2022-04-26 
13:30:21.0 +0200
+++ new/mc-20220504T060755Z/cmd/auto-complete.go2022-04-29 
16:42:08.0 +0200
@@ -444,6 +444,9 @@
continue
}
complCmd.Sub[subCmd.Name] = cmdToCompleteCmd(subCmd, 
parentPath+"/"+cmd.Name)
+ 

commit minio-client for openSUSE:Factory

2022-04-27 Thread Source-Sync
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-04-27 21:42:09

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1538 (New)


Package is "minio-client"

Wed Apr 27 21:42:09 2022 rev:5 rq:973228 version:20220426T180022Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-04-21 15:48:38.164314787 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1538/minio-client.changes  
2022-04-27 21:42:20.629086448 +0200
@@ -1,0 +2,9 @@
+Wed Apr 27 12:41:41 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220426T180022Z:
+  * Error message when update failing due to permissions (#4057)
+  * info: Add the count of total versions details (#4060)
+  * update minio/pkg to v1.1.22
+  * Remove cpuio as default in profiling (#4056)
+
+---

Old:

  mc-20220416T211121Z.tar.gz

New:

  mc-20220426T180022Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.T2KZ2o/_old  2022-04-27 21:42:21.517087532 +0200
+++ /var/tmp/diff_new_pack.T2KZ2o/_new  2022-04-27 21:42:21.521087536 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220416T211121Z
+Version:20220426T180022Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.T2KZ2o/_old  2022-04-27 21:42:21.557087580 +0200
+++ /var/tmp/diff_new_pack.T2KZ2o/_new  2022-04-27 21:42:21.561087585 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-04-16T21-11-21Z
+RELEASE.2022-04-26T18-00-22Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220416T211121Z.tar.gz
+mc-20220426T180022Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.T2KZ2o/_old  2022-04-27 21:42:21.585087615 +0200
+++ /var/tmp/diff_new_pack.T2KZ2o/_new  2022-04-27 21:42:21.589087619 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  0530f5a47110c7a9325212d6093a214be0b8fd60
+  276e1db70d7bb495025b414f509b63f88c74c634
 (No newline at EOF)
 

++ mc-20220416T211121Z.tar.gz -> mc-20220426T180022Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220416T211121Z/cmd/admin-info.go 
new/mc-20220426T180022Z/cmd/admin-info.go
--- old/mc-20220416T211121Z/cmd/admin-info.go   2022-04-16 17:10:14.0 
+0200
+++ new/mc-20220426T180022Z/cmd/admin-info.go   2022-04-26 13:30:21.0 
+0200
@@ -234,9 +234,13 @@
// total no of objects at the Cluster level
usedTotal := humanize.IBytes(u.Info.Usage.Size)
if u.Info.Buckets.Count > 0 {
-   msg += fmt.Sprintf("%s Used, %s, %s\n", usedTotal,
+   msg += fmt.Sprintf("%s Used, %s, %s", usedTotal,
english.Plural(int(u.Info.Buckets.Count), "Bucket", ""),
english.Plural(int(u.Info.Objects.Count), "Object", ""))
+   if u.Info.Versions.Count > 0 {
+   msg += ", " + 
english.Plural(int(u.Info.Versions.Count), "Version", "")
+   }
+   msg += "\n"
}
if backendType == madmin.Erasure {
// Summary on total no of online and total
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220416T211121Z/cmd/support-profile-start.go 
new/mc-20220426T180022Z/cmd/support-profile-start.go
--- old/mc-20220416T211121Z/cmd/support-profile-start.go2022-04-16 
17:10:14.0 +0200
+++ new/mc-20220426T180022Z/cmd/support-profile-start.go2022-04-26 
13:30:21.0 +0200
@@ -30,8 +30,8 @@
 var supportProfileStartFlags = []cli.Flag{
cli.StringFlag{
Name:  "type",
-   Usage: "start profiler type, possible values are 'cpu', 'cpuio' 
'mem', 'block', 'mutex', 'trace', 'threads' and 'goroutines'",
-   Value: "cpu,cpuio,mem,block,mutex,threads,goroutines",
+   Usage: "start profiler type, possible values are 'cpu', 
'cpuio', 'mem', 'block', 'mutex', 'trace', 'threads' and 'goroutines'",
+   Value: "cpu,mem,block,mutex,threads,goroutines",
},
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220416T211121Z/cmd/update-main.go 
new/mc-20220426T180022Z/cmd/update-main.go
--- old/mc-20220416T211121Z/cmd/update-main.go  2022-

commit minio-client for openSUSE:Factory

2022-04-21 Thread Source-Sync
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-04-21 15:42:23

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1538 (New)


Package is "minio-client"

Thu Apr 21 15:42:23 2022 rev:4 rq:971247 version:20220416T211121Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-04-17 23:51:52.914474931 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1538/minio-client.changes  
2022-04-21 15:48:38.164314787 +0200
@@ -1,0 +2,16 @@
+Wed Apr 20 05:50:37 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220416T211121Z:
+  * Update documentation for --older/newer-than flags (#4039)
+  * update minio/pkg deps
+  * Load proxy config when probing for server TLS certificate (#4052)
+  * mirror: Do not create remote bucket with --dry-run (#4054)
+  * mirror: Stop minio-go bucket listen when watch is cancelled (#4053)
+  * update minio-go/v7, minio/pkg deps
+  * Replace fake with dry-run (#4050)
+  * fix usage message wording (#4048)
+  * Add mutex, threads and cpuio as default in profiling (#4046)
+  * Error handling for remove alias request if alias not found  (#4017)
+  * update to latest madmin-go v1.3.11
+
+---

Old:

  mc-20220407T214327Z.tar.gz

New:

  mc-20220416T211121Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.8OZlja/_old  2022-04-21 15:48:38.992315671 +0200
+++ /var/tmp/diff_new_pack.8OZlja/_new  2022-04-21 15:48:38.996315675 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220407T214327Z
+Version:20220416T211121Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.8OZlja/_old  2022-04-21 15:48:39.032315714 +0200
+++ /var/tmp/diff_new_pack.8OZlja/_new  2022-04-21 15:48:39.032315714 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-04-07T21-43-27Z
+RELEASE.2022-04-16T21-11-21Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220407T214327Z.tar.gz
+mc-20220416T211121Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.8OZlja/_old  2022-04-21 15:48:39.052315735 +0200
+++ /var/tmp/diff_new_pack.8OZlja/_new  2022-04-21 15:48:39.060315744 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  3f0953f9f47326f9554c5067b39cd39ab82f30a3
+  0530f5a47110c7a9325212d6093a214be0b8fd60
 (No newline at EOF)
 

++ mc-20220407T214327Z.tar.gz -> mc-20220416T211121Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220407T214327Z/cmd/admin-prometheus-generate.go 
new/mc-20220416T211121Z/cmd/admin-prometheus-generate.go
--- old/mc-20220407T214327Z/cmd/admin-prometheus-generate.go2022-04-07 
20:52:55.0 +0200
+++ new/mc-20220416T211121Z/cmd/admin-prometheus-generate.go2022-04-16 
17:10:14.0 +0200
@@ -27,7 +27,7 @@
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/console"
 
-   jwtgo "github.com/golang-jwt/jwt"
+   jwtgo "github.com/golang-jwt/jwt/v4"
json "github.com/minio/colorjson"
yaml "gopkg.in/yaml.v2"
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220407T214327Z/cmd/admin-user-svcacct-info.go 
new/mc-20220416T211121Z/cmd/admin-user-svcacct-info.go
--- old/mc-20220407T214327Z/cmd/admin-user-svcacct-info.go  2022-04-07 
20:52:55.0 +0200
+++ new/mc-20220416T211121Z/cmd/admin-user-svcacct-info.go  2022-04-16 
17:10:14.0 +0200
@@ -32,7 +32,7 @@
 var adminUserSvcAcctInfoFlags = []cli.Flag{
cli.BoolFlag{
Name:  "policy",
-   Usage: "print policy is JSON format",
+   Usage: "print policy in JSON format",
},
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220407T214327Z/cmd/alias-remove.go 
new/mc-20220416T211121Z/cmd/alias-remove.go
--- old/mc-20220407T214327Z/cmd/alias-remove.go 2022-04-07 20:52:55.0 
+0200
+++ new/mc-20220416T211121Z/cmd/alias-remove.go 2022-04-16 17:10:14.0 
+0200
@@ -80,11 +80,23 @@
return nil
 }
 
+// aliasMustExist confirms that a given alias is present in Aliases array, 
returns error if not found
+
+func aliasMustExist(alias string) {
+   hostConfig := mustGetHostConfig(alias)
+   i

commit minio-client for openSUSE:Factory

2022-04-18 Thread Source-Sync
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-04-17 23:50:15

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1941 (New)


Package is "minio-client"

Sun Apr 17 23:50:15 2022 rev:3 rq:970423 version:20220407T214327Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-04-02 18:21:11.865832470 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1941/minio-client.changes  
2022-04-17 23:51:52.914474931 +0200
@@ -1,0 +2,11 @@
+Sat Apr 16 09:07:02 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220407T214327Z:
+  * Do not rely on contentCh to print removal messages (#4041)
+  * Get speedtest results as part of `support diag` (#4034)
+  * Simplify `mc ilm ls` (#4042)
+  * Compute bucket/object correctly for some endpoints (#4040)
+  * mirror: Do not exit upon errors when --watch is passed (#4032)
+  * rm: Fix sending an object/version to removal with --no-current flag (#4038)
+
+---

Old:

  mc-20220401T234448Z.tar.gz

New:

  mc-20220407T214327Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.qxzD5s/_old  2022-04-17 23:51:53.626475907 +0200
+++ /var/tmp/diff_new_pack.qxzD5s/_new  2022-04-17 23:51:53.630475913 +0200
@@ -22,7 +22,7 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220401T234448Z
+Version:20220407T214327Z
 Release:0
 Summary:Client for MinIO
 License:AGPL-3.0-only

++ _service ++
--- /var/tmp/diff_new_pack.qxzD5s/_old  2022-04-17 23:51:53.658475951 +0200
+++ /var/tmp/diff_new_pack.qxzD5s/_new  2022-04-17 23:51:53.662475957 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-04-01T23-44-48Z
+RELEASE.2022-04-07T21-43-27Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220401T234448Z.tar.gz
+mc-20220407T214327Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.qxzD5s/_old  2022-04-17 23:51:53.682475984 +0200
+++ /var/tmp/diff_new_pack.qxzD5s/_new  2022-04-17 23:51:53.682475984 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  5a3ad93ab94b8517528470269a4e0bb4f628f154
+  3f0953f9f47326f9554c5067b39cd39ab82f30a3
 (No newline at EOF)
 

++ mc-20220401T234448Z.tar.gz -> mc-20220407T214327Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220401T234448Z/cmd/client-fs.go 
new/mc-20220407T214327Z/cmd/client-fs.go
--- old/mc-20220401T234448Z/cmd/client-fs.go2022-04-02 01:39:16.0 
+0200
+++ new/mc-20220407T214327Z/cmd/client-fs.go2022-04-07 20:52:55.0 
+0200
@@ -514,7 +514,7 @@
}
e := deleteFile(f.PathURL.Path, name)
if e == nil {
-   _, objectName := 
url2BucketAndObject(&content.URL, false)
+   _, objectName := 
url2BucketAndObject(&content.URL)
res := RemoveResult{}
res.ObjectName = objectName
resultCh <- res
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220401T234448Z/cmd/client-s3.go 
new/mc-20220407T214327Z/cmd/client-s3.go
--- old/mc-20220401T234448Z/cmd/client-s3.go2022-04-02 01:39:16.0 
+0200
+++ new/mc-20220407T214327Z/cmd/client-s3.go2022-04-07 20:52:55.0 
+0200
@@ -1650,37 +1650,14 @@
return isAmazon(host) && !isAmazonChina(host) || isGoogle(host) || 
isAmazonAccelerated(host)
 }
 
-func url2BucketAndObject(u *ClientURL, virtualStyle bool) (bucketName, 
objectName string) {
-   path := u.Path
-   // Convert any virtual host styled requests.
-   //
-   // For the time being this check is introduced for S3,
-   // If you have custom virtual styled hosts please.
-   // List them below.
-   if virtualStyle {
-   var bucket string
-   hostIndex := strings.Index(u.Host, "s3")
-   if hostIndex != -1 && !matchS3InHost(u.Host) {
-   hostIndex = -1
-   }
-   if hostIndex == -1 {
-   hostIndex = strings.Index(u.Host, "s3-accelerate")
-   }
-   if hostIndex == -1 {
-   hostIndex = strings.Index(u.Host, "storage.googleapis")
-  

commit minio-client for openSUSE:Factory

2022-04-02 Thread Source-Sync
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-04-02 18:20:54

Comparing /work/SRC/openSUSE:Factory/minio-client (Old)
 and  /work/SRC/openSUSE:Factory/.minio-client.new.1900 (New)


Package is "minio-client"

Sat Apr  2 18:20:54 2022 rev:2 rq:966530 version:20220401T234448Z

Changes:

--- /work/SRC/openSUSE:Factory/minio-client/minio-client.changes
2022-03-31 17:19:13.132913256 +0200
+++ /work/SRC/openSUSE:Factory/.minio-client.new.1900/minio-client.changes  
2022-04-02 18:21:11.865832470 +0200
@@ -1,0 +2,7 @@
+Sat Apr 02 11:39:55 UTC 2022 - ka...@b1-systems.de
+
+- Update to version 20220401T234448Z:
+  * `mc rm --non-current should remove top level deletemarker (#4037)
+  * Make sure to print `mc rm` dry run message (#4033)
+
+---

Old:

  mc-20220331T045530Z.tar.gz

New:

  mc-20220401T234448Z.tar.gz



Other differences:
--
++ minio-client.spec ++
--- /var/tmp/diff_new_pack.GgM5L1/_old  2022-04-02 18:21:12.893820931 +0200
+++ /var/tmp/diff_new_pack.GgM5L1/_new  2022-04-02 18:21:12.897820885 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package mc
+# spec file for package minio-client
 #
 # Copyright (c) 2022 SUSE LLC
 #
@@ -22,10 +22,10 @@
 %define binary_name minio-client
 
 Name:   minio-client
-Version:20220331T045530Z
+Version:20220401T234448Z
 Release:0
 Summary:Client for MinIO
-License:AGPL-3.0
+License:AGPL-3.0-only
 URL:https://github.com/minio/mc
 Source: %{archive_name}-%{version}.tar.gz
 Source1:vendor.tar.gz

++ _service ++
--- /var/tmp/diff_new_pack.GgM5L1/_old  2022-04-02 18:21:12.933820481 +0200
+++ /var/tmp/diff_new_pack.GgM5L1/_new  2022-04-02 18:21:12.937820437 +0200
@@ -5,7 +5,7 @@
 .git
 enable
 @PARENT_TAG@
-RELEASE.2022-03-31T04-55-30Z
+RELEASE.2022-04-01T23-44-48Z
 RELEASE.*
 RELEASE\.(.*)-(.*)-(.*)-(.*)-(.*)
 \1\2\3\4\5
@@ -21,7 +21,7 @@
 gz
   
   
-mc-20220331T045530Z.tar.gz
+mc-20220401T234448Z.tar.gz
   
 
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.GgM5L1/_old  2022-04-02 18:21:12.957820212 +0200
+++ /var/tmp/diff_new_pack.GgM5L1/_new  2022-04-02 18:21:12.961820167 +0200
@@ -1,6 +1,6 @@
 
 
 https://github.com/minio/mc
-  8eae2e3bbfafe952ecb33904c0d9073871a32169
+  5a3ad93ab94b8517528470269a4e0bb4f628f154
 (No newline at EOF)
 

++ mc-20220331T045530Z.tar.gz -> mc-20220401T234448Z.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mc-20220331T045530Z/cmd/rm-main.go 
new/mc-20220401T234448Z/cmd/rm-main.go
--- old/mc-20220331T045530Z/cmd/rm-main.go  2022-03-31 01:21:42.0 
+0200
+++ new/mc-20220401T234448Z/cmd/rm-main.go  2022-04-02 01:39:16.0 
+0200
@@ -159,7 +159,8 @@
   13. Remove all object versions older than one year.
   {{.Prompt}} {{.HelpName}} s3/docs/ --recursive --versions --rewind 365d
 
-  14. Perform a fake removal of object(s) versions that are non-current and 
older than 10 days.
+  14. Perform a fake removal of object(s) versions that are non-current and 
older than 10 days. If top-level version is a delete 
+  marker, this will also be deleted when --non-current flag is specified.
   {{.Prompt}} {{.HelpName}} s3/docs/ --recursive --force --versions 
--non-current --older-than 10d --dry-run
 `,
 }
@@ -364,6 +365,17 @@
encKeyDB  map[string][]prefixSSEPair
 }
 
+func printDryRunMsg(content *ClientContent) {
+   if globalJSON {
+   return
+   }
+   if content.VersionID != "" {
+   fmt.Println("DRYRUN: Removing ", content.URL.Path, "version:", 
content.VersionID)
+   return
+   }
+   fmt.Println("DRYRUN: Removing ", content.URL.Path)
+}
+
 // listAndRemove uses listing before removal, it can list recursively or not, 
with versions or not.
 //   Use cases:
 //  * Remove objects recursively
@@ -387,7 +399,6 @@
listOpts.WithDeleteMarkers = true
listOpts.TimeRef = opts.timeRef
}
-
atLeastOneObjectFound := false
 
resultCh := clnt.Remove(ctx, opts.isIncomplete, isRemoveBucket, 
opts.isBypass, contentCh)
@@ -425,7 +436,7 @@
if lastPath != content.URL.Path {
lastPath = content.URL.Path
for _, content := range perObjectVersions {
-   if content.IsLatest {
+   if content.IsLates