summary refs log tree commit diff
path: root/changelog.d/14670.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.74.0rc1Sean Quah2022-12-131-1/+0
|
* Fix missing cache invalidation in application service code (#14670)Sean Quah2022-12-121-0/+1
#11915 introduced the `@cached` `is_interested_in_room` method in Synapse 1.55.0, which depends upon `get_aliases_for_room`. Add a missing cache invalidation callback so that the `is_interested_in_room` cache is invalidated when `get_aliases_for_room` is invalidated. #13787 made `get_rooms_for_user` `@cached`. Add a missing cache invalidation callback so that the `is_interested_in_presence` cache is invalidated when `get_rooms_for_user` is invalidated. Signed-off-by: Sean Quah <seanq@matrix.org>