summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Add ResponseCache tests. (#9458)Jonathan de Jong2021-03-0810-20/+156
|
* Warn that /register will soon require a type when called with an access ↵Will Hunt2021-03-082-0/+7
| | | | | token (#9559) This notice is giving a heads up to the planned spec compliance fix https://github.com/matrix-org/synapse/pull/9548.
* Add type hints to purge room and server notice admin API. (#9520)Dirk Klimpel2021-03-083-15/+24
|
* Add a basic test for purging rooms. (#9541)Patrick Cloke2021-03-082-26/+46
| | | | | Unfortunately this doesn't test re-joining the room since that requires having another homeserver to query over federation, which isn't easily doable in unit tests.
* Merge branch 'master' into developErik Johnston2021-03-083-5/+14
|\
| * Fixup changelog v1.29.0 release-v1.29.0Erik Johnston2021-03-081-0/+3
| |
| * 1.29.0Erik Johnston2021-03-083-5/+11
| |
* | Create a SynapseReactor type which incorporates the necessary reactor ↵Patrick Cloke2021-03-088-12/+32
| | | | | | | | | | interfaces. (#9528) This helps fix some type hints when running with Twisted 21.2.0.
* | Update reverse proxy to add OpenBSD relayd example configuration. (#9508)Leo Bärring2021-03-063-4/+53
| | | | | | | | | | Update reverse proxy to add OpenBSD relayd example configuration. Signed-off-by: Leo Bärring <leo.barring@protonmail.com>
* | Add additional SAML2 upgrade notes (#9550)Ben Banfield-Zanin2021-03-052-0/+8
| |
* | Replace `last_*_pdu_age` metrics with timestamps (#9540)Richard van der Hoff2021-03-044-12/+11
| | | | | | | | | | | | | | | | Following the advice at https://prometheus.io/docs/practices/instrumentation/#timestamps-not-time-since, it's preferable to export unix timestamps, not ages. There doesn't seem to be any particular naming convention for timestamp metrics.
* | Prometheus metrics for logins and registrations (#9511)Richard van der Hoff2021-03-044-4/+43
| | | | | | Add prom metrics for number of users successfully registering and logging in, by SSO provider.
* | Record the SSO Auth Provider in the login token (#9510)Richard van der Hoff2021-03-0413-151/+258
|/ | | This great big stack of commits is a a whole load of hoop-jumping to make it easier to store additional values in login tokens, and then to actually store the SSO Identity Provider in the login token. (Making use of that data will follow in a subsequent PR.)
* Fix link in UPGRADES v1.29.0rc1Erik Johnston2021-03-041-3/+3
|
* Fix changelogErik Johnston2021-03-041-6/+3
|
* 1.29.0rc1Erik Johnston2021-03-0442-41/+55
|
* Fix additional type hints from Twisted upgrade. (#9518)Patrick Cloke2021-03-0312-61/+96
|
* Set X-Forwarded-Proto header when frontend-proxy proxies a request (#9539)Richard van der Hoff2021-03-032-2/+14
| | | Should fix some remaining warnings
* Fix 'rejected_events_metadata' background update (#9537)Erik Johnston2021-03-032-1/+4
| | | | Turns out matrix.org has an event that has duplicate auth events (which really isn't supposed to happen, but here we are). This caused the background update to fail due to `UniqueViolation`.
* Purge chain cover tables when purging events. (#9498)Patrick Cloke2021-03-033-10/+38
|
* Add type hints to user admin API. (#9521)Dirk Klimpel2021-03-034-35/+63
|
* Bump the mypy and mypy-zope versions. (#9529)Patrick Cloke2021-03-034-3/+4
|
* Make deleting stale pushers a background update (#9536)Erik Johnston2021-03-033-1/+55
|
* Update nginx reverse-proxy docs (#9512)Richard van der Hoff2021-03-032-0/+3
| | | Turns out nginx overwrites the Host header by default.
* Prevent presence background jobs from running when presence is disabled (#9530)Aaron Raimist2021-03-032-14/+18
| | | | | Prevent presence background jobs from running when presence is disabled Signed-off-by: Aaron Raimist <aaron@raim.ist>
* Revert "Fix #8518 (sync requests being cached wrongly on timeout) (#9358)"Patrick Cloke2021-03-023-35/+3
| | | | | | | This reverts commit f5c93fc9931e4029bbd8000f398b6f39d67a8c46. This is being backed out due to a regression (#9507) and additional review feedback being provided.
* Re-run rejected metadata background update. (#9503)Erik Johnston2021-03-022-0/+10
| | | | | | | It landed in schema version 58 after 59 had been created, causing some servers to not run it. The main effect of was that not all rooms had their chain cover calculated correctly. After the BG updates complete the chain covers will get fixed when a new state event in the affected rooms is received.
* Fix SQL delta file taking a long time to run (#9516)Erik Johnston2021-03-024-5/+60
| | | | Fixes #9504
* Add type hints to device and event report admin API (#9519)Dirk Klimpel2021-03-023-16/+40
|
* Fix a bug when a room alias is given to the admin join endpoint (#9506)Patrick Cloke2021-03-012-58/+75
|
* (Hopefully) stop leaking file descriptors in media repo. (#9497)Patrick Cloke2021-03-013-38/+85
| | | | By consuming the response if the headers imply that the content is too large.
* Use the proper Request in type hints. (#9515)Patrick Cloke2021-03-0118-31/+38
| | | | This also pins the Twisted version in the mypy job for CI until proper type hints are fixed throughout Synapse.
* Allow bytecode again (#9502)Jonathan de Jong2021-02-268-10/+16
| | | | | | | In #75, bytecode was disabled (from a bit of FUD back in `python<2.4` days, according to dev chat), I think it's safe enough to enable it again. Added in `__pycache__/` and `.pyc`/`.pyd` to `.gitignore`, to extra-insure compiled files don't get committed. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Add support for no_proxy and case insensitive env variables (#9372)Tim Leung2021-02-266-64/+114
| | | | | | | | | | | | | | | ### Changes proposed in this PR - Add support for the `no_proxy` and `NO_PROXY` environment variables - Internally rely on urllib's [`proxy_bypass_environment`](https://github.com/python/cpython/blob/bdb941be423bde8b02a5695ccf51c303d6204bed/Lib/urllib/request.py#L2519) - Extract env variables using urllib's `getproxies`/[`getproxies_environment`](https://github.com/python/cpython/blob/bdb941be423bde8b02a5695ccf51c303d6204bed/Lib/urllib/request.py#L2488) which supports lowercase + uppercase, preferring lowercase, except for `HTTP_PROXY` in a CGI environment This does contain behaviour changes for consumers so making sure these are called out: - `no_proxy`/`NO_PROXY` is now respected - lowercase `https_proxy` is now allowed and taken over `HTTPS_PROXY` Related to #9306 which also uses `ProxyAgent` Signed-off-by: Timothy Leung tim95@hotmail.co.uk
* SSO: redirect to public URL before setting cookies (#9436)Richard van der Hoff2021-02-267-28/+130
| | | ... otherwise, we don't get the cookie back.
* Call out the need for an X-Forwarded-Proto in the upgrade notes (#9501)Richard van der Hoff2021-02-264-1/+28
|
* Test that we require validated email for email pushers (#9496)Erik Johnston2021-02-253-2/+39
|
* Ensure pushers are deleted for deactivated accounts (#9285)Erik Johnston2021-02-254-0/+70
|
* Merge branch 'master' into developErik Johnston2021-02-254-5/+26
|\
| * Fixup changelog v1.28.0 release-v1.28.0Erik Johnston2021-02-251-1/+1
| |
| * Fixup changelogErik Johnston2021-02-251-4/+5
| |
| * 1.28.0Erik Johnston2021-02-254-2/+16
| |
| * Add back the deprecated SAML endpoint. (#9474)Patrick Cloke2021-02-232-1/+7
| |
* | Add support for X-Forwarded-Proto (#9472)Richard van der Hoff2021-02-243-28/+94
| | | | | | | | | | rewrite XForwardedForRequest to set `isSecure()` based on `X-Forwarded-Proto`. Also implement `getClientAddress()` while we're here.
* | Fix typo in spam checker documentationAndrew Morgan2021-02-241-1/+1
| |
* | Add SQL delta for deleting stale pushers (#9479)Erik Johnston2021-02-242-0/+20
| |
* | Fix #8518 (sync requests being cached wrongly on timeout) (#9358)Jonathan de Jong2021-02-243-3/+35
| | | | | | | | | | | | | | This fixes #8518 by adding a conditional check on `SyncResult` in a function when `prev_stream_token == current_stream_token`, as a sanity check. In `CachedResponse.set.<remove>()`, the result is immediately popped from the cache if the conditional function returns "false". This prevents the caching of a timed-out `SyncResult` (that has `next_key` as the stream key that produced that `SyncResult`). The cache is prevented from returning a `SyncResult` that makes the client request the same stream key over and over again, effectively making it stuck in a loop of requesting and getting a response immediately for as long as the cache keeps those values. Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>
* | Clean up `ShardedWorkerHandlingConfig` (#9466)Erik Johnston2021-02-2414-63/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Split ShardedWorkerHandlingConfig This is so that we have a type level understanding of when it is safe to call `get_instance(..)` (as opposed to `should_handle(..)`). * Remove special cases in ShardedWorkerHandlingConfig. `ShardedWorkerHandlingConfig` tried to handle the various different ways it was possible to configure federation senders and pushers. This led to special cases that weren't hit during testing. To fix this the handling of the different cases is moved from there and `generic_worker` into the worker config class. This allows us to have the logic in one place and allows the rest of the code to ignore the different cases.
* | Refactor to ensure we call check_consistency (#9470)Erik Johnston2021-02-248-28/+72
| | | | | | The idea here is to stop people forgetting to call `check_consistency`. Folks can still just pass in `None` to the new args in `build_sequence_generator`, but hopefully they won't.
* | Add a comment about systemd-python. (#9464)Richard van der Hoff2021-02-232-0/+4
| | | | | | | | This confused me for a while.
* | Include newly added sequences in the port DB script. (#9449)Patrick Cloke2021-02-234-26/+55
| | | | | | And ensure the consistency of `event_auth_chain_id`.
* | Fix deleting pushers when using sharded pushers. (#9465)Erik Johnston2021-02-2210-67/+94
| |
* | Remove vestiges of uploads_path config (#9462)Richard van der Hoff2021-02-225-4/+1
| | | | | | | | `uploads_path` was a thing that was never used; most of it was removed in #6628 but a few vestiges remained.
* | Add an `order_by` field to list users' media admin API. (#8978)Dirk Klimpel2021-02-225-29/+325
| |
* | example systemd config: propagate reloads to units (#9463)Richard van der Hoff2021-02-223-0/+3
| | | | | | | | | | It should be possible to reload `synapse.target` to have the reload propagate to all the synapse units.
* | Remove cache for get_shared_rooms_for_users (#9416)Andrew Morgan2021-02-223-37/+43
| | | | | | | | | | | | | | This PR remove the cache for the `get_shared_rooms_for_users` storage method (the db method driving the experimental "what rooms do I share with this user?" feature: [MSC2666](https://github.com/matrix-org/matrix-doc/pull/2666)). Currently subsequent requests to the endpoint will return the same result, even if your shared rooms with that user have changed. The cache was added in https://github.com/matrix-org/synapse/pull/7785, but we forgot to ensure it was invalidated appropriately. Upon attempting to invalidate it, I found that the cache had to be entirely invalidated whenever a user (remote or local) joined or left a room. This didn't make for a very useful cache, especially for a function that may or may not be called very often. Thus, I've opted to remove it instead of invalidating it.
* | Clean up the user directory sample config section (#9385)Andrew Morgan2021-02-223-50/+67
| | | | | | | | | | The user directory sample config section was a little messy, and didn't adhere to our [recommended config format guidelines](https://github.com/matrix-org/synapse/blob/develop/docs/code_style.md#configuration-file-format). This PR cleans that up a bit.
* | Ratelimit cross-user key sharing requests. (#8957)Patrick Cloke2021-02-199-17/+67
| |
* | Regenerate exact thumbnails if missing (#9438)Erik Johnston2021-02-196-15/+133
|\ \
| * | Add testErik Johnston2021-02-191-3/+66
| | |
| * | Return a 404 if we don't have the original fileErik Johnston2021-02-192-1/+8
| | |
| * | NewsfileErik Johnston2021-02-181-0/+1
| | |
| * | Regenerate exact thumbnails if missingErik Johnston2021-02-183-11/+58
| | |
* | | Add documentation and type hints to parse_duration. (#9432)Patrick Cloke2021-02-192-2/+16
| | |
* | | Fix style checking due to updated black.Patrick Cloke2021-02-192-3/+5
| | |
* | | Merge tag 'v1.28.0rc1' into developPatrick Cloke2021-02-1945-47/+74
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.28.0rc1 (2021-02-19) ============================== Note that this release drops support for ARMv7 in the official Docker images, due to repeated problems building for ARMv7 (and the associated maintenance burden this entails). This release also fixes the documentation included in v1.27.0 around the callback URI for SAML2 identity providers. If your server is configured to use single sign-on via a SAML2 IdP, you may need to make configuration changes. Please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes. Removal warning --------------- The v1 list accounts API is deprecated and will be removed in a future release. This API was undocumented and misleading. It can be replaced by the [v2 list accounts API](https://github.com/matrix-org/synapse/blob/release-v1.28.0/docs/admin_api/user_admin_api.rst#list-accounts), which has been available since Synapse 1.7.0 (2019-12-13). Please check if you're using any scripts which use the admin API and replace `GET /_synapse/admin/v1/users/<user_id>` with `GET /_synapse/admin/v2/users`. Features -------- - New admin API to get the context of an event: `/_synapse/admin/rooms/{roomId}/context/{eventId}`. ([\#9150](https://github.com/matrix-org/synapse/issues/9150)) - Further improvements to the user experience of registration via single sign-on. ([\#9300](https://github.com/matrix-org/synapse/issues/9300), [\#9301](https://github.com/matrix-org/synapse/issues/9301)) - Add hook to spam checker modules that allow checking file uploads and remote downloads. ([\#9311](https://github.com/matrix-org/synapse/issues/9311)) - Add support for receiving OpenID Connect authentication responses via form `POST`s rather than `GET`s. ([\#9376](https://github.com/matrix-org/synapse/issues/9376)) - Add the shadow-banning status to the admin API for user info. ([\#9400](https://github.com/matrix-org/synapse/issues/9400)) Bugfixes -------- - Fix long-standing bug where sending email notifications would fail for rooms that the server had since left. ([\#9257](https://github.com/matrix-org/synapse/issues/9257)) - Fix bug in Synapse 1.27.0rc1 which meant the "session expired" error page during SSO registration was badly formatted. ([\#9296](https://github.com/matrix-org/synapse/issues/9296)) - Assert a maximum length for some parameters for spec compliance. ([\#9321](https://github.com/matrix-org/synapse/issues/9321), [\#9393](https://github.com/matrix-org/synapse/issues/9393)) - Fix additional errors when previewing URLs: "AttributeError 'NoneType' object has no attribute 'xpath'" and "ValueError: Unicode strings with encoding declaration are not supported. Please use bytes input or XML fragments without declaration.". ([\#9333](https://github.com/matrix-org/synapse/issues/9333)) - Fix a bug causing Synapse to impose the wrong type constraints on fields when processing responses from appservices to `/_matrix/app/v1/thirdparty/user/{protocol}`. ([\#9361](https://github.com/matrix-org/synapse/issues/9361)) - Fix bug where Synapse would occasionally stop reconnecting to Redis after the connection was lost. ([\#9391](https://github.com/matrix-org/synapse/issues/9391)) - Fix a long-standing bug when upgrading a room: "TypeError: '>' not supported between instances of 'NoneType' and 'int'". ([\#9395](https://github.com/matrix-org/synapse/issues/9395)) - Reduce the amount of memory used when generating the URL preview of a file that is larger than the `max_spider_size`. ([\#9421](https://github.com/matrix-org/synapse/issues/9421)) - Fix a long-standing bug in the deduplication of old presence, resulting in no deduplication. ([\#9425](https://github.com/matrix-org/synapse/issues/9425)) - The `ui_auth.session_timeout` config option can now be specified in terms of number of seconds/minutes/etc/. Contributed by Rishabh Arya. ([\#9426](https://github.com/matrix-org/synapse/issues/9426)) - Fix a bug introduced in v1.27.0: "TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType." related to the user directory. ([\#9428](https://github.com/matrix-org/synapse/issues/9428)) Updates to the Docker image --------------------------- - Drop support for ARMv7 in Docker images. ([\#9433](https://github.com/matrix-org/synapse/issues/9433)) Improved Documentation ---------------------- - Reorganize CHANGELOG.md. ([\#9281](https://github.com/matrix-org/synapse/issues/9281)) - Add note to `auto_join_rooms` config option explaining existing rooms must be publicly joinable. ([\#9291](https://github.com/matrix-org/synapse/issues/9291)) - Correct name of Synapse's service file in TURN howto. ([\#9308](https://github.com/matrix-org/synapse/issues/9308)) - Fix the braces in the `oidc_providers` section of the sample config. ([\#9317](https://github.com/matrix-org/synapse/issues/9317)) - Update installation instructions on Fedora. ([\#9322](https://github.com/matrix-org/synapse/issues/9322)) - Add HTTP/2 support to the nginx example configuration. Contributed by David Vo. ([\#9390](https://github.com/matrix-org/synapse/issues/9390)) - Update docs for using Gitea as OpenID provider. ([\#9404](https://github.com/matrix-org/synapse/issues/9404)) - Document that pusher instances are shardable. ([\#9407](https://github.com/matrix-org/synapse/issues/9407)) - Fix erroneous documentation from v1.27.0 about updating the SAML2 callback URL. ([\#9434](https://github.com/matrix-org/synapse/issues/9434)) Deprecations and Removals ------------------------- - Deprecate old admin API `GET /_synapse/admin/v1/users/<user_id>`. ([\#9429](https://github.com/matrix-org/synapse/issues/9429)) Internal Changes ---------------- - Fix 'object name reserved for internal use' errors with recent versions of SQLite. ([\#9003](https://github.com/matrix-org/synapse/issues/9003)) - Add experimental support for running Synapse with PyPy. ([\#9123](https://github.com/matrix-org/synapse/issues/9123)) - Deny access to additional IP addresses by default. ([\#9240](https://github.com/matrix-org/synapse/issues/9240)) - Update the `Cursor` type hints to better match PEP 249. ([\#9299](https://github.com/matrix-org/synapse/issues/9299)) - Add debug logging for SRV lookups. Contributed by @Bubu. ([\#9305](https://github.com/matrix-org/synapse/issues/9305)) - Improve logging for OIDC login flow. ([\#9307](https://github.com/matrix-org/synapse/issues/9307)) - Share the code for handling required attributes between the CAS and SAML handlers. ([\#9326](https://github.com/matrix-org/synapse/issues/9326)) - Clean up the code to load the metadata for OpenID Connect identity providers. ([\#9362](https://github.com/matrix-org/synapse/issues/9362)) - Convert tests to use `HomeserverTestCase`. ([\#9377](https://github.com/matrix-org/synapse/issues/9377), [\#9396](https://github.com/matrix-org/synapse/issues/9396)) - Update the version of black used to 20.8b1. ([\#9381](https://github.com/matrix-org/synapse/issues/9381)) - Allow OIDC config to override discovered values. ([\#9384](https://github.com/matrix-org/synapse/issues/9384)) - Remove some dead code from the acceptance of room invites path. ([\#9394](https://github.com/matrix-org/synapse/issues/9394)) - Clean up an unused method in the presence handler code. ([\#9408](https://github.com/matrix-org/synapse/issues/9408))
| * | Update release date. v1.28.0rc1Patrick Cloke2021-02-191-1/+1
| | |
| * | Update the CHANGES document.Patrick Cloke2021-02-181-7/+7
| | |
| * | 1.28.0rc1Patrick Cloke2021-02-1845-46/+73
| | |
* | | Support not providing an IdP icon when choosing a username. (#9440)Patrick Cloke2021-02-192-1/+2
| | |
* | | Be smarter about which hosts to send presence to when processing room joins ↵Andrew Morgan2021-02-194-19/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#9402) This PR attempts to eliminate unnecessary presence sending work when your local server joins a room, or when a remote server joins a room your server is participating in by processing state deltas in chunks rather than individually. --- When your server joins a room for the first time, it requests the historical state as well. This chunk of new state is passed to the presence handler which, after filtering that state down to only membership joins, will send presence updates to homeservers for each join processed. It turns out that we were being a bit naive and processing each event individually, and sending out presence updates for every one of those joins. Even if many different joins were users on the same server (hello IRC bridges), we'd send presence to that same homeserver for every remote user join we saw. This PR attempts to deduplicate all of that by processing the entire batch of state deltas at once, instead of only doing each join individually. We process the joins and note down which servers need which presence: * If it was a local user join, send that user's latest presence to all servers in the room * If it was a remote user join, send the presence for all local users in the room to that homeserver We deduplicate by inserting all of those pending updates into a dictionary of the form: ``` { server_name1: {presence_update1, ...}, server_name2: {presence_update1, presence_update2, ...} } ``` Only after building this dict do we then start sending out presence updates.
* | | Add a config option to prioritise local users in user directory search ↵Andrew Morgan2021-02-195-9/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | results (#9383) This PR adds a homeserver config option, `user_directory.prefer_local_users`, that when enabled will show local users higher in user directory search results than remote users. This option is off by default. Note that turning this on doesn't necessarily mean that remote users will always be put below local users, but they should be assuming all other ranking factors (search query match, profile information present etc) are identical. This is useful for, say, University networks that are openly federating, but want to prioritise local students and staff in the user directory over other random users.
* | | Add configs to make profile data more private (#9203)AndrewFerr2021-02-199-7/+66
|/ / | | | | | | | | | | | | Add off-by-default configuration settings to: - disable putting an invitee's profile info in invite events - disable profile lookup via federation Signed-off-by: Andrew Ferrazzutti <fair@miscworks.net>
* | Merge branch 'master' into developPatrick Cloke2021-02-181-1/+1
|\ \
| * | Clarify the release notes around SAML2 for v1.27.0. release-v1.27.0Patrick Cloke2021-02-182-12/+13
| | |
* | | Remove deprecated SAML2 callback URL since it does not work. (#9434)Patrick Cloke2021-02-184-16/+16
| |/ |/| | | | | Updates documentation from #9289 and removes a deprecated endpoint which didn't work as expected.
* | Revert "Newsfragment", which was meant to be part of #9434.Patrick Cloke2021-02-181-1/+0
| | | | | | | | This reverts commit 8ad4676f35ec065853a5eb335b5566fdcf320460.
* | NewsfragmentPatrick Cloke2021-02-181-0/+1
| |
* | Drop ARMv7 from docker (#9433)Erik Johnston2021-02-183-2/+5
| | | | | | It's proving incredibly hard to build in CircleCI infra.
* | Parse ui_auth.session_timeout as a duration (instead of treating it as ms) ↵Rishabh Arya2021-02-184-8/+11
| | | | | | | | (#9426)
* | Deprecate old admin API `GET /_synapse/admin/v1/users/<user_id>` (#9429)Dirk Klimpel2021-02-182-0/+16
| | | | | | This API was undocumented and nonsensical.
* | Reduce the memory usage of previewing media files. (#9421)Patrick Cloke2021-02-183-18/+18
| | | | | | | | | | | | | | | | This reduces the memory usage of previewing media files which end up larger than the `max_spider_size` by avoiding buffering content internally in treq. It also checks the `Content-Length` header in additional places instead of streaming the content to check the body length.
* | Add http2 to the nginx example config (#9390)David Vo2021-02-182-4/+5
| |
* | Add back the guard against the user directory stream position not existing. ↵Patrick Cloke2021-02-183-1/+12
| | | | | | | | | | | | (#9428) As the comment says, this guard was there for when the initial user directory update has yet to happen.
* | Revert "Update workers.md"Richard van der Hoff2021-02-181-1/+1
| | | | | | | | This reverts commit a8878960c0139f80bbb6f84bd0f0cb7352429c5b.
* | Add the shadow-banning status to the display user admin API. (#9400)Dirk Klimpel2021-02-176-6/+16
| |
* | Remove dead notify_for_states presence method (#9408)Andrew Morgan2021-02-172-11/+1
| |
* | Fix only handling the last presence state for each user (#9425)Andrew Morgan2021-02-172-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a small bug that I noticed while working on #8956. We have a for-loop which attempts to strip all presence changes for each user except for the final one, as we don't really care about older presence: https://github.com/matrix-org/synapse/blob/9e19c6aab4b5a99039f2ddc7d3120dd3b26c274b/synapse/handlers/presence.py#L368-L371 `new_states_dict` stores this stripped copy of latest presence state for each user, before it is... put into a new variable `new_state`, which is just overridden by the subsequent for loop. I believe this was instead meant to override `new_states`. Without doing so, it effectively meant: 1. The for loop had no effect. 2. We were still processing old presence state for users.
* | Update workers.mdRichard van der Hoff2021-02-171-1/+2
| |
* | Update workers.mdRichard van der Hoff2021-02-171-1/+1
| | | | | | tiny typo in sso paths
* | Reorganize CONTRIBUTING.md documentation. (#9281)David Teller2021-02-172-82/+190
| |
* | Add type hints to groups code. (#9393)Patrick Cloke2021-02-179-124/+341
| |
* | Support for form_post in OIDC responses (#9376)Richard van der Hoff2021-02-174-36/+78
| | | | | | Apple want to POST the OIDC auth response back to us rather than using query-params; add the necessary support to make that work.
* | Allow OIDC config to override discovered values (#9384)Richard van der Hoff2021-02-162-9/+19
| | | | | | Fixes #9347
* | Update black, and run auto formatting over the codebase (#9381)Eric Eastwood2021-02-16271-1713/+2802
| | | | | | | | | | | | | | - Update black version to the latest - Run black auto formatting over the codebase - Run autoformatting according to [`docs/code_style.md `](https://github.com/matrix-org/synapse/blob/80d6dc9783aa80886a133756028984dbf8920168/docs/code_style.md) - Update `code_style.md` docs around installing black to use the correct version
* | Fix OIDC gitiea redirect URL. (#9404)Marcus2021-02-162-1/+2
| | | | | | | | Fixes a "conflict" from 846b9d3df033be1043710e49e89bcba68722071e and d1f13c7485768b45bfc1a2a674830c681c52e2a1.
* | Clean up caching/locking of OIDC metadata load (#9362)Richard van der Hoff2021-02-165-62/+389
| | | | | | | | Ensure that we lock correctly to prevent multiple concurrent metadata load requests, and generally clean up the way we construct the metadata cache.
* | Merge branch 'master' into developErik Johnston2021-02-164-10/+25
|\|
| * Fixup CHANGES v1.27.0Erik Johnston2021-02-161-3/+3
| |
| * 1.27.0Erik Johnston2021-02-164-11/+23
| |
| * Add rustc to Docker image build environment (#9405)Dan Callahan2021-02-152-0/+3
| | | | | | | | | | | | | | | | This is needed to build the cryptography library, since it does not provide wheels for ARMv7. Fixes #9403 Signed-off-by: Dan Callahan <danc@element.io>
* | Handle missing data in power levels events during room upgrade. (#9395)Patrick Cloke2021-02-163-5/+162
| |
* | Document that pusher instances are shardable (#9407)Erik Johnston2021-02-162-1/+10
| |
* | Convert additional test-cases to homeserver test case. (#9396)Patrick Cloke2021-02-165-331/+214
| | | | | | And convert some inlineDeferreds to async-friendly functions.
* | Fix sample configAndrew Morgan2021-02-121-1/+1
| | | | | | | | Just a small change missed in 7950aa8a27c3f45184c96fda210c62d068dd2591.
* | Remove dead handled_events set in invite_join (#9394)Andrew Morgan2021-02-122-6/+1
| | | | | | | | | | This PR removes a set that was created and [initially used](https://github.com/matrix-org/synapse/commit/1d2a0040cff8d04cdc7d7d09d8f04a5d628fa9dd#diff-0bc92da3d703202f5b9be2d3f845e375f5b1a6bc6ba61705a8af9be1121f5e42R435-R436), but is no longer today. May help cut down a bit on the time it takes to accept invites.
* | Fix some typos.Patrick Cloke2021-02-1223-34/+34
| |
* | Merge tag 'v1.27.0rc2' into developPatrick Cloke2021-02-1120-46/+120
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.27.0rc2 (2021-02-11) ============================== Features -------- - Further improvements to the user experience of registration via single sign-on. ([\#9297](https://github.com/matrix-org/synapse/issues/9297)) Bugfixes -------- - Fix ratelimiting introduced in v1.27.0rc1 for invites to respect the `ratelimit` flag on application services. ([\#9302](https://github.com/matrix-org/synapse/issues/9302)) - Do not automatically calculate `public_baseurl` since it can be wrong in some situations. Reverts behaviour introduced in v1.26.0. ([\#9313](https://github.com/matrix-org/synapse/issues/9313)) Improved Documentation ---------------------- - Clarify the sample configuration for changes made to the template loading code. ([\#9310](https://github.com/matrix-org/synapse/issues/9310))
| * Clarify when new ratelimiting was added. v1.27.0rc2Patrick Cloke2021-02-111-1/+1
| |
| * Update changelog.Patrick Cloke2021-02-111-2/+2
| |
| * 1.27.0rc2Patrick Cloke2021-02-116-5/+23
| |
| * Backout changes for automatically calculating the public baseurl. (#9313)Patrick Cloke2021-02-1116-41/+97
| | | | | | | | This breaks some people's configurations (if their Client-Server API is not accessed via port 443).
* | Ensure that we never stop reconnecting to redis (#9391)Erik Johnston2021-02-112-2/+25
| |
* | Convert some test cases to use HomeserverTestCase. (#9377)Patrick Cloke2021-02-116-516/+302
| | | | | | | | This has the side-effect of being able to remove use of `inlineCallbacks` in the test-cases for cleaner tracebacks.
* | Combine the CAS & SAML implementations for required attributes. (#9326)Patrick Cloke2021-02-119-77/+245
| |
* | Remove conflicting sqlite tables that are "reserved" (shadow fts4 tables) ↵Eric Eastwood2021-02-103-10/+12
| | | | | | | | | | | | | | (#9003) Remove conflicting sqlite tables that throw sqlite3.OperationalError: object name reserved for internal use: event_search_content when running the twisted unit tests. Fix #8996
* | Merge pull request #9361 from matrix-org/babolivier/third_party_validationBrendan Abolivier2021-02-092-3/+1
|\ \ | | | | | | Remove unneeded type constraints on 3rd party protocol lookup responses
| * | Remove unneeded type constraints on 3rd party protocol lookup responsesBrendan Abolivier2021-02-092-3/+1
| | |
* | | Add XWiki OIDC provider example. (#9324)Thomas Mortagne2021-02-091-0/+22
|/ /
* | Type hints and validation improvements. (#9321)Patrick Cloke2021-02-086-79/+177
| | | | | | | | | | * Adds type hints to the groups servlet and stringutils code. * Assert the maximum length of some input values for spec compliance.
* | Handle additional errors when previewing URLs. (#9333)Patrick Cloke2021-02-083-30/+145
| | | | | | | | * Handle the case of lxml not finding a document tree. * Parse the document encoding from the XML tag.
* | Merge pull request #9150 from Yoric/develop-contextDavid Teller2021-02-088-6/+289
|\ \ | | | | | | New API /_synapse/admin/rooms/{roomId}/context/{eventId}
| * | FIXUP: linterDavid Teller2021-01-283-2/+9
| | |
| * | FIXUP: Making get_event_context a bit more paranoidDavid Teller2021-01-283-4/+10
| | |
| * | FIXUP: Removing awaitableDavid Teller2021-01-281-3/+3
| | |
| * | FIXUP: DocDavid Teller2021-01-281-0/+6
| | |
| * | FIXUP: Now testing that the user is admin!David Teller2021-01-283-6/+38
| | |
| * | FIXUP: Don't filter events at all for admin/v1/rooms/.../context/...David Teller2021-01-282-25/+10
| | |
| * | FIXUP: Documenting /_synapse/admin/v1/rooms/<room_id>/context/<event_id>David Teller2021-01-281-0/+119
| | |
| * | New API /_synapse/admin/rooms/{roomId}/context/{eventId}David Teller2021-01-286-8/+136
| | | | | | | | | | | | Signed-off-by: David Teller <davidt@element.io>
* | | Update type hints for Cursor to match PEP 249. (#9299)Jonathan de Jong2021-02-055-17/+47
| | |
* | | Update installation instructions on Fedora (#9322)Dan Callahan2021-02-052-17/+4
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joseph Arnault <computerdude90042@outlook.com> Signed-off-by: Dan Callahan <danc@element.io> Co-authored-by: compu42 <56663749+compu42@users.noreply.github.com>
* | | Merge branch 'erikj/media_spam_checker' into developErik Johnston2021-02-046-6/+210
|\ \ \
| * | | Add check_media_file_for_spam spam checker hookErik Johnston2021-02-046-6/+210
| | |/ | |/|
* | | Correct `matrix-synapse.service` reference in TURN howto docs. (#9308)dykstranet2021-02-042-1/+2
| | |
* | | Handle empty rooms when generating email notifications. (#9257)Patrick Cloke2021-02-043-39/+226
| | | | | | | | | | | | | | | | | | Fixes some exceptions if the room state isn't quite as expected. If the expected state events aren't found, try to find them in the historical room state. If they still aren't found, fallback to a reasonable, although ugly, value.
* | | Fix escaping of braces in OIDC sample config. (#9317)Patrick Cloke2021-02-043-10/+11
| | | | | | | | | This fixes the Jinja2 templates for the mapping provider.
* | | Add experimental support for PyPy. (#9123)Jonathan de Jong2021-02-044-8/+15
| | | | | | | | | | | | * Adds proper dependencies. * Minor fixes in database layer.
* | | Add debug logging to DNS SRV requests. (#9305)Marcus2021-02-032-0/+8
| | |
* | | Merge branch 'social_login_hotfixes' into developRichard van der Hoff2021-02-0325-141/+379
|\ \ \
| * | | Merge remote-tracking branch 'origin/release-v1.27.0' into social_login_hotfixesRichard van der Hoff2021-02-0310-92/+107
| |\| |
| | * | Clarify documentation about escaping URLs in templates. (#9310)Patrick Cloke2021-02-033-20/+9
| | | |
| | * | social login Fix username validation javascript (#9297)Richard van der Hoff2021-02-033-21/+85
| | | | | | | | | | | | | | | | | | | | * fix validation and don't use built-in validation UI Co-authored-by: Bruno Windels <brunow@element.io>
| * | | Social login UI polish (#9301)Richard van der Hoff2021-02-0315-81/+240
| | | |
| * | | Add debug for OIDC flow (#9307)Richard van der Hoff2021-02-032-15/+26
| | | |
| * | | Fix formatting for "bad session" error during sso registration flow (#9296)Richard van der Hoff2021-02-032-3/+17
| | | |
| * | | social login: add noopener to terms link (#9300)Richard van der Hoff2021-02-022-1/+2
| | | |
* | | | config: Add detail to auto_join_rooms comment (#9291)dykstranet2021-02-033-0/+5
| | | | | | | | | | | | | | | | | | | | config: Add detail to auto_join_rooms comment Signed-off-by: Gary Dykstra <gary@dykstranet.com>
* | | | Typo fix in a comment: subequently -> subsequently. (#8988)Tim Gates2021-02-031-1/+1
| | | |
* | | | Convert blacklisted IPv4 addresses to compatible IPv6 addresses. (#9240)Patrick Cloke2021-02-035-28/+160
| |/ / |/| | | | | Also add a few more IP ranges to the default blacklist.
* | | Honour ratelimit flag for application services for invite ratelimiting (#9302)Erik Johnston2021-02-034-51/+13
|/ /
* | Update changelog v1.27.0rc1Erik Johnston2021-02-021-0/+2
| |
* | 1.27.0rc1Erik Johnston2021-02-0253-58/+71
| |
* | Add an admin API to get the current room state (#9168)Travis Ralston2021-02-026-1/+88
| | | | | | | | | | This could arguably replace the existing admin API for `/members`, however that is out of scope of this change. This sort of endpoint is ideal for moderation use cases as well as other applications, such as needing to retrieve various bits of information about a room to perform a task (like syncing power levels between two places). This endpoint exposes nothing more than an admin would be able to access with a `select *` query on their database.
* | Put SAML callback URI under /_synapse/client. (#9289)Richard van der Hoff2021-02-0210-13/+25
| |
* | Put OIDC callback URI under /_synapse/client. (#9288)Richard van der Hoff2021-02-0111-28/+46
| |
* | Add an OpenID example config for Gitea. (#9134)Oliver Hanikel2021-02-012-0/+35
| |
* | Merge branch 'social_login' into developRichard van der Hoff2021-02-011-1/+1
|\ \
| * | fix broken HTML tagRichard van der Hoff2021-02-011-1/+1
| | |
* | | Merge branch 'social_login' into developRichard van der Hoff2021-02-0121-98/+495
|\| |
| * | make primary button not wider than viewportBruno Windels2021-02-011-0/+1
| | |
| * | Collect terms consent from the user during SSO registration (#9276)Richard van der Hoff2021-02-019-0/+230
| | |
| * | Improve styling and wording of SSO UIA templates (#9286)Richard van der Hoff2021-02-016-25/+81
| | | | | | | | | fixes #9171
| * | Improve styling and wording of SSO error templates (#9287)Richard van der Hoff2021-02-015-60/+101
| | |
| * | Make importing display name and email optional (#9277)Richard van der Hoff2021-02-015-13/+82
| | |
* | | Refactor email summary generation. (#9260)Patrick Cloke2021-02-013-122/+204
| | | | | | | | | | | | | | | | | | * Fixes a case where no summary text was returned. * The use of messages_from_person vs. messages_from_person_and_others was tweaked to depend on whether there was 1 sender or multiple senders, not based on if there was 1 room or multiple rooms.
* | | Merge branch 'social_login' into developRichard van der Hoff2021-02-0133-318/+860
|\| |
| * | Replace username picker with a template (#9275)Richard van der Hoff2021-02-0115-204/+429
| | | | | | | | | | | | | | | There's some prelimiary work here to pull out the construction of a jinja environment to a separate function. I wanted to load the template at display time rather than load time, so that it's easy to update on the fly. Honestly, I think we should do this with all our templates: the risk of ending up with malformed templates is far outweighed by the improved turnaround time for an admin trying to update them.
| * | Improve styling and wording of SSO redirect confirm template (#9272)Richard van der Hoff2021-02-0111-30/+200
| | |
| * | Fix SSO on workers (#9271)Richard van der Hoff2021-02-018-65/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #8966. * Factor out build_synapse_client_resource_tree Start a function which will mount resources common to all workers. * Move sso init into build_synapse_client_resource_tree ... so that we don't have to do it for each worker * Fix SSO-login-via-a-worker Expose the SSO login endpoints on workers, like the documentation says. * Update workers config for new endpoints Add documentation for endpoints recently added (#8942, #9017, #9262) * remove submit_token from workers endpoints list this *doesn't* work on workers (yet). * changelog * Add a comment about the odd path for SAML2Resource
| * | Split out a separate endpoint to complete SSO registration (#9262)Richard van der Hoff2021-02-017-26/+145
| | | | | | | | | There are going to be a couple of paths to get to the final step of SSO reg, and I want the URL in the browser to consistent. So, let's move the final step onto a separate path, which we redirect to.
* | | Add phone home stats for encrypted messages. (#9283)Jan Christian Grünhage2021-02-013-2/+64
| | | | | | | | | Signed-off-by: Jan Christian Grünhage <jan.christian@gruenhage.xyz>
* | | Prevent email UIA failures from raising a LoginError (#9265)Andrew Morgan2021-02-012-10/+1
| | | | | | | | | | | | | | | | | | | | | Context, Fixes: https://github.com/matrix-org/synapse/issues/9263 In the past to fix an issue with old Riots re-requesting threepid validation tokens, we raised a `LoginError` during UIA instead of `InteractiveAuthIncompleteError`. This is now breaking the way Tchap logs in - which isn't standard, but also isn't disallowed by the spec. An easy fix is just to remove the 4 year old workaround.
* | | Fixes for PyPy compatibility (#9270)Ivan Shapovalov2021-01-302-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * synapse.app.base: only call gc.freeze() on CPython gc.freeze() is an implementation detail of CPython garbage collector, and notably does not exist on PyPy. Rather than playing whack-a-mole and skipping the call when under PyPy, simply restrict it to CPython because the whole gc module is implementation-defined. Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
* | | Ratelimit invites by room and target user (#9258)Erik Johnston2021-01-299-4/+192
| | |
* | | Fix Debian builds on Xenial (#9254)Dan Callahan2021-01-294-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | Adds note about updating dh-virtualenv once we drop support for Xenial. We can't update now, because it needs debhelper 12, while Xenial only backports 10. Signed-off-by: Dan Callahan <danc@element.io>
* | | Fix typo in UPGRADE.rstDenis Kasak2021-01-291-2/+2
| | |
* | | Merge branch 'social_login' into developRichard van der Hoff2021-01-2811-62/+108
|\| |
| * | Add 'brand' field to MSC2858 response (#9242)Richard van der Hoff2021-01-2710-32/+55
| | | | | | | | | | | | | | | | | | We've decided to add a 'brand' field to help clients decide how to style the buttons. Also, fix up the allowed characters for idp_id, while I'm in the area.
| * | Support for scraping email addresses from OIDC providers (#9245)Richard van der Hoff2021-01-274-30/+53
| | |
* | | Ratelimit 3PID /requestToken API (#9238)Erik Johnston2021-01-2811-14/+159
| | |
* | | Cache config options in SSL verification (#9255)Erik Johnston2021-01-282-4/+10
| | | | | | | | | Reading from the config object is *slow*.
* | | Add type hints to E2E handler. (#9232)Patrick Cloke2021-01-287-177/+198
| |/ |/| | | This finishes adding type hints to the `synapse.handlers` module.
* | Add notes on integrating with Facebook for SSO login. (#9244)Richard van der Hoff2021-01-272-5/+49
| |
* | Merge branch 'master' into developPatrick Cloke2021-01-271-2/+6
|\ \
| * | Update debian changelog. v1.26.0-deb release-v1.26.0Patrick Cloke2021-01-271-2/+6
| | |
* | | Check if a user is in the room before sending a PowerLevel event on their ↵Pankaj Yadav2021-01-272-1/+12
| | | | | | | | | | | | behalf (#9235)
* | | Merge branch 'social_login' into developRichard van der Hoff2021-01-270-0/+0
|\ \ \ | | |/ | |/|
| * | Merge tag 'v1.26.0' into social_loginRichard van der Hoff2021-01-272-3/+13
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.26.0 (2021-01-27) =========================== This release brings a new schema version for Synapse and rolling back to a previous version is not trivial. Please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes and for general upgrade guidance. No significant changes since 1.26.0rc2. Synapse 1.26.0rc2 (2021-01-25) ============================== Bugfixes -------- - Fix receipts and account data not being sent down sync. Introduced in v1.26.0rc1. ([\#9193](https://github.com/matrix-org/synapse/issues/9193), [\#9195](https://github.com/matrix-org/synapse/issues/9195)) - Fix chain cover update to handle events with duplicate auth events. Introduced in v1.26.0rc1. ([\#9210](https://github.com/matrix-org/synapse/issues/9210)) Internal Changes ---------------- - Add an `oidc-` prefix to any `idp_id`s which are given in the `oidc_providers` configuration. ([\#9189](https://github.com/matrix-org/synapse/issues/9189)) - Bump minimum `psycopg2` version to v2.8. ([\#9204](https://github.com/matrix-org/synapse/issues/9204)) Synapse 1.26.0rc1 (2021-01-20) ============================== This release brings a new schema version for Synapse and rolling back to a previous version is not trivial. Please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes and for general upgrade guidance. Features -------- - Add support for multiple SSO Identity Providers. ([\#9015](https://github.com/matrix-org/synapse/issues/9015), [\#9017](https://github.com/matrix-org/synapse/issues/9017), [\#9036](https://github.com/matrix-org/synapse/issues/9036), [\#9067](https://github.com/matrix-org/synapse/issues/9067), [\#9081](https://github.com/matrix-org/synapse/issues/9081), [\#9082](https://github.com/matrix-org/synapse/issues/9082), [\#9105](https://github.com/matrix-org/synapse/issues/9105), [\#9107](https://github.com/matrix-org/synapse/issues/9107), [\#9109](https://github.com/matrix-org/synapse/issues/9109), [\#9110](https://github.com/matrix-org/synapse/issues/9110), [\#9127](https://github.com/matrix-org/synapse/issues/9127), [\#9153](https://github.com/matrix-org/synapse/issues/9153), [\#9154](https://github.com/matrix-org/synapse/issues/9154), [\#9177](https://github.com/matrix-org/synapse/issues/9177)) - During user-interactive authentication via single-sign-on, give a better error if the user uses the wrong account on the SSO IdP. ([\#9091](https://github.com/matrix-org/synapse/issues/9091)) - Give the `public_baseurl` a default value, if it is not explicitly set in the configuration file. ([\#9159](https://github.com/matrix-org/synapse/issues/9159)) - Improve performance when calculating ignored users in large rooms. ([\#9024](https://github.com/matrix-org/synapse/issues/9024)) - Implement [MSC2176](https://github.com/matrix-org/matrix-doc/pull/2176) in an experimental room version. ([\#8984](https://github.com/matrix-org/synapse/issues/8984)) - Add an admin API for protecting local media from quarantine. ([\#9086](https://github.com/matrix-org/synapse/issues/9086)) - Remove a user's avatar URL and display name when deactivated with the Admin API. ([\#8932](https://github.com/matrix-org/synapse/issues/8932)) - Update `/_synapse/admin/v1/users/<user_id>/joined_rooms` to work for both local and remote users. ([\#8948](https://github.com/matrix-org/synapse/issues/8948)) - Add experimental support for handling to-device messages on worker processes. ([\#9042](https://github.com/matrix-org/synapse/issues/9042), [\#9043](https://github.com/matrix-org/synapse/issues/9043), [\#9044](https://github.com/matrix-org/synapse/issues/9044), [\#9130](https://github.com/matrix-org/synapse/issues/9130)) - Add experimental support for handling `/keys/claim` and `/room_keys` APIs on worker processes. ([\#9068](https://github.com/matrix-org/synapse/issues/9068)) - Add experimental support for handling `/devices` API on worker processes. ([\#9092](https://github.com/matrix-org/synapse/issues/9092)) - Add experimental support for moving off receipts and account data persistence off master. ([\#9104](https://github.com/matrix-org/synapse/issues/9104), [\#9166](https://github.com/matrix-org/synapse/issues/9166)) Bugfixes -------- - Fix a long-standing issue where an internal server error would occur when requesting a profile over federation that did not include a display name / avatar URL. ([\#9023](https://github.com/matrix-org/synapse/issues/9023)) - Fix a long-standing bug where some caches could grow larger than configured. ([\#9028](https://github.com/matrix-org/synapse/issues/9028)) - Fix error handling during insertion of client IPs into the database. ([\#9051](https://github.com/matrix-org/synapse/issues/9051)) - Fix bug where we didn't correctly record CPU time spent in `on_new_event` block. ([\#9053](https://github.com/matrix-org/synapse/issues/9053)) - Fix a minor bug which could cause confusing error messages from invalid configurations. ([\#9054](https://github.com/matrix-org/synapse/issues/9054)) - Fix incorrect exit code when there is an error at startup. ([\#9059](https://github.com/matrix-org/synapse/issues/9059)) - Fix `JSONDecodeError` spamming the logs when sending transactions to remote servers. ([\#9070](https://github.com/matrix-org/synapse/issues/9070)) - Fix "Failed to send request" errors when a client provides an invalid room alias. ([\#9071](https://github.com/matrix-org/synapse/issues/9071)) - Fix bugs in federation catchup logic that caused outbound federation to be delayed for large servers after start up. Introduced in v1.8.0 and v1.21.0. ([\#9114](https://github.com/matrix-org/synapse/issues/9114), [\#9116](https://github.com/matrix-org/synapse/issues/9116)) - Fix corruption of `pushers` data when a postgres bouncer is used. ([\#9117](https://github.com/matrix-org/synapse/issues/9117)) - Fix minor bugs in handling the `clientRedirectUrl` parameter for SSO login. ([\#9128](https://github.com/matrix-org/synapse/issues/9128)) - Fix "Unhandled error in Deferred: BodyExceededMaxSize" errors when .well-known files that are too large. ([\#9108](https://github.com/matrix-org/synapse/issues/9108)) - Fix "UnboundLocalError: local variable 'length' referenced before assignment" errors when the response body exceeds the expected size. This bug was introduced in v1.25.0. ([\#9145](https://github.com/matrix-org/synapse/issues/9145)) - Fix a long-standing bug "ValueError: invalid literal for int() with base 10" when `/publicRooms` is requested with an invalid `server` parameter. ([\#9161](https://github.com/matrix-org/synapse/issues/9161)) Improved Documentation ---------------------- - Add some extra docs for getting Synapse running on macOS. ([\#8997](https://github.com/matrix-org/synapse/issues/8997)) - Correct a typo in the `systemd-with-workers` documentation. ([\#9035](https://github.com/matrix-org/synapse/issues/9035)) - Correct a typo in `INSTALL.md`. ([\#9040](https://github.com/matrix-org/synapse/issues/9040)) - Add missing `user_mapping_provider` configuration to the Keycloak OIDC example. Contributed by @chris-ruecker. ([\#9057](https://github.com/matrix-org/synapse/issues/9057)) - Quote `pip install` packages when extras are used to avoid shells interpreting bracket characters. ([\#9151](https://github.com/matrix-org/synapse/issues/9151)) Deprecations and Removals ------------------------- - Remove broken and unmaintained `demo/webserver.py` script. ([\#9039](https://github.com/matrix-org/synapse/issues/9039)) Internal Changes ---------------- - Improve efficiency of large state resolutions. ([\#8868](https://github.com/matrix-org/synapse/issues/8868), [\#9029](https://github.com/matrix-org/synapse/issues/9029), [\#9115](https://github.com/matrix-org/synapse/issues/9115), [\#9118](https://github.com/matrix-org/synapse/issues/9118), [\#9124](https://github.com/matrix-org/synapse/issues/9124)) - Various clean-ups to the structured logging and logging context code. ([\#8939](https://github.com/matrix-org/synapse/issues/8939)) - Ensure rejected events get added to some metadata tables. ([\#9016](https://github.com/matrix-org/synapse/issues/9016)) - Ignore date-rotated homeserver logs saved to disk. ([\#9018](https://github.com/matrix-org/synapse/issues/9018)) - Remove an unused column from `access_tokens` table. ([\#9025](https://github.com/matrix-org/synapse/issues/9025)) - Add a `-noextras` factor to `tox.ini`, to support running the tests with no optional dependencies. ([\#9030](https://github.com/matrix-org/synapse/issues/9030)) - Fix running unit tests when optional dependencies are not installed. ([\#9031](https://github.com/matrix-org/synapse/issues/9031)) - Allow bumping schema version when using split out state database. ([\#9033](https://github.com/matrix-org/synapse/issues/9033)) - Configure the linters to run on a consistent set of files. ([\#9038](https://github.com/matrix-org/synapse/issues/9038)) - Various cleanups to device inbox store. ([\#9041](https://github.com/matrix-org/synapse/issues/9041)) - Drop unused database tables. ([\#9055](https://github.com/matrix-org/synapse/issues/9055)) - Remove unused `SynapseService` class. ([\#9058](https://github.com/matrix-org/synapse/issues/9058)) - Remove unnecessary declarations in the tests for the admin API. ([\#9063](https://github.com/matrix-org/synapse/issues/9063)) - Remove `SynapseRequest.get_user_agent`. ([\#9069](https://github.com/matrix-org/synapse/issues/9069)) - Remove redundant `Homeserver.get_ip_from_request` method. ([\#9080](https://github.com/matrix-org/synapse/issues/9080)) - Add type hints to media repository. ([\#9093](https://github.com/matrix-org/synapse/issues/9093)) - Fix the wrong arguments being passed to `BlacklistingAgentWrapper` from `MatrixFederationAgent`. Contributed by Timothy Leung. ([\#9098](https://github.com/matrix-org/synapse/issues/9098)) - Reduce the scope of caught exceptions in `BlacklistingAgentWrapper`. ([\#9106](https://github.com/matrix-org/synapse/issues/9106)) - Improve `UsernamePickerTestCase`. ([\#9112](https://github.com/matrix-org/synapse/issues/9112)) - Remove dependency on `distutils`. ([\#9125](https://github.com/matrix-org/synapse/issues/9125)) - Enforce that replication HTTP clients are called with keyword arguments only. ([\#9144](https://github.com/matrix-org/synapse/issues/9144)) - Fix the Python 3.5 / old dependencies build in CI. ([\#9146](https://github.com/matrix-org/synapse/issues/9146)) - Replace the old `perspectives` option in the Synapse docker config file template with `trusted_key_servers`. ([\#9157](https://github.com/matrix-org/synapse/issues/9157))
* | | Merge branch 'social_login' into developRichard van der Hoff2021-01-279-21/+230
|\| |
| * | Implement MSC2858 support (#9183)Richard van der Hoff2021-01-279-21/+230
| | | | | | | | | Fixes #8928.
* | | Merge branch 'master' into developPatrick Cloke2021-01-272-3/+13
|\ \ \ | | |/ | |/|
| * | Move note above changes. v1.26.0Patrick Cloke2021-01-271-2/+2
| | |
| * | Copy the upgrade note to 1.26.0.Patrick Cloke2021-01-271-3/+7
| | |
| * | 1.26.0Patrick Cloke2021-01-272-1/+7
| | |
* | | Clean-up the template loading code. (#9200)Patrick Cloke2021-01-2712-38/+96
| | | | | | | | | | | | | | | * Enables autoescape by default for HTML files. * Adds a new read_template method for reading a single template. * Some logic clean-up.
* | | Add a note to changelog about redis usage (#9227)Erik Johnston2021-01-273-1/+11
| | |
* | | Merge branch 'social_login' into developRichard van der Hoff2021-01-270-0/+0
|\ \ \ | | |/ | |/|
| * | Fix Python 3.5 old deps build by using a compatible pip version. (#9217)Patrick Cloke2021-01-253-8/+11
| | | | | | | | | | | | | | | Co-authored-by: Dan Callahan <danc@element.io> pip 21.0 stopped supporting Python 3.5.
| * | Merge tag 'v1.26.0rc2' into social_loginRichard van der Hoff2021-01-2512-13/+113
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.26.0rc2 (2021-01-25) ============================== Bugfixes -------- - Fix receipts and account data not being sent down sync. Introduced in v1.26.0rc1. ([\#9193](https://github.com/matrix-org/synapse/issues/9193), [\#9195](https://github.com/matrix-org/synapse/issues/9195)) - Fix chain cover update to handle events with duplicate auth events. Introduced in v1.26.0rc1. ([\#9210](https://github.com/matrix-org/synapse/issues/9210)) Internal Changes ---------------- - Add an `oidc-` prefix to any `idp_id`s which are given in the `oidc_providers` configuration. ([\#9189](https://github.com/matrix-org/synapse/issues/9189)) - Bump minimum `psycopg2` version to v2.8. ([\#9204](https://github.com/matrix-org/synapse/issues/9204))
* | | Pass a dict, instead of None, to modules if a None config is specified in ↵Andrew Morgan2021-01-272-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | the homeserver config (#9229) If a Synapse module's config block were empty in YAML, thus being translated to a `Nonetype` in Python, then some modules could fail as that None ends up getting passed to their `parse_config` method. Modules are expected to accept a `dict` instead. This PR ensures that if the user does end up specifying an empty config block (such as what [the default oidc config in the sample config](https://github.com/matrix-org/synapse/blob/5310808d3bebd17275355ecd474bc013e8c7462d/docs/sample_config.yaml#L1816-L1845) states) then `None` is not passed to the module. An empty dict is passed instead. This code assumes that no existing modules are relying on receiving a `None` config block, but I'd really hope that they aren't.
* | | Add type hints to various handlers. (#9223)Patrick Cloke2021-01-2614-138/+205
| | | | | | | | | | | | With this change all handlers except the e2e_* ones have type hints enabled.
* | | Do not require the CAS service URL setting (use public_baseurl instead). (#9199)Patrick Cloke2021-01-265-16/+10
| | | | | | | | | | | | The current configuration is handled for backwards compatibility, but is considered deprecated.
* | | Precompute joined hosts and store in Redis (#9198)Erik Johnston2021-01-2611-49/+265
| | |
* | | Try to recover from unknown encodings when previewing media. (#9164)Patrick Cloke2021-01-263-10/+64
| | | | | | | | | | | | | | | | | | Treat unknown encodings (according to lxml) as UTF-8 when generating a preview for HTML documents. This isn't fully accurate, but will hopefully give a reasonable title and summary.
* | | Update isort to v5.7.0 (#9222)Andrew Morgan2021-01-262-1/+2
| | | | | | | | | | | | | | | This new version no longer has the problem of adding/removing a blank line in `.pyi` files, which black disagrees with. This would cause `isort` to slightly modify `.pyi` files, before `black` would subsequently modify back directly afterwards. Relevant `isort` issue: https://github.com/pycqa/isort/issues/1284
* | | Merge pull request #9062 from matrix-org/jaywink/admin-forward-extremitiesJason Robinson2021-01-266-2/+220
|\ \ \ | | | | | | | | Add forward extremities endpoint to rooms admin API
| * | | Fix get forward extremities queryJason Robinson2021-01-261-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | Merge branch 'develop' into jaywink/admin-forward-extremitiesJason Robinson2021-01-2610-8/+168
| |\ \ \ | | | | | | | | | | | | | | | | | | | | # Conflicts: # synapse/rest/admin/__init__.py
| * | | | Make natural join inner joinJason Robinson2021-01-261-2/+2
| | | | | | | | | | | | | | | Co-authored-by: Erik Johnston <erik@matrix.org>
| * | | | Merge remote-tracking branch 'origin/develop' into ↵Patrick Cloke2021-01-253-8/+11
| |\ \ \ \ | | | | | | | | | | | | | | | | | | jaywink/admin-forward-extremities
| * \ \ \ \ Merge remote-tracking branch 'origin/develop' into ↵Jason Robinson2021-01-2513-24/+276
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | jaywink/admin-forward-extremities
| * \ \ \ \ \ Merge branch 'develop' into jaywink/admin-forward-extremitiesJason Robinson2021-01-23209-2405/+7802
| |\ \ \ \ \ \
| * | | | | | | Add depth and received_ts to forward_extremities admin API responseJason Robinson2021-01-232-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also add a warning on the admin API documentation. Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Remove trailing whitespace to appease the linterJason Robinson2021-01-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Simplify delete_forward_extremities_for_room_txn SQLJason Robinson2021-01-111-10/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As per feedback. Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Address pr feedbackJason Robinson2021-01-115-36/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * docs updates * prettify SQL * add missing copyright * cursor_to_dict * update touched files copyright years Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Clarify rooms.mdJason Robinson2021-01-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
| * | | | | | | Don't try to use f-stringsJason Robinson2021-01-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Add changelog and admin API docsJason Robinson2021-01-092-0/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | Merge branch 'develop' into jaywink/admin-forward-extremitiesJason Robinson2021-01-0923-167/+384
| |\ \ \ \ \ \ \
| * | | | | | | | Implement clearing cache after deleting forward extremitiesJason Robinson2021-01-092-20/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also run linter. Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | | Add Rooms admin forward extremities DELETE endpointJason Robinson2021-01-082-1/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | | Move unknown room ID error into resolve_room_idJason Robinson2021-01-071-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jason Robinson <jasonr@matrix.org>
| * | | | | | | | Add forward extremities endpoint to rooms admin APIJason Robinson2021-01-074-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GET /_synapse/admin/v1/rooms/<identifier>/forward_extremities now gets forward extremities for a room, returning count and the list of extremities. Signed-off-by: Jason Robinson <jasonr@matrix.org>
* | | | | | | | | Periodically send pings to detect dead Redis connections (#9218)Erik Johnston2021-01-264-57/+107
| |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done by creating a custom `RedisFactory` subclass that periodically pings all connections in its pool. We also ensure that the `replyTimeout` param is non-null, so that we timeout waiting for the reply to those pings (and thus triggering a reconnect).
* | | | | | | | Don't error if deleting a non-existent pusher. (#9121)Patrick Cloke2021-01-252-1/+4
| | | | | | | |
* | | | | | | | Add an admin API for shadow-banning users. (#9209)Patrick Cloke2021-01-258-7/+164
| |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This expands the current shadow-banning feature to be usable via the admin API and adds documentation for it. A shadow-banned users receives successful responses to their client-server API requests, but the events are not propagated into rooms. Shadow-banning a user should be used as a tool of last resort and may lead to confusing or broken behaviour for the client.
* | | | | | | Fix Python 3.5 old deps build by using a compatible pip version. (#9217)Patrick Cloke2021-01-253-8/+11
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Dan Callahan <danc@element.io> pip 21.0 stopped supporting Python 3.5.
* | | | | | Merge tag 'v1.26.0rc2' into developPatrick Cloke2021-01-259-8/+34
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.26.0rc2 (2021-01-25) ============================== Bugfixes -------- - Fix receipts and account data not being sent down sync. Introduced in v1.26.0rc1. ([\#9193](https://github.com/matrix-org/synapse/issues/9193), [\#9195](https://github.com/matrix-org/synapse/issues/9195)) - Fix chain cover update to handle events with duplicate auth events. Introduced in v1.26.0rc1. ([\#9210](https://github.com/matrix-org/synapse/issues/9210)) Internal Changes ---------------- - Add an `oidc-` prefix to any `idp_id`s which are given in the `oidc_providers` configuration. ([\#9189](https://github.com/matrix-org/synapse/issues/9189)) - Bump minimum `psycopg2` version to v2.8. ([\#9204](https://github.com/matrix-org/synapse/issues/9204))
| * | | | | Tweak changes. v1.26.0rc2Patrick Cloke2021-01-251-2/+2
| | | | | |
| * | | | | 1.26.0rc2Patrick Cloke2021-01-257-6/+18
| | | | | |
| * | | | | Fix chain cover update to handle events with duplicate auth events (#9210)Erik Johnston2021-01-223-1/+14
| | | | | |
| * | | | | Bump psycopg2 version (#9204)Erik Johnston2021-01-223-3/+4
| | | | | | | | | | | | | | | | | | As we use `execute_values` with the `fetch` parameter.
* | | | | | Handle missing content keys when calculating presentable names. (#9165)Patrick Cloke2021-01-254-16/+242
| |_|_|/ / |/| | | | | | | | | | | | | | Treat the content as untrusted and do not assume it is of the proper form.
* | | | | Return a 404 if no valid thumbnail is found. (#9163)Patrick Cloke2021-01-214-82/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If no thumbnail of the requested type exists, return a 404 instead of erroring. This doesn't quite match the spec (which does not define what happens if no thumbnail can be found), but is consistent with what Synapse already does.
* | | | | Align the directories linted in CI with the defaults in scripts-dev/lint.sh ↵Andrew Morgan2021-01-213-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | (#9191) The lists of source directories to lint between `tox.ini` and `lint.sh` became out of sync. This PR tightens them up and adds some comments reminding any future readers to keep the list in sync.
* | | | | Speed up chain cover calculation (#9176)Erik Johnston2021-01-213-55/+161
| | | | |
* | | | | Increase perf of handling concurrent use of StreamIDGenerators. (#9190)Erik Johnston2021-01-212-8/+14
| | | | | | | | | | | | | | | | | | | | | | | | | We have seen a failure mode here where if there are many in flight unfinished IDs then marking an ID as finished takes a lot of CPU (as calling deque.remove iterates over the list)
* | | | | Merge remote-tracking branch 'origin/release-v1.26.0' into developErik Johnston2021-01-213-1/+20
|\| | | |
| * | | | Add schema update to fix existing DBs affected by #9193 (#9195)Erik Johnston2021-01-213-1/+20
| | | | |
* | | | | Merge remote-tracking branch 'origin/release-v1.26.0' into developErik Johnston2021-01-215-7/+62
|\| | | |
| * | | | Fix receipts or account data not being sent down sync (#9193)Erik Johnston2021-01-215-7/+62
| | | | | | | | | | | | | | | | | | | | | | | | | Introduced in #9104 This wasn't picked up by the tests as this is all fine the first time you run Synapse (after upgrading), but then when you restart the wrong value is pulled from `stream_positions`.
* | | | | Use execute_batch in more places (#9188)Erik Johnston2021-01-2112-31/+26
| | | | | | | | | | | | | | | | | | | | | | | | | * Use execute_batch in more places * Newsfile
* | | | | Add tests for List Users Admin API (#9045)Dirk Klimpel2021-01-213-30/+215
| |_|_|/ |/| | |
* | | | Add a check for duplicate IdP ids (#9184)Richard van der Hoff2021-01-212-0/+12
| | | |
* | | | Merge remote-tracking branch 'origin/release-v1.26.0' into developRichard van der Hoff2021-01-215-10/+36
|\| | |
| * | | Prefix idp_id with "oidc-" (#9189)Richard van der Hoff2021-01-214-9/+35
| | | | | | | | | | | | ... to avoid clashes with other SSO mechanisms
| * | | Fix a typo in the release notes.Patrick Cloke2021-01-201-1/+1
| | | |
* | | | Use execute_batch instead of executemany in places (#9181)Erik Johnston2021-01-213-12/+12
| | | | | | | | | | | | `execute_batch` does fewer round trips in postgres than `executemany`, but does not give a correct `txn.rowcount` result after.