changegroup: introduce safeversion() stable
authorMartin von Zweigbergk <martinvonz@google.com>
Tue, 19 Jan 2016 15:32:32 -0800
branchstable
changeset 27929 3b2ac2115464
parent 27928 c0f11347b107
child 27930 7cbb3a01fa38
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.
mercurial/changegroup.py
--- a/mercurial/changegroup.py	Tue Jan 19 14:27:18 2016 -0800
+++ b/mercurial/changegroup.py	Tue Jan 19 15:32:32 2016 -0800
@@ -961,6 +961,15 @@
         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)