summary refs log tree commit diff
path: root/tests (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | Add not null constraint to column `full_user_id` of tables `profiles` and `us...Shay2023-05-162-0/+157
* | Fix subscriptable type usage in Python <3.9 (#15604)Eric Eastwood2023-05-161-1/+1
|/
* Revert "Fix subscriptable dict type"Eric Eastwood2023-05-151-1/+1
* Fix subscriptable dict typeEric Eastwood2023-05-151-1/+1
* Implement MSC3821 to update redaction rules (`third_party_invite.signed`) (#1...Patrick Cloke2023-05-151-1/+74
* Implement MSC3389 to protect relations from redaction. (#15565)Patrick Cloke2023-05-151-0/+90
* Remove `worker_replication_*` settings (#15491)Jason Little2023-05-115-10/+5
* HTTP Replication Client (#15470)Jason Little2023-05-091-0/+1
* Add config option to prevent media downloads from listed domains. (#15197)Travis Ralston2023-05-091-0/+139
* Check appservices for devices during a /user/devices query. (#15539)Patrick Cloke2023-05-051-1/+134
* Implement MSC4009 to widen the allowed Matrix ID grammar (#15536)Patrick Cloke2023-05-051-0/+13
* Factor out an `is_mine_server_name` method (#15542)Sean Quah2023-05-051-2/+14
* Move ThirdPartyEventRules into module_api/callbacks (#15535)Andrew Morgan2023-05-042-22/+38
* Merge branch 'release-v1.83' into developSean Quah2023-05-032-4/+4
|\
| * Revert "Reduce the size of the HTTP connection pool for non-pushers" (#15530) v1.83.0rc1Sean Quah2023-05-032-4/+4
* | Add config option to forget rooms automatically when users leave them (#15224)Sean Quah2023-05-031-0/+11
* | Remove references to supporting per-user flag for msc2654 (#15522)Shay2023-05-021-6/+2
* | Allow adding random delay to push (#15516)Erik Johnston2023-05-021-0/+37
|/
* Reduce the size of the HTTP connection pool for non-pushers. (#15514)Patrick Cloke2023-05-022-4/+4
* Initial implementation of MSC3981: recursive relations API (#15315)Patrick Cloke2023-05-021-0/+120
* Add an admin API endpoint to support per-user feature flags (#15344)Shay2023-04-281-0/+127
* Add support for claiming multiple OTKs at once. (#15468)Patrick Cloke2023-04-272-24/+19
* Add column `full_user_id` to tables `profiles` and `user_filters`. (#15458)Shay2023-04-266-44/+56
* Add unstable /keys/claim endpoint which always returns fallback keys. (#15462)Patrick Cloke2023-04-251-6/+235
* Finish type hints for federation client HTTP code. (#15465)Patrick Cloke2023-04-242-8/+8
* Remove legacy code of single user device resync api (#15418)Alok Kumar Singh2023-04-211-1/+3
* Modify StoreKeyFetcher to read from server_keys_json. (#15417)Patrick Cloke2023-04-204-48/+58
* Speedup tests by caching HomeServerConfig instances (#15284)Val Lorentz2023-04-181-2/+60
* Move Spam Checker callbacks to a dedicated file (#15453)Andrew Morgan2023-04-184-10/+22
* Delete pushers after calling on_logged_out module hook on device delete (#15410)Mathieu Velten2023-04-141-1/+50
* Convert async to normal tests in `TestSSOHandler` (#15433)Dirk Klimpel2023-04-141-4/+4
* Improve robustness when handling a perspective key response by deduplicating ...reivilibre2023-04-133-21/+17
* Implement MSC2174: move redacts to a content property. (#15395)Patrick Cloke2023-04-132-4/+47
* Throw if the appservice config list is the wrong type (#15425)Will Hunt2023-04-121-0/+40
* Implement MSC3989 to redact the origin field. (#15393)Patrick Cloke2023-04-051-0/+7
* Delete server-side backup keys when deactivating an account. (#15181)Shay2023-04-041-0/+157
* Call appservices on modern paths, falling back to legacy paths. (#15317)Patrick Cloke2023-04-031-2/+55
* Revert pruning of old devices (#15360)Erik Johnston2023-03-314-52/+3
* to_device updates could be dropped when consuming the replication stream (#15...Mathieu Velten2023-03-303-5/+93
* Speed up SQLite unit test CI (#15334)Erik Johnston2023-03-302-3/+36
* Implement MSC3984 to proxy /keys/query requests to appservices. (#15321)Patrick Cloke2023-03-301-1/+120
* Fix spinloop during partial state sync when a prev event is in backoff (#15351)Sean Quah2023-03-301-4/+9
* Add the ability to enable/disable registrations when in the OIDC flow (#14978)Warren Bailey2023-03-301-1/+16
* Fix registering a device on an account with lots of devices (#15348)Erik Johnston2023-03-291-0/+47
* Delete stale non-e2e devices for users, take 3 (#15183)Erik Johnston2023-03-293-3/+5
* Implement MSC3983 to proxy /keys/claim queries to appservices. (#15314)Patrick Cloke2023-03-282-1/+134
* Bump ruff from 0.0.252 to 0.0.259 (#15328)dependabot[bot]2023-03-282-3/+9
* Make cleaning up pushers depend on the device_id instead of the token_id (#15...Quentin Gliech2023-03-244-32/+28
* Reject mentions on the C-S API which are invalid. (#15311)Patrick Cloke2023-03-241-38/+56
* Use immutabledict instead of frozendict (#15113)David Robertson2023-03-225-41/+43
* Make `POST /_matrix/client/v3/rooms/{roomId}/report/{eventId}` endpoint retur...Andrew Morgan2023-03-211-0/+37
* Make `EventHandler.get_event` return `None` when the requested event is not f...Andrew Morgan2023-03-211-0/+5
* Fix error when sending message into deleted room. (#15235)Erik Johnston2023-03-211-0/+15
* Separate HTTP preview code and URL previewer. (#15269)Patrick Cloke2023-03-201-18/+16
* Add Synapse-Trace-Id to access-control-expose-headers header (#14974)Shay2023-03-201-0/+4
* Remove no-op send_command for Redis replication. (#15274)Patrick Cloke2023-03-161-63/+0
* Refresh remote profiles that have been marked as stale, in order to fill the ...reivilibre2023-03-161-2/+185
* Move Account Validity callbacks to a dedicated file (#15237)Andrew Morgan2023-03-161-3/+2
* Merge branch 'release-v1.79' into developDavid Robertson2023-03-134-15/+162
|\
| * Ensure fed-sender catchup does not block for full state (#15248)David Robertson2023-03-132-1/+117
| * Refactor `filter_events_for_server` (#15240)David Robertson2023-03-101-5/+35
| * Fix missing conditional for registering `on_remove_user_third_party_identifie...Andrew Morgan2023-03-101-9/+10
* | Pull in netaddr type hints. (#15231)Patrick Cloke2023-03-091-1/+1
* | Stabilize support for MSC3873: disambuguated event push keys. (#15190)Patrick Cloke2023-03-071-7/+3
* | Pass the Requester down to the HttpTransactionCache. (#15200)Quentin Gliech2023-03-071-13/+42
* | Stabilize support for MSC3966: event_property_contains push condition. (#15187)Patrick Cloke2023-03-072-18/+3
|/
* Stop applying edits to event contents (MSC3925). (#15193)Patrick Cloke2023-03-061-49/+10
* Stabilize support for MSC3758: event_property_is push condition (#15185)Patrick Cloke2023-03-062-20/+5
* Fix ICU tests on alpine / macOS. (#15177)65432023-03-031-0/+2
* Update intentional mentions (MSC3952) to depend on `exact_event_property_cont...Patrick Cloke2023-03-022-31/+4
* Implementation of MSC3967: Don't require UIA for initial upload of cross sign...Hugh Nimmo-Smith2023-03-021-0/+141
* Remove support for aggregating reactions (#15172)Richard van der Hoff2023-02-281-150/+28
* Merge branch 'master' into developH. Shay2023-02-281-0/+61
|\
| * Fix bug where 5s delays would occasionally happen. (#15150)Erik Johnston2023-02-241-0/+61
* | Fix a long-standing bug where an initial sync would not respond to changes to...reivilibre2023-02-281-0/+22
* | Do not accept pattern_type from user input in push rules. (#15088)Patrick Cloke2023-02-281-0/+27
* | Admin API endpoint to delete a reported event (#15116)Dirk Klimpel2023-02-281-2/+141
* | Add module API callbacks for adding and deleting local 3PID associations (#15044Andrew Morgan2023-02-272-4/+123
* | Refactor media modules. (#15146)Patrick Cloke2023-02-279-15/+15
* | Batch up storing state groups when creating new room (#14918)Shay2023-02-247-20/+161
* | Improve handling of non-ASCII characters in user directory search (#15143)Sean Quah2023-02-241-0/+133
* | Do not fail completely if oEmbed autodiscovery fails. (#15092)Patrick Cloke2023-02-231-3/+41
* | Fix a typo in MSC3873 config option. (#15138)Patrick Cloke2023-02-231-1/+1
* | Add information on uploaded media to user export command. (#15107)Dirk Klimpel2023-02-231-0/+29
* | Bump black from 22.12.0 to 23.1.0 (#15103)dependabot[bot]2023-02-2245-101/+24
* | Remove unused `room_alias` field from `/createRoom` response (#15093)David Robertson2023-02-224-11/+12
|/
* Fix a bug introduced in Synapse v1.74.0 where searching with colons when usin...reivilibre2023-02-202-1/+69
* Fix-up type hints in tests/server.py. (#15084)Patrick Cloke2023-02-177-127/+225
* Add account data to export command (#14969)Dirk Klimpel2023-02-171-0/+27
* Use mypy 1.0 (#15052)David Robertson2023-02-167-38/+65
* Update intentional mentions (MSC3952) to depend on `exact_event_match` (MSC37...Patrick Cloke2023-02-162-25/+16
* Add final type hint to tests.unittest. (#15072)Patrick Cloke2023-02-1453-317/+432
* Implement MSC3966: Add a push rule condition to search for a value in an arra...Patrick Cloke2023-02-141-3/+50
* Prevent clients from reporting nonexistent events. (#13779)reivilibre2023-02-141-0/+12
* Faster joins: don't stall when a user joins during a fast join (#14606)Mathieu Velten2023-02-101-20/+20
* Return read-only collections from `@cached` methods (#13755)Sean Quah2023-02-101-2/+2
* Support for MSC3758: exact_event_match push condition (#14964)Patrick Cloke2023-02-101-4/+143
* Add a class UnpersistedEventContext to allow for the batching up of storing s...Shay2023-02-097-14/+43
* Respond correctly to unknown methods on known endpoints (#14605)Patrick Cloke2023-02-091-3/+6
* Proper types for `tests.module_api` (#15031)David Robertson2023-02-092-53/+79
* Add more missing type hints to tests. (#15028)Patrick Cloke2023-02-0812-93/+123
* Add missing type hints to tests. (#15027)Patrick Cloke2023-02-086-58/+69
* MSC3873: Escape keys when flattening dicts. (#15004)Patrick Cloke2023-02-081-0/+8
* Typecheck tests.rest.media.v1.test_media_storage (#15008)David Robertson2023-02-071-18/+31
* Proper types for tests.test_terms_auth (#15007)David Robertson2023-02-071-6/+13
* Add tests for using _flatten_dict with an event. (#15002)Patrick Cloke2023-02-071-1/+62
* Properly typecheck types.http (#14988)David Robertson2023-02-0713-185/+289
* Add missing types to test_state. (#14985)Patrick Cloke2023-02-061-61/+137
* Type hints for tests.federation (#14991)David Robertson2023-02-068-91/+125
* Add missing type hints to tests.replication. (#14987)Patrick Cloke2023-02-0619-149/+189
* Type hints for tests.appservice (#14990)David Robertson2023-02-063-51/+100
* Properly typecheck tests.api (#14983)David Robertson2023-02-034-107/+134
* Implement MSC3958: suppress notifications from edits (#14960)Patrick Cloke2023-02-031-1/+41
* Properly typecheck tests.app (#14984David Robertson2023-02-033-14/+25
* Add a docstring & tests for _flatten_dict. (#14981)Patrick Cloke2023-02-031-1/+25
* Support the backwards compatibility features in MSC3952. (#14958)Patrick Cloke2023-02-032-58/+151
* Faster joins: Refactor handling of servers in room (#14954)Sean Quah2023-02-032-2/+2
* Reload the pyo3-log config when the Python logging config changes. (#14976)Patrick Cloke2023-02-031-0/+3
* Add helper to parse an enum from query args & use it. (#14956)Patrick Cloke2023-02-011-1/+4
* Attempt to delete more duplicate rows in receipts_linearized table. (#14915)Patrick Cloke2023-02-011-1/+3
* Add more user information to export-data command. (#14894)Dirk Klimpel2023-02-011-0/+60
* Make sqlite database migrations transactional again, part two (#14926)Sean Quah2023-01-311-0/+96
* Handle malformed values of `notification.room` in power level events (#14942)David Robertson2023-01-302-14/+111
* Implement MSC3952: Intentional mentions (#14823)Patrick Cloke2023-01-272-7/+147
* Add missing type hints in tests (#14879)Patrick Cloke2023-01-265-38/+69
* Fix type hints in typing edu unit tests (#14886)Andrew Morgan2023-01-263-42/+65
* Add missing type hints for tests.events. (#14904)Patrick Cloke2023-01-253-61/+85
* Fix type hints in knocking tests. (#14887)Andrew Morgan2023-01-252-6/+4
* Faster joins: omit partial rooms from eager syncs until the resync completes ...David Robertson2023-01-233-8/+10
* Skip processing stats for broken rooms. (#14873)Patrick Cloke2023-01-231-34/+54
* Fix type hints for Monthly Active Users tests (#14889)Andrew Morgan2023-01-221-6/+7
* Add type hints to `TestRatelimiter` (#14885)Andrew Morgan2023-01-211-15/+51
* Always notify replication when a stream advances (#14877)Erik Johnston2023-01-203-16/+14
* Faster joins: Avoid starting duplicate partial state syncs (#14844)Sean Quah2023-01-201-1/+111
* Wait for streams to catch up when processing HTTP replication. (#14820)Erik Johnston2023-01-182-15/+14
* Change default room version to 10. Implements MSC3904 (#14111)Catalan Lover2023-01-181-3/+9
* Stabilise serving partial join responses (#14839)David Robertson2023-01-171-2/+1
* Fix bug in `wait_for_stream_position` (#14856)Erik Johnston2023-01-171-0/+78
* Remove unnecessary reactor reference from `_PerHostRatelimiter` (#14842)Sean Quah2023-01-161-4/+4
* Also use stable name in SendJoinResponse struct (#14841)David Robertson2023-01-161-3/+3
* Use stable identifiers for faster joins (#14832)David Robertson2023-01-132-21/+58
* Fix stack overflow in `_PerHostRatelimiter` due to synchronous requests (#14812)Sean Quah2023-01-131-3/+42
* Re-enable some linting (#14821)Erik Johnston2023-01-121-3/+3
* Add `set_displayname` to the module API (#14629)Emelie Graven2023-01-111-0/+18
* Factor out common code in tests and fix comments. (#14819)Patrick Cloke2023-01-111-36/+49
* Fix-up type hints for tests.push module. (#14816)Patrick Cloke2023-01-114-57/+61
* Implement MSC3925: changes to bundling of edits (#14811)Richard van der Hoff2023-01-101-55/+130
* Unescape HTML entities in oEmbed titles. (#14781)Jeyachandran Rathnam2023-01-091-0/+10
* Disable sending confirmation email when 3pid is disabled #14682 (#14725)Jeyachandran Rathnam2023-01-091-25/+5
* Support RFC7636 PKCE in the OAuth 2.0 flow. (#14750)Patrick Cloke2023-01-042-8/+145
* Add missing type hints to tests. (#14687)Patrick Cloke2022-12-283-62/+90
* Add missing type hints to tests.config. (#14681)Patrick Cloke2022-12-1614-91/+102
* Add missing type hints to tests.handlers. (#14680)Patrick Cloke2022-12-1619-373/+524
* Allow selecting "prejoin" events by state keys (#14642)David Robertson2022-12-135-627/+803
* Move `StateFilter` to `synapse.types` (#14668)David Robertson2022-12-121-1/+1
* Revert the deletion of stale devices due to performance issues. (#14662)reivilibre2022-12-122-35/+2
* Add optional ICU support for user search (#14464)Brendan Abolivier2022-12-121-0/+43
* Require types in tests.storage. (#14646)Patrick Cloke2022-12-0933-330/+483
* Limit the number of devices we delete at once (#14649)Erik Johnston2022-12-091-0/+31
* Delete stale non-e2e devices for users, take 2 (#14595)Erik Johnston2022-12-092-2/+4
* Respond with proper error responses on unknown paths. (#14621)Patrick Cloke2022-12-084-5/+5
* Check the stream position before checking if the cache is empty. (#14639)Patrick Cloke2022-12-081-3/+4
* Reject receipt requests with invalid room or event IDs. (#14632)Nick Mills-Barrett2022-12-071-0/+76
* Fix a long-standing bug where the user directory would return 1 more row than...reivilibre2022-12-071-0/+6
* Faster remote room joins: unblock tasks waiting for full room state when the ...reivilibre2022-12-061-0/+65
* Improve logging and opentracing for to-device message handling (#14598)Richard van der Hoff2022-12-061-1/+6
* Better return type for `get_all_entities_changed` (#14604)Erik Johnston2022-12-051-8/+12
* Compare to the earliest known stream pos in the stream change cache. (#14435)Patrick Cloke2022-12-051-25/+13
* Add missing types to tests.util. (#14597)Patrick Cloke2022-12-0219-266/+357
* Add `push.enabled` option to disable push notification calculation (#14551)Will Hunt2022-12-011-2/+43
* Merge branch 'release-v1.73' into developDavid Robertson2022-12-012-4/+2
|\
| * Revert "POC delete stale non-e2e devices for users (#14038)" (#14582)David Robertson2022-11-292-4/+2
* | Modernize unit tests configuration settings for workers. (#14568)realtyem2022-12-0117-81/+122
* | Aggregate unread notif count query for badge count calculation (#14255)Nick Mills-Barrett2022-11-301-8/+39
* | Use servers list approx to send read receipts when in partial state (#14549)Mathieu Velten2022-11-301-0/+4
* | Stop using deprecated `keyIds` param on /key/v2/server (#14525)Richard van der Hoff2022-11-302-17/+2
|/
* POC delete stale non-e2e devices for users (#14038)Erik Johnston2022-11-292-2/+4
* Initial support for MSC3931: Room version push rule feature flags (#14520)Travis Ralston2022-11-281-0/+2
* Move MSC3030 `/timestamp_to_event` endpoint to stable v1 location (#14471)Eric Eastwood2022-11-281-6/+1
* Use `device_one_time_keys_count` to match MSC3202 (#14565)Andrew Ferrazzutti2022-11-282-5/+5
* Include thread information when sending receipts over federation. (#14466)Patrick Cloke2022-11-281-0/+77
* Add support for handling avatar with SSO login (#13917)Ashish Kumar2022-11-251-0/+145
* Implement message forward pagination from start when no from is given, fixes ...Benjamin Kampmann2022-11-241-0/+40
* Remove legacy Prometheus metrics names. They were deprecated in Synapse v1.69...reivilibre2022-11-241-3/+4
* Add missing type hints to test.util.caches (#14529)Patrick Cloke2022-11-225-61/+69
* Add a type hint for `get_device_handler()` and fix incorrect types. (#14055)Patrick Cloke2022-11-222-7/+17
* Track unconverted device list outbound pokes using a position instead (#14516)Sean Quah2022-11-221-2/+1
* Batch fetch bundled references (#14508)Patrick Cloke2022-11-221-2/+2
* Batch fetch bundled annotations (#14491)Patrick Cloke2022-11-221-2/+2
* Faster joins: filter out non local events when a room doesn't have its full s...Mathieu Velten2022-11-211-5/+5
* Fix /key/v2/server calls with URL-unsafe key IDs (#14490)David Robertson2022-11-181-0/+12
* Reintroduce #14376, with bugfix for monoliths (#14468)David Robertson2022-11-161-10/+152
* Fix an invalid comparison of `UserPresenceState` to `str` (#14393)Andrew Morgan2022-11-163-7/+44
* Remove redundant types from comments. (#14412)Patrick Cloke2022-11-165-26/+30
* Fix background updates failing to add unique indexes on receipts (#14453)Sean Quah2022-11-161-0/+209
* Include heroes in partial join responses' state (#14442)David Robertson2022-11-151-4/+7
* Add an Admin API endpoint for looking up users based on 3PID (#14405)Ashish Kumar2022-11-111-13/+94
* Merge/remove `Slaved*` stores into `WorkerStores` (#14375)Nick Mills-Barrett2022-11-111-3/+3
* Drop support for Postgres 10 in full text search code. (#14397)Patrick Cloke2022-11-091-52/+17
* Correctly create power level event during initial room creation (#14361)Shay2022-11-071-2/+2
* Do not reject `/sync` requests with unrecognised filter fields (#14369)Sean Quah2022-11-071-2/+19
* Fix /refresh endpoint version (#14364)Tulir Asokan2022-11-041-8/+8
* Implement MSC3912: Relation-based redactions (#14260)Brendan Abolivier2022-11-032-4/+306
* Run trial tests against Python 3.11 (#13812)David Robertson2022-11-011-0/+11
* Fix dehydrated device REST checks (#14336)David Robertson2022-10-311-0/+34
* Support OIDC backchannel logouts (#11414)Quentin Gliech2022-10-314-30/+448
* Avoid incrementing bg process utime/stime counters by negative durations (#14...David Robertson2022-10-313-2/+27
* Merge branch 'master' into developOlivier Wilkinson (reivilibre)2022-10-282-6/+56
|\
| * Fix room creation being rate limited too aggressively since Synapse v1.69.0. ...reivilibre2022-10-281-3/+51
| * Fix incorrectly sending authentication tokens to application service as heade...David Robertson2022-10-261-3/+5
* | Check appservice user interest against the local users instead of all users (...Eric Eastwood2022-10-272-10/+162
* | Fix tests for change in PostgreSQL 14 behavior change. (#14310)Patrick Cloke2022-10-271-4/+12
* | Refactor MSC3030 `/timestamp_to_event` to move away from our snowflake pull f...Eric Eastwood2022-10-261-4/+8
* | fix broken avatar checks when server_name contains a port (#13927)Ashish Kumar2022-10-261-0/+49
* | Save login tokens in database (#13844)Quentin Gliech2022-10-262-85/+78
* | Unified search query syntax using the full-text search capabilities of the un...James Salter2022-10-251-0/+213
* | Merge branch 'release-v1.70' into developOlivier Wilkinson (reivilibre)2022-10-251-33/+77
|\|
| * Properly update the threads table when thread events are redacted. (#14248)Patrick Cloke2022-10-211-33/+77
* | Refactor OIDC tests to better mimic an actual OIDC provider. (#13910)Quentin Gliech2022-10-257-455/+734
* | Implementation for MSC3664: Pushrules for relations (#11804)DeepBlueV7.X2022-10-251-1/+214
* | Remove unused `@lru_cache` decorator (#13595)Nick Mills-Barrett2022-10-251-36/+4
* | Add initial power level event to batch of bulk persisted events when creating...Shay2022-10-212-2/+2
* | Show erasure status when listing users in the Admin API (#14205)Tadeusz SoĊ›nierz2022-10-211-1/+34
* | Use servlets for /key/ endpoints. (#14229)Patrick Cloke2022-10-202-3/+3
* | Bump flake8-bugbear from 21.3.2 to 22.9.23 (#14042)dependabot[bot]2022-10-192-5/+4
|/
* Fix MSC3030 `/timestamp_to_event` returning `outliers` that it has no idea wh...Eric Eastwood2022-10-181-0/+65
* Implementation of HTTP 307 response for MSC3886 POST endpoint (#14018)Hugh Nimmo-Smith2022-10-184-28/+120
* Avoid checking the event cache when backfilling events (#14164)Andrew Morgan2022-10-181-1/+104
* Remove `_get_events_cache` check optimisation from `_have_seen_events_dict` (...Andrew Morgan2022-10-181-12/+0
* Support filtering the /messages API by relation type (MSC3874). (#14148)Patrick Cloke2022-10-174-172/+155
* Stop getting missing `prev_events` after we already know their signature is i...Eric Eastwood2022-10-152-2/+263
* Accept threaded receipts for events related to the root event. (#14174)Patrick Cloke2022-10-141-0/+111
* Do not allow a None-limit on PaginationConfig. (#14146)Patrick Cloke2022-10-141-1/+2
* Stabilize the threads API. (#14175)Patrick Cloke2022-10-141-18/+29
* Add an API for listing threads in a room. (#13394)Patrick Cloke2022-10-131-0/+151
* Remove the experimental implementation of MSC3772. (#14094)Patrick Cloke2022-10-121-74/+2
* Fix a bug where redactions were not being sent over federation if we did not ...Shay2022-10-111-7/+11
* Making parse_server_name more consistent (#14007)Abdullah Osama2022-10-111-0/+3
* Indicate what endpoint came back with a JSON response we were unable to parse...Eric Eastwood2022-10-071-1/+3
* Be more lenient in the oEmbed response parsing. (#14089)Patrick Cloke2022-10-071-1/+102
* Always close _all_ `ijson` coroutines, even if doing so raises Exceptions (#1...David Robertson2022-10-061-0/+37
* Merge tag 'v1.69.0rc2' into developSean Quah2022-10-061-0/+74
|\
| * Fix sending events into rooms with non-integer power levels (#14073)David Robertson2022-10-061-0/+74
* | Fix handling of public rooms filter with a network tuple. (#14053)Patrick Cloke2022-10-051-10/+31
* | Use threaded receipts when fetching events for push. (#13878)Patrick Cloke2022-10-041-18/+39
* | Recursively fetch the thread for receipts & notifications. (#13824)Patrick Cloke2022-10-041-0/+100
* | Mark events as read using threaded read receipts from MSC3771. (#13877)Patrick Cloke2022-10-041-1/+188
* | Track notification counts per thread (implement MSC3773). (#13776)Patrick Cloke2022-10-042-6/+180
* | Send the appservice access token as a header. (#13996)Patrick Cloke2022-10-041-2/+6
|/
* Track when the pulled event signature fails (#13815)Eric Eastwood2022-10-032-2/+77