diff options
author | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-05-16 05:36:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 11:36:54 +0100 |
commit | d2d48cce85556753f8443d72aafe697c477c217b (patch) | |
tree | 845b22679ca35f5d3f49c2353f6f2e3577ffa52a /changelog.d | |
parent | Fix request path for `federation_whitelist_endpoint_enabled` option in docume... (diff) | |
download | synapse-d2d48cce85556753f8443d72aafe697c477c217b.tar.xz |
Refactor Sync handler to be able to return different sync responses (`SyncVersion`) (#17200)
Refactor Sync handler to be able to be able to return different sync responses (`SyncVersion`). Preparation to be able support sync v2 and a new Sliding Sync `/sync/e2ee` endpoint which returns a subset of sync v2. Split upon request: https://github.com/element-hq/synapse/pull/17167#discussion_r1601497279 Split from https://github.com/element-hq/synapse/pull/17167 where we will add `SyncVersion.E2EE_SYNC` and a new type of sync response.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/17200.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17200.misc b/changelog.d/17200.misc new file mode 100644 index 0000000000..a02b315041 --- /dev/null +++ b/changelog.d/17200.misc @@ -0,0 +1 @@ +Prepare sync handler to be able to return different sync responses (`SyncVersion`). |