summary refs log tree commit diff
path: root/scripts-dev/definitions.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-04Prevent exception when hs or shadow_hs missing (#5012) dinsic_2019-04-04_2Michael Kaye1-2/+2
* Prevent exception when hs or shadow_hs missing
2019-04-04Fix registration with register_mxid_from_3pid enabled (#5011) dinsic_2019-04-04_1Erik Johnston1-1/+1
2019-04-04Rewrite more internal IS urls. (#5006) dinsic_2019-04-04Michael Kaye1-4/+22
* Rewrite more internal IS urls.
2019-04-03Sample configErik Johnston1-0/+5
2019-04-03Add config option to use email as display name for new usersErik Johnston2-14/+25
2019-04-010.99.3 v0.99.3 github/release-v0.99.3 release-v0.99.3Neil Johnson3-3/+13
2019-04-01convert rst link to mdNeil Johnson1-1/+1
2019-03-270.99.3rc1 v0.99.3rc1Neil Johnson85-85/+93
2019-03-27bump versionNeil Johnson1-1/+1
2019-03-26Support 3PID login in password providers (#4931)Andrew Morgan8-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-27Use the state event amount for userdir import batching, not room count (#4944)Amber Brown2-8/+21
2019-03-26Make federation endpoints more tolerant of trailing slashes v2 (#4935)Andrew Morgan5-11/+13
Redo of https://github.com/matrix-org/synapse/pull/4840
2019-03-25Fix ClientReplicationStreamProtocol.__str__ (#4929)Richard van der Hoff3-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-25Fix bug where read-receipts lost their timestamps (#4927)Richard van der Hoff8-12/+179
Make sure that they are sent correctly over the replication stream. Fixes: #4898
2019-03-25Use an explicit dbname for postgres connections in the tests. (#4928)Richard van der Hoff2-18/+17
I don't have a database with the same name as my user, so leaving the database name unset fails. While we're at it, clear out some unused stuff in the test setup.
2019-03-25Fix nginx example in ACME doc. (#4923)<