Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-08-25 | Do not allow send_nonmember_event to be called with shadow-banned users. (#8158) | Patrick Cloke | 2 | -5/+35 | |
2020-08-25 | Changelog fixes v1.19.1rc1 | Brendan Abolivier | 1 | -1/+1 | |
2020-08-25 | 1.19.1rc1 | Brendan Abolivier | 4 | -3/+11 | |
2020-08-25 | Make StreamIdGen `get_next` and `get_next_mult` async (#8161) | Erik Johnston | 14 | -49/+54 | |
This is mainly so that `StreamIdGenerator` and `MultiWriterIdGenerator` will have the same interface, allowing them to be used interchangeably. | |||||
2020-08-25 | Wording fixes to 'name' user admin api filter (#8163) | Andrew Morgan | 4 | -5/+7 | |
Some fixes to wording I noticed after merging #7377. | |||||
2020-08-25 | Fix missing double-backtick in RST document | Andrew Morgan | 1 | -1/+1 | |
2020-08-25 | Search in columns 'name' and 'displayname' in the admin users endpoint (#7377) | Manuel Stahl | 4 | -15/+27 | |
* Search in columns 'name' and 'displayname' in the admin users endpoint Signed-off-by: Manuel Stahl <manuel.stahl@awesome-technologies.de> | |||||
2020-08-24 | Add type hints for state. (#8140) | Patrick Cloke | 10 | -203/+420 | |
2020-08-24 | Stop shadow-banned users from sending non-member events. (#8142) | Patrick Cloke | 8 | -42/+155 | |
2020-08-24 | Allow capping a room's retention policy (#8104) | Brendan Abolivier | 6 | -107/+127 | |
2020-08-24 | Add healthcheck for default localhost 8008 port on /health endpoint. (#8147) | Christopher May-Townsend | 3 | -0/+34 | |
2020-08-24 | Fix flaky shadow-ban tests. (#8152) | Patrick Cloke | 2 | -1/+4 | |
2020-08-24 | Fix join ratelimiter breaking profile updates and idempotency (#8153) | Brendan Abolivier | 4 | -25/+119 | |
2020-08-24 | Do not apply ratelimiting on joins to appservices (#8139) | Will Hunt | 4 | -6/+119 | |
Add new method ratelimiter.can_requester_do_action and ensure that appservices are exempt from being ratelimited. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Erik Johnston <erik@matrix.org> | |||||
2020-08-24 | Don't fail /submit_token requests on incorrect session ID if ↵ | Brendan Abolivier | 5 | -6/+68 | |
request_token_inhibit_3pid_errors is turned on (#7991) * Don't raise session_id errors on submit_token if request_token_inhibit_3pid_errors is set * Changelog * Also wait some time before responding to /requestToken * Incorporate review * Update synapse/storage/databases/main/registration.py Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Incorporate review Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | |||||
2020-08-21 | Do not apply ratelimiting on joins to appservices (#8139) | Will Hunt | 4 | -6/+119 | |
Add new method ratelimiter.can_requester_do_action and ensure that appservices are exempt from being ratelimited. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Erik Johnston <erik@matrix.org> | |||||
2020-08-21 | Micro-optimisations to get_auth_chain_ids (#8132) | Richard van der Hoff | 2 | -23/+18 | |
2020-08-20 | Allow denying or shadow banning registrations via the spam checker (#8034) | Patrick Cloke | 14 | -18/+258 | |
2020-08-20 | Stop shadow-banned users from sending invites. (#8095) | Patrick Cloke | 7 | -31/+226 | |
2020-08-20 | Be more tolerant of membership events in unknown rooms (#8110) | Richard van der Hoff | 3 | -6/+28 | |
It turns out that not all out-of-band membership events are labelled as such, so we need to be more accepting here. | |||||
2020-08-20 | Improve the error code when trying to register using a name reserved for ↵ | Patrick Cloke | 2 | -1/+4 | |
guests. (#8135) | |||||
2020-08-20 | Use the JSON encoder without whitespace in more places. (#8124) | Patrick Cloke | 9 | -27/+21 | |
2020-08-20 | Add more types to synapse.storage.database. (#8127) | Patrick Cloke | 3 | -222/+367 | |
2020-08-20 | Ensure a group ID is valid before trying to get rooms for it. (#8129) | Patrick Cloke | 2 | -0/+5 | |
2020-08-20 | Do not assume calls to runInteraction return Deferreds. (#8133) | Patrick Cloke | 7 | -31/+41 | |
2020-08-19 | Close the database connection we create during startup (#8131) | Richard van der Hoff | 2 | -1/+11 | |
... otherwise it gets leaked. | |||||
2020-08-19 | Remove `ChainedIdGenerator`. (#8123) | Erik Johnston | 7 | -95/+26 | |
It's just a thin wrapper around two ID gens to make `get_current_token` and `get_next` return tuples. This can easily be replaced by calling the appropriate methods on the underlying ID gens directly. | |||||
2020-08-19 | Switch the JSON byte producer from a pull to a push producer. (#8116) | Patrick Cloke | 5 | -46/+53 | |
2020-08-19 | Updated docs: Added note about missing 308 redirect support. (#8120) | Ryan Cole | 2 | -0/+13 | |
* Updated docs: Added note about missing 308 redirect support. * Added changelog | |||||
2020-08-19 | Be stricter about JSON that is accepted by Synapse (#8106) | Patrick Cloke | 20 | -62/+85 | |
2020-08-19 | Convert runWithConnection to async. (#8121) | Patrick Cloke | 3 | -15/+15 | |
2020-08-19 | Remove the unused inlineCallbacks code-paths in the caching code (#8119) | Patrick Cloke | 3 | -52/+15 | |
2020-08-19 | Separate `get_current_token` into two. (#8113) | Erik Johnston | 6 | -20/+47 | |
The function is used for two purposes: 1) for subscribers of streams to get a token they can use to get further updates with, and 2) for replication to track position of the writers of the stream. For streams with a single writer the two scenarios produce the same result, however the situation becomes complicated for streams with multiple writers. The current `MultiWriterIdGenerator` does not correctly handle the first case (which is not an issue as its only used for the `caches` stream which nothing subscribes to outside of replication). | |||||
2020-08-18 | Convert events worker database to async/await. (#8071) | Patrick Cloke | 12 | -97/+106 | |
2020-08-18 | Add a link to the matrix-synapse-rest-password-provider. (#8111) | Patrick Cloke | 2 | -0/+2 | |
2020-08-18 | Fix the return type of send_nonmember_events. (#8112) | Patrick Cloke | 3 | -5/+17 | |
2020-08-18 | Remove : from allowed client_secret chars (#8101) | Andrew Morgan | 4 | -6/+16 | |
Closes: https://github.com/matrix-org/synapse/issues/6766 Equivalent Sydent PR: https://github.com/matrix-org/sydent/pull/309 I believe it's now time to remove the extra allowed `:` from `client_secret` parameters. | |||||
2020-08-18 | Rename changelog from bugfix to misc. | Patrick Cloke | 1 | -0/+0 | |
2020-08-18 | Iteratively encode JSON responses to avoid blocking the reactor. (#8013) | Patrick Cloke | 5 | -13/+94 | |
2020-08-18 | Return the previous stream token if a non-member event is a duplicate. (#8093) | Patrick Cloke | 2 | -10/+16 | |
2020-08-18 | Add resources.consent conditional dependency back (#8107) | Andrew Morgan | 2 | -20/+1 | |
Turns out that part of the codebase (synapse.config.server) checks for this key explicitly. Remove that check. | |||||
2020-08-17 | Convert some of the general database methods to async (#8100) | Patrick Cloke | 13 | -59/+69 | |
2020-08-17 | Use the default templates when a custom template file cannot be found (#8037) | Andrew Morgan | 15 | -290/+310 | |
Fixes https://github.com/matrix-org/synapse/issues/6583 | |||||
2020-08-17 | Changelog changes v1.19.0 github/release-v1.19.0 release-v1.19.0 | Olivier Wilkinson (reivilibre) | 1 | -5/+4 | |
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> | |||||
2020-08-17 | 1.19.0 | Olivier Wilkinson (reivilibre) | 3 | -4/+10 | |
2020-08-17 | Convert stream database to async/await. (#8074) | Patrick Cloke | 11 | -227/+224 | |
2020-08-14 | Add a shadow-banned flag to users. (#8092) | Patrick Cloke | 12 | -12/+83 | |
2020-08-14 | Convert pusher databases to async/await. (#8075) | Patrick Cloke | 4 | -95/+90 | |
2020-08-14 | Convert receipts and events databases to async/await. (#8076) | Patrick Cloke | 4 | -82/+80 | |
2020-08-14 | Add type hints to synapse.handlers.room (#8090) | Erik Johnston | 3 | -39/+69 | |
2020-08-14 | Remove some unused database functions. (#8085) | Patrick Cloke | 7 | -244/+19 | |
2020-08-14 | Convert misc database code to async (#8087) | Patrick Cloke | 11 | -64/+39 | |
2020-08-13 | Remove a space at the start of a changelog entry. | Patrick Cloke | 1 | -1/+1 | |
2020-08-13 | More changelog tweaks v1.19.0rc1 | Olivier Wilkinson (reivilibre) | 1 | -4/+4 | |
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> | |||||
2020-08-13 | More changelog tweaks | Olivier Wilkinson (reivilibre) | 1 | -4/+8 | |
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> | |||||
2020-08-13 | Remove unwanted changelog line | Olivier Wilkinson (reivilibre) | 1 | -1/+0 | |
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> | |||||
2020-08-13 | 1.19.0rc1 | Olivier Wilkinson (reivilibre) | 72 | -71/+67 | |
2020-08-13 | Run `remove_push_actions_from_staging` in foreground (#8081) | Richard van der Hoff | 2 | -3/+2 | |
If we got an error persisting an event, we would try to remove the push actions asynchronously, which would lead to a 'Re-starting finished log context' warning. I don't think there's any need for this to be asynchronous. | |||||
2020-08-13 | Drop federation transmission queues during a significant remote outage. (#7864) | reivilibre | 2 | -0/+23 | |
* Empty federation transmission queues when we are backing off. Fixes #7828. Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> * Address feedback Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> * Reword newsfile | |||||
2020-08-13 | Fix unawaited coroutine error in tests. (#8072) | Patrick Cloke | 2 | -10/+21 | |
2020-08-12 | Convert the roommember database to async/await. (#8070) | Patrick Cloke | 5 | -242/+116 | |
2020-08-12 | Convert devices database to async/await. (#8069) | Patrick Cloke | 5 | -176/+220 | |
2020-08-12 | Add type hints to handlers.message and events.builder (#8067) | Erik Johnston | 7 | -41/+61 | |
2020-08-12 | Convert account data, device inbox, and censor events databases to ↵ | Patrick Cloke | 5 | -87/+99 | |
async/await (#8063) | |||||
2020-08-12 |