summary refs log tree commit diff
path: root/docs/MSC1711_certificates_FAQ.md (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-13Add type hints to `synapse/storage/databases/main/end_to_end_keys.py` (#11551)Sean Quah4-69/+150
2021-12-13Add type hints to `synapse/storage/databases/main/account_data.py` (#11546)Sean Quah4-33/+87
2021-12-13Make `get_device` return None if the device doesn't exist rather than ↵reivilibre6-13/+20
raising an exception. (#11565) Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
2021-12-10Allow events to be created with no `prev_events` (MSC2716) (#11243)Eric Eastwood4-7/+124
The event still needs to have `auth_events` defined to be valid. Split out from https://github.com/matrix-org/synapse/pull/11114
2021-12-10Test to ensure we share the same `state_group` across the whole historical ↵Eric Eastwood2-0/+181
batch (MSC2716) (#11487) Part of MSC2716: https://github.com/matrix-org/matrix-doc/pull/2716 We did some work on making sure the `state_groups` were shared in https://github.com/matrix-org/synapse/pull/10975
2021-12-10Adjust _get_rooms_changed comments (#11550)David Robertson2-22/+30
C.f. https://github.com/matrix-org/synapse/pull/11494#pullrequestreview-827780886
2021-12-10skip some dict munging in event persistence (#11560)Richard van der Hoff3-60/+114
Create a new dict helper method `simple_insert_many_values_txn`, which takes raw row values, rather than {key=>value} dicts. This saves us a bunch of dict munging, and makes it easier to use generators rather than creating intermediate lists and dicts.
2021-12-10Stop populating `state_events.prev_state` (#11558)Richard van der Hoff3-5/+5
this field is never read, so we may as well stop populating it.
2021-12-10Ensure emails are canonicalized before fetching associated user. (#11547)Patrick Cloke5-4/+11
This should fix pushers with an email in non-canonical form is used as the pushkey.
2021-12-09Do not allow cross-room relations, per MSC2674. (#11516)Patrick Cloke6-17/+161
2021-12-09Additional type hints for the config module, part 2. (#11480)Patrick Cloke5-19/+28
2021-12-09Use HTTPStatus constants in place of literals in `synapse.http` (#11543)Dirk Klimpel4-19/+47
2021-12-09Support unprefixed versions of fallback key property names. (#11541)Hubert Chathi4-6/+32
2021-12-09Add missing `errcode` to `parse_string` and `parse_boolean` (#11542)Dirk Klimpel6-12/+13
2021-12-09Allow guests to send state events (#11378)Robert Long2-1/+2
2021-12-08Add a constant for receipt types (m.read). (#11531)Patrick Cloke9-45/+87
And expand some type hints in the receipts storage module.
2021-12-08Clean up `synapse.rest.admin` (#11535)Dirk Klimpel15-165/+96
2021-12-08Document the usage of refresh tokens. (#11427)reivilibre3-0/+141
Co-authored-by: David Robertson <davidr@element.io>
2021-12-08Use HTTPStatus constants in place of literals in ↵reivilibre2-47/+88
`tests.rest.client.test_auth`. (#11520)
2021-12-08Improve log messages for stream ids (#11536)Richard van der Hoff3-4/+7
Somehow I'd managed to get my database in a pickle with stream ids. These changes were useful to debug.
2021-12-08Send and handle cross-signing messages using the stable prefix. (#10520)Hubert Chathi4-5/+13
2021-12-07Fix case in `wait_for_background_updates` where `self.store` does not exist ↵Andrew Morgan2-7/+5
(#11331) Pull the DataStore from the HomeServer instance, which always exists.
2021-12-07Sort internal changes in changelog v1.49.0rc1Sean Quah1-16/+16
2021-12-07Update CHANGES.mdSean Quah1-30/+26
2021-12-071.49.0rc1Sean Quah65-63/+87
2021-12-07Revert "Move `glob_to_regex` and `re_word_boundary` to ↵Sean Quah8-12/+124
`matrix-python-common` (#11505) (#11527) This reverts commit a77c36989785c0d5565ab9a1169f4f88e512ce8a.
2021-12-07Refactors in `_generate_sync_entry_for_rooms` (#11515)David Robertson3-46/+79
* Move sync_token up to the top * Pull out _get_ignored_users * Try to signpost the body of `_generate_sync_entry_for_rooms` * Pull out _calculate_user_changes Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
2021-12-07Correctly register shutdown handler for presence workers (#11518)David Robertson2-1/+2
Fixes #11517
2021-12-07Fix `ModuleApi.looping_background_call` for non-async functions (#11524)Sean Quah2-3/+3
After #10847, `looping_background_call` would print an error in the logs every time a non-async function was called. Since the error would be caught and ignored immediately, there were no other side effects.
2021-12-07Fix 'delete room' admin api to work on incomplete rooms (#11523)Richard van der Hoff5-37/+33
If, for some reason, we don't have the create event, we should still be able to purge a room.
2021-12-07Correctly ignore invites from ignored users (#11511)David Robertson2-5/+7
2021-12-07Fix the test breakage introduced by #11435 as a result of concurrent PRs ↵reivilibre2-1/+2
(#11522)
2021-12-06Stabilise support for MSC2918 refresh tokens as they have now been merged ↵reivilibre6-44/+115
into the Matrix specification. (#11435)
2021-12-06Save the OIDC session ID (sid) with the device on login (#11482)Quentin Gliech15-65/+370
As a step towards allowing back-channel logout for OIDC.
2021-12-06Add admin API to get some information about federation status (#11407)Dirk Klimpel7-0/+783
2021-12-06Include bundled aggregations in /sync and related fixes (#11478)Patrick Cloke10-101/+169
Due to updates to MSC2675 this includes a few fixes: * Include bundled aggregations for /sync. * Do not include bundled aggregations for /initialSync and /events. * Do not bundle aggregations for state events. * Clarifies comments and variable names.
2021-12-06Move `glob_to_regex` and `re_word_boundary` to `matrix-python-common` (#11505)Sean Quah8-123/+13
2021-12-03Update backward extremity docs to make it clear that it does not indicate ↵Eric Eastwood2-9/