summary refs log tree commit diff
path: root/synapse/storage (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Delete current state when server leaves a room (#6792)Erik Johnston2020-01-292-75/+197
| | | | | | | | | | | | | | | | | | Otherwise its just stale data, which may get deleted later anyway so can't be relied on. It's also a bit of a shotgun if we're trying to get the current state of a room we're not in.
* | | Detect unknown remote devices and mark cache as stale (#6776)Andrew Morgan2020-03-232-5/+49
|\| | | | | | | | | | | | | | * commit 'e17a11066': Detect unknown remote devices and mark cache as stale (#6776)
| * | Detect unknown remote devices and mark cache as stale (#6776)Erik Johnston2020-01-282-5/+49
| | | | | | | | | | | | We just mark the fact that the cache may be stale in the database for now.
* | | Warn if postgres database has non-C locale. (#6734)Andrew Morgan2020-03-233-0/+52
|\| | | | | | | | | | | | | | * commit '02b44db92': Warn if postgres database has non-C locale. (#6734)
| * | Warn if postgres database has non-C locale. (#6734)Erik Johnston2020-01-283-0/+52
| | | | | | | | | As using non-C locale can cause issues on upgrading OS.
| * | Merge branch 'master' into developErik Johnston2020-01-281-1/+7
| |\ \
* | \ \ Fix setting `mau_limit_reserved_threepids` config (#6793)Andrew Morgan2020-03-231-1/+7
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * commit 'bdbeeb94e': Fix setting `mau_limit_reserved_threepids` config (#6793)
| * | | Fix setting `mau_limit_reserved_threepids` config (#6793)Erik Johnston2020-01-281-1/+7
| | | | | | | | | | | | | | | | | | | | Calling the invalidation function during initialisation of the data stores introduces a circular dependency, causing Synapse to fail to start.
* | | | Add `rooms.room_version` column (#6729)Andrew Morgan2020-03-233-18/+134
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * commit '8df862e45': Add `rooms.room_version` column (#6729)
| * | | Add `rooms.room_version` column (#6729)Erik Johnston2020-01-273-18/+134
| | | | | | | | | | | | This is so that we don't have to rely on pulling it out from `current_state_events` table.
* | | | Propagate cache invalidates from workers to other workers. (#6748)Andrew Morgan2020-03-231-1/+21
|\| | | | | | | | | | | | | | | | | | | * commit 'd5275fc55': Propagate cache invalidates from workers to other workers. (#6748)
| * | | Propagate cache invalidates from workers to other workers. (#6748)Erik Johnston2020-01-271-1/+21
| | | | | | | | | | | | Currently if a worker invalidates a cache it will be streamed to master, which then didn't forward those to other workers.
* | | | Make 'event.redacts' never raise. (#6771)Andrew Morgan2020-03-232-2/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'fa4d609e2': Make 'event.redacts' never raise. (#6771) Fixup changelog Fixup changelog Fixup changelog
| * | | Make 'event.redacts' never raise. (#6771)Erik Johnston2020-01-232-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | There are quite a few places that we assume that a redaction event has a corresponding `redacts` key, which is not always the case. So lets cheekily make it so that event.redacts just returns None instead.
* | | | Remove unnecessary abstractions in admin handler (#6751)Andrew Morgan2020-03-231-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'ce84dd9e2': Remove unnecessary abstractions in admin handler (#6751) Fixup warning about workers changes Add deprecation headers Fixup changelog
| * | | Remove unnecessary abstractions in admin handler (#6751)Andrew Morgan2020-01-221-1/+1
| |/ /
* | | Admin API to list, filter and sort rooms (#6720)Andrew Morgan2020-03-231-1/+124
|\| | | | | | | | | | | | | | * commit '90a28fb47': Admin API to list, filter and sort rooms (#6720)
| * | Admin API to list, filter and sort rooms (#6720)Andrew Morgan2020-01-221-1/+124
| | |
* | | Allow monthly active user limiting support for worker mode, fixes #4639. (#6742)Andrew Morgan2020-03-231-82/+83
|\| | | | | | | | | | | | | | * commit '5e52d8563': Allow monthly active user limiting support for worker mode, fixes #4639. (#6742)
| * | Allow monthly active user limiting support for worker mode, fixes #4639. (#6742)Neil Johnson2020-01-221-82/+83
| | |
* | | Allow streaming cache invalidate all to workers. (#6749)Andrew Morgan2020-03-232-9/+36
|\| | | | | | | | | | | | | | * commit '5d7a6ad22': Allow streaming cache invalidate all to workers. (#6749)
| * | Allow streaming cache invalidate all to workers. (#6749)Erik Johnston2020-01-222-9/+36
| | |
* | | Add a DeltaState to track changes to be made to current state (#6716)Andrew Morgan2020-03-232-99/+111
|\| | | | | | | | | | | | | | * commit '0e6876007': Add a DeltaState to track changes to be made to current state (#6716)
| * | Add a DeltaState to track changes to be made to current state (#6716)Erik Johnston2020-01-202-99/+111
| | |
* | | Fix syntax error in run_upgrade for schema 57 (#6728)Andrew Morgan2020-03-231-3/+4
|\| | | | | | | | | | | | | | * commit '722b4f302': Fix syntax error in run_upgrade for schema 57 (#6728)
| * | Fix syntax error in run_upgrade for schema 57 (#6728)Satsuki Yanagi2020-01-171-3/+4
| | | | | | | | | | | | | | | | | | | | | Fix #6727 Related #6655 Co-authored-by: Erik Johnston <erikj@jki.re>
* | | Merge pull request #6714 from matrix-org/babolivier/retention_select_eventAndrew Morgan2020-03-231-5/+5
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '3b72bb780': bump version to v1.9.0.dev1 Precise changelog Fixup diff Remove get_room_event_after_stream_ordering entirely Lint Rename changelog Changelog Correctly order when selecting before stream ordering Fix typo Fix instantiation of message retention purge jobs
| * | Merge pull request #6714 from matrix-org/babolivier/retention_select_eventBrendan Abolivier2020-01-171-5/+5
| |\ \ | | | | | | | | Fix instantiation of message retention purge jobs
| | * | Fixup diffBrendan Abolivier2020-01-161-6/+7
| | | |
| | * | Remove get_room_event_after_stream_ordering entirelyBrendan Abolivier2020-01-161-57/+12
| | | |
| | * | LintBrendan Abolivier2020-01-161-6/+12
| | | |
| | * | Correctly order when selecting before stream orderingBrendan Abolivier2020-01-151-2/+5
| | | |
| | * | Fix typoBrendan Abolivier2020-01-151-1/+1
| | | |
| | * | Fix instantiation of message retention purge jobsBrendan Abolivier2020-01-151-12/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When figuring out which topological token to start a purge job at, we need to do the following: 1. Figure out a timestamp before which events will be purged 2. Select the first stream ordering after that timestamp 3. Select info about the first event after that stream ordering 4. Build a topological token from that info In some situations (e.g. quiet rooms with a short max_lifetime), there might not be an event after the stream ordering at step 3, therefore we abort the purge with the error `No event found`. To mitigate that, this patch fetches the first event _before_ the stream ordering, instead of after.
* | | | Merge pull request #6724 from matrix-org/rav/log_saml_attributesAndrew Morgan2020-03-236-6/+6
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '59dc87c61': changelog Log saml assertions rather than the whole response move batch_iter to a separate module
| * | | move batch_iter to a separate moduleRichard van der Hoff2020-01-166-6/+6
| | | |
* | | | Add StateMap type alias (#6715)Andrew Morgan2020-03-233-43/+55
|\| | | | | | | | | | | | | | | | | | | * commit 'd386f2f33': Add StateMap type alias (#6715)
| * | | Add StateMap type alias (#6715)Erik Johnston2020-01-163-43/+55
| | | |
* | | | Fix purge_room admin API (#6711)Andrew Morgan2020-03-231-1/+1
|\| | | | | | | | | | | | | | | | | | | * commit '19a1aac48': Fix purge_room admin API (#6711)
| * | | Fix purge_room admin API (#6711)Erik Johnston2020-01-151-1/+1
| | | |
* | | | Add `local_current_membership` table (#6655)Andrew Morgan2020-03-234-80/+238
|\| | | | | | | | | | | | | | | | | | | * commit '28c98e51f': Add `local_current_membership` table (#6655)
| * | | Add `local_current_membership` table (#6655)Erik Johnston2020-01-154-80/+238
| |/ / | | | | | | | | | | | | | | | | | | Currently we rely on `current_state_events` to figure out what rooms a user was in and their last membership event in there. However, if the server leaves the room then the table may be cleaned up and that information is lost. So lets add a table that separately holds that information.
* | | Quarantine media by ID or user ID (#6681)Andrew Morgan2020-03-231-1/+115
|\| | | | | | | | | | | | | | * commit '1177d3f3a': Quarantine media by ID or user ID (#6681)
| * | Quarantine media by ID or user ID (#6681)Andrew Morgan2020-01-131-1/+115
| | |
* | | Merge pull request #6675 from matrix-org/rav/die_sqlite37_die_die_dieAndrew Morgan2020-03-233-20/+23
|\| | | | | | | | | | | | | | | | | | | | | | | | | | * commit '1d16f5ea0': update install notes for CentOS changelog Refuse to start if sqlite is older than 3.11.0 Check postgres version in check_database Modify check_database to take a connection rather than a cursor
| * | Refuse to start if sqlite is older than 3.11.0Richard van der Hoff2020-01-092-4/+7
| | |
| * | Check postgres version in check_databaseRichard van der Hoff2020-01-091-13/+12
| | | | | | | | | | | | | | | this saves doing it on each connection, and will allow us to pass extra options in.
| * | Modify check_database to take a connection rather than a cursorRichard van der Hoff2020-01-093-10/+11
| | | | | | | | | | | | We might not need the cursor at all.
* | | Allow admin users to create or modify users without a shared secret (#6495)Andrew Morgan2020-03-231-0/+2
|\| | | | | | | | | | | | | | | | | * commit 'd2906fe66': Allow admin users to create or modify users without a shared secret (#6495) Fixup changelog
| * | Allow admin users to create or modify users without a shared secret (#6495)Manuel Stahl2020-01-091-0/+2
| | | | | | | | | Signed-off-by: Manuel Stahl <manuel.stahl@awesome-technologies.de>
* | | Merge pull request #6664 from matrix-org/erikj/media_admin_apisAndrew Morgan2020-03-201-120/+128
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '7c232bd98': Shuffle the code Comments Do not rely on streaming events, as media repo doesn't Newsfile Import RoomStore in media worker to fix admin APIs Move media admin store functions to worker store
| * | Merge pull request #6664 from matrix-org/erikj/media_admin_apisErik Johnston2020-01-081-120/+128
| |\ \ | | | | | | | | Fix media repo admin APIs when using a media worker.
| | * | Shuffle the codeErik Johnston2020-01-081-25/+16
| | | |
| | * | CommentsErik Johnston2020-01-081-0/+3
| | | |
| | * | Do not rely on streaming events, as media repo doesn'tErik Johnston2020-01-081-12/+26
| | | |
| | * | Move media admin store functions to worker storeErik Johnston2020-01-081-120/+120
| | | |
* | | | Fix GET request on /_synapse/admin/v2/users endpoint (#6563)Andrew Morgan2020-03-201-2/+2
|\| | | | | | | | | | | | | | | | | | | * commit '7caaa29da': Fix GET request on /_synapse/admin/v2/users endpoint (#6563)
| * | | Fix GET request on /_synapse/admin/v2/users endpoint (#6563)Manuel Stahl2020-01-081-2/+2
| |/ / | | | | | | | | | Fixes #6552
* | | Merge pull request #6652 from matrix-org/babolivier/depth_missing_eventsAndrew Morgan2020-03-201-1/+1
|\| | | | | | | | | | | | | | | | | * commit '0ab5853ec': Changelog Fix conditions failing if min_depth = 0
| * | Merge pull request #6652 from matrix-org/babolivier/depth_missing_eventsBrendan Abolivier2020-01-071-1/+1
| |\ \ | | | | | | | | Fix conditions failing if min_depth = 0
| | * | Fix conditions failing if min_depth = 0Brendan Abolivier2020-01-071-1/+1
| | | | | | | | | | | | | | | | This could result in Synapse not fetching prev_events for new events in the room if it has missed some events.
* | | | Add a background update to clear tombstoned rooms from the directory (#6648)Andrew Morgan2020-03-204-1/+100
|\| | | | | | | | | | | | | | | | | | | * commit '85db7f73b': Add a background update to clear tombstoned rooms from the directory (#6648)
| * | | Add a background update to clear tombstoned rooms from the directory (#6648)Richard van der Hoff2020-01-074-1/+100
| | | | | | | | | | | | | | | | | | | | | | | | * Add a background update to clear tombstoned rooms from the directory * use the ABC metaclass
* | | | Async/await for background updates (#6647)Andrew Morgan2020-03-201-16/+20
|\| | | | | | | | | | | | | | | | | | | * commit '9824a39d8': Async/await for background updates (#6647)
| * | | Async/await for background updates (#6647)Richard van der Hoff2020-01-071-16/+20
| | | | | | | | | | | | | | | | so that bg update routines can be async
* | | | port BackgroundUpdateTestCase to HomeserverTestCase (#6653)Andrew Morgan2020-03-201-9/+35
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'd20c34654': port BackgroundUpdateTestCase to HomeserverTestCase (#6653) changelog Fix exceptions in log when rejected event is replicated async/await for SyncReplicationHandler.process_and_notify Clarify documentation on get_event* methods
| * | | Merge pull request #6645 from matrix-org/rav/fix_synchrotron_errorRichard van der Hoff2020-01-071-9/+35
| |\ \ \ | | | | | | | | | | Fix exceptions in the synchrotron worker log when events are rejected.
| | * | | Clarify documentation on get_event* methodsRichard van der Hoff2020-01-061-9/+35
| | | | | | | | | | | | | | | | | | | | Make it clearer how they behave in the face of rejected and/or missing events.
* | | | | Merge pull request #6629 from matrix-org/rav/kill_event_reference_hashesAndrew Morgan2020-03-201-53/+17
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '1807db5e7': changelog Remove unused get_latest_event_ids_and_hashes_in_room Remove unused get_prev_events_and_hashes_for_room Remove unused hashes and depths from _update_membership params Remove unused hashes and depths from create_event params Remove unused hashes and depths from create_new_client_event params replace get_prev_events_and_hashes_for_room with get_prev_events_for_room in create_new_client_event rename get_prev_events_for_room to get_prev_events_and_hashes_for_room
| * | | | Merge pull request #6629 from matrix-org/rav/kill_event_reference_hashesRichard van der Hoff2020-01-061-53/+17
| |\ \ \ \ | | |/ / / | |/| | | Remove a bunch of unused code from event creation
| | * | | Remove unused get_latest_event_ids_and_hashes_in_roomRichard van der Hoff2020-01-061-42/+0
| | | | |
| | * | | Remove unused get_prev_events_and_hashes_for_roomRichard van der Hoff2020-01-061-30/+0
| | | | |
| | * | | replace get_prev_events_and_hashes_for_room with get_prev_events_for_room in ↵Richard van der Hoff2020-01-061-0/+35
| | | | | | | | | | | | | | | | | | | | create_new_client_event
| | * | | rename get_prev_events_for_room to get_prev_events_and_hashes_for_roomRichard van der Hoff2020-01-061-2/+3
| | |/ / | | | | | | | | | | | | ... to make way for a new method which just returns the event ids
* | | | Fix some test failures when frozen_dicts are enabled (#6642)Andrew Morgan2020-03-201-2/+2
|\| | | | | | | | | | | | | | | | | | | * commit 'ba897a759': Fix some test failures when frozen_dicts are enabled (#6642)
| * | | Fix some test failures when frozen_dicts are enabled (#6642)Richard van der Hoff2020-01-061-2/+2
| | | | | | | | | | | | | | | | Fixes #4026
* | | | Add experimental 'databases' config (#6580)Andrew Morgan2020-03-201-0/+21
|\| | | | | | | | | | | | | | | | | | | * commit '9f6c1befb': Add experimental 'databases' config (#6580)
| * | | Add experimental 'databases' config (#6580)Erik Johnston2020-01-061-0/+21
| |/ /
* | | Update reverse proxy file name (#6590)Andrew Morgan2020-03-201-2/+4
|\| | | | | | | | | | | | | | * commit '7c6b85355': Update reverse proxy file name (#6590)
* | | Split state groups into a separate data store (#6296)Andrew Morgan2020-03-2023-1157/+1147
|\| | | | | | | | | | | | | | * commit '75d8f26ac': Split state groups into a separate data store (#6296)
| * | Split state groups into a separate data store (#6296)Erik Johnston2019-12-2023-1157/+1147
| | |
* | | Backport fixes to sqlite upgrade from develop (#6578)Andrew Morgan2020-03-201-4/+2
|\ \ \ | | | | | | | | | | | | | | | | * commit '4caab0e95': Backport fixes to sqlite upgrade from develop (#6578)
| * | | Backport fixes to sqlite upgrade from develop (#6578)Richard van der Hoff2019-12-201-1/+9
| | | | | | | | | | | | | | | | | | | | Only run prepare_database on connection for in-memory databases. Fixes #6569.
* | | | Change EventContext to use the Storage class (#6564)Andrew Morgan2020-03-202-2/+2
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * commit 'fa780e972': Change EventContext to use the Storage class (#6564)
| * | | Change EventContext to use the Storage class (#6564)Erik Johnston2019-12-202-2/+2
| | | |
* | | | Explode on duplicate delta file names. (#6565)Andrew Morgan2020-03-201-0/+18
|\| | | | | | | | | | | | | | | | | | | * commit '0b5dbadd9': Explode on duplicate delta file names. (#6565)
| * | | Explode on duplicate delta file names. (#6565)Erik Johnston2019-12-191-0/+18
| | | |
* | | | Improve diagnostics on database upgrade failure (#6570)Andrew Morgan2020-03-201-1/+4
|\| | | | | | | | | | | | | | | | | | | * commit 'bca30cefe': Improve diagnostics on database upgrade failure (#6570)
| * | | Improve diagnostics on database upgrade failure (#6570)Richard van der Hoff2019-12-191-1/+4
| | | | | | | | | | | | | | | | `Failed to upgrade database` is not helpful, and it's unlikely that UPGRADE.rst has anything useful.
* | | | Clean up startup for the pusher (#6558)Andrew Morgan2020-03-201-17/+8
|\| | | | | | | | | | | | | | | | | | | * commit 'd6752ce5d': Clean up startup for the pusher (#6558)
| * | | Clean up startup for the pusher (#6558)Richard van der Hoff2019-12-181-17/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove redundant python2 support code `str.decode()` doesn't exist on python3, so presumably this code was doing nothing * Filter out pushers with corrupt data When we get a row with unparsable json, drop the row, rather than returning a row with null `data`, which will then cause an explosion later on. * Improve logging when we can't start a pusher Log the ID to help us understand the problem * Make email pusher setup more robust We know we'll have a `data` member, since that comes from the database. What we *don't* know is if that is a dict, and if that has a `brand` member, and if that member is a string.
* | | | Add delta file to fix missing default table data (#6555)Andrew Morgan2020-03-203-15/+23
|\| | | | | | | | | | | | | | | | | | | * commit '7963ca83c': Add delta file to fix missing default table data (#6555)
| * | | Add delta file to fix missing default table data (#6555)Andrew Morgan2019-12-183-15/+23
| | | |
* | | | Add database config class (#6513)Andrew Morgan2020-03-206-19/+93
|\| | | | | | | | | | | | | | | | | | | | | | | * commit '2284eb3a5': Add database config class (#6513) too many parens
| * | | Add database config class (#6513)Erik Johnston2019-12-186-19/+93
| | | | | | | | | | | | | | | | | | | | This encapsulates config for a given database and is the way to get new connections.
* | | | Automatically delete empty groups/communities (#6453)Andrew Morgan2020-03-191-0/+29
|\| | | | | | | | | | | | | | | | | | | * commit '9d173b312': Automatically delete empty groups/communities (#6453)
| * | | Automatically delete empty groups/communities (#6453)Werner Sembach2019-12-161-0/+29
| | | | | | | | | | | | Signed-off-by: Werner Sembach <werner.sembach@fau.de>
* | | | look up cross-signing keys from the DB in bulk (#6486)Andrew Morgan2020-03-191-4/+213
|\| | | | | | | | | | | | | | | | | | | * commit 'cb2db1799': look up cross-signing keys from the DB in bulk (#6486)
| * | | look up cross-signing keys from the DB in bulk (#6486)Hubert Chathi2019-12-121-4/+213
| | | |
* | | | Fix redacted events being returned in search results ordered by "recent" (#6522)Andrew Morgan2020-03-191-3/+8
|\| | | | | | | | | | | | | | | | | | | * commit '5bfd8855d': Fix redacted events being returned in search results ordered by "recent" (#6522)
| * | | Fix redacted events being returned in search results ordered by "recent" (#6522)Andrew Morgan2019-12-121-3/+8
| | | |
| * | | Merge tag 'v1.7.0rc2' into developErik Johnston2019-12-111-0/+5
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.7.0rc2 (2019-12-11) ============================= Bugfixes -------- - Fix incorrect error message for invalid requests when setting user's avatar URL. ([\#6497](https://github.com/matrix-org/synapse/issues/6497)) - Fix support for SQLite 3.7. ([\#6499](https://github.com/matrix-org/synapse/issues/6499)) - Fix regression where sending email push would not work when using a pusher worker. ([\#6507](https://github.com/matrix-org/synapse/issues/6507), [\#6509](https://github.com/matrix-org/synapse/issues/6509))
| | * | Merge branch 'erikj/fix_sqlite_7' of github.com:matrix-org/synapse into ↵Erik Johnston2019-12-115-11/+41
| | |\ \ | | | | | | | | | | | | | | | release-v1.7.0
* | | | | Prevent redacted events from appearing in message search (#6377)Andrew Morgan2020-03-192-38/+67
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit 'fc316a489': Prevent redacted events from appearing in message search (#6377)
| * | | | Prevent redacted events from appearing in message search (#6377)Andrew Morgan2019-12-112-38/+67
| | | | |
* | | | | Add dev script to generate full SQL schema files (#6394)Andrew Morgan2020-03-192-19/+13
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '6676ee9c4': Add dev script to generate full SQL schema files (#6394)
| * | | | Add dev script to generate full SQL schema files (#6394)Andrew Morgan2019-12-112-19/+13
| | | | |
* | | | | Prevent message search in upgraded rooms we're not in (#6385)Andrew Morgan2020-03-191-5/+13
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit 'ea0f0ad41': Prevent message search in upgraded rooms we're not in (#6385)
| * | | | Prevent message search in upgraded rooms we're not in (#6385)Andrew Morgan2019-12-111-5/+13
| | | | |
* | | | | Fix race which caused deleted devices to reappear (#6514)Andrew Morgan2020-03-191-3/+5
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '40eda8493': Fix race which caused deleted devices to reappear (#6514)
| * | | | Fix race which caused deleted devices to reappear (#6514)Richard van der Hoff2019-12-101-3/+5
| | |/ / | |/| | | | | | | | | | Stop the `update_client_ips` background job from recreating deleted devices.
* | | | Merge pull request #6499 from matrix-org/erikj/fix_sqlite_7Andrew Morgan2020-03-195-11/+41
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'e726e1873': Drop unused index Convert _censor_redactions to async since it awaits on coroutines Only start censor background job after indices are created Newsfile Fix support for SQLite 3.7.
| * | | Drop unused indexErik Johnston2019-12-104-13/+18
| | | |
| * | | Convert _censor_redactions to async since it awaits on coroutinesErik Johnston2019-12-101-11/+9
| | | |
| * | | Only start censor background job after indices are createdErik Johnston2019-12-102-2/+9
| | | |
| * | | Fix support for SQLite 3.7.Erik Johnston2019-12-093-2/+22
| | | | | | | | | | | | | | | | | | | | Partial indices support was added in 3.8.0, so we need to use the background updates that handles this correctly.
* | | | Merge pull request #6509 from matrix-org/babolivier/fix-room-store-configAndrew Morgan2020-03-191-0/+5
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | * commit 'a964f1888': Changelog Give the server config to the RoomWorkerStore
| * | | Give the server config to the RoomWorkerStoreBrendan Abolivier2019-12-101-0/+5
| |/ /
* | | Systemd documentation (#6490)Andrew Morgan2020-03-191-2/+2
|\| | | | | | | | | | | | | | * commit '96d35f102': Systemd documentation (#6490)
* | | Back out perf regression from get_cross_signing_keys_from_cache. (#6494)Andrew Morgan2020-03-1929-122/+162
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'adfdd82b2': Back out perf regression from get_cross_signing_keys_from_cache. (#6494) Fix comment Fix port db script Newsfile Fixup tests Move start up DB checks to main data store. Pass Database into the data store Move are_all_users_on_domain checks to main data store. Change DataStores to accept 'database' param.
| * | Merge pull request #6487 from matrix-org/erikj/pass_in_dbErik Johnston2019-12-0929-122/+162
| |\ \ | | | | | | | | Pass in Database object to data stores.
| | * | Fix commentErik Johnston2019-12-091-1/+1
| | | | | | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| | * | Fix port db scriptErik Johnston2019-12-061-1/+1
| | | |
| | * | Move start up DB checks to main data store.Erik Johnston2019-12-061-0/+7
| | | |
| | * | Pass Database into the data storeErik Johnston2019-12-064-26/+23
| | | |
| | * | Move are_all_users_on_domain checks to main data store.Erik Johnston2019-12-062-13/+23
| | | |
| | * | Change DataStores to accept 'database' param.Erik Johnston2019-12-0625-82/+108
| | | |
* | | | Merge pull request #6484 from matrix-org/erikj/port_sync_handlerAndrew Morgan2020-03-192-3/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'a9b393340': Fixup functions to consistently return deferreds Newsfile Port SyncHandler to async/await
| * | | Merge pull request #6484 from matrix-org/erikj/port_sync_handlerErik Johnston2019-12-092-3/+3
| |\ \ \ | | |/ / | |/| | Port SyncHandler to async/await
| | * | Fixup functions to consistently return deferredsErik Johnston2019-12-062-3/+3
| | | |
* | | | Merge pull request #6469 from matrix-org/erikj/make_database_classAndrew Morgan2020-03-1945-2356/+2458
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'f3ea2f5a0': Remove unused var Fix DB scripts Newsfile Move background update handling out of store Comments Move DB pool and helper functions into dedicated Database class
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-12-063-47/+71
| |\ \ \ | | | | | | | | | | | | | | | erikj/make_database_class
| * | | | Remove unused varErik Johnston2019-12-061-2/+0
| | | | |
| * | | | Move background update handling out of storeErik Johnston2019-12-0517-146/+163
| | | | |
| * | | | CommentsErik Johnston2019-12-053-5/+16
| | | | |
| * | | | Move DB pool and helper functions into dedicated Database classErik Johnston2019-12-0544-2192/+2271
| | |/ / | |/| |
* | | | Replace /admin/v1/users_paginate endpoint with /admin/v2/users (#5925)Andrew Morgan2020-03-193-44/+71
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * commit '649b6bc08': Replace /admin/v1/users_paginate endpoint with /admin/v2/users (#5925)
| * | | Replace /admin/v1/users_paginate endpoint with /admin/v2/users (#5925)Manuel Stahl2019-12-053-44/+71
| |/ /
* | | Merge pull request #6464 from matrix-org/erikj/make_public_sql_baseAndrew Morgan2020-03-1943-509/+515
|\| | | | | | | | | | | | | | | | | | | | * commit 'ddbbfc951': Newsfile Remove underscore from SQLBaseStore functions Don't call SQLBaseStore methods from outside stores
| * | Merge pull request #6464 from matrix-org/erikj/make_public_sql_baseErik Johnston2019-12-0543-507/+508
| |\ \ | | | | | | | | Clean up SQLBaseStore private function usage
| | * | Remove underscore from SQLBaseStore functionsErik Johnston2019-12-0443-500/+492
| | | |
| | * | Don't call SQLBaseStore methods from outside storesErik Johnston2019-12-042-8/+17
| | | |
* | | | Merge pull request #6470 from matrix-org/babolivier/port_db_ci_failureAndrew Morgan2020-03-191-2/+10
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'fe799f353': Fix background updates for synapse_port_db Changelog Make synapse_port_db exit with a non-0 code if something failed
| * | | Merge pull request #6470 from matrix-org/babolivier/port_db_ci_failureBrendan Abolivier2019-12-041-2/+10
| |\ \ \ | | | | | | | | | | Make synapse_port_db exit with a non-0 code if something failed
| | * | | Fix background updates for synapse_port_dbBrendan Abolivier2019-12-041-2/+10
| | |/ /
* | | | get rid of (most of) have_events from ↵Andrew Morgan2020-03-191-34/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | _update_auth_events_and_context_for_auth (#6468) * commit 'e203874ca': get rid of (most of) have_events from _update_auth_events_and_context_for_auth (#6468)
| * | | get rid of (most of) have_events from ↵Richard van der Hoff2019-12-041-34/+0
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | _update_auth_events_and_context_for_auth (#6468) have_events was a map from event_id to rejection reason (or None) for events which are in our local database. It was used as filter on the list of event_ids being passed into get_events_as_list. However, since get_events_as_list will ignore any event_ids that are unknown or rejected, we can equivalently just leave it to get_events_as_list to do the filtering. That means that we don't have to keep `have_events` up-to-date, and can use `have_seen_events` instead of `get_seen_events_with_rejection` in the one place we do need it.
* | | Merge pull request #6454 from matrix-org/erikj/clean_base_StoreAndrew Morgan2020-03-197-190/+218
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '3eb15c01d': Revert "Move get_user_count_txn out of base store" _CURRENT_STATE_CACHE_NAME is public Move get_user_count_txn out of base store Newsfile Move cache invalidation to main data store Move event fetch vars to EventWorkStore Move account validity bg updates to registration store
| * | Merge pull request #6454 from matrix-org/erikj/clean_base_StoreErik Johnston2019-12-047-190/+218
| |\ \ | | | | | | | | Move things out of SQLBaseStore
| | * | Revert "Move get_user_count_txn out of base store"Erik Johnston2019-12-042-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 00f0d67566cdfe8eae44aeae1c982c42a255cfcd. Its going to get removed soon, so lets not make merge conflicts.
| | * | _CURRENT_STATE_CACHE_NAME is publicErik Johnston2019-12-041-3/+3
| | | |
| | * | Move get_user_count_txn out of base storeErik Johnston2019-12-042-12/+12
| | | |
| | * | Move cache invalidation to main data storeErik Johnston2019-12-045-112/+141
| | | |
| | * | Move event fetch vars to EventWorkStoreErik Johnston2019-12-044-14/+15
| | | |
| | * | Move account validity bg updates to registration storeErik Johnston2019-12-042-66/+64
| | | |
* | | | Merge pull request #6329 from matrix-org/babolivier/context_filtersAndrew Morgan2020-03-191-0/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'c530f9af4': Un-remove room purge test Incorporate review Format changelog Update changelog since this isn't going to be featured in 1.6.0 Also filter state events Only filter if a filter was provided Update copyright Lint Update copyrights Changelog Add tests for /search Merge labels tests for /context and /messages Add test case Filter events_before and events_after in /context requests
| * | | Merge pull request #6329 from matrix-org/babolivier/context_filtersBrendan Abolivier2019-12-041-0/+3
| |\ \ \ | | |/ / | |/| | Filter state, events_before and events_after in /context requests
| | * | Merge branch 'develop' into babolivier/context_filtersBrendan Abolivier2019-12-0422-305/+1024
| | |\ \
| | * | | Update copyrightsBrendan Abolivier2019-11-051-0/+3
| | | | |
* | | | | Merge pull request #6451 from matrix-org/uhoreg/cross_signing_signatures_indexAndrew Morgan2020-03-192-1/+24
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '2aa894380': apply changes from review add changelog make cross signing signature index non-unique
| * | | | Merge pull request #6451 from matrix-org/uhoreg/cross_signing_signatures_indexErik Johnston2019-12-042-1/+24
| |\ \ \ \ | | | | | | | | | | | | make cross signing signature index non-unique
| | * | | | apply changes from reviewHubert Chathi2019-12-031-1/+2
| | | | | |
| | * | | | make cross signing signature index non-uniqueHubert Chathi2019-12-022-1/+23
| | | |/ / | | |/| |
* | | | | Fix exception when a cross-signed device is deleted (#6462)Andrew Morgan2020-03-191-4/+19
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '012087546': Fix exception when a cross-signed device is deleted (#6462)
| * | | | Fix exception when a cross-signed device is deleted (#6462)Richard van der Hoff2019-12-041-4/+19
| | | | | | | | | | | | | | | | | | | | | | | | | (hopefully) ... and deobfuscate the relevant bit of code.
* | | | | Add ephemeral messages support (MSC2228) (#6409)Andrew Morgan2020-03-192-6/+141
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '54dd5dc12': Add ephemeral messages support (MSC2228) (#6409)
| * | | | Add ephemeral messages support (MSC2228) (#6409)Brendan Abolivier2019-12-032-6/+141
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement part [MSC2228](https://github.com/matrix-org/matrix-doc/pull/2228). The parts that differ are: * the feature is hidden behind a configuration flag (`enable_ephemeral_messages`) * self-destruction doesn't happen for state events * only implement support for the `m.self_destruct_after` field (not the `m.self_destruct` one) * doesn't send synthetic redactions to clients because for this specific case we consider the clients to be able to destroy an event themselves, instead we just censor it (by pruning its JSON) in the database
* | | | Remove local threepids on account deactivation (#6426)Andrew Morgan2020-03-181-0/+13
|\| | | | | | | | | | | | | | | | | | | * commit 'a9c44d400': Remove local threepids on account deactivation (#6426)
| * | | Remove local threepids on account deactivation (#6426)Andrew Morgan2019-11-281-0/+13
| | | |
* | | | add etag and count to key backup endpoints (#5858)Andrew Morgan2020-03-182-66/+177
|\| | | | | | | | | | | | | | | | | | | * commit '0d27aba90': add etag and count to key backup endpoints (#5858)
| * | | add etag and count to key backup endpoints (#5858)Hubert Chathi2019-11-272-66/+177
| | | |
* | | | Merge pull request #6358 from matrix-org/babolivier/message_retentionAndrew Morgan2020-03-181-2/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'd31f69afa': clean up buildkite output Don't restrict the tests to v1 rooms Fix worker mode Fix 3PID invite exchange Lint again Lint again Lint Don't apply retention policy based filtering on state events Implement per-room message retention policies
| * | | Merge branch 'develop' into babolivier/message_retentionBrendan Abolivier2019-11-2618-239/+547
| |\ \ \
| * | | | Fix worker modeBrendan Abolivier2019-11-191-56/+56
| | | | |
| * | | | LintBrendan Abolivier2019-11-191-25/+24
| | | | |
| * | | | Implement per-room message retention policiesBrendan Abolivier2019-11-043-0/+288
| | |/ / | |/| |
* | | | Merge pull request #6420 from ↵Andrew Morgan2020-03-181-12/+6
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | matrix-org/erikj/fix_find_next_generated_user_id_localpart * commit 'f085894cd': Don't construct a set Newsfile Fix find_next_generated_user_id_localpart
| * | | Don't construct a setErik Johnston2019-11-261-6/+3
| | | |
| * | | Fix find_next_generated_user_id_localpartErik Johnston2019-11-261-10/+7
| | | |
* | | | Prevent account_data content from being sent over TCP replication (#6333)Andrew Morgan2020-03-181-3/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'a8175d0f9': lint Add changelog Remove content from being sent for account data rdata stream
| * | | Prevent account_data content from being sent over TCP replication (#6333)Andrew Morgan2019-11-261-3/+3
| |\ \ \
| | * | | Remove content from being sent for account data rdata streamAndrew Morgan2019-11-081-3/+3
| | | | |
* | | | | Make sure that we close cursors before returning from a query (#6408)Andrew Morgan2020-03-182-10/+43
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit 'c01d54358': Make sure that we close cursors before returning from a query (#6408)
| * | | | Make sure that we close cursors before returning from a query (#6408)Richard van der Hoff2019-11-252-10/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are lots of words in the comment as to why this is a good idea. Fixes #6403.
| * | | | Merge tag 'v1.6.0rc2' into developRichard van der Hoff2019-11-251-18/+25
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.6.0rc2 (2019-11-25) ============================= Bugfixes -------- - Fix a bug which could cause the background database update hander for event labels to get stuck in a loop raising exceptions. ([\#6407](https://github.com/matrix-org/synapse/issues/6407))
* | \ \ \ \ Fix exceptions from background database update for event labels. (#6407)Andrew Morgan2020-03-181-18/+25
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | * commit 'b7367c339': Fix exceptions from background database update for event labels. (#6407)
| * | | | | Fix exceptions from background database update for event labels. (#6407)Richard van der Hoff2019-11-251-18/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add some exception handling here so that events whose json cannot be parsed are ignored rather than getting us stuck in a loop. Fixes #6404.
* | | | | | Clean up newline quote marks around the codebase (#6362)Andrew Morgan2020-03-1810-22/+16
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | * commit '3916e1b97': Clean up newline quote marks around the codebase (#6362) update macOS installation instructions
| * | | | | Clean up newline quote marks around the codebase (#6362)Andrew Morgan2019-11-2110-22/+16
| |/ / / /
* | | | | Replace UPDATE with UPSERT on device_max_stream_id table (#6363)Andrew Morgan2020-03-181-2/+15
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '657d614f6': Replace UPDATE with UPSERT on device_max_stream_id table (#6363)
| * | | | Replace UPDATE with UPSERT on device_max_stream_id table (#6363)Andrew Morgan2019-11-151-2/+15
| | | | |
| * | | | Fix guest -> real account upgrade with account validity enabled (#6359)Andrew Morgan2019-11-141-6/+3
| |/ / /
* | | | Merge pull request #6340 from matrix-org/babolivier/pagination_queryAndrew Morgan2020-03-181-8/+32
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '963ffb60b': Incorporate review Lint Only join on event_labels if we're filtering on labels Handle lack of filter Changelog Fix the SQL SELECT query in _paginate_room_events_txn
| * | | Merge pull request #6340 from matrix-org/babolivier/pagination_queryBrendan Abolivier2019-11-081-8/+32
| |\ \ \ | | | | | | | | | | Fix the SQL SELECT query in _paginate_room_events_txn
| | * | | Incorporate reviewBrendan Abolivier2019-11-081-12/+12
| | | | |
| | * | | LintBrendan Abolivier2019-11-071-2/+2
| | | | |
| | * | | Only join on event_labels if we're filtering on labelsBrendan Abolivier2019-11-071-9/+24
| | | | |
| | * | | Handle lack of filterBrendan Abolivier2019-11-071-5/+3
| | | | |
| | * | | Fix the SQL SELECT query in _paginate_room_events_txnBrendan Abolivier2019-11-071-2/+13
| | | | | | | | | | | | | | | | | | | | Doing a SELECT DISTINCT when paginating is quite expensive, because it requires the engine to do sorting on the entire events table. However, we only need to run it if we're filtering on 2+ labels, so this PR is changing the request so that DISTINCT is only used then.
* | | | | Merge pull request #6295 from matrix-org/erikj/split_purge_historyAndrew Morgan2020-03-184-172/+319
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'f713c01e2': Move type annotation into docstring Fix deleting state groups during room purge. Use correct type annotation Change to not require a state_groups.room_id index. Fix up comment Update log line to lie a little less Add state_groups.room_id index Docstrings Fix purge room API Newsfile Split purge API into events vs state
| * | | | Merge pull request #6295 from matrix-org/erikj/split_purge_historyErik Johnston2019-11-084-172/+319
| |\ \ \ \ | | | | | | | | | | | | Split purge API into events vs state and add PurgeEventsStorage
| | * | | | Move type annotation into docstringErik Johnston2019-11-081-3/+3
| | | | | |
| | * | | | Fix deleting state groups during room purge.Erik Johnston2019-11-061-13/+14
| | | | | | | | | | | | | | | | | | | | | | | | And fix the tests to actually test that things got deleted.
| | * | | | Use correct type annotationErik Johnston2019-11-061-2/+2
| | | | | |
| | * | | | Change to not require a state_groups.room_id index.Erik Johnston2019-11-044-53/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This does mean that we won't clean up orphaned state groups (i.e. state groups that were persisted but the associated event wasn't).
| | * | | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-11-0418-54/+259
| | |\ \ \ \ | | | | |/ / | | | |/| | | | | | | | erikj/split_purge_history
| | * | | | Fix up commentErik Johnston2019-11-011-2/+1
| | | | | |
| | * | | | Update log line to lie a little lessErik Johnston2019-10-311-1/+1
| | | | | |
| | * | | | Add state_groups.room_id indexErik Johnston2019-10-312-0/+24
| | | | | |
| | * | | | DocstringsErik Johnston2019-10-311-3/+11
| | | | | |
| | * | | | Fix purge room APIErik Johnston2019-10-311-5/+8
| | | | | |
| | * | | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-10-317-12/+243
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | erikj/split_purge_history
| | * | | | | Split purge API into events vs stateErik Johnston2019-10-304-175/+295
| | | | | | |
* | | | | | | Merge pull request #6310 from matrix-org/babolivier/msc2326_bg_updateAndrew Morgan2020-03-182-0/+80
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '46e5db9eb': Update synapse/storage/data_stores/main/events_bg_updates.py Update synapse/storage/data_stores/main/events_bg_updates.py Copy results Revert "Back to using cursor_to_dict" Back to using cursor_to_dict Initialise value before looping Incorporate review Fix field name Update insert Update changelog Print out the actual number of affected rows Correctly order results TODO Fix exit condition Lint Changelog Don't try to process events we already have a label for Use a sensible default value for labels Use the right format for rows MSC2326: Add background update to take previous events into account
| * | | | | | Merge pull request #6310 from matrix-org/babolivier/msc2326_bg_updateBrendan Abolivier2019-11-072-0/+80
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | MSC2326: Add background update to take previous events into account
| | * | | | | | Update synapse/storage/data_stores/main/events_bg_updates.pyBrendan Abolivier2019-11-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| | * | | | | | Update synapse/storage/data_stores/main/events_bg_updates.pyBrendan Abolivier2019-11-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| | * | | | | | Copy resultsBrendan Abolivier2019-11-071-1/+3
| | | | | | | |
| | * | | | | | Revert "Back to using cursor_to_dict"Brendan Abolivier2019-11-071-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 1186612d6cd728e6b7ed7806579db3cea7410b54.
| | * | | | | | Back to using cursor_to_dictBrendan Abolivier2019-11-071-9/+9
| | | | | | | |
| | * | | | | | Initialise value before loopingBrendan Abolivier2019-11-071-4/+8
| | | | | | | |
| | * | | | | | Incorporate reviewBrendan Abolivier2019-11-071-14/+9
| | | | | | | |
| | * | | | | | Fix field nameBrendan Abolivier2019-11-061-1/+1
| | | | | | | |
| | * | | | | | Update insertBrendan Abolivier2019-11-061-1/+6
| | | | | | | |
| | * | | | | | Print out the actual number of affected rowsBrendan Abolivier2019-11-041-4/+4
| | | | | | | |
| | * | | | | | Correctly order resultsBrendan Abolivier2019-11-041-5/+5
| | | | | | | |
| | * | | | | | TODOBrendan Abolivier2019-11-041-0/+2
| | | | | | | |
| | * | | | | | Fix exit conditionBrendan Abolivier2019-11-041-1/+3
| | | | | | | |
| | * | | | | | LintBrendan Abolivier2019-11-041-6/+3
| | | | | | | |
| | * | | | | | Don't try to process events we already have a label forBrendan Abolivier2019-11-041-1/+2
| | | | | | | |
| | * | | | | | Use a sensible default value for labelsBrendan Abolivier2019-11-041-1/+1
| | | | | | | |
| | * | | | | | Use the right format for rowsBrendan Abolivier2019-11-041-1/+1
| | | | | | | |
| | * | | | | | MSC2326: Add background update to take previous events into accountBrendan Abolivier2019-11-042-0/+72
| | | |_|/ / / | | |/| | | |
* | | | | | | Merge pull request #6235 from matrix-org/anoa/room_upgrade_groupsAndrew Morgan2020-03-182-1/+20
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'e914cf12f': tweak changelog Re-add docstring, with caveats detailed Transfer upgraded rooms on groups
| * | | | | | Merge pull request #6235 from matrix-org/anoa/room_upgrade_groupsAndrew Morgan2019-11-072-1/+20
| |\ \ \ \ \ \
| | * | | | | | Re-add docstring, with caveats detailedAndrew Morgan2019-11-042-2/+6
| | | | | | | |
| | * | | | | | Transfer upgraded rooms on groupsAndrew Morgan2019-11-041-0/+15
| | |/ / / / /
* | | | | | | Make numeric user_id checker start at @0, and don't ratelimit on checking ↵Andrew Morgan2020-03-181-4/+4
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | (#6338)
| * | | | | | Numeric ID checker now checks @0, don't ratelimit on checkingAndrew Morgan2019-11-061-4/+4
| | |_|_|/ / | |/| | | |
* | | | | | Fix bug which caused rejected events to be stored with the wrong room state ↵Andrew Morgan2020-03-161-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#6320) * commit '807ec3bd9': Fix bug which caused rejected events to be stored with the wrong room state (#6320)
| * | | | | Fix bug which caused rejected events to be stored with the wrong room state ↵Richard van der Hoff2019-11-061-1/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#6320) Fixes a bug where rejected events were persisted with the wrong state group. Also fixes an occasional internal-server-error when receiving events over federation which are rejected and (possibly because they are backwards-extremities) have no prev_group. Fixes #6289.
* | | | | Merge pull request #6301 from matrix-org/babolivier/msc2326Andrew Morgan2020-03-163-2/+75
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'f496d2587': Incorporate review Factor out an _AsyncEventContextImpl (#6298) Update synapse/storage/data_stores/main/schema/delta/56/event_labels.sql Add more data to the event_labels table and fix the indexes Add unstable feature flag Lint Incorporate review Lint Changelog Add integration tests for /messages Add more integration testing Add integration tests for sync Add unit tests Add index on label Implement filtering Store labels for new events Add database table for keeping track of labels on events
| * | | | Merge pull request #6301 from matrix-org/babolivier/msc2326Brendan Abolivier2019-11-013-2/+75
| |\ \ \ \ | | | | | | | | | | | | Implement MSC2326 (label based filtering)
| | * | | | Incorporate reviewBrendan Abolivier2019-11-012-1/+7
| | | | | |
| | * | | | Update synapse/storage/data_stores/main/schema/delta/56/event_labels.sqlBrendan Abolivier2019-11-011-1/+1
| | | | | | | | | | | | | | | | | | Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
| | * | | | Add more data to the event_labels table and fix the indexesBrendan Abolivier2019-11-013-5/+21
| | | | | |
| | * | | | LintBrendan Abolivier2019-11-011-1/+1
| | | | | |
| | * | | | Incorporate reviewBrendan Abolivier2019-11-011-2/+10
| | | | | |
| | * | | | LintBrendan Abolivier2019-10-301-7/+1
| | | | | |
| | * | | | Add more integration testingBrendan Abolivier2019-10-301-1/+1
| | | | | |