mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-16 10:19:21 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
9a175b6685 | ||
|
a6e36be63d | ||
|
9a348b2de6 |
@@ -1639,3 +1639,12 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||
* fix: deleted object names for directory objects by @klauspost in #16448
|
||||
* grafana: Show one metric for the total data growth by @vadmeste in #16449
|
||||
* replication: Avoid logging PreConditionFailed error by @poornas in #16450
|
||||
|
||||
[3.4.6]
|
||||
* Update minio to 2023-01-31T02-24-19Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-01-31T02-24-19Z)
|
||||
* Rename peer S3 prefix to avoid collision in the future by @vadmeste in #16473
|
||||
* Better error when setting up replication with a service account alias by @vadmeste in #16472
|
||||
* add x-amz-id-2 to indicate the node that received the request by @harshavardhana in #16474
|
||||
* fix: anonymize the x-amz-id-2 value from hostname by @harshavardhana in #16478
|
||||
|
||||
|
@@ -5,8 +5,8 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.4.5",
|
||||
"upstreamVersion": "2023-01-25T00-19-54Z",
|
||||
"version": "3.4.6",
|
||||
"upstreamVersion": "2023-01-31T02-24-19Z",
|
||||
"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-01-25T00-19-54Z
|
||||
ARG VERSION=RELEASE.2023-01-31T02-24-19Z
|
||||
|
||||
# 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
@@ -14,7 +14,7 @@
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
"selenium-webdriver": "^4.8.0",
|
||||
"superagent": "^8.0.8"
|
||||
"superagent": "^8.0.9"
|
||||
}
|
||||
},
|
||||
"node_modules/@testim/chrome-version": {
|
||||
@@ -1274,9 +1274,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/superagent": {
|
||||
"version": "8.0.8",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.8.tgz",
|
||||
"integrity": "sha512-OpxPrqqWKOjmuomLq5pCm4LWCSFdgAQ11XVkMl7t4ie13WxWuLkdJ83ZgG2jOQeLXKwMR2p9k30hLrKGAzkPaA==",
|
||||
"version": "8.0.9",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.9.tgz",
|
||||
"integrity": "sha512-4C7Bh5pyHTvU33KpZgwrNKh/VQnvgtCSqPRfJAUdmrtSYePVzVg4E4OzsrbkhJj9O7SO6Bnv75K/F8XVZT8YHA==",
|
||||
"dependencies": {
|
||||
"component-emitter": "^1.3.0",
|
||||
"cookiejar": "^2.1.4",
|
||||
@@ -2471,9 +2471,9 @@
|
||||
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
|
||||
},
|
||||
"superagent": {
|
||||
"version": "8.0.8",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.8.tgz",
|
||||
"integrity": "sha512-OpxPrqqWKOjmuomLq5pCm4LWCSFdgAQ11XVkMl7t4ie13WxWuLkdJ83ZgG2jOQeLXKwMR2p9k30hLrKGAzkPaA==",
|
||||
"version": "8.0.9",
|
||||
"resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.9.tgz",
|
||||
"integrity": "sha512-4C7Bh5pyHTvU33KpZgwrNKh/VQnvgtCSqPRfJAUdmrtSYePVzVg4E4OzsrbkhJj9O7SO6Bnv75K/F8XVZT8YHA==",
|
||||
"requires": {
|
||||
"component-emitter": "^1.3.0",
|
||||
"cookiejar": "^2.1.4",
|
||||
|
@@ -14,6 +14,6 @@
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.2.0",
|
||||
"selenium-webdriver": "^4.8.0",
|
||||
"superagent": "^8.0.8"
|
||||
"superagent": "^8.0.9"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user