summary refs log tree commit diff
path: root/tests/federation/test_complexity.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-26Don't default to an invalid sqlite config if no database configuration is ↵Nektarios Katakis2-22/+48
provided (#6573)
2020-03-26Allow server admins to define and enforce a password policy (MSC2000). (#7118)Dirk Klimpel11-0/+437
2020-03-26Validate that the session is not modified during UI-Auth (#7068)Patrick Cloke8-14/+117
2020-03-25Remove unused captcha_bypass_secret option (#7137)Aaron Raimist3-9/+1
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2020-03-25Move catchup of replication streams to worker. (#7024)Erik Johnston24-487/+635
This changes the replication protocol so that the server does not send down `RDATA` for rows that happened before the client connected. Instead, the server will send a `POSITION` and clients then query the database (or master out of band) to get up to date.
2020-03-25Various cleanups to INSTALL.md (#7141)Andrew Morgan2-59/+40
2020-03-24Clean up some LoggingContext stuff (#7120)Richard van der Hoff24-222/+232
* Pull Sentinel out of LoggingContext ... and drop a few unnecessary references to it * Factor out LoggingContext.current_context move `current_context` and `set_context` out to top-level functions. Mostly this means that I can more easily trace what's actually referring to LoggingContext, but I think it's generally neater. * move copy-to-parent into `stop` this really just makes `start` and `stop` more symetric. It also means that it behaves correctly if you manually `set_log_context` rather than using the context manager. * Replace `LoggingContext.alive` with `finished` Turn `alive` into `finished` and make it a bit better defined.
2020-03-24Fix CAS redirect url (#6634)Naugrimm2-11/+17
Build the same service URL when requesting the CAS ticket and when calling the proxyValidate