# HG changeset patch # User Anton Shestakov # Date 1696437873 10800 # Node ID ba8354de1c4da36c6bd2bc985c738f4f4859419c # Parent 30d0d3d92c8d022b77776b2768c0a28852c6fa32 topic: invalidate topic namespace cache in repo.invalidatecaches() diff -r 30d0d3d92c8d -r ba8354de1c4d CHANGELOG --- a/CHANGELOG Fri Aug 25 16:01:28 2023 -0300 +++ b/CHANGELOG Wed Oct 04 13:44:33 2023 -0300 @@ -1,6 +1,13 @@ Changelog ========= +11.0.3 - in progress +-------------------- + +topic (1.0.3) + + * topic: invalidate topic namespace cache in repo.invalidatecaches() + 11.0.2 -- 2023-07-05 -------------------- diff -r 30d0d3d92c8d -r ba8354de1c4d hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Fri Aug 25 16:01:28 2023 -0300 +++ b/hgext3rd/topic/__init__.py Wed Oct 04 13:44:33 2023 -0300 @@ -636,6 +636,7 @@ closed=closed) def invalidatecaches(self): + self._tnscache.clear() self._topiccache.clear() super(topicrepo, self).invalidatecaches()