summary refs log tree commit diff
path: root/synapse/handlers/sync.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesAndrew Morgan2021-04-191-1/+0
|\
| * Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | | | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesAndrew Morgan2021-04-131-4/+4
|\|
| * Bugbear: Add Mutable Parameter fixes (#9682)Jonathan de Jong2021-04-081-4/+4
| | | | | | | | | | | | | | Part of #9366 Adds in fixes for B006 and B008, both relating to mutable parameter lint errors. Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesPatrick Cloke2021-04-081-5/+23
|\|
| * Add type hints to expiring cache. (#9730)Patrick Cloke2021-04-061-4/+6
| |
| * Improve tracing for to device messages (#9686)Erik Johnston2021-04-011-1/+17
| |
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2021-03-241-4/+8
|\|
| * Add a type hints for service notices to the HomeServer object. (#9675)Patrick Cloke2021-03-241-2/+4
| |
| * Fix bad naming of storage function (#9637)Erik Johnston2021-03-171-2/+4
| | | | | | | | | | | | We had two functions named `get_forward_extremities_for_room` and `get_forward_extremeties_for_room` that took different paramters. We rename one of them to avoid confusion.
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2021-03-091-1/+1
|\|
| * Add ResponseCache tests. (#9458)Jonathan de Jong2021-03-081-1/+1
| |
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2021-03-031-2/+1
|\|
| * Revert "Fix #8518 (sync requests being cached wrongly on timeout) (#9358)"Patrick Cloke2021-03-021-2/+1
| | | | | | | | | | | | | | This reverts commit f5c93fc9931e4029bbd8000f398b6f39d67a8c46. This is being backed out due to a regression (#9507) and additional review feedback being provided.
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2021-02-261-1/+2
|\|
| * Fix #8518 (sync requests being cached wrongly on timeout) (#9358)Jonathan de Jong2021-02-241-1/+2
| | | | | | | | | | | | | | This fixes #8518 by adding a conditional check on `SyncResult` in a function when `prev_stream_token == current_stream_token`, as a sanity check. In `CachedResponse.set.<remove>()`, the result is immediately popped from the cache if the conditional function returns "false". This prevents the caching of a timed-out `SyncResult` (that has `next_key` as the stream key that produced that `SyncResult`). The cache is prevented from returning a `SyncResult` that makes the client request the same stream key over and over again, effectively making it stuck in a loop of requesting and getting a response immediately for as long as the cache keeps those values. Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2021-02-171-17/+20
|\|
| * Update black, and run auto formatting over the codebase (#9381)Eric Eastwood2021-02-161-17/+20
| | | | | | | | | | | | | | - Update black version to the latest - Run black auto formatting over the codebase - Run autoformatting according to [`docs/code_style.md `](https://github.com/matrix-org/synapse/blob/80d6dc9783aa80886a133756028984dbf8920168/docs/code_style.md) - Update `code_style.md` docs around installing black to use the correct version
* | Merge remote-tracking branch 'origin/release-v1.25.0' into matrix-org-hotfixesRichard van der Hoff2021-01-051-1/+1
|\|
| * Add additional type hints to the storage module. (#8980)Patrick Cloke2020-12-301-1/+1
| |
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2020-11-271-1/+3
|\|
| * Add admin API for logging in as a user (#8617)Erik Johnston2020-11-171-1/+3
| |
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2020-10-271-2/+2
|\|
| * Fix typos and spelling errors. (#8639)Patrick Cloke2020-10-231-2/+2
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2020-10-161-1/+0
|\|
| * Send some ephemeral events to appservices (#8437)Will Hunt2020-10-151-1/+0
| | | | | | Optionally sends typing, presence, and read receipt information to appservices.
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesErik Johnston2020-10-131-10/+26
|\|
| * Add type hints to response cache. (#8507)Patrick Cloke2020-10-091-1/+3
| |
| * Fix returning incorrect prev_batch token in incremental sync (#8486)Erik Johnston2020-10-071-1/+6
| |
| * Add support for MSC2732: olm fallback keys (#8312)Hubert Chathi2020-10-061-0/+8
| |
| * Do not assume that account data is of the correct form. (#8454)Patrick Cloke2020-10-051-8/+11
| | | | | | | | This fixes a bug where `m.ignored_user_list` was assumed to be a dict, leading to odd behavior for users who set it to something else.
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-10-011-1/+1
|\|
| * Enable mypy checking for unreachable code and fix instances. (#8432)Patrick Cloke2020-10-011-1/+1
| |
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2020-10-011-41/+35
|\|
| * Various clean ups to room stream tokens. (#8423)Erik Johnston2020-09-291-6/+14
| |
| * Add EventStreamPosition type (#8388)Erik Johnston2020-09-241-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea is to remove some of the places we pass around `int`, where it can represent one of two things: 1. the position of an event in the stream; or 2. a token that partitions the stream, used as part of the stream tokens. The valid operations are then: 1. did a position happen before or after a token; 2. get all events that happened before or after a token; and 3. get all events between two tokens. (Note that we don't want to allow other operations as we want to change the tokens to be vector clocks rather than simple ints)
| * Use slots in attrs classes where possible (#8296)Patrick Cloke2020-09-141-24/+10
| | | | | | | | | | slots use less memory (and attribute access is faster) while slightly limiting the flexibility of the class attributes. This focuses on objects which are instantiated "often" and for short periods of time.
| * Make `StreamToken.room_key` be a `RoomStreamToken` instance. (#8281)Erik Johnston2020-09-111-5/+6
| |
| * Add types to StreamToken and RoomStreamToken (#8279)Erik Johnston2020-09-081-3/+2
| | | | | | The intention here is to change `StreamToken.room_key` to be a `RoomStreamToken` in a future PR, but that is a big enough change without this refactoring too.
* | Merge branch 'release-v1.20.0' into matrix-org-hotfixesRichard van der Hoff2020-09-071-2/+2
|\|
| * Stop sub-classing object (#8249)Patrick Cloke2020-09-041-2/+2
| |
* | Merge branch 'develop' into matrix-org-hotfixesBrendan Abolivier2020-09-031-20/+25
|\|
| * Fix typing for SyncHandler (#8237)Erik Johnston2020-09-031-5/+7
| |
| * Re-implement unread counts (again) (#8059)Brendan Abolivier2020-09-021-15/+18
| |
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-08-281-2/+3
|\|
| * Define StateMap as immutable and add a MutableStateMap type. (#8183)Patrick Cloke2020-08-281-2/+3
| |
* | Merge branch 'develop' into matrix-org-hotfixesBrendan Abolivier2020-08-131-7/+1
|\|
| * Revert #7736 (#8039)Brendan Abolivier2020-08-061-6/+0
| |
| * Convert streams to async. (#8014)Patrick Cloke2020-08-041-1/+1
| |
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-07-311-0/+6
|\|
| * Re-implement unread counts (#7736)Brendan Abolivier2020-07-291-0/+6
| |
* | Merge branch 'release-v1.18.0' into matrix-org-hotfixesRichard van der Hoff2020-07-281-4/+0
|\|
| * Fix up types and comments that refer to Deferreds. (#7945)Patrick Cloke2020-07-241-4/+0
| |
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-07-241-2/+15
|\|
| * Add debugging to sync response generation (#7929)Richard van der Hoff2020-07-221-2/+15
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesAndrew Morgan2020-07-011-3/+0
|\|
| * Back out MSC2625 implementation (#7761)Brendan Abolivier2020-07-011-3/+0
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2020-06-171-18/+19
|\|
| * Merge branch 'develop' into babolivier/mark_unreadBrendan Abolivier2020-06-151-18/+16
| |\
| | * Replace iteritems/itervalues/iterkeys with native versions. (#7692)Patrick Cloke2020-06-151-18/+16
| | |
| * | Appease mypyBrendan Abolivier2020-06-101-1/+1
| | |
| * | LintBrendan Abolivier2020-06-101-3/+3
| | |
| * | Use temporary prefixes as per the MSCBrendan Abolivier2020-06-101-1/+3
| | |
| * | Add a new unread_counter to sync responsesBrendan Abolivier2020-06-101-0/+1
| |/
* | Merge tag 'v1.15.0rc1' of github.com:matrix-org/synapse into matrix-org-hotfixesBrendan Abolivier2020-06-101-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.15.0rc1 (2020-06-09) ============================== Features -------- - Advertise support for Client-Server API r0.6.0 and remove related unstable feature flags. ([\#6585](https://github.com/matrix-org/synapse/issues/6585)) - Add an option to disable autojoining rooms for guest accounts. ([\#6637](https://github.com/matrix-org/synapse/issues/6637)) - For SAML authentication, add the ability to pass email addresses to be added to new users' accounts via SAML attributes. Contributed by Christopher Cooper. ([\#7385](https://github.com/matrix-org/synapse/issues/7385)) - Add admin APIs to allow server admins to manage users' devices. Contributed by @dklimpel. ([\#7481](https://github.com/matrix-org/synapse/issues/7481)) - Add support for generating thumbnails for WebP images. Previously, users would see an empty box instead of preview image. ([\#7586](https://github.com/matrix-org/synapse/issues/7586)) - Support the standardized `m.login.sso` user-interactive authentication flow. ([\#7630](https://github.com/matrix-org/synapse/issues/7630)) Bugfixes -------- - Allow new users to be registered via the admin API even if the monthly active user limit has been reached. Contributed by @dkimpel. ([\#7263](https://github.com/matrix-org/synapse/issues/7263)) - Fix email notifications not being enabled for new users when created via the Admin API. ([\#7267](https://github.com/matrix-org/synapse/issues/7267)) - Fix str placeholders in an instance of `PrepareDatabaseException`. Introduced in Synapse v1.8.0. ([\#7575](https://github.com/matrix-org/synapse/issues/7575)) - Fix a bug in automatic user creation during first time login with `m.login.jwt`. Regression in v1.6.0. Contributed by @olof. ([\#7585](https://github.com/matrix-org/synapse/issues/7585)) - Fix a bug causing the cross-signing keys to be ignored when resyncing a device list. ([\#7594](https://github.com/matrix-org/synapse/issues/7594)) - Fix metrics failing when there is a large number of active background processes. ([\#7597](https://github.com/matrix-org/synapse/issues/7597)) - Fix bug where returning rooms for a group would fail if it included a room that the server was not in. ([\#7599](https://github.com/matrix-org/synapse/issues/7599)) - Fix duplicate key violation when persisting read markers. ([\#7607](https://github.com/matrix-org/synapse/issues/7607)) - Prevent an entire iteration of the device list resync loop from failing if one server responds with a malformed result. ([\#7609](https://github.com/matrix-org/synapse/issues/7609)) - Fix exceptions when fetching events from a remote host fails. ([\#7622](https://github.com/matrix-org/synapse/issues/7622)) - Make `synctl restart` start synapse if it wasn't running. ([\#7624](https://github.com/matrix-org/synapse/issues/7624)) - Pass device information through to the login endpoint when using the login fallback. ([\#7629](https://github.com/matrix-org/synapse/issues/7629)) - Advertise the `m.login.token` login flow when OpenID Connect is enabled. ([\#7631](https://github.com/matrix-org/synapse/issues/7631)) - Fix bug in account data replication stream. ([\#7656](https://github.com/matrix-org/synapse/issues/7656)) Improved Documentation ---------------------- - Update the OpenBSD installation instructions. ([\#7587](https://github.com/matrix-org/synapse/issues/7587)) - Advertise Python 3.8 support in `setup.py`. ([\#7602](https://github.com/matrix-org/synapse/issues/7602)) - Add a link to `#synapse:matrix.org` in the troubleshooting section of the README. ([\#7603](https://github.com/matrix-org/synapse/issues/7603)) - Clarifications to the admin api documentation. ([\#7647](https://github.com/matrix-org/synapse/issues/7647)) Internal Changes ---------------- - Convert the identity handler to async/await. ([\#7561](https://github.com/matrix-org/synapse/issues/7561)) - Improve query performance for fetching state from a PostgreSQL database. ([\#7567](https://github.com/matrix-org/synapse/issues/7567)) - Speed up processing of federation stream RDATA rows. ([\#7584](https://github.com/matrix-org/synapse/issues/7584)) - Add comment to systemd example to show postgresql dependency. ([\#7591](https://github.com/matrix-org/synapse/issues/7591)) - Refactor `Ratelimiter` to limit the amount of expensive config value accesses. ([\#7595](https://github.com/matrix-org/synapse/issues/7595)) - Convert groups handlers to async/await. ([\#7600](https://github.com/matrix-org/synapse/issues/7600)) - Clean up exception handling in `SAML2ResponseResource`. ([\#7614](https://github.com/matrix-org/synapse/issues/7614)) - Check that all asynchronous tasks succeed and general cleanup of `MonthlyActiveUsersTestCase` and `TestMauLimit`. ([\#7619](https://github.com/matrix-org/synapse/issues/7619)) - Convert `get_user_id_by_threepid` to async/await. ([\#7620](https://github.com/matrix-org/synapse/issues/7620)) - Switch to upstream `dh-virtualenv` rather than our fork for Debian package builds. ([\#7621](https://github.com/matrix-org/synapse/issues/7621)) - Update CI scripts to check the number in the newsfile fragment. ([\#7623](https://github.com/matrix-org/synapse/issues/7623)) - Check if the localpart of a Matrix ID is reserved for guest users earlier in the registration flow, as well as when responding to requests to `/register/available`. ([\#7625](https://github.com/matrix-org/synapse/issues/7625)) - Minor cleanups to OpenID Connect integration. ([\#7628](https://github.com/matrix-org/synapse/issues/7628)) - Attempt to fix flaky test: `PhoneHomeStatsTestCase.test_performance_100`. ([\#7634](https://github.com/matrix-org/synapse/issues/7634)) - Fix typos of `m.olm.curve25519-aes-sha2` and `m.megolm.v1.aes-sha2` in comments, test files. ([\#7637](https://github.com/matrix-org/synapse/issues/7637)) - Convert user directory, state deltas, and stats handlers to async/await. ([\#7640](https://github.com/matrix-org/synapse/issues/7640)) - Remove some unused constants. ([\#7644](https://github.com/matrix-org/synapse/issues/7644)) - Fix type information on `assert_*_is_admin` methods. ([\#7645](https://github.com/matrix-org/synapse/issues/7645)) - Convert registration handler to async/await. ([\#7649](https://github.com/matrix-org/synapse/issues/7649))
| * Typo fixes.Patrick Cloke2020-06-051-1/+1
| |
* | Merge erikj/faster_device_lists_fetch into matrix-org-hotfixesRichard van der Hoff2020-05-051-4/+8
|\|
| * Speed up fetching device lists changes in sync.Erik Johnston2020-05-051-4/+8
| | | | | | | | | | Currently we copy `users_who_share_room` needlessly about three times, which is expensive when the set is large (which it can easily be).
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-04-241-3/+3
|\|
| * typosMatthew Hodgson2020-04-111-1/+1
| |
| * Add explanatory commentAndrew Morgan2020-03-301-0/+2
| |
| * Just add own user ID to the list we track device changes forDavid Baker2020-03-301-4/+6
| |
| * Always send the user updates to their own device listDavid Baker2020-03-271-3/+4
| | | | | | | | | | This will allow clients to notify users about new devices even if the user isn't in any rooms (yet).
| * Clean up some LoggingContext stuff (#7120)Richard van der Hoff2020-03-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Pull Sentinel out of LoggingContext ... and drop a few unnecessary references to it * Factor out LoggingContext.current_context move `current_context` and `set_context` out to top-level functions. Mostly this means that I can more easily trace what's actually referring to LoggingContext, but I think it's generally neater. * move copy-to-parent into `stop` this really just makes `start` and `stop` more symetric. It also means that it behaves correctly if you manually `set_log_context` rather than using the context manager. * Replace `LoggingContext.alive` with `finished` Turn `alive` into `finished` and make it a bit better defined.
* | Merge remote-tracking branch 'origin/release-v1.12.4' into matrix-org-hotfixesRichard van der Hoff2020-04-211-1/+6
|\ \
| * | Always send the user updates to their own device list (#7160)David Baker2020-04-201-1/+6
| |/
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2020-02-271-12/+10
|\|
| * Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)Patrick Cloke2020-02-211-12/+10
| | | | | | | | Ensure good comprehension hygiene using flake8-comprehensions.
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2020-02-181-344/+367
|\|
| * Merge branch 'release-v1.10.0' into developRichard van der Hoff2020-02-111-0/+1
| |\
| * | Reduce amount of logging at INFO level. (#6862)Erik Johnston2020-02-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | A lot of the things we log at INFO are now a bit superfluous, so lets make them DEBUG logs to reduce the amount we log by default. Co-Authored-By: Brendan Abolivier <babolivier@matrix.org> Co-authored-by: Brendan Abolivier <github@brendanabolivier.com>
| * | Add typing to SyncHandler (#6821)Erik Johnston2020-02-031-341/+364
| | | | | | | | | | | | Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
* | | Merge branch 'release-v1.10.0' into matrix-org-hotfixes v1.10.0rc4Richard van der Hoff2020-02-111-0/+1
|\ \ \ | | |/ | |/|
| * | filter out m.room.aliases from /sync state blocks (#6884)Matthew Hodgson2020-02-101-0/+1
| |/ | | | | We forgot to filter out aliases from /sync state blocks as well as the timeline.
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesBrendan Abolivier2020-01-221-1/+1
|\|
| * Add `local_current_membership` table (#6655)Erik Johnston2020-01-151-1/+1
| | | | | | | | | | | | | | 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.
* | Merge branch 'release-v1.7.0' of github.com:matrix-org/synapse into ↵Neil Johnson2019-12-101-134/+117
|\| | | | | | | matrix-org-hotfixes
| * Fixup functions to consistently return deferredsErik Johnston2019-12-061-3/+3
| |
| * Port SyncHandler to async/awaitErik Johnston2019-12-051-134/+117
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-11-191-16/+20
|\|
| * Update black to 19.10b0 (#6304)Amber Brown2019-11-011-7/+9
| | | | | | * update version of black and also fix the mypy config being overridden
| * Port to use state storageErik Johnston2019-10-301-9/+11
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-10-251-1/+6
|\|
| * Merge branch 'develop' into cross-signing_keysHubert Chathi2019-09-041-5/+4
| |\
| * \ Merge branch 'uhoreg/e2e_cross-signing_merged' into cross-signing_keysHubert Chathi2019-08-281-6/+25
| |\ \
| * \ \ Merge branch 'cross-signing_hidden' into cross-signing_keysHubert Chathi2019-08-011-61/+51
| |\ \ \
| * | | | allow uploading keys for cross-signingHubert Chathi2019-07-251-1/+6
| | | | |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-09-041-5/+4
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Remove double return statements (#5962)Andrew Morgan2019-09-031-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove all the "double return" statements which were a result of us removing all the instances of ``` defer.returnValue(...) return ``` statements when we switched to python3 fully.
| * | | | Remove unnecessary parentheses around return statements (#5931)Andrew Morgan2019-08-301-4/+4
| | |_|/ | |/| | | | | | | | | | | | | | Python will return a tuple whether there are parentheses around the returned values or not. I'm just sick of my editor complaining about this all over the place :)
* | | | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-08-291-17/+5
|\| | |
| * | | Remove logging for #5407 and update commentsErik Johnston2019-08-151-17/+5
| | | |
* | | | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesRichard van der Hoff2019-08-131-6/+37
|\| | |
| * | | Handle TimelineBatch being limited and empty.Erik Johnston2019-08-061-6/+37
| | |/ | |/| | | | | | | | | | | | | This hopefully addresses #5407 by gracefully handling an empty but limited TimelineBatch. We also add some logging to figure out how this is happening.
* | | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-07-301-61/+51
|\| |
| * | Replace returnValue with return (#5736)Amber Brown2019-07-231-61/+51
| |/
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-07-171-1/+1
|\|
| * Move logging utilities out of the side drawer of util/ and into logging/ (#5606)Amber Brown2019-07-041-1/+1
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-06-281-18/+52
|\|
| * Review commentsErik Johnston2019-06-271-4/+4
| |
| * Refactor and comment sync device list codeErik Johnston2019-06-261-17/+53
| |
| * Rename get_users_whose_devices_changedErik Johnston2019-06-261-1/+1
| |
| * Refactor get_user_ids_changed to pull less from DBErik Johnston2019-06-261-12/+10
| | | | | | | | | | | | | | | | | | | | | | When a client asks for users whose devices have changed since a token we used to pull *all* users from the database since the token, which could easily be thousands of rows for old tokens. This PR changes this to only check for changes for users the client is actually interested in. Fixes #5553
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-06-211-344/+352
|\|
| * Run Black. (#5482)Amber Brown2019-06-201-343/+351
| |
* | Merge branch 'release-v1.0.0' of github.com:matrix-org/synapse into ↵Erik Johnston2019-06-101-20/+23
|\| | | | | | | matrix-org-hotfixes
| * Merge pull request #5089 from dnaf/m-heroes-empty-room-nameBrendan Abolivier2019-06-061-5/+4
| |\ | | | | | | Make /sync return heroes if room name or canonical alias are empty
| | * Simplify conditionBrendan Abolivier2019-06-061-2/+2
| | |
| | * Simplify conditionBrendan Abolivier2019-06-051-3/+2
| | |
| | * Merge branch 'develop' into m-heroes-empty-room-nameBrendan Abolivier2019-06-051-19/+25
| | |\
| | * | LintKatie Wolfe2019-04-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | I probably should've just run autopep8 in the first place... Signed-off-by: Katie Wolfe <katie@dnaf.moe>
| | * | Clean up codeKatie Wolfe2019-04-241-2/+3
| | | | | | | | | | | | | | | | Signed-off-by: Katie Wolfe <katie@dnaf.moe>
| | * | Show heroes if room name or canonical alias are emptyKatie Wolfe2019-04-241-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #4194 Signed-off-by: Katie Wolfe <katie@dnaf.moe>
| | * | Show heroes if room name or canonical alias are emptyKatie Wolfe2019-04-241-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #4194 Signed-off-by: Katie Wolfe <katie@dnaf.moe>
| * | | Do user_id != me checks before deciding whether we should pick heroes from ↵Brendan Abolivier2019-06-051-15/+19
| | |/ | |/| | | | | | | the joined members or the parted ones
* | | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2019-05-201-19/+25
|\| |
| * | Make /sync attempt to return device updates for both joined and invited ↵Matthew Hodgson2019-05-161-19/+25
| |/ | | | | | | users (#3484)
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-04-041-4/+4
|\|
| * Fix grammar and document get_current_users_in_room (#4998)Andrew Morgan2019-04-031-4/+4
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-03-061-13/+29
|\|
| * Merge pull request #4815 from matrix-org/erikj/docstringsErik Johnston2019-03-061-7/+26
| |\ | | | | | | Add docstrings from matrix-org-hotfixes
| | * Add docstrings from matrix-org-hotfixesErik Johnston2019-03-061-7/+26
| | |
| * | Port #4422 debug logging from hotfixesErik Johnston2019-03-061-7/+46
| |/
* | Add more debug for #4422 (#4769)Richard van der Hoff2019-02-281-0/+11
| |
* | Add more debug for membership syncing issues (#4719)Richard van der Hoff2019-02-251-9/+40
| |
* | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2019-01-311-2/+11
|\|
| * Add some debug for membership syncing issues (#4538)Richard van der Hoff2019-01-311-2/+11
| | | | | | I can't figure out what's going on with #4422 and #4436; perhaps this will help.
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2019-01-301-1/+13
|\|
| * Fix remote invite rejections not comming down syncErik Johnston2019-01-301-1/+13
| | | | | | | | | | | | | | | | | | | | This was broken in PR #4405, commit 886e5ac, where we changed remote rejections to be outliers. The fix is to explicitly add the leave event in when we know its an out of band invite. We can't always add the event as if the server is/was in the room there might be more events to send down the sync than just the leave.
* | Merge tag 'v0.34.1rc1' into matrix-org-hotfixesRichard van der Hoff2019-01-081-3/+7
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 0.34.1rc1 (2019-01-08) ============================== Features -------- - Special-case a support user for use in verifying behaviour of a given server. The support user does not appear in user directory or monthly active user counts. ([\#4141](https://github.com/matrix-org/synapse/issues/4141), [\#4344](https://github.com/matrix-org/synapse/issues/4344)) - Support for serving .well-known files ([\#4262](https://github.com/matrix-org/synapse/issues/4262)) - Rework SAML2 authentication ([\#4265](https://github.com/matrix-org/synapse/issues/4265), [\#4267](https://github.com/matrix-org/synapse/issues/4267)) - SAML2 authentication: Initialise user display name from SAML2 data ([\#4272](https://github.com/matrix-org/synapse/issues/4272)) - Synapse can now have its conditional/extra dependencies installed by pip. This functionality can be used by using `pip install matrix-synapse[feature]`, where feature is a comma separated list with the possible values `email.enable_notifs`, `matrix-synapse-ldap3`, `postgres`, `resources.consent`, `saml2`, `url_preview`, and `test`. If you want to install all optional dependencies, you can use "all" instead. ([\#4298](https://github.com/matrix-org/synapse/issues/4298), [\#4325](https://github.com/matrix-org/synapse/issues/4325), [\#4327](https://github.com/matrix-org/synapse/issues/4327)) - Add routes for reading account data. ([\#4303](https://github.com/matrix-org/synapse/issues/4303)) - Add opt-in support for v2 rooms ([\#4307](https://github.com/matrix-org/synapse/issues/4307)) - Add a script to generate a clean config file ([\#4315](https://github.com/matrix-org/synapse/issues/4315)) - Return server data in /login response ([\#4319](https://github.com/matrix-org/synapse/issues/4319)) Bugfixes -------- - Fix contains_url check to be consistent with other instances in code-base and check that value is an instance of string. ([\#3405](https://github.com/matrix-org/synapse/issues/3405)) - Fix CAS login when username is not valid in an MXID ([\#4264](https://github.com/matrix-org/synapse/issues/4264)) - Send CORS headers for /media/config ([\#4279](https://github.com/matrix-org/synapse/issues/4279)) - Add 'sandbox' to CSP for media reprository ([\#4284](https://github.com/matrix-org/synapse/issues/4284)) - Make the new landing page prettier. ([\#4294](https://github.com/matrix-org/synapse/issues/4294)) - Fix deleting E2E room keys when using old SQLite versions. ([\#4295](https://github.com/matrix-org/synapse/issues/4295)) - The metric synapse_admin_mau:current previously did not update when config.mau_stats_only was set to True ([\#4305](https://github.com/matrix-org/synapse/issues/4305)) - Fixed per-room account data filters ([\#4309](https://github.com/matrix-org/synapse/issues/4309)) - Fix indentation in default config ([\#4313](https://github.com/matrix-org/synapse/issues/4313)) - Fix synapse:latest docker upload ([\#4316](https://github.com/matrix-org/synapse/issues/4316)) - Fix test_metric.py compatibility with prometheus_client 0.5. Contributed by Maarten de Vries <maarten@de-vri.es>. ([\#4317](https://github.com/matrix-org/synapse/issues/4317)) - Avoid packaging _trial_temp directory in -py3 debian packages ([\#4326](https://github.com/matrix-org/synapse/issues/4326)) - Check jinja version for consent resource ([\#4327](https://github.com/matrix-org/synapse/issues/4327)) - fix NPE in /messages by checking if all events were filtered out ([\#4330](https://github.com/matrix-org/synapse/issues/4330)) - Fix `python -m synapse.config` on Python 3. ([\#4356](https://github.com/matrix-org/synapse/issues/4356)) Deprecations and Removals ------------------------- - Remove the deprecated v1/register API on Python 2. It was never ported to Python 3. ([\#4334](https://github.com/matrix-org/synapse/issues/4334)) Internal Changes ---------------- - Getting URL previews of IP addresses no longer fails on Python 3. ([\#4215](https://github.com/matrix-org/synapse/issues/4215)) - drop undocumented dependency on dateutil ([\#4266](https://github.com/matrix-org/synapse/issues/4266)) - Update the example systemd config to use a virtualenv ([\#4273](https://github.com/matrix-org/synapse/issues/4273)) - Update link to kernel DCO guide ([\#4274](https://github.com/matrix-org/synapse/issues/4274)) - Make isort tox check print diff when it fails ([\#4283](https://github.com/matrix-org/synapse/issues/4283)) - Log room_id in Unknown room errors ([\#4297](https://github.com/matrix-org/synapse/issues/4297)) - Documentation improvements for coturn setup. Contributed by Krithin Sitaram. ([\#4333](https://github.com/matrix-org/synapse/issues/4333)) - Update pull request template to use absolute links ([\#4341](https://github.com/matrix-org/synapse/issues/4341)) - Update README to not lie about required restart when updating TLS certificates ([\#4343](https://github.com/matrix-org/synapse/issues/4343)) - Update debian packaging for compatibility with transitional package ([\#4349](https://github.com/matrix-org/synapse/issues/4349)) - Fix command hint to generate a config file when trying to start without a config file ([\#4353](https://github.com/matrix-org/synapse/issues/4353)) - Add better logging for unexpected errors while sending transactions ([\#4358](https://github.com/matrix-org/synapse/issues/4358))
| * Fixed line lengthNathan Pennie2018-12-191-1/+5
| |
| * Fix the variable names used for account_dataNathan Pennie2018-12-191-3/+3
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-10-261-54/+43
|\|
| * Refactor state group lookup to reduce DB hits (#4011)Erik Johnston2018-10-251-54/+43
| | | | | | | | | | | | | | | | Currently when fetching state groups from the data store we make two hits two the database: once for members and once for non-members (unless request is filtered to one or the other). This adds needless load to the datbase, so this PR refactors the lookup to make only a single database hit.
* | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixesAmber Brown2018-10-151-8/+31
|\|
| * Add description to counter metricErik Johnston2018-10-101-1/+5
| |
| * Track number of non-empty sync responses insteadErik Johnston2018-10-101-9/+15
| |
| * Append _total to metric and fix up spellingErik Johnston2018-10-101-2/+2
| |
| * Add metric to count lazy member sync requestsErik Johnston2018-10-091-6/+20
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-10-021-2/+2
|\|
| * Fix lazy loaded sync with rejected state eventsErik Johnston2018-10-011-2/+2
| | | | | | | | | | | | | | | | In particular, we assume that the name and canonical alias events in the state have not been rejected. In practice this may not be the case (though we should probably think about fixing that) so lets ensure that we gracefully handle that case, rather than 404'ing the sync request like we do now.
* | Merge branch 'develop' into matrix-org-hotfixesMatthew Hodgson2018-09-261-5/+8
|\|
| * Only lazy load self-members on initial syncMatthew Hodgson2018-09-251-5/+8
| | | | | | Given we have disabled lazy loading for incr syncs in #3840, we can make self-LL more efficient by only doing it on initial sync. Also adds a bounds check for if/when we change our mind, so that we don't try to include LL members on sync responses with no timeline.
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesMichael Kaye2018-09-241-0/+4
|\|
| * Always LL ourselves if we're in a room to simplify clients (#3916)Matthew Hodgson2018-09-201-0/+4
| | | | | | | | Should fix https://github.com/vector-im/riot-web/issues/7209
* | Merge branch 'develop' into matrix-org-hotfixesMatthew Hodgson2018-09-121-4/+17
|\|
| * show heroes if a room has a 'deleted' name/canonical_alias (#3851)Matthew Hodgson2018-09-121-2/+15
| |
| * argh pep8Matthew Hodgson2018-09-121-1/+1
| |
| * correctly log gappy sync metricsMatthew Hodgson2018-09-121-1/+1
| |
| * fix loglineMatthew Hodgson2018-09-121-1/+1
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-09-121-30/+88
|\|
| * Speed up lazy loading (#3827)Matthew Hodgson2018-09-121-30/+88
| | | | | | | | | | * speed up room summaries by pulling their data from room_memberships rather than room state * disable LL for incr syncs, and log incr sync stats (#3840)
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-09-111-12/+32
|\|
| * Don't send empty tags list down syncErik Johnston2018-09-061-0/+5
| |
| * Send existing room tags down sync on joinErik Johnston2018-09-061-0/+8
| | | | | | | | | | | | | | | | When a user joined a room any existing tags were not sent down the sync stream. Ordinarily this isn't a problem because the user needs to be in the room to have set tags in it, however synapse will sometimes add tags for a user to a room, e.g. for server notices, which need to come down sync.
| * Merge pull request #3795 from matrix-org/erikj/faster_sync_stateAmber Brown2018-09-071-8/+8
| |\ | | | | | | User iter* during sync state calculations
| | * User iter* during sync state calculationsErik Johnston2018-09-051-8/+8
| | |
| * | Port handlers/ to Python 3 (#3803)Amber Brown2018-09-071-3/+3
| |/
| * don't return non-LL-member state in incremental sync state blocks (#3760)Matthew Hodgson2018-08-281-1/+8
| | | | | | don't return non-LL-member state in incremental sync state blocks
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-08-201-1/+2
|\|
| * Integrate presence from hotfixes (#3694)Amber Brown2018-08-181-1/+2
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-08-161-10/+149
|\|
| * initial cut at a room summary API (#3574)Matthew Hodgson2018-08-161-10/+149
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-08-151-3/+12
|\|
| * Merge pull request #3670 from matrix-org/neilj/mau_sync_blockNeil Johnson2018-08-141-2/+11
| |\ | | | | | | Block ability to read via sync if mau limit exceeded
| | * only block on sync where user is not part of the mau cohortNeil Johnson2018-08-091-1/+6
| | |
| | * block sync if auth checks failNeil Johnson2018-08-091-7/+5
| | |
| | * sync auth blockingNeil Johnson2018-08-081-5/+11
| | |
| * | Rename async to async_helpers because `async` is a keyword on Python 3.7 (#3678)Amber Brown2018-08-101-1/+1
| |/
* | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-08-061-24/+150
|\|
| * Deduplicate redundant lazy-loaded members (#3331)Matthew Hodgson2018-07-261-25/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * attempt at deduplicating lazy-loaded members as per the proposal; we can deduplicate redundant lazy-loaded members which are sent in the same sync sequence. we do this heuristically rather than requiring the client to somehow tell us which members it has chosen to cache, by instead caching the last N members sent to a client, and not sending them again. For now we hardcode N to 100. Each cache for a given (user,device) tuple is in turn cached for up to X minutes (to avoid the caches building up). For now we hardcode X to 30. * add include_redundant_members filter option & make it work * remove stale todo * add tests for _get_some_state_from_cache * incorporate review
| * clarify comment on p_idsMatthew Hodgson2018-07-241-1/+2
| |
| * rather than adding ll_ids, remove them from p_idsMatthew Hodgson2018-07-241-5/+6
| |
| * incorporate more reviewMatthew Hodgson2018-07-241-3/+9
| |
| * incorporate reviewMatthew Hodgson2018-07-231-40/+27
| |
| * incorporate reviewMatthew Hodgson2018-07-191-17/+27
| |
| * add a filtered_types param to limit filtering to specific typesMatthew Hodgson2018-07-191-29/+36
| |
| * merge develop pydoc for _get_state_for_groupsMatthew Hodgson2018-07-191-13/+13
| |\
| * \ Merge branch 'develop' into matthew/filter_membersMatthew Hodgson2018-06-041-4/+14
| |\ \
| * | | more commentsMatthew Hodgson2018-06-041-0/+7
| | | |
| * | | add pydocMatthew Hodgson2018-05-291-5/+13
| | | |
| * | | merge developMatthew Hodgson2018-05-291-24/+41
| |\ \ \
| * | | | make lazy_load_members configurable in filtersMatthew Hodgson2018-03-191-9/+9
| | | | |
| * | | | reshuffle todo & commentsMatthew Hodgson2018-03-191-2/+10
| | | | |
| * | | | only get member state IDs for incremental syncs if we're filteringMatthew Hodgson2018-03-181-5/+5
| | | | |
| * | | | remove debugMatthew Hodgson2018-03-161-4/+0
| | | | |
| * | | | fix tsm search againMatthew Hodgson2018-03-161-5/+4
| | | | |
| * | | | add state_ids for timeline entriesMatthew Hodgson2018-03-161-4/+14
| | | | |
| * | | | simplify timeline_start_membersMatthew Hodgson2018-03-161-14/+13
| | | | |
| * | | | make incr syncs workMatthew Hodgson2018-03-161-3/+4
| | | | |
| * | | | add copyright to nudge CIMatthew Hodgson2018-03-141-1/+2
| | | | |
| * | | | oopsMatthew Hodgson2018-03-131-1/+1
| | | | |
| * | | | make it workMatthew Hodgson2018-03-131-3/+3
| | | | |
| * | | | ensure we always include the members for a given timeline blockMatthew Hodgson2018-03-131-4/+32
| | | | |
| * | | | typosMatthew Hodgson2018-03-111-2/+2
| | | | |
| * | | | WIP experiment in lazyloading room membersMatthew Hodgson2018-03-111-12/+31
| | | | |
* | | | | Merge branch 'develop' into matrix-org-hotfixesRichard van der Hoff2018-07-101-12/+12
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | run isortAmber Brown2018-07-091-12/+12
| | | | |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixesErik Johnston2018-06-251-1/+1
|\| | | |
| * | | | typoMatthew Hodgson2018-06-251-1/+1
| | |_|/ | |/| |
* | | | increase sync cache to 2 minuteshera2018-06-221-1/+4
| | | | | | | | | | | | | | | | | | | | to give synchrotrons being hammered by repeating initial /syncs to get more chance to actually complete and avoid a DoS
* | | | Disable presenceErik Johnston2018-06-221-1/+1
|/ / / | | | | | | | | | | | | This reverts commit 0ebd376a53bb75ade6d65db2d716478758c2c9f0 and disables presence a bit more
* | | Consistently use six's iteritems and wrap lazy keys/values in list() if ↵Amber Brown2018-05-311-3/+3
| | | | | | | | | | | | they're not meant to be lazy (#3307)
* | | Update some comments and docstrings in SyncHandlerRichard van der Hoff2018-05-291-1/+11
| |/ |/|
* | replace some iteritems with sixAdrian Tschira2018-05-191-6/+8
| | | | | | | | Signed-off-by: Adrian Tschira <nota@notafile.com>
* | Add comment to sync as to why code path is splitErik Johnston2018-05-091-0/+5
| |
* | Refactor sync APIs to reuse pagination APIErik Johnston2018-05-091-6/+13
| | | | | | | | | | | | The sync API often returns events in a topological rather than stream ordering, e.g. when the user joined the room or on initial sync. When this happens we can reuse existing pagination storage functions.
* | Refactor get_recent_events_for_room return typeErik Johnston2018-05-091-1/+1
| | | | | | | | | | | | There is no reason to return a tuple of tokens when the last token is always the token passed as an argument. Changing it makes it consistent with other storage APIs
* | Merge pull request #3107 from NotAFile/py3-bool-nonzeroRichard van der Hoff2018-04-201-0/+7
|\ \ | | | | | | add __bool__ alias to __nonzero__ methods
| * | add __bool__ alias to __nonzero__ methodsAdrian Tschira2018-04-151-0/+7
| | | | | | | | | | | | Signed-off-by: Adrian Tschira <nota@notafile.com>
* | | Refactor ResponseCache usageRichard van der Hoff2018-04-121-10/+6
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a `.wrap` method to ResponseCache which wraps up the boilerplate of a (get, set) pair, and then use it throughout the codebase. This will be largely non-functional, but does include the following functional changes: * federation_server.on_context_state_request: drops use of _server_linearizer which looked redundant and could cause incorrect cache misses by yielding between the get and the set. * RoomListHandler.get_remote_public_room_list(): fixes logcontext leaks * the wrap function includes some logging. I'm hoping this won't be too noisy on production.
* / Add metrics for ResponseCacheRichard van der Hoff2018-04-101-1/+1
|/
* Fix up log messageErik Johnston2018-03-071-1/+1
|
* Fix typoErik Johnston2018-03-071-2/+2
|
* Fix race in sync when joining roomErik Johnston2018-03-071-28/+75
| | | | | | | | | | | The race happens when the user joins a room at the same time as doing a sync. We fetch the current token and then get the rooms the user is in. If the join happens after the current token, but before we get the rooms we end up sending down a partial room entry in the sync. This is fixed by looking at the stream ordering of the membership returned by get_rooms_for_user, and handling the case when that stream ordering is after the current token.
* Remove ability for AS users to call /events and /syncErik Johnston2018-03-051-4/+6
| | | | | | | This functionality has been deprecated for a while as well as being broken for a while. Instead of fixing it lets just remove it entirely. See: https://github.com/matrix-org/matrix-doc/issues/1144
* Do logcontexts outside ResponseCacheErik Johnston2017-10-251-3/+3
|
* Merge branch 'develop' into erikj/groups_mergedDavid Baker2017-10-021-7/+32
|\
| * Refactor to speed up incremental syncsErik Johnston2017-09-251-5/+18
| |
| * Fix device list when rejoining room (#2461)Erik Johnston2017-09-221-2/+14
| |
* | Ensure that creator of group sees group down /syncErik Johnston2017-09-191-0/+1
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/groups_mergedErik Johnston2017-09-191-21/+105
|\|
| * Don't filter out current state events from timelineErik Johnston2017-09-181-0/+7
| |
| * Actually hook leave notifs upErik Johnston2017-09-141-2/+3
| |
| * Get left roomsErik Johnston2017-09-131-3/+32
| |
| * In sync handle device lists for newly joined/left roomsErik Johnston2017-09-121-2/+10
| |
| * Add left section to /keys/changesErik Johnston2017-09-081-1/+1
| |
| * Send down device list change notif when member leaves/rejoins roomErik Johnston2017-09-071-12/+52
| |
| * Use less DB for device list handling in syncErik Johnston2017-07-121-8/+7
| |
* | Correctly add joins to correct segmentErik Johnston2017-07-241-1/+1
| |
* | Remember to cast to boolErik Johnston2017-07-201-1/+1
| |
* | Add groups to sync streamErik Johnston2017-07-201-1/+63
|/
* Add count of one time keys to sync streamErik Johnston2017-05-191-0/+11
|
* CommentsErik Johnston2017-03-161-2/+2
|
* CommentErik Johnston2017-03-161-3/+8
|
* Don't recreate so many setsErik Johnston2017-03-161-11/+7
|
* Implement no op for room stream in syncErik Johnston2017-03-161-4/+47
|
* Format presence events on the edges instead of reformatting them multiple timesErik Johnston2017-03-151-7/+7
|
* Noop repated delete device inbox calls from /syncErik Johnston2017-03-101-3/+3
|
* Measure new device list stuffErik Johnston2017-02-021-1/+2
|