summary refs log tree commit diff
path: root/changelog.d (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Performance improvements and refactor of Ratelimiter (#7595)Andrew Morgan2020-06-051-0/+1
| | | | | | | | | | While working on https://github.com/matrix-org/synapse/issues/5665 I found myself digging into the `Ratelimiter` class and seeing that it was both: * Rather undocumented, and * causing a *lot* of config checks This PR attempts to refactor and comment the `Ratelimiter` class, as well as encourage config file accesses to only be done at instantiation. Best to be reviewed commit-by-commit.
* Fix encryption algorithm typos in tests/comments (#7637)Andrew Morgan2020-06-041-0/+1
| | | | | | | | @uhoreg has confirmed these were both typos. They are only in comments and tests though, rather than anything critical. Introduced in: * https://github.com/matrix-org/synapse/pull/7157 * https://github.com/matrix-org/synapse/pull/5726
* Advertise the token login type when OpenID Connect is enabled. (#7631)Patrick Cloke2020-06-041-0/+1
|
* Cleanups to the OpenID Connect integration (#7628)Richard van der Hoff2020-06-031-0/+1
| | | | docs, default configs, comments. Nothing very significant.
* async/await get_user_id_by_threepid (#7620)Andrew Morgan2020-06-031-0/+1
| | | | | Based on #7619 async's `get_user_id_by_threepid` and its call stack.
* Check the changelog number in check-newsfragment (#7623)Richard van der Hoff2020-06-031-0/+1
|
* Replace instances of reactor pumping with get_success. (#7619)Andrew Morgan2020-06-031-0/+1
| | | | | Calls `self.get_success` on all deferred methods instead of abusing `self.pump()`. This has the benefit of working with coroutines, as well as checking that method execution completed successfully. There are also a few small cleanups that I made in the process.
* Check if the localpart is reserved for guests earlier in the registration ↵Brendan Abolivier2020-06-031-0/+1
| | | | | flow (#7625) This is so the user is warned about the username not being valid as soon as possible, rather than only once they've finished UIA.
* Fix exceptions when fetching events from a down host. (#7622)Erik Johnston2020-06-031-0/+1
| | | We already caught some exceptions, but not all.
* `synctl restart` should start synapse if it wasn't running (#7624)Richard van der Hoff2020-06-031-0/+1
|
* Switch back to upstream dh-virtualenv (#7621)Richard van der Hoff2020-06-031-0/+1
| | | | | | Upstream have merged our changes (https://github.com/spotify/dh-virtualenv/pull/300), so let's switch back to it instead of using our fork.
* Clean up exception handling in SAML2ResponseResource (#7614)Richard van der Hoff2020-06-031-0/+1
| | | | | | | | | | | | | * Expose `return_html_error`, and allow it to take a Jinja2 template instead of a raw string * Clean up exception handling in SAML2ResponseResource * use the existing code in `return_html_error` instead of re-implementing it (giving it a jinja2 template rather than inventing a new form of template) * do the exception-catching in the REST layer rather than in the handler layer, to make sure we catch all exceptions.
* Mention #synapse:matrix.org in README troubleshooting (#7603)Andrew Morgan2020-06-011-0/+1
| | | Just in case people head straight to the troubleshooting section and find themselves at a dead end.
* Advertise Python 3.8 support in setup.py (#7602)Andrew Morgan2020-06-011-0/+1
| | | Synapse supports Python 3.8. We've been using it in CI for a while now.
* Fix a bug in automatic user creation with m.login.jwt. (#7585)Olof Johansson2020-06-011-0/+1
|
* Process cross-signing keys when resyncing device lists (#7594)Brendan Abolivier2020-06-011-0/+1
| | | It looks like `user_device_resync` was ignoring cross-signing keys from the results received from the remote server. This patch fixes this, by processing these keys using the same process `_handle_signing_key_updates` does (and effectively factor that part out of that function).
* Email notifications for new users when creating via the Admin API. (#7267)Dirk Klimpel2020-06-011-0/+1
|
* Improve performance of _get_state_groups_from_groups_txn (#7567)Dagfinn Ilmari Mannsåker2020-06-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The query keeps showing up in my slow query log. This changes the plan under the top-level Sort node from ``` WindowAgg (cost=280335.88..292963.15 rows=561212 width=80) (actual time=138.651..160.562 rows=27112 loops=1) -> Sort (cost=280335.88..281738.91 rows=561212 width=84) (actual time=138.597..140.622 rows=27112 loops=1) Sort Key: state_groups_state.type, state_groups_state.state_key, state_groups_state.state_group Sort Method: quicksort Memory: 4581kB -> Nested Loop (cost=2.83..226745.22 rows=561212 width=84) (actual time=21.548..47.657 rows=27112 loops=1) -> HashAggregate (cost=2.27..3.28 rows=101 width=8) (actual time=21.526..21.535 rows=20 loops=1) Group Key: state.state_group -> CTE Scan on state (cost=0.00..2.02 rows=101 width=8) (actual time=21.280..21.493 rows=20 loops=1) -> Index Scan using state_groups_state_type_idx on state_groups_state (cost=0.56..2189.40 rows=5557 width=84) (actual time=0.005..0.991 rows=1356 loops=20) Index Cond: (state_group = state.state_group) ``` to ``` Nested Loop (cost=2.83..226745.22 rows=561212 width=84) (actual time=24.194..52.834 rows=27112 loops=1) -> HashAggregate (cost=2.27..3.28 rows=101 width=8) (actual time=24.130..24.138 rows=20 loops=1) Group Key: state.state_group -> CTE Scan on state (cost=0.00..2.02 rows=101 width=8) (actual time=23.887..24.113 rows=20 loops=1) -> Index Scan using state_groups_state_type_idx on state_groups_state (cost=0.56..2189.40 rows=5557 width=84) (actual time=0.016..1.159 rows=1356 loops=20) Index Cond: (state_group = state.state_group) ``` This cuts the execution time from ~190ms to ~130ms, i.e. a reduction of ~30%. The full plans are visualised at https://explain.depesz.com/s/WpbT and https://explain.depesz.com/s/KlEk Signed-off-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
* Convert groups local and server to async/await. (#7600)Patrick Cloke2020-06-011-0/+1
|
* Don't fail all of an iteration of the device list retry loop on error (#7609)Brendan Abolivier2020-06-011-0/+1
| | | Without this patch, if an error happens which isn't caught by `user_device_resync`, then `_maybe_retry_device_resync` would fail, without retrying the next users in the iteration. This patch fixes this so that it now only logs an error in this case.
* Use upsert when inserting read receipts (#7607)Dagfinn Ilmari Mannsåker2020-06-011-0/+1
| | | | | Fixes #7469 Signed-off-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
* Update OpenBSD installation instructions (#7587)hashashini2020-05-301-0/+1
| | | | Synapse was added to the ports tree in Nov, 2019 by Renaud Allard (https://marc.info/?l=openbsd-ports&m=157417848805329). With the release of OpenBSD 6.7 on May 22, 2020 a pre-compiled binary is available as well.
* Fix 'FederationGroupsRoomsServlet' API when group has room server is not in. ↵Erik Johnston2020-05-291-0/+1
| | | | (#7599)
* Make inflight background metrics more efficient. (#7597)Erik Johnston2020-05-291-0/+1
| | | Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
* Add entry to set dependency against psql service (#7591)David Rio Deiros2020-05-281-0/+1
|
* Merge pull request #7584 from matrix-org/erikj/save_and_send_fed_token_in_bgErik Johnston2020-05-271-0/+1
|\ | | | | Speed up processing of federation stream RDATA rows.
| * NewsfileErik Johnston2020-05-271-0/+1
| |
| * 1.14.0rc2Brendan Abolivier2020-05-274-4/+0
| |
| * Fix sample config docs error (#7581)Jason Robinson2020-05-271-0/+1
| | | | | | | | | | | | 'client_auth_method' commented out value was erronously 'client_auth_basic', when code and docstring says it should be 'client_secret_basic'. Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * Fix specifying cache factors via env vars with * in name. (#7580)Erik Johnston2020-05-271-0/+1
| | | | | | | | | | This mostly applise to `*stateGroupCache*` and co. Broke in #6391.
| * Don't apply cache factor to event cache. (#7578)Erik Johnston2020-05-271-0/+1
| | | | | | | | This is already correctly done when we instansiate the cache, but wasn't when it got reloaded (which always happens at least once on startup).
| * Ensure ReplicationStreamer is always started when replication enabled. (#7579)Erik Johnston2020-05-271-0/+1
| | | | | | Fixes #7566.
* | allow emails to be passed through SAML (#7385)Christopher Cooper2020-05-271-0/+1
| | | | | | Signed-off-by: Christopher Cooper <cooperc@ocf.berkeley.edu>
* | Fix incorrect placeholder syntax in database prepartion code (#7575)Andrew Morgan2020-05-271-0/+1
| | | | | | We were using `logger` syntax which isn't supported by `Exception`s.
* | Merge branch 'develop' of github.com:matrix-org/synapse into developBrendan Abolivier2020-05-261-0/+1
|\ \ | |/ |/|
| * Convert identity handler to async/await. (#7561)Patrick Cloke2020-05-261-0/+1
| |
* | 1.14.0Brendan Abolivier2020-05-2675-75/+0
|/
* Replace device_27_unique_idx bg update with a fg one (#7562)Richard van der Hoff2020-05-261-0/+1
| | | | | | The bg update never managed to complete, because it kept being interrupted by transactions which want to take a lock. Just doing it in the foreground isn't that bad, and is a good deal simpler.
* Fix incorrect exception handling in KeyUploadServlet.on_POST (#7563)Richard van der Hoff2020-05-261-0/+1
| | | Introduced in #7556
* Fix recording of federation stream token (#7564)Richard van der Hoff2020-05-261-0/+1
| | | | | | | | A couple of changes of significance: * remove the `_last_ack < federation_position` condition, so that updates will still be correctly processed after restart * Correctly wire up send_federation_ack to the right class.
* Simplify reap_monthly_active_users (#7558)Richard van der Hoff2020-05-231-0/+1
| | | | | | we can use `make_in_list_sql_clause` rather than doing our own half-baked equivalent, which has the benefit of working just fine with empty lists. (This has quite a lot of tests, so I think it's pretty safe)
* Optimise some references to hs.config (#7546)Richard van der Hoff2020-05-221-0/+1
| | | These are surprisingly expensive, and we only really need to do them at startup.
* Fix missing CORS headers on OPTION responses (#7560)Erik Johnston2020-05-221-0/+1
| | | Broke in #7534.
* Add option to move event persistence off master (#7517)Erik Johnston2020-05-221-0/+1
|
* Return 200 OK for all OPTIONS requests (#7534)Patrick Cloke2020-05-221-0/+1
|
* Add ability to wait for replication streams (#7542)Erik Johnston2020-05-221-0/+1
| | | | | | | The idea here is that if an instance persists an event via the replication HTTP API it can return before we receive that event over replication, which can lead to races where code assumes that persisting an event immediately updates various caches (e.g. current state of the room). Most of Synapse doesn't hit such races, so we don't do the waiting automagically, instead we do so where necessary to avoid unnecessary delays. We may decide to change our minds here if it turns out there are a lot of subtle races going on. People probably want to look at this commit by commit.
* Convert sending mail to async/await. (#7557)Erik Johnston2020-05-221-0/+1
| | | | Mainly because sometimes the email push code raises exceptions where the stack traces have gotten lost, which is hopefully fixed by this.
* Use a non-empty RelayState for user interactive auth with SAML. (#7552)Patrick Cloke2020-05-221-0/+1
|
* On upgrade room only send canonical alias once. (#7547)Erik Johnston2020-05-221-0/+1
| | | | | | | | Instead of doing a complicated dance of deleting and moving aliases one by one, which sends a canonical alias update into the old room for each one, lets do it all in one go. This also changes the function to move *all* local alias events to the new room, however that happens later on anyway.
* Fix exception reporting due to HTTP request errors. (#7556)Erik Johnston2020-05-221-0/+1
| | | | These are business as usual errors, rather than stuff we want to log at error.
* synapse.metrics: implement detailed memory usage reporting on PyPy (#7536)Ivan Shapovalov2020-05-221-0/+1
| | | | | | PyPy's gc.get_stats() returns an object containing detailed allocator statistics which could be beneficial to collect as metrics. Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
* Refresh apt cache when building dh_virtualenv docker image (#7555)Richard van der Hoff2020-05-221-0/+1
| | | | | | When we tried to build debs for 1.13.0, the build failed because docker used a base docker image which had a stale apt cache. Fixes: #7540
* Fix stacktrace mangling in `patch_inline_callbacks` (#7554)Richard van der Hoff2020-05-221-0/+1
| | | `Failure()` is more cunning than `Failure(e)`.
* mypy for synapse.http.site (#7553)Richard van der Hoff2020-05-221-0/+1
|
* Fix some DETECTED VIOLATIONS in the config file (#7550)Richard van der Hoff2020-05-221-0/+1
| | | consistency ftw
* Retry to sync out of sync device lists (#7453)Brendan Abolivier2020-05-211-0/+1
| | | | | | | | | | | When a call to `user_device_resync` fails, we don't currently mark the remote user's device list as out of sync, nor do we retry to sync it. https://github.com/matrix-org/synapse/pull/6776 introduced some code infrastructure to mark device lists as stale/out of sync. This commit uses that code infrastructure to mark device lists as out of sync if processing an incoming device list update makes the device handler realise that the device list is out of sync, but we can't resync right now. It also adds a looping call to retry all failed resync every 30s. This shouldn't cause too much spam in the logs as this commit also removes the "Failed to handle device list update for..." warning logs when catching `NotRetryingDestination`. Fixes #7418
* Stub out GET presence requests in the frontend proxy (#7545)Richard van der Hoff2020-05-211-0/+1
| | | | | We don't really make any promises about returning accurate presence data when presence is disabled, so we may as well just return a static response, rather than making the master handle a request.
* Ensure worker config exists in systemd service (#7528)David Vo2020-05-211-0/+1
|
* Fix bug in persist events when dealing with non member types. (#7548)Erik Johnston2020-05-211-0/+1
| | | | | `_is_server_still_joined` will throw if it is given state updates with non-user ID state keys with local user leaves. This is actually rarely a problem since local leaves almost always get persisted by themselves. (I discovered this on a branch that was otherwise broken, so I haven't seen this in the wild)
* Remove Ubuntu Cosmic and Disco which are both EOL. (#7539)Patrick Cloke2020-05-201-0/+1
|
* Hash passwords earlier in the password reset process (#7538)Patrick Cloke2020-05-201-0/+1
| | | | This now matches the logic of the registration process as modified in 56db0b1365965c02ff539193e26c333b7f70d101 / #7523.
* Minor clarifications to the TURN docs (#7533)Richard van der Hoff2020-05-201-0/+1
|
* synctl warns when no process is stopped and avoids start (#6598)Romain Bouyé2020-05-191-0/+1
| | | | | | * If an error occurs when stopping a process synctl now logs a warning. * During a restart, synctl will avoid attempting to start Synapse if an error occurs during stopping Synapse.
* Omit displayname or avatar_url if they aren't set instead of returning null ↵Aaron Raimist2020-05-191-0/+1
| | | | | | | | | (#7497) Per https://github.com/matrix-org/matrix-doc/issues/1436#issuecomment-410089470 they should be omitted instead of returning null or "". They aren't marked as required in the spec. Fixes https://github.com/matrix-org/synapse/issues/7333 Signed-off-by: Aaron Raimist <aaron@raim.ist>
* Allow ReplicationRestResource to be added to workers (#7515)Erik Johnston2020-05-181-0/+1
| | | This allows workers to talk to each other over HTTP replication.
* Merge pull request #7519 from matrix-org/rav/kill_py2_codeRichard van der Hoff2020-05-181-0/+1
|\ | | | | Kill off some old python 2 code
| * changelogRichard van der Hoff2020-05-151-0/+1
| |
* | fix mypy for tests/replication (#7518)Richard van der Hoff2020-05-181-0/+1
| |
* | Add type hints to room member handlers (#7513)Patrick Cloke2020-05-151-0/+1
| |
* | Fix limit logic for AccountDataStream (#7384)Richard van der Hoff2020-05-151-0/+1
| | | | | | | | | | | | Make sure that the AccountDataStream presents complete updates, in the right order. This is much the same fix as #7337 and #7358, but applied to a different stream.
* | Support UI Authentication for OpenID Connect accounts (#7457)Patrick Cloke2020-05-151-0/+1
| |
* | Add a worker store for search insertion. (#7516)Erik Johnston2020-05-151-0/+1
| | | | | | | | | | This is required as both event persistence and the background update needs access to this function. It should be perfectly safe for two workers to write to that table at the same time.
* | Prevent 0-member/null room_version rooms from appearing in group room ↵Andrew Morgan2020-05-151-0/+1
| | | | | | | | queries (#7465)
* | Move event stream handling out of slave store. (#7491)Erik Johnston2020-05-151-0/+1
| | | | | | | | | | This allows us to have the logic on both master and workers, which is necessary to move event persistence off master. We also combine the instantiation of ID generators from DataStore and slave stores to the base worker stores. This allows us to select which process writes events independently of the master/worker splits.
* | Add type hints to event_auth code. (#7505)Patrick Cloke2020-05-151-0/+1
| |
* | Fix a small typo in the arguments of simple_update in ↵Andrew Morgan2020-05-151-0/+1
| | | | | | | | update_remote_profile_cache (#7511)
* | Formatting for reverse-proxy docs (#7514)Richard van der Hoff2020-05-151-0/+1
|/ | | also a small clarification to nginx
* Add Caddy 2 example (#7463)Jeff Peeler2020-05-151-0/+1
| | | | | | | | | | The specific headers that are passed using this new configuration format are Host and X-Forwarded-For, which should be all that's required. Note that for production another matcher should be added in the first section to properly handle the base_url lookup: reverse_proxy /.well-known/matrix/* http://localhost:8008 Signed-off-by: Jeff Peeler <jpeeler@gmail.com>
* Update the room member handler to use async/await. (#7507)Patrick Cloke2020-05-151-0/+1
|
* Implement room version 6 (MSC2240). (#7506)Patrick Cloke2020-05-151-0/+1
|
* Ignore incoming presence updates when presence is disabled (#7508)Andrew Morgan2020-05-151-0/+1
|
* Strictly enforce canonicaljson requirements in a new room version (#7381)Patrick Cloke2020-05-141-0/+1
|
* Enforce MSC2209: auth rules for notifications in power level event (#7502)Patrick Cloke2020-05-141-0/+1
| | | | In a new room version, the "notifications" key of power level events are subject to restricted auth rules.
* Workaround for failure to wrap reason in Failure (#7473)Andrew Morgan2020-05-141-0/+1
|
* Fix b'GET' in prometheus metrics (#7503)Richard van der Hoff2020-05-141-0/+1
|
* Allow expired accounts to logout (#7443)Andrew Morgan2020-05-141-0/+1
|
* Move EventStream handling into default ReplicationDataHandler (#7493)Erik Johnston2020-05-141-0/+1
| | | This is so that the logic can happen on both master and workers when we move event persistence out.
* Add `instance_map` config and route replication calls (#7495)Erik Johnston2020-05-141-0/+1
|
* Allow censoring of events to happen on workers. (#7492)Erik Johnston2020-05-131-0/+1
| | | This is safe as we can now write to cache invalidation stream on workers, and is required for when we move event persistence off master.
* Fix copypasted comment (#7477)Paul Tötterman2020-05-131-0/+1
| | | Signed-off-by: Paul Tötterman <paul.totterman@iki.fi>
* Clean up replication unit tests. (#7490)Erik Johnston2020-05-131-0/+1
|
* Shuffle persist event data store functions. (#7440)Erik Johnston2020-05-131-0/+1
| | | | | | | | | | The aim here is to get to a stage where we have a `PersistEventStore` that holds all the write methods used during event persistence, so that we can take that class out of the `DataStore` mixin and instansiate it separately. This will allow us to instansiate it on processes other than master, while also ensuring it is only available on processes that are configured to write to events stream. This is a bit of an architectural change, where we end up with multiple classes per data store (rather than one per data store we have now). We end up having: 1. Storage classes that provide high level APIs that can talk to multiple data stores. 2. Data store modules that consist of classes that must point at the same database instance. 3. Classes in a data store that can be instantiated on processes depending on config.
* Have all instances correctly respond to REPLICATE command. (#7475)Erik Johnston2020-05-131-0/+1
| | | | | Before all streams were only written to from master, so only master needed to respond to `REPLICATE` commands. Before all instances wrote to the cache invalidation stream, but didn't respond to `REPLICATE`. This was a bug, which could lead to missed rows from cache invalidation stream if an instance is restarted, however all the caches would be empty in that case so it wasn't a problem.
* Fix Redis reconnection logic (#7482)Erik Johnston2020-05-131-0/+1
| | | Proactively send out `POSITION` commands (as if we had just received a `REPLICATE`) when we connect to Redis. This is important as other instances won't notice we've connected to issue a `REPLICATE` command (unlike for direct TCP connections). This is only currently an issue if master process reconnects without restarting (if it restarts then it won't have written anything and so other instances probably won't have missed anything).
* Update documentation about SSO mapping providers (#7458)Patrick Cloke2020-05-121-0/+1
|
* Fix new flake8 errors (#7470)Erik Johnston2020-05-121-0/+1
|
* Convert federation handler to async/await. (#7459)Patrick Cloke2020-05-111-0/+1
|
* Convert search code to async/await. (#7460)Patrick Cloke2020-05-111-0/+1
|
* Allow configuration of Synapse's cache without using synctl or environment ↵Amber Brown2020-05-111-0/+1
| | | | variables (#6391)
* Remove unused store method get_hosts_in_room (#7448)Andrew Morgan2020-05-111-0/+1
|
* Merge branch 'release-v1.13.0' into developAndrew Morgan2020-05-11138-138/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release-v1.13.0: Don't UPGRADE database rows RST indenting Put rollback instructions in upgrade notes Fix changelog typo Oh yeah, RST Absolute URL it is then Fix upgrade notes link Provide summary of upgrade issues in changelog. Fix ) Move next version notes from changelog to upgrade notes Changelog fixes 1.13.0rc1 Documentation on setting up redis (#7446) Rework UI Auth session validation for registration (#7455) Fix errors from malformed log line (#7454) Drop support for redis.dbid (#7450)
| * 1.13.0rc1Andrew Morgan2020-05-11142-142/+0
| |
| * Documentation on setting up redis (#7446)Neil Johnson2020-05-111-0/+1
| |
| * Rework UI Auth session validation for registration (#7455)Patrick Cloke2020-05-081-0/+1
| | | | | | | | Be less strict about validation of UI authentication sessions during registration to match client expecations.
| * Fix errors from malformed log line (#7454)Richard van der Hoff2020-05-071-0/+1
| |
| * Drop support for redis.dbid (#7450)Richard van der Hoff2020-05-071-0/+1
| | | | | | Since we only use pubsub, the dbid is irrelevant.
* | Extend spam checker to allow for multiple modules (#7435)Andrew Morgan2020-05-081-0/+1
| |
* | Implement OpenID Connect-based login (#7256)Quentin Gliech2020-05-081-0/+1
| |
* | Add room details admin endpoint (#7317)Manuel Stahl2020-05-071-0/+1
| |
* | Merge branch 'release-v1.13.0' into developBrendan Abolivier2020-05-074-0/+4
|\|
| * Add a configuration setting for the dummy event threshold (#7422)Brendan Abolivier2020-05-071-0/+1
| | | | | | Add dummy_events_threshold which allows configuring the number of forward extremities a room needs for Synapse to send forward extremities in it.
| * Improve per-block CPU and DB usage metrics (#7426)Patrick Cloke2020-05-061-0/+1
| |
| * Port group attestation renewal slow down from matrix-org-hotfixes (#7442)Andrew Morgan2020-05-061-0/+1
| |
| * Make redis go faster with hiredis (#7439)Richard van der Hoff2020-05-061-0/+1
| | | | | | | | | | For the record, the reason we need this is as follows: each RDATA command comes down the redis pipe as a subscription message. txredisapi as written needs at least three reactor ticks to read each subscription message from the tcp buffer. Hence, once the process gets loaded, it starts getting behind, and eventually redis knifes the connection. it then takes ages for the master to work its way through the backlog, before it reconnects again, during which any commands from any workers are dropped.
* | Fixes typo (bellow -> below) (#7449)Patrick Cloke2020-05-071-0/+1
| |
* | Add more type hints to SAML handler. (#7445)Patrick Cloke2020-05-071-0/+1
| |
* | Support any process writing to cache invalidation stream. (#7436)Erik Johnston2020-05-071-0/+1
| |
* | Merge pull request #7398 from Starbix/alpine-3.11Brendan Abolivier2020-05-071-0/+1
|\ \ | | | | | | Update docker runtime image to Alpine v3.11
| * | Update runtime docker image to Alpine v3.11Cédric Laubacher2020-05-031-0/+1
| | |
* | | Merge branch 'release-v1.13.0' into developRichard van der Hoff2020-05-063-0/+3
|\ \ \ | | |/ | |/|
| * | Stop Auth methods from polling the config on every req. (#7420)Andrew Morgan2020-05-061-0/+1
| | |
| * | Merge pull request #7423 from matrix-org/erikj/faster_device_lists_fetchErik Johnston2020-05-061-0/+1
| |\ \ | | | | | | | | Speed up fetching device lists changes in sync.
| | * \ Merge branch 'release-v1.13.0' into erikj/faster_device_lists_fetchRichard van der Hoff2020-05-0511-0/+11
| | |\ \
| | * | | Update changelog.d/7423.miscRichard van der Hoff2020-05-051-1/+1
| | | | |
| | * | | NewsfileErik Johnston2020-05-051-0/+1
| | | | |
| * | | | Merge branch 'release-v1.13.0' into rav/fix_dropped_messagesRichard van der Hoff2020-05-051-0/+1
| |\ \ \ \
| * \ \ \ \ Merge branch 'release-v1.13.0' into rav/fix_dropped_messagesRichard van der Hoff2020-05-0511-0/+11
| |\ \ \ \ \ | | | |_|/ / | | |/| | |
| * | | | | changelogRichard van der Hoff2020-05-051-0/+1
| | |_|/ / | |/| | |
* | | | | Merge pull request #7428 from matrix-org/rav/cross_signing_keys_cacheRichard van der Hoff2020-05-061-0/+1
|\ \ \ \ \ | | | | | | | | | | | | Make get_e2e_cross_signing_key delegate to get_e2e_cross_signing_keys_bulk
| * | | | | Make get_e2e_cross_signing_key delegate to get_e2e_cross_signing_keys_bulkRichard van der Hoff2020-05-061-0/+1
| | |_|/ / | |/| | | | | | | | | | | | | ... mostly because the latter has a cache.
* | | | | Merge branch 'release-v1.13.0' into developRichard van der Hoff2020-05-063-0/+3
|\| | | |
| * | | | Move logs about discarded RDATA to debug (#7421)Brendan Abolivier2020-05-051-0/+1
| | |/ / | |/| |
| * | | Add backwards compatibility codepath to LoggingContext. (#7408)Patrick Cloke2020-05-051-0/+1
| | | |
| * | | Fix bug in EventContext.deserialize. (#7393)Erik Johnston2020-05-051-0/+1
| | | | | | | | | | | | | | | | This caused `prev_state_ids` to be incorrect if the state event was not replacing an existing state entry.
* | | | Merge branch 'develop' into rav/upsert_for_device_listRichard van der Hoff2020-05-0614-1/+14
|\ \ \ \
| * | | | Fix typing annotations in synapse/federation (#7382)Richard van der Hoff2020-05-052-1/+2
| | | | | | | | | | | | | | | | | | | | We're pretty close to having mypy working for `synapse.federation`, so let's finish the job.
| * | | | Fix catchup-on-reconnect for the Federation Stream (#7374)Richard van der Hoff2020-05-051-0/+1
| | | | | | | | | | | | | | | | | | | | looks like we managed to break this during the refactorathon.
| * | | | Add MultiWriterIdGenerator. (#7281)Erik Johnston2020-05-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will be used to coordinate stream IDs across multiple writers. Functions as the equivalent of both `StreamIdGenerator` and `SlavedIdTracker`.
| * | | | Merge branch 'release-v1.13.0' into developBrendan Abolivier2020-05-042-0/+2
| |\| | |
| | * | | Merge pull request #7404 from matrix-org/babolivier/fix_manifestBrendan Abolivier2020-05-041-0/+1
| | |\ \ \ | | | | | | | | | | | | Fix MANIFEST.in
| | | * | | Fix MANIFEST.inBrendan Abolivier2020-05-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An update of check-manifest shone some light on some issues with MANIFEST.in, specifically that we didn't ignore/prune the contrib directory, and that we were using prune instead of exclude for files. This fixes both issues. Fixes #7403
| | * | | | Fix redis password support. (#7401)Erik Johnston2020-05-041-0/+1
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | We forgot to set the password on the subscriber connection, as well as not calling super methods for overridden connectionMade/connectionLost functions.
| * / | | Convert the room handler to async/await. (#7396)Patrick Cloke2020-05-041-0/+1
| |/ / /
| * | | Convert synapse.server_notices to async/await. (#7394)Patrick Cloke2020-05-011-0/+1
| | | |
| * | | Convert the synapse.notifier module to async/await. (#7395)Patrick Cloke2020-05-011-0/+1
| | | |
| * | | Wait for current_state_events_membership before populate_stats_process_rooms ↵Richard van der Hoff2020-05-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (#7387) populate_stats_process_rooms was added in #5971 / v1.4.0; current_state_events_membership was added in #5706 / v1.3.0. Fixes #7380.
| * | | Thread through instance name to replication client. (#7369)Erik Johnston2020-05-011-0/+1
| |/ / | | | | | | For in memory streams when fetching updates on workers we need to query the source of the stream, which currently is hard coded to be master. This PR threads through the source instance we received via `POSITION` through to the update function in each stream, which can then be passed to the replication client for in memory streams.
| * | Use `stream.current_token()` and remove `stream_positions()` (#7172)Erik Johnston2020-05-011-0/+1
| | | | | | | | | | | | We move the processing of typing and federation replication traffic into their handlers so that `Stream.current_token()` points to a valid token. This allows us to remove `get_streams_to_replicate()` and `stream_positions()`.
| * | async/await is_server_admin (#7363)Andrew Morgan2020-05-011-0/+1
| | |
| * | Further improvements to requesting the public rooms list on a homeserver ↵Andrew Morgan2020-05-011-0/+1
| |/ | | | | | | which has it set to private (#7368)
* / use an upsert to update device_lists_outbound_last_successRichard van der Hoff2020-05-061-0/+1
|/
* Workaround for assertion errors from db_query_to_update_function (#7378)Richard van der Hoff2020-05-011-0/+1
| | | Hopefully this is no worse than what we have on master...
* Persist user interactive authentication sessions (#7302)Patrick Cloke2020-04-301-0/+1
| | | | | By persisting the user interactive authentication sessions to the database, this fixes situations where a user hits different works throughout their auth session and also allows sessions to persist through restarts of Synapse.
* Apply federation check for /publicRooms with filter list (#7367)Andrew Morgan2020-04-301-0/+1
|
* Add instance name to RDATA/POSITION commands (#7364)Erik Johnston2020-04-291-0/+1
| | | | | This is primarily for allowing us to send those commands from workers, but for now simply allows us to ignore echoed RDATA/POSITION commands that we sent (we get echoes of sent commands when using redis). Currently we log a WARNING on the master process every time we receive an echoed RDATA.
* Don't relay REMOTE_SERVER_UP cmds to same conn. (#7352)Erik Johnston2020-04-291-0/+1
| | | | | | | | | | | | | | For direct TCP connections we need the master to relay REMOTE_SERVER_UP commands to the other connections so that all instances get notified about it. The old implementation just relayed to all connections, assuming that sending back to the original sender of the command was safe. This is not true for redis, where commands sent get echoed back to the sender, which was causing master to effectively infinite loop sending and then re-receiving REMOTE_SERVER_UP commands that it sent. The fix is to ensure that we only relay to *other* connections and not to the connection we received the notification from. Fixes #7334.
* Fix limit logic for EventsStream (#7358)Richard van der Hoff2020-04-291-0/+1
| | | | | | | | | | | | | | | | | | | * Factor out functions for injecting events into database I want to add some more flexibility to the tools for injecting events into the database, and I don't want to clutter up HomeserverTestCase with them, so let's factor them out to a new file. * Rework TestReplicationDataHandler This wasn't very easy to work with: the mock wrapping was largely superfluous, and it's useful to be able to inspect the received rows, and clear out the received list. * Fix AssertionErrors being thrown by EventsStream Part of the problem was that there was an off-by-one error in the assertion, but also the limit logic was too simple. Fix it all up and add some tests.
* Fix fallback value for account_threepid_delegates.email (#7316)Andrew Morgan2020-04-291-0/+1
|
* Clean up admin api docs (#7361)Andrew Morgan2020-04-281-0/+1
|
* Return total number of users and profile attributes in admin users endpoint ↵Manuel Stahl2020-04-281-0/+1
| | | | | (#6881) Signed-off-by: Manuel Stahl <manuel.stahl@awesome-technologies.de>
* Add some replication tests (#7278)Erik Johnston2020-04-281-0/+1
| | | | | | | Specifically some tests for the typing stream, which means we test streams that fetch missing updates via HTTP (rather than via the DB). We also shuffle things around a bit so that we create two separate `HomeServer` objects, rather than trying to insert a slaved store into places. Note: `test_typing.py` is heavily inspired by `test_receipts.py`
* Fix collation for postgres for unit tests (#7359)Richard van der Hoff2020-04-281-0/+1
| | | | When running the UTs against a postgres deatbase, we need to set the collation correctly.
* Run replication streamers on workers (#7146)Erik Johnston2020-04-281-0/+1
| | | Currently we never write to streams from workers, but that will change soon
* Fix incorrect metrics reporting for renew_attestations (#7344)Richard van der Hoff2020-04-271-0/+1
| | | | We need to wait for the renewals to finish, so that the metrics are correctly reported.
* Document monitoring workers (#7357)Brendan Abolivier2020-04-271-0/+1
| | | It doesn't seem to be documented anywhere and means that you suddenly start losing metrics without any obvious reason when you go from monolith to workers (e.g. #7312).
* Add some explanation to application_services.md (#7091)lub2020-04-271-0/+1
| | | Signed-off-by: Simon Körner <git@lubiland.de>
* Don't crash when one of the configuration files is empty (#7341)Brendan Abolivier2020-04-271-0/+1
| | | | | If the admin adds a `.yaml` file that's either empty or doesn't parse into a dict to a config directory (e.g. `conf.d` for debs installs), stuff like https://github.com/matrix-org/synapse/issues/7322 would happen. This PR checks that the file is correctly parsed into a dict, or ignores it with a warning if it parses into any other type (including `None` for empty files). Fixes https://github.com/matrix-org/synapse/issues/7322
* Add documentation to the sample config about the templates for SSO. (#7343)Patrick Cloke2020-04-241-0/+1
|
* Convert some of the federation handler methods to async/await. (#7338)Patrick Cloke2020-04-241-0/+1
|
* changelogRichard van der Hoff2020-04-241-0/+1
|
* Revert "Revert "Merge pull request #7315 from ↵Brendan Abolivier2020-04-231-0/+1
| | | | | | matrix-org/babolivier/request_token"" This reverts commit 1adf6a55870aa08de272591ff49db9dc49738076.
* Stop the master relaying USER_SYNC for other workers (#7318)Richard van der Hoff2020-04-221-0/+1
| | | | | | | Long story short: if we're handling presence on the current worker, we shouldn't be sending USER_SYNC commands over replication. In an attempt to figure out what is going on here, I ended up refactoring some bits of the presencehandler code, so the first 4 commits here are non-functional refactors to move this code slightly closer to sanity. (There's still plenty to do here :/). Suggest reviewing individual commits. Fixes (I hope) #7257.
* Fix replication metrics when using redis (#7325)Erik Johnston2020-04-221-0/+1
|
* Merge tag 'v1.12.4rc1' into developRichard van der Hoff2020-04-225-5/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.12.4rc1 (2020-04-22) ============================== Features -------- - Always send users their own device updates. ([\#7160](https://github.com/matrix-org/synapse/issues/7160)) - Add support for handling GET requests for `account_data` on a worker. ([\#7311](https://github.com/matrix-org/synapse/issues/7311)) Bugfixes -------- - Fix a bug that prevented cross-signing with users on worker-mode synapses. ([\#7255](https://github.com/matrix-org/synapse/issues/7255)) - Do not treat display names as globs in push rules. ([\#7271](https://github.com/matrix-org/synapse/issues/7271)) - Fix a bug with cross-signing devices belonging to remote users who did not share a room with any user on the local homeserver. ([\#7289](https://github.com/matrix-org/synapse/issues/7289))
| * 1.12.4rc1Richard van der Hoff2020-04-225-5/+0
| |
* | Another go at fixing one-word commands (#7326)Richard van der Hoff2020-04-221-0/+1
| | | | | | I messed this up last time I tried (#7239 / e13c6c7).
* | fix changelog nameRichard van der Hoff2020-04-221-0/+0
| |
* | Extend StreamChangeCache to support multiple entities per stream ID (#7303)Richard van der Hoff2020-04-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | First some background: StreamChangeCache is used to keep track of what "entities" have changed since a given stream ID. So for example, we might use it to keep track of when the last to-device message for a given user was received [1], and hence whether we need to pull any to-device messages from the database on a sync [2]. Now, it turns out that StreamChangeCache didn't support more than one thing being changed at a given stream_id (this was part of the problem with #7206). However, it's entirely valid to send to-device messages to more than one user at a time. As it turns out, this did in fact work, because *some* methods of StreamChangeCache coped ok with having multiple things changing on the same stream ID, and it seems we never actually use the methods which don't work on the stream change caches where we allow multiple changes at the same stream ID. But that feels horribly fragile, hence: let's update StreamChangeCache to properly support this, and add some typing and some more tests while we're at it. [1]: https://github.com/matrix-org/synapse/blob/release-v1.12.3/synapse/storage/data_stores/main/deviceinbox.py#L301 [2]: https://github.com/matrix-org/synapse/blob/release-v1.12.3/synapse/storage/data_stores/main/deviceinbox.py#L47-L51
* | Extend room admin api with additional attributes (#7225)Dirk Klimpel2020-04-221-0/+1
| |
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-222-0/+2
|\|
| * Do not treat display names as globs for push rules. (#7271)Patrick Cloke2020-04-221-0/+1
| |
| * Query missing cross-signing keys on local sig upload (#7289)Andrew Morgan2020-04-221-0/+1
| |
| * Fix changelog fileRichard van der Hoff2020-04-212-1/+1
| | | | | | | | I updated the PR and forgot to update the changelog.
| * Support GET account_data requests on a worker (#7311)Richard van der Hoff2020-04-211-0/+1
| |
* | Add ability to run replication protocol over redis. (#7040)Erik Johnston2020-04-221-0/+1
| | | | | | This is configured via the `redis` config options.
* | Reduce logging verbosity of URL cache cleanup. (#7295)Michael Kaye2020-04-221-0/+1
| |
* | import urllib.parse when using urllib.parse.quote (#7319)Andrew Morgan2020-04-221-0/+1
| |
* | Reduce federation logging on success (#7321)Michael Kaye2020-04-221-0/+1
| | | | | | | | Splitting based on the response code means we can avoid double logging here and identical information from line 164 while still logging at info if we don't get a good response and need to retry.
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-201-1/+0
|\|
| * Revert "Query missing cross-signing keys on local sig upload"Richard van der Hoff2020-04-201-1/+0
| | | | | | | | | | | | This was incorrectly merged to the release branch before it was ready. This reverts commit 72fe2affb6ac86d433b80b6452da57052365aa26.
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-201-0/+1
|\|
| * Always send the user updates to their own device list (#7160)David Baker2020-04-201-0/+1
| |
| * Query missing cross-signing keys on local sig uploadAndrew Morgan2020-04-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add changelog Save retrieved keys to the db lint Fix and de-brittle remote result dict processing Use query_user_devices instead, assume only master, self_signing key types Make changelog more useful Remove very specific exception handling Wrap get_verify_key_from_cross_signing_key in a try/except Note that _get_e2e_cross_signing_verify_key can raise a SynapseError lint Add comment explaining why this is useful Only fetch master and self_signing key types Fix log statements, docstrings Remove extraneous items from remote query try/except lint Factor key retrieval out into a separate function Send device updates, modeled after SigningKeyEduUpdater._handle_signing_key_updates Update method docstring
| * Only register devices edu handler on the master process (#7255)Andrew Morgan2020-04-141-0/+1
| |
| * 1.12.3Richard van der Hoff2020-04-031-1/+0
| |
| * Fix the debian build in a better way. (#7212)Richard van der Hoff2020-04-031-0/+1
| |
| * 1.12.1rc1Andrew Morgan2020-03-313-3/+0
| |
| * NewsfileErik Johnston2020-03-311-0/+1
| |
| * Rewrite changelogAndrew Morgan2020-03-311-1/+1
| |
| * Add changelogAndrew Morgan2020-03-311-0/+1
| |
| * Only import sqlite3 when type checkingDavid Vo2020-03-311-0/+1
| | | | | | | | | | Fixes: #7127 Signed-off-by: David Vo <david@vovo.id.au>
* | Fix indention in generated config file (#7300)Lars Franke2020-04-201-0/+1
| | | | | | | | | | | | Also adjust sample_config.yaml Signed-off-by: Lars Franke <frcl@mailbox.org>
* | Reject unknown UI auth sessions (instead of silently generating a new one) ↵Patrick Cloke2020-04-201-0/+1
| | | | | | | | (#7268)
* | On catchup, process each row with its own stream id (#7286)Richard van der Hoff2020-04-201-0/+1
| | | | | | | | | | | | Other parts of the code (such as the StreamChangeCache) assume that there will not be multiple changes with the same stream id. This code was introduced in #7024, and I hope this fixes #7206.
* | Use a template for the SSO success page to allow for customization. (#7279)Patrick Cloke2020-04-171-0/+1
| |
* | Added explicit Python build tools to snap requirements (#7213)James2020-04-171-0/+1
| | | | | | Signed-off-by: James Hebden <james@ec0.io>
* | Improve type checking in `replication.tcp.Stream` (#7291)Richard van der Hoff2020-04-171-0/+1
| | | | | | | | | | | | | | The general idea here is to get rid of the type: ignore annotations on all of the current_token and update_function assignments, which would have caught #7290. After a bit of experimentation, it seems like the least-awful way to do this is to pass the offending functions in as parameters to the Stream constructor. Unfortunately that means that the concrete implementations no longer have the same constructor signature as Stream itself, which means that it gets hard to correctly annotate STREAMS_MAP. I've also introduced a couple of new types, to take out some duplication.
* | Clarify the comments for media_storage_providers options (#7272)Tristan Lins2020-04-171-0/+1
| |
* | Do not treat display names as globs for push rules. (#7271)Patrick Cloke2020-04-161-0/+1
| |
* | Fix 'generator object is not subscriptable' error (#7290)Richard van der Hoff2020-04-161-0/+1
| | | | | | | | | | | | Some of the query functions return generators rather than lists, so we can't index into the result. Happily we already have a copy of the results. (think this was introduced in #7024)
* | Convert auth handler to async/await (#7261)Patrick Cloke2020-04-151-0/+1
| |
* | Add notes to the changelog about an additional SSO template. (#7259)Patrick Cloke2020-04-151-0/+1
| |
* | Allow specifying the value of Accept-Language header for URL previews (#7265)Andrew Morgan2020-04-151-0/+1
| |
* | Fix a potentially-huge sql query (#7274)Richard van der Hoff2020-04-151-0/+1
| | | | | | | | | | We could end up looking up tens of thousands of events, which could cause large amounts of data to be logged to the postgres log.
* | Fix the parameters of a test fixture (#7243)Zay11Zay2020-04-141-0/+1
| |
* | Only register devices edu handler on the master process (#7255)Andrew Morgan2020-04-141-0/+1
| |
* | Add setting to nginx configuration to allow larger file uploads (#7251)Ryan Hovland2020-04-131-0/+1
| |
* | Check on room creation if the user is allowed to publish the room to the ↵PeerD2020-04-131-0/+1
| | | | | | | | room directory. (#7260)
* | Default PL100 to enable encryption in a room (#7230)Andrew Morgan2020-04-091-0/+1
| |
* | Do not allow a deactivated user to login via SSO. (#7240)Patrick Cloke2020-04-091-0/+1
| |
* | Unblacklist /upgrade creates a new room (#7228)Andrew Morgan2020-04-091-0/+1
| | | | | | | | | | | | This commit was originally merged in #7228 but reverted in #7254 as the associated sytest was not ready yet. Now that it is, we can merge this again.
* | Add matrix-synapse-shared-secret-auth as an example password provider (#7248)Andrew Morgan2020-04-091-0/+1
| |
* | Revert "Unblacklist /upgrade creates a new room (#7228)" (#7254)Andrew Morgan2020-04-091-1/+0
| | | | | | This reverts commit 59f0ca8b87c15a314859d94978d90a8aa0e7543b.
* | Unblacklist /upgrade creates a new room (#7228)Andrew Morgan2020-04-091-0/+1
| |
* | Fix --help commandline argument (#7249)Richard van der Hoff2020-04-091-0/+1
| | | | | | | | | | | | | | | | I don't really remember why this was so complicated; I think it dates back to the time when we had to instantiate the Config classes before we could call `add_arguments` - ie before #5597. In any case, I don't think there's a good reason for it any more, and the impact of it being complicated is that `--help` doesn't work correctly.
* | Make it clearer to the user that they haven't overridden onLogin/Register ↵Andrew Morgan2020-04-091-0/+1
| | | | | | | | (#7237)
* | Upgrade jQuery to 3.x on fallback login/registration screens (#7236)Andrew Morgan2020-04-091-0/+1
| |
* | Remove redundant checks on `daemonize` from synctl (#7233)Richard van der Hoff2020-04-081-0/+1
| | | | | | | | | | We pass --daemonize on the commandline, which (since at least #4853) overrides whatever the config file, so there is no need for it to be set in the config file.
* | Make systemd-with-workers doc official (#7234)Richard van der Hoff2020-04-081-0/+1
| | | | | | | | Simplify and update this documentation, and make it part of the core dist.
* | Fix changelog for #7235Brendan Abolivier2020-04-082-1/+1
| |
* | Add documentation to password_providers config option (#7238)Andrew Morgan2020-04-081-0/+1
| |
* | bg update to clear out duplicate outbound_device_list_pokes (#7193)Richard van der Hoff2020-04-071-0/+1
| | | | | | | | We seem to have some duplicates, which could do with being cleared out.
* | Merge pull request #7239 from matrix-org/rav/replication_cleanupRichard van der Hoff2020-04-071-0/+1
|\ \ | | | | | | Miscellaneous cleanups to replication code
| * | changelogRichard van der Hoff2020-04-071-0/+1
| | |
* | | Convert delete_url_cache_media to async/await. (#7241)Patrick Cloke2020-04-071-0/+1
| | |
* | | Add typing information to federation_server. (#7219)Patrick Cloke2020-04-071-0/+1
| | |
* | | Fix typo in the login fallback javascript (#7235)Brendan Abolivier2020-04-071-0/+1
|/ / | | | | | | | | * Fix typo in the login fallback javascript * Changelog
* | Remove sent outbound device list pokes from the database (#7192)Richard van der Hoff2020-04-071-0/+1
| | | | | | They just get in the way.
* | Fix race in replication (#7226)Erik Johnston2020-04-071-0/+1
| | | | | | | | Fixes a race between handling `POSITION` and `RDATA` commands. We do this by simply linearizing handling of them.
* | Move server command handling out of TCP protocol (#7187)Erik Johnston2020-04-071-0/+1
| | | | | | This completes the merging of server and client command processing.
* | Remove stream before/after debug log lines (#7207)Andrew Morgan2020-04-061-0/+1
| |
* | Improve error responses when a remote server doesn't allow you to access its ↵Andrew Morgan2020-04-061-0/+1
| | | | | | | | public rooms list (#6899)
* | Move client command handling out of TCP protocol (#7185)Erik Johnston2020-04-061-0/+1
| | | | | | The aim here is to move the command handling out of the TCP protocol classes and to also merge the client and server command handling (so that we can reuse them for redis protocol). This PR simply moves the client paths to the new `ReplicationCommandHandler`, a future PR will move the server paths too.
* | Server notices: Dissociate room creation/lookup from invite (#7199)Brendan Abolivier2020-04-041-0/+1
| | | | | | | | | | | | | | | | | | Fixes #6815 Before figuring out whether we should alert a user on MAU, we call get_notice_room_for_user to get some info on the existing server notices room for this user. This function, if the room doesn't exist, creates it and invites the user in it. This means that, if we decide later that no server notice is needed, the user gets invited in a room with no message in it. This happens at every restart of the server, since the room ID returned by get_notice_room_for_user is cached. This PR fixes that by moving the inviting bit to a dedicated function, that's only called when the server actually needs to send a notice to the user. A potential issue with this approach is that the room that's created by get_notice_room_for_user doesn't match how that same function looks for an existing room (i.e. it creates a room that doesn't have an invite or a join for the current user in it, so it could lead to a new room being created each time a user syncs), but I'm not sure this is a problem given it's cached until the server restarts, so that function won't run very often. It also renames get_notice_room_for_user into get_or_create_notice_room_for_user to make what it does clearer.
* | Support CAS in UI Auth flows. (#7186)Patrick Cloke2020-04-031-0/+1
| |
* | Extend web_client_location to handle absolute URLs (#7006)Martin Milata2020-04-031-0/+1
| | | | | | | | | | Log warning when filesystem path is used. Signed-off-by: Martin Milata <martin@martinmilata.cz>
* | Add some benchmarks for LruCache (#6446)Amber Brown2020-04-031-0/+1
| |
* | Convert http.HTTPStatus objects to their int equivalent (#7188)Andrew Morgan2020-04-031-0/+1
| |
* | Reduce the number of calls to `resource.getrusage` (#7183)Richard van der Hoff2020-04-031-0/+1
| | | | | | Let's just call `getrusage` once on each logcontext change, rather than twice.
* | Merge pull request #7190 from matrix-org/rav/one_bg_update_at_a_timeRichard van der Hoff2020-04-031-0/+1
|\ \ | | | | | | Only run one background update at a time