Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump mypy from 1.5.1 to 1.8.0 (#16901) | dependabot[bot] | 2024-03-13 | 1 | -1/+1 |
| | |||||
* | Fix joining remote rooms when a `on_new_event` callback is registered (#16973) | Quentin Gliech | 2024-03-06 | 1 | -14/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since Synapse 1.76.0, any module which registers a `on_new_event` callback would brick the ability to join remote rooms. This is because this callback tried to get the full state of the room, which would end up in a deadlock. Related: https://github.com/matrix-org/synapse-auto-accept-invite/issues/18 The following module would brick the ability to join remote rooms: ```python from typing import Any, Dict, Literal, Union import logging from synapse.module_api import ModuleApi, EventBase logger = logging.getLogger(__name__) class MyModule: def __init__(self, config: None, api: ModuleApi): self._api = api self._config = config self._api.register_third_party_rules_callbacks( on_new_event=self.on_new_event, ) async def on_new_event(self, event: EventBase, _state_map: Any) -> None: logger.info(f"Received new event: {event}") @staticmethod def parse_config(_config: Dict[str, Any]) -> None: return None ``` This is technically a breaking change, as we are now passing partial state on the `on_new_event` callback. However, this callback was broken for federated rooms since 1.76.0, and local rooms have full state anyway, so it's unlikely that it would change anything. | ||||
* | Correctly mention previous copyright (#16820) | Erik Johnston | 2024-01-23 | 4 | -0/+4 |
| | | | | | During the migration the automated script to update the copyright headers accidentally got rid of some of the existing copyright lines. Reinstate them. | ||||
* | Merge remote-tracking branch 'gitlab/clokep/license-license' into new_develop | Erik Johnston | 2023-12-13 | 4 | -41/+64 |
|\ | |||||
| * | Update license headers | Patrick Cloke | 2023-11-21 | 4 | -41/+64 |
| | | |||||
* | | ModuleAPI SSO auth callbacks (#15207) | Andrew Yasinishyn | 2023-12-01 | 1 | -0/+6 |
|/ | | | Signed-off-by: Andrii Yasynyshyn yasinishyn.a.n@gmail.com | ||||
* | Use full GitHub links instead of bare issue numbers. (#16637) | Patrick Cloke | 2023-11-15 | 1 | -1/+2 |
| | |||||
* | Allow modules to delete rooms. (#15997) | reivilibre | 2023-09-06 | 1 | -3/+8 |
| | | | | | | | | | | | | | | | * Allow user_id to be optional for room deletion * Add module API method to delete a room * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Don't worry about the case block=True && requester_user_id is None --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | ||||
* | Run pyupgrade for python 3.7 & 3.8. (#16110) | Patrick Cloke | 2023-08-15 | 1 | -36/+12 |
| | |||||
* | Add tracing to media `/upload` endpoint (#15850) | Eric Eastwood | 2023-07-05 | 1 | -0/+1 |
| | | | Add tracing instrumentation to media `/upload` code paths to investigate https://github.com/matrix-org/synapse/issues/15841 | ||||
* | Add login spam checker API (#15838) | Erik Johnston | 2023-06-26 | 1 | -0/+80 |
| | |||||
* | Move ThirdPartyEventRules into module_api/callbacks (#15535) | Andrew Morgan | 2023-05-04 | 2 | -0/+595 |
| | |||||
* | Move Spam Checker callbacks to a dedicated file (#15453) | Andrew Morgan | 2023-04-18 | 2 | -1/+831 |
| | |||||
* | Move Account Validity callbacks to a dedicated file (#15237) | Andrew Morgan | 2023-03-16 | 2 | -0/+115 |