summary refs log tree commit diff
path: root/synapse/api/room_versions.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Run Black. (#5482)Amber Brown2019-06-201-11/+14
|
* Implement room v5 which enforces signing key validityRichard van der Hoff2019-06-051-5/+5
| | | | | Implements [MSC2077](https://github.com/matrix-org/matrix-doc/pull/2077) and fixes #5247 and #4364.
* Add a test room version where we enforce key validity (#5348)Richard van der Hoff2019-06-051-7/+13
|
* Add config option for setting homeserver's default room version (#5223)Andrew Morgan2019-05-231-4/+0
| | | | | Replaces DEFAULT_ROOM_VERSION constant with a method that first checks the config, then returns a hardcoded value if the option is not present. That hardcoded value is now located in the server.py config file.
* Introduce room v4 which updates event ID format. (#5217)Richard van der Hoff2019-05-211-4/+4
| | | Implements https://github.com/matrix-org/matrix-doc/pull/2002.
* Add a test room version which updates event ID format (#5210)Richard van der Hoff2019-05-201-2/+11
| | | Implements MSC1884
* Collect room-version variations into one place (#4969)Richard van der Hoff2019-04-011-0/+91
Collect all the things that make room-versions different to one another into one place, so that it's easier to define new room versions.