Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-03-27 | move FederationStream out to its own file | Richard van der Hoff | 4 | -23/+43 | |
2019-03-27 | move EventsStream out to its own file | Richard van der Hoff | 3 | -23/+42 | |
2019-03-27 | Move replication.tcp.streams into a package | Richard van der Hoff | 4 | -35/+53 | |
2019-03-27 | Fix/improve some docstrings in the replication code. (#4949) | Richard van der Hoff | 3 | -7/+20 | |
2019-03-26 | Support 3PID login in password providers (#4931) | Andrew Morgan | 8 | -26/+137 | |
Adds a new method, check_3pid_auth, which gives password providers the chance to allow authentication with third-party identifiers such as email or msisdn. | |||||
2019-03-27 | Use the state event amount for userdir import batching, not room count (#4944) | Amber Brown | 2 | -8/+21 | |
2019-03-26 | Make federation endpoints more tolerant of trailing slashes v2 (#4935) | Andrew Morgan | 5 | -11/+13 | |
Redo of https://github.com/matrix-org/synapse/pull/4840 | |||||
2019-03-25 | Fix ClientReplicationStreamProtocol.__str__ (#4929) | Richard van der Hoff | 3 | -4/+6 | |
`__str__` depended on `self.addr`, which was absent from ClientReplicationStreamProtocol, so attempting to call str on such an object would raise an exception. We can calculate the peer addr from the transport, so there is no need for addr anyway. | |||||
2019-03-25 | Fix bug where read-receipts lost their timestamps (#4927) | Richard van der Hoff | 8 | -12/+179 | |
Make sure that they are sent correctly over the replication stream. Fixes: #4898 | |||||
2019-03-25 |