Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7480af6ebb | ||
|
|
7b29adda08 |
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1237,4 +1237,14 @@
|
||||
[1.93.0]
|
||||
* Update Synapse to 1.107.0
|
||||
* [Full changelog](https://github.com/element-hq/synapse/releases/tag/v1.107.0)
|
||||
*
|
||||
* Add preliminary support for MSC3823: Account Suspension. (#17051)
|
||||
* Declare support for Matrix v1.10. Contributed by @clokep. (#17082)
|
||||
* Add support for MSC4115: membership metadata on events. (#17104, #17137)
|
||||
* Fixed search feature of Element Android on homesevers using SQLite by returning search terms as search highlights. (#17000)
|
||||
* Fixes a bug introduced in v1.52.0 where the destination query parameter for the Destination Rooms Admin API failed to actually filter returned rooms. (#17077)
|
||||
* For MSC3266 room summaries, support queries at the recommended endpoint of /_matrix/client/unstable/im.nheko.summary/summary/{roomIdOrAlias}. The existing endpoint of /_matrix/client/unstable/im.nheko.summary/rooms/{roomIdOrAlias}/summary is deprecated. (#17078)
|
||||
* Apply user email & picture during OIDC registration if present & selected. (#17120)
|
||||
* Improve error message for cross signing reset with MSC3861 enabled. (#17121)
|
||||
* Fix a bug which meant that to-device messages received over federation could be dropped when the server was under load or networking problems caused problems between Synapse processes or the database. (#17127)
|
||||
* Fix bug where StreamChangeCache would not respect configured cache factors. (#17152)
|
||||
|
||||
|
||||
@@ -166,9 +166,9 @@ describe('Application life cycle test', function () {
|
||||
async function logout() {
|
||||
await browser.get('https://' + app.fqdn + '/#/home');
|
||||
await browser.sleep(5000);
|
||||
await waitForElement(By.xpath('//div[@role="button" and @title="User menu"]'));
|
||||
await waitForElement(By.xpath('//div[@aria-label="User menu"]'));
|
||||
|
||||
await browser.findElement(By.xpath('//div[@role="button" and @title="User menu"]')).click();
|
||||
await browser.findElement(By.xpath('//div[@aria-label="User menu"]')).click();
|
||||
await browser.sleep(2000);
|
||||
|
||||
await browser.findElement(By.xpath('//li[@role="menuitem" and @aria-label="Sign out"]')).click();
|
||||
|
||||
Reference in New Issue
Block a user