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>2021-09-08 10:37:50 +0100
committerGitHub <noreply@github.com>2021-09-08 10:37:50 +0100
commit5724883ac23a45b25e6cdcc65616785d68e56c7a (patch)
tree86477c3da95aa04fce73d9cd491abdbed6d1c756 /changelog.d
parentMerge branch 'master' into develop (diff)
downloadsynapse-5724883ac23a45b25e6cdcc65616785d68e56c7a.tar.xz
Persist auth events before the events that rely on them (#10771)
If we're persisting an event E which has auth_events A1, A2, then we ought to make sure that we correctly auth
and persist A1 and A2, before we blindly accept E.

This PR does part of that - it persists the auth events first - but it does not fully solve the problem, because we
still don't check that the auth events weren't rejected.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/10771.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10771.misc b/changelog.d/10771.misc
new file mode 100644
index 0000000000..9a765435db
--- /dev/null
+++ b/changelog.d/10771.misc
@@ -0,0 +1 @@
+Clean up some of the federation event authentication code for clarity.