summary refs log tree commit diff
path: root/synapse/storage (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesAndrew Morgan2022-01-1927-333/+491
|\
| * Include whether the requesting user has participated in a thread. (#11577)Patrick Cloke2022-01-182-11/+62
| * Remove `log_function` and its uses (#11761)Richard van der Hoff2022-01-181-2/+0
| * Make pagination of rooms in admin api stable (#11737)Daniel Sonck2022-01-171-9/+9
| * Merge branch 'release-v1.50' into developOlivier Wilkinson (reivilibre)2022-01-141-17/+85
| |\
| * | Replace uses of simple_insert_many with simple_insert_many_values. (#11742)Patrick Cloke2022-01-1315-251/+224
| * | Use auto_attribs/native type hints for attrs classes. (#11692)Patrick Cloke2022-01-1312-61/+61
| * | Fix docstring on `add_account_data_for_user`. (#11716)reivilibre2022-01-101-1/+1
| * | Bundle aggregations outside of the serialization method. (#11612)Patrick Cloke2022-01-071-3/+125
| * | Fix get federation status of destination if no error occured (#11593)Dirk Klimpel2022-01-051-0/+11
| * | Run `pyupgrade --py37-plus --keep-percent-format` on Synapse (#11685)Shay2022-01-051-1/+0
| * | Cache empty responses from `/user/devices` (#11587)David Robertson2022-01-051-2/+6
* | | Merge branch 'release-v1.50' into matrix-org-hotfixesOlivier Wilkinson (reivilibre)2022-01-141-17/+85
|\ \ \ | | |/ | |/|
| * | Fix a bug introduced in Synapse v1.50.0rc1 whereby outbound federation could ...reivilibre2022-01-131-16/+78
| * | Fix a bug introduced in Synapse v1.0.0 whereby device list updates would not ...reivilibre2022-01-121-1/+7
| |/
* | Updates to opentracing hackeryRichard van der Hoff2022-01-071-12/+37
* | Wrap connection.commit with OpenTracingRichard van der Hoff2022-01-071-1/+14
* | Merge branch 'release-v1.50' into matrix-org-hotfixesOlivier Wilkinson (reivilibre)2022-01-0543-778/+1521
|\|
| * Remove redundant `get_current_events_token` (#11643)Richard van der Hoff2022-01-043-25/+17
| * Better error messages from `get_create_event_for_room` (#11638)Richard van der Hoff2022-01-041-1/+5
| * Convert all namedtuples to attrs. (#11665)Patrick Cloke2021-12-306-37/+54
| * Add type hints to `synapse/storage/databases/main/events_bg_updates.py` (#11654)Dirk Klimpel2021-12-301-29/+40
| * Improve type hints in storage classes. (#11652)Dirk Klimpel2021-12-299-34/+43
| * Add type hints to `synapse/storage/databases/main/stats.py` (#11653)Dirk Klimpel2021-12-291-41/+53
| * Add type hints to event_push_actions. (#11594)Patrick Cloke2021-12-211-91/+158
| * Add type hints to `synapse/storage/databases/main/transactions.py` (#11589)Dirk Klimpel2021-12-161-24/+25
| * Add type hints to `synapse/storage/databases/main/room.py` (#11575)Sean Quah2021-12-152-74/+100
| * Require Collections as the parameters for simple_* methods. (#11580)Patrick Cloke2021-12-152-40/+11
| * Add experimental support for MSC3202: allowing application services to masque...reivilibre2021-12-151-0/+20
| * Add type hints to `synapse/storage/databases/main/e2e_room_keys.py` (#11549)Sean Quah2021-12-141-70/+167
| * Remove redundant `COALESCE()`s around `COUNT()`s in database queries (#11570)Sean Quah2021-12-147-20/+18
| * checks for generators in database functions (#11564)Richard van der Hoff2021-12-132-7/+48
| * Type hint the constructors of the data store classes (#11555)Sean Quah2021-12-1328-75/+308
| * Add type hints to `synapse/storage/databases/main/end_to_end_keys.py` (#11551)Sean Quah2021-12-132-68/+146
| * Add type hints to `synapse/storage/databases/main/account_data.py` (#11546)Sean Quah2021-12-132-32/+83
| * Make `get_device` return None if the device doesn't exist rather than raising...reivilibre2021-12-131-4/+6
| * skip some dict munging in event persistence (#11560)Richard van der Hoff2021-12-102-60/+113
| * Stop populating `state_events.prev_state` (#11558)Richard van der Hoff2021-12-102-5/+4
| * Ensure emails are canonicalized before fetching associated user. (#11547)Patrick Cloke2021-12-102-2/+4
| * Do not allow cross-room relations, per MSC2674. (#11516)Patrick Cloke2021-12-092-12/+32
| * Add a constant for receipt types (m.read). (#11531)Patrick Cloke2021-12-081-33/+68
| * Improve log messages for stream ids (#11536)Richard van der Hoff2021-12-082-4/+6
| * Send and handle cross-signing messages using the stable prefix. (#10520)Hubert Chathi2021-12-081-1/+3
* | Merge branch 'release-v1.49' into matrix-org-hotfixesSean Quah2021-12-0719-261/+1012
|\|
| * Save the OIDC session ID (sid) with the device on login (#11482)Quentin Gliech2021-12-062-1/+76
| * Add admin API to get some information about federation status (#11407)Dirk Klimpel2021-12-061-0/+70
| * Disambiguate queries on `state_key` (#11497)Richard van der Hoff2021-12-026-16/+20
| * Comments on the /sync tentacles (#11494)David Robertson2021-12-021-4/+11
| * Add type annotations to `tests.storage.test_appservice`. (#11488)reivilibre2021-12-021-3/+3
| * Add MSC3030 experimental client and federation API endpoints to get the close...Eric Eastwood2021-12-021-0/+195
| * Improved push typing (#11409)Marcus2021-11-301-2/+17
| * Refactor `backfilled` into specific behavior function arguments (`_persist_ev...Eric Eastwood2021-11-292-21/+56
| * Make background updates controllable via a plugin (#11306)Erik Johnston2021-11-291-23/+169
| * Add type hints to `synapse/storage/databases/main/events_worker.py` (#11411)Sean Quah2021-11-265-148/+230
| * Support expiry of refresh tokens and expiry of the overall session when refre...reivilibre2021-11-262-2/+54
| * Track ongoing event fetches correctly (again) (#11376)Sean Quah2021-11-261-42/+112
* | Merge branch 'develop' into matrix-org-hotfixesBrendan Abolivier2021-11-2530-424/+753
|\|
| * Improve performance of `remove_{hidden,deleted}_devices_from_device_inbox` (#...Brendan Abolivier2021-11-252-146/+81
| * Lower minumum batch size to 1 for background updates (#11422)Brendan Abolivier2021-11-241-1/+1
| * Add missing type hints to config base classes (#11377)Patrick Cloke2021-11-231-1/+2
| * Remove code invalidated by deprecated config flag 'trust_identity_servers_for...Shay2021-11-231-32/+3
| * Store arbitrary relations from events. (#11391)Patrick Cloke2021-11-223-44/+75
| * Add an admin API to run background jobs. (#11352)Dirk Klimpel2021-11-191-0/+2
| * Keep fallback key marked as used if it's re-uploaded (#11382)Hubert Chathi2021-11-191-11/+40
| * Add dedicated admin API for blocking a room (#11324)Dirk Klimpel2021-11-181-0/+32
| * Use auto_attribs for RefreshTokenLookupResult (#11386)reivilibre2021-11-181-7/+7
| * Do not allow MSC3440 threads to fork threads (#11161)Patrick Cloke2021-11-181-2/+65
| * Add type annotations to `synapse.metrics` (#10847)Sean Quah2021-11-171-3/+3
| * Merge tag 'v1.47.0rc3' into developDavid Robertson2021-11-162-19/+35
| |\
| * | Add ability to un-shadow-ban via the admin API. (#11347)Patrick Cloke2021-11-161-1/+1
| * | Database storage profile passes mypy (#11342)David Robertson2021-11-151-4/+8
| * | Get directory db file to pass mypy (#11339)David Robertson2021-11-152-6/+7
| * | Remove unused tables `room_stats_historical` and `user_stats_historical` (#11...Shay2021-11-122-1/+23
| * | Annotations for state_deltas.py (#11316)David Robertson2021-11-121-3/+13
| * | Test room alias deletion (#11327)David Robertson2021-11-121-2/+5
| * | Change display names/avatar URLs to None if they contain null bytes before st...Shay2021-11-121-4/+6
| * | Add type hints to media repository storage module (#11311)Patrick Cloke2021-11-121-57/+84
| * | Attempt to annotate events_forward_extremities (#11314)David Robertson2021-11-122-7/+16
| * | Annotations for user_erasure_store (#11313)David Robertson2021-11-111-4/+5
| * | Get db signatures file to pass mypy (#11312)David Robertson2021-11-111-2/+2
| * | Correct type hint for room_batch.py (#11310)David Robertson2021-11-111-10/+8
| * | Move sql file for `remove_deleted_devices_from_device_inbox` into v65 (#11303)Dirk Klimpel2021-11-111-1/+1
| * | Add type hints to some storage classes (#11307)Patrick Cloke2021-11-117-47/+115
| * | Clarifications and small fixes to to-device related code (#11247)Andrew Morgan2021-11-092-7/+24
| * | Allow admins to proactively block rooms (#11228)David Robertson2021-11-091-1/+6
| * | Support filtering by relations per MSC3440 (#11236)Patrick Cloke2021-11-092-23/+121
* | | Merge branch 'release-v1.47' of github.com:matrix-org/synapse into matrix-org...Andrew Morgan2021-11-162-19/+35
|\ \ \ | | |/ | |/|
| * | Rename `remove_deleted_devices_from_device_inbox` to ensure it is always run ...Andrew Morgan2021-11-161-1/+13
| * | Run _upgrade_existing_database on workers if at current schema_version (#11346)Andrew Morgan2021-11-151-18/+22
* | | Merge branch 'release-v1.47' into matrix-org-hotfixesAndrew Morgan2021-11-151-1/+1
|\| |
| * | Move sql file for `remove_deleted_devices_from_device_inbox` into v65 (#11303)Dirk Klimpel2021-11-151-1/+1
| |/
* | Merge branch 'release-v1.47' into matrix-org-hotfixesOlivier Wilkinson (reivilibre)2021-11-0918-117/+464
|\|
| * Rename to more clear `get_insertion_event_id_by_batch_id` (MSC2716) (#11244)Eric Eastwood2021-11-081-1/+1
| * Add some background update admin APIs (#11263)Erik Johnston2021-11-082-18/+51
| * Fix typo in comment from #11255. (#11276)Patrick Cloke2021-11-081-1/+1
| * Handle federation inbound instances being killed more gracefully (#11262)Erik Johnston2021-11-081-10/+21
| * Fix rolling back when using workers (#11255)Erik Johnston2021-11-051-11/+12
| * Track ongoing event fetches correctly in the presence of failure (#11240)Sean Quah2021-11-041-22/+34
| * Add index to `local_group_updates.stream_id` (#11231)Erik Johnston2021-11-022-1/+34
| * Add remaining type hints to `synapse.events`. (#11098)Patrick Cloke2021-11-022-6/+9
| * Delete messages for hidden devices from `device_inbox` (#11199)Dirk Klimpel2021-11-022-0/+111
| * Fix providing a `RoomStreamToken` instance to `_notify_app_services_ephemeral...Andrew Morgan2021-11-022-3/+3
| * Add search by room ID and room alias to List Room admin API (#11099)Dirk Klimpel2021-11-021-11/+18
| * Add metrics to the threadpools (#11178)Erik Johnston2021-11-011-1/+6
| * Stop synapse from saving messages in device_inbox for hidden devices. (#10097)JohannesKleine2021-11-011-2/+6
| * Fix comments referencing v1.46.0 from PR #10969. (#11212)Dirk Klimpel2021-10-292-2/+2
| * Additional type hints for relations database class. (#11205)Patrick Cloke2021-10-281-15/+23
| * Annotate `log_function` decorator (#10943)reivilibre2021-10-271-1/+1
| * Delete messages from `device_inbox` table when deleting device (#10969)Dirk Klimpel2021-10-273-15/+134
| * Fix thread BG update to not seq scan event_json (#11192)Erik Johnston2021-10-271-1/+1
* | Don't seqscan event_json due to relates_to_idErik Johnston2021-10-271-1/+1
* | Merge branch 'release-v1.46' of github.com:matrix-org/synapse into matrix-org...Sean Quah2021-10-2632-218/+736
|\|
| * Add a background update for updating MSC3440 relation threads. (#11181)Patrick Cloke2021-10-262-2/+101
| * Enable changing user type via users admin API (#11174)Jason Robinson2021-10-261-0/+18
| * Fix module API's `get_user_ip_and_agents` function when run on workers (#11112)Sean Quah2021-10-251-39/+85
| * Add type hints for most `HomeServer` parameters (#11095)Sean Quah2021-10-2222-59/+148
| * Add a thread relation type per MSC3440. (#11088)Patrick Cloke2021-10-212-1/+62
| * Fix setting a user's external_id via the admin API returns 500 and deletes us...Dirk Klimpel2021-10-211-5/+90
| * Merge branch 'master' into developSean Quah2021-10-201-24/+0
| |\
| * | Add missing type hints to event fetching. (#11121)Patrick Cloke2021-10-191-61/+81
| * | Add missing type hints to synapse.api. (#11109)Patrick Cloke2021-10-181-4/+4
| * | `_run_push_actions_and_persist_event`: handle no min_depth (#11014)Richard van der Hoff2021-10-181-1/+1
| * | Move experimental & retention config out of the server module. (#11070)Patrick Cloke2021-10-151-4/+4
| * | Resolve and share `state_groups` for all historical events in batch (MSC2716)...Eric Eastwood2021-10-134-5/+43
| * | Merge remote-tracking branch 'origin/release-v1.45' into developDavid Robertson2021-10-131-2/+22
| |\ \
| * | | Port the Password Auth Providers module interface to the new generic interfac...Azrenbeth2021-10-131-0/+2
| * | | Merge remote-tracking branch 'origin/release-v1.45' into developErik Johnston2021-10-121-15/+67
| |\ \ \
| * | | | Add type hints to `synapse.storage.databases.main.client_ips` (#10972)Sean Quah2021-10-121-40/+100
| * | | | Fix inconsistent behavior of `get_last_client_by_ip` (#10970)Sean Quah2021-10-121-4/+9
| * | | | Add an approximate difference method to StateFilters (#10825)reivilibre2021-10-121-1/+171
* | | | | Merge branch 'release-v1.45' of github.com:matrix-org/synapse into matrix-org...Sean Quah2021-10-201-24/+0
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Revert change to counting of deactivated users towards the monthly active use...Sean Quah2021-10-201-24/+0
| | |_|/ | |/| |
* | | | Merge branch 'release-v1.45' of github.com:matrix-org/synapse into matrix-org...David Robertson2021-10-133-7/+202
|\| | |
| * | | Stop user directory from failing if it encounters users not in the `users` ta...David Robertson2021-10-133-7/+202
| | |/ | |/|
* | | Merge remote-tracking branch 'origin/release-v1.45' into matrix-org-hotfixesErik Johnston2021-10-121-15/+67
|\| |
| * | Fix race in `MultiWriterIdGenerator` (#11045)Erik Johnston2021-10-121-15/+67
| |/
* | Merge branch 'release-v1.45' into matrix-org-hotfixesBrendan Abolivier2021-10-1216-146/+237
|\|
| * disallow-untyped-defs for synapse.push (#11023)David Robertson2021-10-111-2/+2
| * Annotate synapse.storage.util (#10892)David Robertson2021-10-084-60/+108
| * Relax `ignore-missing-imports` for modules that have stubs now and update myp...David Robertson2021-10-081-0/+4
| * Require direct references to configuration variables. (#10985)Patrick Cloke2021-10-062-2/+6
| * Fix potential leak of per-room profiles when the user dir is rebuilt. (#10981)David Robertson2021-10-051-13/+20
| * Fix logic flaw preventing tracking of MSC2716 events in existing room version...Eric Eastwood2021-10-051-6/+4
| * Add functionality to remove deactivated users from the monthly_active_users t...Hillery Shay2021-10-041-0/+24
| * Merge tag 'v1.44.0rc3' into developBrendan Abolivier2021-10-041-2/+2
| |\
| * | Consistently exclude from user_directory (#10960)David Robertson2021-10-041-13/+33
| * | Use direct references for configuration variables (part 7). (#10959)Patrick Cloke2021-10-041-1/+1
| * | Add type hints to filtering classes. (#10958)Patrick Cloke2021-10-011-2/+6
| * | Refactor user directory tests (#10935)David Robertson2021-09-301-1/+1
| * | Use direct references for configuration variables (part 6). (#10916)Patrick Cloke2021-09-298-19/+21
| * | Ensure `(room_id, next_batch_id)` is unique to avoid cross-talk/conflicts bet...Eric Eastwood2021-09-281-2/+4
| * | Drop backwards-compatibility support for "outlier" (#10903)Richard van der Hoff2021-09-282-25/+3
* | | Merge branch 'release-v1.44' into matrix-org-hotfixesBrendan Abolivier2021-10-041-2/+2
|\ \ \ | | |/ | |/|
| * | Fix error in `get_user_ip_and_agents` when fetching from the database (#10968)Sean Quah2021-10-011-2/+2
| |/
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2021-09-2818-79/+183
|\|
| * Document changes to schema version 61 - 64 (#10917)Eric Eastwood2021-09-241-0/+11
| * Use direct references for configuration variables (part 5). (#10897)Patrick Cloke2021-09-243-4/+4
| * Improve typing in user_directory files (#10891)David Robertson2021-09-241-35/+89
| * In `_purge_history_txn`, ensure that txn.fetchall has elements before accessi...Kokokokoka2021-09-241-9/+13
| * Use direct references for configuration variables (part 4). (#10893)Patrick Cloke2021-09-231-1/+1
| * Use direct references for some configuration variables (part 3) (#10885)Patrick Cloke2021-09-235-5/+5
| * Remove unnecessary parentheses around tuples returned from methods (#10889)Andrew Morgan2021-09-235-8/+8
| * Treat "\u0000" as "\u0020" for the purposes of message search (message indexi...Hillery Shay2021-09-221-9/+25
| * Fix invalidating OTK count cache after claim (#10875)Tulir Asokan2021-09-221-0/+4
| * Fix /initialSync error due to unhashable `RoomStreamToken` (#10827)Sean Quah2021-09-221-1/+3
| * Opt out of cache expiry for `get_users_who_share_room_with_user` (#10826)David Robertson2021-09-221-3/+8
| * Extend ModuleApi with the methods we'll need to reject spam based on …IP - ...David Teller2021-09-221-7/+20
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesDavid Robertson2021-09-2219-167/+339
|\|
| * Rename MSC2716 things from `chunk` to `batch` to match `/batch_send` endpoint...Eric Eastwood2021-09-216-42/+102
| * Add type hints for event streams. (#10856)Patrick Cloke2021-09-211-3/+3
| * Always add local users to the user directory (#10796)David Robertson2021-09-211-17/+10
| * Fix remove_stale_pushers job on SQLite. (#10843)reivilibre2021-09-208-23/+26
| * Add type hints to state database module. (#10823)Patrick Cloke2021-09-153-70/+129
| * Verify `?chunk_id` actually corresponds to an insertion event that exists (MS...Eric Eastwood2021-09-152-0/+38
| * Make StateFilter frozen so we can hash it (#10816)reivilibre2021-09-141-13/+32
| * Name the type of token in "Invalid token" messages (#10815)David Robertson2021-09-141-2/+2
* | Merge remote-tracking branch 'origin/dmr/cache-eviction-hack' into matrix-org...Erik Johnston2021-09-161-3/+8
|\ \
| * | Don't expire `get_users_who_share_room` & friendsDavid Robertson2021-09-151-3/+8
| |/
* | Merge branch 'release-v1.43' of github.com:matrix-org/synapse into matrix-org...Andrew Morgan2021-09-1418-27/+32
|\|
| * Use direct references for some configuration variables (#10798)Patrick Cloke2021-09-1318-23/+23
| * Add types to synapse.util. (#10601)reivilibre2021-09-101-0/+1
| * Easy refactors of the user directory (#10789)David Robertson2021-09-102-4/+8
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2021-09-109-78/+285
|\|
| * Don't needlessly batch in `add_event_to_cache` (#10784)Erik Johnston2021-09-101-27/+24
| * Skip handling of push actions for outlier events (#10780)Erik Johnston2021-09-081-4/+17
| * Add a constant for m.federate. (#10775)Patrick Cloke2021-09-081-2/+2
| * Allow `room_alias_name` parameter to be handled by /createRoom calls on worke...Andrew Morgan2021-09-061-2/+2
| * Speed up persisting redacted events (#10756)Erik Johnston2021-09-061-11/+11
| * Allow room creator to send MSC2716 related events in existing room versions (...Eric Eastwood2021-09-041-5/+27
| * Speed up MultiWriterIdGenerator when lots of IDs are in flight. (#10755)Erik Johnston2021-09-031-2/+3
| * Add a partial index to `presence_stream` to speed up startups (#10748)Sean2021-09-032-1/+40
| * Use `execute_values` more in PostgreSQL (#10754)Erik Johnston2021-09-031-19/+42
| * Fix bug with reusing 'txn' when persisting event. (#10743)Erik Johnston2021-09-031-1/+7
| * Populate `rooms.creator` field for easy lookup (#10697)Eric Eastwood2021-09-012-4/+110
* | Merge branch 'release-v1.42' of github.com:matrix-org/synapse into matrix-org...Andrew Morgan2021-09-012-1/+2
|\|
| * Fix iteration in _remove_deleted_email_pushers background job. (#10734)Andrew Morgan2021-09-011-1/+2
| * Move the sessions delta to the latest schema version. (#10725)Patrick Cloke2021-08-311-0/+0
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesOlivier Wilkinson (reivilibre)2021-08-3114-33/+730
|\|
| * Fix perf of fetching the same events many times. (#10703)Erik Johnston2021-08-271-6/+23
| * Make `backfill` and `get_missing_events` use the same codepath (#10645)Richard van der Hoff2021-08-261-0/+1
| * Remove pushers when deleting 3pid from account (#10581)Azrenbeth2021-08-262-0/+92
| * Make a note to leave a summary when one is bumping the schema version (#10621)Andrew Morgan2021-08-251-0/+2
| * Persist room hierarchy pagination sessions to the database. (#10613)Patrick Cloke2021-08-243-0/+170
| * Implement MSC3231: Token authenticated registration (#10142)Callum Brown2021-08-213-0/+382
| * Do not include rooms with an unknown room version in a sync response. (#10644)Patrick Cloke2021-08-192-3/+6
| * Remove not needed database updates in modify user admin API (#10627)Dirk Klimpel2021-08-191-7/+18
| * Merge branch 'release-v1.41' into developErik Johnston2021-08-183-204/+68
| |\
| * | Fix weakref_slot parameter for room member storage attrs. (#10642)Patrick Cloke2021-08-181-4/+4
| * | Convert room member storage tuples to attrs. (#10629)Patrick Cloke2021-08-183-17/+36
* | | Remove some redundant patches from the hotfixes branchRichard van der Hoff2021-08-261-3/+2
* | | Merge branch 'release-v1.41' of github.com:matrix-org/synapse into matrix-org...Andrew Morgan2021-08-181-34/+34
|\ \ \ | | |/ | |/|
| * | Allow /createRoom to be run on workers (#10564)Andrew Morgan2021-08-171-34/+34
* | | Merge branch 'release-v1.41' into matrix-org-hotfixesAndrew Morgan2021-08-1712-317/+481
|\| |
| * | Remove the unused public_room_list_stream (#10565)Andrew Morgan2021-08-173-181/+45
| |/
| * Allow to edit `external_ids` by Edit User admin API (#10598)Dirk Klimpel2021-08-171-0/+22
| * update links to schema doc (#10620)Richard van der Hoff2021-08-172-3/+3
| * Add support for MSC2716 marker events (#10498)Eric Eastwood2021-08-045-28/+150
| * Improve event caching code (#10119)Erik Johnston2021-08-042-43/+107
| * Fix `could not serialize access` errors for `claim_e2e_one_time_keys` (#10504)Erik Johnston2021-08-041-62/+126
| * Add `get_userinfo_by_id` method to `ModuleApi` (#9581)Jason Robinson2021-08-041-1/+29
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesOlivier Wilkinson (reivilibre)2021-08-0315-148/+458
|\|
| * Prune inbound federation queues if they get too long (#10390)Erik Johnston2021-08-021-2/+102
| * Allow setting transaction limit for db connections (#10440)Toni Spets2021-08-021-0/+21
| * Generics for `ObservableDeferred` (#10491)Richard van der Hoff2021-07-281-1/+3
| * Make historical events discoverable from backfill for servers without any scr...Eric Eastwood2021-07-284-20/+258
| * Merge tag 'v1.39.0rc3' into developErik Johnston2021-07-281-1/+8
| |\
| * | Fix `oldest_pdu_in_federation_staging` (#10455)Erik Johnston2021-07-271-2/+5
| * | Add type hints to state handler. (#10482)Patrick Cloke2021-07-262-8/+13
| * | Add `creation_ts` to list users admin API (#10448)Dirk Klimpel2021-07-222-12/+9
| * | Replace `or_ignore` in `simple_insert` with `simple_upsert` (#10442)Erik Johnston2021-07-225-99/+43
| * | 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-213-3/+3
* | | Merge branch 'release-v1.39' of github.com:matrix-org/synapse into matrix-org...Andrew Morgan2021-07-282-2/+13
|\ \ \ | | |/ | |/|
| * | Always communicate device OTK counts to clients (#10485)Andrew Morgan2021-07-271-1/+8
| |/
| * Fix dropping locks on shut down (#10433)Erik Johnston2021-07-201-1/+5
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesAndrew Morgan2021-07-207-11/+138
|\|
| * Add a new version of the R30 phone-home metric, which removes a false impress...reivilibre2021-07-191-0/+129
| * [pyupgrade] `synapse/` (#10348)Jonathan de Jong2021-07-195-7/+9
| * Remove unused `events_by_room` (#10421)Eric Eastwood2021-07-191-4/+0
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2021-07-1629-404/+359
|\|
| * Use inline type hints in `http/federation/`, `storage/` and `util/` (#10381)Jonathan de Jong2021-07-1520-96/+86
| * Reduce likelihood of Postgres table scanning `state_groups_state`. (#10359)Erik Johnston2021-07-151-0/+34
| * Show all joinable rooms in the spaces summary. (#10298)Patrick Cloke2021-07-131-2/+11
| * Fix federation inbound age metric. (#10355)Erik Johnston2021-07-131-1/+3
| * Replace `room_depth.min_depth` with a BIGINT (#10289)Richard van der Hoff2021-07-123-7/+185
| * Fix the user directory becoming broken (and noisy errors being logged) when k...reivilibre2021-07-091-2/+6
| * Switch `application_services_txns.txn_id` to BIGINT (#10349)Richard van der Hoff2021-07-091-0/+23
| * Merge tag 'v1.38.0rc2' into developErik Johnston2021-07-091-2/+13
| |\
| * | Upsert redactions in case they already exists (#10343)Andreas Rammhold2021-07-092-2/+3
| * | Remove functionality associated with unused historical stats tables (#9721)Cristina2021-07-083-292/+6