- Aug 28, 2020
-
-
Patrick Cloke authored
-
Andrew Morgan authored
This is split out from https://github.com/matrix-org/synapse/pull/7438, which had gotten rather large. `LoginRestServlet` has a couple helper methods, `login_submission_legacy_convert` and `login_id_thirdparty_from_phone`. They're primarily used for converting legacy user login submissions to "identifier" dicts ([see spec](https://matrix.org/docs/spec/client_server/r0.6.1#post-matrix-client-r0-login)). Identifying information such as usernames or 3PID information used to be top-level in the login body. They're now supposed to be put inside an [identifier](https://matrix.org/docs/spec/client_server/r0.6.1#identifier-types) parameter instead. #7438's purpose is to allow using the new identifier parameter during User-Interactive Authentication, which is currently handled in AuthHandler. That's why I've moved these helper methods there. I also moved the refactoring of these method from #7438 as they're relevant.
-
- Aug 27, 2020
-
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Erik Johnston authored
This was forgotten in #8164.
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Andrew Morgan authored
-
Brendan Abolivier authored
-
Dexter Chua authored
This ensures systemctl start matrix-synapse returns only after synapse is actually started, which is very useful for automated deployments. Fixes #5761 Signed-off-by:
Dexter Chua <dec41@srcf.net>
-
- Aug 26, 2020
-
-
Andrew Morgan authored
#8174 removed the `is_guest` parameter from `get_room_data`, at the same time that #8157 was merged using it, colliding together to break unit tests on develop. This PR removes the `is_guest` parameter from the call in the broken test. Uses the same changelog as #8174.
-
Patrick Cloke authored
-
Andrew Morgan authored
Small cleanup PR. * Removed the unused `is_guest` argument * Added a safeguard to a (currently) impossible code path, fixing static checking at the same time.
-
Christopher May-Townsend authored
Signed-off-by:
Christopher May-Townsend <chris@maytownsend.co.uk>
-
Patrick Cloke authored
-
Richard van der Hoff authored
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.
-
Patrick Cloke authored
-
Erik Johnston authored
-
Patrick Cloke authored
-
Patrick Cloke authored
These were passing on the release-v1.19.1 branch but started failing once merged to develop.
-
- Aug 25, 2020
-
-
Erik Johnston authored
-
Patrick Cloke authored
-
Brendan Abolivier authored
Synapse 1.19.1rc1 (2020-08-25) ============================== Bugfixes -------- - Fix a bug introduced in v1.19.0 where appservices with ratelimiting disabled would still be ratelimited when joining rooms. ([\#8139](https://github.com/matrix-org/synapse/issues/8139)) - Fix a bug introduced in v1.19.0 that would cause e.g. profile updates to fail due to incorrect application of rate limits on join requests. ([\#8153](https://github.com/matrix-org/synapse/issues/8153))
-
Brendan Abolivier authored
-
Erik Johnston authored
This is mainly so that `StreamIdGenerator` and `MultiWriterIdGenerator` will have the same interface, allowing them to be used interchangeably.
-
Andrew Morgan authored
Some fixes to wording I noticed after merging #7377.
-
Andrew Morgan authored
-
Manuel Stahl authored
* Search in columns 'name' and 'displayname' in the admin users endpoint Signed-off-by:
Manuel Stahl <manuel.stahl@awesome-technologies.de>
-
- Aug 24, 2020
-
-
Patrick Cloke authored
-
Patrick Cloke authored
-
Brendan Abolivier authored
-
Christopher May-Townsend authored
-
Patrick Cloke authored
-
Brendan Abolivier authored
-
Will Hunt authored
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>
-