# HG changeset patch # User Pierre-Yves David # Date 2022-05-19 00:24:16 # 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 --git a/mercurial/upgrade_utils/actions.py b/mercurial/upgrade_utils/actions.py --- a/mercurial/upgrade_utils/actions.py +++ b/mercurial/upgrade_utils/actions.py @@ -380,6 +380,9 @@ class changelogv2(requirementformatvaria 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):