summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Cache user IDs instead of profile objects (#13573)Nick Mills-Barrett2022-08-235-54/+57
| | |/ | | | | | | The profile objects are never used and increase cache size significantly.
| | * Fix that sending server notices fail if avatar is `None` (#13566)Dirk Klimpel2022-08-234-4/+64
| | | | | | | | | Indroduced in #11846.
| | * Fix Prometheus metrics being negative (mixed up start/end) (#13584)Eric Eastwood2022-08-234-2/+22
| | | | | | | | | | | | | | | | | | | | | Fix: - https://github.com/matrix-org/synapse/pull/13535#discussion_r949582508 - https://github.com/matrix-org/synapse/pull/13533#discussion_r949577244
| | * `synapse.api.auth.Auth` cleanup: make permission-related methods use ↵Quentin Gliech2022-08-2226-208/+203
| | | | | | | | | | | | | | | | | | | | | | | | | | | `Requester` instead of the `UserID` (#13024) Part of #13019 This changes all the permission-related methods to rely on the Requester instead of the UserID. This is a first step towards enabling scoped access tokens at some point, since I expect the Requester to have scope-related informations in it. It also changes methods which figure out the user/device/appservice out of the access token to return a Requester instead of something else. This avoids having store-related objects in the methods signatures.
| | * Remove redundant opentracing spans for `/sendToDevice` and `/keys/upload` ↵Andrew Morgan2022-08-223-4/+3
| | | | | | | | | | | | (#13574)
| | * MSC2716v4 room version - remove namespace from MSC2716 event content fields ↵Eric Eastwood2022-08-195-24/+25
| | | | | | | | | | | | | | | | | | | | | | | | (#13551) Complement PR: https://github.com/matrix-org/complement/pull/450 As suggested in https://github.com/matrix-org/matrix-spec-proposals/pull/2716#discussion_r941444525
| | * Implement MSC3852: Expose `last_seen_user_agent` to users for their own ↵Andrew Morgan2022-08-198-2/+153
| | | | | | | | | | | | devices; also expose to Admin API (#13549)
| | * Register homeserver modules when creating test homeserver (#13558)Andrew Morgan2022-08-195-22/+15
| | |
| | * Reduce the number of tests using TCP replication. (#13543)Patrick Cloke2022-08-196-77/+36
| | | | | | | | | | | | Uses Redis replication in additional test cases (instead of TCP replication). A small step towards dropping TCP replication.
| | * Fix validation problem that occurs when a user tries to deactivate their ↵reivilibre2022-08-193-3/+19
| | | | | | | | | | | | account or change their password. (#13563)
* | | Remove debug logsEric Eastwood2022-08-181-4/+0
| | |
* | | Some cleanupEric Eastwood2022-08-183-3/+6
| | |
* | | Merge branch 'madlittlemods/11850-migrate-to-opentelemetry' into ↵Eric Eastwood2022-08-18127-3255/+5487
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | madlittlemods/13356-messages-investigation-scratch-v1 Conflicts: synapse/federation/federation_client.py synapse/handlers/federation.py synapse/handlers/federation_event.py synapse/logging/tracing.py synapse/storage/controllers/persist_events.py synapse/storage/controllers/state.py synapse/storage/databases/main/events_worker.py synapse/util/ratelimitutils.py
| * | Merge branch 'develop' into madlittlemods/11850-migrate-to-opentelemetryEric Eastwood2022-08-18132-3249/+5621
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: poetry.lock synapse/federation/federation_client.py synapse/federation/federation_server.py synapse/handlers/federation.py synapse/handlers/federation_event.py synapse/logging/opentracing.py synapse/rest/client/room.py synapse/storage/controllers/persist_events.py synapse/storage/controllers/state.py
| | * Add metrics to track `/messages` response time by room size (#13545)Eric Eastwood2022-08-182-2/+54
| | | | | | | | | | | | | | | Follow-up to https://github.com/matrix-org/synapse/pull/13533 Part of https://github.com/matrix-org/synapse/issues/13356
| | * Fix incorrect juggling of logging contexts in `_PerHostRatelimiter` (#13554)Sean Quah2022-08-182-10/+8
| | | | | | | | | | | | | | | | | | Signed-off-by: Sean Quah <seanq@matrix.org> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| | * Track number of hosts affected by the rate limiter (#13541)Eric Eastwood2022-08-182-4/+40
| | | | | | | | | | | | | | | | | | | | | Track number of hosts affected by the rate limiter so we can differentiate one really noisy homeserver from a general ratelimit tuning problem across the federation. Follow-up to https://github.com/matrix-org/synapse/pull/13534 Part of https://github.com/matrix-org/synapse/issues/13356
| | * Add support for compression to federation responses (#13537)Ayush Anand2022-08-183-2/+6
| | | | | | | | | | | | | | | | | | Closes #13415. Signed-off-by: Ayush Anand <iamayushanand@gmail.com>
| | * Avoid blocking lazy-loading `/sync`s during partial joins (#13477)Sean Quah2022-08-183-34/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use a state filter or accept partial state in a few places where we request state, to avoid blocking. To make lazy-loading `/sync`s work, we need to provide the memberships of event senders, which are not guaranteed to be in the room state. Instead we dig through auth events for memberships to present to clients. The auth events of an event are guaranteed to contain a passable membership event, otherwise the event would have been rejected. Note that this only covers the common code paths encountered during testing. There has been no exhaustive checking of all sync code paths. Fixes #13146. Signed-off-by: Sean Quah <seanq@matrix.org>
| | * Add metrics to track how the rate limiter is affecting requests ↵Eric Eastwood2022-08-172-8/+30
| | | | | | | | | | | | | | | | | | | | | (sleep/reject) (#13534) Related to https://github.com/matrix-org/synapse/pull/13499 Part of https://github.com/matrix-org/synapse/issues/13356
| | * Fix a bug in the `/event_reports` Admin API which meant that the total count ↵reivilibre2022-08-173-0/+34
| | | | | | | | | | | | | | | could be larger than the number of results you can actually query for. (#13525) Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
| | * A first pass at pruning the Synapse README (#13491)David Robertson2022-08-173-347/+194
| | |
| | * Fix breaking event sending due to bad push rule (#13547)Erik Johnston2022-08-172-1/+13
| | | | | | | | | | | | | | | | | | | | | Broke by #13522 It looks like we have some rules in the DB with a priority class less than 0 that don't override the base rules. Before these were just dropped, but #13522 made that a hard error.
| | * Reject non-strict types in Pydantic models (#13502)David Robertson2022-08-174-1/+440
| | |
| | * Fix a typo in docs and in some warnings (#13538)Antonin Loubiere2022-08-175-4/+5
| | |
| | * Add forgotten status to Room Details API (#13503)Dirk Klimpel2022-08-176-1/+101
| | |
| | * Add metrics to track rate limiter queue timing (#13544)Eric Eastwood2022-08-172-0/+31
| | |
| | * Time how long it takes us to do backfill processing (#13535)Eric Eastwood2022-08-173-16/+90
| | |
| | * Add specific metric to time long-running `/messages` requests (#13533)Eric Eastwood2022-08-172-0/+33
| | |
| | * Instrument the federation/backfill part of `/messages` (#13489)Eric Eastwood2022-08-1611-33/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | Instrument the federation/backfill part of `/messages` so it's easier to follow what's going on in Jaeger when viewing a trace. Split out from https://github.com/matrix-org/synapse/pull/13440 Follow-up from https://github.com/matrix-org/synapse/pull/13368 Part of https://github.com/matrix-org/synapse/issues/13356
| | * Merge branch 'master' into developAndrew Morgan2022-08-163-2/+14
| | |\
| | | * Note explicitly that #11365 was reverted in the 1.65 CHANGELOGAndrew Morgan2022-08-161-1/+1
| | | |
| | | * 1.65.0 v1.65.0Andrew Morgan2022-08-163-1/+13
| | | |
| | * | Refuse to start when `faster_joins` is enabled on a worker deployment (#13531)Sean Quah2022-08-162-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | Synapse does not currently support faster room joins on deployments with workers. Signed-off-by: Sean Quah <seanq@matrix.org>
| | * | Add missing links in `user_consent` section of configuration manual (#13536)Dirk Klimpel2022-08-162-2/+3
| | | | | | | | | | | | Signed-off-by: Dirk Klimpel <dirk@klimpel.org>
| | * | Faster room joins: make `/joined_members` block whilst the room is partial ↵reivilibre2022-08-164-1/+22
| | | | | | | | | | | | | | | | stated. (#13514)
| | * | Make push rules use proper structures. (#13522)Erik Johnston2022-08-168-333/+494
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This improves load times for push rules: | Version | Time per user | Time for 1k users | | -------------------- | ------------- | ----------------- | | Before | 138 µs | 138ms | | Now (with custom) | 2.11 µs | 2.11ms | | Now (without custom) | 49.7 ns | 0.05 ms | This therefore has a large impact on send times for rooms with large numbers of local users in the room.
| | * | Use Pydantic to systematically validate a first batch of endpoints in ↵David Robertson2022-08-1510-92/+296
| | | | | | | | | | | | | | | | `synapse.rest.client.account`. (#13188)
| | * | Add a warning to retention documentation regarding the possibility of ↵Shay2022-08-153-2/+9
| | | | | | | | | | | | | | | | database corruption (#13497)
| | * | Instrument `FederationStateIdsServlet` - `/state_ids` (#13499)Eric Eastwood2022-08-155-2/+21
| | | | | | | | | | | | Instrument FederationStateIdsServlet - `/state_ids` so it's easier to follow what's going on in Jaeger when viewing a trace.
| | * | Revert "Update locked versions of mypy and mypy-zope (#13521)"David Robertson2022-08-157-60/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f383b9b3eceaa082d5ae690550fe41460b711779. Other PRs were seeing mypy failures that looked to be related to mypy-zope. Confusingly, we didn't see this on #13521. Revert this for now and investigate later.
| | * | Clarifications for event push action processing. (#13485)Patrick Cloke2022-08-153-21/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Clarifies comments. * Fixes an erroneous comment (about return type) added in #13455 (ec24813220f9d54108924dc04aecd24555277b99). * Clarifies the name of a variable. * Simplifies logic of pulling out the latest join for the requesting user.
| | * | Update locked versions of mypy and mypy-zope (#13521)David Robertson2022-08-157-73/+60
| | | |
| | * | Update grafana dashboardRichard van der Hoff2022-08-131-1805/+2695
| | | |
| | * | Document that the `DOCKER_BUILDKIT=1` flag is needed to build the docker ↵reivilibre2022-08-122-1/+2
| | | | | | | | | | | | | | | | image. (#13515)
| | * | Add `openssl` example for registration HMAC (#13472)James Barton2022-08-112-2/+20
| | | | | | | | | | | | Signed-off-by: James Barton <james@neodon.com>
| | * | Add note to `redaction_retention_period` documentation mentioning that event ↵Andrew Morgan2022-08-112-0/+5
| | | | | | | | | | | | | | | | purging runs at most every 5m (#13492)
| | * | Add viewport directive to HTML templates to optimise for mobile (#13493)Germain2022-08-1131-47/+140
| | | |
| | * | Merge branch 'release-v1.65' into developOlivier Wilkinson (reivilibre)2022-08-114-1/+17
| | |\|
| | | * 1.65.0rc2 v1.65.0rc2Olivier Wilkinson (reivilibre)2022-08-114-2/+16
| | | |
| | | * Revert 'Remove the unspecced field in the response. (#13365)' to give more ↵reivilibre2022-08-112-0/+2
| | | | | | | | | | | | | | | | time for clients to update. (#13501)
| | * | Update the rejected state of events during resync (#13459)Richard van der Hoff2022-08-114-9/+66
| | | | | | | | | | | | | | | | | | | | Events can be un-rejected or newly-rejected during resync, so ensure we update the database and caches when that happens.
| | * | Use literals in place of `HTTPStatus` constants in tests (#13488)Dirk Klimpel2022-08-1012-447/+177
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use literals in place of `HTTPStatus` constants in tests * newsfile * code style * code style
| | * | Add some miscellaneous comments around sync (#13474)Sean Quah2022-08-103-40/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add some miscellaneous comments to document sync, especially around `compute_state_delta`. Signed-off-by: Sean Quah <seanq@matrix.org> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
* | | | Refactor from feedbackEric Eastwood2022-08-151-4/+3
| | | | | | | | | | | | | | | | From feedback in https://github.com/matrix-org/synapse/pull/13499
* | | | More tracingEric Eastwood2022-08-119-16/+35
| | | |
* | | | Instrument FederationStateIdsServletEric Eastwood2022-08-106-2/+19
| | | |
* | | | Trace some resultsEric Eastwood2022-08-096-17/+55
| | | |
* | | | Merge branch 'madlittlemods/11850-migrate-to-opentelemetry' into ↵Eric Eastwood2022-08-0999-1001/+1665
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | madlittlemods/13356-messages-investigation-scratch-v1 Conflicts: pyproject.toml synapse/logging/tracing.py
| * | | Merge branch 'develop' into madlittlemods/11850-migrate-to-opentelemetryEric Eastwood2022-08-0999-1040/+1748
| |\| | | | | | | | | | | | | | | | | | | | | | Conflicts: synapse/logging/opentracing.py tests/logging/test_opentracing.py
| | * | Allow use of both `@trace` and `@tag_args` stacked on the same function (#13453)Eric Eastwood2022-08-093-56/+186
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ```py @trace @tag_args async def get_oldest_event_ids_with_depth_in_room(...) ... ``` Before this PR, you would see a warning in the logs and the span was not exported: ``` 2022-08-03 19:11:59,383 - synapse.logging.opentracing - 835 - ERROR - GET-0 - @trace may not have wrapped EventFederationWorkerStore.get_oldest_event_ids_with_depth_in_room correctly! The function is not async but returned a coroutine. ```
| | * | Use literals in place of `HTTPStatus` constants in tests (#13479)Dirk Klimpel2022-08-0912-141/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace - `HTTPStatus.NOT_FOUND` - `HTTPStatus.FORBIDDEN` - `HTTPStatus.UNAUTHORIZED` - `HTTPStatus.CONFLICT` - `HTTPStatus.CREATED` Signed-off-by: Dirk Klimpel <dirk@klimpel.org>
| | * | Merge branch 'release-v1.65' into developOlivier Wilkinson (reivilibre)2022-08-0952-51/+81
| | |\|
| | | * Fix changelog mistakeOlivier Wilkinson (reivilibre)2022-08-091-2/+1
| | | |
| | | * Tweak the changelog v1.65.0rc1Olivier Wilkinson (reivilibre)2022-08-091-6/+6
| | | |
| | | * 1.65.0rc1Olivier Wilkinson (reivilibre)2022-08-0952-51/+82
| | | |
| | * | Strengthen tests about deleted old push actions. (#13471)Patrick Cloke2022-08-092-0/+16
| | |/
| | * Make the configuration for the cache clearer (#13481)Dirk Klimpel2022-08-092-4/+6
| | |
| | * Update matrix-synapse-ldap3 version in lockfile to v0.2.2. (#13470)Shay2022-08-082-12/+14
| | |
| | * Use literals in place of `HTTPStatus` constants in tests (#13469)Dirk Klimpel2022-08-0813-331/+329
| | |
| | * Correct a misnamed argument in state res v2 (#13467)David Robertson2022-08-082-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In state res v2, we apply two passes of iterative auth checks. The first pass replays power events and events in their auth chains, but only those belonging to the full conflicted set. The source code as written suggests that we want only those belonging to the auth difference (which is a smaller set of events). At runtime we were doing the correct thing anyway, because the only callsite of `_reverse_topological_power_sort` passes in the `full_conflicted_set`. So this really is just a rename.
| | * Support stable identifiers for MSC2285: private read receipts. (#13273)Šimon Brandner2022-08-0514-94/+246
| | | | | | | | | | | | | | | This adds support for the stable identifiers of MSC2285 while continuing to support the unstable identifiers behind the configuration flag. These will be removed in a future version.
| | * Use literals in place of `HTTPStatus` constants in tests (#13463)Dirk Klimpel2022-08-0518-191/+172
| | |
| | * Mark token-authenticaticated-registration API as not-experimental (#11897)Julian-Samuel Gebühr2022-08-052-3/+4
| | |
| | * Update module API "update room membership" method to allow for remote joins ↵Matt C2022-08-053-4/+34
| | | | | | | | | | | | | | | | | | (#13441) Co-authored-by: MattC <buffless-matt@users.noreply.github.com> Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
| | * Add comments about how event push actions are stored. (#13445)Erik Johnston2022-08-042-0/+62
| | |
| | * Fix `@tag_args` being off-by-one (ahead) (#13452)Eric Eastwood2022-08-042-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix @tag_args being off-by-one (ahead) Example: ``` argspec.args=[ 'self', 'room_id' ] args=( <synapse.storage.databases.main.DataStore object at 0x10d0b8d00>, '!HBehERstyQBxyJDLfR:my.synapse.server' ) ``` --- The previous logic was also flawed and we can end up in a situation like this: ``` argspec.args=['self', 'dest', 'room_id', 'limit', 'extremities'] args=(<synapse.federation.federation_client.FederationClient object at 0x7f1651c18160>, 'hs1', '!jAEHKIubyIfuLOdfpY:hs1') ``` From this source: ```py async def backfill( self, dest: str, room_id: str, limit: int, extremities: Collection[str] ) -> Optional[List[EventBase]]: ``` And this usage: ```py events = await self._federation_client.backfill( dest, room_id, limit=limit, extremities=extremities ) ``` which would previously cause this error: ``` synapse_main | 2022-08-04 06:13:12,051 - synapse.handlers.federation - 424 - ERROR - GET-5 - Failed to backfill from hs1 because tuple index out of range synapse_main | Traceback (most recent call last): synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/handlers/federation.py", line 392, in try_backfill synapse_main | await self._federation_event_handler.backfill( synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/logging/tracing.py", line 828, in _wrapper synapse_main | return await func(*args, **kwargs) synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/handlers/federation_event.py", line 593, in backfill synapse_main | events = await self._federation_client.backfill( synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/logging/tracing.py", line 828, in _wrapper synapse_main | return await func(*args, **kwargs) synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/logging/tracing.py", line 827, in _wrapper synapse_main | with wrapping_logic(func, *args, **kwargs): synapse_main | File "/usr/local/lib/python3.9/contextlib.py", line 119, in __enter__ synapse_main | return next(self.gen) synapse_main | File "/usr/local/lib/python3.9/site-packages/synapse/logging/tracing.py", line 922, in _wrapping_logic synapse_main | set_attribute("ARG_" + arg, str(args[i + 1])) # type: ignore[index] synapse_main | IndexError: tuple index out of range ```
| | * Improve comments (& avoid a duplicate query) in push actions processing. ↵Patrick Cloke2022-08-042-124/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | (#13455) * Adds docstrings and inline comments. * Formats SQL queries using triple quoted strings. * Minor formatting changes. * Avoid fetching `event_push_summary_stream_ordering` multiple times in the same transactions.
| | * Update type of `EventContext.rejected` (#13460)Richard van der Hoff2022-08-043-5/+5
| | |
| | * Faster Room Joins: prevent Synapse from answering federated join requests ↵reivilibre2022-08-043-0/+35
| | | | | | | | | | | | for a room which it has not fully joined yet. (#13416)
| | * Optimise async get event lookups (#13435)Nick Mills-Barrett2022-08-044-8/+87
| | | | | | | | | | | | | | | | | | Still maintains local in memory lookup optimisation, but does any external lookup as part of the deferred that prevents duplicate lookups for the same event at once. This makes the assumption that fetching from an external cache is a non-zero load operation.
| | * Update some outdated information on `sso_mapping_providers.md` (#13449)Dirk Klimpel2022-08-042-6/+9
| | |
| | * Fix return value in example on `password_auth_provider_callbacks.md` (#13450)Dirk Klimpel2022-08-042-2/+3
| | | | | | | | | | | | | | | Fixes: #12534 Signed-off-by: Dirk Klimpel <dirk@klimpel.org>
| | * synapse-workers docker: copy nginx and redis in from base images (#13447)Richard van der Hoff2022-08-043-36/+60
| | | | | | | | | Part of my continuing quest to make the docker images build quicker: copy nginx and redis in from base docker images, rather than apt installing each time.
| | * Add module API method to create a room (#13429)Matt C2022-08-043-0/+103
| | | | | | | | | | | | Co-authored-by: MattC <buffless-matt@users.noreply.github.com> Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
| | * Fix rooms not being properly excluded from incremental sync (#13408)Brendan Abolivier2022-08-043-10/+37
| | |
| * | Try fix Twisted/treq problemsEric Eastwood2022-08-042-11/+19
| | | | | | | | | | | | See https://github.com/matrix-org/synapse/pull/13400#discussion_r937213304
* | | Only set attribute if going forwardEric Eastwood2022-08-081-1/+2
| | |
* | | Fix some lints (mistakes) and better trace when fetching eventsEric Eastwood2022-08-063-11/+27
| | |
* | | Add length to the list of eventsEric Eastwood2022-08-062-4/+10
| | |
* | | More tracing for federationEric Eastwood2022-08-065-10/+25
| | |
* | | More tracing for federated sideEric Eastwood2022-08-058-52/+116
| | |
* | | Trace moreEric Eastwood2022-08-045-5/+11
| | |
* | | Allow @trace and @tag_args to be used togetherEric Eastwood2022-08-032-51/+96
| | |
* | | Fix @tag_args being one-off (ahead)Eric Eastwood2022-08-031-1/+1
| | |
* | | Move Twisted git install where it was beforeEric Eastwood2022-08-031-1/+1
| | |
* | | Merge branch 'madlittlemods/11850-migrate-to-opentelemetry' into ↵Eric Eastwood2022-08-0328-176/+213
|\| | | | | | | | | | | madlittlemods/13356-messages-investigation-scratch-v1
| * | Update docs/tracing.mdEric Eastwood2022-08-032-26/+22
| | |
| * | Fix tracing imports after merging in developEric Eastwood2022-08-0311-15/+15
| | |
| * | Revert "Update treq to match minimum Twisted Python versions"Eric Eastwood2022-08-032-17/+12
| | | | | | | | | | | | This reverts commit 270db429cd8bd05032ddde0a4b48da811dd26276.
| * | Update treq to match minimum Twisted Python versionsEric Eastwood2022-08-032-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | Hopefully fix https://github.com/matrix-org/synapse/runs/7645395562?check_suite_focus=true#step:7:6727 ``` builtins.ImportError: cannot import name '_PY3' from 'twisted.python.compat' (unknown location) ```
| * | Merge branch 'develop' into madlittlemods/11850-migrate-to-opentelemetryEric Eastwood2022-08-0332-113/+183
| |\| | | | | | | | | | | | | | | | Conflicts: docs/usage/configuration/config_documentation.md synapse/api/auth.py
| | * Add some tracing spans to give insight into local joins (#13439)Shay2022-08-033-33/+40
| | |
| | * Instrument `/messages` for understandable traces in Jaeger (#13368)Eric Eastwood2022-08-0311-1/+32
| | | | | | | | | | | | | | | | | | In Jaeger: - Before: huge list of uncategorized database calls - After: nice and collapsible into units of work
| | * Return 404 or member list when getting joined_members after leaving (#13374)andrew do2022-08-033-2/+20
| | | | | | | | | | | | | | | | | | Signed-off-by: Andrew Doh <andrewddo@gmail.com> Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Andrew Morgan <andrewm@element.io> Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
| | * Install cryptography build dependencies in requirements image. (#13372)Jasper Spaans2022-08-032-1/+3
| | |
| | * Improve documentation on becoming server admin (#13230)jejo862022-08-032-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improved section regarding server admin Added steps describing how to elevate an existing user to administrator by manipulating a `postgres` database. Signed-off-by: jejo86 28619134+jejo86@users.noreply.github.com * Improved section regarding server admin * Reference database settings Add instructions to check database settings to find out the database name, instead of listing all available PostgreSQL databases. * Add suggestions from PR conversation Replace config filename `homeserver.yaml`. with "config file". Remove instructions to switch to `postgres` user. Add instructions how to connect to SQLite database. * Update changelog.d/13230.doc Co-authored-by: reivilibre <olivier@librepush.net>
| | * Update doc for setting `macaroon_secret_key` (#13443)Dirk Klimpel2022-08-032-3/+8
| | | | | | | | | | | | | | | * Update doc for setting `macaroon_secret_key` * newsfile
| | * Rename `RateLimitConfig` to `RatelimitSettings` (#13442)Dirk Klimpel2022-08-035-29/+30
| | |
| | * Add module API method to resolve a room alias to a room ID (#13428)Matt C2022-08-033-0/+44
| | | | | | | | | | | | Co-authored-by: MattC <buffless-matt@users.noreply.github.com> Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
| | * Remove 'Contents' section from the Configuration Manual (#13438)Dirk Klimpel2022-08-032-43/+1
| | | | | | | | | Fixes: #13053
| | * Fix wrong headline for `url_preview_accept_language` in docs (#13437)Dirk Klimpel2022-08-032-1/+2
| | | | | | | | | Fixes: #13433
| * | Use latested Twisted from source to fix contextvar issues causing OTEL ↵Eric Eastwood2022-08-034-38/+37
| | | | | | | | | | | | | | | | | | `Failed to detach context` errors See https://github.com/matrix-org/synapse/pull/13400#discussion_r936195492
* | | Fix imports after OTEL changesEric Eastwood2022-08-028-8/+8
| | |
* | | Merge branch 'madlittlemods/instrument-messages-tracing' into ↵Eric Eastwood2022-08-0210-2/+30
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | madlittlemods/13356-messages-investigation-scratch-v1 Conflicts: synapse/api/auth.py
| * | | Instrument /messages for understandable tracesEric Eastwood2022-07-2210-2/+30
| | | |
* | | | Trace in ComplementEric Eastwood2022-08-021-0/+18
| |/ / |/| |
* | | Fix table missing columnEric Eastwood2022-08-023-3/+7
| | |
* | | Fix remnantEric Eastwood2022-08-021-1/+1
| | |
* | | Fix lintsEric Eastwood2022-08-022-6/+4
| | |
* | | Move to 72 schema versionEric Eastwood2022-08-021-3/+1
| | | | | | | | | | | | | | | Do as they tell us: https://github.com/matrix-org/synapse/runs/7639487550?check_suite_focus=true
* | | Merge branch 'develop' into madlittlemods/11850-migrate-to-opentelemetryEric Eastwood2022-08-02146-743/+1558
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/usage/configuration/config_documentation.md synapse/logging/opentracing.py Got changes from: - https://github.com/matrix-org/synapse/pull/13362/files
| * | Add a `merge-back` command to the release script, which automates merging ↵reivilibre2022-08-022-0/+77
| | | | | | | | | | | | the correct branches after a release. (#13393)
| * | Fix error when out of servers to sync partial state with (#13432)Sean Quah2022-08-022-2/+4
| | | | | | | | | | | | | | | so that we raise the intended error instead. Signed-off-by: Sean Quah <seanq@matrix.org>
| * | Merge branch 'master' into developOlivier Wilkinson (reivilibre)2022-08-024-2/+33
| |\ \
| | * | Mention specific version in rc2 notes v1.64.0Olivier Wilkinson (reivilibre)2022-08-021-1/+1
| | | |
| | * | Add upgrade notesOlivier Wilkinson (reivilibre)2022-08-021-0/+10
| | | |
| | * | 1.64.0Olivier Wilkinson (reivilibre)2022-08-023-1/+22
| | | |
| * | | Faster Room Joins: don't leave a stuck room partial state flag if the join ↵reivilibre2022-08-013-15/+140
| | | | | | | | | | | | | | | | fails. (#13403)
| * | | Fix missing import in `federation_event` handler. (#13431)Patrick Cloke2022-08-012-0/+2
| | | | | | | | | | | | | | | | #13404 removed an import of `Optional` which was still needed due to #13413 added more usages.
| * | | Refactor `_resolve_state_at_missing_prevs` to return an `EventContext` (#13404)Sean Quah2022-08-015-86/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, `_resolve_state_at_missing_prevs` returned the resolved state before an event and a partial state flag. These were unwieldy to carry around would only ever be used to build an event context. Build the event context directly instead. Signed-off-by: Sean Quah <seanq@matrix.org>
| * | | Enable Complement CI tests in the 'latest deps' test run. (#13213)reivilibre2022-08-014-5/+58
| | | | | | | | | | | | Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
| * | | Re-enable running Complement tests against Synapse with workers. (#13420)reivilibre2022-08-012-24/+4
| | | |
| * | | Faster joins: fix rejected events becoming un-rejected during resync (#13413)Richard van der Hoff2022-08-013-6/+32
| | | | | | | | | | | | | | | | | | | | Make sure that we re-check the auth rules during state resync, otherwise rejected events get un-rejected.
| * | | Merge tag 'v1.64.0rc2' into developRichard van der Hoff2022-07-2914-268/+438
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.64.0rc2 (2022-07-29) ============================== This RC reintroduces support for `account_threepid_delegates.email`, which was removed in 1.64.0rc1. It remains deprecated and will be removed altogether in a future release. ([\#13406](https://github.com/matrix-org/synapse/issues/13406))
| | * | update changelog v1.64.0rc2Richard van der Hoff2022-07-291-5/+2
| | | |
| | * | 1.64.0rc2Richard van der Hoff2022-07-294-2/+16
| | | |
| | * | Revert "Drop support for delegating email validation (#13192)" (#13406)3nprob2022-07-2912-266/+425
| | | | | | | | | | | | | | | | | | | | Reverts commit fa71bb18b527d1a3e2629b48640ea67fff2f8c59, and tweaks documentation. Signed-off-by: 3nprob <git@3n.anonaddy.com>
| * | | Explicitly mention which resources support compression in the config guide ↵Brendan Abolivier2022-07-292-1/+3
| | | | | | | | | | | | | | | | (#13221)
| * | | Use stable prefixes for MSC3827: filtering of `/publicRooms` by room type ↵Šimon Brandner2022-07-277-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | (#13370) Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
| * | | Add missing type hints for tests.unittest. (#13397)Patrick Cloke2022-07-276-52/+66
| | | |
| * | | Implement MSC3848: Introduce errcodes for specific event sending failures ↵Will Hunt2022-07-2711-36/+144
| | | | | | | | | | | | | | | | | | | | (#13343) Implements MSC3848
| * | | Make minor clarifications to the error messages given when we fail to join a ↵reivilibre2022-07-274-3/+17
| | | | | | | | | | | | | | | | room via any server. (#13160)
| * | | Fix `get_pdu` asking every remote destination even after it finds an event ↵Eric Eastwood2022-07-272-3/+4
| | | | | | | | | | | | | | | | (#13346)
| * | | Copy room serials before handling in `get_new_events_as` (#13392)Nick Mills-Barrett2022-07-262-3/+11
| | | |
| * | | Extend the release script to automatically push a new SyTest branch, rather ↵reivilibre2022-07-262-32/+55
| | | | | | | | | | | | | | | | | | | | than having that be a manual process. (#12978) Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
| * | | Merge branch 'release-v1.64' into developOlivier Wilkinson (reivilibre)2022-07-2673-73/+95
| |\| |
| | * | Explain less-known term 'Implicit TLS' v1.64.0rc1Olivier Wilkinson (reivilibre)2022-07-261-1/+1
| | | |
| | * | Tweak changelog in response to reviewOlivier Wilkinson (reivilibre)2022-07-261-9/+7
| | | |
| | * | Tweak changelogOlivier Wilkinson (reivilibre)2022-07-261-9/+11
| | | |
| | * | 1.64.0rc1Olivier Wilkinson (reivilibre)2022-07-2673-73/+95
| | | |
| * | | Remove the unspecced `room_id` field in the `/hierarchy` response. (#13365)Patrick Cloke2022-07-262-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `room_id` field represented the parent space for each room and was made redundant by changes in the API shape where the `children_state` is now nested underneath each `room`. The room ID of each child is in the `state_key` field and is still available.
| * | | Fix infinite loop in partial-state resync (#13353)Richard van der Hoff2022-07-263-8/+27
| | | | | | | | | | | | | | | | | | | | Make sure that we only pull out events from the db once they have no prev-events with partial state.
| * | | Faster room joins: avoid blocking when pulling events with missing prevs ↵Sean Quah2022-07-268-33/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#13355) Avoid blocking on full state in `_resolve_state_at_missing_prevs` and return a new flag indicating whether the resolved state is partial. Thread that flag around so that it makes it into the event context. Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| * | | Remove unused argument for get_relations_for_event. (#13383)Patrick Cloke2022-07-263-9/+1
| |/ /
| * | Disable autocorrect and autocaptialisation when entering username for SSO ↵Doug2022-07-262-1/+2
| | | | | | | | | | | | | | | registration. (#13350) When registering a new account via SSO on iOS, the text field becomes pretty annoying as it autocapitalises and autocorrects your input. This PR fixes that (although I have only tested the raw HTML file on the simulator, I'm not sure how to get the complete setup available for testing in the flow).
| * | Update Caddy reverse proxy documentation (#13344)Matt Holt2022-07-252-42/+12
| | | | | | | | | | | | | | | Improve/simplify Caddy examples. Remove Caddy v1 (has long been EOL'ed) Signed-off-by: Matthew Holt <mholt@users.noreply.github.com>
| * | Support Implicit TLS for sending emails (#13317)Jan Schär2022-07-255-13/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, TLS could only be used with STARTTLS. Add a new option `force_tls`, where TLS is used from the start. Implicit TLS is recommended over STARTLS, see https://datatracker.ietf.org/doc/html/rfc8314 Fixes #8046. Signed-off-by: Jan Schär <jan@jschaer.ch>
| * | Additional fixes for opentracing type hints. (#13362)Patrick Cloke2022-07-252-2/+3
| | |
| * | Refactor presence so we can prune user in room caches (#13313)Erik Johnston2022-07-254-91/+109
| |/ | | | | | | | | | | | | | | See #10826 and #10786 for context as to why we had to disable pruning on those caches. Now that `get_users_who_share_room_with_user` is called frequently only for presence, we just need to make calls to it less frequent and then we can remove the various levels of caching that is going on.
* | Seems to (see test_side_by_side_spans)Eric Eastwood2022-08-021-1/+0
| |
* | Add changelogEric Eastwood2022-08-021-0/+1
| |
* | Update docsEric Eastwood2022-08-023-88/+83
| |
* | Clean up some opentracing text referencesEric Eastwood2022-08-0212-114/+118
| |
* | Restore logging current_context (not sure why removedEric Eastwood2022-08-021-0/+16
| |
* | End on exit is already the default expected behaviorEric Eastwood2022-08-022-2/+0
| |
* | Add test for what happens when side by side spans in with statementEric Eastwood2022-08-021-0/+18
| |
* | Always return config path for config errorEric Eastwood2022-08-021-6/+10
| |
* | More clear method namesEric Eastwood2022-08-023-9/+9
| |
* | Remove type ignore commentsEric Eastwood2022-08-021-13/+0
| | | | | | | | See https://github.com/matrix-org/synapse/pull/13400#discussion_r935887649
* | Fix lintsEric Eastwood2022-08-027-41/+38
| |
* | Revert crazy custom sampler and span process to try force tracing for usersEric Eastwood2022-08-022-149/+16
| |
* | Revert "Non-working try baggage to inherit force tracing/sampling"Eric Eastwood2022-08-021-53/+7
| | | | | | | | This reverts commit d15fa457c987f51908cdba440655a0d6d88573a9.
* | Non-working try baggage to inherit force tracing/samplingEric Eastwood2022-08-021-7/+53
| |
* | PoC force tracingEric Eastwood2022-08-024-51/+198
| | | | | | | | Doesn't force tracing for the child spans yet
* | Fix tests and some lintsEric Eastwood2022-08-014-8/+31
| |
* | Try to align read from edu contentEric Eastwood2022-08-011-2/+4
| |
* | Remove what's left of scopemanagerEric Eastwood2022-08-011-8/+1
| |
* | Implement start_active_span_from_edu for OTELEric Eastwood2022-08-016-17/+32
| | | | | | | | | | | | | | | | AFAICT, this never worked before because everything was serialized into `content["org.matrix.opentracing_context"]` but `start_active_span_from_edu` read from `content["opentracing"]`. See https://github.com/matrix-org/synapse/pull/5852#discussion_r934960586 Do we even still want this?
* | todosEric Eastwood2022-08-012-0/+6
| |
* | Fix some lintsEric Eastwood2022-08-018-63/+138
| |
* | Use HTTP_HOST attributeEric Eastwood2022-07-302-3/+2
| |
* | Use correct type for what start_as_current_span returnsEric Eastwood2022-07-291-1/+2
| | | | | | | | | | | | | | See: - https://github.com/open-telemetry/opentelemetry-python/pull/198#discussion_r333399436 - https://github.com/open-telemetry/opentelemetry-python/issues/219
* | Passing tests and context manager doesn't seem to be neededEric Eastwood2022-07-293-234/+52
| |
* | Working second test although it's a bit pointless testing whether ↵Eric Eastwood2022-07-291-12/+14
| | | | | | | | opentelemetry works
* | Move to start_active_spanEric Eastwood2022-07-298-296/+227
| |
* | Easier to follow local vs remote span tracingEric Eastwood2022-07-292-45/+99
| | | | | | | | | | | | | | | | | | | | | | | | The `incoming-federation-request` vs `process-federation_request` was first introduced in https://github.com/matrix-org/synapse/pull/11870 - Span for remote trace: `incoming-federation-request` - `child_of` reference: `origin_span_context` - `follows_from` reference: `servlet_span` - Span for local trace: `process-federation-request` - `child_of` reference: `servlet_span` (by the nature of it being active) - `follows_from` reference: `incoming-federation-request`
* | Explain weird functionEric Eastwood2022-07-291-0/+4
| |
* | Record exceptionEric Eastwood2022-07-293-6/+10
| |
* | Fix using wrong type of context (`Context` vs `SpanContext`)Eric Eastwood2022-07-291-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix error: ``` AttributeError: 'SpanContext' object has no attribute 'get' ``` `Context`: ``` {'current-span-1a226c96-a5db-4412-bcaa-1fdd34213c5c': _Span(name="sendToDevice", context=SpanContext(trace_id=0x5d2dcc3fdc8205046d60a5cd18672ac6, span_id=0x715c736ff5f4d208, trace_flags=0x01, trace_state=[], is_remote=False))} ``` `SpanContext`: ``` SpanContext(trace_id=0xf7cd9d058b7b76f364bdd649c4ba7b8a, span_id=0x287ce71bac31bfc4, trace_flags=0x01, trace_state=[], is_remote=False) ```
* | Fix invalid attribute typeEric Eastwood2022-07-292-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` Invalid type StreamToken for attribute value. Expected one of ['bool', 'str', 'bytes', 'int', 'float'] or a sequence of those types ``` Had to add a few more logs to find this instance since the warning doens't give much info where I am setting this invalid attribute. This was good enough to find it in the code. ``` BoundedAttributes __setitem__ key=since_token value=StreamToken(room_key=RoomStreamToken(topological=None, stream=1787, instance_map=frozendict.frozendict({})), presence_key=481272, typing_key=0, receipt_key=340, account_data_key=1233, push_rules_key=8, to_device_key=57, device_list_key=199, groups_key=0) BoundedAttributes __setitem__ key=now_token value=StreamToken(room_key=RoomStreamToken(topological=None, stream=1787, instance_map=frozendict.frozendict({})), presence_key=481287, typing_key=0, receipt_key=340, account_data_key=1233, push_rules_key=8, to_device_key=57, device_list_key=199, groups_key=0) BoundedAttributes __setitem__ key=token value=StreamToken(room_key=RoomStreamToken(topological=None, stream=1787, instance_map=frozendict.frozendict({})), presence_key=481291, typing_key=0, receipt_key=340, account_data_key=1237, push_rules_key=8, to_device_key=57, device_list_key=199, groups_key=0) ```
* | Fix some lintsEric Eastwood2022-07-282-2/+2
| |
* | Fixup some todosEric Eastwood2022-07-289-42/+75
| |
* | Fix some lintsEric Eastwood2022-07-274-9/+9
| |
* | We use the config for the Jaeger exporter nowEric Eastwood2022-07-271-1/+0
| |
* | Revert changes to Sentry scopes (not OTEL)Eric Eastwood2022-07-271-3/+3
| | | | | | | | See https://github.com/matrix-org/synapse/pull/13400#discussion_r931325627
* | Export to Jaeger (things are showing up)Eric Eastwood2022-07-276-51/+253
| |
* | Server runningEric Eastwood2022-07-271-3/+6
| |
* | Progress towards OTELEric Eastwood2022-07-2717-364/+200
| |
* | Some shim and some newEric Eastwood2022-07-2633-198/+233
| |
* | Migrate to OpenTelemetry tracingEric Eastwood2022-07-2637-284/+155
|/ | | | See https://github.com/matrix-org/synapse/issues/11850
* Backfill remote event fetched by MSC3030 so we can paginate from it later ↵Eric Eastwood2022-07-223-15/+94
| | | | | | | | | (#13205) Depends on https://github.com/matrix-org/synapse/pull/13320 Complement tests: https://github.com/matrix-org/complement/pull/406 We could use the same method to backfill for `/context` as well in the future, see https://github.com/matrix-org/synapse/issues/3848
* Update config_documentation.md (#13364)Richard van der Hoff2022-07-221-2/+2
| | | "changed in" goes before the example
* Update locked frozendict version to 2.3.3 (#13352)Sean Quah2022-07-223-18/+28
| | | frozendict 2.3.3 includes fixes for memory leaks that get triggered during `/sync`.
* Skip soft fail checks for rooms with partial state (#13354)Sean Quah2022-07-222-0/+11
| | | | | | | | | | | | When a room has the partial state flag, we may not have an accurate `m.room.member` event for event senders in the room's current state, and so cannot perform soft fail checks correctly. Skip the soft fail check entirely in this case. As an alternative, we could block until we have full state, but that would prevent us from receiving incoming events over federation, which is undesirable. Signed-off-by: Sean Quah <seanq@matrix.org>
* Remove old empty/redundant slaved stores. (#13349)Nick Mills-Barrett2022-07-2112-238/+63
|
* Make DictionaryCache have better expiry properties (#13292)Erik Johnston2022-07-217-43/+358
|
* Don't hold onto full state in state cache (#13324)Erik Johnston2022-07-212-15/+54
|
* Call out buildkit is required when building test docker images (#13338)Brendan Abolivier2022-07-214-0/+7
| | | Co-authored-by: David Robertson <davidr@element.io>
* Track DB txn times w/ two counters, not histogram (#13342)David Robertson2022-07-212-3/+6
|
* Add missing types to opentracing. (#13345)Patrick Cloke2022-07-2114-45/+83
| | | After this change `synapse.logging` is fully typed.
* Use cache store remove base slaved (#13329)Nick Mills-Barrett2022-07-2116-114/+39
| | | This comes from two identical definitions in each of the base stores, and means the base slaved store is now empty and can be removed.
* Merge branch 'master' into developDavid Robertson2022-07-212-0/+9
|\
| * Document `rc_invites.per_issuer`, added in v1.63.David Teller2022-07-212-0/+9
| | | | | | | | | | | | | | Resolves #13330. Missed in #13125. Signed-off-by: David Teller <davidt@element.io>
* | Update `get_pdu` to return the original, pristine `EventBase` (#13320)Eric Eastwood2022-07-205-61/+233
| | | | | | | | | | | | | | | | | | | | | | | | Update `get_pdu` to return the untouched, pristine `EventBase` as it was originally seen over federation (no metadata added). Previously, we returned the same `event` reference that we stored in the cache which downstream code modified in place and added metadata like setting it as an `outlier` and essentially poisoned our cache. Now we always return a copy of the `event` so the original can stay pristine in our cache and re-used for the next cache call. Split out from https://github.com/matrix-org/synapse/pull/13205 As discussed at: - https://github.com/matrix-org/synapse/pull/13205#discussion_r918365746 - https://github.com/matrix-org/synapse/pull/13205#discussion_r918366125 Related to https://github.com/matrix-org/synapse/issues/12584. This PR doesn't fix that issue because it hits [`get_event` which exists from the local database before it tries to `get_pdu`](https://github.com/matrix-org/synapse/blob/7864f33e286dec22368dc0b11c06eebb1462a51e/synapse/federation/federation_client.py#L581-L594).
* | Validate federation destinations and log an error if server name is invalid. ↵Shay2022-07-203-2/+12
| | | | | | | | (#13318)
* | Merge remote-tracking branch 'origin/master' into developErik Johnston2022-07-205-2/+110
|\|
| * 1.63.1 v1.63.1Erik Johnston2022-07-204-2/+16
| |
| * Don't include appservice users when calculating push rules (#13332)Erik Johnston2022-07-203-0/+93
| | | | | | This can cause a lot of extra load on servers with lots of appservice users. Introduced in #13078
* | Fix spurious warning when fetching state after a missing prev event (#13258)Sean Quah2022-07-192-0/+4
| |
* | Add type annotations to `trace` decorator. (#13328)Patrick Cloke2022-07-1912-55/+102
| | | | | | | | Functions that are decorated with `trace` are now properly typed and the type hints for them are fixed.
* | Merge branch 'master' into developBrendan Abolivier2022-07-1911-32/+55
|\|
| * Improve precision on validation improvements v1.63.0Brendan Abolivier2022-07-191-1/+1
| |
| * 1.63.0Brendan Abolivier2022-07-194-4/+13
| |
| * Remove 'anonymised' from the phone home stats documentation (#13321)Andrew Morgan2022-07-1911-30/+44
| |
* | Reduce memory usage of state group cache (#13323)Erik Johnston2022-07-192-1/+3
| |
* | Stop building Ubuntu 21.10 (Impish Indri) which is end of life. (#13326)Patrick Cloke2022-07-192-1/+1
| |
* | Bash script for creating multiple stream writers (#13271)villepeh2022-07-193-1/+147
| | | | | | | | | | Add another bash script to the contrib directory. It creates multiple stream writers and also prints out the example configuration for homeserver.yaml. Signed-off-by: Ville Petteri Huh.
* | Add notes when config options were changed to config documentation (#13314)Jörg Behrmann2022-07-192-0/+6
| | | | | | | | Signed-off-by: Jörg Behrmann <behrmann@physik.fu-berlin.de>
* | Rate limit joins per-room (#13276)David Robertson2022-07-1918-15/+498
| |
* | Safe async event cache (#13308)Nick Mills-Barrett2022-07-198-21/+102
| | | | | | | | | | | | | | | | Fix race conditions in the async cache invalidation logic, by separating the async & local invalidation calls and ensuring any async call i executed first. Signed off by Nick @ Beeper (@Fizzadar).
* | Increase batch size of `bulk_get_push_rules` and ↵Shay2022-07-183-1/+3
| | | | | | | | `_get_joined_profiles_from_event_ids`. (#13300)
* | Improve performance of query ` _get_subset_users_in_room_with_profiles` (#13299)Shay2022-07-182-1/+2
| |
* | Fix overcounting of pushers when they are replaced (#13296)Sean Quah2022-07-182-11/+17
| | | | | | | | Signed-off-by: Sean Quah <seanq@matrix.org>
* | Up the dependency on canonicaljson to ^1.5.0 (#13172)Brendan Abolivier2022-07-183-2/+5
| | | | | | Co-authored-by: David Robertson <davidr@element.io>
* | Prevent #3679 from appearing in blame results (#13311)Andrew Morgan2022-07-182-0/+14
| |
* | Revert "Make all `process_replication_rows` methods async (#13304)" (#13312)Erik Johnston2022-07-1814-40/+25
| | | | | | This reverts commit 5d4028f217f178fcd384d5bfddd92225b4e78c51.
* | Don't pull out full state when sending dummy events (#13310)Erik Johnston2022-07-182-7/+2
| |
* | Use READ COMMITTED isolation level when purging rooms (#12942)Nick Mills-Barrett2022-07-182-2/+32
| | | | | | | | | | To close: #10294. Signed off by Nick @ Beeper.
* | Update expected DB query count when creating a room (#13307)Andrew Morgan2022-07-182-2/+3
| |
* | Don't pull out the full state when creating an event (#13281)Erik Johnston2022-07-183-2/+10
| |
* | Remove unnecessary `json.dumps` from tests (#13303)Dirk Klimpel2022-07-1713-200/+143
| |
* | Make all `process_replication_rows` methods async (#13304)Nick Mills-Barrett2022-07-1714-25/+40
| | | | | | | | | | More prep work for asyncronous caching, also makes all process_replication_rows methods consistent (presence handler already is so). Signed off by Nick @ Beeper (@Fizzadar)
* | Use HTTPStatus constants in place of literals in tests. (#13297)Dirk Klimpel2022-07-159-238/+308
| |
* | Provide more info why we don't have any thumbnails to serve (#13038)Eric Eastwood2022-07-154-17/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix https://github.com/matrix-org/synapse/issues/13016 ## New error code and status ### Before Previously, we returned a `404` for `/thumbnail` which isn't even in the spec. ```json { "errcode": "M_NOT_FOUND", "error": "Not found [b'hs1', b'tefQeZhmVxoiBfuFQUKRzJxc']" } ``` ### After What does the spec say? > 400: The request does not make sense to the server, or the server cannot thumbnail the content. For example, the client requested non-integer dimensions or asked for negatively-sized images. > > *-- https://spec.matrix.org/v1.1/client-server-api/#get_matrixmediav3thumbnailservernamemediaid* Now with this PR, we respond with a `400` when we don't have thumbnails to serve and we explain why we might not have any thumbnails. ```json { "errcode": "M_UNKNOWN", "error": "Cannot find any thumbnails for the requested media ([b'example.com', b'12345']). This might mean the media is not a supported_media_format=(image/jpeg, image/jpg, image/webp, image/gif, image/png) or that thumbnailing failed for some other reason. (Dynamic thumbnails are disabled on this server.)", } ``` > Cannot find any thumbnails for the requested media ([b'example.com', b'12345']). This might mean the media is not a supported_media_format=(image/jpeg, image/jpg, image/webp, image/gif, image/png) or that thumbnailing failed for some other reason. (Dynamic thumbnails are disabled on this server.) --- We still respond with a 404 in many other places. But we can iterate on those later and maybe keep some in some specific places after spec updates/clarification: https://github.com/matrix-org/matrix-spec/issues/1122 We can also iterate on the bugs where Synapse doesn't thumbnail when it should in other issues/PRs.
* | Use and recommend poetry 1.1.14, up from 1.1.12 (#13285)David Robertson2022-07-155-4/+30
| |
* | Don't pull out the full state when storing state (#13274)Erik Johnston2022-07-156-71/+132
| |
* | Use a real room in the notification rotation tests. (#13260)Patrick Cloke2022-07-152-116/+80
| | | | | | | | Instead of manually inserting fake data. This fixes some issues with having to manually calculate stream orderings and other oddities.
* | Use state before join to determine if we `_should_perform_remote_join` (#13270)David Robertson2022-07-154-24/+35
| | | | | | Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
* | Update locked frozendict version to 2.3.2 (#13284)Sean Quah2022-07-152-18/+19
| | | | | | | | | | | | | | | | `frozendict` 2.3.2 includes a fix for a memory leak in `frozendict.__hash__`. This likely has no impact outside of the deprecated `/initialSync` endpoint, which uses `StreamToken`s, containing `RoomStreamToken`s, containing `frozendict`s, as cache keys. Signed-off-by: Sean Quah <seanq@matrix.org>