diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-02-22 09:09:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 14:09:40 +0000 |
commit | 7bcc28f82fe160dc8dca1d70f8dc3667c94fb738 (patch) | |
tree | e0d10524e4af7fbf6758eb75552a908dc596f8ac | |
parent | Run `_handle_queued_pdus` as a background process (#12041) (diff) | |
download | synapse-7bcc28f82fe160dc8dca1d70f8dc3667c94fb738.tar.xz |
Use room version 9 as the default room version (per MSC3589). (#12058)
Diffstat (limited to '')
-rw-r--r-- | changelog.d/12058.feature | 1 | ||||
-rw-r--r-- | docs/sample_config.yaml | 2 | ||||
-rw-r--r-- | synapse/config/server.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/changelog.d/12058.feature b/changelog.d/12058.feature new file mode 100644 index 0000000000..7b71692229 --- /dev/null +++ b/changelog.d/12058.feature @@ -0,0 +1 @@ +Use room version 9 as the default room version (per [MSC3589](https://github.com/matrix-org/matrix-doc/pull/3589)). diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index d2bb3d4208..6f3623c88a 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -163,7 +163,7 @@ presence: # For example, for room version 1, default_room_version should be set # to "1". # -#default_room_version: "6" +#default_room_version: "9" # The GC threshold parameters to pass to `gc.set_threshold`, if defined # diff --git a/synapse/config/server.py b/synapse/config/server.py index 7bc9624546..49cd0a4f19 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py @@ -146,7 +146,7 @@ DEFAULT_IP_RANGE_BLACKLIST = [ "fec0::/10", ] -DEFAULT_ROOM_VERSION = "6" +DEFAULT_ROOM_VERSION = "9" ROOM_COMPLEXITY_TOO_GREAT = ( "Your homeserver is unable to join rooms this large or complex. " |