mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 16:29:13 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1fe052d819 | ||
|
ba1a52dc5e | ||
|
5b7a96134f | ||
|
1366fc8932 |
17
CHANGELOG
17
CHANGELOG
@@ -1974,3 +1974,20 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* kafka: Do not require key when sending a message by @vadmeste in #17962
|
* kafka: Do not require key when sending a message by @vadmeste in #17962
|
||||||
* with xlv2 format we never had to fill in checksumInfo() by @harshavardhana in #17963
|
* with xlv2 format we never had to fill in checksumInfo() by @harshavardhana in #17963
|
||||||
* replication: remove check for empty version id by @poornas in #17964
|
* replication: remove check for empty version id by @poornas in #17964
|
||||||
|
|
||||||
|
[3.8.2]
|
||||||
|
* Update minio to 2023-09-07T02-05-02Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-09-07T02-05-02Z)
|
||||||
|
* metrics: fix panic in replication stats reporting by @poornas in #17979
|
||||||
|
* refactor bandwidth throttling for replication target by @harshavardhana in #17980
|
||||||
|
* use syscall.Rename() directly instead of os.Rename() by @harshavardhana in #17982
|
||||||
|
* replication resync: avoid blocking on results channel. by @poornas in #17981
|
||||||
|
* Embed file in ZIP with custom permissions by @shtripat in #17954
|
||||||
|
|
||||||
|
[3.8.3]
|
||||||
|
* Update minio to 2023-09-16T01-01-47Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-09-16T01-01-47Z)
|
||||||
|
* Address some significant memory issues in replication MRF when many objects are from existing object replication
|
||||||
|
* Improve Disk replacement healing from single-threaded to multi-threaded via relying on the nr_requests value on Linux
|
||||||
|
* Allow concurrent SFTP connections
|
||||||
|
|
||||||
|
@@ -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.8.1",
|
"version": "3.8.3",
|
||||||
"upstreamVersion": "2023-09-04T19-57-37Z",
|
"upstreamVersion": "2023-09-16T01-01-47Z",
|
||||||
"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-09-04T19-57-37Z
|
ARG VERSION=RELEASE.2023-09-16T01-01-47Z
|
||||||
|
|
||||||
# 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