# HG changeset patch # User Pierre-Yves David # Date 1652919856 -3600 # Node ID 801ef401597e8e912894c78d701c3e1944ff02be # Parent ead8e5dddb3cefb0f0ed5630799b7372b259d9dd 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. diff -r ead8e5dddb3c -r 801ef401597e mercurial/upgrade_utils/actions.py --- 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):