Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7480af6ebb | ||
|
|
7b29adda08 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1234,3 +1234,17 @@
|
|||||||
* Make the CSAPI endpoint /keys/device_signing/upload idempotent. (#16943)
|
* Make the CSAPI endpoint /keys/device_signing/upload idempotent. (#16943)
|
||||||
* Redact membership events if the user requested erasure upon deactivating. (#17076)
|
* Redact membership events if the user requested erasure upon deactivating. (#17076)
|
||||||
|
|
||||||
|
[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)
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG.md",
|
"changelog": "file://CHANGELOG.md",
|
||||||
"tagline": "Secure & decentralized communication",
|
"tagline": "Secure & decentralized communication",
|
||||||
"version": "1.92.0",
|
"version": "1.93.0",
|
||||||
"upstreamVersion": "1.106.0",
|
"upstreamVersion": "1.107.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|||||||
@@ -166,9 +166,9 @@ describe('Application life cycle test', function () {
|
|||||||
async function logout() {
|
async function logout() {
|
||||||
await browser.get('https://' + app.fqdn + '/#/home');
|
await browser.get('https://' + app.fqdn + '/#/home');
|
||||||
await browser.sleep(5000);
|
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.sleep(2000);
|
||||||
|
|
||||||
await browser.findElement(By.xpath('//li[@role="menuitem" and @aria-label="Sign out"]')).click();
|
await browser.findElement(By.xpath('//li[@role="menuitem" and @aria-label="Sign out"]')).click();
|
||||||
|
|||||||
Reference in New Issue
Block a user