Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee25574780 | ||
|
|
a82f5e1de5 |
13
CHANGELOG
13
CHANGELOG
@@ -238,3 +238,16 @@
|
|||||||
* Security: HTML pages served via Synapse were vulnerable to cross-site scripting (XSS) attacks. All server administrators are encouraged to upgrade
|
* 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)
|
* 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.12.2",
|
"version": "1.13.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This app packages Synapse <upstream>1.21.2</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.21.2
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user