summary refs log tree commit diff
path: root/synapse/api/room_versions.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-05-21 16:29:25 +0100
committerRichard van der Hoff <richard@matrix.org>2019-05-21 16:29:25 +0100
commit1c8f2c34ff41a2edb598e945d7e17b3884c50bc3 (patch)
treeb2383eca24fa5fe3c446d2f88379459dfeb53cf7 /synapse/api/room_versions.py
parentMerge branch 'develop' into matrix-org-hotfixes (diff)
parentIntroduce room v4 which updates event ID format. (#5217) (diff)
downloadsynapse-1c8f2c34ff41a2edb598e945d7e17b3884c50bc3.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/api/room_versions.py')
-rw-r--r--synapse/api/room_versions.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/api/room_versions.py b/synapse/api/room_versions.py

index 485b3d0237..b2895355a8 100644 --- a/synapse/api/room_versions.py +++ b/synapse/api/room_versions.py
@@ -77,9 +77,9 @@ class RoomVersions(object): EventFormatVersions.V2, StateResolutionVersions.V2, ) - EVENTID_NOSLASH_TEST = RoomVersion( - "eventid-noslash-test", - RoomDisposition.UNSTABLE, + V4 = RoomVersion( + "4", + RoomDisposition.STABLE, EventFormatVersions.V3, StateResolutionVersions.V2, ) @@ -95,6 +95,6 @@ KNOWN_ROOM_VERSIONS = { RoomVersions.V2, RoomVersions.V3, RoomVersions.STATE_V2_TEST, - RoomVersions.EVENTID_NOSLASH_TEST, + RoomVersions.V4, ) } # type: dict[str, RoomVersion]