summary refs log tree commit diff
path: root/scripts-dev/convert_server_keys.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-29Support PyJWT v2.0.0. (#8986)Patrick Cloke2-4/+13
Tests were broken due to an API changing. The code used in Synapse proper should be compatible with both versions already.
2020-12-14Allow per-room profile to be used for server notice user (#8799)Mathieu Velten2-1/+10
This applies even if the feature is disabled at the server level with `allow_per_room_profiles`. The server notice not being a real user it doesn't have an user profile.
2020-12-11Remove the CI requirement for newsfiles (#73)Andrew Morgan1-11/+0
We don't use newsfiles for DINUM releases anyways, so a CI requirement for them does not make sense.
2020-12-11Fix users info for remote users (#71)Mathieu Velten2-2/+2
2020-12-11Update mypy to 0.790 to resolve mypy CI errors (#72)Andrew Morgan4-7/+9
2020-10-29Override any missing default power level keys with DINUM's defaults when ↵Andrew Morgan3-18/+85
creating a room (#68) The createRoom flow in DINUM's Synapse (through the AccessRules module which has hooks for all of this) already rejects a power levels content dict if it doesn't have high enough power levels to satisfy DINUM's [requirements](https://github.com/matrix-org/synapse-dinsic/blob/ac50ed353b5fdbdf9f853be0d94b6fccaf33973e/synapse/third_party_rules/access_rules.py#L233-L252). This PR ensures that any keys that aren't provided are replaced with the defaults, instead of just assuming the whole dict was correct (and thus those keys were set to mainline Synapse's default instead).
2020-10-22Don't 500 for invalid group IDs (#8628)Erik Johnston2-1/+5
2020-10-221.22.0rc1Erik Johnston89-88/+106
2020-10-22Type hints for RegistrationStore (#8615)Eri