1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-15 17:39:12 +00:00

Compare commits

...

5 Commits

Author SHA1 Message Date
Girish Ramakrishnan
293beffadc Version 3.5.0 2023-05-21 07:18:24 +02:00
Girish Ramakrishnan
29f3101513 Update minio to 2023-05-18T00-05-36Z 2023-05-21 07:10:27 +02:00
Girish Ramakrishnan
ef6edee2a1 Version 3.4.20-1 2023-05-05 10:05:25 +02:00
Girish Ramakrishnan
e00e95eb94 Version 3.4.20 2023-05-05 10:00:10 +02:00
Girish Ramakrishnan
f6a78ee7cb Update minio to 2023-05-04T21-44-30Z 2023-05-05 09:35:46 +02:00
5 changed files with 33 additions and 12 deletions

View File

@@ -1780,3 +1780,24 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* heal: Pick maximally occuring modTime in quorum by @krisis in #17071
* fix: DeleteBucket for peers() must recreate bucket upon errors by @harshavardhana in #17079
* fix: initialize reverse proxy forwarder with right public certs by @harshavardhana in #17080
[3.4.20]
* Update minio to RELEASE.2023-05-04T21-44-30Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-05-04T21-44-30Z)
* allow root user to be disabled via config settings by @harshavardhana in #17089
* fix: remove active healing on .minio.sys/ during startup by @harshavardhana in #17072
* helm: align chart properties with naming convention by @dnskr in #17065
* optimization use small blocks up to 64KB by @klauspost in #17107
* Support systemd notify protocol by @WGH- in #17062
* fix: store notification events immediately for persistent queues by @Praveenrajmani in #17112
[3.5.0]
* Update minio to 2023-05-18T00-05-36Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-05-18T00-05-36Z)
* Signed trailers for signature v4 by @klauspost in #16484
* add etc-path to post-job.yaml in helm chart by @mstein11 in #17148
* helm: declare missing properties in values.yaml by @dnskr in #17153
* Validate if replication config being added is self referential by @poornas in #17142
* helm-chart: Use minio service account for post-deploy job if available by @LinAnt in #17077
* put *msgp.Reader back to pool by @jiuker in #17156
* add Err to BucketExists when NoSuchBucket by @jiuker in #17155

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "3.4.19",
"upstreamVersion": "2023-04-28T18-11-17Z",
"version": "3.5.0",
"upstreamVersion": "2023-05-18T00-05-36Z",
"healthCheckPath": "/minio/login",
"memoryLimit": 805306368,
"httpPort": 8000,

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=RELEASE.2023-04-28T18-11-17Z
ARG VERSION=RELEASE.2023-05-04T21-44-30Z
# 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

16
test/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"chromedriver": "^112.0.0",
"chromedriver": "^112.0.1",
"delay": "^5.0.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
@@ -229,9 +229,9 @@
}
},
"node_modules/chromedriver": {
"version": "112.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.0.tgz",
"integrity": "sha512-fEw1tI05dmK1KK8MGh99LAppP7zCOPEXUxxbYX5wpIBCCmKasyrwZhk/qsdnxJYKd/h0TfiHvGEj7ReDQXW1AA==",
"version": "112.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.1.tgz",
"integrity": "sha512-ieQzvellbtPY4MUrFzzayC1bZa/HoBsGXejUQJhAPWcYALxtkjUZNUYWbojMjIzf8iIhVda9VvdXiRKqdlN7ow==",
"hasInstallScript": true,
"dependencies": {
"@testim/chrome-version": "^1.1.3",
@@ -246,7 +246,7 @@
"chromedriver": "bin/chromedriver"
},
"engines": {
"node": ">=14"
"node": ">=16"
}
},
"node_modules/cliui": {
@@ -1720,9 +1720,9 @@
}
},
"chromedriver": {
"version": "112.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.0.tgz",
"integrity": "sha512-fEw1tI05dmK1KK8MGh99LAppP7zCOPEXUxxbYX5wpIBCCmKasyrwZhk/qsdnxJYKd/h0TfiHvGEj7ReDQXW1AA==",
"version": "112.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-112.0.1.tgz",
"integrity": "sha512-ieQzvellbtPY4MUrFzzayC1bZa/HoBsGXejUQJhAPWcYALxtkjUZNUYWbojMjIzf8iIhVda9VvdXiRKqdlN7ow==",
"requires": {
"@testim/chrome-version": "^1.1.3",
"axios": "^1.2.1",

View File

@@ -9,7 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^112.0.0",
"chromedriver": "^112.0.1",
"delay": "^5.0.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",