diff -r b57c95a0f5f9 -r 0c70d888a484 mercurial/configitems.py --- a/mercurial/configitems.py Tue Aug 16 18:20:42 2022 +0200 +++ b/mercurial/configitems.py Tue Aug 16 19:04:23 2022 +0200 @@ -1431,6 +1431,23 @@ default=False, experimental=True, ) +# The interaction between the archived phase and obsolescence markers needs to +# be sorted out before wider usage of this are to be considered. +# +# At the time this message is written, behavior when archiving obsolete +# changeset differ significantly from stripping. As part of stripping, we also +# remove the obsolescence marker associated to the stripped changesets, +# revealing the precedecessors changesets when applicable. When archiving, we +# don't touch the obsolescence markers, keeping everything hidden. This can +# result in quite confusing situation for people combining exchanging draft +# with the archived phases. As some markers needed by others may be skipped +# during exchange. +coreconfigitem( + b'format', + b'exp-archived-phase', + default=False, + experimental=True, +) coreconfigitem( b'shelve', b'store',