Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/18680.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change default room version to 11, implmenting [MSC4239](https://github.com/matrix-org/matrix-spec-proposals/pull/4239).
4 changes: 3 additions & 1 deletion docs/usage/configuration/config_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,9 @@ For example, for room version 1, `default_room_version` should be set to "1".

_Changed in Synapse 1.76:_ the default version room version was increased from [9](https://spec.matrix.org/v1.5/rooms/v9/) to [10](https://spec.matrix.org/v1.5/rooms/v10/).

Defaults to `"10"`.
_Changed in Synapse 1.134:_ the default version room version was increased from [9](https://spec.matrix.org/v1.12/rooms/v10/) to [10](https://spec.matrix.org/v1.12/rooms/v11/).

Defaults to `"11"`.

Example configuration:
```yaml
Expand Down
6 changes: 5 additions & 1 deletion schema/synapse-config.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,11 @@ properties:
_Changed in Synapse 1.76:_ the default version room version was increased
from [9](https://spec.matrix.org/v1.5/rooms/v9/) to
[10](https://spec.matrix.org/v1.5/rooms/v10/).
default: "10"
_Changed in Synapse 1.134:_ the default version room version was increased
from [10](https://spec.matrix.org/v1.12/rooms/v10/) to
[11](https://spec.matrix.org/v1.12/rooms/v11/).
default: "11"
examples:
- "8"
gc_thresholds:
Expand Down
2 changes: 1 addition & 1 deletion synapse/config/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def generate_ip_set(
"fec0::/10",
]

DEFAULT_ROOM_VERSION = "10"
DEFAULT_ROOM_VERSION = "11"

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