mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-14 17:09:08 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
758b98fc20 | ||
|
b92644ffdd | ||
|
3b9e31f363 | ||
|
17d5977c74 |
20
CHANGELOG
20
CHANGELOG
@@ -1941,3 +1941,23 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* You may setup additional alerts on this to look for slow drives that timeout often, and also drives that return I/O errors at various intervals.
|
* You may setup additional alerts on this to look for slow drives that timeout often, and also drives that return I/O errors at various intervals.
|
||||||
* ListObjects() continuation had a bug where in the continuation token would be ignored leading to expensive list operations when there are single prefixes with millions of objects.
|
* ListObjects() continuation had a bug where in the continuation token would be ignored leading to expensive list operations when there are single prefixes with millions of objects.
|
||||||
|
|
||||||
|
[3.7.4]
|
||||||
|
* Update minio to 2023-08-23T10-07-06Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-08-23T10-07-06Z)
|
||||||
|
* fix: validate incoming uploadID to be base64 encoded by @harshavardhana in #17865
|
||||||
|
* do not log client canceled events by @harshavardhana in #17838
|
||||||
|
* if object is a delete marker it must skip tags filter in ILM by @harshavardhana in #17861
|
||||||
|
* ilm: Fix cleaning non current null versions by @vadmeste in #17876
|
||||||
|
* update minio/kes-go dep to v0.2.0 by @aead in #17850
|
||||||
|
* fix: replace req context by locker context by @jiuker in #17880
|
||||||
|
|
||||||
|
[3.7.5]
|
||||||
|
* Update minio to 2023-08-29T23-07-35Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-08-29T23-07-35Z)
|
||||||
|
* mark replication target offline if network timeouts seen by @poornas in #17907
|
||||||
|
* Retain current and upto NewerNoncurrentVersions versions by @krisis in #17909
|
||||||
|
* add missing IAM node metrics to cluster and node endpoint by @harshavardhana in #17908
|
||||||
|
* remove mTime requirement from pre-condition checks by @harshavardhana in #17916
|
||||||
|
* remove strict persistence requirements for List() .metacache objects by @harshavardhana in #17917
|
||||||
|
* fix: replace context by timeout-context from parent-context when selfSpeedTest by @jiuker in #17906
|
||||||
|
|
||||||
|
@@ -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.7.3",
|
"version": "3.7.5",
|
||||||
"upstreamVersion": "2023-08-16T20-17-30Z",
|
"upstreamVersion": "2023-08-29T23-07-35Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 805306368,
|
"memoryLimit": 805306368,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2023-08-16T20-17-30Z
|
ARG VERSION=RELEASE.2023-08-29T23-07-35Z
|
||||||
|
|
||||||
# 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
|
||||||
|
Reference in New Issue
Block a user