Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae6d081dfa | ||
|
|
1b6f7f9c8a | ||
|
|
c6dc2d84ff | ||
|
|
0c44e699b6 | ||
|
|
e9fc19d2c2 | ||
|
|
f7283f78c3 |
10
CHANGELOG
10
CHANGELOG
@@ -269,3 +269,13 @@
|
|||||||
* Add an admin API for local user media statistics. Contributed by @dklimpel. (#8700)
|
* Add an admin API for local user media statistics. Contributed by @dklimpel. (#8700)
|
||||||
* Add displayname to Shared-Secret Registration for admins. (#8722)
|
* Add displayname to Shared-Secret Registration for admins. (#8722)
|
||||||
|
|
||||||
|
[1.14.1]
|
||||||
|
* Update Synapse to 1.23.1
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.23.1)
|
||||||
|
* There is a denial of service attack (CVE-2020-26257) against the federation APIs in which future events will not be correctly sent to other servers over federation. This affects all servers that participate in open federation. (Fixed in #8776).
|
||||||
|
|
||||||
|
[1.15.0]
|
||||||
|
* Update Synapse to 1.24.0
|
||||||
|
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.24.0)
|
||||||
|
* Add a maximum version for pysaml2 on Python 3.5
|
||||||
|
|
||||||
|
|||||||
@@ -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.14.0",
|
"version": "1.15.0-1",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"contactEmail": "support@cloudron.io",
|
"contactEmail": "support@cloudron.io",
|
||||||
"icon": "file://logo.png",
|
"icon": "file://logo.png",
|
||||||
"tags": [
|
"tags": [
|
||||||
"im", "collaboration", "voip", "videochat", "chat", "slack", "zulip"
|
"im", "collaboration", "voip", "videochat", "chat", "slack", "zulip", "federated"
|
||||||
],
|
],
|
||||||
"mediaLinks": [
|
"mediaLinks": [
|
||||||
"https://screenshots.cloudron.io/org.matrix.synapse/1.png",
|
"https://screenshots.cloudron.io/org.matrix.synapse/1.png",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This app packages Synapse <upstream>1.23.0</upstream>.
|
This app packages Synapse <upstream>1.24.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.23.0
|
ARG VERSION=v1.24.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