You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGES.md
+14-4
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
Synapse 1.47.0rc3 (2021-11-16)
2
+
==============================
3
+
4
+
Bugfixes
5
+
--------
6
+
7
+
- Fix a bug introduced in 1.47.0rc1 which caused worker processes to not halt startup in the presence of outstanding database migrations. ([\#11346](https://github.com/matrix-org/synapse/issues/11346))
8
+
- Fix a bug introduced in 1.47.0rc1 which prevented the 'remove deleted devices from `device_inbox` column' background process from running when updating from a recent Synapse version. ([\#11303](https://github.com/matrix-org/synapse/issues/11303), [\#11353](https://github.com/matrix-org/synapse/issues/11353))
9
+
10
+
1
11
Synapse 1.47.0rc2 (2021-11-10)
2
12
==============================
3
13
@@ -8678,14 +8688,14 @@ General:
8678
8688
8679
8689
Federation:
8680
8690
8681
-
- Add key distribution mechanisms for fetching public keys of unavailable remote home servers. See [Retrieving Server Keys](https://github.com/matrix-org/matrix-doc/blob/6f2698/specification/30_server_server_api.rst#retrieving-server-keys) in the spec.
8691
+
- Add key distribution mechanisms for fetching public keys of unavailable remote homeservers. See [Retrieving Server Keys](https://github.com/matrix-org/matrix-doc/blob/6f2698/specification/30_server_server_api.rst#retrieving-server-keys) in the spec.
8682
8692
8683
8693
Configuration:
8684
8694
8685
8695
- Add support for multiple config files.
8686
8696
- Add support for dictionaries in config files.
8687
8697
- Remove support for specifying config options on the command line, except for:
8688
-
- `--daemonize` - Daemonize the home server.
8698
+
- `--daemonize` - Daemonize the homeserver.
8689
8699
- `--manhole` - Turn on the twisted telnet manhole service on the given port.
8690
8700
- `--database-path` - The path to a sqlite database to use.
8691
8701
- `--verbose` - The verbosity level.
@@ -8890,7 +8900,7 @@ This version adds support for using a TURN server. See docs/turn-howto.rst on ho
8890
8900
Homeserver:
8891
8901
8892
8902
- Add support for redaction of messages.
8893
-
- Fix bug where inviting a user on a remote home server could take up to 20-30s.
8903
+
- Fix bug where inviting a user on a remote homeserver could take up to 20-30s.
8894
8904
- Implement a get current room state API.
8895
8905
- Add support specifying and retrieving turn server configuration.
8896
8906
@@ -8980,7 +8990,7 @@ Changes in synapse 0.2.3 (2014-09-12)
8980
8990
8981
8991
Homeserver:
8982
8992
8983
-
- Fix bug where we stopped sending events to remote home servers if a user from that home server left, even if there were some still in the room.
8993
+
- Fix bug where we stopped sending events to remote homeservers if a user from that homeserver left, even if there were some still in the room.
8984
8994
- Fix bugs in the state conflict resolution where it was incorrectly rejecting events.
Support the stable version of [MSC2778](https://github.com/matrix-org/matrix-doc/pull/2778): the `m.login.application_service` login type. Contributed by @tulir.
Fix a bug, introduced in Synapse 1.46.0, which caused the `check_3pid_auth` and `on_logged_out` callbacks in legacy password authentication provider modules to not be registered. Modules using the generic module API were not affected.
Fix a bug introduced in 1.41.0 where space hierarchy responses would be incorrectly reused if multiple users were to make the same request at the same time.
Copy file name to clipboardExpand all lines: docs/turn-howto.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# Overview
2
2
3
-
This document explains how to enable VoIP relaying on your Home Server with
3
+
This document explains how to enable VoIP relaying on your homeserver with
4
4
TURN.
5
5
6
-
The synapse Matrix Home Server supports integration with TURN server via the
6
+
The synapse Matrix homeserver supports integration with TURN server via the
7
7
[TURN server REST API](<https://tools.ietf.org/html/draft-uberti-behave-turn-rest-00>). This
8
-
allows the Home Server to generate credentials that are valid for use on the
9
-
TURN server through the use of a secret shared between the Home Server and the
8
+
allows the homeserver to generate credentials that are valid for use on the
9
+
TURN server through the use of a secret shared between the homeserver and the
10
10
TURN server.
11
11
12
12
The following sections describe how to install [coturn](<https://github.com/coturn/coturn>) (which implements the TURN REST API) and integrate it with synapse.
@@ -165,18 +165,18 @@ This will install and start a systemd service called `coturn`.
165
165
166
166
## Synapse setup
167
167
168
-
Your home server configuration file needs the following extra keys:
168
+
Your homeserver configuration file needs the following extra keys:
169
169
170
170
1. "`turn_uris`": This needs to be a yaml list of public-facing URIs
171
171
for your TURN server to be given out to your clients. Add separate
172
172
entries for each transport your TURN server supports.
173
173
2. "`turn_shared_secret`": This is the secret shared between your
174
-
Home server and your TURN server, so you should set it to the same
174
+
homeserver and your TURN server, so you should set it to the same
175
175
string you used in turnserver.conf.
176
176
3. "`turn_user_lifetime`": This is the amount of time credentials
177
-
generated by your Home Server are valid for (in milliseconds).
177
+
generated by your homeserver are valid for (in milliseconds).
178
178
Shorter times offer less potential for abuse at the expense of
179
-
increased traffic between web clients and your home server to
179
+
increased traffic between web clients and your homeserver to
180
180
refresh credentials. The TURN REST API specification recommends
181
181
one day (86400000).
182
182
4. "`turn_allow_guests`": Whether to allow guest users to use the
0 commit comments