summary refs log tree commit diff
path: root/changelog.d/11001.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.46.0rc1Sean Quah2021-10-261-1/+0
|
* Check auth on received events' auth_events (#11001)Richard van der Hoff2021-10-181-0/+1
Currently, when we receive an event whose auth_events differ from those we expect, we state-resolve between the two state sets, and check that the event passes auth based on the resolved state. This means that it's possible for us to accept events which don't pass auth at their declared auth_events (or where the auth events themselves were rejected), leading to problems down the line like #10083. This change means we will: * ignore any events where we cannot find the auth events * reject any events whose auth events were rejected * reject any events which do not pass auth at their declared auth_events. Together with a whole raft of previous work, this is a partial fix to #9595. Fixes #6643. Based on #11009.