summary refs log tree commit diff
path: root/synapse/handlers (follow)
Commit message (Expand)AuthorAgeFilesLines
* Faster room joins: fix race in recalculation of current room state (#13151)Sean Quah2022-07-071-7/+2
* Use a single query in `ProfileHandler.get_profile` (#13209)Nick Mills-Barrett2022-07-071-12/+7
* Handle race between persisting an event and un-partial stating a room (#13100)Sean Quah2022-07-053-50/+119
* Fix application service not being able to join remote federated room without ...Eric Eastwood2022-07-051-9/+23
* `_process_received_pdu`: Improve exception handling (#13145)Richard van der Hoff2022-07-011-7/+6
* Don't process /send requests for users who have hit their ratelimit (#13134)Shay2022-06-301-0/+3
* Rate limiting invites per issuer (#13125)David Teller2022-06-301-2/+18
* Implement MSC3827: Filtering of `/publicRooms` by room type (#13031)Å imon Brandner2022-06-292-3/+23
* Use new `device_list_changes_in_room` table when getting device list changes ...Erik Johnston2022-06-172-31/+57
* Fix logging context misuse when we fail to persist a federation event (#13089)Sean Quah2022-06-171-4/+2
* Reduce the duplication of code that invokes the rate limiter. (#13070)reivilibre2022-06-161-27/+3
* Move some event auth checks out to a different method (#13065)Richard van der Hoff2022-06-152-12/+23
* Speed up `get_unread_event_push_actions_by_room` (#13005)Erik Johnston2022-06-151-7/+3
* Move the "email unsubscribe" resource, refactor the macaroon generator & simp...Quentin Gliech2022-06-142-231/+9
* Decouple `synapse.api.auth_blocking.AuthBlocking` from `synapse.api.auth.Auth...Quentin Gliech2022-06-145-8/+11
* Uniformize spam-checker API, part 4: port other spam-checker callbacks to ret...David Teller2022-06-135-38/+55
* Merge branch 'rav/simplify_event_auth_interface' into developRichard van der Hoff2022-06-135-54/+19
|\
| * 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-122-13/+5
| * Remove `room_version` param from `validate_event_for_room_version`Richard van der Hoff2022-06-124-6/+6
* | Faster joins: add issue links to the TODOs (#13004)Richard van der Hoff2022-06-093-1/+15
* | Return the same error message from `/login` when password is incorrect and wh...Daniel Aloni2022-06-071-2/+6
* | Consolidate the logic of delete_device/delete_devices. (#12970)Patrick Cloke2022-06-071-31/+2
|/
* Remove remaining pieces of groups code. (#12966)Patrick Cloke2022-06-061-82/+1
* Reduce state pulled from DB due to sending typing and receipts over federatio...Erik Johnston2022-06-061-2/+5
* Implement MSC3816, consider the root event for thread participation. (#12766)Patrick Cloke2022-06-061-21/+37
* Reduce the amount of state we pull from the DB (#12811)Erik Johnston2022-06-068-15/+40
* Wait for lazy join to complete when getting current state (#12872)Erik Johnston2022-06-0113-21/+63
* Remove remaining bits of groups code. (#12936)Patrick Cloke2022-06-011-1/+0
* Fix 404 on `/sync` when the last event is a redaction of an unknown/purged ev...Richard van der Hoff2022-06-012-45/+96
* Faster room joins: Resume state re-syncing after a Synapse restart (#12813)Sean Quah2022-05-311-2/+25
* Faster room joins: Try other destinations when resyncing the state of a parti...Sean Quah2022-05-312-8/+89
* Merge branch 'master' into developErik Johnston2022-05-311-8/+20
|\
| * Fix import in module_api module and docs on the new check_event_for_spam sign...Brendan Abolivier2022-05-311-4/+15
* | Rename storage classes (#12913)Erik Johnston2022-05-3113-84/+119
* | Don't return `end` from `/messages` if there are no more events (#12903)Jacek Kuśnierz2022-05-301-6/+17
* | Uniformize spam-checker API, part 3: Expand check_event_for_spam with the abi...David Teller2022-05-301-0/+15
* | Add a background job to automatically delete stale devices (#12855)Brendan Abolivier2022-05-271-1/+29
* | Additional constants for EDU types. (#12884)Patrick Cloke2022-05-279-22/+29
* | Merge tag 'v1.60.0rc2' into developSean Quah2022-05-271-9/+20
|\|
| * Add an option allowing users to use their password to reauthenticate even tho...reivilibre2022-05-271-9/+20
* | Remove backing code for groups/communities (#12558)Patrick Cloke2022-05-261-503/+0
* | Remove unstable APIs for /hierarchy. (#12851)Patrick Cloke2022-05-261-4/+1
* | Pull out less state when handling gaps mk2 (#12852)Erik Johnston2022-05-262-97/+121
* | Fix up `state_store` naming (#12871)Erik Johnston2022-05-2511-37/+45
* | Remove user-visible groups/communities code (#12553)Patrick Cloke2022-05-252-76/+0
* | Make sure `prev_ids` defaults to empty list (#12829)Carl Bordum Hansen2022-05-251-0/+4
* | Fixes to MSC3787 implementation (#12858)David Robertson2022-05-241-1/+2
|/
* 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-231-5/+6
* Prevent expired events from being filtered out when retention is disabled (#1...Brendan Abolivier2022-05-231-1/+1
* Update EventContext `get_current_event_ids` and `get_prev_event_ids` to accep...Shay2022-05-205-9/+36
* Add a unit test for copying over arbitrary room types when upgrading a room (...Andrew Morgan2022-05-191-1/+1
* 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
* Add some type hints to `event_federation` datastore (#12753)Dirk Klimpel2022-05-181-0/+2
* Give a meaningful error message when a client tries to create a room with an ...reivilibre2022-05-182-0/+18
* Add some type hints to datastore (#12717)Dirk Klimpel2022-05-171-3/+3
* Add a new room version for MSC3787's knock+restricted join rule (#12623)Travis Ralston2022-05-172-3/+16
* Add `StreamKeyType` class and replace string literals with constants (#12567)Andrew Morgan2022-05-1612-62/+83
* Avoid unnecessary copies when filtering private read receipts. (#12711)Å imon Brandner2022-05-162-35/+65
* Fix room upgrades creating an empty room when auth fails (#12696)Sean Quah2022-05-161-43/+82
* Consolidate logic for parsing relations. (#12693)Patrick Cloke2022-05-162-28/+22
* Another batch of type annotations (#12726)David Robertson2022-05-131-18/+11
* add default_power_level_content_override config option. (#12618)Andy Balaam2022-05-121-1/+15
* Remove unneeded `ActionGenerator` class. (#12691)Patrick Cloke2022-05-112-4/+6
* Fix `/messages` throwing a 500 when querying for non-existent room (#12683)Eric Eastwood2022-05-101-1/+1
* Refactor `EventContext` (#12689)Erik Johnston2022-05-103-7/+11
* Add the `update_user_directory_from_worker` configuration option (superseding...reivilibre2022-05-101-1/+1
* Implement cancellation support/protection for module callbacks (#12568)Sean Quah2022-05-092-7/+21
* Convert stringy power levels to integers on room upgrade (#12657)David Robertson2022-05-071-6/+8
* Prevent memory leak from reoccurring when presence is disabled. (#12656)Erik Johnston2022-05-061-15/+27
* Update mypy to 0.950 and fix complaints (#12650)David Robertson2022-05-061-1/+2
* Add the `notify_appservices_from_worker` configuration option (superseding `n...reivilibre2022-05-061-1/+1
* Support MSC3266 room summaries over federation (#11507)DeepBlueV7.X2022-05-051-5/+49
* Use `private` instead of `hidden` in MSC2285 related code. (#12635)Å imon Brandner2022-05-052-5/+5
* Edits/annotations should not have any bundled aggregations calculated. (#12633)Patrick Cloke2022-05-051-20/+18
* Fix typo in some instances of enable_registration_token_3pid_bypass. (#12639)Will Hunt2022-05-051-1/+1
* Use `getClientAddress` instead of `getClientIP`. (#12599)Patrick Cloke2022-05-043-4/+4
* Implement changes to MSC2285 (hidden read receipts) (#12168)Å imon Brandner2022-05-042-39/+28
* Include bundled aggregations for the latest event in a thread. (#12273)Patrick Cloke2022-05-041-20/+54
* remove constantly lib use and switch to enums. (#12624)andrew do2022-05-044-6/+6
* Add a module API to allow modules to edit push rule actions (#12406)Brendan Abolivier2022-04-271-0/+138
* Remove unused `# type: ignore`s (#12531)David Robertson2022-04-273-5/+5
* Consistently use collections.abc.Mapping to check frozendict. (#12564)Patrick Cloke2022-04-271-2/+2
* Add option to enable token registration without requiring 3pids (#12526)Will Hunt2022-04-271-1/+3
* Bound ephemeral events by key (#12544)Nick Mills-Barrett2022-04-262-4/+4
* Mark remote device list updates as already handled (#12557)Erik Johnston2022-04-261-2/+3
* Comment out dodgy log-kv (#12554)David Robertson2022-04-261-3/+6
* Optimise backfill calculation (#12522)Richard van der Hoff2022-04-262-90/+146
* Misc. clean-ups to the relations code (#12519)Patrick Cloke2022-04-251-62/+32
* Await un-partial-stating after a partial-state join (#12399)Richard van der Hoff2022-04-211-0/+1
* Implement MSC2815: allow room moderators to view redacted event content (#12427)Tulir Asokan2022-04-201-2/+13
* Only send out device list updates for our own users (#12465)Erik Johnston2022-04-141-3/+7
* Prevent a sync request from removing a user's busy presence status (#12213)David Baker2022-04-132-12/+50
* Fix missing sync events during historical batch imports (#12319)Nick Mills-Barrett2022-04-132-17/+12
* Process device list updates asynchronously (#12365)Erik Johnston2022-04-121-28/+0
* Resync state after partial-state join (#12394)Richard van der Hoff2022-04-122-0/+114
* Remove references to unstable identifiers from MSC3440. (#12382)Patrick Cloke2022-04-121-4/+1
* Add some type hints to datastore (#12423)Dirk Klimpel2022-04-121-2/+2
* Remove experimental configuration flag for MSC3666. (#12436)Patrick Cloke2022-04-111-17/+13
* Add missing type hints to config classes. (#12402)Patrick Cloke2022-04-111-0/+2
* Do not consider events by ignored users for bundled aggregations (#12235)Patrick Cloke2022-04-111-30/+214
* Fix rejecting invites over federation (#12409)Erik Johnston2022-04-071-20/+33
* Do not add groups to sync results if disabled. (#12408)Patrick Cloke2022-04-071-2/+3
* Remove support for the unstable identifier from MSC3288. (#12398)Patrick Cloke2022-04-061-2/+0
* Generate historic pagination token for `/messages` when no `?from` token prov...Eric Eastwood2022-04-062-3/+10
* Refactor and convert `Linearizer` to async (#12357)Sean Quah2022-04-0512-24/+22
* Allow non-member state sent in room batch to resolve for historic events (MSC...Eric Eastwood2022-04-041-26/+12
* Track device list updates per room. (#12321)Erik Johnston2022-04-041-12/+120
* Default to `private` room visibility rather than `public` when a client does ...reivilibre2022-04-011-1/+3
* Optimise `_get_state_after_missing_prev_event`: use `/state` (#12040)Richard van der Hoff2022-04-011-4/+39
* Add a module callback to react to account data changes (#12327)Brendan Abolivier2022-04-011-1/+51
* Add a callback to react to 3PID associations (#12302)Brendan Abolivier2022-03-311-0/+3
* Remove an unnecessary class from the relations code. (#12338)Patrick Cloke2022-03-311-12/+23
* Remove the unused and unstable `/aggregations` endpoint. (#12293)Patrick Cloke2022-03-301-4/+2
* Send device list updates to application services (MSC3202) - part 1 (#11881)Andrew Morgan2022-03-302-37/+151
* Start application service stream token tracking from 1 (#12193)Andrew Morgan2022-03-301-1/+1
* Disable proactive sends for remote joins (#12330)Richard van der Hoff2022-03-301-0/+6
* Add a configuration to exclude rooms from sync response (#12310)Brendan Abolivier2022-03-301-6/+17
* Remove unused `auth_event_ids` argument plumbing (#12304)Eric Eastwood2022-03-292-27/+0
* Refactor `create_new_client_event` to use a new parameter, `state_event_ids`,...Eric Eastwood2022-03-253-56/+150
* Always allow the empty string as an avatar_url. (#12261)David Robertson2022-03-251-0/+6
* Do not consider events by ignored users for relations (#12285)Patrick Cloke2022-03-241-1/+8
* Optionally include account validity in MSC3720 account status responses (#12266)Brendan Abolivier2022-03-241-0/+11
* Return a 404 from `/state` for an outlier (#12087)Richard van der Hoff2022-03-211-40/+21
* Move get_bundled_aggregations to relations handler. (#12237)Patrick Cloke2022-03-185-9/+164
* Correct `check_username_for_spam` annotations and docs (#12246)David Robertson2022-03-181-2/+2
* Add a relations handler to avoid duplication. (#12227)Patrick Cloke2022-03-162-2/+120
* Use the ignored_users table to test event visibility & sync. (#12225)Patrick Cloke2022-03-151-28/+2
* Add cancellation support to `ReadWriteLock` (#12120)Sean Quah2022-03-141-4/+4
* Implement a Jinja2 filter to extract localparts from email addresses (#12212)Brendan Abolivier2022-03-111-0/+6
* Improve code documentation for the typing stream over replication. (#12211)reivilibre2022-03-111-2/+3
* Update the SSO username picker template to comply with SIWA guidelines (#12210)Brendan Abolivier2022-03-112-4/+16
* Remove unnecessary pass statements. (#12206)Patrick Cloke2022-03-112-4/+0
* Support stable identifiers for MSC3440: Threading (#12151)Patrick Cloke2022-03-101-1/+4
* Rename get_tcp_replication to get_replication_command_handler. (#12192)Patrick Cloke2022-03-101-2/+2
* Add third_party module callbacks to check if a user can delete a room and dea...Will Hunt2022-03-092-1/+19
* Skip attempt to get state at backwards-extremities (#12173)Richard van der Hoff2022-03-091-57/+3
* Use `ParamSpec` in type hints for `synapse.logging.context` (#12150)Sean Quah2022-03-081-2/+3
* Do not return allowed_room_ids from /hierarchy response. (#12175)Patrick Cloke2022-03-081-2/+13
* Spread out sending device lists to remote hosts (#12132)Erik Johnston2022-03-041-1/+1
* Avoid generating state groups for local out-of-band leaves (#12154)Richard van der Hoff2022-03-031-1/+1
* Rename various ApplicationServices interested methods (#11915)Andrew Morgan2022-03-034-9/+7
* Use the proper serialization format when bundling aggregations. (#12090)Patrick Cloke2022-03-033-6/+13
* Limit the size of the aggregation_key (#12101)Erik Johnston2022-03-031-0/+3
* Check if instances are lists, not sequences. (#12128)Patrick Cloke2022-03-021-1/+1
* Add module callbacks called for reacting to deactivation status change and pr...Brendan Abolivier2022-03-012-2/+32
* Faster joins: persist to database (#12012)Richard van der Hoff2022-03-013-3/+23
* Improve exception handling for concurrent execution (#12109)Richard van der Hoff2022-03-011-2/+2
* Remove the unstable `/spaces` endpoint. (#12073)Patrick Cloke2022-02-281-312/+11
* Add logging to `/sync` for debugging #11916 (#12068)Erik Johnston2022-02-231-0/+9
* Remove more references to `get_datastore` (#12067)Richard van der Hoff2022-02-231-2/+2
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-2342-56/+56
* Implement account status endpoints (MSC3720) (#12001)Brendan Abolivier2022-02-221-0/+144
* Run `_handle_queued_pdus` as a background process (#12041)Richard van der Hoff2022-02-221-2/+4
* remote join processing: get create event from state, not auth_chain (#12039)Richard van der Hoff2022-02-211-1/+1
* Minor typing fixes (#12034)Richard van der Hoff2022-02-212-7/+9
* Add type hints to `synapse/storage/databases/main` (#11984)Dirk Klimpel2022-02-211-12/+14
* Upgrade mypy to version 0.931 (#12030)Sean Quah2022-02-181-1/+1
* Allow modules to set a display name on registration (#12009)Brendan Abolivier2022-02-171-0/+58
* `send_join` response: get create event from `state`, not `auth_chain` (#12005)Richard van der Hoff2022-02-171-1/+1
* Limit concurrent AS joins (#11996)Brendan Abolivier2022-02-161-19/+27
* Optimise calculating device_list changes in `/sync`. (#11974)Erik Johnston2022-02-151-15/+53
* `_auth_and_persist_outliers`: drop events we have already seen (#11994)Richard van der Hoff2022-02-151-24/+20
* Refactor search code to reduce function size. (#11991)Patrick Cloke2022-02-151-219/+424
* Notify users, rather than rooms, of device list updates (#11905)Andrew Morgan2022-02-121-5/+3
* Remove deprecated user_may_create_room_with_invites callback (#11950)Brendan Abolivier2022-02-111-5/+0
* Adds misc missing type hints (#11953)Patrick Cloke2022-02-111-2/+2
* Experimental support to include bundled aggregations in search results (MSC36...Patrick Cloke2022-02-081-5/+24
* Remove unnecessary ignores due to Twisted upgrade. (#11939)Patrick Cloke2022-02-081-1/+1
* Add a callback to allow modules to deny 3PID (#11854)Brendan Abolivier2022-02-081-0/+44
* Fix historical messages backfilling in random order on remote homeservers (MS...Eric Eastwood2022-02-075-37/+110
* Remove optional state of `ApplicationService.is_interested`'s `store` paramet...Andrew Morgan2022-02-071-1/+1
* Clean up an indirect reference to the homeserver datastore (#11914)Andrew Morgan2022-02-071-2/+2
* Stabilise MSC3231 (Token Based Registration) (#11867)Jonathan de Jong2022-02-041-1/+1
* Add a ratelimiter for 3pid invite (#11892)Brendan Abolivier2022-02-031-1/+8
* Send to-device messages to application services (#11215)Andrew Morgan2022-02-012-19/+121
* Configurable limits on avatars (#11846)Brendan Abolivier2022-01-282-0/+73
* Add a module callback to set username at registration (#11790)Brendan Abolivier2022-01-261-0/+58
* Improvements to bundling aggregations. (#11815)Patrick Cloke2022-01-263-59/+66
* Add a config flag to inhibit `M_USER_IN_USE` during registration (#11743)Brendan Abolivier2022-01-261-12/+14
* Remove account data (including client config, push rules and ignored users) u...reivilibre2022-01-241-0/+3
* Make the `get_global_account_data_by_type_for_user` cache be a tree-cache who...reivilibre2022-01-211-1/+1
* Correctly await on_logged_out callbacks (#11786)Brendan Abolivier2022-01-201-1/+1
* Partially revert #11675; prevent attempting to create pushers on workers (#11...Andrew Morgan2022-01-201-7/+5
* Fix a bug that corrupted the cache of federated space hierarchies (#11775)Sean Quah2022-01-201-1/+2
* Include whether the requesting user has participated in a thread. (#11577)Patrick Cloke2022-01-183-5/+13
* Remove `log_function` and its uses (#11761)Richard van der Hoff2022-01-184-13/+0
* Add a flag to the `synapse_review_recent_signups` script to ignore and filter...lukasdenk2022-01-171-5/+7
* Remove the 'password_hash' from the Users Admin API endpoint response diction...Andrew Morgan2022-01-141-15/+41
* Include bundled aggregations in the sync response cache. (#11659)Patrick Cloke2022-01-131-0/+10
* Use auto_attribs/native type hints for attrs classes. (#11692)Patrick Cloke2022-01-133-28/+28
* Fix docstring on `add_account_data_for_user`. (#11716)reivilibre2022-01-101-1/+1
* Support spaces with > 50 rooms in the /hierarchy endpoint. (#11695)Patrick Cloke2022-01-071-8/+22
* Bundle aggregations outside of the serialization method. (#11612)Patrick Cloke2022-01-076-20/+28
* Make room creations denied by `user_may_create_room` cause an `M_FORBIDDEN` e...lukasdenk2022-01-061-2/+6
* Remove debug logging for #4422 (#11693)David Robertson2022-01-061-37/+1
* Fix space hierarchy endpoint to match MSC2946 (#11667)Travis Ralston2022-01-051-2/+4
* Cache empty responses from `/user/devices` (#11587)David Robertson2022-01-051-1/+9
* Refactor the way we set `outlier` (#11634)Richard van der Hoff2022-01-051-7/+8
* Fix AssertionErrors after purging events (#11642)Richard van der Hoff2022-01-042-3/+26
* `FederationClient.backfill`: stop flagging events as outliers (#11632)Richard van der Hoff2022-01-041-1/+3
* Remove redundant `get_current_events_token` (#11643)Richard van der Hoff2022-01-042-2/+2
* Convert all namedtuples to attrs. (#11665)Patrick Cloke2021-12-304-24/+26
* Do not attempt to bundled aggregations for /members and /state. (#11623)Patrick Cloke2021-12-291-3/+1
* Add type hints to event_push_actions. (#11594)Patrick Cloke2021-12-211-6/+6
* Various opentracing enhancements (#11619)Richard van der Hoff2021-12-211-3/+4
* Do not bundle aggregations for APIs which shouldn't include them. (#11592)Patrick Cloke2021-12-204-18/+11
* Improve opentracing support for `ResponseCache` (#11607)Richard van der Hoff2021-12-201-1/+1
* Add type hints to `synapse/storage/databases/main/room.py` (#11575)Sean Quah2021-12-151-2/+4
* Convert EventStreamResult to attrs. (#11574)Patrick Cloke2021-12-151-3/+4
* Add type hints to `synapse/storage/databases/main/e2e_room_keys.py` (#11549)Sean Quah2021-12-141-5/+10
* Add missing type hints to `synapse.logging.context` (#11556)Sean Quah2021-12-143-29/+36
* Make `get_device` return None if the device doesn't exist rather than raising...reivilibre2021-12-132-7/+7
* Allow events to be created with no `prev_events` (MSC2716) (#11243)Eric Eastwood2021-12-102-7/+20
* Adjust _get_rooms_changed comments (#11550)David Robertson2021-12-101-22/+29
* Support unprefixed versions of fallback key property names. (#11541)Hubert Chathi2021-12-091-1/+3
* Add a constant for receipt types (m.read). (#11531)Patrick Cloke2021-12-082-5/+5
* Send and handle cross-signing messages using the stable prefix. (#10520)Hubert Chathi2021-12-081-2/+6
* Refactors in `_generate_sync_entry_for_rooms` (#11515)David Robertson2021-12-071-45/+77
* Correctly register shutdown handler for presence workers (#11518)David Robertson2021-12-071-1/+1
* Fix 'delete room' admin api to work on incomplete rooms (#11523)Richard van der Hoff2021-12-072-17/+7
* Correctly ignore invites from ignored users (#11511)David Robertson2021-12-071-5/+6
* Save the OIDC session ID (sid) with the device on login (#11482)Quentin Gliech2021-12-065-29/+90
* Include bundled aggregations in /sync and related fixes (#11478)Patrick Cloke2021-12-063-16/+27
* Support configuring the lifetime of non-refreshable access tokens separately ...reivilibre2021-12-031-3/+17
* Comments on the /sync tentacles (#11494)David Robertson2021-12-021-39/+117
* Add MSC3030 experimental client and federation API endpoints to get the close...Eric Eastwood2021-12-022-30/+175
* Support the stable /hierarchy endpoint from MSC2946 (#11329)Patrick Cloke2021-11-291-4/+10
* Add type annotations to some of the configuration surrounding refresh tokens....reivilibre2021-11-291-0/+5
* Support expiry of refresh tokens and expiry of the overall session when refre...reivilibre2021-11-262-19/+115
* Rename unstable `access_token_lifetime` configuration option to `refreshable_...reivilibre2021-11-231-2/+6
* Refactor the code to inject bundled relations during serialization. (#11408)Patrick Cloke2021-11-232-2/+2
* Fix checking whether a room can be published on creation. (#11392)Patrick Cloke2021-11-191-1/+4
* Prevent historical state from being pushed to an application service via `/tr...Eric Eastwood2021-11-182-0/+17
* Remove legacy code related to deprecated `trust_identity_server_for_password_...Shay2021-11-181-18/+0
* Rename `get_refresh_token_for_user_id` to `create_refresh_token_for_user_id` ...reivilibre2021-11-182-3/+3
* Do not allow MSC3440 threads to fork threads (#11161)Patrick Cloke2021-11-181-6/+48
* Add type annotations to `synapse.metrics` (#10847)Sean Quah2021-11-171-1/+1
* Rename `get_access_token_for_user_id` method to `create_access_token_for_user...reivilibre2021-11-172-3/+3
* Avoid sharing room hierarchy responses between users (#11355)Sean Quah2021-11-161-2/+9
* Properly register all callback hooks for legacy password authentication provi...reivilibre2021-11-161-13/+13
* Test room alias deletion (#11327)David Robertson2021-11-121-1/+5
* Convert delete room admin API to async endpoint (#11223)Dirk Klimpel2021-11-122-9/+293
* Add missing type hints to `synapse.app`. (#11287)Patrick Cloke2021-11-101-2/+2
* Remove redundant parameters on `_check_event_auth` (#11292)Richard van der Hoff2021-11-101-10/+0
* Clarifications and small fixes to to-device related code (#11247)Andrew Morgan2021-11-092-8/+47
* Allow admins to proactively block rooms (#11228)David Robertson2021-11-091-11/+40
* Support filtering by relations per MSC3440 (#11236)Patrick Cloke2021-11-094-15/+21