# HG changeset patch # User Pierre-Yves David # Date 1508532775 -7200 # Node ID 9f900937c198fd115caabd32612005904292f553 # Parent 1f61525727bfbcb053d69907ec583b95e4614340# Parent 663dbef40f97e269f4202e362e60098ca5a55d61 test-compat: merge future 6.7.0 in mercurial-4.3 branch diff -r 1f61525727bf -r 9f900937c198 CHANGELOG --- a/CHANGELOG Fri Oct 20 18:25:05 2017 +0200 +++ b/CHANGELOG Fri Oct 20 22:52:55 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 diff -r 1f61525727bf -r 9f900937c198 hgext3rd/evolve/obshistory.py --- a/hgext3rd/evolve/obshistory.py Fri Oct 20 18:25:05 2017 +0200 +++ b/hgext3rd/evolve/obshistory.py Fri Oct 20 22:52:55 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, diff -r 1f61525727bf -r 9f900937c198 tests/test-drop.t diff -r 1f61525727bf -r 9f900937c198 tests/test-evolve-effectflags.t diff -r 1f61525727bf -r 9f900937c198 tests/test-evolve-obshistory.t diff -r 1f61525727bf -r 9f900937c198 tests/test-evolve-templates.t diff -r 1f61525727bf -r 9f900937c198 tests/test-obsolete.t diff -r 1f61525727bf -r 9f900937c198 tests/test-stabilize-conflict.t diff -r 1f61525727bf -r 9f900937c198 tests/test-stabilize-order.t diff -r 1f61525727bf -r 9f900937c198 tests/test-topic-tutorial.t