Skip to content
Snippets Groups Projects
  1. Jun 16, 2021
  2. Jun 11, 2021
  3. Jun 10, 2021
  4. Jun 08, 2021
    • Dan Callahan's avatar
      Name release branches just after major.minor (#10013) · 7dc14730
      Dan Callahan authored
      
      With the prior format, 1.33.0 / 1.33.1 / 1.33.2 got separate branches:
      
          release-v1.33.0
          release-v1.33.1
          release-v1.33.2
      
      Under the new model, all three would share a common branch:
      
          release-v1.33
      
      As before, RCs and actual releases exist as tags on these branches.
      
      This better reflects our support model, e.g., that the "1.33" series had
      a formal release followed by two patches / updates.
      
      Signed-off-by: default avatarDan Callahan <danc@element.io>
      Unverified
      7dc14730
  5. Jun 07, 2021
  6. Jun 03, 2021
  7. Jun 02, 2021
  8. May 27, 2021
  9. May 26, 2021
  10. May 24, 2021
  11. May 20, 2021
  12. May 19, 2021
  13. May 18, 2021
  14. May 14, 2021
  15. May 13, 2021
  16. May 11, 2021
  17. May 05, 2021
    • Erik Johnston's avatar
      Limit how often GC happens by time. (#9902) · 1fb9a2d0
      Erik Johnston authored
      Synapse can be quite memory intensive, and unless care is taken to tune
      the GC thresholds it can end up thrashing, causing noticable performance
      problems for large servers. We fix this by limiting how often we GC a
      given generation, regardless of current counts/thresholds.
      
      This does not help with the reverse problem where the thresholds are set
      too high, but that should only happen in situations where they've been
      manually configured.
      
      Adds a `gc_min_seconds_between` config option to override the defaults.
      
      Fixes #9890.
      Unverified
      1fb9a2d0
  18. May 04, 2021
  19. Apr 29, 2021
  20. Apr 20, 2021
  21. Apr 19, 2021
  22. Apr 13, 2021
  23. 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
    • Erik Johnston's avatar
  24. Apr 01, 2021
  25. Mar 31, 2021
  26. Mar 30, 2021
  27. Mar 29, 2021
    • Richard van der Hoff's avatar
      Update the OIDC sample config (#9695) · 4bbd5354
      Richard van der Hoff authored
      I've reiterated the advice about using `oidc` to migrate, since I've seen a few
      people caught by this.
      
      I've also removed a couple of the examples as they are duplicating the OIDC
      documentation, and I think they might be leading people astray.
      Unverified
      4bbd5354
  28. Mar 26, 2021
Loading