Browse Source

Use room version 9 as the default room version (per MSC3589). (#12058)

tags/v1.54.0rc1
Patrick Cloke 2 years ago
committed by GitHub
parent
commit
7bcc28f82f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions
  1. +1
    -0
      changelog.d/12058.feature
  2. +1
    -1
      docs/sample_config.yaml
  3. +1
    -1
      synapse/config/server.py

+ 1
- 0
changelog.d/12058.feature View File

@@ -0,0 +1 @@
Use room version 9 as the default room version (per [MSC3589](https://github.com/matrix-org/matrix-doc/pull/3589)).

+ 1
- 1
docs/sample_config.yaml View File

@@ -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
#


+ 1
- 1
synapse/config/server.py View File

@@ -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. "


Loading…
Cancel
Save