summary refs log tree commit diff
path: root/changelog.d/16932.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.105.0rc1 v1.105.0rc1Andrew Morgan2024-04-111-1/+0
|
* Fix bug in calculating state for non-gappy syncs (#16942)Richard van der Hoff2024-04-041-1/+1
| | | | | | | | | Unfortunately, the optimisation we applied here for non-gappy syncs is not actually valid. Fixes https://github.com/element-hq/synapse/issues/16941. ~~Based on https://github.com/element-hq/synapse/pull/16930.~~ Requires https://github.com/matrix-org/sytest/pull/1374.
* Fix bug in `/sync` response for archived rooms (#16932)Richard van der Hoff2024-04-041-0/+1
This PR fixes a very, very niche edge-case, but I've got some more work coming which will otherwise make the problem worse. The bug happens when the syncing user leaves a room, and has a sync filter which includes "left" rooms, but sets the timeline limit to 0. In that case, the state returned in the `state` section is calculated incorrectly. The fix is to pass a token corresponding to the point that the user leaves the room through to `compute_state_delta`.