summary refs log tree commit diff
path: root/changelog.d/8312.feature (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-10-19Fix mypy error: auth handler "checkpw" internal function type mismatch (#8569)Jonathan de Jong3-4/+6
2020-10-19Expose the experimental appservice login flow to clients. (#8504)Patrick Cloke2-0/+3
2020-10-19Add `DeferredCache.get_immediate` method (#8568)Richard van der Hoff7-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-19Include a simple message in email notifications that include encrypted ↵Patrick Cloke9-75/+107
content (#8545)
2020-10-19Support running synmark on macOS. (#8578)Patrick Cloke2-2/+6
By using the "poll" reactor since macOS doesn't support epoll.
2020-10-19Start an opentracing span for background processes. (#8567)Erik Johnston2-5/+7
This should reduce the number of `There was no active span` errors we see. Fixes #8510.
2020-10-19Replace DeferredCache with LruCache where possible (#8563)Richard van der Hoff8-27/+30
Most of these uses don't need a full-blown DeferredCache; LruCache is lighter and more appropriate.
2020-10-17Pre-emptively fix synapse.storage.types.Connection for future mypy release ↵Jonathan de Jong3-3/+4
(#8577) Fix the Connection protocol according to typeshed's assertions about sqlite3.Connection
2020-10-16Fix synmark (#8571)Richard van der Hoff2-1/+2
This seems to have been broken since #6513.
2020-10-16