changeset 49186:801ef401597e

changelog-v2: mark upgrade action as changelog only We don't need to recompute the others revlog to add the changelog-v2 feature. This does not have much effect in practice as the `copies-sdc` upgrade still triggers the other revlogs. This will be fixed in the next changeset.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 19 May 2022 01:24:16 +0100
parents ead8e5dddb3c
children 04a812f507be
files mercurial/upgrade_utils/actions.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/upgrade_utils/actions.py	Thu May 19 01:40:37 2022 +0100
+++ b/mercurial/upgrade_utils/actions.py	Thu May 19 01:24:16 2022 +0100
@@ -380,6 +380,9 @@
     description = _(b'An iteration of the revlog focussed on changelog needs.')
     upgrademessage = _(b'quite experimental')
 
+    touches_filelogs = False
+    touches_manifests = False
+
 
 @registerformatvariant
 class removecldeltachain(formatvariant):