summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-11-28 09:40:17 -0500
committerGitHub <noreply@github.com>2022-11-28 14:40:17 +0000
commitd748bbc8f8268d2e8457374d529adafb20b9f5f4 (patch)
treea7705564d3ce1bcbe2eaf59167d4955640102191 /changelog.d
parentRemove option to skip locking of tables during emulated upserts (#14469) (diff)
downloadsynapse-d748bbc8f8268d2e8457374d529adafb20b9f5f4.tar.xz
Include thread information when sending receipts over federation. (#14466)
Include the thread_id field when sending read receipts over
federation. This might result in the same user having multiple
read receipts per-room, meaning multiple EDUs must be sent
to encapsulate those receipts.

This restructures the PerDestinationQueue APIs to support
multiple receipt EDUs, queue_read_receipt now becomes linear
time in the number of queued threaded receipts in the room for
the given user, it is expected this is a small number since receipt
EDUs are sent as filler in transactions.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/14466.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14466.bugfix b/changelog.d/14466.bugfix
new file mode 100644
index 0000000000..82f6e6b68e
--- /dev/null
+++ b/changelog.d/14466.bugfix
@@ -0,0 +1 @@
+Fix a bug introduced in Synapse 1.70.0 where a receipt's thread ID was not sent over federation.