diff --git a/CHANGELOG b/CHANGELOG index 12729fc..b2d4c56 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1121,3 +1121,8 @@ Improve replication performance. See (#12080, #12054, #12009) for more details. * enable go1.18.x builds by @harshavardhana in #14746 * [S3Select] Switch to new parquet library and reduce locking by @donatello in #14731 * Update Console v0.15.13 by @dvaldivia in #14751 + +[2.4.11] +* Update minio to 2022-04-26T01-20-24Z +* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-04-26T01-20-24Z) + diff --git a/CloudronManifest.json b/CloudronManifest.json index 44cbed1..89e3c3a 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,8 +5,8 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "2.4.10", - "upstreamVersion": "2022-04-16T04-26-02Z", + "version": "2.4.11", + "upstreamVersion": "2022-04-26T01-20-24Z", "healthCheckPath": "/minio/login", "httpPort": 8000, "httpPorts": { diff --git a/test/test.js b/test/test.js index 4648829..e5b50d8 100644 --- a/test/test.js +++ b/test/test.js @@ -54,12 +54,12 @@ describe('Application life cycle test', function () { await browser.findElement(By.id('accessKey')).sendKeys(accessKey); await browser.findElement(By.id('secretKey')).sendKeys(secretKey); await browser.findElement(By.xpath('//button[contains(text(), "Login")]')).click(); - await waitForElement(By.xpath('//h4[contains(text(), "Buckets")]')); + await waitForElement(By.xpath('//span[contains(text(), "Buckets")]')); } async function logout() { await browser.get(`https://${app.fqdn}/`); - await waitForElement(By.xpath('//h4[contains(text(), "Buckets")]')); + await waitForElement(By.xpath('//span[contains(text(), "Buckets")]')); await browser.findElement(By.xpath('//div/span[contains(text(), "Logout")]')).click(); await waitForElement(By.id('accessKey')); }