From b95c49475887a4176732e0d510fea28b50ed5f9f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 11 Nov 2022 10:26:29 +0100 Subject: [PATCH] Version 3.0.0 --- CHANGELOG | 7 +++++++ CloudronManifest.json | 2 +- Dockerfile | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3f94b7a..e571ca8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1512,3 +1512,10 @@ Improve replication performance. See (#12080, #12054, #12009) for more details. * Subscribed customers get downstream support until they are subscribed as per the terms of the subscription. * Other miscellaneous fixes in Site Replication, Multipart Checksums and SUBNET registration. +[3.0.0] +* **IMPORTANT:** This release removes the fs backend completely and this upgrade will fail if you are using the fs backend. Please read and understand [this forum post](https://forum.cloudron.io/topic/7967/minio-package-3-x) to determine what backend you are using before upgrading. If your minio uses the fs backend and you upgrade without a backup, all data can be lost.** +* Update minio to 2022-10-29T06-21-33Z +* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-10-29T06-21-33Z) +* First release to support rebalancing two or more pooled setups to even out disk usage refer #15483 +* Removes remaining gateway implementations of NAS/S3 and legacy FS mode completely - refer #15929. + diff --git a/CloudronManifest.json b/CloudronManifest.json index bc59e59..ff77c7a 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "2.10.0", + "version": "3.0.0", "upstreamVersion": "2022-10-29T06-21-33Z", "healthCheckPath": "/minio/login", "memoryLimit": 805306368, diff --git a/Dockerfile b/Dockerfile index 4734ff1..956123d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,8 @@ WORKDIR /app/code ARG VERSION=RELEASE.2022-10-29T06-21-33Z # sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/ -RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio +# RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio +RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio # https://dl.min.io/client/mc/release/linux-amd64/ RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /app/code/mc && chmod +x /app/code/mc