summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2022-02-17 11:59:26 +0000
committerGitHub <noreply@github.com>2022-02-17 11:59:26 +0000
commit696acd35151ff32bb69e555baee4e584c504d4d6 (patch)
tree2ee29bea8c8c75353abb069e9a26e9c9e32a9883 /changelog.d
parentPrevent duplicate push notifications for room reads (#11835) (diff)
downloadsynapse-696acd35151ff32bb69e555baee4e584c504d4d6.tar.xz
`send_join` response: get create event from `state`, not `auth_chain` (#12005)
msc3706 proposes changing the `/send_join` response:

> Any events returned within `state` can be omitted from `auth_chain`.

Currently, we rely on `m.room.create` being returned in `auth_chain`, but since
the `m.room.create` event must necessarily be part of the state, the above
change will break this.

In short, let's look for `m.room.create` in `state` rather than `auth_chain`.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/12005.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12005.misc b/changelog.d/12005.misc
new file mode 100644
index 0000000000..45e21dbe59
--- /dev/null
+++ b/changelog.d/12005.misc
@@ -0,0 +1 @@
+Preparation for faster-room-join work: when parsing the `send_join` response, get the `m.room.create` event from `state`, not `auth_chain`.