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

Change default room version to 10. Implements MSC3904 #14111

Merged
1 change: 1 addition & 0 deletions changelog.d/14111.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change documentation to reflect that room version 10 is now default. Contributed by @FSG-Cat.
FSG-Cat marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions changelog.d/14111.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make room version 10 default. Implements MSC3904. Contributed by @FSG-Cat.
FSG-Cat marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion docs/usage/configuration/config_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Known room versions are listed [here](https://spec.matrix.org/latest/rooms/#comp
For example, for room version 1, `default_room_version` should be set
to "1".

Currently defaults to "9".
Currently defaults to "10".
FSG-Cat marked this conversation as resolved.
Show resolved Hide resolved

Example configuration:
```yaml
Expand Down
2 changes: 1 addition & 1 deletion synapse/config/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def generate_ip_set(
"fec0::/10",
]

DEFAULT_ROOM_VERSION = "9"
DEFAULT_ROOM_VERSION = "10"

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