Bump version
This commit is contained in:
parent
951a874909
commit
669976c293
14
CHANGELOG
14
CHANGELOG
|
@ -2180,3 +2180,17 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||||
* Fix quota config replication for SR by @poornas in #18684
|
* Fix quota config replication for SR by @poornas in #18684
|
||||||
* Update Console version to v0.43.1 by @cesnietor in #18683
|
* Update Console version to v0.43.1 by @cesnietor in #18683
|
||||||
|
|
||||||
|
[3.11.4]
|
||||||
|
* Update minio to 2023-12-23T07-19-11Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-12-23T07-19-11Z)
|
||||||
|
* Export tier metrics by @krisis in https://github.com/minio/minio/pull/18678
|
||||||
|
* allow pre-allocating buffers to reduce frequent GCs during growth by @harshavardhana in https://github.com/minio/minio/pull/18686
|
||||||
|
* prom: Add online and healing drives metrics per erasure set by @vadmeste in https://github.com/minio/minio/pull/18700
|
||||||
|
* send proper IPv6 names avoid bracketing notation by @harshavardhana in https://github.com/minio/minio/pull/18699
|
||||||
|
* rename object_size -> block_size for cache subsystem by @harshavardhana in https://github.com/minio/minio/pull/18694
|
||||||
|
* tier: Allow edit of the new Azure and AWS auth params by @vadmeste in https://github.com/minio/minio/pull/18690
|
||||||
|
* fix: reject clients that do not send proper payload by @harshavardhana in https://github.com/minio/minio/pull/18701
|
||||||
|
* Graph cluster wide where applicable by @shtripat in https://github.com/minio/minio/pull/18705
|
||||||
|
* server-info: Avoid initializing audit/log http/kafka targets by @vadmeste in https://github.com/minio/minio/pull/18703
|
||||||
|
* Fix precendence bug in S3Select SQL IN clauses by @donatello in https://github.com/minio/minio/pull/18708
|
||||||
|
|
||||||
|
|
|
@ -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.11.3",
|
"version": "3.11.4",
|
||||||
"upstreamVersion": "2023-12-20T01-00-02Z ",
|
"upstreamVersion": "2023-12-23T07-19-11Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 805306368,
|
"memoryLimit": 805306368,
|
||||||
"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.2023-12-20T01-00-02Z
|
ARG VERSION=RELEASE.2023-12-23T07-19-11Z
|
||||||
|
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in New Issue