From 44ed6f8aee0912ccd607412ac14eb13f88e57432 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 15 Sep 2021 13:10:14 +0200 Subject: [PATCH] Bump version for 2021-09-15T04-54-25Z --- CHANGELOG | 7 +++++++ CloudronManifest.json | 2 +- DESCRIPTION.md | 2 +- Dockerfile | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b86b38c..f3505f7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1004,3 +1004,10 @@ Improve replication performance. See (#12080, #12054, #12009) for more details. * Update minio to 2021-07-22T05-23-32Z * Use new minio dashboard 2021-06-13T17-48-22Z +[1.167.0] +* Update minio to 2021-09-15T04-54-25Z +* Update minio dashboard to 2021-09-02T09-21-27Z +* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2021-09-15T04-54-25Z) +* SSE-KMS support was not working with copyObject() refer #13206 +* Support UserInfo claims refer #12469 + diff --git a/CloudronManifest.json b/CloudronManifest.json index 7968b4f..cfe271f 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "1.166.0", + "version": "1.167.0", "healthCheckPath": "/minio/login", "httpPort": 8000, "tcpPorts": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 001f83c..7d7ad3c 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2021-07-22T05-23-32Z. +This app packages Minio 2021-09-15T04-54-25Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/Dockerfile b/Dockerfile index fa5f501..798e1a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3f RUN mkdir -p /app/code WORKDIR /app/code -ARG VERSION=RELEASE.2021-07-22T05-23-32Z -ARG MC_VERSION=RELEASE.2021-06-13T17-48-22Z +ARG VERSION=RELEASE.2021-09-15T04-54-25Z +ARG MC_VERSION=RELEASE.2021-09-02T09-21-27Z RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio && \ wget https://dl.min.io/client/mc/release/linux-amd64/mc.${MC_VERSION} -O /app/code/mc && chmod +x /app/code/mc