mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 00:15:40 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2b7aff15d3 | ||
|
febd561bfb |
@@ -2371,3 +2371,11 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||
* Fix ilm config at startup by @krisis in #19189
|
||||
* fix: skip local disks properly in cluster health maintenance check by @harshavardhana in #19184
|
||||
|
||||
[3.13.4]
|
||||
* Update minio to 2024-03-07T00-43-48Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-03-07T00-43-48Z)
|
||||
* fix: cluster read health check to return proper values by @Praveenrajmani in #19203
|
||||
* fix: a regression in loading replication creds by @harshavardhana in #19204
|
||||
* fix: go mod update v1.33.0 https://pkg.go.dev/vuln/GO-2024-2611 by @harshavardhana in #19208
|
||||
* bucket import: avoid overwriting bucket creation date by @poornas in #19207
|
||||
* Set expected expiry date for ExpiredObjectAllVersions by @krisis in #19210
|
||||
|
@@ -5,8 +5,8 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "3.13.3",
|
||||
"upstreamVersion": "2024-03-05T04-48-44Z",
|
||||
"version": "3.13.4",
|
||||
"upstreamVersion": "2024-03-07T00-43-48Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"memoryLimit": 2147483648,
|
||||
"httpPort": 8000,
|
||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
|
||||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=RELEASE.2024-03-05T04-48-44Z
|
||||
ARG VERSION=RELEASE.2024-03-07T00-43-48Z
|
||||
|
||||
# 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
|
||||
|
@@ -82,10 +82,10 @@ describe('Application life cycle test', function () {
|
||||
async function loginOIDC(username, password) {
|
||||
browser.manage().deleteAllCookies();
|
||||
await browser.get(`https://${app.fqdn}/login`);
|
||||
await browser.sleep(4000);
|
||||
await browser.sleep(10000);
|
||||
|
||||
await browser.findElement(By.xpath('//button[contains(., "Cloudron")]')).click();
|
||||
await browser.sleep(4000);
|
||||
await browser.sleep(10000);
|
||||
|
||||
if (!athenticated_by_oidc) {
|
||||
await waitForElement(By.xpath('//input[@name="username"]'));
|
||||
|
Reference in New Issue
Block a user