Compare commits

..

4 Commits
v1.92.0 ... rm

Author SHA1 Message Date
Johannes Zellner
7480af6ebb Bump version 2024-05-14 19:30:23 +02:00
Johannes Zellner
7b29adda08 Fixup tests 2024-05-14 19:29:26 +02:00
Johannes Zellner
fd80c93278 Update test deps 2024-05-14 17:43:34 +02:00
Johannes Zellner
8b56a68dd0 Update to 1.107.0 2024-05-14 17:42:31 +02:00
6 changed files with 27 additions and 13 deletions

View File

@@ -1234,3 +1234,17 @@
* Make the CSAPI endpoint /keys/device_signing/upload idempotent. (#16943)
* 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)

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "Secure & decentralized communication",
"version": "1.92.0",
"upstreamVersion": "1.106.0",
"version": "1.93.0",
"upstreamVersion": "1.107.0",
"healthCheckPath": "/",
"httpPort": 8008,
"memoryLimit": 536870912,

View File

@@ -9,7 +9,7 @@ RUN virtualenv -p python3 /app/code/env
ENV VIRTUAL_ENV=/app/code/env
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
ARG VERSION=1.106.0
ARG VERSION=1.107.0
# https://github.com/matrix-org/synapse-s3-storage-provider
ARG STORAGE_PROVIDER_VERSION=1beb6af95e1f5caedb8e6e7e1cc176cdb2106d37

14
test/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"chromedriver": "^124.0.1",
"chromedriver": "^124.0.3",
"expect.js": "^0.3.1",
"mocha": "^10.4.0",
"selenium-webdriver": "^4.20.0"
@@ -233,9 +233,9 @@
}
},
"node_modules/chromedriver": {
"version": "124.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-124.0.1.tgz",
"integrity": "sha512-hxd1tpAUhgMFBZd1h3W7KyMckxofOYCuKAMtcvBDAU0YKKorZcWuq6zP06+Ph0Z1ynPjtgAj0hP9VphCwesjZw==",
"version": "124.0.3",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-124.0.3.tgz",
"integrity": "sha512-k6Xu9fwDMgi//bGHB944QMmDHF0BBWGk4PAyVZBEuP6wnZMfQP4V6Sv+l/nuAPA006RllS6X07ZpjPwRPS4BaA==",
"hasInstallScript": true,
"dependencies": {
"@testim/chrome-version": "^1.1.4",
@@ -1644,9 +1644,9 @@
}
},
"chromedriver": {
"version": "124.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-124.0.1.tgz",
"integrity": "sha512-hxd1tpAUhgMFBZd1h3W7KyMckxofOYCuKAMtcvBDAU0YKKorZcWuq6zP06+Ph0Z1ynPjtgAj0hP9VphCwesjZw==",
"version": "124.0.3",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-124.0.3.tgz",
"integrity": "sha512-k6Xu9fwDMgi//bGHB944QMmDHF0BBWGk4PAyVZBEuP6wnZMfQP4V6Sv+l/nuAPA006RllS6X07ZpjPwRPS4BaA==",
"requires": {
"@testim/chrome-version": "^1.1.4",
"axios": "^1.6.7",

View File

@@ -9,7 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^124.0.1",
"chromedriver": "^124.0.3",
"expect.js": "^0.3.1",
"mocha": "^10.4.0",
"selenium-webdriver": "^4.20.0"

View File

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