mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-15 09:29:11 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
effb90c2ac | ||
|
e8972242ca | ||
|
e84ef0cddf |
10
CHANGELOG
10
CHANGELOG
@@ -1824,3 +1824,13 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||
* fix: proxy not set on subnet logger webhook sometimes by @anjalshireesh in #17320
|
||||
* fix: time() returned function not being called as expected in globalSync() by @drivebyer in #17319
|
||||
* fix: fail large content in DeleteMultipleObjects() early by @jiuker in #17321
|
||||
|
||||
[3.5.3]
|
||||
* Update minio to 2023-06-09T07-32-12Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-06-09T07-32-12Z)
|
||||
* fix: expMovingAvg is too small when startTime is zero by @jiuker in #17346
|
||||
* log: Add a log when saving pool.bin fails by @vadmeste in #17338
|
||||
* goroutines parser: Add --less flag to filter goroutines by @vadmeste in #17339
|
||||
* only allow decryption of etag for only sse-s3 by @harshavardhana in #17335
|
||||
* allow quota enforcement to rely on older values by @harshavardhana in #17351
|
||||
|
||||
|
@@ -5,8 +5,8 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.5.2",
|
||||
"upstreamVersion": "2023-06-02T23-17-26Z",
|
||||
"version": "3.5.3",
|
||||
"upstreamVersion": "2023-06-09T07-32-12Z",
|
||||
"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.2023-06-02T23-17-26Z
|
||||
ARG VERSION=RELEASE.2023-06-09T07-32-12Z
|
||||
|
||||
# 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
|
||||
|
14
test/package-lock.json
generated
14
test/package-lock.json
generated
@@ -12,7 +12,7 @@
|
||||
"chromedriver": "^114.0.1",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
"selenium-webdriver": "^4.9.2",
|
||||
"selenium-webdriver": "^4.10.0",
|
||||
"superagent": "^8.0.9"
|
||||
}
|
||||
},
|
||||
@@ -1190,9 +1190,9 @@
|
||||
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||
},
|
||||
"node_modules/selenium-webdriver": {
|
||||
"version": "4.9.2",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.9.2.tgz",
|
||||
"integrity": "sha512-0gDswAgVn6qbCYckZetQQvQK9tWW1r7LaumhiqY1/Wl/7JEWG0JANsTbZKnmGc3+cUU76zAi5/p0P8LUweXlig==",
|
||||
"version": "4.10.0",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.10.0.tgz",
|
||||
"integrity": "sha512-hSQPw6jgc+ej/UEcdQPG/iBwwMeCEgZr9HByY/J8ToyXztEqXzU9aLsIyrlj1BywBcStO4JQK/zMUWWrV8+riA==",
|
||||
"dependencies": {
|
||||
"jszip": "^3.10.1",
|
||||
"tmp": "^0.2.1",
|
||||
@@ -2400,9 +2400,9 @@
|
||||
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||
},
|
||||
"selenium-webdriver": {
|
||||
"version": "4.9.2",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.9.2.tgz",
|
||||
"integrity": "sha512-0gDswAgVn6qbCYckZetQQvQK9tWW1r7LaumhiqY1/Wl/7JEWG0JANsTbZKnmGc3+cUU76zAi5/p0P8LUweXlig==",
|
||||
"version": "4.10.0",
|
||||
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.10.0.tgz",
|
||||
"integrity": "sha512-hSQPw6jgc+ej/UEcdQPG/iBwwMeCEgZr9HByY/J8ToyXztEqXzU9aLsIyrlj1BywBcStO4JQK/zMUWWrV8+riA==",
|
||||
"requires": {
|
||||
"jszip": "^3.10.1",
|
||||
"tmp": "^0.2.1",
|
||||
|
@@ -12,7 +12,7 @@
|
||||
"chromedriver": "^114.0.1",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
"selenium-webdriver": "^4.9.2",
|
||||
"selenium-webdriver": "^4.10.0",
|
||||
"superagent": "^8.0.9"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user