Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee25574780 | ||
|
|
a82f5e1de5 | ||
|
|
fc73988618 | ||
|
|
0a8a05827a | ||
|
|
a14fa5ec36 | ||
|
|
f2a0bbbf51 | ||
|
|
23d574e2ee | ||
|
|
a728b9131a |
34
CHANGELOG
34
CHANGELOG
@@ -217,3 +217,37 @@
|
|||||||
* Add unread messages count to sync responses, as specified in MSC2654. (#8059, #8254, #8270, #8274)
|
* Add unread messages count to sync responses, as specified in MSC2654. (#8059, #8254, #8270, #8274)
|
||||||
* Optimise /federation/v1/user/devices/ API by only returning devices with encryption keys. (#8198)
|
* Optimise /federation/v1/user/devices/ API by only returning devices with encryption keys. (#8198)
|
||||||
|
|
||||||
|
[1.12.0]
|
||||||
|
* Update Synapse to 1.21.0
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.21.0)
|
||||||
|
* Require the user to confirm that their password should be reset after clicking the email confirmation link. (#8004)
|
||||||
|
* Add an admin API GET /_synapse/admin/v1/event_reports to read entries of table event_reports. Contributed by @dklimpel. (#8217)
|
||||||
|
* Consolidate the SSO error template across all configuration. (#8248, #8405)
|
||||||
|
* Add a configuration option to specify a whitelist of domains that a user can be redirected to after validating their email or phone number. (#8275, #8417)
|
||||||
|
* Add experimental support for sharding event persister. (#8294, #8387, #8396, #8419)
|
||||||
|
* Add the room topic and avatar to the room details admin API. (#8305)
|
||||||
|
* Add an admin API for querying rooms where a user is a member. Contributed by @dklimpel. (#8306)
|
||||||
|
|
||||||
|
[1.12.1]
|
||||||
|
* Updat Synapse to 1.21.1
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.21.1)
|
||||||
|
|
||||||
|
[1.12.2]
|
||||||
|
* Update Synapse to 1.21.2
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.21.2)
|
||||||
|
* Security: HTML pages served via Synapse were vulnerable to cross-site scripting (XSS) attacks. All server administrators are encouraged to upgrade
|
||||||
|
* Fix rare bug where sending an event would fail due to a racey assertion. (#8530)
|
||||||
|
|
||||||
|
[1.13.0]
|
||||||
|
* Update Synapse to 1.22.0
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.22.0)
|
||||||
|
* Add ability for ThirdPartyEventRules modules to query and manipulate whether a room is in the public rooms directory. (#8292, #8467)
|
||||||
|
* Add support for olm fallback keys (MSC2732). (#8312, #8501)
|
||||||
|
* Add support for running background tasks in a separate worker process. (#8369, #8458, #8489, #8513, #8544, #8599)
|
||||||
|
* Add support for device dehydration (MSC2697). (#8380)
|
||||||
|
* Add support for MSC2409, which allows sending typing, read receipts, and presence events to appservices. (#8437, #8590)
|
||||||
|
* Change default room version to "6", per MSC2788. (#8461)
|
||||||
|
* Add the ability to send non-membership events into a room via the ModuleApi. (#8479)
|
||||||
|
* Increase default upload size limit from 10M to 50M. Contributed by @Akkowicz. (#8502)
|
||||||
|
* Add support for modifying event content in ThirdPartyRules modules. (#8535, #8564)
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Secure & decentralized communication",
|
"tagline": "Secure & decentralized communication",
|
||||||
"version": "1.11.0",
|
"version": "1.13.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
@@ -32,6 +32,6 @@
|
|||||||
"postInstallMessage": "file://POSTINSTALL.md",
|
"postInstallMessage": "file://POSTINSTALL.md",
|
||||||
"minBoxVersion": "5.3.0",
|
"minBoxVersion": "5.3.0",
|
||||||
"forumUrl": "https://forum.cloudron.io/category/50/matrix-synapse-riot",
|
"forumUrl": "https://forum.cloudron.io/category/50/matrix-synapse-riot",
|
||||||
"documentationUrl": "https://cloudron.io/documentation/apps/synapse/",
|
"documentationUrl": "https://docs.cloudron.io/apps/synapse/",
|
||||||
"optionalSso": true
|
"optionalSso": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This app packages Synapse <upstream>1.20.1</upstream>.
|
This app packages Synapse <upstream>1.22.0</upstream>.
|
||||||
|
|
||||||
**This package only provides the Matrix backend. A variety of clients are available
|
**This package only provides the Matrix backend. A variety of clients are available
|
||||||
[here](https://matrix.org/clients/). Riot is a popular web frontend for Matrix and
|
[here](https://matrix.org/clients/). Riot is a popular web frontend for Matrix and
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ RUN mkdir -p /app/pkg
|
|||||||
|
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=v1.20.1
|
ARG VERSION=v1.22.0
|
||||||
|
|
||||||
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
||||||
RUN virtualenv -p python3 /app/code/env
|
RUN virtualenv -p python3 /app/code/env
|
||||||
|
|||||||
12
test/package-lock.json
generated
12
test/package-lock.json
generated
@@ -52,9 +52,9 @@
|
|||||||
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
|
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
|
||||||
},
|
},
|
||||||
"@types/node": {
|
"@types/node": {
|
||||||
"version": "14.11.1",
|
"version": "14.11.8",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.8.tgz",
|
||||||
"integrity": "sha512-oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="
|
"integrity": "sha512-KPcKqKm5UKDkaYPTuXSx8wEP7vE9GnuaXIZKijwRYcePpZFDVuy2a57LarFKiORbHOuTOOwYzxVxcUzsh2P2Pw=="
|
||||||
},
|
},
|
||||||
"@types/yauzl": {
|
"@types/yauzl": {
|
||||||
"version": "2.9.1",
|
"version": "2.9.1",
|
||||||
@@ -234,9 +234,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chromedriver": {
|
"chromedriver": {
|
||||||
"version": "85.0.1",
|
"version": "86.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-85.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-86.0.0.tgz",
|
||||||
"integrity": "sha512-z8je3U4tXFZnx7AloRabM4Ep1lpFJvHxLoGuRvLg33Qy0UKk/z6OXmHUO2z6DKE0Oe6CFpjj/bdhuQ8dfvq9ug==",
|
"integrity": "sha512-byLJWhAfuYOmzRYPDf4asJgGDbI4gJGHa+i8dnQZGuv+6WW1nW1Fg+8zbBMOfLvGn7sKL41kVdmCEVpQHn9oyg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@testim/chrome-version": "^1.0.7",
|
"@testim/chrome-version": "^1.0.7",
|
||||||
"axios": "^0.19.2",
|
"axios": "^0.19.2",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^85.0.1",
|
"chromedriver": "^86.0.0",
|
||||||
"ejs": "^3.1.5",
|
"ejs": "^3.1.5",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
|
|||||||
Reference in New Issue
Block a user