mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-22 13:07:33 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2e71a424d6 | ||
|
d5ed478302 | ||
|
63240d9ef7 | ||
|
ea84113aa7 |
39
CHANGELOG
39
CHANGELOG
@@ -2506,3 +2506,42 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* iam reload policy mapping of STS users properly by @poornas in #19626
|
* iam reload policy mapping of STS users properly by @poornas in #19626
|
||||||
* a bunch of fixes for error handling by @harshavardhana in #19627
|
* a bunch of fixes for error handling by @harshavardhana in #19627
|
||||||
|
|
||||||
|
[3.13.13]
|
||||||
|
* Update minio to 2024-05-01T01-11-10Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-05-01T01-11-10Z)
|
||||||
|
* Always unfreeze when connection dies by @klauspost in #19634
|
||||||
|
* avoid data race for testing by @jiuker in #19635
|
||||||
|
* Suppress metrics with zero values by @shtripat in #19638
|
||||||
|
* Allow custom SFTP algorithm selection by @klauspost in #19636
|
||||||
|
* fix: a crash in RemoveReplication target by @harshavardhana in #19640
|
||||||
|
* ilm: Handle DeleteAllVersions action differently for DEL markers by @krisis in #19481
|
||||||
|
|
||||||
|
[3.13.14]
|
||||||
|
* Update minio to 2024-05-07T06-41-25Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-05-07T06-41-25Z)
|
||||||
|
* Fix --stfp "mac-algos=..." overwrites cipher algorithms by @klauspost in #19643
|
||||||
|
* enhance ListSVCs() API to return more info to avoid InfoSvc() by @harshavardhana in #19642
|
||||||
|
* Wait one minute after startup to restart decommissioning by @klauspost in #19645
|
||||||
|
* add logrotate support for MinIO logs by @harshavardhana in #19641
|
||||||
|
* Return listing when exceeding min disk errors by @klauspost in #19644
|
||||||
|
* fix: Filter out cust. AssumeRole Token for audit by @donatello in #19646
|
||||||
|
* support compression after rotation of logs by @harshavardhana in #19647
|
||||||
|
* Add cluster IAM metrics in metrics-v3 by @balamurugana in #19595
|
||||||
|
* Use better gzip for log rotate by @klauspost in #19651
|
||||||
|
* Change endpoint format for per-bucket metrics by @anjalshireesh in #19655
|
||||||
|
* replication: Avoid proxying if requested object is a deletemarker by @poornas in #19656
|
||||||
|
* With retention, skip actions expiring all versions by @krisis in #19657
|
||||||
|
* extend server config.yaml to support per pool set drive count by @harshavardhana in #19663
|
||||||
|
* Fix Walk missing entries with opts.Marker set by @klauspost in #19661
|
||||||
|
* avoid using 10MiB EC buffers in maxAPI calculations by @harshavardhana in #19665
|
||||||
|
* turn-off coloring if we have std{err,out} dumb terminals by @harshavardhana in #19667
|
||||||
|
* add support for specific error response for InvalidRange by @harshavardhana in #19668
|
||||||
|
* support 'mc support perf object' with root login disabled by @harshavardhana in #19672
|
||||||
|
* fix: Ignore AWSAccessKeyId check for SignV2 policy condition by @jiuker in #19673
|
||||||
|
* Make WalkDir return errors by @klauspost in #19677
|
||||||
|
* support ETag value to be '*' by @harshavardhana in #19682
|
||||||
|
* Update Console version to v1.4.0 by @bexsoft in #19684
|
||||||
|
* Set Console Redirect URL env variable by @cesnietor in #19683
|
||||||
|
* fix: collect quorum errors for deletePrefix() by @harshavardhana in #19685
|
||||||
|
* Support user certificate based authentication on SFTP by @olljanat in #19650
|
||||||
|
|
||||||
|
@@ -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.13.12",
|
"version": "3.13.14",
|
||||||
"upstreamVersion": "2024-04-28T17-53-50Z",
|
"upstreamVersion": "2024-05-07T06-41-25Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 2147483648,
|
"memoryLimit": 2147483648,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
@@ -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.2024-04-28T17-53-50Z
|
ARG VERSION=RELEASE.2024-05-07T06-41-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
|
||||||
|
Reference in New Issue
Block a user