reviewboard: mark extensions as compatible with 4.3 (bug 1413628); r?glob draft
authorGregory Szorc <gps@mozilla.com>
Wed, 01 Nov 2017 16:03:06 -0700
changeset 11781 d877a7a1e44d07464cefc284848fab67ac4fa61d
parent 11780 2dbcfe4f0ee4e956cfc35a3ad2973297a0e6aa3f
child 11782 2d983d11f429f13bd78eedab1df91ed5cead68ce
push id1816
push usergszorc@mozilla.com
push dateThu, 02 Nov 2017 19:46:54 +0000
reviewersglob
bugs1413628
reviewboard: mark extensions as compatible with 4.3 (bug 1413628); r?glob All tests now pass on 4.3. Strictly speaking, we're not sure if the server works with 4.3 because we haven't upgraded the server to Mercurial 4.3. But we need to bump the compatibility of both extensions so the test runner runs tests for 4.3. MozReview-Commit-ID: I0k0x5qfTTO
hgext/reviewboard/client.py
hgext/reviewboard/server.py
--- a/hgext/reviewboard/client.py
+++ b/hgext/reviewboard/client.py
@@ -77,17 +77,17 @@ from mozhg.auth import (
     getbugzillaauth,
     configureautobmoapikeyauth,
 )
 from mozhg.rewrite import (
     newparents,
     replacechangesets,
 )
 
-testedwith = '4.1 4.2'
+testedwith = '4.1 4.2 4.3'
 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'):
--- a/hgext/reviewboard/server.py
+++ b/hgext/reviewboard/server.py
@@ -49,17 +49,17 @@ execfile(os.path.join(OUR_DIR, '..', 'bo
 
 with demandimport.deactivated():
     try:
         import hgrb.proto
     except ImportError:
         sys.path.insert(0, OUR_DIR)
         import hgrb.proto
 
-testedwith = '4.1 4.2'
+testedwith = '4.1 4.2 4.3'
 minimumhgversion = '4.1'
 
 cmdtable = {}
 
 # Mercurial 4.3 introduced registrar.command as a replacement for
 # cmdutil.command.
 if util.safehasattr(registrar, 'command'):
     command = registrar.command(cmdtable)