Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2cc55a07fa | ||
|
|
b4c6b21942 |
12
CHANGELOG
12
CHANGELOG
@@ -114,3 +114,15 @@
|
||||
* Use latest base image
|
||||
* Update to synapse v1.12.4
|
||||
|
||||
[1.1.0]
|
||||
* Update Synapse to 1.13.0
|
||||
* [Full changelog](https://github.com/matrix-org/synapse/releases/tag/v1.13.0)
|
||||
* Set Referrer-Policy header to no-referrer on media downloads. (#7009)
|
||||
* Admin API POST /_synapse/admin/v1/join/<roomIdOrAlias> to join users to a room like auto_join_rooms for creation of users. (#7051)
|
||||
* Add options to prevent users from changing their profile or associated 3PIDs. (#7096)
|
||||
* Allow server admins to define and enforce a password policy (MSC2000). (#7118)
|
||||
* Improve the support for SSO authentication on the login fallback page. (#7152, #7235)
|
||||
* Always whitelist the login fallback in the SSO configuration if public_baseurl is set. (#7153)
|
||||
* Admin users are no longer required to be in a room to create an alias for it. (#7191)
|
||||
* Require admin privileges to enable room encryption by default. This does not affect existing rooms. (#7230)
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Secure & decentralized communication",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"healthCheckPath": "/",
|
||||
"httpPort": 8008,
|
||||
"memoryLimit": 536870912,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
This app packages Synapse <upstream>1.12.4</upstream>.
|
||||
This app packages Synapse <upstream>1.13.0</upstream>.
|
||||
|
||||
**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
|
||||
|
||||
@@ -4,7 +4,7 @@ RUN mkdir -p /app/pkg
|
||||
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=v1.12.4
|
||||
ARG VERSION=v1.13.0
|
||||
|
||||
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
||||
RUN virtualenv -p python3 /app/code/env
|
||||
|
||||
Reference in New Issue
Block a user