summary refs log tree commit diff
path: root/synapse/rest/client (follow)
Commit message (Expand)AuthorAgeFilesLines
* Move `StateFilter` to `synapse.types` (#14668)David Robertson2022-12-121-1/+1
* Reject receipt requests with invalid room or event IDs. (#14632)Nick Mills-Barrett2022-12-071-1/+4
* Fix a long-standing bug where the user directory would return 1 more row than...reivilibre2022-12-071-2/+2
* Improve logging and opentracing for to-device message handling (#14598)Richard van der Hoff2022-12-061-1/+0
* Suppress empty body warnings in room servelets (#14600)David Robertson2022-12-051-12/+2
* Use ClientRestResource on both the main process and workers. (#14528)Patrick Cloke2022-12-025-26/+30
* Advertise support for Matrix v1.5. (#14576)Patrick Cloke2022-11-291-0/+1
* Move MSC3030 `/timestamp_to_event` endpoint to stable v1 location (#14471)Eric Eastwood2022-11-282-9/+3
* Add a type hint for `get_device_handler()` and fix incorrect types. (#14055)Patrick Cloke2022-11-222-6/+20
* Remove need for `worker_main_http_uri` setting to use /keys/upload. (#14400)realtyem2022-11-161-18/+50
* Remove redundant types from comments. (#14412)Patrick Cloke2022-11-161-1/+1
* Fix /refresh endpoint version (#14364)Tulir Asokan2022-11-041-1/+1
* Implement MSC3912: Relation-based redactions (#14260)Brendan Abolivier2022-11-032-14/+45
* Fix dehydrated device REST checks (#14336)David Robertson2022-10-311-3/+2
* Reject history insertion during partial joins (#14291)David Robertson2022-10-271-0/+7
* Save login tokens in database (#13844)Quentin Gliech2022-10-262-5/+3
* Implementation for MSC3664: Pushrules for relations (#11804)DeepBlueV7.X2022-10-251-0/+5
* Return NOT_JSON if decode fails and defer set_timeline_upper_limit ca… (#14...Ryan Miguel2022-10-241-4/+4
* Implementation of HTTP 307 response for MSC3886 POST endpoint (#14018)Hugh Nimmo-Smith2022-10-182-0/+77
* Support filtering the /messages API by relation type (MSC3874). (#14148)Patrick Cloke2022-10-171-0/+2
* Use Pydantic when PUTting room aliases (#14179)David Robertson2022-10-171-23/+35
* Accept threaded receipts for events related to the root event. (#14174)Patrick Cloke2022-10-141-2/+42
* Advertise support for Matrix 1.4. (#14184)Patrick Cloke2022-10-141-0/+1
* Do not allow a None-limit on PaginationConfig. (#14146)Patrick Cloke2022-10-143-3/+9
* Stabilize the threads API. (#14175)Patrick Cloke2022-10-141-7/+2
* Add an API for listing threads in a room. (#13394)Patrick Cloke2022-10-131-1/+49
* Remove support for the unstable dir flag on relations. (#14106)Patrick Cloke2022-10-071-35/+10
* Use stable identifiers for MSC3771 & MSC3773. (#14050)Patrick Cloke2022-10-073-29/+30
* Use Pydantic to validate /devices endpoints (#14054)David Robertson2022-10-071-46/+52
* Recursively fetch the thread for receipts & notifications. (#13824)Patrick Cloke2022-10-041-2/+20
* Advertise supporting version 1.3 of the Matrix spec. (#14032)Patrick Cloke2022-10-041-0/+1
* Track notification counts per thread (implement MSC3773). (#13776)Patrick Cloke2022-10-042-1/+6
* Do not return unspecced original_event field when using the stable /relations...Patrick Cloke2022-10-031-0/+6
* Add query parameter `ts` to allow appservices set the `origin_server_ts` for ...lukasdenk2022-10-031-13/+21
* Allow admins to require a manual approval process before new accounts can be ...Brendan Abolivier2022-09-292-5/+54
* Expose MSC3882 only be under an unstable endpoint. (#13868)Hugh Nimmo-Smith2022-09-291-1/+3
* Support the stable dir parameter for /relations. (#13920)Patrick Cloke2022-09-271-9/+15
* Accept & store thread IDs for receipts (implement MSC3771). (#13782)Patrick Cloke2022-09-233-1/+17
* Last batch of Pydantic for synapse/rest/client/account.py (#13832)David Robertson2022-09-211-6/+13
* Add version flag for MSC3881 (#13860)Brendan Abolivier2022-09-211-0/+2
* Track device IDs for pushers (#13831)Brendan Abolivier2022-09-211-0/+3
* Implementation of MSC3882 login token request (#13722)Hugh Nimmo-Smith2022-09-212-0/+96
* Support enabling/disabling pushers (from MSC3881) (#13799)Brendan Abolivier2022-09-211-3/+15
* A third batch of Pydantic validation for rest/client/account.py (#13736)David Robertson2022-09-152-42/+51
* A second batch of Pydantic models for rest/client/account.py (#13687)David Robertson2022-09-072-32/+46
* Cancel the processing of key query requests when they time out. (#13680)reivilibre2022-09-071-2/+4
* Remove support for unstable private read receipts (#13653)Šimon Brandner2022-09-014-6/+0
* Drop support for calling `/_matrix/client/v3/rooms/{roomId}/invite` without a...Jacek Kuśnierz2022-08-311-8/+12
* Generalise the `@cancellable` annotation so it can be used on functions other...reivilibre2022-08-311-1/+2
* Drop support for delegating email validation, round 2 (#13596)David Robertson2022-08-232-112/+55
* Fix Prometheus metrics being negative (mixed up start/end) (#13584)Eric Eastwood2022-08-231-1/+5
* `synapse.api.auth.Auth` cleanup: make permission-related methods use `Request...Quentin Gliech2022-08-223-13/+7
* Remove redundant opentracing spans for `/sendToDevice` and `/keys/upload` (#1...Andrew Morgan2022-08-222-4/+2
* Implement MSC3852: Expose `last_seen_user_agent` to users for their own devic...Andrew Morgan2022-08-191-0/+27
* Fix validation problem that occurs when a user tries to deactivate their acco...reivilibre2022-08-191-3/+3
* Add metrics to track `/messages` response time by room size (#13545)Eric Eastwood2022-08-181-2/+53
* Add specific metric to time long-running `/messages` requests (#13533)Eric Eastwood2022-08-171-0/+32
* Use Pydantic to systematically validate a first batch of endpoints in `synaps...David Robertson2022-08-152-85/+132
* Support stable identifiers for MSC2285: private read receipts. (#13273)Šimon Brandner2022-08-054-7/+19
* Rename `RateLimitConfig` to `RatelimitSettings` (#13442)Dirk Klimpel2022-08-031-2/+2
* Merge tag 'v1.64.0rc2' into developRichard van der Hoff2022-07-292-54/+111
|\
| * Revert "Drop support for delegating email validation (#13192)" (#13406)3nprob2022-07-292-54/+111
* | Use stable prefixes for MSC3827: filtering of `/publicRooms` by room type (#1...Šimon Brandner2022-07-271-2/+2
|/
* Add missing types to opentracing. (#13345)Patrick Cloke2022-07-211-1/+3
* Add type annotations to `trace` decorator. (#13328)Patrick Cloke2022-07-194-15/+18
* Reduce duplicate code in receipts servlets. (#13198)Patrick Cloke2022-07-132-44/+32
* Drop support for calling `/_matrix/client/v3/account/3pid/bind` without an `i...Jacek Kuśnierz2022-07-121-2/+4
* Drop support for delegating email validation (#13192)Richard van der Hoff2022-07-122-112/+54
* Make the AS login method call `Auth.get_user_by_req` for checking the AS toke...Quentin Gliech2022-07-121-2/+8
* Extra validation for rest/client/account_data (#13148)David Robertson2022-07-011-2/+17
* Implement MSC3827: Filtering of `/publicRooms` by room type (#13031)Šimon Brandner2022-06-291-0/+2
* Remove unspecced DELETE endpoint that modifies room visibility (#13123)santhoshivan232022-06-281-11/+0
* validate room alias before interacting with the room directory (#13106)santhoshivan232022-06-221-0/+6
* Simplify the alias deletion logic as an application service. (#13093)Quentin Gliech2022-06-171-22/+13
* Allow MSC3030 'timestamp_to_event' calls from anyone on world-readable rooms....Quentin Gliech2022-06-171-1/+3
* Replace pyjwt with authlib in `org.matrix.login.jwt` (#13011)Hannes Lerchl2022-06-151-8/+38
* Fix `destination_is` errors seen in sentry. (#13041)David Robertson2022-06-141-4/+16
* Move the "email unsubscribe" resource, refactor the macaroon generator & simp...Quentin Gliech2022-06-141-38/+12
* Move the (unstable) `dir` parameter for /relations behind an experimental fla...Patrick Cloke2022-06-081-3/+10
* Consolidate the logic of delete_device/delete_devices. (#12970)Patrick Cloke2022-06-072-3/+5
* Reduce the amount of state we pull from the DB (#12811)Erik Johnston2022-06-061-2/+5
* Mutual rooms: Remove dependency on user directory (#12836)Jonathan de Jong2022-05-301-13/+2
* Additional constants for EDU types. (#12884)Patrick Cloke2022-05-271-2/+2
* Remove unstable APIs for /hierarchy. (#12851)Patrick Cloke2022-05-261-6/+1
* Remove user-visible groups/communities code (#12553)Patrick Cloke2022-05-252-970/+0
* Discard null-containing strings before updating the user directory (#12762)David Robertson2022-05-181-2/+2
* Add some type hints to datastore (#12717)Dirk Klimpel2022-05-171-2/+2
* Enable cancellation of `GET /members` and `GET /state` requests (#12708)Sean Quah2022-05-111-1/+5
* No longer permit empty body when sending receipts (#12709)David Robertson2022-05-111-12/+1
* Use `ParamSpec` in a few places (#12667)David Robertson2022-05-092-10/+13
* Don't error on unknown receipt types (#12670)Erik Johnston2022-05-091-12/+15
* Use `private` instead of `hidden` in MSC2285 related code. (#12635)Šimon Brandner2022-05-051-1/+1
* 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-10/+18
* Implement changes to MSC2285 (hidden read receipts) (#12168)Šimon Brandner2022-05-043-31/+54
* Remove unstable/unspecced login types. (#12597)Patrick Cloke2022-05-041-11/+4
* Remove unstable identifiers for MSC3069. (#12596)Patrick Cloke2022-05-031-2/+0
* Add a module API to allow modules to edit push rule actions (#12406)Brendan Abolivier2022-04-271-95/+17
* Add option to enable token registration without requiring 3pids (#12526)Will Hunt2022-04-271-1/+6
* Implement MSC2815: allow room moderators to view redacted event content (#12427)Tulir Asokan2022-04-202-1/+47
* Fix `/room/.../event/...` to return the *original* event after any edits (#12...Richard van der Hoff2022-04-191-1/+3
* Limit `device_id` size to 512B (#12454)Shay2022-04-131-0/+9
* Prevent a sync request from removing a user's busy presence status (#12213)David Baker2022-04-131-6/+3
* Rename Mutual Rooms `unstable_features` flag to match MSC (#12445)Jonathan de Jong2022-04-131-1/+1
* Remove references to unstable identifiers from MSC3440. (#12382)Patrick Cloke2022-04-121-1/+0
* Do not add groups to sync results if disabled. (#12408)Patrick Cloke2022-04-071-8/+7
* Support the v1 endpoint for `/relations`. (#12403)Patrick Cloke2022-04-071-1/+1
* Move MSC2654 support behind an experimental configuration flag. (#12295)Patrick Cloke2022-03-311-1/+3
* Remove the unused and unstable `/aggregations` endpoint. (#12293)Patrick Cloke2022-03-301-170/+0
* Room batch: fix up handling of unknown prev_event_ids (#12316)Richard van der Hoff2022-03-291-8/+13
* Refactor `create_new_client_event` to use a new parameter, `state_event_ids`,...Eric Eastwood2022-03-251-9/+14
* Remove mutual_rooms `update_user_directory` check, and add extra documentatio...Jonathan de Jong2022-03-231-4/+6
* Rename shared_rooms to mutual_rooms (#12036)Jonathan de Jong2022-03-231-5/+6
* Move get_bundled_aggregations to relations handler. (#12237)Patrick Cloke2022-03-181-1/+2
* 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-161-67/+8
* Support stable identifiers for MSC3440: Threading (#12151)Patrick Cloke2022-03-101-0/+1
* Allow retrieving the relations of a redacted event. (#12130)Patrick Cloke2022-03-101-44/+38
* Remove backwards compatibility with RelationPaginationToken. (#12138)Patrick Cloke2022-03-041-41/+14
* Use the proper serialization format when bundling aggregations. (#12090)Patrick Cloke2022-03-032-96/+45
* Remove the unstable `/spaces` endpoint. (#12073)Patrick Cloke2022-02-281-68/+0
* Move experimental support for MSC3440 to /versions. (#12099)Patrick Cloke2022-02-282-3/+2
* Remove more references to `get_datastore` (#12067)Richard van der Hoff2022-02-231-3/+0
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-2320-46/+48
* Implement account status endpoints (MSC3720) (#12001)Brendan Abolivier2022-02-222-0/+38
* Use v3 endpoints for fallback auth (Matrix 1.1) (#12019)Travis Ralston2022-02-221-4/+4
* Advertise Matrix 1.2 in `/_matrix/client/versions` (#12022)Travis Ralston2022-02-211-0/+1
* Advertise Matrix 1.1 in `/_matrix/client/versions` (#12020)Travis Ralston2022-02-181-0/+1
* Use stable MSC3069 `is_guest` flag on `/whoami`. (#12021)Travis Ralston2022-02-181-0/+2
* Remove unstable MSC3283 flags (#12018)Erik Johnston2022-02-171-14/+0
* Allow modules to set a display name on registration (#12009)Brendan Abolivier2022-02-171-0/+7
* Support the MSC3715 for `/relations`. (#11941)Patrick Cloke2022-02-111-0/+4
* Support the stable API endpoint for MSC3283: new settings in `/capabilities` ...Dirk Klimpel2022-02-111-1/+14
* Support pagination tokens from /sync and /messages in the relations API. (#11...Patrick Cloke2022-02-101-18/+39
* Add a callback to allow modules to deny 3PID (#11854)Brendan Abolivier2022-02-082-5/+7
* Fix historical messages backfilling in random order on remote homeservers (MS...Eric Eastwood2022-02-071-9/+8
* Stabilise MSC3231 (Token Based Registration) (#11867)Jonathan de Jong2022-02-041-4/+3
* Revert experimental push rules from #7997. (#11884)Patrick Cloke2022-02-021-11/+2
* Add a module callback to set username at registration (#11790)Brendan Abolivier2022-01-261-1/+11
* Improvements to bundling aggregations. (#11815)Patrick Cloke2022-01-262-16/+26
* Add a config flag to inhibit `M_USER_IN_USE` during registration (#11743)Brendan Abolivier2022-01-261-0/+11
* Do not try to serialize raw aggregations dict. (#11791)Patrick Cloke2022-01-211-7/+4
* Make the `get_global_account_data_by_type_for_user` cache be a tree-cache who...reivilibre2022-01-211-1/+1
* Include whether the requesting user has participated in a thread. (#11577)Patrick Cloke2022-01-182-2/+6
* Include bundled aggregations in the sync response cache. (#11659)Patrick Cloke2022-01-131-14/+3
* Merge branch 'release-v1.50' into developOlivier Wilkinson (reivilibre)2022-01-071-0/+3
|\
| * Include `io.element.thread` capability for MSC3440. (#11690)Patrick Cloke2022-01-051-0/+3
* | Bundle aggregations outside of the serialization method. (#11612)Patrick Cloke2022-01-075-34/+48
* | Remove the /send_relation endpoint. (#11682)Patrick Cloke2022-01-061-120/+5
|/
* Add type hints to event_push_actions. (#11594)Patrick Cloke2021-12-211-10/+10
* Various opentracing enhancements (#11619)Richard van der Hoff2021-12-211-0/+6
* Do not bundle aggregations for APIs which shouldn't include them. (#11592)Patrick Cloke2021-12-202-5/+9
* Merge remote-tracking branch 'origin/release-v1.49' into developRichard van der Hoff2021-12-201-1/+9
|\
| * Disable aggregation bundling on `/sync` responses (#11583)Richard van der Hoff2021-12-201-1/+9
* | Add MSC2716 and MSC3030 to `/versions` -> `unstable_features` (#11582)Eric Eastwood2021-12-161-0/+4
* | Make `get_device` return None if the device doesn't exist rather than raising...reivilibre2021-12-131-2/+4
* | Do not allow cross-room relations, per MSC2674. (#11516)Patrick Cloke2021-12-091-1/+6
* | Support unprefixed versions of fallback key property names. (#11541)Hubert Chathi2021-12-091-0/+3
* | Allow guests to send state events (#11378)Robert Long2021-12-091-1/+1
* | Add a constant for receipt types (m.read). (#11531)Patrick Cloke2021-12-083-6/+7
|/
* Stabilise support for MSC2918 refresh tokens as they have now been merged int...reivilibre2021-12-062-29/+23
* Save the OIDC session ID (sid) with the device on login (#11482)Quentin Gliech2021-12-061-2/+5
* Include bundled aggregations in /sync and related fixes (#11478)Patrick Cloke2021-12-063-12/+8
* Add MSC3030 experimental client and federation API endpoints to get the close...Eric Eastwood2021-12-021-0/+58
* Register the login redirect endpoint for v3. (#11451)Patrick Cloke2021-12-012-3/+3
* Bundle relations of relations into the `/relations` result. (#11284)Patrick Cloke2021-11-301-6/+3
* Support the stable /hierarchy endpoint from MSC2946 (#11329)Patrick Cloke2021-11-291-4/+4
* Update MSC2918 refresh token support to confirm with the latest revision: acc...reivilibre2021-11-262-8/+13
* Support expiry of refresh tokens and expiry of the overall session when refre...reivilibre2021-11-261-15/+37
* Rename unstable `access_token_lifetime` configuration option to `refreshable_...reivilibre2021-11-232-5/+13
* Refactor the code to inject bundled relations during serialization. (#11408)Patrick Cloke2021-11-233-5/+5
* Add config for customizing the claim used for JWT logins. (#11361)Kostas2021-11-221-1/+2
* Add support for `/_matrix/client/v3` APIs (#11318)Aaron R2021-11-162-3/+3
* Add support for the stable version of MSC2778 (#11335)Tulir Asokan2021-11-151-2/+7
* Support filtering by relations per MSC3440 (#11236)Patrick Cloke2021-11-092-5/+11
* Fix typo in `RelationAggregationPaginationServlet` error response (#11278)Andrew Morgan2021-11-091-1/+3
* Require body for read receipts with user-agent exceptions (#11157)rogersheu2021-11-091-1/+11
* Rename to more clear `get_insertion_event_id_by_batch_id` (MSC2716) (#11244)Eric Eastwood2021-11-081-1/+1
* Enable passing typing stream writers as a list. (#11237)Nick Barrett2021-11-031-1/+1
* Support sending no `state_events_at_start` in the MSC2716 `/batch_send` endpo...Eric Eastwood2021-11-031-12/+17
* Add remaining type hints to `synapse.events`. (#11098)Patrick Cloke2021-11-021-1/+1
* Support Client-Server API r0.6.1 (#11097)Aaron R2021-11-011-0/+1
* Add a thread relation type per MSC3440. (#11088)Patrick Cloke2021-10-211-1/+2
* Resolve and share `state_groups` for all historical events in batch (MSC2716)...Eric Eastwood2021-10-131-9/+6
* Add type hints to synapse.events.*. (#11066)Patrick Cloke2021-10-131-4/+4
* Refactor MSC2716 `/batch_send` endpoint into separate handler functions (#10974)Eric Eastwood2021-10-081-283/+56
* Require direct references to configuration variables. (#10985)Patrick Cloke2021-10-062-2/+4
* Use direct references for configuration variables (part 7). (#10959)Patrick Cloke2021-10-045-32/+34
* Fix getTurnServer response: return an integer ttl (#10922)Lukas Lihotzki2021-09-301-1/+1
* Use direct references for configuration variables (part 6). (#10916)Patrick Cloke2021-09-298-17/+17
* Implement MSC3069: Guest support on whoami (#9655)Travis Ralston2021-09-291-2/+6
* Ensure `(room_id, next_batch_id)` is unique to avoid cross-talk/conflicts bet...Eric Eastwood2021-09-281-2/+4
* Use direct references for configuration variables (part 5). (#10897)Patrick Cloke2021-09-244-11/+11
* Use direct references for configuration variables (part 4). (#10893)Patrick Cloke2021-09-231-6/+6
* Use direct references for some configuration variables (part 3) (#10885)Patrick Cloke2021-09-235-43/+45
* Remove unnecessary parentheses around tuples returned from methods (#10889)Andrew Morgan2021-09-232-4/+4
* Rename MSC2716 things from `chunk` to `batch` to match `/batch_send` endpoint...Eric Eastwood2021-09-211-43/+43
* Rename `/batch_send` query parameter from `?prev_event` to more obvious usage...Eric Eastwood2021-09-211-7/+9
* Verify `?chunk_id` actually corresponds to an insertion event that exists (MS...Eric Eastwood2021-09-151-1/+12
* Split out `/batch_send` meta events to their own fields (MSC2716) (#10777)Eric Eastwood2021-09-151-11/+18
* Use direct references for some configuration variables (#10798)Patrick Cloke2021-09-135-11/+14
* Add types to synapse.util. (#10601)reivilibre2021-09-101-4/+7
* Remove unstable MSC2858 API, including `experimental.msc2858_enabled` config ...Sean2021-09-091-46/+11
* Additional type hints for client REST servlets (part 5) (#10736)Patrick Cloke2021-09-034-66/+119
* Additional type hints for client REST servlets (part 4) (#10728)Patrick Cloke2021-09-018-100/+144
* Additional type hints for the client REST servlets (part 3). (#10707)Patrick Cloke2021-08-316-150/+305
* Remove unused `compare_digest` function. (#10706)Patrick Cloke2021-08-271-13/+0
* Additional type hints for REST servlets (part 2). (#10674)Patrick Cloke2021-08-2615-138/+210
* Correctly initialise the `synapse_user_logins` metric. (#10677)Richard van der Hoff2021-08-241-6/+23
* Additional type hints for the sync REST servlet. (#10666)Patrick Cloke2021-08-231-51/+81
* Addtional type hints for the REST servlets. (#10665)Patrick Cloke2021-08-2313-107/+203
* Implement MSC3231: Token authenticated registration (#10142)Callum Brown2021-08-212-0/+96
* Validate device_keys for C-S /keys/query requests (#10593)David Robertson2021-08-201-1/+15
* Support MSC3283: Expose `enable_set_displayname` in capabilities (#10452)Dirk Klimpel2021-08-191-0/+11
* Merge branch 'release-v1.41' into developErik Johnston2021-08-181-1/+1
|\
| * Allow /createRoom to be run on workers (#10564)Andrew Morgan2021-08-171-1/+1
* | Display an error page during failure of fallback UIA. (#10561)Callum Brown2021-08-181-15/+24
|/
* Flatten the synapse.rest.client package (#10600)reivilibre2021-08-1743-40/+14
* Always list fallback key types in /sync (#10623)Andrew Morgan2021-08-171-4/+5
* Validate the max_rooms_per_space parameter to ensure it is non-negative. (#10...Patrick Cloke2021-08-161-5/+20
* Experimental support for MSC3266 Room Summary API. (#10394)Michael Telatynski2021-08-161-33/+57
* Move /batch_send to /v2_alpha directory (MSC2716) (#10576)Eric Eastwood2021-08-132-409/+442
* Only return state events that the AS passed in via `state_events_at_start` (M...Eric Eastwood2021-08-101-1/+3
* Add local support for the new spaces summary endpoint (MSC2946) (#10549)Patrick Cloke2021-08-101-0/+41
* Fix exceptions in logs when failing to get remote room list (#10541)Erik Johnston2021-08-061-18/+12
* Mark all MSC2716 events as historical (#10537)Eric Eastwood2021-08-051-5/+10
* Don't fail on empty bodies when sending out read receipts (#10531)Brendan Abolivier2021-08-041-1/+1
* Make historical events discoverable from backfill for servers without any scr...Eric Eastwood2021-07-281-1/+6
* Support for MSC2285 (hidden read receipts) (#10413)Šimon Brandner2021-07-283-4/+34
* Support MSC2033: Device ID on whoami (#9918)Travis Ralston2021-07-271-1/+8
* Merge branch 'master' into developErik Johnston2021-07-231-4/+7
|\
| * Always send device_one_time_keys_count (#10457)David Baker2021-07-221-4/+7
* | Add type hints to additional servlet functions (#10437)Patrick Cloke2021-07-211-1/+1
* | Add a return type to parse_string. (#10438)Patrick Cloke2021-07-214-24/+30
* | Switch to `chunk` events so we can auth via power_levels (MSC2716) (#10432)Eric Eastwood2021-07-211-4/+13
* | MSC3244 room capabilities implementation (#10283)Michael Telatynski2021-07-201-1/+7
* | [pyupgrade] `synapse/` (#10348)Jonathan de Jong2021-07-191-16/+9
* | Use inline type hints in `handlers/` and `rest/`. (#10382)Jonathan de Jong2021-07-163-12/+8
* | Add a module type for account validity (#9884)Brendan Abolivier2021-07-161-6/+1
* | Fix messages from multiple senders in historical chunk (MSC2716) (#10276)Eric Eastwood2021-07-131-7/+42
* | Add base starting insertion event when no chunk ID is provided (MSC2716) (#10...Eric Eastwood2021-07-081-23/+89
|/
* MSC2918 Refresh tokens implementation (#9450)Quentin Gliech2021-06-242-41/+218
* Re-introduce "Leave out optional keys from /sync" change (#10214)Andrew Morgan2021-06-231-23/+46
* Add endpoints for backfilling history (MSC2716) (#9247)Eric Eastwood2021-06-221-1/+287
* Always require users to re-authenticate for dangerous operations. (#10184)Patrick Cloke2021-06-162-0/+9
* Fix requestOpenIdToken response: integer expires_in (#10175)Lukas Lihotzki2021-06-161-1/+1
* Remove the experimental flag for knocking and use stable prefixes / endpoints...Patrick Cloke2021-06-151-4/+2
* Implement knock feature (#6739)Sorunome2021-06-093-21/+198
* Limit the number of in-flight /keys/query requests from a single device. (#10...Patrick Cloke2021-06-091-1/+4
* Correct type hints for parse_string(s)_from_args. (#10137)Patrick Cloke2021-06-082-6/+6