Bump version
This commit is contained in:
@@ -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.0]
|
||||
* 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)
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
14
test/package-lock.json
generated
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user