mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-22 13:07:33 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2fbefac3a9 | ||
|
2bbf11f795 | ||
|
ca3aebef4a |
@@ -1834,3 +1834,11 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* only allow decryption of etag for only sse-s3 by @harshavardhana in #17335
|
* 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
|
* allow quota enforcement to rely on older values by @harshavardhana in #17351
|
||||||
|
|
||||||
|
[3.5.4]
|
||||||
|
* Update minio to 2023-06-16T02-41-06Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-06-16T02-41-06Z)
|
||||||
|
* return InvalidRequest when no parts are provided by @harshavardhana in #17395
|
||||||
|
* service accounts are allowed to have no expiration by @harshavardhana in #17397
|
||||||
|
* return 204 status code for DeleteBucketTagging by @harshavardhana in #17400
|
||||||
|
* listen: Only error out if not able to bind any interface by @vadmeste in #17353
|
||||||
|
* fix: protect ReplicationStats against concurrent map iteration and write crash by @klauspost in #17403
|
||||||
|
@@ -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.5.3",
|
"version": "3.5.4",
|
||||||
"upstreamVersion": "2023-06-09T07-32-12Z",
|
"upstreamVersion": "2023-06-16T02-41-06Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 805306368,
|
"memoryLimit": 805306368,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2023-06-09T07-32-12Z
|
ARG VERSION=RELEASE.2023-06-16T02-41-06Z
|
||||||
|
|
||||||
# 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
|
||||||
|
@@ -62,7 +62,7 @@ describe('Application life cycle test', function () {
|
|||||||
async function logout() {
|
async function logout() {
|
||||||
await browser.get(`https://${app.fqdn}/`);
|
await browser.get(`https://${app.fqdn}/`);
|
||||||
await waitForElement(By.xpath('//span[contains(text(), "Buckets")]'));
|
await waitForElement(By.xpath('//span[contains(text(), "Buckets")]'));
|
||||||
const button = await browser.findElement(By.xpath('//div/span[contains(text(), "Sign Out")]'));
|
const button = await browser.findElement(By.xpath('//button[@id="sign-out"]'));
|
||||||
await browser.executeScript('arguments[0].scrollIntoView(false)', button);
|
await browser.executeScript('arguments[0].scrollIntoView(false)', button);
|
||||||
await button.click();
|
await button.click();
|
||||||
await waitForElement(By.id('accessKey'));
|
await waitForElement(By.id('accessKey'));
|
||||||
|
Reference in New Issue
Block a user