Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-10-19 | Fix mypy error: auth handler "checkpw" internal function type mismatch (#8569) | Jonathan de Jong | 3 | -4/+6 | |
2020-10-19 | Expose the experimental appservice login flow to clients. (#8504) | Patrick Cloke | 2 | -0/+3 | |
2020-10-19 | Add `DeferredCache.get_immediate` method (#8568) | Richard van der Hoff | 7 | -27/+53 | |
* Add `DeferredCache.get_immediate` method A bunch of things that are currently calling `DeferredCache.get` are only really interested in the result if it's completed. We can optimise and simplify this case. * Remove unused 'default' parameter to DeferredCache.get() * another get_immediate instance | |||||
2020-10-19 | Include a simple message in email notifications that include encrypted ↵ | Patrick Cloke | 9 | -75/+107 | |
content (#8545) | |||||
2020-10-19 | Support running synmark on macOS. (#8578) | Patrick Cloke | 2 | -2/+6 | |
By using the "poll" reactor since macOS doesn't support epoll. | |||||
2020-10-19 | Start an opentracing span for background processes. (#8567) | Erik Johnston | 2 | -5/+7 | |
This should reduce the number of `There was no active span` errors we see. Fixes #8510. | |||||
2020-10-19 | Replace DeferredCache with LruCache where possible (#8563) | Richard van der Hoff | 8 | -27/+30 | |
Most of these uses don't need a full-blown DeferredCache; LruCache is lighter and more appropriate. | |||||
2020-10-17 | Pre-emptively fix synapse.storage.types.Connection for future mypy release ↵ | Jonathan de Jong | 3 | -3/+4 | |
(#8577) Fix the Connection protocol according to typeshed's assertions about sqlite3.Connection | |||||
2020-10-16 | Fix synmark (#8571) | Richard van der Hoff | 2 | -1/+2 | |
This seems to have been broken since #6513. | |||||
2020-10-16 |