diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-10-05 13:23:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 13:23:29 +0100 |
commit | 3a5b0cbe7ade000245695ec97c13ab5cb3565dc2 (patch) | |
tree | 21a58fd5ae2c65e19745a5d3be495418b0e276d9 /changelog.d | |
parent | Host `cache_joined_hosts_for_event` to caller (#10986) (diff) | |
download | synapse-3a5b0cbe7ade000245695ec97c13ab5cb3565dc2.tar.xz |
Ensure that we reject events which use rejected events for auth (#10956)
When we consider whether to accept events, we should not accept those which depend on rejected events for their auth events. This (together with earlier changes such as https://github.com/matrix-org/synapse/pull/10771 and https://github.com/matrix-org/synapse/pull/10896) forms a partial fix to https://github.com/matrix-org/synapse/issues/9595. There still remain code paths where we do not check the `auth_events` at all.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/10956.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10956.bugfix b/changelog.d/10956.bugfix new file mode 100644 index 0000000000..13b8e5983b --- /dev/null +++ b/changelog.d/10956.bugfix @@ -0,0 +1 @@ +Fix a long-standing bug which meant that events received over federation were sometimes incorrectly accepted into the room state. |