build: converge the final 20260903 dependency graph

Adopt silo-pkg v3.13.2, the 20260903 mcli release, and the latest validated SILO Console commit. Move maintained source imports to the pgsty/silo-pkg module path, refresh the resulting dependency closure and credits, and keep only documented legacy minio/pkg transitive residue.

Signed-off-by: Feng Ruohang <rh@vonng.com>
This commit is contained in:
Feng Ruohang
2026-09-03 20:54:40 +08:00
parent 1eccc6908b
commit 9b11dc9469
192 changed files with 1629 additions and 969 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ if [ -n "${MCLI_BIN:-}" ]; then
exit 0
fi
release=${MCLI_RELEASE:-RELEASE.2026-09-01T00-00-00Z}
release=${MCLI_RELEASE:-RELEASE.2026-09-03T07-13-05Z}
version_hyphen=${release#RELEASE.}
package_version=$(printf '%s\n' "${version_hyphen}" | sed -E 's/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2})-([0-9]{2})-([0-9]{2})Z$/\1\2\3\4\5\6.0.0/')
if [ "${package_version}" = "${version_hyphen}" ]; then
@@ -74,7 +74,7 @@ expected=$(awk -v asset="${archive}" '
{
name=$2
sub(/^\*/, "", name)
if (name == asset && $1 ~ /^[0-9a-fA-F]{64}$/) print tolower($1)
if (name == asset && length($1) == 64 && $1 ~ /^[0-9a-fA-F]+$/) print tolower($1)
}
' "${tmp_dir}/${checksums}")
if ! printf '%s\n' "${expected}" | grep -Eq '^[0-9a-f]{64}$'; then
@@ -115,25 +115,6 @@
"github.com/minio/minio/internal/store",
"github.com/minio/mux",
"github.com/minio/pkg/v3",
"github.com/minio/pkg/v3/certs",
"github.com/minio/pkg/v3/console",
"github.com/minio/pkg/v3/ellipses",
"github.com/minio/pkg/v3/env",
"github.com/minio/pkg/v3/ldap",
"github.com/minio/pkg/v3/mimedb",
"github.com/minio/pkg/v3/net",
"github.com/minio/pkg/v3/policy",
"github.com/minio/pkg/v3/policy/condition",
"github.com/minio/pkg/v3/quick",
"github.com/minio/pkg/v3/randreader",
"github.com/minio/pkg/v3/sftp",
"github.com/minio/pkg/v3/sync/errgroup",
"github.com/minio/pkg/v3/sys",
"github.com/minio/pkg/v3/trie",
"github.com/minio/pkg/v3/wildcard",
"github.com/minio/pkg/v3/words",
"github.com/minio/pkg/v3/workers",
"github.com/minio/pkg/v3/xtime",
"github.com/minio/selfupdate",
"github.com/minio/simdjson-go",
"github.com/minio/sio",
+3 -4
View File
@@ -282,7 +282,6 @@ function main() {
purge "$WORK_DIR"
}
(__init__ "$@" && main "$@")
rv=$?
purge "$WORK_DIR"
exit "$rv"
trap 'purge "$WORK_DIR"' EXIT
__init__ "$@"
main "$@"