summary refs log tree commit diff
path: root/synapse (follow)
Commit message (Expand)AuthorAgeFilesLines
* Revert "Drop support for delegating email validation (#13192)" (#13406)3nprob2022-07-298-71/+242
* Disable autocorrect and autocaptialisation when entering username for SSO reg...Doug2022-07-261-1/+1
* Support Implicit TLS for sending emails (#13317)Jan Schär2022-07-252-11/+32
* Additional fixes for opentracing type hints. (#13362)Patrick Cloke2022-07-251-2/+2
* Refactor presence so we can prune user in room caches (#13313)Erik Johnston2022-07-253-91/+108
* Backfill remote event fetched by MSC3030 so we can paginate from it later (...Eric Eastwood2022-07-222-15/+93
* Skip soft fail checks for rooms with partial state (#13354)Sean Quah2022-07-221-0/+10
* Remove old empty/redundant slaved stores. (#13349)Nick Mills-Barrett2022-07-219-166/+36
* Make DictionaryCache have better expiry properties (#13292)Erik Johnston2022-07-214-34/+321
* Don't hold onto full state in state cache (#13324)Erik Johnston2022-07-211-15/+53
* Track DB txn times w/ two counters, not histogram (#13342)David Robertson2022-07-211-3/+5
* Add missing types to opentracing. (#13345)Patrick Cloke2022-07-2110-32/+60
* Use cache store remove base slaved (#13329)Nick Mills-Barrett2022-07-2115-114/+38
* Update `get_pdu` to return the original, pristine `EventBase` (#13320)Eric Eastwood2022-07-203-49/+119
* Validate federation destinations and log an error if server name is invalid. ...Shay2022-07-201-0/+9
* Merge remote-tracking branch 'origin/master' into developErik Johnston2022-07-201-0/+7
|\
| * Don't include appservice users when calculating push rules (#13332)Erik Johnston2022-07-201-0/+7
* | Fix spurious warning when fetching state after a missing prev event (#13258)Sean Quah2022-07-191-0/+3
* | Add type annotations to `trace` decorator. (#13328)Patrick Cloke2022-07-1911-55/+101
* | Merge branch 'master' into developBrendan Abolivier2022-07-192-8/+8
|\|
| * Remove 'anonymised' from the phone home stats documentation (#13321)Andrew Morgan2022-07-192-8/+8
* | Reduce memory usage of state group cache (#13323)Erik Johnston2022-07-191-1/+2
* | Rate limit joins per-room (#13276)David Robertson2022-07-198-9/+106
* | Safe async event cache (#13308)Nick Mills-Barrett2022-07-197-21/+101
* | Increase batch size of `bulk_get_push_rules` and `_get_joined_profiles_from_e...Shay2022-07-182-1/+2
* | Improve performance of query ` _get_subset_users_in_room_with_profiles` (#13299)Shay2022-07-181-1/+1
* | Fix overcounting of pushers when they are replaced (#13296)Sean Quah2022-07-181-11/+16
* | Revert "Make all `process_replication_rows` methods async (#13304)" (#13312)Erik Johnston2022-07-1813-39/+25
* | Don't pull out full state when sending dummy events (#13310)Erik Johnston2022-07-181-7/+1
* | Use READ COMMITTED isolation level when purging rooms (#12942)Nick Mills-Barrett2022-07-181-2/+31
* | Don't pull out the full state when creating an event (#13281)Erik Johnston2022-07-182-2/+9
* | Make all `process_replication_rows` methods async (#13304)Nick Mills-Barrett2022-07-1713-25/+39
* | Provide more info why we don't have any thumbnails to serve (#13038)Eric Eastwood2022-07-152-9/+66
* | Don't pull out the full state when storing state (#13274)Erik Johnston2022-07-153-69/+125
* | Use state before join to determine if we `_should_perform_remote_join` (#13270)David Robertson2022-07-153-24/+34
* | Bg update to populate new `events` table columns (#13215)Richard van der Hoff2022-07-152-0/+134
* | Fix a bug which could lead to incorrect state (#13278)Erik Johnston2022-07-152-6/+16
* | Async get event cache prep (#13242)Nick Mills-Barrett2022-07-157-20/+79
* | Federation Sender & Appservice Pusher Stream Optimisations (#13251)Nick Mills-Barrett2022-07-155-79/+51
* | Rip out auth-event reconciliation code (#12943)Richard van der Hoff2022-07-142-221/+82
* | Don't pull out state in `compute_event_context` for unconflicted state (#13267)Erik Johnston2022-07-145-81/+94
* | Allow rate limiters to passively record actions they cannot limit (#13253)David Robertson2022-07-131-12/+82
* | Notifier: accept callbacks to fire on room joins (#13254)David Robertson2022-07-131-0/+18
* | Call the v2 identity service `/3pid/unbind` endpoint, rather than v1. (#13240)Jacek Kuśnierz2022-07-131-2/+2
* | Add support for room version 10 (#13220)Shay2022-07-132-0/+59
* | Optimise room creation event lookups part 2 (#13224)Nick Mills-Barrett2022-07-132-15/+73
* | Reduce duplicate code in receipts servlets. (#13198)Patrick Cloke2022-07-132-44/+32
* | Add prometheus counters for content types other than events (#13175)Brad Murray2022-07-131-0/+14
* | Drop unused tables from groups/communities. (#12967)Patrick Cloke2022-07-133-19/+35
* | Fix "add user" admin api error when request contains a "msisdn" threepid (#13...Thomas Weston2022-07-131-0/+1
* | Inline URL preview documentation. (#13261)Patrick Cloke2022-07-121-4/+58
* | Drop unused table `event_reference_hashes` (#13218)Richard van der Hoff2022-07-121-0/+17
* | Drop support for calling `/_matrix/client/v3/account/3pid/bind` without an `i...Jacek Kuśnierz2022-07-122-26/+10
* | Drop support for delegating email validation (#13192)Richard van der Hoff2022-07-128-234/+76
* | Log the stack when waiting for an entire room to be un-partial stated (#13257)Sean Quah2022-07-121-0/+1
* | Make the AS login method call `Auth.get_user_by_req` for checking the AS toke...Quentin Gliech2022-07-121-2/+8
* | expose whether a room is a space in the Admin API (#13208)andrew do2022-07-121-2/+4
|/
* Don't pull out the full state when calculating push actions (#13078)Erik Johnston2022-07-114-341/+160
* Reduce event lookups during room creation by passing known event IDs (#13210)Nick Mills-Barrett2022-07-111-2/+16
* Uniformize spam-checker API, part 5: expand other spam-checker callbacks to r...David Teller2022-07-118-50/+176
* Fix to-device messages not being sent to MSC3202-enabled appservices (#13235)Travis Ralston2022-07-111-2/+3
* Remove delay when rotating event push actions (#13211)Erik Johnston2022-07-111-3/+1
* Add a `filter_event_for_clients_with_state` function (#13222)Erik Johnston2022-07-112-138/+399
* Fix appservice EDUs failing to send if the EDU doesn't have a room ID (#13236)Travis Ralston2022-07-111-1/+3
* Ensure portdb selects _all_ rows with negative rowids (#13226)David Robertson2022-07-111-1/+4
* Fix notification count after a highlighted message (#13223)Erik Johnston2022-07-081-3/+8
* Fix exception when using MSC3030 to look for remote federated events before r...Eric Eastwood2022-07-071-1/+5
* Faster room joins: fix race in recalculation of current room state (#13151)Sean Quah2022-07-076-55/+211
* Use a single query in `ProfileHandler.get_profile` (#13209)Nick Mills-Barrett2022-07-071-12/+7
* Check that `auto_vacuum` is disabled when porting a SQLite database to Postgr...reivilibre2022-07-071-0/+34
* Make `_get_state_map_for_room` not break when room state events don't contain...David Teller2022-07-071-8/+1
* Fix bug where we failed to delete old push actions (#13194)Erik Johnston2022-07-061-2/+4
* Handle race between persisting an event and un-partial stating a room (#13100)Sean Quah2022-07-059-74/+233
* Type `tests.utils` (#13028)David Robertson2022-07-052-2/+6
* Use upserts for updating `event_push_summary` (#13153)Erik Johnston2022-07-051-40/+7
* Fix application service not being able to join remote federated room without ...Eric Eastwood2022-07-051-9/+23
* Merge tag 'v1.62.0rc3' into developAndrew Morgan2022-07-041-2/+7
|\
| * Fix stuck notification counts on small servers (#13168)Erik Johnston2022-07-041-2/+7
* | Extra validation for rest/client/account_data (#13148)David Robertson2022-07-011-2/+17
* | `_process_received_pdu`: Improve exception handling (#13145)Richard van der Hoff2022-07-011-7/+6
* | Skip waiting for full state for incoming events (#13144)Richard van der Hoff2022-07-011-3/+9
* | Allow dependency errors to pass through (#13113)Jacek Kuśnierz2022-06-307-58/+15
* | Merge remote-tracking branch 'origin/release-v1.62' into developPatrick Cloke2022-06-303-26/+57
|\|
| * Fix unread counts on large servers (#13140)Erik Johnston2022-06-301-22/+26
| * Add index to help delete old push actions (#13141)Erik Johnston2022-06-303-4/+31
* | Don't process /send requests for users who have hit their ratelimit (#13134)Shay2022-06-301-0/+3
* | Cleanup references to sample config in the docs and redirect users to configu...Shay2022-06-301-1/+1
* | More type hints for `synapse.logging` (#13103)Patrick Cloke2022-06-302-42/+54
* | Improve startup times in Complement test runs against workers, particularly i...reivilibre2022-06-302-2/+196
* | Rate limiting invites per issuer (#13125)David Teller2022-06-302-2/+23
* | Don't actually one-line the SQL statements we send to the DB (#13129)Brendan Abolivier2022-06-301-3/+4
* | Implement MSC3827: Filtering of `/publicRooms` by room type (#13031)Šimon Brandner2022-06-298-10/+186
* | Improve performance of getting unread counts in rooms (#13119)Erik Johnston2022-06-294-4/+37
|/
* fix linting error from the 1.61.1 main -> develop mergeAndrew Morgan2022-06-281-1/+2
* Merge branch 'master' into developAndrew Morgan2022-06-281-24/+39
|\
| * Merge pull request from GHSA-22p3-qrh9-cx32reivilibre2022-06-281-24/+39
* | Fix serialization errors when rotating notifications (#13118)Erik Johnston2022-06-283-78/+171
* | Remove unspecced DELETE endpoint that modifies room visibility (#13123)santhoshivan232022-06-281-11/+0
* | Update MSC3786 implementation: Check the `state_key` (#12939)Šimon Brandner2022-06-271-1/+7
* | Add Cross-Origin-Resource-Policy header to thumbnail and download media endpo...Robert Long2022-06-273-2/+23
* | validate room alias before interacting with the room directory (#13106)santhoshivan232022-06-221-0/+6
* | Fix inconsistencies in event validation (#13088)Richard van der Hoff2022-06-171-2/+21
* | Fix inconsistencies in event validation for `m.room.create` events (#13087)Richard van der Hoff2022-06-171-23/+44
* | Fix type error that made its way onto develop (#13098)reivilibre2022-06-171-2/+2
* | Simplify the alias deletion logic as an application service. (#13093)Quentin Gliech2022-06-171-22/+13
* | Rotate notifications more frequently (#13096)Erik Johnston2022-06-171-1/+1
* | Use new `device_list_changes_in_room` table when getting device list changes ...Erik Johnston2022-06-173-31/+116
* | Allow MSC3030 'timestamp_to_event' calls from anyone on world-readable rooms....Quentin Gliech2022-06-171-1/+3
* | Fix logging context misuse when we fail to persist a federation event (#13089)Sean Quah2022-06-171-4/+2
* | Add desc to `get_earliest_token_for_stats` (#13085)Erik Johnston2022-06-161-0/+1
* | Improve URL previews for sites with only Twitter card information. (#13056)Patrick Cloke2022-06-161-17/+95
* | Reduce the duplication of code that invokes the rate limiter. (#13070)reivilibre2022-06-161-27/+3
* | Add custom well-known (#13035)Jacek Kuśnierz2022-06-162-1/+28
* | Move some event auth checks out to a different method (#13065)Richard van der Hoff2022-06-155-44/+105
* | Change default `sync_response_cache_duration` (#13042)Erik Johnston2022-06-151-1/+1
* | Replace pyjwt with authlib in `org.matrix.login.jwt` (#13011)Hannes Lerchl2022-06-152-13/+43
* | Type annotations in `synapse.databases.main.devices` (#13025)David Robertson2022-06-153-20/+35
* | Speed up `get_unread_event_push_actions_by_room` (#13005)Erik Johnston2022-06-1510-135/+276
* | Track a histogram of state res durations (#13036)David Robertson2022-06-151-0/+12
* | Fix a long-standing bug which meant that rate limiting was not restrictive en...reivilibre2022-06-151-1/+4
* | Don't use keyword arguments when initialising modules (#13060)Brendan Abolivier2022-06-151-1/+1
* | Clean up schema for `event_edges` (#12893)Richard van der Hoff2022-06-156-11/+215
* | Refactor entry points so that they all have a `main` function. (#13052)reivilibre2022-06-1410-10/+60
* | Fix `destination_is` errors seen in sentry. (#13041)David Robertson2022-06-143-7/+23
* | Remove code generating comments in configuration file (#12941)Shay2022-06-1438-2873/+53
* | Rename delta to apply in the proper schema version. (#13050)Patrick Cloke2022-06-141-0/+0
* | Move the "email unsubscribe" resource, refactor the macaroon generator & simp...Quentin Gliech2022-06-1410-424/+454
* | Decouple `synapse.api.auth_blocking.AuthBlocking` from `synapse.api.auth.Auth...Quentin Gliech2022-06-148-24/+18
* | Uniformize spam-checker API, part 4: port other spam-checker callbacks to ret...David Teller2022-06-138-121/+258
* | Replace noop background updates with DELETE. (#12954)Patrick Cloke2022-06-1312-118/+61
* | Merge branch 'rav/simplify_event_auth_interface' into developRichard van der Hoff2022-06-139-73/+36
|\ \
| * | Remove redundant `room_version` param from `check_auth_rules_from_context`Richard van der Hoff2022-06-124-35/+8
| * | Remove `room_version` param from `check_auth_rules_for_event`Richard van der Hoff2022-06-125-24/+14
| * | Remove `room_version` param from `validate_event_for_room_version`Richard van der Hoff2022-06-126-14/+14
| |/
* | Stop depending on `room_id` to be returned for children state in the hierarch...Patrick Cloke2022-06-101-4/+0
* | Faster joins: add issue links to the TODOs (#13004)Richard van der Hoff2022-06-098-2/+26
* | Type annotations for `test_v2` (#12985)David Robertson2022-06-091-15/+42
* | Use READ COMMITTED isolation level when inserting read receipts (#12957)Nick Mills-Barrett2022-06-091-0/+5
* | Move the (unstable) `dir` parameter for /relations behind an experimental fla...Patrick Cloke2022-06-082-3/+13
* | Use dummy fallback engines if imports fail (#12979)David Robertson2022-06-074-21/+46
* | Return the same error message from `/login` when password is incorrect and wh...Daniel Aloni2022-06-071-2/+6
* | Fix Synapse git info missing in version strings (#12973)David Robertson2022-06-0712-32/+29
* | Reduce amount of state we pull out when attempting to send catchup PDUs. (#12...Erik Johnston2022-06-071-11/+20
* | Fix a stale comment in get_room_version_id_txn. (#12969)Patrick Cloke2022-06-071-6/+1
* | Consolidate the logic of delete_device/delete_devices. (#12970)Patrick Cloke2022-06-076-46/+9
|/
* Prevent breaking old sqlite's when media retention is enabled (#12977)Andrew Morgan2022-06-071-1/+1
* Prevent local quarantined media from being claimed by media retention (#12972)Andrew Morgan2022-06-073-16/+82
* Remove remaining pieces of groups code. (#12966)Patrick Cloke2022-06-066-207/+5
* Reduce state pulled from DB due to sending typing and receipts over federatio...Erik Johnston2022-06-066-7/+56
* Do not break URL previews if an image is unreachable. (#12950)Patrick Cloke2022-06-061-6/+17
* Implement MSC3816, consider the root event for thread participation. (#12766)Patrick Cloke2022-06-061-21/+37
* Allow updating passwords using the admin api without logging out devices (#12...Jan Christian Grünhage2022-06-061-1/+7
* Reduce the amount of state we pull from the DB (#12811)Erik Johnston2022-06-0617-130/+133
* Remove groups code from synapse_port_db. (#12899)Patrick Cloke2022-06-032-15/+17
* Improve URL previews for some pages (#12951)Patrick Cloke2022-06-031-17/+35
* Wait for lazy join to complete when getting current state (#12872)Erik Johnston2022-06-0127-75/+288
* Remove remaining bits of groups code. (#12936)Patrick Cloke2022-06-015-9/+0
* Fix 404 on `/sync` when the last event is a redaction of an unknown/purged ev...Richard van der Hoff2022-06-015-65/+128
* Fix potential thumbnail memory leaks. (#12932)Erik Johnston2022-06-012-135/+201
* Remove most groups datastore code. (#12895)Patrick Cloke2022-05-312-1396/+6
* Improve logging when signature checks fail (#12925)Richard van der Hoff2022-05-313-65/+94
* Remove groups replication code. (#12900)Patrick Cloke2022-05-316-90/+0
* Add config options for media retention (#12732)Andrew Morgan2022-05-312-1/+86
* Faster room joins: Resume state re-syncing after a Synapse restart (#12813)Sean Quah2022-05-312-2/+52
* Faster room joins: Try other destinations when resyncing the state of a parti...Sean Quah2022-05-313-9/+93
* Merge branch 'master' into developErik Johnston2022-05-315-60/+51
|\
| * Fix import in module_api module and docs on the new check_event_for_spam sign...Brendan Abolivier2022-05-315-58/+46
* | Reduce DB load of /sync when using presence (#12885)Erik Johnston2022-05-311-27/+48
* | Stop reading from `event_edges.room_id`. (#12914)Richard van der Hoff2022-05-313-24/+21
* | Rename storage classes (#12913)Erik Johnston2022-05-3130-484/+592
* | Rework stream token to stop caring about groups. (#12897)Patrick Cloke2022-05-312-3/+7
* | Fix M_USER_ACCOUNT_SUSPENDED error code for spec compliance (#12923)Travis Ralston2022-05-311-1/+1
* | Revert "Fix M_USER_ACCOUNT_SUSPENDED error code for spec compliance (#12922)"Travis Ralston2022-05-301-1/+1
* | Fix M_USER_ACCOUNT_SUSPENDED error code for spec compliance (#12922)Travis Ralston2022-05-311-1/+1
* | Don't return `end` from `/messages` if there are no more events (#12903)Jacek Kuśnierz2022-05-301-6/+17
* | Document the Synapse version of a new module API method (#12917)Brendan Abolivier2022-05-301-1/+6
* | Uniformize spam-checker API, part 3: Expand check_event_for_spam with the abi...David Teller2022-05-303-17/+41
* | Add a migration step to cleanup potential leftovers of bug 11833 (#12784)Mathieu Velten2022-05-301-0/+19
* | Fix invite notifications for users without pushers (#12840)DeepBlueV7.X2022-05-302-12/+4
* | Fix `get_metadata_for_events` (#12904)Richard van der Hoff2022-05-301-2/+2
* | Bump jsonschema stubs (#12912)David Robertson2022-05-301-2/+7
* | Mutual rooms: Remove dependency on user directory (#12836)Jonathan de Jong2022-05-303-56/+26
* | LockStore: fix acquiring a lock via `LockStore.try_acquire_lock` (#12832)Sumner Evans2022-05-301-1/+18
* | Add a background job to automatically delete stale devices (#12855)Brendan Abolivier2022-05-273-1/+79
* | Add code M_USER_ACCOUNT_SUSPENDED, as per MSC3823. (#12845)David Teller2022-05-271-0/+7
* | Clean-up some receipts code (#12888)Patrick Cloke2022-05-271-42/+47
* | Additional constants for EDU types. (#12884)Patrick Cloke2022-05-2719-41/+64
* | Remove federation client code for groups. (#12563)Patrick Cloke2022-05-271-483/+0
* | Merge tag 'v1.60.0rc2' into developSean Quah2022-05-275-14/+62
|\|
| * Close `ijson` coroutines ourselves instead of letting the GC close them (#12875)Sean Quah2022-05-272-2/+18
| * Add an option allowing users to use their password to reauthenticate even tho...reivilibre2022-05-272-11/+35
| * Improve URL previews by not including the content of media tags in the genera...reivilibre2022-05-261-1/+9
* | Add storage and module API methods to get monthly active users and their apps...Matt C2022-05-272-0/+65
* | Easy type hints in synapse.logging.opentracing (#12894)David Robertson2022-05-273-57/+72
* | Fix room deletion (#12889)Richard van der Hoff2022-05-271-9/+10
* | Refactor have_seen_events to reduce OOMs (#12886)Richard van der Hoff2022-05-271-18/+24
* | Remove backing code for groups/communities (#12558)Patrick Cloke2022-05-2610-1873/+3
* | Fix ambiguous column name that would prevent use of MSC2716 History Import wh...reivilibre2022-05-261-1/+1
* | Remove unstable APIs for /hierarchy. (#12851)Patrick Cloke2022-05-263-15/+2
* | Avoid attempting to delete push actions for remote users. (#12879)Patrick Cloke2022-05-264-4/+7
* | Pull out less state when handling gaps mk2 (#12852)Erik Johnston2022-05-264-109/+190
* | Allow bigger responses to `/federation/v1/state` (#12877)Richard van der Hoff2022-05-252-29/+15
* | Fix up `state_store` naming (#12871)Erik Johnston2022-05-2513-47/+55
* | Remove user-visible groups/communities code (#12553)Patrick Cloke2022-05-2514-2043/+1
* | Fix caching behavior for relations push rules. (#12859)Patrick Cloke2022-05-252-9/+11
* | Misc clean-up of push rules datastore (#12856)Patrick Cloke2022-05-251-11/+5
* | Add the `batch_send` endpoint to generic workers (#12868)Nick Mills-Barrett2022-05-251-0/+2
* | Don't create empty AS txns when the AS is down (#12869)Nick Mills-Barrett2022-05-251-1/+5
* | Add the `/account/whoami` endpoint to generic workers (#12866)Nick Mills-Barrett2022-05-251-1/+2
* | Make sure `prev_ids` defaults to empty list (#12829)Carl Bordum Hansen2022-05-251-0/+4
* | Correct annotation of `_iterate_over_text` (#12860)David Robertson2022-05-241-1/+1
* | Fixes to MSC3787 implementation (#12858)David Robertson2022-05-242-19/+19
* | Remove `dont_notify` from the `.m.rule.room.server_acl` rule (#12849)Šimon Brandner2022-05-241-1/+1
* | Add authentication to thirdparty bridge APIs (#12746)Will Hunt2022-05-241-3/+12
* | Experimental support for MSC3772 (#12740)Patrick Cloke2022-05-248-3/+205
|/
* Marker events as state - MSC2716 (#12718)Eric Eastwood2022-05-231-1/+25
* Uniformize spam-checker API, part 2: check_event_for_spam (#12808)David Teller2022-05-237-21/+82
* Prevent expired events from being filtered out when retention is disabled (#1...Brendan Abolivier2022-05-234-24/+35
* add SpamChecker callback for silently dropping inbound federated events (#12744)Jess Porter2022-05-233-4/+89
* Fix media thumbnails being unusable before the index had been added in the ba...reivilibre2022-05-231-0/+2
* Send `USER_IP` commands on a different Redis channel, in order to reduce traf...reivilibre2022-05-202-3/+15
* Uniformize spam-checker API, part 1: the `Code` enum. (#12703)David Teller2022-05-201-2/+9
* Update EventContext `get_current_event_ids` and `get_prev_event_ids` to accep...Shay2022-05-208-17/+63
* Fix `RetryDestinationLimiter` re-starting finished log contexts (#12803)Sean Quah2022-05-191-2/+2
* Add a unit test for copying over arbitrary room types when upgrading a room (...Andrew Morgan2022-05-191-1/+1
* Lay some foundation work to allow workers to only subscribe to some kinds of ...reivilibre2022-05-192-12/+57
* Properly close providers.json file stream. (#12794)Petr Vaněk2022-05-191-3/+3
* Add a unique index to `state_group_edges` to prevent duplicates being acciden...reivilibre2022-05-193-0/+48
* hash_password: raise an error if no config file is specified (#12789)Jae Lo Presti2022-05-191-5/+5
* Implement MSC3818: copy room type on upgrade (#12786)Aminda Suomalainen2022-05-191-8/+8
* Downgrade some OIDC exceptions to warnings (#12723)David Robertson2022-05-181-2/+2
* Skip waiting for full state if a StateFilter does not require it (#12498)Richard van der Hoff2022-05-181-4/+59
* Refactor `resolve_state_groups_for_events` to not pull out full state when no...Shay2022-05-183-23/+26
* Add some type hints to `event_federation` datastore (#12753)Dirk Klimpel2022-05-182-64/+125
* Do not keep going if there are 5 back-to-back background update failures. (#1...reivilibre2022-05-181-0/+8
* Give a meaningful error message when a client tries to create a room with an ...reivilibre2022-05-182-0/+18
* Discard null-containing strings before updating the user directory (#12762)David Robertson2022-05-184-11/+16
* Make handling of federation Authorization header (more) compliant with RFC723...Hubert Chathi2022-05-182-4/+6
* Move methods that call add_push_rule to PushRuleStore (#12772)Adam2022-05-181-51/+51
* Delete events from federation_inbound_events_staging table on purge (#12770)Mathieu Velten2022-05-171-0/+1
* allow `on_invalidate=None` in `@cached` methods (#12769)David Robertson2022-05-171-1/+2
* Add some type hints to datastore (#12717)Dirk Klimpel2022-05-178-159/+253
* Add a new room version for MSC3787's knock+restricted join rule (#12623)Travis Ralston2022-05-175-7/+67
* Remove code which updates `application_services_state.last_txn` (#12680)Richard van der Hoff2022-05-172-24/+28
* Fix push for m.read events (#12721)SpiritCroc2022-05-171-1/+1
* Merge branch 'master' into developDavid Robertson2022-05-171-1/+1
|\
| * Fix query performance for /sync (#12745)Erik Johnston2022-05-161-1/+1
* | Add index to cache invalidations (#12747)Erik Johnston2022-05-172-0/+26
* | Track in memory events using weakrefs (#10533)Erik Johnston2022-05-171-2/+33
* | Tidy up and type-hint the database engine modules (#12734)David Robertson2022-05-175-94/+178