Compare commits

..

2 Commits

Author SHA1 Message Date
Johannes Zellner
9ed6f56792 Fix version in changelog 2022-10-29 07:08:31 +02:00
Johannes Zellner
404f794d10 Bump version 2022-10-29 06:59:44 +02:00
5 changed files with 17 additions and 11 deletions

View File

@@ -758,3 +758,9 @@
* Improve the validation of the following PUT endpoints: [`/directory/room/{roomAlias}`](https://spec.matrix.org/v1.4/client-server-api/#put_matrixclientv3directoryroomroomalias), [`/directory/list/room/{roomId}`](https://spec.matrix.org/v1.4/client-server-api/#put_matrixclientv3directorylistroomroomid) and [`/directory/list/appservice/{networkId}/{roomId}`](https://spec.matrix.org/v1.4/application-service-api/#put_matrixclientv3directorylistappservicenetworkidroomid). ([\#14179](https://github.com/matrix-org/synapse/issues/14179))
* Build and publish binary wheels for `aarch64` platforms. ([\#14212](https://github.com/matrix-org/synapse/issues/14212))
[1.53.1]
* Update Synapse to 1.70.1
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.70.1)
* Fix a bug introduced in Synapse 1.70.0rc1 where the access tokens sent to application services as headers were malformed. Application services which were obtaining access tokens from query parameters were not affected. (#14301)
* Fix room creation being rate limited too aggressively since Synapse v1.69.0. (#14314)

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "Secure & decentralized communication",
"version": "1.53.0",
"upstreamVersion": "1.70.0",
"version": "1.53.1",
"upstreamVersion": "1.70.1",
"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=v1.70.0
ARG VERSION=v1.70.1
# Synapse (https://github.com/matrix-org/synapse/blob/master/INSTALL.md)
# lxml - required for previews

14
test/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"chromedriver": "^107.0.0",
"chromedriver": "^107.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.1.0",
"selenium-server-standalone-jar": "^3.141.59",
@@ -288,9 +288,9 @@
}
},
"node_modules/chromedriver": {
"version": "107.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-107.0.0.tgz",
"integrity": "sha512-/VpGc83szXYUu9gBhCl6tg6XvtVwj2RQjOZ4wDA5TPSqudTMgWcMbkjeZbCfHwReJ9Qqo0hJ1jipG1IXWDxg3g==",
"version": "107.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-107.0.1.tgz",
"integrity": "sha512-oIBZHystVpbUaPwypJTnqe4UWar0rIPGLPPe9RLSZ+cgbOVns/q9naoXQj+n+VzcbTtdfs9N3VXnVFvG/vKA6Q==",
"hasInstallScript": true,
"dependencies": {
"@testim/chrome-version": "^1.1.3",
@@ -1957,9 +1957,9 @@
}
},
"chromedriver": {
"version": "107.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-107.0.0.tgz",
"integrity": "sha512-/VpGc83szXYUu9gBhCl6tg6XvtVwj2RQjOZ4wDA5TPSqudTMgWcMbkjeZbCfHwReJ9Qqo0hJ1jipG1IXWDxg3g==",
"version": "107.0.1",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-107.0.1.tgz",
"integrity": "sha512-oIBZHystVpbUaPwypJTnqe4UWar0rIPGLPPe9RLSZ+cgbOVns/q9naoXQj+n+VzcbTtdfs9N3VXnVFvG/vKA6Q==",
"requires": {
"@testim/chrome-version": "^1.1.3",
"axios": "^0.27.2",

View File

@@ -9,7 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^107.0.0",
"chromedriver": "^107.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.1.0",
"selenium-server-standalone-jar": "^3.141.59",