mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 16:29:13 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
abef481b63 | ||
|
2b0dcc7d38 | ||
|
0c32be8139 |
@@ -2362,3 +2362,12 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* remove unnecessary 'recreate' code by @harshavardhana in #19136
|
* remove unnecessary 'recreate' code by @harshavardhana in #19136
|
||||||
* feat: add userCredentials for nats by @jiuker in #19139
|
* feat: add userCredentials for nats by @jiuker in #19139
|
||||||
|
|
||||||
|
[3.13.3]
|
||||||
|
* Update minio to 2024-03-05T04-48-44Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-03-05T04-48-44Z)
|
||||||
|
* fix: healthcheck to fail even if one erasure set doesn't have quorum by @Praveenrajmani in #19180
|
||||||
|
* Add common middleware to S3 API handlers by @donatello in #19171
|
||||||
|
* fix: nLink is unreliable on all filesystems by @harshavardhana in #19187
|
||||||
|
* Fix ilm config at startup by @krisis in #19189
|
||||||
|
* fix: skip local disks properly in cluster health maintenance check by @harshavardhana in #19184
|
||||||
|
|
||||||
|
@@ -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.13.2",
|
"version": "3.13.3",
|
||||||
"upstreamVersion": "2024-03-03T17-50-39Z",
|
"upstreamVersion": "2024-03-05T04-48-44Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 2147483648,
|
"memoryLimit": 2147483648,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2024-03-03T17-50-39Z
|
ARG VERSION=RELEASE.2024-03-05T04-48-44Z
|
||||||
|
|
||||||
# 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
|
||||||
|
@@ -29,7 +29,7 @@ describe('Application life cycle test', function () {
|
|||||||
this.timeout(0);
|
this.timeout(0);
|
||||||
|
|
||||||
const LOCATION = 'test';
|
const LOCATION = 'test';
|
||||||
const TEST_TIMEOUT = 30000;
|
const TEST_TIMEOUT = parseInt(process.env.TIMEOUT, 10) || 30000;
|
||||||
const BUCKET = 'cloudrontestbucket';
|
const BUCKET = 'cloudrontestbucket';
|
||||||
const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' };
|
const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' };
|
||||||
|
|
||||||
@@ -107,6 +107,7 @@ describe('Application life cycle test', function () {
|
|||||||
const button = await browser.findElement(By.xpath('//button[@id="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 browser.sleep(10000); // needed!
|
||||||
await waitForElement(By.xpath('//*[@id="accessKey"] | //button[contains(., "Cloudron")]'));
|
await waitForElement(By.xpath('//*[@id="accessKey"] | //button[contains(., "Cloudron")]'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user