# HG changeset patch # User Martin von Zweigbergk # Date 2016-01-19 23:32:32 # Node ID 3b2ac2115464477040b21efd10c7ce69c8ba513f # Parent c0f11347b107a8159f671cff1c7ee5171176127b changegroup: introduce safeversion() In a few places (at least repair.py and shelve.py), we want to find the best changegroup version that we can assume users of the repo will understand. For example, we choose version 01 by default, but if it's a generaldelta repo, we expect clients to support version 02 anyway, so we choose that for new bundles (for e.g. "hg strip"). Let's create a helper for this functionality in changegroup, so we can reuse it elsewhere later. diff --git a/mercurial/changegroup.py b/mercurial/changegroup.py --- a/mercurial/changegroup.py +++ b/mercurial/changegroup.py @@ -961,6 +961,15 @@ def supportedversions(repo): versions.discard('03') return versions +def safeversion(repo): + # Finds the smallest version that it's safe to assume clients of the repo + # will support. + versions = supportedversions(repo) + if 'generaldelta' in repo.requirements: + versions.discard('01') + assert versions + return min(versions) + def getbundler(version, repo, bundlecaps=None): assert version in supportedversions(repo) return _packermap[version][0](repo, bundlecaps)