Version 2.4.11

This commit is contained in:
Girish Ramakrishnan 2022-04-25 22:46:17 -07:00
parent 51bd508a5e
commit 76e75b2421
3 changed files with 9 additions and 4 deletions

View File

@ -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)

View File

@ -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": {

View File

@ -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'));
}