Skip to content
Snippets Groups Projects
  1. May 05, 2021
    • DeepBlueV7.X's avatar
      Leave out optional keys from /sync (#9919) · e9eb3549
      DeepBlueV7.X authored
      
      This leaves out all optional keys from /sync. This should be fine for all clients tested against conduit already, but it may break some clients, as such we should check, that at least most of them don't break horribly and maybe back out some of the individual changes. (We can probably always leave out groups for example, while the others may cause more issues.)
      
      Signed-off-by: default avatarNicolas Werner <nicolas.werner@hotmail.de>
      Unverified
      e9eb3549
  2. Apr 29, 2021
  3. Apr 28, 2021
  4. Apr 27, 2021
  5. Apr 23, 2021
  6. Apr 22, 2021
  7. Apr 20, 2021
  8. Apr 19, 2021
  9. Apr 14, 2021
  10. Apr 13, 2021
  11. Apr 12, 2021
  12. Apr 09, 2021
  13. Apr 08, 2021
  14. Apr 06, 2021
    • Andrew Morgan's avatar
      Add a Synapse Module for configuring presence update routing (#9491) · 04819239
      Andrew Morgan authored
      At the moment, if you'd like to share presence between local or remote users, those users must be sharing a room together. This isn't always the most convenient or useful situation though.
      
      This PR adds a module to Synapse that will allow deployments to set up extra logic on where presence updates should be routed. The module must implement two methods, `get_users_for_states` and `get_interested_users`. These methods are given presence updates or user IDs and must return information that Synapse will use to grant passing presence updates around.
      
      A method is additionally added to `ModuleApi` which allows triggering a set of users to receive the current, online presence information for all users they are considered interested in. This is the equivalent of that user receiving presence information during an initial sync. 
      
      The goal of this module is to be fairly generic and useful for a variety of applications, with hard requirements being:
      
      * Sending state for a specific set or all known users to a defined set of local and remote users.
      * The ability to trigger an initial sync for specific users, so they receive all current state.
      Unverified
      04819239
    • Andrew Morgan's avatar
    • Patrick Cloke's avatar
  15. Apr 05, 2021
  16. Apr 01, 2021
  17. Mar 31, 2021
  18. Mar 30, 2021
    • Richard van der Hoff's avatar
      Replace `room_invite_state_types` with `room_prejoin_state` (#9700) · f02663c4
      Richard van der Hoff authored
      `room_invite_state_types` was inconvenient as a configuration setting, because
      anyone that ever set it would not receive any new types that were added to the
      defaults. Here, we deprecate the old setting, and replace it with a couple of
      new settings under `room_prejoin_state`.
      Unverified
      f02663c4
    • Erik Johnston's avatar
      Make RateLimiter class check for ratelimit overrides (#9711) · 963f4309
      Erik Johnston authored
      This should fix a class of bug where we forget to check if e.g. the appservice shouldn't be ratelimited.
      
      We also check the `ratelimit_override` table to check if the user has ratelimiting disabled. That table is really only meant to override the event sender ratelimiting, so we don't use any values from it (as they might not make sense for different rate limits), but we do infer that if ratelimiting is disabled for the user we should disabled all ratelimits.
      
      Fixes #9663
      Unverified
      963f4309
  19. Mar 29, 2021
Loading