1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-22 13:07:33 +00:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Girish Ramakrishnan
3b4e8d04de Version 3.9.2 2023-10-08 18:41:27 +05:30
Girish Ramakrishnan
4d3cd5ed61 Update minio to 2023-10-07T15-07-38Z 2023-10-08 18:26:10 +05:30
Girish Ramakrishnan
9e5aa33e09 Version 3.9.1 2023-10-01 10:02:42 +05:30
Girish Ramakrishnan
4f3e70f3e0 Update minio to 2023-09-30T07-02-29Z 2023-10-01 09:03:48 +05:30
3 changed files with 17 additions and 3 deletions

View File

@@ -2013,3 +2013,17 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* fix: set scanning details locally to avoid cached values by @harshavardhana in #18092 * fix: set scanning details locally to avoid cached values by @harshavardhana in #18092
* fix: check post policy like AWS S3 by @jiuker in #18074 * fix: check post policy like AWS S3 by @jiuker in #18074
* site replication: allow setting bandwidth default for bucket by @poornas in #18062 * site replication: allow setting bandwidth default for bucket by @poornas in #18062
[3.9.1]
* Update minio to 2023-09-30T07-02-29Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-09-30T07-02-29Z)
* Fixes an issue with multipart objects with multiple versions, due to rename2() optimization being incorrectly used
* AbortMultipartUpload() is now idempotent, much like AWS S3.
[3.9.2]
* Update minio to 2023-10-07T15-07-38Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-10-07T15-07-38Z)
* Add tests for multipart upload overwrites on versioned buckets by @harshavardhana in #18142
* Add support for resource metrics by @anjalshireesh in #18057
* Add paramaters in Helm chart to load OIDC clientSecret from Secret Resource by @alikhtag in #17784
* Fix startup formatting by @zveinn in #18156

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "Distributed object storage", "tagline": "Distributed object storage",
"version": "3.9.0", "version": "3.9.2",
"upstreamVersion": "2023-09-27T15-22-50Z", "upstreamVersion": "2023-10-07T15-07-38Z",
"healthCheckPath": "/minio/login", "healthCheckPath": "/minio/login",
"memoryLimit": 805306368, "memoryLimit": 805306368,
"httpPort": 8000, "httpPort": 8000,

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
RUN mkdir -p /app/code RUN mkdir -p /app/code
WORKDIR /app/code WORKDIR /app/code
ARG VERSION=RELEASE.2023-09-27T15-22-50Z ARG VERSION=RELEASE.2023-10-07T15-07-38Z
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/ # 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