Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-03-20 | Fix small extra argument passed to get_events | Andrew Morgan | 1 | -2/+9 | |
2020-02-29 | Fix mounting of homeserver.yaml when it does not exist on host (#6913) | Sandro | 1 | -2/+1 | |
Signed-off-by: Sandro Jäckel <sandro.jaeckel@gmail.com> | |||||
2020-02-28 | Add some type annotations to the federation base & client classes (#6995) | Patrick Cloke | 4 | -28/+45 | |
2020-02-28 | Fixed set a user as an admin with the new API (#6928) | Dirk Klimpel | 4 | -42/+199 | |
Fix #6910 | |||||
2020-02-27 | Don't refuse to start worker if media listener configured. (#7002) | Erik Johnston | 2 | -14/+21 | |
Instead lets just warn if the worker has a media listener configured but has the media repository disabled. Previously non media repository workers would just ignore the media listener. | |||||
2020-02-27 | set worker_app for frontend proxy test (#7003) | Richard van der Hoff | 2 | -0/+6 | |
to stop the federationhandler trying to do master stuff | |||||
2020-02-27 | Expose common commands via snap run interface to allow easier invocation (#6315) | James | 2 | -5/+17 | |
Signed-off-by: James Hebden <james@ec0.io> | |||||
2020-02-27 | Add some type annotations in `synapse.storage` (#6987) | Richard van der Hoff | 8 | -84/+270 | |
I cracked, and added some type definitions in synapse.storage. | |||||
2020-02-26 | Store room version on invite (#6983) | Richard van der Hoff | 7 | -2/+78 | |
When we get an invite over federation, store the room version in the rooms table. The general idea here is that, when we pull the invite out again, we'll want to know what room_version it belongs to (so that we can later redact it if need be). So we need to store it somewhere... | |||||
2020-02-26 | Cast a coroutine into a Deferred in the federation base (#6996) | Patrick Cloke | 2 | -6/+9 | |
Properly convert a coroutine into a Deferred in federation_base to fix an error when joining a room. | |||||
2020-02-26 | Port PresenceHandler to async/await (#6991) | Erik Johnston | 7 | -115/+113 | |
2020-02-26 | Updated warning for incorrect database collation/ctype (#6985) | Uday Bansal | 2 | -3/+8 | |
Signed-off-by: Uday Bansal <43824981+udaybansal19@users.noreply.github.com> | |||||
2020-02-26 | Ensure 'deactivated' parameter is a boolean on user admin API, Fix error ↵ | Andrew Morgan | 4 | -4/+68 | |
handling of call to deactivate user (#6990) | |||||
2020-02-25 | Sanity-check database before running upgrades (#6982) | Richard van der Hoff | 3 | -17/+33 | |
Some of the database deltas rely on `config.server_name` being set correctly, so we should check that it is before running the deltas. Fixes #6870. | |||||
2020-02-25 | Merge worker apps into one. (#6964) | Erik Johnston | 16 | -2327/+1052 | |
2020-02-25 | Remove extraneous unittest.DEBUG's | Andrew Morgan | 2 | -2/+0 | |
2020-02-25 | Increase expected state events in tests for new room by one | Andrew Morgan | 1 | -1/+6 | |
2020-02-25 | contrib/docker: remove quotes for POSTGRES_INITDB_ARGS (#6984) | Fridtjof Mund | 2 | -1/+2 | |
I made a mistake in https://github.com/matrix-org/synapse/pull/6921 - the quotes break the postgres container's startup script (or docker-compose), which makes initdb fail: https://github.com/matrix-org/synapse/pull/6921#issuecomment-590657154 Signed-off-by: Fridtjof Mund <fridtjof@das-labor.org> | |||||
2020-02-24 | Move buildkite config to the pipelines repo (#5943) | Amber Brown | 2 | -0/+16 | |
Note: I kept it in the repo for now ~anoa | |||||
2020-02-24 | Add m.id_access_token flag (#5930) | Andrew Morgan | 2 | -1/+7 | |
Adds a flag to `/versions`' `unstable_features` section indicating that this Synapse understands what an `id_access_token` is, as per https://github.com/matrix-org/synapse/issues/5927#issuecomment-523566043 Fixes #5927 | |||||
2020-02-24 | Removed unused jenkins/ folder and script (#5938) | Amber Brown | 2 | -16/+1 | |
2020-02-24 | Revert "Use the v2 lookup API for 3PID invites (#5897)" | Andrew Morgan | 10 | -320/+183 | |
This reverts commit 978f263e7c5d1eb440efaf07abc5009408ade25d, reversing changes made to 4f6ee99818d9c338944a10585d0aea4c7349d456. | |||||
2020-02-24 | Remove redundant store_room call (#6979) | Richard van der Hoff | 2 | -23/+1 | |
`_process_received_pdu` is only called by `on_receive_pdu`, which ignores any events for unknown rooms, so this is redundant. | |||||
2020-02-24 | Upsert room version when we join over federation (#6968) | Richard van der Hoff | 3 | -10/+30 | |
This is intended as a precursor to storing room versions when we receive an invite over federation, but has the happy side-effect of fixing #3374 at last. In short: change the store_room with try/except to a proper upsert which updates the right columns. | |||||
2020-02-24 | Fix minor issues with email config (#6962) | Richard van der Hoff | 3 | -40/+36 | |
* Give `notif_template_html`, `notif_template_text` default values (fixes #6960) * Don't complain if `smtp_host` and `smtp_port` are unset, since they have sensible defaults (fixes #6961) * Set the example for `enable_notifs` to `True`, for consistency and because it's more useful * Raise errors as ConfigError rather than RuntimeError for nicer formatting | |||||
2020-02-21 | No longer use room alias events to calculate room names for push ↵ | Patrick Cloke | 2 | -22/+15 | |
notifications. (#6966) | |||||
2020-02-21 | Change displayname of user as admin in rooms (#6876) | Dirk Klimpel | 2 | -1/+12 | |
2020-02-21 | Stop returning aliases as part of the room list. (#6970) | Patrick Cloke | 2 | -9/+1 | |
2020-02-21 | Publishing/removing from the directory requires a power level greater than ↵ | Patrick Cloke | 2 | -5/+6 | |
canonical aliases. | |||||
2020-02-21 |