reviewboard: drop support for Mercurial 3.9 and 4.0 (bug 1413628); r?glob draft
authorGregory Szorc <gps@mozilla.com>
Wed, 01 Nov 2017 11:08:40 -0700
changeset 11777 85847ac0ec0ac84621f1f6927c535b5cb5ef6eec
parent 11776 2d6de43669aba364bb0bd488f61127b45a93b9fd
child 11778 b7562c0562df9d9f49778d3441da5afffd400a84
push id1816
push usergszorc@mozilla.com
push dateThu, 02 Nov 2017 19:46:54 +0000
reviewersglob
bugs1413628
reviewboard: drop support for Mercurial 3.9 and 4.0 (bug 1413628); r?glob Our policy is to support the last year's worth of releases of Mercurial. 4.4 comes out today. So that means our minimum supported version should be 4.1. MozReview-Commit-ID: 2S2CqKhLNf5
hgext/reviewboard/client.py
--- a/hgext/reviewboard/client.py
+++ b/hgext/reviewboard/client.py
@@ -77,18 +77,18 @@ from mozhg.auth import (
     getbugzillaauth,
     configureautobmoapikeyauth,
 )
 from mozhg.rewrite import (
     newparents,
     replacechangesets,
 )
 
-testedwith = '3.9 4.0 4.1 4.2'
-minimumhgversion = '3.9'
+testedwith = '4.1 4.2'
+minimumhgversion = '4.1'
 buglink = 'https://bugzilla.mozilla.org/enter_bug.cgi?product=MozReview&component=Integration%3A%20Mercurial'
 
 cmdtable = {}
 
 # Mercurial 4.3 introduced registrar.command as a replacement for
 # cmdutil.command.
 if util.safehasattr(registrar, 'command'):
     command = registrar.command(cmdtable)