Bump version
This commit is contained in:
parent
aeb58c292f
commit
7fad1aea6d
20
CHANGELOG
20
CHANGELOG
|
@ -1570,3 +1570,23 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||
* Start PR on Enterprise when there is new MinIO Version by @cniackz in #16121
|
||||
* kms: add support for KES enclaves by @aead in #16139
|
||||
* fix: update the JSON keys for latest 'mc' release by @harshavardhana in #16171
|
||||
|
||||
[3.3.3]
|
||||
* Update minio to 2022-12-12T19-27-27Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-12-12T19-27-27Z)
|
||||
* remove unnecessary logs for truncated XML inputs by @harshavardhana in #16184
|
||||
* Encrypt checksums with KMS on CompleteMultipartUpload by @klauspost in #16177
|
||||
* feat: Encrypt s3zip file index by @klauspost in #16179
|
||||
* reuse sha256 in config GetSettings by @jiuker in #16188
|
||||
* Add version id to healresult by @klauspost in #16193
|
||||
* Replace filepathx with fork by @klauspost in #16192
|
||||
* fix: translate tier add errors properly by @harshavardhana in #16191
|
||||
* remove hard limit for number of buckets by @harshavardhana in #16194
|
||||
* fix: delete marker discrepancies via DeleteObject() API by @harshavardhana in #16195
|
||||
* Add IAM API to attach/detach policies for LDAP by @donatello in #16182
|
||||
* avoid double deletes() when no more versions by @harshavardhana in #16206
|
||||
* do not rename multipart failed transactions back to tmp by @harshavardhana in #16204
|
||||
* Use different subnet public key during dev/test by @anjalshireesh in #16216
|
||||
* fix: iso8601TimeFormat padding issue for certain nanoseconds by @harshavardhana in #16207
|
||||
* Add LDAP DNS SRV record lookup support by @donatello in #16201
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.3.2",
|
||||
"upstreamVersion": "2022-12-07T00-56-37Z",
|
||||
"version": "3.3.3",
|
||||
"upstreamVersion": "2022-12-12T19-27-27Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"memoryLimit": 805306368,
|
||||
"httpPort": 8000,
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03
|
|||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=RELEASE.2022-12-07T00-56-37Z
|
||||
ARG VERSION=RELEASE.2022-12-12T19-27-27Z
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue