1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-24 05:57:36 +00:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Girish Ramakrishnan
c78df06cb7 Version 3.9.5 2023-10-25 14:10:25 +02:00
Girish Ramakrishnan
87859252ce Update minio to 2023-10-25T06-33-25Z 2023-10-25 14:02:20 +02:00
Girish Ramakrishnan
9ef74c45d5 Version 3.9.4 2023-10-24 11:00:48 +02:00
Girish Ramakrishnan
e551d6535d Update minio to 2023-10-24T04-42-36Z 2023-10-24 10:40:42 +02:00
3 changed files with 22 additions and 3 deletions

View File

@@ -2038,3 +2038,22 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* simplify channel send() in WalkDir() by @T-M-A in #18186 * simplify channel send() in WalkDir() by @T-M-A in #18186
* Fix current_send_in_progress metric always being zero by @mctoohey in #18160 * Fix current_send_in_progress metric always being zero by @mctoohey in #18160
* avoid rebalance state for getObjectTags if any by @harshavardhana in #18197 * avoid rebalance state for getObjectTags if any by @harshavardhana in #18197
[3.9.4]
* Update minio to 2023-10-24T04-42-36Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-10-24T04-42-36Z)
* choose different max_concurrent requests per drive based on HDD/NVMe by @harshavardhana in #18254
* Don't skip rules with ExpiredObjectDeleteMarker by @krisis in #18256
* Fix globalDeploymentID race by @klauspost in #18275
* Remove unused config migration by @klauspost in #18277
* Fix linter errors in Windows specific code by @klauspost in #18276
* cache DiskInfo() metrics call separately by @harshavardhana in #18270
[3.9.5]
* Update minio to 2023-10-25T06-33-25Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-10-25T06-33-25Z)
* Fix BackendInfo() race by @klauspost in #18305
* Improve multipart listing speed by @klauspost in #18307
* fix: flaky and stupid tests in root lockdown by @harshavardhana in #18308
* fix: listObjectParts to prefer local and single disks by @harshavardhana in #18309
* avoid racy replicationCount checks by @harshavardhana in #18311

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.3", "version": "3.9.5",
"upstreamVersion": "2023-10-16T04-13-43Z", "upstreamVersion": "2023-10-25T06-33-25Z",
"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-10-16T04-13-43Z ARG VERSION=RELEASE.2023-10-25T06-33-25Z
# 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