Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 7bcc28f

Browse files
authored
Use room version 9 as the default room version (per MSC3589). (#12058)
1 parent 81364db commit 7bcc28f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

changelog.d/12058.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use room version 9 as the default room version (per [MSC3589](https://github.com/matrix-org/matrix-doc/pull/3589)).

docs/sample_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ presence:
163163
# For example, for room version 1, default_room_version should be set
164164
# to "1".
165165
#
166-
#default_room_version: "6"
166+
#default_room_version: "9"
167167

168168
# The GC threshold parameters to pass to `gc.set_threshold`, if defined
169169
#

synapse/config/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def generate_ip_set(
146146
"fec0::/10",
147147
]
148148

149-
DEFAULT_ROOM_VERSION = "6"
149+
DEFAULT_ROOM_VERSION = "9"
150150

151151
ROOM_COMPLEXITY_TOO_GREAT = (
152152
"Your homeserver is unable to join rooms this large or complex. "

0 commit comments

Comments
 (0)