Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a14fa5ec36 | ||
|
|
f2a0bbbf51 | ||
|
|
23d574e2ee | ||
|
|
a728b9131a | ||
|
|
6e952f3394 | ||
|
|
8df7aa4744 |
24
CHANGELOG
24
CHANGELOG
@@ -207,3 +207,27 @@
|
|||||||
* Partially mitigate bug where newly joined servers couldn't get past events in a room when there is a malformed event. (#8350)
|
* Partially mitigate bug where newly joined servers couldn't get past events in a room when there is a malformed event. (#8350)
|
||||||
* Make index.html customizable
|
* Make index.html customizable
|
||||||
|
|
||||||
|
[1.11.0]
|
||||||
|
* Update Synapse to 1.20.1
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.20.0)
|
||||||
|
* Add an endpoint to query your shared rooms with another user as an implementation of MSC2666. (#7785)
|
||||||
|
* Iteratively encode JSON to avoid blocking the reactor. (#8013, #8116)
|
||||||
|
* Add support for shadow-banning users (ignoring any message send requests). (#8034, #8092, #8095, #8142, #8152, #8157, #8158, #8176)
|
||||||
|
* Use the default template file when its equivalent is not found in a custom template directory. (#8037, #8107, #8252)
|
||||||
|
* 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)
|
||||||
|
|
||||||
|
[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)
|
||||||
|
|||||||
@@ -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.10.0",
|
"version": "1.12.1",
|
||||||
"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.19.3</upstream>.
|
This app packages Synapse <upstream>1.21.1</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.19.3
|
ARG VERSION=v1.21.1
|
||||||
|
|
||||||
# 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
|
||||||
|
|||||||
Reference in New Issue
Block a user