summary refs log tree commit diff
path: root/synapse/federation (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-08-28Convert confirmation from request args to HTML form dataAndrew Morgan4-8/+67
2020-08-28Return 400 when accessing submit_token/_confirm with REMOTE behaviourAndrew Morgan1-0/+10
2020-08-28Pull things from, instead of copying the entirety of, the configAndrew Morgan1-12/+18
2020-08-28Update synapse/rest/client/v2_alpha/account.pyAndrew Morgan1-1/+1
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
2020-08-26Update the test federation client to handle streaming responses (#8130)Richard van der Hoff2-8/+28
Now that the server supports streaming back JSON responses, it would be nice to show the response as it is streamed, in the test tool.
2020-08-26Do not propagate profile changes of shadow-banned users into rooms. (#8157)Patrick Cloke5-160/+291
2020-08-26Make SlavedIdTracker.advance have same interface as MultiWriterIDGenerator ↵Erik Johnston12-15/+16
(#8171)
2020-08-26Convert simple_select_one and simple_select_one_onecol to async (#8162)Patrick Cloke25-113/+220
2020-08-26Fix rate limiting unit tests. (#8167)Patrick Cloke2-13/+15
These were passing on the release-v1.19.1 branch but started failing once merged to develop.
2020-08-25Add functions to `MultiWriterIdGen` used by events stream (#8164)Erik Johnston4-3/+145
2020-08-25Do not allow send_nonmember_event to be called with shadow-banned users. (#8158)Patrick Cloke2-5/+35
2020-08-25Changelog fixes v1.19.1rc1Brendan Abolivier1-1/+1
2020-08-251.19.1rc1Brendan Abolivier4-3/+11
2020-08-25Make StreamIdGen `get_next` and `get_next_mult` async (#8161)Erik Johnston14-49/+54
This is mainly so that `StreamIdGenerator` and `MultiWriterIdGenerator` will have the same interface, allowing them to be used interchangeably.
2020-08-25Wording fixes to 'name' user admin api filter (#8163)Andrew Morgan4-5/+7
Some fixes to wording I noticed after merging #7377.
2020-08-25Fix missing double-backtick in RST documentAndrew Morgan1-1/+1
2020-08-25Search in columns 'name' and 'displayname' in the admin users endpoint (#7377)Manuel Stahl4-15/+27
* Search in columns 'name' and 'displayname' in the admin users endpoint Signed-off-by: Manuel Stahl <manuel.stahl@awesome-technologies.de>
2020-08-24Add type hints for state. (#8140)Patrick Cloke10-203/+420
2020-08-24Stop shadow-banned users from sending non-member events. (#8142)Patrick Cloke8-42/+155
2020-08-24Allow capping a room's retention policy (#8104)Brendan Abolivier6-107/+127
2020-08-24Add healthcheck for default localhost 8008 port on /health endpoint. (#8147)Christopher May-Townsend3-0/+34
2020-08-24Fix flaky shadow-ban tests. (#8152)Patrick Cloke2-1/+4
2020-08-24Fix join ratelimiter breaking profile updates and idempotency (#8153)Brendan Abolivier4-25/+119
2020-08-24Do not apply ratelimiting on joins to appservices (#8139)Will Hunt4-6/+119
Add new method ratelimiter.can_requester_do_action and ensure that appservices are exempt from being ratelimited. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Erik Johnston <erik@matrix.org>
2020-08-24Don't fail /submit_token requests on incorrect session ID if ↵Brendan Abolivier5-6/