Bump version

This commit is contained in:
Johannes Zellner
2022-09-13 15:35:28 +02:00
parent 2c407c2f3c
commit cbd2879577
5 changed files with 18 additions and 11 deletions

View File

@@ -675,3 +675,10 @@
* Update Synapse to 1.66.0
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.66.0)
[1.50.0]
* Update Synapse to 1.67.0
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.67.0)
* Support setting the registration shared secret in a file, via a new `registration_shared_secret_path` configuration option.
* Change the default startup behaviour so that any missing "additional" configuration files (signing key, etc) are generated automatically.
* Improve performance of sending messages in rooms with thousands of local users.

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "Secure & decentralized communication",
"version": "1.49.2",
"upstreamVersion": "1.65.1",
"version": "1.50.0",
"upstreamVersion": "1.67.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=v1.66.0
ARG VERSION=v1.67.0
# 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": "^104.0.0",
"chromedriver": "^105.0.0",
"expect.js": "^0.3.1",
"mocha": "^10.0.0",
"selenium-server-standalone-jar": "^3.141.59",
@@ -293,9 +293,9 @@
}
},
"node_modules/chromedriver": {
"version": "104.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-104.0.0.tgz",
"integrity": "sha512-zbHZutN2ATo19xA6nXwwLn+KueD/5w8ap5m4b6bCb8MIaRFnyDwMbFoy7oFAjlSMpCFL3KSaZRiWUwjj//N3yQ==",
"version": "105.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-105.0.0.tgz",
"integrity": "sha512-BX3GOUW5m6eiW9cVVF8hw+EFxvrGqYCxbwOqnpk8PjbNFqL5xjy7yel+e6ilJPjckAYFutMKs8XJvOs/W85vvg==",
"hasInstallScript": true,
"dependencies": {
"@testim/chrome-version": "^1.1.2",
@@ -1976,9 +1976,9 @@
}
},
"chromedriver": {
"version": "104.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-104.0.0.tgz",
"integrity": "sha512-zbHZutN2ATo19xA6nXwwLn+KueD/5w8ap5m4b6bCb8MIaRFnyDwMbFoy7oFAjlSMpCFL3KSaZRiWUwjj//N3yQ==",
"version": "105.0.0",
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-105.0.0.tgz",
"integrity": "sha512-BX3GOUW5m6eiW9cVVF8hw+EFxvrGqYCxbwOqnpk8PjbNFqL5xjy7yel+e6ilJPjckAYFutMKs8XJvOs/W85vvg==",
"requires": {
"@testim/chrome-version": "^1.1.2",
"axios": "^0.27.2",

View File

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