test-compat: merge future 6.7.0 in mercurial-3.9 branch mercurial-3.9
authorPierre-Yves David <pierre-yves.david@octobus.net>
Fri, 20 Oct 2017 22:56:21 +0200
branchmercurial-3.9
changeset 3120 add76a5eb1ae
parent 3112 706402d70b3f (current diff)
parent 3119 088ea9b74e47 (diff)
child 3121 180494f588e2
child 3131 c71e371c797b
test-compat: merge future 6.7.0 in mercurial-3.9 branch
tests/test-evolve-templates.t
tests/test-obsolete.t
--- a/CHANGELOG	Fri Oct 20 18:44:52 2017 +0200
+++ b/CHANGELOG	Fri Oct 20 22:56:21 2017 +0200
@@ -4,17 +4,15 @@
 6.8.0 -- in progress
 ----------------
 
+  * compatibility with Mercurial 4.4
+    (use upstream implementation for obsfate and effect-flags starting hg 4.4+)
+  * pager: pager support to `obslog` and `evolve --list`
+
 topic(0.4.0)
 
   * topic: fix handling of bookmarks and phases while changing topics.
-
-6.7.2 -- in progress
-----------------
-
-  * pager: pager support to `obslog` and `evolve --list`
-
-topic(0.3.2)
-
+           (mercurial 4.2 and above only)
+  * topic: fix 'topic-mode' behavior when amending
   * pager: pager support to `topics` and `stack`
 
 6.7.1 -- 2017-10-10
--- a/hgext3rd/evolve/obshistory.py	Fri Oct 20 18:44:52 2017 +0200
+++ b/hgext3rd/evolve/obshistory.py	Fri Oct 20 22:56:21 2017 +0200
@@ -815,13 +815,6 @@
             # Replace the old one
             obsutil.successorsetverb = old
 
-# XXX temporary disable operation to clarify tests changes
-if util.safehasattr(obsutil, 'markersoperations'):
-
-    @eh.wrapfunction(obsutil, 'markersoperations')
-    def markersoperations(orig, *args, **kwargs):
-        return []
-
 FORMATSSETSFUNCTIONS = [
     _successorsetdates,
     _successorsetusers,