summary refs log tree commit diff
path: root/changelog.d (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Stop the master relaying USER_SYNC for other workers (#7318)Richard van der Hoff2020-04-221-0/+1
| | | | | | | Long story short: if we're handling presence on the current worker, we shouldn't be sending USER_SYNC commands over replication. In an attempt to figure out what is going on here, I ended up refactoring some bits of the presencehandler code, so the first 4 commits here are non-functional refactors to move this code slightly closer to sanity. (There's still plenty to do here :/). Suggest reviewing individual commits. Fixes (I hope) #7257.
* Fix replication metrics when using redis (#7325)Erik Johnston2020-04-221-0/+1
|
* Merge tag 'v1.12.4rc1' into developRichard van der Hoff2020-04-225-5/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.12.4rc1 (2020-04-22) ============================== Features -------- - Always send users their own device updates. ([\#7160](https://github.com/matrix-org/synapse/issues/7160)) - Add support for handling GET requests for `account_data` on a worker. ([\#7311](https://github.com/matrix-org/synapse/issues/7311)) Bugfixes -------- - Fix a bug that prevented cross-signing with users on worker-mode synapses. ([\#7255](https://github.com/matrix-org/synapse/issues/7255)) - Do not treat display names as globs in push rules. ([\#7271](https://github.com/matrix-org/synapse/issues/7271)) - Fix a bug with cross-signing devices belonging to remote users who did not share a room with any user on the local homeserver. ([\#7289](https://github.com/matrix-org/synapse/issues/7289))
| * 1.12.4rc1Richard van der Hoff2020-04-225-5/+0
| |
* | Another go at fixing one-word commands (#7326)Richard van der Hoff2020-04-221-0/+1
| | | | | | I messed this up last time I tried (#7239 / e13c6c7).
* | fix changelog nameRichard van der Hoff2020-04-221-0/+0
| |
* | Extend StreamChangeCache to support multiple entities per stream ID (#7303)Richard van der Hoff2020-04-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | First some background: StreamChangeCache is used to keep track of what "entities" have changed since a given stream ID. So for example, we might use it to keep track of when the last to-device message for a given user was received [1], and hence whether we need to pull any to-device messages from the database on a sync [2]. Now, it turns out that StreamChangeCache didn't support more than one thing being changed at a given stream_id (this was part of the problem with #7206). However, it's entirely valid to send to-device messages to more than one user at a time. As it turns out, this did in fact work, because *some* methods of StreamChangeCache coped ok with having multiple things changing on the same stream ID, and it seems we never actually use the methods which don't work on the stream change caches where we allow multiple changes at the same stream ID. But that feels horribly fragile, hence: let's update StreamChangeCache to properly support this, and add some typing and some more tests while we're at it. [1]: https://github.com/matrix-org/synapse/blob/release-v1.12.3/synapse/storage/data_stores/main/deviceinbox.py#L301 [2]: https://github.com/matrix-org/synapse/blob/release-v1.12.3/synapse/storage/data_stores/main/deviceinbox.py#L47-L51
* | Extend room admin api with additional attributes (#7225)Dirk Klimpel2020-04-221-0/+1
| |
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-222-0/+2
|\|
| * Do not treat display names as globs for push rules. (#7271)Patrick Cloke2020-04-221-0/+1
| |
| * Query missing cross-signing keys on local sig upload (#7289)Andrew Morgan2020-04-221-0/+1
| |
| * Fix changelog fileRichard van der Hoff2020-04-212-1/+1
| | | | | | | | I updated the PR and forgot to update the changelog.
| * Support GET account_data requests on a worker (#7311)Richard van der Hoff2020-04-211-0/+1
| |
* | Add ability to run replication protocol over redis. (#7040)Erik Johnston2020-04-221-0/+1
| | | | | | This is configured via the `redis` config options.
* | Reduce logging verbosity of URL cache cleanup. (#7295)Michael Kaye2020-04-221-0/+1
| |
* | import urllib.parse when using urllib.parse.quote (#7319)Andrew Morgan2020-04-221-0/+1
| |
* | Reduce federation logging on success (#7321)Michael Kaye2020-04-221-0/+1
| | | | | | | | Splitting based on the response code means we can avoid double logging here and identical information from line 164 while still logging at info if we don't get a good response and need to retry.
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-201-1/+0
|\|
| * Revert "Query missing cross-signing keys on local sig upload"Richard van der Hoff2020-04-201-1/+0
| | | | | | | | | | | | This was incorrectly merged to the release branch before it was ready. This reverts commit 72fe2affb6ac86d433b80b6452da57052365aa26.
* | Merge branch 'release-v1.12.4' into developRichard van der Hoff2020-04-201-0/+1
|\|
| * Always send the user updates to their own device list (#7160)David Baker2020-04-201-0/+1
| |
| * Query missing cross-signing keys on local sig uploadAndrew Morgan2020-04-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add changelog Save retrieved keys to the db lint Fix and de-brittle remote result dict processing Use query_user_devices instead, assume only master, self_signing key types Make changelog more useful Remove very specific exception handling Wrap get_verify_key_from_cross_signing_key in a try/except Note that _get_e2e_cross_signing_verify_key can raise a SynapseError lint Add comment explaining why this is useful Only fetch master and self_signing key types Fix log statements, docstrings Remove extraneous items from remote query try/except lint Factor key retrieval out into a separate function Send device updates, modeled after SigningKeyEduUpdater._handle_signing_key_updates Update method docstring
| * Only register devices edu handler on the master process (#7255)Andrew Morgan2020-04-141-0/+1
| |
| * 1.12.3Richard van der Hoff2020-04-031-1/+0
| |
| * Fix the debian build in a better way. (#7212)Richard van der Hoff2020-04-031-0/+1
| |
| * 1.12.1rc1Andrew Morgan2020-03-313-3/+0
| |
| * NewsfileErik Johnston2020-03-311-0/+1
| |
| * Rewrite changelogAndrew Morgan2020-03-311-1/+1
| |
| * Add changelogAndrew Morgan2020-03-311-0/+1
| |
| * Only import sqlite3 when type checkingDavid Vo2020-03-311-0/+1
| | | | | | | | | | Fixes: #7127 Signed-off-by: David Vo <david@vovo.id.au>
* | Fix indention in generated config file (#7300)Lars Franke2020-04-201-0/+1
| | | | | | | | | | | | Also adjust sample_config.yaml Signed-off-by: Lars Franke <frcl@mailbox.org>
* | Reject unknown UI auth sessions (instead of silently generating a new one) ↵Patrick Cloke2020-04-201-0/+1
| | | | | | | | (#7268)
* | On catchup, process each row with its own stream id (#7286)Richard van der Hoff2020-04-201-0/+1
| | | | | | | | | | | | Other parts of the code (such as the StreamChangeCache) assume that there will not be multiple changes with the same stream id. This code was introduced in #7024, and I hope this fixes #7206.
* | Use a template for the SSO success page to allow for customization. (#7279)Patrick Cloke2020-04-171-0/+1
| |
* | Added explicit Python build tools to snap requirements (#7213)James2020-04-171-0/+1
| | | | | | Signed-off-by: James Hebden <james@ec0.io>
* | Improve type checking in `replication.tcp.Stream` (#7291)Richard van der Hoff2020-04-171-0/+1
| | | | | | | | | | | | | | The general idea here is to get rid of the type: ignore annotations on all of the current_token and update_function assignments, which would have caught #7290. After a bit of experimentation, it seems like the least-awful way to do this is to pass the offending functions in as parameters to the Stream constructor. Unfortunately that means that the concrete implementations no longer have the same constructor signature as Stream itself, which means that it gets hard to correctly annotate STREAMS_MAP. I've also introduced a couple of new types, to take out some duplication.
* | Clarify the comments for media_storage_providers options (#7272)Tristan Lins2020-04-171-0/+1
| |
* | Do not treat display names as globs for push rules. (#7271)Patrick Cloke2020-04-161-0/+1
| |
* | Fix 'generator object is not subscriptable' error (#7290)Richard van der Hoff2020-04-161-0/+1
| | | | | | | | | | | | Some of the query functions return generators rather than lists, so we can't index into the result. Happily we already have a copy of the results. (think this was introduced in #7024)
* | Convert auth handler to async/await (#7261)Patrick Cloke2020-04-151-0/+1
| |
* | Add notes to the changelog about an additional SSO template. (#7259)Patrick Cloke2020-04-151-0/+1
| |
* | Allow specifying the value of Accept-Language header for URL previews (#7265)Andrew Morgan2020-04-151-0/+1
| |
* | Fix a potentially-huge sql query (#7274)Richard van der Hoff2020-04-151-0/+1
| | | | | | | | | | We could end up looking up tens of thousands of events, which could cause large amounts of data to be logged to the postgres log.
* | Fix the parameters of a test fixture (#7243)Zay11Zay2020-04-141-0/+1
| |
* | Only register devices edu handler on the master process (#7255)Andrew Morgan2020-04-141-0/+1
| |
* | Add setting to nginx configuration to allow larger file uploads (#7251)Ryan Hovland2020-04-131-0/+1
| |
* | Check on room creation if the user is allowed to publish the room to the ↵PeerD2020-04-131-0/+1
| | | | | | | | room directory. (#7260)
* | Default PL100 to enable encryption in a room (#7230)Andrew Morgan2020-04-091-0/+1
| |
* | Do not allow a deactivated user to login via SSO. (#7240)Patrick Cloke2020-04-091-0/+1
| |
* | Unblacklist /upgrade creates a new room (#7228)Andrew Morgan2020-04-091-0/+1
| | | | | | | | | | | | This commit was originally merged in #7228 but reverted in #7254 as the associated sytest was not ready yet. Now that it is, we can merge this again.
* | Add matrix-synapse-shared-secret-auth as an example password provider (#7248)Andrew Morgan2020-04-091-0/+1
| |
* | Revert "Unblacklist /upgrade creates a new room (#7228)" (#7254)Andrew Morgan2020-04-091-1/+0
| | | | | | This reverts commit 59f0ca8b87c15a314859d94978d90a8aa0e7543b.
* | Unblacklist /upgrade creates a new room (#7228)Andrew Morgan2020-04-091-0/+1
| |
* | Fix --help commandline argument (#7249)Richard van der Hoff2020-04-091-0/+1
| | | | | | | | | | | | | | | | I don't really remember why this was so complicated; I think it dates back to the time when we had to instantiate the Config classes before we could call `add_arguments` - ie before #5597. In any case, I don't think there's a good reason for it any more, and the impact of it being complicated is that `--help` doesn't work correctly.
* | Make it clearer to the user that they haven't overridden onLogin/Register ↵Andrew Morgan2020-04-091-0/+1
| | | | | | | | (#7237)
* | Upgrade jQuery to 3.x on fallback login/registration screens (#7236)Andrew Morgan2020-04-091-0/+1
| |
* | Remove redundant checks on `daemonize` from synctl (#7233)Richard van der Hoff2020-04-081-0/+1
| | | | | | | | | | We pass --daemonize on the commandline, which (since at least #4853) overrides whatever the config file, so there is no need for it to be set in the config file.
* | Make systemd-with-workers doc official (#7234)Richard van der Hoff2020-04-081-0/+1
| | | | | | | | Simplify and update this documentation, and make it part of the core dist.
* | Fix changelog for #7235Brendan Abolivier2020-04-082-1/+1
| |
* | Add documentation to password_providers config option (#7238)Andrew Morgan2020-04-081-0/+1
| |
* | bg update to clear out duplicate outbound_device_list_pokes (#7193)Richard van der Hoff2020-04-071-0/+1
| | | | | | | | We seem to have some duplicates, which could do with being cleared out.
* | Merge pull request #7239 from matrix-org/rav/replication_cleanupRichard van der Hoff2020-04-071-0/+1
|\ \ | | | | | | Miscellaneous cleanups to replication code
| * | changelogRichard van der Hoff2020-04-071-0/+1
| | |
* | | Convert delete_url_cache_media to async/await. (#7241)Patrick Cloke2020-04-071-0/+1
| | |
* | | Add typing information to federation_server. (#7219)Patrick Cloke2020-04-071-0/+1
| | |
* | | Fix typo in the login fallback javascript (#7235)Brendan Abolivier2020-04-071-0/+1
|/ / | | | | | | | | * Fix typo in the login fallback javascript * Changelog
* | Remove sent outbound device list pokes from the database (#7192)Richard van der Hoff2020-04-071-0/+1
| | | | | | They just get in the way.
* | Fix race in replication (#7226)Erik Johnston2020-04-071-0/+1
| | | | | | | | Fixes a race between handling `POSITION` and `RDATA` commands. We do this by simply linearizing handling of them.
* | Move server command handling out of TCP protocol (#7187)Erik Johnston2020-04-071-0/+1
| | | | | | This completes the merging of server and client command processing.
* | Remove stream before/after debug log lines (#7207)Andrew Morgan2020-04-061-0/+1
| |
* | Improve error responses when a remote server doesn't allow you to access its ↵Andrew Morgan2020-04-061-0/+1
| | | | | | | | public rooms list (#6899)
* | Move client command handling out of TCP protocol (#7185)Erik Johnston2020-04-061-0/+1
| | | | | | The aim here is to move the command handling out of the TCP protocol classes and to also merge the client and server command handling (so that we can reuse them for redis protocol). This PR simply moves the client paths to the new `ReplicationCommandHandler`, a future PR will move the server paths too.
* | Server notices: Dissociate room creation/lookup from invite (#7199)Brendan Abolivier2020-04-041-0/+1
| | | | | | | | | | | | | | | | | | Fixes #6815 Before figuring out whether we should alert a user on MAU, we call get_notice_room_for_user to get some info on the existing server notices room for this user. This function, if the room doesn't exist, creates it and invites the user in it. This means that, if we decide later that no server notice is needed, the user gets invited in a room with no message in it. This happens at every restart of the server, since the room ID returned by get_notice_room_for_user is cached. This PR fixes that by moving the inviting bit to a dedicated function, that's only called when the server actually needs to send a notice to the user. A potential issue with this approach is that the room that's created by get_notice_room_for_user doesn't match how that same function looks for an existing room (i.e. it creates a room that doesn't have an invite or a join for the current user in it, so it could lead to a new room being created each time a user syncs), but I'm not sure this is a problem given it's cached until the server restarts, so that function won't run very often. It also renames get_notice_room_for_user into get_or_create_notice_room_for_user to make what it does clearer.
* | Support CAS in UI Auth flows. (#7186)Patrick Cloke2020-04-031-0/+1
| |
* | Extend web_client_location to handle absolute URLs (#7006)Martin Milata2020-04-031-0/+1
| | | | | | | | | | Log warning when filesystem path is used. Signed-off-by: Martin Milata <martin@martinmilata.cz>
* | Add some benchmarks for LruCache (#6446)Amber Brown2020-04-031-0/+1
| |
* | Convert http.HTTPStatus objects to their int equivalent (#7188)Andrew Morgan2020-04-031-0/+1
| |
* | Reduce the number of calls to `resource.getrusage` (#7183)Richard van der Hoff2020-04-031-0/+1
| | | | | | Let's just call `getrusage` once on each logcontext change, rather than twice.
* | Merge pull request #7190 from matrix-org/rav/one_bg_update_at_a_timeRichard van der Hoff2020-04-031-0/+1
|\ \ | | | | | | Only run one background update at a time
| * | changelogRichard van der Hoff2020-03-311-0/+1
| | |
* | | Remove some `run_in_background` calls in replication code (#7203)Richard van der Hoff2020-04-031-0/+1
| | | | | | | | | | | | | | | | | | By running this stuff with `run_in_background`, it won't be correctly reported against the relevant CPU usage stats. Fixes #7202
* | | Fix device list update stream ids going backward (#7158)Richard van der Hoff2020-04-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Occasionally we could get a federation device list update transaction which looked like: ``` [ {'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D2', 'prev_id': [], 'stream_id': 12, 'deleted': True}}, {'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D1', 'prev_id': [12], 'stream_id': 11, 'deleted': True}}, {'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D3', 'prev_id': [11], 'stream_id': 13, 'deleted': True}} ] ``` Having `stream_ids` which are lower than `prev_ids` looks odd. It might work (I'm not actually sure), but in any case it doesn't seem like a reasonable thing to expect other implementations to support.
* | | Support SAML in the user interactive authentication workflow. (#7102)Patrick Cloke2020-04-011-0/+1
| | |
* | | Allow admins to create aliases when they are not in the room (#7191)Patrick Cloke2020-04-011-0/+1
| | |
* | | Update postgres.md (#7119)siroccal2020-04-011-0/+1
| | |
* | | Remove connections per replication stream metric. (#7195)Erik Johnston2020-04-011-0/+1
| | | | | | | | | | | | | | | This broke in a recent PR (#7024) and is no longer useful due to all replication clients implicitly subscribing to all streams, so let's just remove it.
* | | Improve TURN documentation. (#7167)Jostein Kjønigsen2020-03-311-0/+1
|/ /
* | Fix "'NoneType' has no attribute start|stop" logcontext errors (#7181)Richard van der Hoff2020-03-311-0/+1
| | | | | | | | Fixes #7179.
* | Fill in the 'default' field for user-defined push rules (#6639)Karlinde2020-03-311-0/+1
| | | | | | Signed-off-by: Karl Linderhed <git@karlinde.se>
* | Only setdefault for signatures if device has key_json (#7177)Andrew Morgan2020-03-311-0/+1
| |
* | Fix use of async/await in media code (#7184)Patrick Cloke2020-03-311-0/+1
| |
* | Fix a bug which could cause incorrect 'cyclic dependency' error. (#7178)Richard van der Hoff2020-03-311-0/+1
| | | | | | | | | | | | | | | | If there was an exception setting up one of the attributes of the Homeserver god object, then future attempts to fetch that attribute would raise a confusing "Cyclic dependency" error. Let's make sure that we clear the `building` flag so that we just get the original exception. Ref: #7169
* | Rewrite prune_old_outbound_device_pokes for efficiency (#7159)Richard van der Hoff2020-03-301-0/+1
| | | | | | | | make sure we clear out all but one update for the user
* | Transfer alias mappings when joining an upgraded room (#6946)Andrew Morgan2020-03-301-0/+1
| |
* | Fix a small typo in the `metrics_flags` config option. (#7171)Andrew Morgan2020-03-301-0/+1
| |
* | Remove usage of "conn_id" for presence. (#7128)Erik Johnston2020-03-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove `conn_id` usage for UserSyncCommand. Each tcp replication connection is assigned a "conn_id", which is used to give an ID to a remotely connected worker. In a redis world, there will no longer be a one to one mapping between connection and instance, so instead we need to replace such usages with an ID generated by the remote instances and included in the replicaiton commands. This really only effects UserSyncCommand. * Add CLEAR_USER_SYNCS command that is sent on shutdown. This should help with the case where a synchrotron gets restarted gracefully, rather than rely on 5 minute timeout.
* | Merge pull request #7160 from ↵David Baker2020-03-301-0/+1
|\ \ | | | | | | | | | | | | matrix-org/dbkr/always_send_own_device_list_updates Always send the user updates to their own device list
| * | changelogDavid Baker2020-03-271-0/+1
| | |
* | | Merge pull request #7157 from matrix-org/rev.outbound_device_pokes_testsRichard van der Hoff2020-03-301-0/+1
|\ \ \ | | | | | | | | Add tests for outbound device pokes
| * | | Add tests for outbound device pokesRichard van der Hoff2020-03-271-0/+1
| | | |
* | | | Add developer documentation for running a local CAS server (#7147)Patrick Cloke2020-03-301-0/+1
| | | |
* | | | Always whitelist the login fallback for SSO (#7153)Richard van der Hoff2020-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | That fallback sets the redirect URL to itself (so it can process the login token then return gracefully to the client). This would make it pointless to ask the user for confirmation, since the URL the confirmation page would be showing wouldn't be the client's.
* | | | Improve the UX of the login fallback when using SSO (#7152)Brendan Abolivier2020-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Don't show the login forms if we're currently logging in with a password or a token. * Submit directly the SSO login form, showing only a spinner to the user, in order to eliminate from the clunkiness of SSO through this fallback.
* | | | Admin API to join users to a room. (#7051)Dirk Klimpel2020-03-271-0/+1
| | | |
* | | | Add options to prevent users from changing their profile. (#7096)Dirk Klimpel2020-03-271-0/+1
| | | |
* | | | update debian installation instructions to recommend installing `virtualenv` ↵txt-file2020-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of `python3-virtualenv` (#6892) * change debian package from python3-virtualenv to virtualenv The virtualenv package is needed for the virtualenv command. The virtualenv package depends on python3-virtualenv (at least since debian jessie) so there is no need to specify python3-virtualenv additionally. Signed-off-by: Vieno Hakkerinen <vieno@hakkerinen.eu> * Add changelog Co-authored-by: Andrew Morgan <andrew@amorgan.xyz>
* | | | Ensure is_verified on /_matrix/client/r0/room_keys/keys is a boolean (#7150)Andrew Morgan2020-03-271-0/+1
| | | |
* | | | Only import sqlite3 when type checking (#7155)David Vo2020-03-271-0/+1
| |/ / |/| | | | | | | | Fixes: #7127 Signed-off-by: David Vo <david@vovo.id.au>
* | | Merge pull request #7151 from matrix-org/jaywink/saml-redirect-fixJason Robinson2020-03-261-0/+1
|\ \ \ | | | | | | | | Allow RedirectResponse in SAML response handler
| * | | Update changelog.d/7151.bugfixJason Robinson2020-03-261-1/+1
| | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| * | | Allow RedirectResponse in SAML response handlerJason Robinson2020-03-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow custom SAML handlers to redirect after processing an auth response. Fixes #7149 Signed-off-by: Jason Robinson <jasonr@matrix.org>
* | | | Refactor the CAS code (move the logic out of the REST layer to a handler) ↵Patrick Cloke2020-03-261-0/+1
| | | | | | | | | | | | | | | | (#7136)
* | | | Don't default to an invalid sqlite config if no database configuration is ↵Nektarios Katakis2020-03-261-0/+1
| | | | | | | | | | | | | | | | provided (#6573)
* | | | Allow server admins to define and enforce a password policy (MSC2000). (#7118)Dirk Klimpel2020-03-261-0/+1
|/ / /
* | | Validate that the session is not modified during UI-Auth (#7068)Patrick Cloke2020-03-261-0/+1
| | |
* | | Remove unused captcha_bypass_secret option (#7137)Aaron Raimist2020-03-251-0/+1
| | | | | | | | | Signed-off-by: Aaron Raimist <aaron@raim.ist>
* | | Move catchup of replication streams to worker. (#7024)Erik Johnston2020-03-251-0/+1
| | | | | | | | | This changes the replication protocol so that the server does not send down `RDATA` for rows that happened before the client connected. Instead, the server will send a `POSITION` and clients then query the database (or master out of band) to get up to date.
* | | Various cleanups to INSTALL.md (#7141)Andrew Morgan2020-03-251-0/+1
| | |
* | | Merge pull request #7133 from matrix-org/erikj/fix_worker_startupErik Johnston2020-03-251-0/+1
|\ \ \ | | | | | | | | Fix starting workers when federation sending not split out.
| * | | NewsfileErik Johnston2020-03-241-0/+1
| | | |
* | | | Clean up some LoggingContext stuff (#7120)Richard van der Hoff2020-03-241-0/+1
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Pull Sentinel out of LoggingContext ... and drop a few unnecessary references to it * Factor out LoggingContext.current_context move `current_context` and `set_context` out to top-level functions. Mostly this means that I can more easily trace what's actually referring to LoggingContext, but I think it's generally neater. * move copy-to-parent into `stop` this really just makes `start` and `stop` more symetric. It also means that it behaves correctly if you manually `set_log_context` rather than using the context manager. * Replace `LoggingContext.alive` with `finished` Turn `alive` into `finished` and make it a bit better defined.
* | | Fix CAS redirect url (#6634)Naugrimm2020-03-241-0/+1
| | | | | | | | | Build the same service URL when requesting the CAS ticket and when calling the proxyValidate URL.
* | | Use the proper error code when a canonical alias that does not exist is ↵Patrick Cloke2020-03-231-0/+1
| | | | | | | | | | | | used. (#7109)
* | | Update pre-built package name for FreeBSD (#7107). (#7107)Kartikaya Gupta (kats)2020-03-231-0/+1
| | | | | | | | | Signed-off-by: Kartikaya Gupta <kats@trevize.staktrace.com>
* | | Convert `*StreamRow` classes to inner classes (#7116)Richard van der Hoff2020-03-231-0/+1
| | | | | | | | | | | | | | | This just helps keep the rows closer to their streams, so that it's easier to see what the format of each stream is.
* | | Fix processing of `groups` stream, and use symbolic names for streams (#7117)Richard van der Hoff2020-03-231-0/+1
| | | | | | | | | | | | | | | | | | `groups` != `receipts` Introduced in #6964
* | | Set Referrer-Policy to no-referrer for media (#7009)Dionysis Grigoropoulos2020-03-231-0/+1
| | |
* | | Clean-up some auth/login REST code (#7115)Patrick Cloke2020-03-201-0/+1
| | |
* | | Improve database configuration docs (#6988)Richard van der Hoff2020-03-201-0/+1
| | | | | | | | | | | | | | | Attempts to clarify the sample config for databases, and add some stuff about tcp keepalives to `postgres.md`.
* | | Remove concept of a non-limited stream. (#7011)Erik Johnston2020-03-201-0/+1
| | |
* | | Convert some of the media REST code to async/await (#7110)Patrick Cloke2020-03-201-0/+1
| | |
* | | Fix a bug in the federation API which could cause occasional "Failed to get ↵Patrick Cloke2020-03-191-0/+1
| | | | | | | | | | | | PDU" errors (#7089).
* | | Change device list streams to have one row per ID (#7010)Erik Johnston2020-03-191-0/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add 'device_lists_outbound_pokes' as extra table. This makes sure we check all the relevant tables to get the current max stream ID. Currently not doing so isn't problematic as the max stream ID in `device_lists_outbound_pokes` is the same as in `device_lists_stream`, however that will change. * Change device lists stream to have one row per id. This will make it possible to process the streams more incrementally, avoiding having to process large chunks at once. * Change device list replication to match new semantics. Instead of sending down batches of user ID/host tuples, send down a row per entity (user ID or host). * Newsfile * Remove handling of multiple rows per ID * Fix worker handling * Comments from review
| * | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2020-03-025-1/+4
| |\ \ | | | | | | | | | | | | erikj/fixup_devices_stream
| * | | NewsfileErik Johnston2020-02-281-0/+1
| | | |
* | | | 1.12.0rc1Richard van der Hoff2020-03-1958-58/+0
| | | |
* | | | Fix concurrent modification errors in pusher metrics (#7106)Richard van der Hoff2020-03-191-0/+1
| | | | | | | | | | | | add a lock to try to make this metric actually work
* | | | Add prometheus metrics for the number of active pushers (#7103)Richard van der Hoff2020-03-191-0/+1
| | | |
* | | | Move pusherpool startup into _base.setup (#7104)Richard van der Hoff2020-03-191-0/+1
| | | | | | | | | | | | | | | | | | | | This should be safe to do on all workers/masters because it is guarded by a config option which will ensure it is only actually done on the worker assigned as a pusher.
* | | | Improve get auth chain difference algorithm. (#7095)Erik Johnston2020-03-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was originally implemented by pulling the full auth chain of all state sets out of the database and doing set comparison. However, that can take a lot work if the state and auth chains are large. Instead, lets try and fetch the auth chains at the same time and calculate the difference on the fly, allowing us to bail early if all the auth chains converge. Assuming that the auth chains do converge more often than not, this should improve performance. Hopefully.
* | | | Add an option to the set password API to choose whether to logout other ↵Patrick Cloke2020-03-181-0/+1
| | | | | | | | | | | | | | | | devices. (#7085)
* | | | Update INSTALL.md updated CentOS8 install instructions (#6925)Richard von Kellner2020-03-171-0/+1
| | | |
* | | | Share SSL contexts for non-federation requests (#7094)Richard van der Hoff2020-03-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Extends #5794 etc to the SimpleHttpClient so that it also applies to non-federation requests. Fixes #7092.
* | | | Set charset to utf-8 when adding headers for certain text content types (#7044)The Stranjer2020-03-171-0/+1
| | | | | | | | | | | | | | | | Fixes #7043
* | | | Remove unused federation endpoint (`query_auth`) (#7026)Patrick Cloke2020-03-171-0/+1
| | | |
* | | | Remove special casing of `m.room.aliases` events (#7034)Patrick Cloke2020-03-171-0/+1
| | | |
* | | | Revert "Add options to disable setting profile info for prevent changes. ↵Richard van der Hoff2020-03-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (#7053)" This reverts commit 54dd28621b070ca67de9f773fe9a89e1f4dc19da, reversing changes made to 6640460d054e8f4444046a34bdf638921b31c01e.
* | | | Populate the room version from state events (#7070)Brendan Abolivier2020-03-161-0/+1
| | | | | | | | | | | | | | | | | | | | Fixes #7065 This is basically the same as https://github.com/matrix-org/synapse/pull/6847 except it tries to populate events from `state_events` rather than `current_state_events`, since the latter might have been cleared from the state of some rooms too early, leaving them with a `NULL` room version.
* | | | Fix buggy condition in account validity handler (#7074)Brendan Abolivier2020-03-161-0/+1
| | | |
* | | | Merge pull request #7067 from matrix-org/babolivier/saml_error_moarBrendan Abolivier2020-03-131-0/+1
|\ \ \ \ | | | | | | | | | | Move the default SAML2 error HTML to a dedicated file
| * | | | ChangelogBrendan Abolivier2020-03-111-0/+1
| | | | |
* | | | | Add type annotations and comments to auth handler (#7063)Patrick Cloke2020-03-121-0/+1
| | | | |
* | | | | ChangelogBrendan Abolivier2020-03-111-0/+1
|/ / / /
* | | | Add options to disable setting profile info for prevent changes. (#7053)Brendan Abolivier2020-03-101-0/+1
|\ \ \ \
| * | | | updates after reviewdklimpel2020-03-091-1/+1
| | | | |
| * | | | changelogdklimpel2020-03-081-0/+1
| | |/ / | |/| |
* | | | ChangelogBrendan Abolivier2020-03-101-0/+1
| | | |
* | | | Merge pull request #7055 from ↵Brendan Abolivier2020-03-091-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | matrix-org/babolivier/get_time_of_last_push_action_before Move get_time_of_last_push_action_before to the EventPushActionsWorkerStore
| * | | | ChangelogBrendan Abolivier2020-03-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | It's the same as in #6964 since it's the most likely cause of the bug and that change hasn't been released yet.
* | | | | Remove special auth and redaction rules for aliases events in experimental ↵Patrick Cloke2020-03-091-0/+1
| | | | | | | | | | | | | | | | | | | | room ver. (#7037)
* | | | | Update routing of fallback auth in the worker docs. (#7048)Patrick Cloke2020-03-091-0/+1
| | | | |
* | | | | Merge pull request #7045 from matrix-org/babolivier/room_keys_checkBrendan Abolivier2020-03-091-0/+1
|\ \ \ \ \ | | | | | | | | | | | | Make sure that is_verified is a boolean when processing room keys
| * | | | | ChangelogBrendan Abolivier2020-03-061-0/+1
| |/ / / /
* | | | | Add type hints to logging/context.py (#6309)Neil Pilgrim2020-03-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add type hints to logging/context.py Signed-off-by: neiljp (Neil Pilgrim) <github@kepier.clara.net>
* | | | | Break down monthly active users by appservice_id (#7030)Neil Johnson2020-03-061-0/+1
|/ / / / | | | | | | | | | | | | | | | | * Break down monthly active users by appservice_id and emit via prometheus. Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
* | | | Convert remote key resource REST layer to async/await. (#7020)Patrick Cloke2020-03-051-0/+1
| | | |
* | | | Store room_versions in EventBase objects (#6875)Richard van der Hoff2020-03-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a bit fiddly because it all has to be done on one fell swoop: * Wherever we create a new event, pass in the room version (and check it matches the format version) * When we prune an event, use the room version of the unpruned event to create the pruned version. * When we pass an event over the replication protocol, pass the room version over alongside it, and use it when deserialising the event again.
* | | | ChangelogBrendan Abolivier2020-03-041-0/+1
| | | |
* | | | Allow deleting an alias if the user has sufficient power level (#6986)Patrick Cloke2020-03-041-0/+1
| | | |
* | | | Read the room version from database when fetching events (#6874)Richard van der Hoff2020-03-041-0/+1
| | | | | | | | | | | | | | | | | | | | This is a precursor to giving EventBase objects the knowledge of which room version they belong to.
* | | | Merge branch 'master' into developBrendan Abolivier2020-03-031-1/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | v1.11.1Brendan Abolivier2020-03-032-2/+0
| | | |
| * | | Fixed set a user as an admin with the new API (#6928)Dirk Klimpel2020-03-021-0/+1
| | | | | | | | | | | | | | | | Fix #6910
* | | | Validate the alt_aliases property of canonical alias events (#6971)Patrick Cloke2020-03-031-0/+1
| |/ / |/| |
* | | Always return a deferred from `get_current_state_deltas`. (#7019)Erik Johnston2020-03-021-0/+1
| | | | | | | | | | | | | | | This currently causes presence notify code to log exceptions when there is no state changes to process. This doesn't actually cause any problems as we'd simply do nothing anyway.
* | | Fix py35-old CI by using native tox. (#7018)Erik Johnston2020-03-021-0/+1
| | | | | | | | | | | | | | | I'm not really sure how this was going wrong, but this seems like the right approach anyway.
* | | remove spurious changelogRichard van der Hoff2020-03-021-1/+0
| | |
* | | Fix last date for ACMEv1 install (#7015)Uday Bansal2020-02-291-0/+1
| | | | | | | | | | | | | | | | | | Support for getting TLS certificates through ACMEv1 ended on November 2019. Signed-off-by: Uday Bansal <43824981+udaybansal19@users.noreply.github.com>
* | | Add some type annotations to the federation base & client classes (#6995)Patrick Cloke2020-02-281-0/+1
| |/ |/|
* | Fixed set a user as an admin with the new API (#6928)Dirk Klimpel2020-02-281-0/+1
| | | | | | Fix #6910
* | Merge remote-tracking branch 'origin/release-v1.11.1' into developPatrick Cloke2020-02-271-0/+1
|\|
| * Cast a coroutine into a Deferred in the federation base (#6996)Patrick Cloke2020-02-261-0/+1
| | | | | | | | Properly convert a coroutine into a Deferred in federation_base to fix an error when joining a room.
| * 1.11.0 v1.11.0 release-v1.11.0Richard van der Hoff2020-02-211-1/+0
| |
| * Small grammar fixes to the ACME v1 deprecation notice (#6944)Andrew Morgan2020-02-211-0/+1
| | | | | | Some small fixes to the copy in #6907.
* | Don't refuse to start worker if media listener configured. (#7002)Erik Johnston2020-02-271-0/+1
| | | | | | | | | | | | | | | | Instead lets just warn if the worker has a media listener configured but has the media repository disabled. Previously non media repository workers would just ignore the media listener.
* | set worker_app for frontend proxy test (#7003)Richard van der Hoff2020-02-271-0/+1
| | | | | | to stop the federationhandler trying to do master stuff
* | Expose common commands via snap run interface to allow easier invocation (#6315)James2020-02-271-0/+1
| | | | | | | | | | Signed-off-by: James Hebden <james@ec0.io>
* | Add some type annotations in `synapse.storage` (#6987)Richard van der Hoff2020-02-271-0/+1
| | | | | | | | | | I cracked, and added some type definitions in synapse.storage.
* | Store room version on invite (#6983)Richard van der Hoff2020-02-261-0/+1
| | | | | | | | | | When we get an invite over federation, store the room version in the rooms table. The general idea here is that, when we pull the invite out again, we'll want to know what room_version it belongs to (so that we can later redact it if need be). So we need to store it somewhere...
* | Port PresenceHandler to async/await (#6991)Erik Johnston2020-02-261-0/+1
| |
* | Updated warning for incorrect database collation/ctype (#6985)Uday Bansal2020-02-261-0/+1
| | | | | | Signed-off-by: Uday Bansal <43824981+udaybansal19@users.noreply.github.com>
* | Ensure 'deactivated' parameter is a boolean on user admin API, Fix error ↵Andrew Morgan2020-02-261-0/+1
| | | | | | | | handling of call to deactivate user (#6990)
* | Sanity-check database before running upgrades (#6982)Richard van der Hoff2020-02-251-0/+1
| | | | | | | | | | | | Some of the database deltas rely on `config.server_name` being set correctly, so we should check that it is before running the deltas. Fixes #6870.
* | Merge worker apps into one. (#6964)Erik Johnston2020-02-251-0/+1
| |
* | contrib/docker: remove quotes for POSTGRES_INITDB_ARGS (#6984)Fridtjof Mund2020-02-251-0/+1
| | | | | | | | | | I made a mistake in https://github.com/matrix-org/synapse/pull/6921 - the quotes break the postgres container's startup script (or docker-compose), which makes initdb fail: https://github.com/matrix-org/synapse/pull/6921#issuecomment-590657154 Signed-off-by: Fridtjof Mund <fridtjof@das-labor.org>
* | Remove redundant store_room call (#6979)Richard van der Hoff2020-02-241-0/+1
| | | | | | | | | | `_process_received_pdu` is only called by `on_receive_pdu`, which ignores any events for unknown rooms, so this is redundant.
* | Upsert room version when we join over federation (#6968)Richard van der Hoff2020-02-241-0/+1
| | | | | | | | | | | | | | | | This is intended as a precursor to storing room versions when we receive an invite over federation, but has the happy side-effect of fixing #3374 at last. In short: change the store_room with try/except to a proper upsert which updates the right columns.
* | Fix minor issues with email config (#6962)Richard van der Hoff2020-02-241-0/+1
| | | | | | | | | | | | * Give `notif_template_html`, `notif_template_text` default values (fixes #6960) * Don't complain if `smtp_host` and `smtp_port` are unset, since they have sensible defaults (fixes #6961) * Set the example for `enable_notifs` to `True`, for consistency and because it's more useful * Raise errors as ConfigError rather than RuntimeError for nicer formatting
* | No longer use room alias events to calculate room names for push ↵Patrick Cloke2020-02-211-0/+1
| | | | | | | | notifications. (#6966)
* | Change displayname of user as admin in rooms (#6876)Dirk Klimpel2020-02-211-0/+1
| |
* | Stop returning aliases as part of the room list. (#6970)Patrick Cloke2020-02-211-0/+1
| |
* | Publishing/removing from the directory requires a power level greater than ↵Patrick Cloke2020-02-211-0/+1
| | | | | | | | canonical aliases.
* | Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)Patrick Cloke2020-02-211-0/+1
| | | | | | | | Ensure good comprehension hygiene using flake8-comprehensions.
* | changelogRichard van der Hoff2020-02-211-0/+1
| |
* | Do not send alias events when creating / upgrading a room (#6941)Patrick Cloke2020-02-201-0/+1
| | | | | | Stop emitting room alias update events during room creation/upgrade.
* | don't insert into the device table for remote cross-signing keys (#6956)Hubert Chathi2020-02-201-0/+1
| |
* | Add some clarifications to README.md in the database schema directory. (#6615)Ruben Barkow-Kuder2020-02-201-0/+1
| | | | | | Signed-off-by: Ruben Barkow-Kuder <github@r.z11.de>
* | Minor perf fixes to `get_auth_chain_ids`.Erik Johnston2020-02-191-0/+1
| |
* | Freeze allocated objects on startup. (#6953)Erik Johnston2020-02-191-0/+1
| | | | | | | | | | This may make gc go a bit faster as the gc will know things like caches/data stores etc. are frozen without having to check.
* | Reduce auth chains fetched during v2 state res. (#6952)Erik Johnston2020-02-191-0/+1
|/ | | | | | The state res v2 algorithm only cares about the difference between auth chains, so we can pass in the known common state to the `get_auth_chain` storage function so that it can ignore those events.
* 1.11.0rc1Richard van der Hoff2020-02-1955-55/+0
|
* Revert `get_auth_chain_ids` changes (#6951)Erik Johnston2020-02-191-0/+1
|
* Merge pull request #6949 from matrix-org/rav/list_room_aliases_peekableRichard van der Hoff2020-02-191-0/+1
|\ | | | | Make room alias lists peekable
| * changelogRichard van der Hoff2020-02-191-0/+1
| |
* | Merge pull request #6940 from matrix-org/babolivier/federate.mdBrendan Abolivier2020-02-191-0/+1
|\ \ | | | | | | Clean up and update federation docs
| * | ChangelogBrendan Abolivier2020-02-181-0/+1
| | |
* | | Move MSC2432 stuff onto unstable prefix (#6948)Richard van der Hoff2020-02-191-0/+1
| | | | | | | | | it's not in the spec yet, so needs to be unstable. Also add a feature flag for it. Also add a test for admin users.
* | | Tiny optimisation for _get_handler_for_request (#6950)Richard van der Hoff2020-02-191-0/+1
| | | | | | | | | | | | we have hundreds of path_regexes (see #5118), so let's not convert the same bytes to str for each of them.
* | | Increase DB/CPU perf of `_is_server_still_joined` check. (#6936)Erik Johnston2020-02-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Increase DB/CPU perf of `_is_server_still_joined` check. For rooms with large amount of state a single user leaving could cause us to go and load a lot of membership events and then pull out membership state in a large number of batches. * Newsfile * Update synapse/storage/persist_events.py Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * Fix adding if too soon * Update docstring * Review comments * Woops typo Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
* | | Merge pull request #6945 from matrix-org/babolivier/fix-retention-debug-logBrendan Abolivier2020-02-191-0/+1
|\ \ \ | | | | | | | | Fix log in message retention purge jobs
| * | | Update changelog.d/6945.bugfixBrendan Abolivier2020-02-191-1/+1
| | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| * | | ChangelogBrendan Abolivier2020-02-181-0/+1
| | | |
* | | | Limit size of get_auth_chain_ids query (#6947)Erik Johnston2020-02-191-0/+1
| |_|/ |/| |
* | | Implement GET /_matrix/client/r0/rooms/{roomId}/aliases (#6939)Richard van der Hoff2020-02-181-0/+1
| | | | | | | | | | | | | | | per matrix-org/matrix-doc#2432
* | | Merge pull request #6872 from matrix-org/rav/dictpropertyRichard van der Hoff2020-02-181-0/+1
|\ \ \ | | | | | | | | Rewrite _EventInternalMetadata to back it with a dict
| * | | changelogRichard van der Hoff2020-02-141-0/+1
| | | |
* | | | Merge pull request #6907 from matrix-org/babolivier/acme-configBrendan Abolivier2020-02-181-0/+1
|\ \ \ \ | |_|/ / |/| | | Add mention and warning about ACME v1 deprecation to the TLS config
| * | | ChangelogBrendan Abolivier2020-02-131-0/+1
| | | |
* | | | Increase perf of `get_auth_chain_ids` used in state res v2. (#6937)Erik Johnston2020-02-181-0/+1
| | | | | | | | | | | | We do this by moving the recursive query to be fully in the DB.
* | | | Fix worker docs to point `/publicised_groups` API correctly. (#6938)Erik Johnston2020-02-181-0/+1
| | | |
* | | | Merge pull request #6909 from matrix-org/babolivier/acme-installBrendan Abolivier2020-02-181-0/+1
|\ \ \ \ | | | | | | | | | | Update INSTALL.md to recommend reverse proxying and warn about ACMEv1 deprecation
| * | | | ChangelogBrendan Abolivier2020-02-131-0/+1
| | |_|/ | |/| |
* | | | Stop sending events when creating or deleting aliases (#6904)Patrick Cloke2020-02-181-0/+1
| | | | | | | | | | | | Stop sending events when creating or deleting associations (room aliases). Send an updated canonical alias event if one of the alt_aliases is deleted.
* | | | Kill off deprecated "config-on-the-fly" docker mode (#6918)Richard van der Hoff2020-02-181-0/+1
| | | | | | | | | | | | | | | | | | | | Lots of people seem to get confused by this mode, and it's been deprecated since Synapse 1.1.0. It's time for it to go.
* | | | #6924 has been released in 1.10.1Richard van der Hoff2020-02-171-1/+0
| | | |
* | | | Raise the default power levels for invites, tombstones and server acls (#6834)Andrew Morgan2020-02-171-0/+1
| | | |
* | | | wait for current_state_events_membership before ↵Richard van der Hoff2020-02-171-0/+1
| | | | | | | | | | | | | | | | delete_old_current_state_events (#6924)
* | | | Add type hints to the spam check module (#6915)Patrick Cloke2020-02-141-0/+1
| | | | | | | | | | | | | | | | Add typing information to the spam checker modules.
* | | | contrib/docker: Ensure correct encoding and locale settings on DB creation ↵Fridtjof Mund2020-02-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | (#6921) Signed-off-by: Fridtjof Mund <fridtjof@das-labor.org>
* | | | Add a warning about indentation to generated config (#6920)Richard van der Hoff2020-02-141-0/+1
| | | | | | | | | | | | Fixes #6916.
* | | | Convert the directory handler tests to use HomeserverTestCase (#6919)Patrick Cloke2020-02-141-0/+1
| |_|/ |/| | | | | Convert directory handler tests to use HomeserverTestCase.
* | | Filter the results of user directory searching via the spam checker (#6888)Patrick Cloke2020-02-141-0/+1
|/ / | | | | Add a method to the spam checker to filter the user directory results.
* | Update changelog for #6905 to group it with upcoming PRsBrendan Abolivier2020-02-131-1/+1
| |
* | Add documentation for the spam checker module (#6906)Patrick Cloke2020-02-131-0/+1
| | | | | | Add documentation for the spam checker.
* | Merge pull request #6905 from matrix-org/babolivier/acme.mdBrendan Abolivier2020-02-131-0/+1
|\ \ | | | | | | Update ACME.md to mention ACME v1 deprecation
| * | ChangelogBrendan Abolivier2020-02-121-0/+1
| |/
* / Remove m.lazy_load_members from unstable features since it is in CS r0.5.0 ↵Aaron Raimist2020-02-131-0/+1
|/ | | | | | | (#6877) Fixes #5528
* Merge pull request #6891 from matrix-org/babolivier/retention-doc-amendBrendan Abolivier2020-02-121-0/+1
|\ | | | | Spell out that the last event sent to a room won't be deleted by a purge
| * Update the changelog fileBrendan Abolivier2020-02-111-1/+1
| |
| * ChangelogBrendan Abolivier2020-02-111-0/+1
| |