Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-09-03 | code cleanups | Andrew Morgan | 1 | -7/+2 | |
2019-09-03 | Ensure the list media admin API is always available (#5966) | Travis Ralston | 2 | -2/+6 | |
* Ensure the list media admin API is always available This API is required for some external media repo implementations to operate (mostly for doing quarantine operations on a room). * changelog | |||||
2019-09-03 | Fix docstring | Andrew Morgan | 1 | -2/+1 | |
2019-09-03 | Remove unnecessary variable declaration | Andrew Morgan | 1 | -1/+0 | |
2019-09-03 | Docker packaging should not su-exec or chmod if already running as UID/GID ↵ | Michael Kaye | 2 | -35/+50 | |
(#5970) Adjust su-exec to only be used if needed. If UID == getuid() and GID == getgid() then we do not need to su-exec, and chmod will not work. | |||||
2019-09-03 | Ensure an auth instance is available to ListMediaInRoom (#5967) | Travis Ralston | 2 | -0/+2 | |
* Ensure an auth instance is available to ListMediaInRoom Fixes https://github.com/matrix-org/synapse/issues/5737 * Changelog | |||||
2019-09-03 | fix typo | Matthew Hodgson | 1 | -1/+1 | |
2019-09-03 | Remove double return statements (#5962) | Andrew Morgan | 15 | -20/+1 | |
Remove all the "double return" statements which were a result of us removing all the instances of ``` defer.returnValue(...) return ``` statements when we switched to python3 fully. | |||||
2019-09-03 | Opentrace device lists (#5853) | Jorik Schellekens | 8 | -58/+118 | |
Trace device list changes. | |||||
2019-09-02 | Remove unused methods from c/s api v1 in register.py (#5963) | Andrew Morgan | 3 | -137/+2 | |
These methods were part of the v1 C/S API. Remove them as they are no longer used by any code paths. | |||||
2019-09-02 | fix thumbnail storage location (#5915) | L0ric0 | 2 | -1/+2 | |
* fix thumbnail storage location Signed-off-by: Lorenz Steinert <lorenz@steinerts.de> * Add changelog file. Signed-off-by: Lorenz Steinert <lorenz@steinerts.de> * Update Changelog Signed-off-by: Lorenz Steinert <lorenz@steinerts.de> | |||||
2019-09-02 | Update INSTALL.md to say that Python 2 is no longer supported (#5953) | Aaron Raimist | 2 | -2/+3 | |
Signed-off-by: Aaron Raimist <aaron@raim.ist> | |||||
2019-08-30 | Revert "Add m.id_access_token flag (#5930)" (#5945) | Andrew Morgan | 2 | -7/+1 | |
This reverts commit 4765f0cfd95f6160f32c75481651d125f343cd58. | |||||
2019-08-30 | Remove unnecessary parentheses around return statements (#5931) | Andrew Morgan | 81 | -286/+287 | |
Python will return a tuple whether there are parentheses around the returned values or not. I'm just sick of my editor complaining about this all over the place :) | |||||
2019-08-31 | Move buildkite config to the pipelines repo (#5943) | Amber Brown | 3 | -310/+16 | |
2019-08-30 | 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 | |||||
2019-08-30 | Removed unused jenkins/ folder and script (#5938) | Amber Brown | 2 | -16/+1 | |
2019-08-30 | Revert "Use the v2 lookup API for 3PID invites (#5897)" (#5937) | Andrew Morgan | 4 | -166/+9 | |
This reverts commit 71fc04069a5770a204c3514e0237d7374df257a8. This broke 3PID invites as #5892 was required for it to work correctly. | |||||
2019-08-30 | Fix buildkite pipeline plugin matrix-org/annotate using the wrong variable ↵ | Amber Brown | 1 | -3/+3 | |
config | |||||
2019-08-29 | Fix coverage in sytest and use plugins for buildkite (#5922) | Amber Brown | 8 | -32/+92 | |
2019-08-28 | Add a link to python's logging config schema (#5926) | Jorik Schellekens | 3 | -2/+5 | |
2019-08-28 | Let synctl use a config directory. (#5904) | Jorik Schellekens | 3 | -6/+15 | |
* Let synctl use a config directory. | |||||
2019-08-28 | Removing entry for 5903 | Will Hunt | 1 | -1/+0 | |
2019-08-28 | Use the v2 lookup API for 3PID invites (#5897) | Andrew Morgan | 4 | -9/+166 | |
Fixes https://github.com/matrix-org/synapse/issues/5861 Adds support for the v2 lookup API as defined in [MSC2134](https://github.com/matrix-org/matrix-doc/pull/2134). Currently this is only used for 3PID invites. Sytest PR: https://github.com/matrix-org/sytest/pull/679 | |||||
2019-08-28 | Config templating (#5900) | Jorik Schellekens | 9 | -46/+366 | |
Template config files * Imagine a system composed entirely of x, y, z etc and the basic operations.. Wait George, why XOR? Why not just neq? George: Eh, I didn't think of that.. Co-Authored-By: Erik Johnston <erik@matrix.org> | |||||
2019-08-28 | Implement a structured logging output system. (#5680) | Amber Brown | 31 | -82/+1328 | |
2019-08-28 | Fix a cache-invalidation bug for worker-based deployments (#5920) | Richard van der Hoff | 2 | -8/+17 | |
Some of the caches on worker processes were not being correctly invalidated when a room's state was changed in a way that did not affect the membership list of the room. We need to make sure we send out cache invalidations even when no memberships are changing. | |||||
2019-08-28 | Typographical corrections in docker/README (#5921) | Victor Goff | 1 | -5/+5 | |
2019-08-27 | Fix off by one error in SRV result shuffling | Erik Johnston | 1 | -8/+13 | |
2019-08-27 | Document GET method for retrieving admin bit of user in admin API | Olivier Wilkinson (reivilibre) | 1 | -0/+19 | |
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net> | |||||
2019-08-27 | Add GET method to admin API /users/@user:dom/admin |